Upstream: https://gitlab.com/qemu-project/qemu.git Upstream-Commit: d2e570cc0f97b936902a5b1b86b73c0f5998b475
21 lines
413 B
C
21 lines
413 B
C
/* SPDX-License-Identifier: GPL-2.0-or-later */
|
|
/*
|
|
* LoongArch CPU parameters for QEMU.
|
|
*
|
|
* Copyright (c) 2021 Loongson Technology Corporation Limited
|
|
*/
|
|
|
|
#ifndef LOONGARCH_CPU_PARAM_H
|
|
#define LOONGARCH_CPU_PARAM_H
|
|
|
|
#define TARGET_VIRT_ADDR_SPACE_BITS 48
|
|
|
|
#ifdef CONFIG_USER_ONLY
|
|
/* Allow user-only to vary page size from 4k */
|
|
# define TARGET_PAGE_BITS_VARY
|
|
#else
|
|
# define TARGET_PAGE_BITS 12
|
|
#endif
|
|
|
|
#endif
|