| 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> | 
| Tony Lindgren | ce491cf | 2009-10-20 09:40:47 -0700 | [diff] [blame] | 18 | #include <plat/mux.h> | 
|  | 19 | #include <plat/tc.h> | 
| Tony Lindgren | f577ffd | 2005-07-10 19:58:12 +0100 | [diff] [blame] | 20 |  | 
| Paul Walmsley | 5265050 | 2009-12-08 16:29:38 -0700 | [diff] [blame] | 21 | #include "clock.h" | 
|  | 22 |  | 
| Tony Lindgren | f577ffd | 2005-07-10 19:58:12 +0100 | [diff] [blame] | 23 | extern void omap_check_revision(void); | 
| Tony Lindgren | 7c38cf0 | 2005-09-08 23:07:38 +0100 | [diff] [blame] | 24 | extern void omap_sram_init(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 | { | 
| Tony Lindgren | db326be | 2009-08-28 10:50:37 -0700 | [diff] [blame] | 32 | .virtual	= OMAP1_IO_VIRT, | 
|  | 33 | .pfn		= __phys_to_pfn(OMAP1_IO_PHYS), | 
|  | 34 | .length		= OMAP1_IO_SIZE, | 
| Deepak Saxena | 9fe133b | 2005-10-28 15:19:00 +0100 | [diff] [blame] | 35 | .type		= MT_DEVICE | 
|  | 36 | } | 
| Tony Lindgren | f577ffd | 2005-07-10 19:58:12 +0100 | [diff] [blame] | 37 | }; | 
|  | 38 |  | 
| Alistair Buxton | ab49df7 | 2009-09-22 05:58:08 +0100 | [diff] [blame] | 39 | #if defined (CONFIG_ARCH_OMAP730) || defined (CONFIG_ARCH_OMAP850) | 
| Alistair Buxton | 7c00692 | 2009-09-22 10:02:58 +0100 | [diff] [blame] | 40 | static struct map_desc omap7xx_io_desc[] __initdata = { | 
| Deepak Saxena | 9fe133b | 2005-10-28 15:19:00 +0100 | [diff] [blame] | 41 | { | 
| Alistair Buxton | b51988d | 2009-09-22 07:34:13 +0100 | [diff] [blame] | 42 | .virtual	= OMAP7XX_DSP_BASE, | 
|  | 43 | .pfn		= __phys_to_pfn(OMAP7XX_DSP_START), | 
|  | 44 | .length		= OMAP7XX_DSP_SIZE, | 
| Deepak Saxena | 9fe133b | 2005-10-28 15:19:00 +0100 | [diff] [blame] | 45 | .type		= MT_DEVICE | 
|  | 46 | }, { | 
| Alistair Buxton | b51988d | 2009-09-22 07:34:13 +0100 | [diff] [blame] | 47 | .virtual	= OMAP7XX_DSPREG_BASE, | 
|  | 48 | .pfn		= __phys_to_pfn(OMAP7XX_DSPREG_START), | 
|  | 49 | .length		= OMAP7XX_DSPREG_SIZE, | 
| Deepak Saxena | 9fe133b | 2005-10-28 15:19:00 +0100 | [diff] [blame] | 50 | .type		= MT_DEVICE | 
|  | 51 | } | 
| Tony Lindgren | f577ffd | 2005-07-10 19:58:12 +0100 | [diff] [blame] | 52 | }; | 
|  | 53 | #endif | 
|  | 54 |  | 
| Tony Lindgren | 3179a01 | 2005-11-10 14:26:48 +0000 | [diff] [blame] | 55 | #ifdef CONFIG_ARCH_OMAP15XX | 
| Tony Lindgren | f577ffd | 2005-07-10 19:58:12 +0100 | [diff] [blame] | 56 | static struct map_desc omap1510_io_desc[] __initdata = { | 
| Deepak Saxena | 9fe133b | 2005-10-28 15:19:00 +0100 | [diff] [blame] | 57 | { | 
|  | 58 | .virtual	= OMAP1510_DSP_BASE, | 
|  | 59 | .pfn		= __phys_to_pfn(OMAP1510_DSP_START), | 
|  | 60 | .length		= OMAP1510_DSP_SIZE, | 
|  | 61 | .type		= MT_DEVICE | 
|  | 62 | }, { | 
|  | 63 | .virtual	= OMAP1510_DSPREG_BASE, | 
|  | 64 | .pfn		= __phys_to_pfn(OMAP1510_DSPREG_START), | 
|  | 65 | .length		= OMAP1510_DSPREG_SIZE, | 
|  | 66 | .type		= MT_DEVICE | 
|  | 67 | } | 
| Tony Lindgren | f577ffd | 2005-07-10 19:58:12 +0100 | [diff] [blame] | 68 | }; | 
|  | 69 | #endif | 
|  | 70 |  | 
|  | 71 | #if defined(CONFIG_ARCH_OMAP16XX) | 
| Tony Lindgren | 7c38cf0 | 2005-09-08 23:07:38 +0100 | [diff] [blame] | 72 | static struct map_desc omap16xx_io_desc[] __initdata = { | 
| Deepak Saxena | 9fe133b | 2005-10-28 15:19:00 +0100 | [diff] [blame] | 73 | { | 
|  | 74 | .virtual	= OMAP16XX_DSP_BASE, | 
|  | 75 | .pfn		= __phys_to_pfn(OMAP16XX_DSP_START), | 
|  | 76 | .length		= OMAP16XX_DSP_SIZE, | 
|  | 77 | .type		= MT_DEVICE | 
|  | 78 | }, { | 
|  | 79 | .virtual	= OMAP16XX_DSPREG_BASE, | 
|  | 80 | .pfn		= __phys_to_pfn(OMAP16XX_DSPREG_START), | 
|  | 81 | .length		= OMAP16XX_DSPREG_SIZE, | 
|  | 82 | .type		= MT_DEVICE | 
|  | 83 | } | 
| Tony Lindgren | f577ffd | 2005-07-10 19:58:12 +0100 | [diff] [blame] | 84 | }; | 
|  | 85 | #endif | 
|  | 86 |  | 
| Tony Lindgren | 53d9cc7 | 2006-02-08 22:06:45 +0000 | [diff] [blame] | 87 | /* | 
|  | 88 | * Maps common IO regions for omap1. This should only get called from | 
|  | 89 | * board specific init. | 
|  | 90 | */ | 
|  | 91 | void __init omap1_map_common_io(void) | 
| Tony Lindgren | f577ffd | 2005-07-10 19:58:12 +0100 | [diff] [blame] | 92 | { | 
| Tony Lindgren | f577ffd | 2005-07-10 19:58:12 +0100 | [diff] [blame] | 93 | iotable_init(omap_io_desc, ARRAY_SIZE(omap_io_desc)); | 
| Tony Lindgren | 53d9cc7 | 2006-02-08 22:06:45 +0000 | [diff] [blame] | 94 |  | 
|  | 95 | /* Normally devicemaps_init() would flush caches and tlb after | 
|  | 96 | * mdesc->map_io(), but we must also do it here because of the CPU | 
|  | 97 | * revision check below. | 
|  | 98 | */ | 
|  | 99 | local_flush_tlb_all(); | 
|  | 100 | flush_cache_all(); | 
|  | 101 |  | 
|  | 102 | /* We want to check CPU revision early for cpu_is_omapxxxx() macros. | 
|  | 103 | * IO space mapping must be initialized before we can do that. | 
|  | 104 | */ | 
| Tony Lindgren | f577ffd | 2005-07-10 19:58:12 +0100 | [diff] [blame] | 105 | omap_check_revision(); | 
|  | 106 |  | 
| Alistair Buxton | ab49df7 | 2009-09-22 05:58:08 +0100 | [diff] [blame] | 107 | #if defined (CONFIG_ARCH_OMAP730) || defined (CONFIG_ARCH_OMAP850) | 
|  | 108 | if (cpu_is_omap7xx()) { | 
| Alistair Buxton | 7c00692 | 2009-09-22 10:02:58 +0100 | [diff] [blame] | 109 | iotable_init(omap7xx_io_desc, ARRAY_SIZE(omap7xx_io_desc)); | 
| Tony Lindgren | f577ffd | 2005-07-10 19:58:12 +0100 | [diff] [blame] | 110 | } | 
|  | 111 | #endif | 
| Tony Lindgren | 3179a01 | 2005-11-10 14:26:48 +0000 | [diff] [blame] | 112 | #ifdef CONFIG_ARCH_OMAP15XX | 
| Tony Lindgren | 120db2c | 2006-04-02 17:46:27 +0100 | [diff] [blame] | 113 | if (cpu_is_omap15xx()) { | 
| Tony Lindgren | f577ffd | 2005-07-10 19:58:12 +0100 | [diff] [blame] | 114 | iotable_init(omap1510_io_desc, ARRAY_SIZE(omap1510_io_desc)); | 
|  | 115 | } | 
|  | 116 | #endif | 
|  | 117 | #if defined(CONFIG_ARCH_OMAP16XX) | 
| Tony Lindgren | 7c38cf0 | 2005-09-08 23:07:38 +0100 | [diff] [blame] | 118 | if (cpu_is_omap16xx()) { | 
|  | 119 | iotable_init(omap16xx_io_desc, ARRAY_SIZE(omap16xx_io_desc)); | 
| Tony Lindgren | f577ffd | 2005-07-10 19:58:12 +0100 | [diff] [blame] | 120 | } | 
|  | 121 | #endif | 
|  | 122 |  | 
| Tony Lindgren | 7c38cf0 | 2005-09-08 23:07:38 +0100 | [diff] [blame] | 123 | omap_sram_init(); | 
| Tony Lindgren | 53d9cc7 | 2006-02-08 22:06:45 +0000 | [diff] [blame] | 124 | } | 
| Tony Lindgren | 7c38cf0 | 2005-09-08 23:07:38 +0100 | [diff] [blame] | 125 |  | 
| Tony Lindgren | 53d9cc7 | 2006-02-08 22:06:45 +0000 | [diff] [blame] | 126 | /* | 
|  | 127 | * Common low-level hardware init for omap1. This should only get called from | 
|  | 128 | * board specific init. | 
|  | 129 | */ | 
| Russell King | 020f970 | 2008-12-01 17:40:54 +0000 | [diff] [blame] | 130 | void __init omap1_init_common_hw(void) | 
| Tony Lindgren | 53d9cc7 | 2006-02-08 22:06:45 +0000 | [diff] [blame] | 131 | { | 
| Tony Lindgren | f577ffd | 2005-07-10 19:58:12 +0100 | [diff] [blame] | 132 | /* REVISIT: Refer to OMAP5910 Errata, Advisory SYS_1: "Timeout Abort | 
|  | 133 | * on a Posted Write in the TIPB Bridge". | 
|  | 134 | */ | 
|  | 135 | omap_writew(0x0, MPU_PUBLIC_TIPB_CNTL); | 
|  | 136 | omap_writew(0x0, MPU_PRIVATE_TIPB_CNTL); | 
|  | 137 |  | 
|  | 138 | /* Must init clocks early to assure that timer interrupt works | 
|  | 139 | */ | 
| Tony Lindgren | 3179a01 | 2005-11-10 14:26:48 +0000 | [diff] [blame] | 140 | omap1_clk_init(); | 
| Tony Lindgren | f577ffd | 2005-07-10 19:58:12 +0100 | [diff] [blame] | 141 |  | 
| Tony Lindgren | 53d9cc7 | 2006-02-08 22:06:45 +0000 | [diff] [blame] | 142 | omap1_mux_init(); | 
| Tony Lindgren | f577ffd | 2005-07-10 19:58:12 +0100 | [diff] [blame] | 143 | } | 
| Tony Lindgren | 7c38cf0 | 2005-09-08 23:07:38 +0100 | [diff] [blame] | 144 |  | 
| Tony Lindgren | df1e9d1 | 2010-12-10 09:46:24 -0800 | [diff] [blame] | 145 | /* | 
|  | 146 | * NOTE: Please use ioremap + __raw_read/write where possible instead of these | 
|  | 147 | */ | 
|  | 148 |  | 
|  | 149 | u8 omap_readb(u32 pa) | 
|  | 150 | { | 
|  | 151 | return __raw_readb(OMAP1_IO_ADDRESS(pa)); | 
|  | 152 | } | 
|  | 153 | EXPORT_SYMBOL(omap_readb); | 
|  | 154 |  | 
|  | 155 | u16 omap_readw(u32 pa) | 
|  | 156 | { | 
|  | 157 | return __raw_readw(OMAP1_IO_ADDRESS(pa)); | 
|  | 158 | } | 
|  | 159 | EXPORT_SYMBOL(omap_readw); | 
|  | 160 |  | 
|  | 161 | u32 omap_readl(u32 pa) | 
|  | 162 | { | 
|  | 163 | return __raw_readl(OMAP1_IO_ADDRESS(pa)); | 
|  | 164 | } | 
|  | 165 | EXPORT_SYMBOL(omap_readl); | 
|  | 166 |  | 
|  | 167 | void omap_writeb(u8 v, u32 pa) | 
|  | 168 | { | 
|  | 169 | __raw_writeb(v, OMAP1_IO_ADDRESS(pa)); | 
|  | 170 | } | 
|  | 171 | EXPORT_SYMBOL(omap_writeb); | 
|  | 172 |  | 
|  | 173 | void omap_writew(u16 v, u32 pa) | 
|  | 174 | { | 
|  | 175 | __raw_writew(v, OMAP1_IO_ADDRESS(pa)); | 
|  | 176 | } | 
|  | 177 | EXPORT_SYMBOL(omap_writew); | 
|  | 178 |  | 
|  | 179 | void omap_writel(u32 v, u32 pa) | 
|  | 180 | { | 
|  | 181 | __raw_writel(v, OMAP1_IO_ADDRESS(pa)); | 
|  | 182 | } | 
|  | 183 | EXPORT_SYMBOL(omap_writel); |