Tony Lindgren | f577ffd | 2005-07-10 19:58:12 +0100 | [diff] [blame] | 1 | /* |
| 2 | * linux/arch/arm/mach-omap1/io.c |
| 3 | * |
| 4 | * OMAP1 I/O mapping code |
| 5 | * |
| 6 | * This program is free software; you can redistribute it and/or modify |
| 7 | * it under the terms of the GNU General Public License version 2 as |
| 8 | * published by the Free Software Foundation. |
| 9 | */ |
| 10 | |
Tony Lindgren | f577ffd | 2005-07-10 19:58:12 +0100 | [diff] [blame] | 11 | #include <linux/module.h> |
| 12 | #include <linux/kernel.h> |
| 13 | #include <linux/init.h> |
Russell King | fced80c | 2008-09-06 12:10:45 +0100 | [diff] [blame] | 14 | #include <linux/io.h> |
Tony Lindgren | f577ffd | 2005-07-10 19:58:12 +0100 | [diff] [blame] | 15 | |
Tony Lindgren | 53d9cc7 | 2006-02-08 22:06:45 +0000 | [diff] [blame] | 16 | #include <asm/tlb.h> |
Tony Lindgren | f577ffd | 2005-07-10 19:58:12 +0100 | [diff] [blame] | 17 | #include <asm/mach/map.h> |
Russell King | a09e64f | 2008-08-05 16:14:15 +0100 | [diff] [blame] | 18 | #include <mach/mux.h> |
| 19 | #include <mach/tc.h> |
Tony Lindgren | f577ffd | 2005-07-10 19:58:12 +0100 | [diff] [blame] | 20 | |
Tony Lindgren | 3179a01 | 2005-11-10 14:26:48 +0000 | [diff] [blame] | 21 | extern int omap1_clk_init(void); |
Tony Lindgren | f577ffd | 2005-07-10 19:58:12 +0100 | [diff] [blame] | 22 | extern void omap_check_revision(void); |
Tony Lindgren | 7c38cf0 | 2005-09-08 23:07:38 +0100 | [diff] [blame] | 23 | extern void omap_sram_init(void); |
Imre Deak | b7cc6d4 | 2007-03-06 03:16:36 -0800 | [diff] [blame] | 24 | extern void omapfb_reserve_sdram(void); |
Tony Lindgren | f577ffd | 2005-07-10 19:58:12 +0100 | [diff] [blame] | 25 | |
| 26 | /* |
| 27 | * The machine specific code may provide the extra mapping besides the |
| 28 | * default mapping provided here. |
| 29 | */ |
| 30 | static struct map_desc omap_io_desc[] __initdata = { |
Deepak Saxena | 9fe133b | 2005-10-28 15:19:00 +0100 | [diff] [blame] | 31 | { |
| 32 | .virtual = IO_VIRT, |
| 33 | .pfn = __phys_to_pfn(IO_PHYS), |
| 34 | .length = IO_SIZE, |
| 35 | .type = MT_DEVICE |
| 36 | } |
Tony Lindgren | f577ffd | 2005-07-10 19:58:12 +0100 | [diff] [blame] | 37 | }; |
| 38 | |
| 39 | #ifdef CONFIG_ARCH_OMAP730 |
| 40 | static struct map_desc omap730_io_desc[] __initdata = { |
Deepak Saxena | 9fe133b | 2005-10-28 15:19:00 +0100 | [diff] [blame] | 41 | { |
| 42 | .virtual = OMAP730_DSP_BASE, |
| 43 | .pfn = __phys_to_pfn(OMAP730_DSP_START), |
| 44 | .length = OMAP730_DSP_SIZE, |
| 45 | .type = MT_DEVICE |
| 46 | }, { |
| 47 | .virtual = OMAP730_DSPREG_BASE, |
| 48 | .pfn = __phys_to_pfn(OMAP730_DSPREG_START), |
| 49 | .length = OMAP730_DSPREG_SIZE, |
| 50 | .type = MT_DEVICE |
| 51 | } |
Tony Lindgren | f577ffd | 2005-07-10 19:58:12 +0100 | [diff] [blame] | 52 | }; |
| 53 | #endif |
| 54 | |
Zebediah C. McClure | 56739a6 | 2009-03-23 18:07:40 -0700 | [diff] [blame] | 55 | #ifdef CONFIG_ARCH_OMAP850 |
| 56 | static struct map_desc omap850_io_desc[] __initdata = { |
| 57 | { |
| 58 | .virtual = OMAP850_DSP_BASE, |
| 59 | .pfn = __phys_to_pfn(OMAP850_DSP_START), |
| 60 | .length = OMAP850_DSP_SIZE, |
| 61 | .type = MT_DEVICE |
| 62 | }, { |
| 63 | .virtual = OMAP850_DSPREG_BASE, |
| 64 | .pfn = __phys_to_pfn(OMAP850_DSPREG_START), |
| 65 | .length = OMAP850_DSPREG_SIZE, |
| 66 | .type = MT_DEVICE |
| 67 | } |
| 68 | }; |
| 69 | #endif |
| 70 | |
Tony Lindgren | 3179a01 | 2005-11-10 14:26:48 +0000 | [diff] [blame] | 71 | #ifdef CONFIG_ARCH_OMAP15XX |
Tony Lindgren | f577ffd | 2005-07-10 19:58:12 +0100 | [diff] [blame] | 72 | static struct map_desc omap1510_io_desc[] __initdata = { |
Deepak Saxena | 9fe133b | 2005-10-28 15:19:00 +0100 | [diff] [blame] | 73 | { |
| 74 | .virtual = OMAP1510_DSP_BASE, |
| 75 | .pfn = __phys_to_pfn(OMAP1510_DSP_START), |
| 76 | .length = OMAP1510_DSP_SIZE, |
| 77 | .type = MT_DEVICE |
| 78 | }, { |
| 79 | .virtual = OMAP1510_DSPREG_BASE, |
| 80 | .pfn = __phys_to_pfn(OMAP1510_DSPREG_START), |
| 81 | .length = OMAP1510_DSPREG_SIZE, |
| 82 | .type = MT_DEVICE |
| 83 | } |
Tony Lindgren | f577ffd | 2005-07-10 19:58:12 +0100 | [diff] [blame] | 84 | }; |
| 85 | #endif |
| 86 | |
| 87 | #if defined(CONFIG_ARCH_OMAP16XX) |
Tony Lindgren | 7c38cf0 | 2005-09-08 23:07:38 +0100 | [diff] [blame] | 88 | static struct map_desc omap16xx_io_desc[] __initdata = { |
Deepak Saxena | 9fe133b | 2005-10-28 15:19:00 +0100 | [diff] [blame] | 89 | { |
| 90 | .virtual = OMAP16XX_DSP_BASE, |
| 91 | .pfn = __phys_to_pfn(OMAP16XX_DSP_START), |
| 92 | .length = OMAP16XX_DSP_SIZE, |
| 93 | .type = MT_DEVICE |
| 94 | }, { |
| 95 | .virtual = OMAP16XX_DSPREG_BASE, |
| 96 | .pfn = __phys_to_pfn(OMAP16XX_DSPREG_START), |
| 97 | .length = OMAP16XX_DSPREG_SIZE, |
| 98 | .type = MT_DEVICE |
| 99 | } |
Tony Lindgren | f577ffd | 2005-07-10 19:58:12 +0100 | [diff] [blame] | 100 | }; |
| 101 | #endif |
| 102 | |
Tony Lindgren | 53d9cc7 | 2006-02-08 22:06:45 +0000 | [diff] [blame] | 103 | /* |
| 104 | * Maps common IO regions for omap1. This should only get called from |
| 105 | * board specific init. |
| 106 | */ |
| 107 | void __init omap1_map_common_io(void) |
Tony Lindgren | f577ffd | 2005-07-10 19:58:12 +0100 | [diff] [blame] | 108 | { |
Tony Lindgren | f577ffd | 2005-07-10 19:58:12 +0100 | [diff] [blame] | 109 | iotable_init(omap_io_desc, ARRAY_SIZE(omap_io_desc)); |
Tony Lindgren | 53d9cc7 | 2006-02-08 22:06:45 +0000 | [diff] [blame] | 110 | |
| 111 | /* Normally devicemaps_init() would flush caches and tlb after |
| 112 | * mdesc->map_io(), but we must also do it here because of the CPU |
| 113 | * revision check below. |
| 114 | */ |
| 115 | local_flush_tlb_all(); |
| 116 | flush_cache_all(); |
| 117 | |
| 118 | /* We want to check CPU revision early for cpu_is_omapxxxx() macros. |
| 119 | * IO space mapping must be initialized before we can do that. |
| 120 | */ |
Tony Lindgren | f577ffd | 2005-07-10 19:58:12 +0100 | [diff] [blame] | 121 | omap_check_revision(); |
| 122 | |
| 123 | #ifdef CONFIG_ARCH_OMAP730 |
| 124 | if (cpu_is_omap730()) { |
| 125 | iotable_init(omap730_io_desc, ARRAY_SIZE(omap730_io_desc)); |
| 126 | } |
| 127 | #endif |
Zebediah C. McClure | 56739a6 | 2009-03-23 18:07:40 -0700 | [diff] [blame] | 128 | |
| 129 | #ifdef CONFIG_ARCH_OMAP850 |
| 130 | if (cpu_is_omap850()) { |
| 131 | iotable_init(omap850_io_desc, ARRAY_SIZE(omap850_io_desc)); |
| 132 | } |
| 133 | #endif |
| 134 | |
Tony Lindgren | 3179a01 | 2005-11-10 14:26:48 +0000 | [diff] [blame] | 135 | #ifdef CONFIG_ARCH_OMAP15XX |
Tony Lindgren | 120db2c | 2006-04-02 17:46:27 +0100 | [diff] [blame] | 136 | if (cpu_is_omap15xx()) { |
Tony Lindgren | f577ffd | 2005-07-10 19:58:12 +0100 | [diff] [blame] | 137 | iotable_init(omap1510_io_desc, ARRAY_SIZE(omap1510_io_desc)); |
| 138 | } |
| 139 | #endif |
| 140 | #if defined(CONFIG_ARCH_OMAP16XX) |
Tony Lindgren | 7c38cf0 | 2005-09-08 23:07:38 +0100 | [diff] [blame] | 141 | if (cpu_is_omap16xx()) { |
| 142 | iotable_init(omap16xx_io_desc, ARRAY_SIZE(omap16xx_io_desc)); |
Tony Lindgren | f577ffd | 2005-07-10 19:58:12 +0100 | [diff] [blame] | 143 | } |
| 144 | #endif |
| 145 | |
Tony Lindgren | 7c38cf0 | 2005-09-08 23:07:38 +0100 | [diff] [blame] | 146 | omap_sram_init(); |
Imre Deak | b7cc6d4 | 2007-03-06 03:16:36 -0800 | [diff] [blame] | 147 | omapfb_reserve_sdram(); |
Tony Lindgren | 53d9cc7 | 2006-02-08 22:06:45 +0000 | [diff] [blame] | 148 | } |
Tony Lindgren | 7c38cf0 | 2005-09-08 23:07:38 +0100 | [diff] [blame] | 149 | |
Tony Lindgren | 53d9cc7 | 2006-02-08 22:06:45 +0000 | [diff] [blame] | 150 | /* |
| 151 | * Common low-level hardware init for omap1. This should only get called from |
| 152 | * board specific init. |
| 153 | */ |
Russell King | 020f970 | 2008-12-01 17:40:54 +0000 | [diff] [blame] | 154 | void __init omap1_init_common_hw(void) |
Tony Lindgren | 53d9cc7 | 2006-02-08 22:06:45 +0000 | [diff] [blame] | 155 | { |
Tony Lindgren | f577ffd | 2005-07-10 19:58:12 +0100 | [diff] [blame] | 156 | /* REVISIT: Refer to OMAP5910 Errata, Advisory SYS_1: "Timeout Abort |
| 157 | * on a Posted Write in the TIPB Bridge". |
| 158 | */ |
| 159 | omap_writew(0x0, MPU_PUBLIC_TIPB_CNTL); |
| 160 | omap_writew(0x0, MPU_PRIVATE_TIPB_CNTL); |
| 161 | |
| 162 | /* Must init clocks early to assure that timer interrupt works |
| 163 | */ |
Tony Lindgren | 3179a01 | 2005-11-10 14:26:48 +0000 | [diff] [blame] | 164 | omap1_clk_init(); |
Tony Lindgren | f577ffd | 2005-07-10 19:58:12 +0100 | [diff] [blame] | 165 | |
Tony Lindgren | 53d9cc7 | 2006-02-08 22:06:45 +0000 | [diff] [blame] | 166 | omap1_mux_init(); |
Tony Lindgren | f577ffd | 2005-07-10 19:58:12 +0100 | [diff] [blame] | 167 | } |
Tony Lindgren | 7c38cf0 | 2005-09-08 23:07:38 +0100 | [diff] [blame] | 168 | |