diff options
author | Jason Liu <r64343@freescale.com> | 2013-06-28 10:04:22 +0800 |
---|---|---|
committer | Jason Liu <r64343@freescale.com> | 2013-06-28 16:35:11 +0800 |
commit | f2467c9e62bce495bf7133dbc2fb9420324773d3 (patch) | |
tree | 4198468d7015700116be728919aa5a78c986a794 /arch/arm/Kconfig | |
parent | bc32a149c0e342b2b4d69947cc86b5821ca470b1 (diff) |
ENGR00268891 MM:remove the experimental CMA defconfig
The CMA support marked as the experimental in the kernel Kconfig.
After turns it on, we found many memory issues. Since this CMA
support on the 3.5.7 kernel is not mature enough, just turn it
off and use back the consistent remap DMA.
Signed-off-by: Jason Liu <r64343@freescale.com>
Diffstat (limited to 'arch/arm/Kconfig')
-rw-r--r-- | arch/arm/Kconfig | 11 |
1 files changed, 10 insertions, 1 deletions
diff --git a/arch/arm/Kconfig b/arch/arm/Kconfig index 84fc56e27220..d99dc1169c06 100644 --- a/arch/arm/Kconfig +++ b/arch/arm/Kconfig @@ -1725,9 +1725,10 @@ config HW_PERF_EVENTS source "mm/Kconfig" config FORCE_MAX_ZONEORDER - int "Maximum zone order" if ARCH_SHMOBILE + int "Maximum zone order" if ARCH_SHMOBILE || ARCH_MXC range 11 64 if ARCH_SHMOBILE default "9" if SA1111 + default "14" if ARCH_MXC default "11" help The kernel memory allocator divides physically contiguous memory @@ -1740,6 +1741,14 @@ config FORCE_MAX_ZONEORDER This config option is actually maximum order plus one. For example, a value of 11 means that the largest free memory block is 2^10 pages. +config CONSISTENT_DMA_SIZE_IN_MB + int "consistent dma size in MBytes" + default "184" if ARCH_MXC + default "2" + help + The option provides the arch related consistent dma size in MBytes, + if the number is 2 which means the consitend dma size will be 2MB. + config LEDS bool "Timer and CPU usage LEDs" depends on ARCH_CDB89712 || ARCH_EBSA110 || \ |