blob: 5cf53f6e032ad5e2836799e2c3355217cc4031d1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
|
if ARCH_WMT
menu "WonderMedia Technology Implementations"
config WMT_EVB
bool "WonderMedia Technology Evaluation Board"
depends on ARCH_WMT
default y
---help---
Say Y here if you want to config the WonderMedia Technology specific parameters.
choice
prompt "Select WonderMedia Technology evaluation board type"
depends on WMT_EVB
default WM0001
---help---
Choose the type of WonderMedia Technology evaluation board type.
There are four types of WonderMedia Technology EVB, depend on the mounted components.
config WM0001
bool "WM0001"
---help---
Say Y here if you intend to build kernel on VT9043A1.
endchoice
config WMT_USE_BOOTLOADER_ATAG
bool "Bootloader kernel parameter support"
depends on WMT_EVB
---help---
Say Y here if you want to use kernel parameters passed from the arm bootloader.
config WMT_FIXUP_ATAG
bool "Force to fixup kernel parameter"
depends on WMT_EVB && WMT_USE_BOOTLOADER_ATAG
---help---
Say Y here if you want to fixup the WonderMedia Technology kernel boot parameters.
It is a temp solution if ATAG passing have problem or you don't
know how exactly setup kernel parameters.
config OTZONE_ASYNC_NOTIFY_SUPPORT
bool "TrustZone asynchronous notify support"
depends on WMT_EVB
---help---
Say Y here if you want to use TrustZone asynchronous notify support.
config OTZONE_AMP_SUPPORT
bool "TrustZone AMP support"
depends on WMT_EVB
---help---
Say Y here if you want to use TrustZone AMP support.
endmenu
endif
|