2026-01-21 18:59:54 +08:00
|
|
|
/* SPDX-License-Identifier: GPL-2.0-only */
|
|
|
|
|
/*
|
2026-01-29 22:25:33 +08:00
|
|
|
* Copyright (C) 2020-2022 Loongson Technology Corporation Limited
|
2026-01-21 18:59:54 +08:00
|
|
|
*
|
2026-01-29 22:25:33 +08:00
|
|
|
* Derived from RISC-V:
|
|
|
|
|
* Copyright (C) 2014 Regents of the University of California
|
2026-01-21 18:59:54 +08:00
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
#include <linux/init.h>
|
|
|
|
|
#include <linux/linkage.h>
|
|
|
|
|
#include <asm/page.h>
|
|
|
|
|
|
2026-01-29 22:25:33 +08:00
|
|
|
__PAGE_ALIGNED_DATA
|
|
|
|
|
|
2026-01-21 18:59:54 +08:00
|
|
|
.globl vdso_start, vdso_end
|
|
|
|
|
.balign PAGE_SIZE
|
|
|
|
|
vdso_start:
|
2026-01-29 22:25:33 +08:00
|
|
|
.incbin "arch/loongarch/vdso/vdso.so"
|
2026-01-21 18:59:54 +08:00
|
|
|
.balign PAGE_SIZE
|
|
|
|
|
vdso_end:
|
|
|
|
|
|
|
|
|
|
.previous
|