Paul Mundt | 959f85f | 2006-09-27 16:43:28 +0900 | [diff] [blame] | 1 | /* |
| 2 | * SH7780 Setup |
| 3 | * |
| 4 | * Copyright (C) 2006 Paul Mundt |
| 5 | * |
| 6 | * This file is subject to the terms and conditions of the GNU General Public |
| 7 | * License. See the file "COPYING" in the main directory of this archive |
| 8 | * for more details. |
| 9 | */ |
| 10 | #include <linux/platform_device.h> |
| 11 | #include <linux/init.h> |
| 12 | #include <linux/serial.h> |
Magnus Damm | 953c8ef | 2007-09-10 12:03:50 +0900 | [diff] [blame] | 13 | #include <linux/io.h> |
Paul Mundt | 96de1a8 | 2008-02-26 14:52:45 +0900 | [diff] [blame] | 14 | #include <linux/serial_sci.h> |
Magnus Damm | ccc1956 | 2009-05-11 11:37:16 +0000 | [diff] [blame] | 15 | #include <linux/sh_timer.h> |
| 16 | |
| 17 | static struct sh_timer_config tmu0_platform_data = { |
| 18 | .name = "TMU0", |
| 19 | .channel_offset = 0x04, |
| 20 | .timer_bit = 0, |
Paul Mundt | af777ce | 2009-05-13 16:59:40 +0900 | [diff] [blame] | 21 | .clk = "peripheral_clk", |
Magnus Damm | ccc1956 | 2009-05-11 11:37:16 +0000 | [diff] [blame] | 22 | .clockevent_rating = 200, |
| 23 | }; |
| 24 | |
| 25 | static struct resource tmu0_resources[] = { |
| 26 | [0] = { |
| 27 | .name = "TMU0", |
| 28 | .start = 0xffd80008, |
| 29 | .end = 0xffd80013, |
| 30 | .flags = IORESOURCE_MEM, |
| 31 | }, |
| 32 | [1] = { |
| 33 | .start = 28, |
| 34 | .flags = IORESOURCE_IRQ, |
| 35 | }, |
| 36 | }; |
| 37 | |
| 38 | static struct platform_device tmu0_device = { |
| 39 | .name = "sh_tmu", |
| 40 | .id = 0, |
| 41 | .dev = { |
| 42 | .platform_data = &tmu0_platform_data, |
| 43 | }, |
| 44 | .resource = tmu0_resources, |
| 45 | .num_resources = ARRAY_SIZE(tmu0_resources), |
| 46 | }; |
| 47 | |
| 48 | static struct sh_timer_config tmu1_platform_data = { |
| 49 | .name = "TMU1", |
| 50 | .channel_offset = 0x10, |
| 51 | .timer_bit = 1, |
Paul Mundt | af777ce | 2009-05-13 16:59:40 +0900 | [diff] [blame] | 52 | .clk = "peripheral_clk", |
Magnus Damm | ccc1956 | 2009-05-11 11:37:16 +0000 | [diff] [blame] | 53 | .clocksource_rating = 200, |
| 54 | }; |
| 55 | |
| 56 | static struct resource tmu1_resources[] = { |
| 57 | [0] = { |
| 58 | .name = "TMU1", |
| 59 | .start = 0xffd80014, |
| 60 | .end = 0xffd8001f, |
| 61 | .flags = IORESOURCE_MEM, |
| 62 | }, |
| 63 | [1] = { |
| 64 | .start = 29, |
| 65 | .flags = IORESOURCE_IRQ, |
| 66 | }, |
| 67 | }; |
| 68 | |
| 69 | static struct platform_device tmu1_device = { |
| 70 | .name = "sh_tmu", |
| 71 | .id = 1, |
| 72 | .dev = { |
| 73 | .platform_data = &tmu1_platform_data, |
| 74 | }, |
| 75 | .resource = tmu1_resources, |
| 76 | .num_resources = ARRAY_SIZE(tmu1_resources), |
| 77 | }; |
| 78 | |
| 79 | static struct sh_timer_config tmu2_platform_data = { |
| 80 | .name = "TMU2", |
| 81 | .channel_offset = 0x1c, |
| 82 | .timer_bit = 2, |
Paul Mundt | af777ce | 2009-05-13 16:59:40 +0900 | [diff] [blame] | 83 | .clk = "peripheral_clk", |
Magnus Damm | ccc1956 | 2009-05-11 11:37:16 +0000 | [diff] [blame] | 84 | }; |
| 85 | |
| 86 | static struct resource tmu2_resources[] = { |
| 87 | [0] = { |
| 88 | .name = "TMU2", |
| 89 | .start = 0xffd80020, |
| 90 | .end = 0xffd8002f, |
| 91 | .flags = IORESOURCE_MEM, |
| 92 | }, |
| 93 | [1] = { |
| 94 | .start = 30, |
| 95 | .flags = IORESOURCE_IRQ, |
| 96 | }, |
| 97 | }; |
| 98 | |
| 99 | static struct platform_device tmu2_device = { |
| 100 | .name = "sh_tmu", |
| 101 | .id = 2, |
| 102 | .dev = { |
| 103 | .platform_data = &tmu2_platform_data, |
| 104 | }, |
| 105 | .resource = tmu2_resources, |
| 106 | .num_resources = ARRAY_SIZE(tmu2_resources), |
| 107 | }; |
| 108 | |
| 109 | static struct sh_timer_config tmu3_platform_data = { |
| 110 | .name = "TMU3", |
| 111 | .channel_offset = 0x04, |
| 112 | .timer_bit = 0, |
Paul Mundt | af777ce | 2009-05-13 16:59:40 +0900 | [diff] [blame] | 113 | .clk = "peripheral_clk", |
Magnus Damm | ccc1956 | 2009-05-11 11:37:16 +0000 | [diff] [blame] | 114 | }; |
| 115 | |
| 116 | static struct resource tmu3_resources[] = { |
| 117 | [0] = { |
| 118 | .name = "TMU3", |
| 119 | .start = 0xffdc0008, |
| 120 | .end = 0xffdc0013, |
| 121 | .flags = IORESOURCE_MEM, |
| 122 | }, |
| 123 | [1] = { |
| 124 | .start = 96, |
| 125 | .flags = IORESOURCE_IRQ, |
| 126 | }, |
| 127 | }; |
| 128 | |
| 129 | static struct platform_device tmu3_device = { |
| 130 | .name = "sh_tmu", |
| 131 | .id = 3, |
| 132 | .dev = { |
| 133 | .platform_data = &tmu3_platform_data, |
| 134 | }, |
| 135 | .resource = tmu3_resources, |
| 136 | .num_resources = ARRAY_SIZE(tmu3_resources), |
| 137 | }; |
| 138 | |
| 139 | static struct sh_timer_config tmu4_platform_data = { |
| 140 | .name = "TMU4", |
| 141 | .channel_offset = 0x10, |
| 142 | .timer_bit = 1, |
Paul Mundt | af777ce | 2009-05-13 16:59:40 +0900 | [diff] [blame] | 143 | .clk = "peripheral_clk", |
Magnus Damm | ccc1956 | 2009-05-11 11:37:16 +0000 | [diff] [blame] | 144 | }; |
| 145 | |
| 146 | static struct resource tmu4_resources[] = { |
| 147 | [0] = { |
| 148 | .name = "TMU4", |
| 149 | .start = 0xffdc0014, |
| 150 | .end = 0xffdc001f, |
| 151 | .flags = IORESOURCE_MEM, |
| 152 | }, |
| 153 | [1] = { |
| 154 | .start = 97, |
| 155 | .flags = IORESOURCE_IRQ, |
| 156 | }, |
| 157 | }; |
| 158 | |
| 159 | static struct platform_device tmu4_device = { |
| 160 | .name = "sh_tmu", |
| 161 | .id = 4, |
| 162 | .dev = { |
| 163 | .platform_data = &tmu4_platform_data, |
| 164 | }, |
| 165 | .resource = tmu4_resources, |
| 166 | .num_resources = ARRAY_SIZE(tmu4_resources), |
| 167 | }; |
| 168 | |
| 169 | static struct sh_timer_config tmu5_platform_data = { |
| 170 | .name = "TMU5", |
| 171 | .channel_offset = 0x1c, |
| 172 | .timer_bit = 2, |
Paul Mundt | af777ce | 2009-05-13 16:59:40 +0900 | [diff] [blame] | 173 | .clk = "peripheral_clk", |
Magnus Damm | ccc1956 | 2009-05-11 11:37:16 +0000 | [diff] [blame] | 174 | }; |
| 175 | |
| 176 | static struct resource tmu5_resources[] = { |
| 177 | [0] = { |
| 178 | .name = "TMU5", |
| 179 | .start = 0xffdc0020, |
| 180 | .end = 0xffdc002b, |
| 181 | .flags = IORESOURCE_MEM, |
| 182 | }, |
| 183 | [1] = { |
| 184 | .start = 98, |
| 185 | .flags = IORESOURCE_IRQ, |
| 186 | }, |
| 187 | }; |
| 188 | |
| 189 | static struct platform_device tmu5_device = { |
| 190 | .name = "sh_tmu", |
| 191 | .id = 5, |
| 192 | .dev = { |
| 193 | .platform_data = &tmu5_platform_data, |
| 194 | }, |
| 195 | .resource = tmu5_resources, |
| 196 | .num_resources = ARRAY_SIZE(tmu5_resources), |
| 197 | }; |
Paul Mundt | 959f85f | 2006-09-27 16:43:28 +0900 | [diff] [blame] | 198 | |
| 199 | static struct resource rtc_resources[] = { |
| 200 | [0] = { |
| 201 | .start = 0xffe80000, |
| 202 | .end = 0xffe80000 + 0x58 - 1, |
| 203 | .flags = IORESOURCE_IO, |
| 204 | }, |
| 205 | [1] = { |
Magnus Damm | a842fb2 | 2009-02-24 22:59:12 +0900 | [diff] [blame] | 206 | /* Shared Period/Carry/Alarm IRQ */ |
Magnus Damm | 39c7aa9 | 2007-07-20 12:10:29 +0900 | [diff] [blame] | 207 | .start = 20, |
Paul Mundt | 959f85f | 2006-09-27 16:43:28 +0900 | [diff] [blame] | 208 | .flags = IORESOURCE_IRQ, |
| 209 | }, |
| 210 | }; |
| 211 | |
| 212 | static struct platform_device rtc_device = { |
| 213 | .name = "sh-rtc", |
| 214 | .id = -1, |
| 215 | .num_resources = ARRAY_SIZE(rtc_resources), |
| 216 | .resource = rtc_resources, |
| 217 | }; |
| 218 | |
| 219 | static struct plat_sci_port sci_platform_data[] = { |
| 220 | { |
| 221 | .mapbase = 0xffe00000, |
| 222 | .flags = UPF_BOOT_AUTOCONF, |
| 223 | .type = PORT_SCIF, |
Magnus Damm | a842fb2 | 2009-02-24 22:59:12 +0900 | [diff] [blame] | 224 | .irqs = { 40, 40, 40, 40 }, |
Paul Mundt | 959f85f | 2006-09-27 16:43:28 +0900 | [diff] [blame] | 225 | }, { |
| 226 | .mapbase = 0xffe10000, |
| 227 | .flags = UPF_BOOT_AUTOCONF, |
| 228 | .type = PORT_SCIF, |
Magnus Damm | a842fb2 | 2009-02-24 22:59:12 +0900 | [diff] [blame] | 229 | .irqs = { 76, 76, 76, 76 }, |
Paul Mundt | 959f85f | 2006-09-27 16:43:28 +0900 | [diff] [blame] | 230 | }, { |
| 231 | .flags = 0, |
| 232 | } |
| 233 | }; |
| 234 | |
| 235 | static struct platform_device sci_device = { |
| 236 | .name = "sh-sci", |
| 237 | .id = -1, |
| 238 | .dev = { |
| 239 | .platform_data = sci_platform_data, |
| 240 | }, |
| 241 | }; |
| 242 | |
| 243 | static struct platform_device *sh7780_devices[] __initdata = { |
Magnus Damm | ccc1956 | 2009-05-11 11:37:16 +0000 | [diff] [blame] | 244 | &tmu0_device, |
| 245 | &tmu1_device, |
| 246 | &tmu2_device, |
| 247 | &tmu3_device, |
| 248 | &tmu4_device, |
| 249 | &tmu5_device, |
Paul Mundt | 959f85f | 2006-09-27 16:43:28 +0900 | [diff] [blame] | 250 | &rtc_device, |
| 251 | &sci_device, |
| 252 | }; |
| 253 | |
| 254 | static int __init sh7780_devices_setup(void) |
| 255 | { |
| 256 | return platform_add_devices(sh7780_devices, |
| 257 | ARRAY_SIZE(sh7780_devices)); |
| 258 | } |
Magnus Damm | ba9a633 | 2009-07-22 15:14:29 +0000 | [diff] [blame] | 259 | arch_initcall(sh7780_devices_setup); |
Paul Mundt | 66a7405 | 2006-10-20 15:30:55 +0900 | [diff] [blame] | 260 | |
Magnus Damm | ccc1956 | 2009-05-11 11:37:16 +0000 | [diff] [blame] | 261 | static struct platform_device *sh7780_early_devices[] __initdata = { |
| 262 | &tmu0_device, |
| 263 | &tmu1_device, |
| 264 | &tmu2_device, |
| 265 | &tmu3_device, |
| 266 | &tmu4_device, |
| 267 | &tmu5_device, |
| 268 | }; |
| 269 | |
| 270 | void __init plat_early_device_setup(void) |
| 271 | { |
| 272 | early_platform_add_devices(sh7780_early_devices, |
| 273 | ARRAY_SIZE(sh7780_early_devices)); |
| 274 | } |
| 275 | |
Magnus Damm | 39c7aa9 | 2007-07-20 12:10:29 +0900 | [diff] [blame] | 276 | enum { |
| 277 | UNUSED = 0, |
Paul Mundt | 66a7405 | 2006-10-20 15:30:55 +0900 | [diff] [blame] | 278 | |
Magnus Damm | 39c7aa9 | 2007-07-20 12:10:29 +0900 | [diff] [blame] | 279 | /* interrupt sources */ |
Paul Mundt | 66a7405 | 2006-10-20 15:30:55 +0900 | [diff] [blame] | 280 | |
Magnus Damm | 39c7aa9 | 2007-07-20 12:10:29 +0900 | [diff] [blame] | 281 | IRL_LLLL, IRL_LLLH, IRL_LLHL, IRL_LLHH, |
| 282 | IRL_LHLL, IRL_LHLH, IRL_LHHL, IRL_LHHH, |
| 283 | IRL_HLLL, IRL_HLLH, IRL_HLHL, IRL_HLHH, |
| 284 | IRL_HHLL, IRL_HHLH, IRL_HHHL, |
Paul Mundt | 9a7ef6d | 2006-11-20 13:55:34 +0900 | [diff] [blame] | 285 | |
Magnus Damm | 39c7aa9 | 2007-07-20 12:10:29 +0900 | [diff] [blame] | 286 | IRQ0, IRQ1, IRQ2, IRQ3, IRQ4, IRQ5, IRQ6, IRQ7, |
Magnus Damm | a842fb2 | 2009-02-24 22:59:12 +0900 | [diff] [blame] | 287 | RTC, WDT, TMU0, TMU1, TMU2, TMU2_TICPI, |
| 288 | HUDI, DMAC0, SCIF0, DMAC1, CMT, HAC, |
| 289 | PCISERR, PCIINTA, PCIINTB, PCIINTC, PCIINTD, PCIC5, |
| 290 | SCIF1, SIOF, HSPI, MMCIF, TMU3, TMU4, TMU5, SSI, FLCTL, GPIO, |
Paul Mundt | 9a7ef6d | 2006-11-20 13:55:34 +0900 | [diff] [blame] | 291 | |
Magnus Damm | 39c7aa9 | 2007-07-20 12:10:29 +0900 | [diff] [blame] | 292 | /* interrupt groups */ |
| 293 | |
Magnus Damm | a842fb2 | 2009-02-24 22:59:12 +0900 | [diff] [blame] | 294 | TMU012, TMU345, |
Paul Mundt | 66a7405 | 2006-10-20 15:30:55 +0900 | [diff] [blame] | 295 | }; |
| 296 | |
Magnus Damm | 5c37e02 | 2007-08-17 00:45:35 +0900 | [diff] [blame] | 297 | static struct intc_vect vectors[] __initdata = { |
Magnus Damm | a842fb2 | 2009-02-24 22:59:12 +0900 | [diff] [blame] | 298 | INTC_VECT(RTC, 0x480), INTC_VECT(RTC, 0x4a0), |
| 299 | INTC_VECT(RTC, 0x4c0), |
Magnus Damm | 39c7aa9 | 2007-07-20 12:10:29 +0900 | [diff] [blame] | 300 | INTC_VECT(WDT, 0x560), |
| 301 | INTC_VECT(TMU0, 0x580), INTC_VECT(TMU1, 0x5a0), |
| 302 | INTC_VECT(TMU2, 0x5c0), INTC_VECT(TMU2_TICPI, 0x5e0), |
| 303 | INTC_VECT(HUDI, 0x600), |
Magnus Damm | a842fb2 | 2009-02-24 22:59:12 +0900 | [diff] [blame] | 304 | INTC_VECT(DMAC0, 0x640), INTC_VECT(DMAC0, 0x660), |
| 305 | INTC_VECT(DMAC0, 0x680), INTC_VECT(DMAC0, 0x6a0), |
| 306 | INTC_VECT(DMAC0, 0x6c0), |
| 307 | INTC_VECT(SCIF0, 0x700), INTC_VECT(SCIF0, 0x720), |
| 308 | INTC_VECT(SCIF0, 0x740), INTC_VECT(SCIF0, 0x760), |
| 309 | INTC_VECT(DMAC0, 0x780), INTC_VECT(DMAC0, 0x7a0), |
| 310 | INTC_VECT(DMAC1, 0x7c0), INTC_VECT(DMAC1, 0x7e0), |
Magnus Damm | 39c7aa9 | 2007-07-20 12:10:29 +0900 | [diff] [blame] | 311 | INTC_VECT(CMT, 0x900), INTC_VECT(HAC, 0x980), |
| 312 | INTC_VECT(PCISERR, 0xa00), INTC_VECT(PCIINTA, 0xa20), |
| 313 | INTC_VECT(PCIINTB, 0xa40), INTC_VECT(PCIINTC, 0xa60), |
Magnus Damm | a842fb2 | 2009-02-24 22:59:12 +0900 | [diff] [blame] | 314 | INTC_VECT(PCIINTD, 0xa80), INTC_VECT(PCIC5, 0xaa0), |
| 315 | INTC_VECT(PCIC5, 0xac0), INTC_VECT(PCIC5, 0xae0), |
| 316 | INTC_VECT(PCIC5, 0xb00), INTC_VECT(PCIC5, 0xb20), |
| 317 | INTC_VECT(SCIF1, 0xb80), INTC_VECT(SCIF1, 0xba0), |
| 318 | INTC_VECT(SCIF1, 0xbc0), INTC_VECT(SCIF1, 0xbe0), |
Magnus Damm | 39c7aa9 | 2007-07-20 12:10:29 +0900 | [diff] [blame] | 319 | INTC_VECT(SIOF, 0xc00), INTC_VECT(HSPI, 0xc80), |
Magnus Damm | a842fb2 | 2009-02-24 22:59:12 +0900 | [diff] [blame] | 320 | INTC_VECT(MMCIF, 0xd00), INTC_VECT(MMCIF, 0xd20), |
| 321 | INTC_VECT(MMCIF, 0xd40), INTC_VECT(MMCIF, 0xd60), |
| 322 | INTC_VECT(DMAC1, 0xd80), INTC_VECT(DMAC1, 0xda0), |
| 323 | INTC_VECT(DMAC1, 0xdc0), INTC_VECT(DMAC1, 0xde0), |
Magnus Damm | 39c7aa9 | 2007-07-20 12:10:29 +0900 | [diff] [blame] | 324 | INTC_VECT(TMU3, 0xe00), INTC_VECT(TMU4, 0xe20), |
| 325 | INTC_VECT(TMU5, 0xe40), |
| 326 | INTC_VECT(SSI, 0xe80), |
Magnus Damm | a842fb2 | 2009-02-24 22:59:12 +0900 | [diff] [blame] | 327 | INTC_VECT(FLCTL, 0xf00), INTC_VECT(FLCTL, 0xf20), |
| 328 | INTC_VECT(FLCTL, 0xf40), INTC_VECT(FLCTL, 0xf60), |
| 329 | INTC_VECT(GPIO, 0xf80), INTC_VECT(GPIO, 0xfa0), |
| 330 | INTC_VECT(GPIO, 0xfc0), INTC_VECT(GPIO, 0xfe0), |
Magnus Damm | d619500 | 2007-06-15 10:41:54 +0900 | [diff] [blame] | 331 | }; |
| 332 | |
Magnus Damm | 5c37e02 | 2007-08-17 00:45:35 +0900 | [diff] [blame] | 333 | static struct intc_group groups[] __initdata = { |
Magnus Damm | 39c7aa9 | 2007-07-20 12:10:29 +0900 | [diff] [blame] | 334 | INTC_GROUP(TMU012, TMU0, TMU1, TMU2, TMU2_TICPI), |
Magnus Damm | 39c7aa9 | 2007-07-20 12:10:29 +0900 | [diff] [blame] | 335 | INTC_GROUP(TMU345, TMU3, TMU4, TMU5), |
Magnus Damm | 39c7aa9 | 2007-07-20 12:10:29 +0900 | [diff] [blame] | 336 | }; |
| 337 | |
Magnus Damm | 5c37e02 | 2007-08-17 00:45:35 +0900 | [diff] [blame] | 338 | static struct intc_mask_reg mask_registers[] __initdata = { |
Magnus Damm | 39c7aa9 | 2007-07-20 12:10:29 +0900 | [diff] [blame] | 339 | { 0xffd40038, 0xffd4003c, 32, /* INT2MSKR / INT2MSKCR */ |
| 340 | { 0, 0, 0, 0, 0, 0, GPIO, FLCTL, |
| 341 | SSI, MMCIF, HSPI, SIOF, PCIC5, PCIINTD, PCIINTC, PCIINTB, |
| 342 | PCIINTA, PCISERR, HAC, CMT, 0, 0, DMAC1, DMAC0, |
| 343 | HUDI, 0, WDT, SCIF1, SCIF0, RTC, TMU345, TMU012 } }, |
| 344 | }; |
| 345 | |
Magnus Damm | 5c37e02 | 2007-08-17 00:45:35 +0900 | [diff] [blame] | 346 | static struct intc_prio_reg prio_registers[] __initdata = { |
Magnus Damm | 6ef5fb2 | 2007-08-12 15:22:02 +0900 | [diff] [blame] | 347 | { 0xffd40000, 0, 32, 8, /* INT2PRI0 */ { TMU0, TMU1, |
| 348 | TMU2, TMU2_TICPI } }, |
| 349 | { 0xffd40004, 0, 32, 8, /* INT2PRI1 */ { TMU3, TMU4, TMU5, RTC } }, |
| 350 | { 0xffd40008, 0, 32, 8, /* INT2PRI2 */ { SCIF0, SCIF1, WDT } }, |
| 351 | { 0xffd4000c, 0, 32, 8, /* INT2PRI3 */ { HUDI, DMAC0, DMAC1 } }, |
| 352 | { 0xffd40010, 0, 32, 8, /* INT2PRI4 */ { CMT, HAC, |
| 353 | PCISERR, PCIINTA, } }, |
| 354 | { 0xffd40014, 0, 32, 8, /* INT2PRI5 */ { PCIINTB, PCIINTC, |
| 355 | PCIINTD, PCIC5 } }, |
| 356 | { 0xffd40018, 0, 32, 8, /* INT2PRI6 */ { SIOF, HSPI, MMCIF, SSI } }, |
| 357 | { 0xffd4001c, 0, 32, 8, /* INT2PRI7 */ { FLCTL, GPIO } }, |
Magnus Damm | 39c7aa9 | 2007-07-20 12:10:29 +0900 | [diff] [blame] | 358 | }; |
| 359 | |
Magnus Damm | 7f3edee | 2008-01-10 14:08:55 +0900 | [diff] [blame] | 360 | static DECLARE_INTC_DESC(intc_desc, "sh7780", vectors, groups, |
Magnus Damm | 39c7aa9 | 2007-07-20 12:10:29 +0900 | [diff] [blame] | 361 | mask_registers, prio_registers, NULL); |
| 362 | |
| 363 | /* Support for external interrupt pins in IRQ mode */ |
| 364 | |
Magnus Damm | 5c37e02 | 2007-08-17 00:45:35 +0900 | [diff] [blame] | 365 | static struct intc_vect irq_vectors[] __initdata = { |
Magnus Damm | 39c7aa9 | 2007-07-20 12:10:29 +0900 | [diff] [blame] | 366 | INTC_VECT(IRQ0, 0x240), INTC_VECT(IRQ1, 0x280), |
| 367 | INTC_VECT(IRQ2, 0x2c0), INTC_VECT(IRQ3, 0x300), |
| 368 | INTC_VECT(IRQ4, 0x340), INTC_VECT(IRQ5, 0x380), |
| 369 | INTC_VECT(IRQ6, 0x3c0), INTC_VECT(IRQ7, 0x200), |
| 370 | }; |
| 371 | |
Magnus Damm | 5c37e02 | 2007-08-17 00:45:35 +0900 | [diff] [blame] | 372 | static struct intc_mask_reg irq_mask_registers[] __initdata = { |
Magnus Damm | 39c7aa9 | 2007-07-20 12:10:29 +0900 | [diff] [blame] | 373 | { 0xffd00044, 0xffd00064, 32, /* INTMSK0 / INTMSKCLR0 */ |
| 374 | { IRQ0, IRQ1, IRQ2, IRQ3, IRQ4, IRQ5, IRQ6, IRQ7 } }, |
| 375 | }; |
| 376 | |
Magnus Damm | 5c37e02 | 2007-08-17 00:45:35 +0900 | [diff] [blame] | 377 | static struct intc_prio_reg irq_prio_registers[] __initdata = { |
Magnus Damm | 6ef5fb2 | 2007-08-12 15:22:02 +0900 | [diff] [blame] | 378 | { 0xffd00010, 0, 32, 4, /* INTPRI */ { IRQ0, IRQ1, IRQ2, IRQ3, |
| 379 | IRQ4, IRQ5, IRQ6, IRQ7 } }, |
Magnus Damm | 39c7aa9 | 2007-07-20 12:10:29 +0900 | [diff] [blame] | 380 | }; |
| 381 | |
Magnus Damm | 5c37e02 | 2007-08-17 00:45:35 +0900 | [diff] [blame] | 382 | static struct intc_sense_reg irq_sense_registers[] __initdata = { |
Magnus Damm | 39c7aa9 | 2007-07-20 12:10:29 +0900 | [diff] [blame] | 383 | { 0xffd0001c, 32, 2, /* ICR1 */ { IRQ0, IRQ1, IRQ2, IRQ3, |
| 384 | IRQ4, IRQ5, IRQ6, IRQ7 } }, |
| 385 | }; |
| 386 | |
Yoshihiro Shimoda | 6bdfb22 | 2008-07-04 12:37:12 +0900 | [diff] [blame] | 387 | static struct intc_mask_reg irq_ack_registers[] __initdata = { |
| 388 | { 0xffd00024, 0, 32, /* INTREQ */ |
| 389 | { IRQ0, IRQ1, IRQ2, IRQ3, IRQ4, IRQ5, IRQ6, IRQ7 } }, |
| 390 | }; |
| 391 | |
| 392 | static DECLARE_INTC_DESC_ACK(intc_irq_desc, "sh7780-irq", irq_vectors, |
| 393 | NULL, irq_mask_registers, irq_prio_registers, |
| 394 | irq_sense_registers, irq_ack_registers); |
Magnus Damm | 39c7aa9 | 2007-07-20 12:10:29 +0900 | [diff] [blame] | 395 | |
| 396 | /* External interrupt pins in IRL mode */ |
| 397 | |
Magnus Damm | 5c37e02 | 2007-08-17 00:45:35 +0900 | [diff] [blame] | 398 | static struct intc_vect irl_vectors[] __initdata = { |
Magnus Damm | 39c7aa9 | 2007-07-20 12:10:29 +0900 | [diff] [blame] | 399 | INTC_VECT(IRL_LLLL, 0x200), INTC_VECT(IRL_LLLH, 0x220), |
| 400 | INTC_VECT(IRL_LLHL, 0x240), INTC_VECT(IRL_LLHH, 0x260), |
| 401 | INTC_VECT(IRL_LHLL, 0x280), INTC_VECT(IRL_LHLH, 0x2a0), |
| 402 | INTC_VECT(IRL_LHHL, 0x2c0), INTC_VECT(IRL_LHHH, 0x2e0), |
| 403 | INTC_VECT(IRL_HLLL, 0x300), INTC_VECT(IRL_HLLH, 0x320), |
| 404 | INTC_VECT(IRL_HLHL, 0x340), INTC_VECT(IRL_HLHH, 0x360), |
| 405 | INTC_VECT(IRL_HHLL, 0x380), INTC_VECT(IRL_HHLH, 0x3a0), |
| 406 | INTC_VECT(IRL_HHHL, 0x3c0), |
| 407 | }; |
| 408 | |
Magnus Damm | 5c37e02 | 2007-08-17 00:45:35 +0900 | [diff] [blame] | 409 | static struct intc_mask_reg irl3210_mask_registers[] __initdata = { |
Magnus Damm | 953c8ef | 2007-09-10 12:03:50 +0900 | [diff] [blame] | 410 | { 0xffd40080, 0xffd40084, 32, /* INTMSK2 / INTMSKCLR2 */ |
Magnus Damm | 39c7aa9 | 2007-07-20 12:10:29 +0900 | [diff] [blame] | 411 | { IRL_LLLL, IRL_LLLH, IRL_LLHL, IRL_LLHH, |
| 412 | IRL_LHLL, IRL_LHLH, IRL_LHHL, IRL_LHHH, |
| 413 | IRL_HLLL, IRL_HLLH, IRL_HLHL, IRL_HLHH, |
| 414 | IRL_HHLL, IRL_HHLH, IRL_HHHL, } }, |
| 415 | }; |
| 416 | |
Magnus Damm | 5c37e02 | 2007-08-17 00:45:35 +0900 | [diff] [blame] | 417 | static struct intc_mask_reg irl7654_mask_registers[] __initdata = { |
Magnus Damm | 953c8ef | 2007-09-10 12:03:50 +0900 | [diff] [blame] | 418 | { 0xffd40080, 0xffd40084, 32, /* INTMSK2 / INTMSKCLR2 */ |
Magnus Damm | 39c7aa9 | 2007-07-20 12:10:29 +0900 | [diff] [blame] | 419 | { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, |
| 420 | IRL_LLLL, IRL_LLLH, IRL_LLHL, IRL_LLHH, |
| 421 | IRL_LHLL, IRL_LHLH, IRL_LHHL, IRL_LHHH, |
| 422 | IRL_HLLL, IRL_HLLH, IRL_HLHL, IRL_HLHH, |
| 423 | IRL_HHLL, IRL_HHLH, IRL_HHHL, } }, |
| 424 | }; |
| 425 | |
| 426 | static DECLARE_INTC_DESC(intc_irl7654_desc, "sh7780-irl7654", irl_vectors, |
Magnus Damm | 7f3edee | 2008-01-10 14:08:55 +0900 | [diff] [blame] | 427 | NULL, irl7654_mask_registers, NULL, NULL); |
Magnus Damm | 39c7aa9 | 2007-07-20 12:10:29 +0900 | [diff] [blame] | 428 | |
| 429 | static DECLARE_INTC_DESC(intc_irl3210_desc, "sh7780-irl3210", irl_vectors, |
Magnus Damm | 7f3edee | 2008-01-10 14:08:55 +0900 | [diff] [blame] | 430 | NULL, irl3210_mask_registers, NULL, NULL); |
Magnus Damm | 39c7aa9 | 2007-07-20 12:10:29 +0900 | [diff] [blame] | 431 | |
Magnus Damm | 953c8ef | 2007-09-10 12:03:50 +0900 | [diff] [blame] | 432 | #define INTC_ICR0 0xffd00000 |
| 433 | #define INTC_INTMSK0 0xffd00044 |
| 434 | #define INTC_INTMSK1 0xffd00048 |
| 435 | #define INTC_INTMSK2 0xffd40080 |
| 436 | #define INTC_INTMSKCLR1 0xffd00068 |
| 437 | #define INTC_INTMSKCLR2 0xffd40084 |
| 438 | |
Magnus Damm | 90015c8 | 2007-07-18 17:57:34 +0900 | [diff] [blame] | 439 | void __init plat_irq_setup(void) |
Paul Mundt | 66a7405 | 2006-10-20 15:30:55 +0900 | [diff] [blame] | 440 | { |
Magnus Damm | 953c8ef | 2007-09-10 12:03:50 +0900 | [diff] [blame] | 441 | /* disable IRQ7-0 */ |
| 442 | ctrl_outl(0xff000000, INTC_INTMSK0); |
| 443 | |
| 444 | /* disable IRL3-0 + IRL7-4 */ |
| 445 | ctrl_outl(0xc0000000, INTC_INTMSK1); |
| 446 | ctrl_outl(0xfffefffe, INTC_INTMSK2); |
| 447 | |
| 448 | /* select IRL mode for IRL3-0 + IRL7-4 */ |
| 449 | ctrl_outl(ctrl_inl(INTC_ICR0) & ~0x00c00000, INTC_ICR0); |
| 450 | |
| 451 | /* disable holding function, ie enable "SH-4 Mode" */ |
| 452 | ctrl_outl(ctrl_inl(INTC_ICR0) | 0x00200000, INTC_ICR0); |
| 453 | |
Magnus Damm | 39c7aa9 | 2007-07-20 12:10:29 +0900 | [diff] [blame] | 454 | register_intc_controller(&intc_desc); |
| 455 | } |
| 456 | |
| 457 | void __init plat_irq_setup_pins(int mode) |
| 458 | { |
| 459 | switch (mode) { |
| 460 | case IRQ_MODE_IRQ: |
Magnus Damm | 953c8ef | 2007-09-10 12:03:50 +0900 | [diff] [blame] | 461 | /* select IRQ mode for IRL3-0 + IRL7-4 */ |
| 462 | ctrl_outl(ctrl_inl(INTC_ICR0) | 0x00c00000, INTC_ICR0); |
Magnus Damm | 39c7aa9 | 2007-07-20 12:10:29 +0900 | [diff] [blame] | 463 | register_intc_controller(&intc_irq_desc); |
| 464 | break; |
| 465 | case IRQ_MODE_IRL7654: |
Magnus Damm | 953c8ef | 2007-09-10 12:03:50 +0900 | [diff] [blame] | 466 | /* enable IRL7-4 but don't provide any masking */ |
| 467 | ctrl_outl(0x40000000, INTC_INTMSKCLR1); |
| 468 | ctrl_outl(0x0000fffe, INTC_INTMSKCLR2); |
Magnus Damm | 39c7aa9 | 2007-07-20 12:10:29 +0900 | [diff] [blame] | 469 | break; |
| 470 | case IRQ_MODE_IRL3210: |
Magnus Damm | 953c8ef | 2007-09-10 12:03:50 +0900 | [diff] [blame] | 471 | /* enable IRL0-3 but don't provide any masking */ |
| 472 | ctrl_outl(0x80000000, INTC_INTMSKCLR1); |
| 473 | ctrl_outl(0xfffe0000, INTC_INTMSKCLR2); |
| 474 | break; |
| 475 | case IRQ_MODE_IRL7654_MASK: |
| 476 | /* enable IRL7-4 and mask using cpu intc controller */ |
| 477 | ctrl_outl(0x40000000, INTC_INTMSKCLR1); |
| 478 | register_intc_controller(&intc_irl7654_desc); |
| 479 | break; |
| 480 | case IRQ_MODE_IRL3210_MASK: |
| 481 | /* enable IRL0-3 and mask using cpu intc controller */ |
| 482 | ctrl_outl(0x80000000, INTC_INTMSKCLR1); |
Magnus Damm | 39c7aa9 | 2007-07-20 12:10:29 +0900 | [diff] [blame] | 483 | register_intc_controller(&intc_irl3210_desc); |
| 484 | break; |
| 485 | default: |
| 486 | BUG(); |
| 487 | } |
Paul Mundt | 66a7405 | 2006-10-20 15:30:55 +0900 | [diff] [blame] | 488 | } |