diff --git a/arch/arm/boards/karo-tx28/tx28.c b/arch/arm/boards/karo-tx28/tx28.c index 6f4ef4e..5692171 100644 --- a/arch/arm/boards/karo-tx28/tx28.c +++ b/arch/arm/boards/karo-tx28/tx28.c @@ -21,6 +21,7 @@ #include #include #include +#include static struct memory_platform_data ram_pdata = { .name = "ram0", @@ -82,6 +83,28 @@ extern void base_board_init(void); +#ifdef CONFIG_MMU +static int tx28_mmu_init(void) +{ + mmu_init(); + + arm_create_section(0x40000000, 0x40000000, 128, PMD_SECT_DEF_CACHED); + arm_create_section(0x50000000, 0x40000000, 128, PMD_SECT_DEF_UNCACHED); + + setup_dma_coherent(0x10000000); + +#if TEXT_BASE & (0x100000 - 1) +#warning cannot create vector section. Adjust TEXT_BASE to a 1M boundary +#else + arm_create_section(0x0, TEXT_BASE, 1, PMD_SECT_DEF_UNCACHED); +#endif + mmu_enable(); + + return 0; +} +postcore_initcall(tx28_mmu_init); +#endif + static int tx28_devices_init(void) { int i; diff --git a/arch/arm/mach-stm/Kconfig b/arch/arm/mach-stm/Kconfig index e47d9f1..402a9b7 100644 --- a/arch/arm/mach-stm/Kconfig +++ b/arch/arm/mach-stm/Kconfig @@ -55,6 +55,7 @@ config MACH_TX28 bool "KARO tx28" + select HAVE_MMU help Say Y here if you are using the KARO TX28 CPU module.