aboutsummaryrefslogtreecommitdiffstats
path: root/arch/csky/abiv2/inc/abi/vdso.h
blob: b60d4a07032636e862840ee0d0432e94a3b97b67 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
/* SPDX-License-Identifier: GPL-2.0 */

#ifndef __ABI_CSKY_VDSO_H
#define __ABI_CSKY_VDSO_H

#include <linux/uaccess.h>

static inline int setup_vdso_page(unsigned short *ptr)
{
	int err = 0;

	/* movi r7, 173 */
	err |= __put_user(0xea07, ptr);
	err |= __put_user(0x008b,      ptr+1);

	/* trap 0 */
	err |= __put_user(0xc000,   ptr+2);
	err |= __put_user(0x2020,   ptr+3);

	return err;
}

#endif /* __ABI_CSKY_STRING_H */