blob: 2c6ebfdbc2fc4df398232f1da2624ebec62d4c14 (
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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
|
if ARCH_MX5
config ARCH_MX51
bool
select USB_ARCH_HAS_EHCI
select MXC_TZIC
select ARCH_MXC_IOMUX_V3
config ARCH_MX53
bool
select USB_ARCH_HAS_EHCI
select MXC_TZIC
select ARCH_MXC_IOMUX_V3
config ARCH_MX50
bool
select ARCH_HAS_RNGC
config FORCE_MAX_ZONEORDER
int "MAX_ORDER"
default "13"
config MX5_MULTI_ARCH
bool
default y
select RUNTIME_PHYS_OFFSET
depends on ARCH_MX51
depends on ARCH_MX50 || ARCH_MX53
config MACH_MX51_3DS
bool "Support MX51 3-Stack platform"
select ARCH_MX51
help
Include support for MX51 3-Stack platform. This includes specific
configurations for the board and its peripherals.
config MACH_MX51_BABBAGE
bool "Support MX51 BABBAGE platforms"
select ARCH_MX51
help
Include support for MX51 Babbage platform, also known as MX51EVK in
u-boot. This includes specific configurations for the board and its
peripherals.
config MACH_MX53_EVK
bool "Support MX53 EVK platform"
select ARCH_MX53
help
Include support for MX53 EVK platform. This includes specific
configurations for the board and its peripherals.
config MACH_MX53_ARD
bool "Support MX53 ARD platform"
select ARCH_MX53
help
Include support for MX53 ARD platform. This includes specific
configurations for the board and its peripherals.
config MACH_MX50_ARM2
bool "Support MX50 Armadillo2 platform"
select ARCH_MX50
help
Include support for MX50 EVK platform. This includes specific
configurations for the board and its peripherals.
config MACH_MX50_RDP
bool "Support MX50 Reference Design Platform"
select ARCH_MX50
help
Include support for MX50 RDP platform. This includes specific
configurations for the board and its peripherals.
comment "MX5x Options:"
config MXC_SDMA_API
bool "Use SDMA API"
default y
help
This selects the Freescale MXC SDMA API.
If unsure, say N.
config ARCH_MXC_HAS_NFC_V3
bool "MXC NFC Hardware Version 3"
depends on ARCH_MX5
default y
help
This selects the Freescale MXC Nand Flash Controller Hardware Version 3
If unsure, say N.
config ARCH_MXC_HAS_NFC_V3_2
bool "MXC NFC Hardware Version 3.2"
depends on ARCH_MXC_HAS_NFC_V3
default y
help
This selects the Freescale MXC Nand Flash Controller Hardware Version 3.1
If unsure, say N.
config SDMA_IRAM
bool "Use Internal RAM for SDMA transfer"
depends on MXC_SDMA_API
help
Support Internal RAM as SDMA buffer or control structures
endif
|