Files

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

22 lines
437 B
C
Raw Permalink Normal View History

2019-03-22 11:51:19 -07:00
/*
* Xtensa cpu parameters for qemu.
*
* Copyright (c) 2011, Max Filippov, Open Source and Linux Lab.
* SPDX-License-Identifier: BSD-3-Clause
*/
#ifndef XTENSA_CPU_PARAM_H
2022-05-06 15:49:10 +02:00
#define XTENSA_CPU_PARAM_H
2019-03-22 11:51:19 -07:00
#define TARGET_PAGE_BITS 12
#define TARGET_PHYS_ADDR_SPACE_BITS 32
#ifdef CONFIG_USER_ONLY
#define TARGET_VIRT_ADDR_SPACE_BITS 30
#else
#define TARGET_VIRT_ADDR_SPACE_BITS 32
#endif
#define TARGET_INSN_START_EXTRA_WORDS 0
2019-03-22 11:51:19 -07:00
#endif