sandbox: Add support for Address Sanitizer
[platform/kernel/u-boot.git] / arch / sandbox / Kconfig
1 menu "Sandbox architecture"
2         depends on SANDBOX
3
4 config SYS_ARCH
5         default "sandbox"
6
7 config SYS_BOARD
8         default "sandbox"
9
10 config SYS_CPU
11         default "sandbox"
12
13 config SANDBOX64
14         bool "Use 64-bit addresses"
15         select PHYS_64BIT
16         select HOST_64BIT
17
18 config SANDBOX_RAM_SIZE_MB
19         int "RAM size in MiB"
20         default 128
21         range 64 4095 if !SANDBOX64
22         range 64 268435456 if SANDBOX64
23         help
24           Memory size of the sandbox in MiB. The default value is 128 MiB.
25           The minimum value is 64 MiB. The maximum value is 4095 MiB for the
26           32bit sandbox.
27
28 config SANDBOX_SPL
29         bool "Enable SPL for sandbox"
30         select SUPPORT_SPL
31
32 config SANDBOX_TPL
33         bool "Enable TPL for sandbox"
34         select SUPPORT_TPL
35
36 config SANDBOX_VPL
37         bool "Enable VPL for sandbox"
38         select SUPPORT_VPL
39
40 config SYS_CONFIG_NAME
41         default "sandbox_spl" if SANDBOX_SPL
42         default "sandbox" if !SANDBOX_SPL
43
44 choice
45         prompt "Run sandbox on 32/64-bit host"
46         default HOST_64BIT
47         help
48           Sandbox can be built on 32-bit and 64-bit hosts.
49           The default is to build on a 64-bit host and run
50           on a 64-bit host. If you want to run sandbox on
51           a 32-bit host, change it here.
52
53 config HOST_32BIT
54         bool "32-bit host"
55         depends on !PHYS_64BIT
56
57 config HOST_64BIT
58         bool "64-bit host"
59
60 endchoice
61
62 config SANDBOX_CRASH_RESET
63         bool "Reset on crash"
64         help
65           If an illegal instruction or an illegal memory access occurs, the
66           sandbox by default writes a crash dump and exits. If you set this
67           flag, the sandbox is reset instead. This may be useful when running
68           test suites like the UEFI self certification test which continue
69           with the next test after a crash.
70
71 config SANDBOX_BITS_PER_LONG
72         int
73         default 32 if HOST_32BIT
74         default 64 if HOST_64BIT
75
76 config SYS_FDT_LOAD_ADDR
77         hex "Address at which to load devicetree"
78         default 0x100
79         help
80           With sandbox the devicetree is loaded into the emulated RAM. This sets
81           the address that is used. There must be enough space at this address
82           to load the full devicetree without it overwriting anything else.
83
84           See `doc/arch/sandbox.rst` for more information.
85
86 endmenu