blob: 562f3dcae1dae3128f441dc0be4e129f65691e00 (
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
|
if ARCH_MXS
menu "Freescale i.MXS implementations"
choice
prompt "Select i.MXS chip family"
config ARCH_MX28
bool "Freescale MX28"
select CPU_ARM926T
select ZONE_DMA
select MXS_ICOLL
select MXS_DMA_ENGINE
---help---
Support Freescale MX28 chips
endchoice
if ARCH_MX28
source arch/arm/mach-mx28/Kconfig
endif
config DMA_ZONE_SIZE
int "DMA memory zone size"
range 0 32
default 16
help
This is the size in MB for the DMA zone. The DMA zone is used for
dedicated memory for large contiguous video buffers
endmenu
config MXS_ICOLL
bool
config MXS_EARLY_CONSOLE
bool "Enable console early"
default y
help
Enable console early for kernel debug.
config MXS_DMA_ENGINE
bool "Enable DMA ENGINE support"
default y
help
Support DMA controller on AHB-APBH and AHB-APBX Bridge
config MXS_LRADC
bool "Low Resolution ADC support"
default y
depends on ARCH_MX28
help
Enable LRADC support
endif
|