Greg Kroah-Hartman | b244131 | 2017-11-01 15:07:57 +0100 | [diff] [blame] | 1 | // SPDX-License-Identifier: GPL-2.0 |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2 | /* |
Hirokazu Takata | 3264f97 | 2007-08-01 21:09:31 +0900 | [diff] [blame] | 3 | * linux/arch/m32r/platforms/usrv/setup.c |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4 | * |
| 5 | * Setup routines for MITSUBISHI uServer |
| 6 | * |
| 7 | * Copyright (c) 2001, 2002, 2003 Hiroyuki Kondo, Hirokazu Takata, |
| 8 | * Hitoshi Yamamoto |
| 9 | */ |
| 10 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 11 | #include <linux/irq.h> |
| 12 | #include <linux/kernel.h> |
| 13 | #include <linux/init.h> |
| 14 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 15 | #include <asm/m32r.h> |
| 16 | #include <asm/io.h> |
| 17 | |
| 18 | #define irq2port(x) (M32R_ICU_CR1_PORTL + ((x - 1) * sizeof(unsigned long))) |
| 19 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 20 | icu_data_t icu_data[M32700UT_NUM_CPU_IRQ]; |
| 21 | |
| 22 | static void disable_mappi_irq(unsigned int irq) |
| 23 | { |
| 24 | unsigned long port, data; |
| 25 | |
| 26 | port = irq2port(irq); |
| 27 | data = icu_data[irq].icucr|M32R_ICUCR_ILEVEL7; |
| 28 | outl(data, port); |
| 29 | } |
| 30 | |
| 31 | static void enable_mappi_irq(unsigned int irq) |
| 32 | { |
| 33 | unsigned long port, data; |
| 34 | |
| 35 | port = irq2port(irq); |
| 36 | data = icu_data[irq].icucr|M32R_ICUCR_IEN|M32R_ICUCR_ILEVEL6; |
| 37 | outl(data, port); |
| 38 | } |
| 39 | |
Thomas Gleixner | 7a0abc7 | 2011-01-19 19:10:18 +0100 | [diff] [blame] | 40 | static void mask_mappi(struct irq_data *data) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 41 | { |
Thomas Gleixner | 7a0abc7 | 2011-01-19 19:10:18 +0100 | [diff] [blame] | 42 | disable_mappi_irq(data->irq); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 43 | } |
| 44 | |
Thomas Gleixner | 7a0abc7 | 2011-01-19 19:10:18 +0100 | [diff] [blame] | 45 | static void unmask_mappi(struct irq_data *data) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 46 | { |
Thomas Gleixner | 7a0abc7 | 2011-01-19 19:10:18 +0100 | [diff] [blame] | 47 | enable_mappi_irq(data->irq); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 48 | } |
| 49 | |
Thomas Gleixner | 7a0abc7 | 2011-01-19 19:10:18 +0100 | [diff] [blame] | 50 | static void shutdown_mappi(struct irq_data *data) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 51 | { |
| 52 | unsigned long port; |
| 53 | |
Thomas Gleixner | 7a0abc7 | 2011-01-19 19:10:18 +0100 | [diff] [blame] | 54 | port = irq2port(data->irq); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 55 | outl(M32R_ICUCR_ILEVEL7, port); |
| 56 | } |
| 57 | |
Thomas Gleixner | 189e91f | 2009-06-16 15:33:26 -0700 | [diff] [blame] | 58 | static struct irq_chip mappi_irq_type = |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 59 | { |
Thomas Gleixner | 7a0abc7 | 2011-01-19 19:10:18 +0100 | [diff] [blame] | 60 | .name = "M32700-IRQ", |
| 61 | .irq_shutdown = shutdown_mappi, |
| 62 | .irq_mask = mask_mappi, |
| 63 | .irq_unmask = unmask_mappi, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 64 | }; |
| 65 | |
| 66 | /* |
| 67 | * Interrupt Control Unit of PLD on M32700UT (Level 2) |
| 68 | */ |
| 69 | #define irq2pldirq(x) ((x) - M32700UT_PLD_IRQ_BASE) |
| 70 | #define pldirq2port(x) (unsigned long)((int)PLD_ICUCR1 + \ |
| 71 | (((x) - 1) * sizeof(unsigned short))) |
| 72 | |
| 73 | typedef struct { |
| 74 | unsigned short icucr; /* ICU Control Register */ |
| 75 | } pld_icu_data_t; |
| 76 | |
| 77 | static pld_icu_data_t pld_icu_data[M32700UT_NUM_PLD_IRQ]; |
| 78 | |
| 79 | static void disable_m32700ut_pld_irq(unsigned int irq) |
| 80 | { |
| 81 | unsigned long port, data; |
| 82 | unsigned int pldirq; |
| 83 | |
| 84 | pldirq = irq2pldirq(irq); |
| 85 | port = pldirq2port(pldirq); |
| 86 | data = pld_icu_data[pldirq].icucr|PLD_ICUCR_ILEVEL7; |
| 87 | outw(data, port); |
| 88 | } |
| 89 | |
| 90 | static void enable_m32700ut_pld_irq(unsigned int irq) |
| 91 | { |
| 92 | unsigned long port, data; |
| 93 | unsigned int pldirq; |
| 94 | |
| 95 | pldirq = irq2pldirq(irq); |
| 96 | port = pldirq2port(pldirq); |
| 97 | data = pld_icu_data[pldirq].icucr|PLD_ICUCR_IEN|PLD_ICUCR_ILEVEL6; |
| 98 | outw(data, port); |
| 99 | } |
| 100 | |
Thomas Gleixner | 7a0abc7 | 2011-01-19 19:10:18 +0100 | [diff] [blame] | 101 | static void mask_m32700ut_pld(struct irq_data *data) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 102 | { |
Thomas Gleixner | 7a0abc7 | 2011-01-19 19:10:18 +0100 | [diff] [blame] | 103 | disable_m32700ut_pld_irq(data->irq); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 104 | } |
| 105 | |
Thomas Gleixner | 7a0abc7 | 2011-01-19 19:10:18 +0100 | [diff] [blame] | 106 | static void unmask_m32700ut_pld(struct irq_data *data) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 107 | { |
Thomas Gleixner | 7a0abc7 | 2011-01-19 19:10:18 +0100 | [diff] [blame] | 108 | enable_m32700ut_pld_irq(data->irq); |
| 109 | enable_mappi_irq(M32R_IRQ_INT1); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 110 | } |
| 111 | |
Thomas Gleixner | 7a0abc7 | 2011-01-19 19:10:18 +0100 | [diff] [blame] | 112 | static void shutdown_m32700ut_pld(struct irq_data *data) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 113 | { |
| 114 | unsigned long port; |
| 115 | unsigned int pldirq; |
| 116 | |
Thomas Gleixner | 7a0abc7 | 2011-01-19 19:10:18 +0100 | [diff] [blame] | 117 | pldirq = irq2pldirq(data->irq); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 118 | port = pldirq2port(pldirq); |
| 119 | outw(PLD_ICUCR_ILEVEL7, port); |
| 120 | } |
| 121 | |
Thomas Gleixner | 189e91f | 2009-06-16 15:33:26 -0700 | [diff] [blame] | 122 | static struct irq_chip m32700ut_pld_irq_type = |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 123 | { |
Thomas Gleixner | 7a0abc7 | 2011-01-19 19:10:18 +0100 | [diff] [blame] | 124 | .name = "USRV-PLD-IRQ", |
| 125 | .irq_shutdown = shutdown_m32700ut_pld, |
| 126 | .irq_mask = mask_m32700ut_pld, |
| 127 | .irq_unmask = unmask_m32700ut_pld, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 128 | }; |
| 129 | |
| 130 | void __init init_IRQ(void) |
| 131 | { |
| 132 | static int once = 0; |
| 133 | int i; |
| 134 | |
| 135 | if (once) |
| 136 | return; |
| 137 | else |
| 138 | once++; |
| 139 | |
| 140 | /* MFT2 : system timer */ |
Thomas Gleixner | 27e5c5a | 2011-03-24 17:32:45 +0100 | [diff] [blame] | 141 | irq_set_chip_and_handler(M32R_IRQ_MFT2, &mappi_irq_type, |
Thomas Gleixner | 7a0abc7 | 2011-01-19 19:10:18 +0100 | [diff] [blame] | 142 | handle_level_irq); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 143 | icu_data[M32R_IRQ_MFT2].icucr = M32R_ICUCR_IEN; |
| 144 | disable_mappi_irq(M32R_IRQ_MFT2); |
| 145 | |
| 146 | #if defined(CONFIG_SERIAL_M32R_SIO) |
| 147 | /* SIO0_R : uart receive data */ |
Thomas Gleixner | 27e5c5a | 2011-03-24 17:32:45 +0100 | [diff] [blame] | 148 | irq_set_chip_and_handler(M32R_IRQ_SIO0_R, &mappi_irq_type, |
Thomas Gleixner | 7a0abc7 | 2011-01-19 19:10:18 +0100 | [diff] [blame] | 149 | handle_level_irq); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 150 | icu_data[M32R_IRQ_SIO0_R].icucr = 0; |
| 151 | disable_mappi_irq(M32R_IRQ_SIO0_R); |
| 152 | |
| 153 | /* SIO0_S : uart send data */ |
Thomas Gleixner | 27e5c5a | 2011-03-24 17:32:45 +0100 | [diff] [blame] | 154 | irq_set_chip_and_handler(M32R_IRQ_SIO0_S, &mappi_irq_type, |
Thomas Gleixner | 7a0abc7 | 2011-01-19 19:10:18 +0100 | [diff] [blame] | 155 | handle_level_irq); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 156 | icu_data[M32R_IRQ_SIO0_S].icucr = 0; |
| 157 | disable_mappi_irq(M32R_IRQ_SIO0_S); |
| 158 | |
| 159 | /* SIO1_R : uart receive data */ |
Thomas Gleixner | 27e5c5a | 2011-03-24 17:32:45 +0100 | [diff] [blame] | 160 | irq_set_chip_and_handler(M32R_IRQ_SIO1_R, &mappi_irq_type, |
Thomas Gleixner | 7a0abc7 | 2011-01-19 19:10:18 +0100 | [diff] [blame] | 161 | handle_level_irq); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 162 | icu_data[M32R_IRQ_SIO1_R].icucr = 0; |
| 163 | disable_mappi_irq(M32R_IRQ_SIO1_R); |
| 164 | |
| 165 | /* SIO1_S : uart send data */ |
Thomas Gleixner | 27e5c5a | 2011-03-24 17:32:45 +0100 | [diff] [blame] | 166 | irq_set_chip_and_handler(M32R_IRQ_SIO1_S, &mappi_irq_type, |
Thomas Gleixner | 7a0abc7 | 2011-01-19 19:10:18 +0100 | [diff] [blame] | 167 | handle_level_irq); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 168 | icu_data[M32R_IRQ_SIO1_S].icucr = 0; |
| 169 | disable_mappi_irq(M32R_IRQ_SIO1_S); |
| 170 | #endif /* CONFIG_SERIAL_M32R_SIO */ |
| 171 | |
| 172 | /* INT#67-#71: CFC#0 IREQ on PLD */ |
Hirokazu Takata | 3264f97 | 2007-08-01 21:09:31 +0900 | [diff] [blame] | 173 | for (i = 0 ; i < CONFIG_M32R_CFC_NUM ; i++ ) { |
Thomas Gleixner | 27e5c5a | 2011-03-24 17:32:45 +0100 | [diff] [blame] | 174 | irq_set_chip_and_handler(PLD_IRQ_CF0 + i, |
Thomas Gleixner | 7a0abc7 | 2011-01-19 19:10:18 +0100 | [diff] [blame] | 175 | &m32700ut_pld_irq_type, |
| 176 | handle_level_irq); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 177 | pld_icu_data[irq2pldirq(PLD_IRQ_CF0 + i)].icucr |
| 178 | = PLD_ICUCR_ISMOD01; /* 'L' level sense */ |
| 179 | disable_m32700ut_pld_irq(PLD_IRQ_CF0 + i); |
| 180 | } |
| 181 | |
| 182 | #if defined(CONFIG_SERIAL_8250) || defined(CONFIG_SERIAL_8250_MODULE) |
| 183 | /* INT#76: 16552D#0 IREQ on PLD */ |
Thomas Gleixner | 27e5c5a | 2011-03-24 17:32:45 +0100 | [diff] [blame] | 184 | irq_set_chip_and_handler(PLD_IRQ_UART0, &m32700ut_pld_irq_type, |
Thomas Gleixner | 7a0abc7 | 2011-01-19 19:10:18 +0100 | [diff] [blame] | 185 | handle_level_irq); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 186 | pld_icu_data[irq2pldirq(PLD_IRQ_UART0)].icucr |
| 187 | = PLD_ICUCR_ISMOD03; /* 'H' level sense */ |
| 188 | disable_m32700ut_pld_irq(PLD_IRQ_UART0); |
| 189 | |
| 190 | /* INT#77: 16552D#1 IREQ on PLD */ |
Thomas Gleixner | 27e5c5a | 2011-03-24 17:32:45 +0100 | [diff] [blame] | 191 | irq_set_chip_and_handler(PLD_IRQ_UART1, &m32700ut_pld_irq_type, |
Thomas Gleixner | 7a0abc7 | 2011-01-19 19:10:18 +0100 | [diff] [blame] | 192 | handle_level_irq); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 193 | pld_icu_data[irq2pldirq(PLD_IRQ_UART1)].icucr |
| 194 | = PLD_ICUCR_ISMOD03; /* 'H' level sense */ |
| 195 | disable_m32700ut_pld_irq(PLD_IRQ_UART1); |
| 196 | #endif /* CONFIG_SERIAL_8250 || CONFIG_SERIAL_8250_MODULE */ |
| 197 | |
| 198 | #if defined(CONFIG_IDC_AK4524) || defined(CONFIG_IDC_AK4524_MODULE) |
| 199 | /* INT#80: AK4524 IREQ on PLD */ |
Thomas Gleixner | 27e5c5a | 2011-03-24 17:32:45 +0100 | [diff] [blame] | 200 | irq_set_chip_and_handler(PLD_IRQ_SNDINT, &m32700ut_pld_irq_type, |
Thomas Gleixner | 7a0abc7 | 2011-01-19 19:10:18 +0100 | [diff] [blame] | 201 | handle_level_irq); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 202 | pld_icu_data[irq2pldirq(PLD_IRQ_SNDINT)].icucr |
| 203 | = PLD_ICUCR_ISMOD01; /* 'L' level sense */ |
| 204 | disable_m32700ut_pld_irq(PLD_IRQ_SNDINT); |
| 205 | #endif /* CONFIG_IDC_AK4524 || CONFIG_IDC_AK4524_MODULE */ |
| 206 | |
| 207 | /* |
| 208 | * INT1# is used for UART, MMC, CF Controller in FPGA. |
| 209 | * We enable it here. |
| 210 | */ |
| 211 | icu_data[M32R_IRQ_INT1].icucr = M32R_ICUCR_ISMOD11; |
| 212 | enable_mappi_irq(M32R_IRQ_INT1); |
| 213 | } |