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 | 2e3ee9f | 2012-02-24 10:34:34 -0800 | [diff] [blame] | 18 | |
Tony Lindgren | 70c494c | 2012-09-19 10:46:56 -0700 | [diff] [blame] | 19 | #include <mach/mux.h> |
Tony Lindgren | 54b693d | 2012-10-02 13:39:28 -0700 | [diff] [blame] | 20 | #include <mach/tc.h> |
Tony Lindgren | 45c3eb7 | 2012-11-30 08:41:50 -0800 | [diff] [blame] | 21 | #include <linux/omap-dma.h> |
Tony Lindgren | f577ffd | 2005-07-10 19:58:12 +0100 | [diff] [blame] | 22 | |
Tony Lindgren | 2e3ee9f | 2012-02-24 10:34:34 -0800 | [diff] [blame] | 23 | #include "iomap.h" |
| 24 | #include "common.h" |
Paul Walmsley | 5265050 | 2009-12-08 16:29:38 -0700 | [diff] [blame] | 25 | #include "clock.h" |
| 26 | |
Tony Lindgren | f577ffd | 2005-07-10 19:58:12 +0100 | [diff] [blame] | 27 | /* |
| 28 | * The machine specific code may provide the extra mapping besides the |
| 29 | * default mapping provided here. |
| 30 | */ |
| 31 | static struct map_desc omap_io_desc[] __initdata = { |
Deepak Saxena | 9fe133b | 2005-10-28 15:19:00 +0100 | [diff] [blame] | 32 | { |
Tony Lindgren | db326be | 2009-08-28 10:50:37 -0700 | [diff] [blame] | 33 | .virtual = OMAP1_IO_VIRT, |
| 34 | .pfn = __phys_to_pfn(OMAP1_IO_PHYS), |
| 35 | .length = OMAP1_IO_SIZE, |
Deepak Saxena | 9fe133b | 2005-10-28 15:19:00 +0100 | [diff] [blame] | 36 | .type = MT_DEVICE |
| 37 | } |
Tony Lindgren | f577ffd | 2005-07-10 19:58:12 +0100 | [diff] [blame] | 38 | }; |
| 39 | |
Alistair Buxton | ab49df7 | 2009-09-22 05:58:08 +0100 | [diff] [blame] | 40 | #if defined (CONFIG_ARCH_OMAP730) || defined (CONFIG_ARCH_OMAP850) |
Alistair Buxton | 7c00692 | 2009-09-22 10:02:58 +0100 | [diff] [blame] | 41 | static struct map_desc omap7xx_io_desc[] __initdata = { |
Deepak Saxena | 9fe133b | 2005-10-28 15:19:00 +0100 | [diff] [blame] | 42 | { |
Alistair Buxton | b51988d | 2009-09-22 07:34:13 +0100 | [diff] [blame] | 43 | .virtual = OMAP7XX_DSP_BASE, |
| 44 | .pfn = __phys_to_pfn(OMAP7XX_DSP_START), |
| 45 | .length = OMAP7XX_DSP_SIZE, |
Deepak Saxena | 9fe133b | 2005-10-28 15:19:00 +0100 | [diff] [blame] | 46 | .type = MT_DEVICE |
| 47 | }, { |
Alistair Buxton | b51988d | 2009-09-22 07:34:13 +0100 | [diff] [blame] | 48 | .virtual = OMAP7XX_DSPREG_BASE, |
| 49 | .pfn = __phys_to_pfn(OMAP7XX_DSPREG_START), |
| 50 | .length = OMAP7XX_DSPREG_SIZE, |
Deepak Saxena | 9fe133b | 2005-10-28 15:19:00 +0100 | [diff] [blame] | 51 | .type = MT_DEVICE |
| 52 | } |
Tony Lindgren | f577ffd | 2005-07-10 19:58:12 +0100 | [diff] [blame] | 53 | }; |
| 54 | #endif |
| 55 | |
Tony Lindgren | 3179a01 | 2005-11-10 14:26:48 +0000 | [diff] [blame] | 56 | #ifdef CONFIG_ARCH_OMAP15XX |
Tony Lindgren | f577ffd | 2005-07-10 19:58:12 +0100 | [diff] [blame] | 57 | static struct map_desc omap1510_io_desc[] __initdata = { |
Deepak Saxena | 9fe133b | 2005-10-28 15:19:00 +0100 | [diff] [blame] | 58 | { |
| 59 | .virtual = OMAP1510_DSP_BASE, |
| 60 | .pfn = __phys_to_pfn(OMAP1510_DSP_START), |
| 61 | .length = OMAP1510_DSP_SIZE, |
| 62 | .type = MT_DEVICE |
| 63 | }, { |
| 64 | .virtual = OMAP1510_DSPREG_BASE, |
| 65 | .pfn = __phys_to_pfn(OMAP1510_DSPREG_START), |
| 66 | .length = OMAP1510_DSPREG_SIZE, |
| 67 | .type = MT_DEVICE |
| 68 | } |
Tony Lindgren | f577ffd | 2005-07-10 19:58:12 +0100 | [diff] [blame] | 69 | }; |
| 70 | #endif |
| 71 | |
| 72 | #if defined(CONFIG_ARCH_OMAP16XX) |
Tony Lindgren | 7c38cf0 | 2005-09-08 23:07:38 +0100 | [diff] [blame] | 73 | static struct map_desc omap16xx_io_desc[] __initdata = { |
Deepak Saxena | 9fe133b | 2005-10-28 15:19:00 +0100 | [diff] [blame] | 74 | { |
| 75 | .virtual = OMAP16XX_DSP_BASE, |
| 76 | .pfn = __phys_to_pfn(OMAP16XX_DSP_START), |
| 77 | .length = OMAP16XX_DSP_SIZE, |
| 78 | .type = MT_DEVICE |
| 79 | }, { |
| 80 | .virtual = OMAP16XX_DSPREG_BASE, |
| 81 | .pfn = __phys_to_pfn(OMAP16XX_DSPREG_START), |
| 82 | .length = OMAP16XX_DSPREG_SIZE, |
| 83 | .type = MT_DEVICE |
| 84 | } |
Tony Lindgren | f577ffd | 2005-07-10 19:58:12 +0100 | [diff] [blame] | 85 | }; |
| 86 | #endif |
| 87 | |
Tony Lindgren | 53d9cc7 | 2006-02-08 22:06:45 +0000 | [diff] [blame] | 88 | /* |
Tony Lindgren | 7b88e62 | 2011-10-05 15:14:02 -0700 | [diff] [blame] | 89 | * Maps common IO regions for omap1 |
Tony Lindgren | 53d9cc7 | 2006-02-08 22:06:45 +0000 | [diff] [blame] | 90 | */ |
Tony Lindgren | 7b88e62 | 2011-10-05 15:14:02 -0700 | [diff] [blame] | 91 | static 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 | } |
Tony Lindgren | 7c38cf0 | 2005-09-08 23:07:38 +0100 | [diff] [blame] | 95 | |
Tony Lindgren | 7b88e62 | 2011-10-05 15:14:02 -0700 | [diff] [blame] | 96 | #if defined (CONFIG_ARCH_OMAP730) || defined (CONFIG_ARCH_OMAP850) |
| 97 | void __init omap7xx_map_io(void) |
Tony Lindgren | 53d9cc7 | 2006-02-08 22:06:45 +0000 | [diff] [blame] | 98 | { |
Tony Lindgren | 7b88e62 | 2011-10-05 15:14:02 -0700 | [diff] [blame] | 99 | omap1_map_common_io(); |
| 100 | iotable_init(omap7xx_io_desc, ARRAY_SIZE(omap7xx_io_desc)); |
| 101 | } |
| 102 | #endif |
| 103 | |
| 104 | #ifdef CONFIG_ARCH_OMAP15XX |
| 105 | void __init omap15xx_map_io(void) |
| 106 | { |
| 107 | omap1_map_common_io(); |
| 108 | iotable_init(omap1510_io_desc, ARRAY_SIZE(omap1510_io_desc)); |
| 109 | } |
| 110 | #endif |
| 111 | |
| 112 | #if defined(CONFIG_ARCH_OMAP16XX) |
| 113 | void __init omap16xx_map_io(void) |
| 114 | { |
| 115 | omap1_map_common_io(); |
| 116 | iotable_init(omap16xx_io_desc, ARRAY_SIZE(omap16xx_io_desc)); |
| 117 | } |
| 118 | #endif |
| 119 | |
| 120 | /* |
| 121 | * Common low-level hardware init for omap1. |
| 122 | */ |
Tony Lindgren | 8eaa7bb | 2012-03-05 16:11:04 -0800 | [diff] [blame] | 123 | void __init omap1_init_early(void) |
Tony Lindgren | 7b88e62 | 2011-10-05 15:14:02 -0700 | [diff] [blame] | 124 | { |
| 125 | omap_check_revision(); |
| 126 | |
Tony Lindgren | f577ffd | 2005-07-10 19:58:12 +0100 | [diff] [blame] | 127 | /* REVISIT: Refer to OMAP5910 Errata, Advisory SYS_1: "Timeout Abort |
| 128 | * on a Posted Write in the TIPB Bridge". |
| 129 | */ |
| 130 | omap_writew(0x0, MPU_PUBLIC_TIPB_CNTL); |
| 131 | omap_writew(0x0, MPU_PRIVATE_TIPB_CNTL); |
| 132 | |
| 133 | /* Must init clocks early to assure that timer interrupt works |
| 134 | */ |
Tony Lindgren | 3179a01 | 2005-11-10 14:26:48 +0000 | [diff] [blame] | 135 | omap1_clk_init(); |
Tony Lindgren | 53d9cc7 | 2006-02-08 22:06:45 +0000 | [diff] [blame] | 136 | omap1_mux_init(); |
Tony Lindgren | f577ffd | 2005-07-10 19:58:12 +0100 | [diff] [blame] | 137 | } |
Tony Lindgren | 7c38cf0 | 2005-09-08 23:07:38 +0100 | [diff] [blame] | 138 | |
Shawn Guo | 82c3bd0 | 2012-04-26 13:49:29 +0800 | [diff] [blame] | 139 | void __init omap1_init_late(void) |
| 140 | { |
| 141 | omap_serial_wakeup_init(); |
| 142 | } |
| 143 | |
Tony Lindgren | df1e9d1 | 2010-12-10 09:46:24 -0800 | [diff] [blame] | 144 | /* |
| 145 | * NOTE: Please use ioremap + __raw_read/write where possible instead of these |
| 146 | */ |
| 147 | |
| 148 | u8 omap_readb(u32 pa) |
| 149 | { |
| 150 | return __raw_readb(OMAP1_IO_ADDRESS(pa)); |
| 151 | } |
| 152 | EXPORT_SYMBOL(omap_readb); |
| 153 | |
| 154 | u16 omap_readw(u32 pa) |
| 155 | { |
| 156 | return __raw_readw(OMAP1_IO_ADDRESS(pa)); |
| 157 | } |
| 158 | EXPORT_SYMBOL(omap_readw); |
| 159 | |
| 160 | u32 omap_readl(u32 pa) |
| 161 | { |
| 162 | return __raw_readl(OMAP1_IO_ADDRESS(pa)); |
| 163 | } |
| 164 | EXPORT_SYMBOL(omap_readl); |
| 165 | |
| 166 | void omap_writeb(u8 v, u32 pa) |
| 167 | { |
| 168 | __raw_writeb(v, OMAP1_IO_ADDRESS(pa)); |
| 169 | } |
| 170 | EXPORT_SYMBOL(omap_writeb); |
| 171 | |
| 172 | void omap_writew(u16 v, u32 pa) |
| 173 | { |
| 174 | __raw_writew(v, OMAP1_IO_ADDRESS(pa)); |
| 175 | } |
| 176 | EXPORT_SYMBOL(omap_writew); |
| 177 | |
| 178 | void omap_writel(u32 v, u32 pa) |
| 179 | { |
| 180 | __raw_writel(v, OMAP1_IO_ADDRESS(pa)); |
| 181 | } |
| 182 | EXPORT_SYMBOL(omap_writel); |