1 /* SPDX-License-Identifier: GPL-2.0-only */
2 /*
3  * Copyright (C) 2020-2022 Loongson Technology Corporation Limited
4  *
5  * Derived from RISC-V:
6  * Copyright (C) 2014 Regents of the University of California
7  */
8 
9 #include <linux/init.h>
10 #include <linux/linkage.h>
11 #include <asm/page.h>
12 
13 	__PAGE_ALIGNED_DATA
14 
15 	.globl vdso_start, vdso_end
16 	.balign PAGE_SIZE
17 vdso_start:
18 	.incbin "arch/loongarch/vdso/vdso.so"
19 	.balign PAGE_SIZE
20 vdso_end:
21 
22 	.previous
23