Thomas Gleixner | d2912cb | 2019-06-04 10:11:33 +0200 | [diff] [blame] | 1 | // SPDX-License-Identifier: GPL-2.0-only |
Samuel Ortiz | fa9ff4b | 2008-02-07 00:14:49 -0800 | [diff] [blame] | 2 | /* |
| 3 | * driver/mfd/asic3.c |
| 4 | * |
| 5 | * Compaq ASIC3 support. |
| 6 | * |
Samuel Ortiz | fa9ff4b | 2008-02-07 00:14:49 -0800 | [diff] [blame] | 7 | * Copyright 2001 Compaq Computer Corporation. |
| 8 | * Copyright 2004-2005 Phil Blundell |
Samuel Ortiz | 6f2384c | 2008-06-20 11:02:19 +0200 | [diff] [blame] | 9 | * Copyright 2007-2008 OpenedHand Ltd. |
Samuel Ortiz | fa9ff4b | 2008-02-07 00:14:49 -0800 | [diff] [blame] | 10 | * |
| 11 | * Authors: Phil Blundell <pb@handhelds.org>, |
| 12 | * Samuel Ortiz <sameo@openedhand.com> |
Samuel Ortiz | fa9ff4b | 2008-02-07 00:14:49 -0800 | [diff] [blame] | 13 | */ |
| 14 | |
Samuel Ortiz | fa9ff4b | 2008-02-07 00:14:49 -0800 | [diff] [blame] | 15 | #include <linux/kernel.h> |
Philipp Zabel | 9461f65 | 2009-06-15 12:10:24 +0200 | [diff] [blame] | 16 | #include <linux/delay.h> |
Samuel Ortiz | fa9ff4b | 2008-02-07 00:14:49 -0800 | [diff] [blame] | 17 | #include <linux/irq.h> |
Linus Walleij | 5cd690a | 2019-08-14 09:24:03 +0200 | [diff] [blame] | 18 | #include <linux/gpio/driver.h> |
Paul Gortmaker | 5d4a357 | 2011-07-10 12:41:10 -0400 | [diff] [blame] | 19 | #include <linux/export.h> |
Samuel Ortiz | fa9ff4b | 2008-02-07 00:14:49 -0800 | [diff] [blame] | 20 | #include <linux/io.h> |
Tejun Heo | 5a0e3ad | 2010-03-24 17:04:11 +0900 | [diff] [blame] | 21 | #include <linux/slab.h> |
Samuel Ortiz | fa9ff4b | 2008-02-07 00:14:49 -0800 | [diff] [blame] | 22 | #include <linux/spinlock.h> |
| 23 | #include <linux/platform_device.h> |
| 24 | |
| 25 | #include <linux/mfd/asic3.h> |
Philipp Zabel | 9461f65 | 2009-06-15 12:10:24 +0200 | [diff] [blame] | 26 | #include <linux/mfd/core.h> |
| 27 | #include <linux/mfd/ds1wm.h> |
Philipp Zabel | 09f05ce | 2009-06-15 12:10:25 +0200 | [diff] [blame] | 28 | #include <linux/mfd/tmio.h> |
Samuel Ortiz | fa9ff4b | 2008-02-07 00:14:49 -0800 | [diff] [blame] | 29 | |
Robert Jarzmik | 4eb1d7f | 2018-05-26 11:31:50 +0200 | [diff] [blame] | 30 | #include <linux/mmc/host.h> |
| 31 | |
Philipp Zabel | e956a2a | 2009-06-05 18:31:02 +0200 | [diff] [blame] | 32 | enum { |
| 33 | ASIC3_CLOCK_SPI, |
| 34 | ASIC3_CLOCK_OWM, |
| 35 | ASIC3_CLOCK_PWM0, |
| 36 | ASIC3_CLOCK_PWM1, |
| 37 | ASIC3_CLOCK_LED0, |
| 38 | ASIC3_CLOCK_LED1, |
| 39 | ASIC3_CLOCK_LED2, |
| 40 | ASIC3_CLOCK_SD_HOST, |
| 41 | ASIC3_CLOCK_SD_BUS, |
| 42 | ASIC3_CLOCK_SMBUS, |
| 43 | ASIC3_CLOCK_EX0, |
| 44 | ASIC3_CLOCK_EX1, |
| 45 | }; |
| 46 | |
| 47 | struct asic3_clk { |
| 48 | int enabled; |
| 49 | unsigned int cdex; |
| 50 | unsigned long rate; |
| 51 | }; |
| 52 | |
| 53 | #define INIT_CDEX(_name, _rate) \ |
| 54 | [ASIC3_CLOCK_##_name] = { \ |
| 55 | .cdex = CLOCK_CDEX_##_name, \ |
| 56 | .rate = _rate, \ |
| 57 | } |
| 58 | |
Mark Brown | 59f2ad2 | 2010-12-11 12:59:35 +0000 | [diff] [blame] | 59 | static struct asic3_clk asic3_clk_init[] __initdata = { |
Philipp Zabel | e956a2a | 2009-06-05 18:31:02 +0200 | [diff] [blame] | 60 | INIT_CDEX(SPI, 0), |
| 61 | INIT_CDEX(OWM, 5000000), |
| 62 | INIT_CDEX(PWM0, 0), |
| 63 | INIT_CDEX(PWM1, 0), |
| 64 | INIT_CDEX(LED0, 0), |
| 65 | INIT_CDEX(LED1, 0), |
| 66 | INIT_CDEX(LED2, 0), |
| 67 | INIT_CDEX(SD_HOST, 24576000), |
| 68 | INIT_CDEX(SD_BUS, 12288000), |
| 69 | INIT_CDEX(SMBUS, 0), |
| 70 | INIT_CDEX(EX0, 32768), |
| 71 | INIT_CDEX(EX1, 24576000), |
| 72 | }; |
| 73 | |
Samuel Ortiz | 6f2384c | 2008-06-20 11:02:19 +0200 | [diff] [blame] | 74 | struct asic3 { |
| 75 | void __iomem *mapping; |
| 76 | unsigned int bus_shift; |
| 77 | unsigned int irq_nr; |
| 78 | unsigned int irq_base; |
Julia Cartwright | 93ad447 | 2017-03-21 17:43:04 -0500 | [diff] [blame] | 79 | raw_spinlock_t lock; |
Samuel Ortiz | 6f2384c | 2008-06-20 11:02:19 +0200 | [diff] [blame] | 80 | u16 irq_bothedge[4]; |
| 81 | struct gpio_chip gpio; |
| 82 | struct device *dev; |
Ian Molton | 64e8867 | 2010-01-06 13:51:48 +0100 | [diff] [blame] | 83 | void __iomem *tmio_cnf; |
Philipp Zabel | e956a2a | 2009-06-05 18:31:02 +0200 | [diff] [blame] | 84 | |
| 85 | struct asic3_clk clocks[ARRAY_SIZE(asic3_clk_init)]; |
Samuel Ortiz | 6f2384c | 2008-06-20 11:02:19 +0200 | [diff] [blame] | 86 | }; |
| 87 | |
| 88 | static int asic3_gpio_get(struct gpio_chip *chip, unsigned offset); |
| 89 | |
Paul Parsons | 13ca4f6 | 2011-05-13 18:53:03 +0000 | [diff] [blame] | 90 | void asic3_write_register(struct asic3 *asic, unsigned int reg, u32 value) |
Samuel Ortiz | fa9ff4b | 2008-02-07 00:14:49 -0800 | [diff] [blame] | 91 | { |
Al Viro | b32661e | 2008-03-29 03:10:58 +0000 | [diff] [blame] | 92 | iowrite16(value, asic->mapping + |
Samuel Ortiz | fa9ff4b | 2008-02-07 00:14:49 -0800 | [diff] [blame] | 93 | (reg >> asic->bus_shift)); |
| 94 | } |
Paul Parsons | 13ca4f6 | 2011-05-13 18:53:03 +0000 | [diff] [blame] | 95 | EXPORT_SYMBOL_GPL(asic3_write_register); |
Samuel Ortiz | fa9ff4b | 2008-02-07 00:14:49 -0800 | [diff] [blame] | 96 | |
Paul Parsons | 13ca4f6 | 2011-05-13 18:53:03 +0000 | [diff] [blame] | 97 | u32 asic3_read_register(struct asic3 *asic, unsigned int reg) |
Samuel Ortiz | fa9ff4b | 2008-02-07 00:14:49 -0800 | [diff] [blame] | 98 | { |
Al Viro | b32661e | 2008-03-29 03:10:58 +0000 | [diff] [blame] | 99 | return ioread16(asic->mapping + |
Samuel Ortiz | fa9ff4b | 2008-02-07 00:14:49 -0800 | [diff] [blame] | 100 | (reg >> asic->bus_shift)); |
| 101 | } |
Paul Parsons | 13ca4f6 | 2011-05-13 18:53:03 +0000 | [diff] [blame] | 102 | EXPORT_SYMBOL_GPL(asic3_read_register); |
Samuel Ortiz | fa9ff4b | 2008-02-07 00:14:49 -0800 | [diff] [blame] | 103 | |
Mark Brown | 59f2ad2 | 2010-12-11 12:59:35 +0000 | [diff] [blame] | 104 | static void asic3_set_register(struct asic3 *asic, u32 reg, u32 bits, bool set) |
Philipp Zabel | 6483c1b | 2009-06-05 18:31:01 +0200 | [diff] [blame] | 105 | { |
| 106 | unsigned long flags; |
| 107 | u32 val; |
| 108 | |
Julia Cartwright | 93ad447 | 2017-03-21 17:43:04 -0500 | [diff] [blame] | 109 | raw_spin_lock_irqsave(&asic->lock, flags); |
Philipp Zabel | 6483c1b | 2009-06-05 18:31:01 +0200 | [diff] [blame] | 110 | val = asic3_read_register(asic, reg); |
| 111 | if (set) |
| 112 | val |= bits; |
| 113 | else |
| 114 | val &= ~bits; |
| 115 | asic3_write_register(asic, reg, val); |
Julia Cartwright | 93ad447 | 2017-03-21 17:43:04 -0500 | [diff] [blame] | 116 | raw_spin_unlock_irqrestore(&asic->lock, flags); |
Philipp Zabel | 6483c1b | 2009-06-05 18:31:01 +0200 | [diff] [blame] | 117 | } |
| 118 | |
Samuel Ortiz | fa9ff4b | 2008-02-07 00:14:49 -0800 | [diff] [blame] | 119 | /* IRQs */ |
| 120 | #define MAX_ASIC_ISR_LOOPS 20 |
Samuel Ortiz | 3b8139f | 2008-06-20 11:12:21 +0200 | [diff] [blame] | 121 | #define ASIC3_GPIO_BASE_INCR \ |
| 122 | (ASIC3_GPIO_B_BASE - ASIC3_GPIO_A_BASE) |
Samuel Ortiz | fa9ff4b | 2008-02-07 00:14:49 -0800 | [diff] [blame] | 123 | |
| 124 | static void asic3_irq_flip_edge(struct asic3 *asic, |
| 125 | u32 base, int bit) |
| 126 | { |
| 127 | u16 edge; |
| 128 | unsigned long flags; |
| 129 | |
Julia Cartwright | 93ad447 | 2017-03-21 17:43:04 -0500 | [diff] [blame] | 130 | raw_spin_lock_irqsave(&asic->lock, flags); |
Samuel Ortiz | fa9ff4b | 2008-02-07 00:14:49 -0800 | [diff] [blame] | 131 | edge = asic3_read_register(asic, |
Samuel Ortiz | 3b8139f | 2008-06-20 11:12:21 +0200 | [diff] [blame] | 132 | base + ASIC3_GPIO_EDGE_TRIGGER); |
Samuel Ortiz | fa9ff4b | 2008-02-07 00:14:49 -0800 | [diff] [blame] | 133 | edge ^= bit; |
| 134 | asic3_write_register(asic, |
Samuel Ortiz | 3b8139f | 2008-06-20 11:12:21 +0200 | [diff] [blame] | 135 | base + ASIC3_GPIO_EDGE_TRIGGER, edge); |
Julia Cartwright | 93ad447 | 2017-03-21 17:43:04 -0500 | [diff] [blame] | 136 | raw_spin_unlock_irqrestore(&asic->lock, flags); |
Samuel Ortiz | fa9ff4b | 2008-02-07 00:14:49 -0800 | [diff] [blame] | 137 | } |
| 138 | |
Thomas Gleixner | bd0b9ac | 2015-09-14 10:42:37 +0200 | [diff] [blame] | 139 | static void asic3_irq_demux(struct irq_desc *desc) |
Samuel Ortiz | fa9ff4b | 2008-02-07 00:14:49 -0800 | [diff] [blame] | 140 | { |
Thomas Gleixner | 52a7d60 | 2011-03-25 11:12:26 +0000 | [diff] [blame] | 141 | struct asic3 *asic = irq_desc_get_handler_data(desc); |
| 142 | struct irq_data *data = irq_desc_get_irq_data(desc); |
Samuel Ortiz | fa9ff4b | 2008-02-07 00:14:49 -0800 | [diff] [blame] | 143 | int iter, i; |
| 144 | unsigned long flags; |
Samuel Ortiz | fa9ff4b | 2008-02-07 00:14:49 -0800 | [diff] [blame] | 145 | |
Axel Lin | a09aee8 | 2011-04-14 22:43:47 +0800 | [diff] [blame] | 146 | data->chip->irq_ack(data); |
Samuel Ortiz | fa9ff4b | 2008-02-07 00:14:49 -0800 | [diff] [blame] | 147 | |
| 148 | for (iter = 0 ; iter < MAX_ASIC_ISR_LOOPS; iter++) { |
| 149 | u32 status; |
| 150 | int bank; |
| 151 | |
Julia Cartwright | 93ad447 | 2017-03-21 17:43:04 -0500 | [diff] [blame] | 152 | raw_spin_lock_irqsave(&asic->lock, flags); |
Samuel Ortiz | fa9ff4b | 2008-02-07 00:14:49 -0800 | [diff] [blame] | 153 | status = asic3_read_register(asic, |
Samuel Ortiz | 3b8139f | 2008-06-20 11:12:21 +0200 | [diff] [blame] | 154 | ASIC3_OFFSET(INTR, P_INT_STAT)); |
Julia Cartwright | 93ad447 | 2017-03-21 17:43:04 -0500 | [diff] [blame] | 155 | raw_spin_unlock_irqrestore(&asic->lock, flags); |
Samuel Ortiz | fa9ff4b | 2008-02-07 00:14:49 -0800 | [diff] [blame] | 156 | |
| 157 | /* Check all ten register bits */ |
| 158 | if ((status & 0x3ff) == 0) |
| 159 | break; |
| 160 | |
| 161 | /* Handle GPIO IRQs */ |
| 162 | for (bank = 0; bank < ASIC3_NUM_GPIO_BANKS; bank++) { |
| 163 | if (status & (1 << bank)) { |
| 164 | unsigned long base, istat; |
| 165 | |
Samuel Ortiz | 3b8139f | 2008-06-20 11:12:21 +0200 | [diff] [blame] | 166 | base = ASIC3_GPIO_A_BASE |
| 167 | + bank * ASIC3_GPIO_BASE_INCR; |
Julia Cartwright | 93ad447 | 2017-03-21 17:43:04 -0500 | [diff] [blame] | 168 | raw_spin_lock_irqsave(&asic->lock, flags); |
Samuel Ortiz | fa9ff4b | 2008-02-07 00:14:49 -0800 | [diff] [blame] | 169 | istat = asic3_read_register(asic, |
| 170 | base + |
Samuel Ortiz | 3b8139f | 2008-06-20 11:12:21 +0200 | [diff] [blame] | 171 | ASIC3_GPIO_INT_STATUS); |
Samuel Ortiz | fa9ff4b | 2008-02-07 00:14:49 -0800 | [diff] [blame] | 172 | /* Clearing IntStatus */ |
| 173 | asic3_write_register(asic, |
| 174 | base + |
Samuel Ortiz | 3b8139f | 2008-06-20 11:12:21 +0200 | [diff] [blame] | 175 | ASIC3_GPIO_INT_STATUS, 0); |
Julia Cartwright | 93ad447 | 2017-03-21 17:43:04 -0500 | [diff] [blame] | 176 | raw_spin_unlock_irqrestore(&asic->lock, flags); |
Samuel Ortiz | fa9ff4b | 2008-02-07 00:14:49 -0800 | [diff] [blame] | 177 | |
| 178 | for (i = 0; i < ASIC3_GPIOS_PER_BANK; i++) { |
| 179 | int bit = (1 << i); |
| 180 | unsigned int irqnr; |
| 181 | |
| 182 | if (!(istat & bit)) |
| 183 | continue; |
| 184 | |
| 185 | irqnr = asic->irq_base + |
| 186 | (ASIC3_GPIOS_PER_BANK * bank) |
| 187 | + i; |
Thomas Gleixner | 52a7d60 | 2011-03-25 11:12:26 +0000 | [diff] [blame] | 188 | generic_handle_irq(irqnr); |
Samuel Ortiz | fa9ff4b | 2008-02-07 00:14:49 -0800 | [diff] [blame] | 189 | if (asic->irq_bothedge[bank] & bit) |
| 190 | asic3_irq_flip_edge(asic, base, |
| 191 | bit); |
| 192 | } |
| 193 | } |
| 194 | } |
| 195 | |
| 196 | /* Handle remaining IRQs in the status register */ |
| 197 | for (i = ASIC3_NUM_GPIOS; i < ASIC3_NR_IRQS; i++) { |
| 198 | /* They start at bit 4 and go up */ |
Thomas Gleixner | 52a7d60 | 2011-03-25 11:12:26 +0000 | [diff] [blame] | 199 | if (status & (1 << (i - ASIC3_NUM_GPIOS + 4))) |
| 200 | generic_handle_irq(asic->irq_base + i); |
Samuel Ortiz | fa9ff4b | 2008-02-07 00:14:49 -0800 | [diff] [blame] | 201 | } |
| 202 | } |
| 203 | |
| 204 | if (iter >= MAX_ASIC_ISR_LOOPS) |
Samuel Ortiz | 24f4f2e | 2008-06-20 11:11:19 +0200 | [diff] [blame] | 205 | dev_err(asic->dev, "interrupt processing overrun\n"); |
Samuel Ortiz | fa9ff4b | 2008-02-07 00:14:49 -0800 | [diff] [blame] | 206 | } |
| 207 | |
| 208 | static inline int asic3_irq_to_bank(struct asic3 *asic, int irq) |
| 209 | { |
| 210 | int n; |
| 211 | |
| 212 | n = (irq - asic->irq_base) >> 4; |
| 213 | |
Samuel Ortiz | 3b8139f | 2008-06-20 11:12:21 +0200 | [diff] [blame] | 214 | return (n * (ASIC3_GPIO_B_BASE - ASIC3_GPIO_A_BASE)); |
Samuel Ortiz | fa9ff4b | 2008-02-07 00:14:49 -0800 | [diff] [blame] | 215 | } |
| 216 | |
| 217 | static inline int asic3_irq_to_index(struct asic3 *asic, int irq) |
| 218 | { |
| 219 | return (irq - asic->irq_base) & 0xf; |
| 220 | } |
| 221 | |
Mark Brown | 0f76aae | 2010-12-11 13:08:57 +0000 | [diff] [blame] | 222 | static void asic3_mask_gpio_irq(struct irq_data *data) |
Samuel Ortiz | fa9ff4b | 2008-02-07 00:14:49 -0800 | [diff] [blame] | 223 | { |
Mark Brown | 0f76aae | 2010-12-11 13:08:57 +0000 | [diff] [blame] | 224 | struct asic3 *asic = irq_data_get_irq_chip_data(data); |
Samuel Ortiz | fa9ff4b | 2008-02-07 00:14:49 -0800 | [diff] [blame] | 225 | u32 val, bank, index; |
| 226 | unsigned long flags; |
| 227 | |
Mark Brown | 0f76aae | 2010-12-11 13:08:57 +0000 | [diff] [blame] | 228 | bank = asic3_irq_to_bank(asic, data->irq); |
| 229 | index = asic3_irq_to_index(asic, data->irq); |
Samuel Ortiz | fa9ff4b | 2008-02-07 00:14:49 -0800 | [diff] [blame] | 230 | |
Julia Cartwright | 93ad447 | 2017-03-21 17:43:04 -0500 | [diff] [blame] | 231 | raw_spin_lock_irqsave(&asic->lock, flags); |
Samuel Ortiz | 3b8139f | 2008-06-20 11:12:21 +0200 | [diff] [blame] | 232 | val = asic3_read_register(asic, bank + ASIC3_GPIO_MASK); |
Samuel Ortiz | fa9ff4b | 2008-02-07 00:14:49 -0800 | [diff] [blame] | 233 | val |= 1 << index; |
Samuel Ortiz | 3b8139f | 2008-06-20 11:12:21 +0200 | [diff] [blame] | 234 | asic3_write_register(asic, bank + ASIC3_GPIO_MASK, val); |
Julia Cartwright | 93ad447 | 2017-03-21 17:43:04 -0500 | [diff] [blame] | 235 | raw_spin_unlock_irqrestore(&asic->lock, flags); |
Samuel Ortiz | fa9ff4b | 2008-02-07 00:14:49 -0800 | [diff] [blame] | 236 | } |
| 237 | |
Mark Brown | 0f76aae | 2010-12-11 13:08:57 +0000 | [diff] [blame] | 238 | static void asic3_mask_irq(struct irq_data *data) |
Samuel Ortiz | fa9ff4b | 2008-02-07 00:14:49 -0800 | [diff] [blame] | 239 | { |
Mark Brown | 0f76aae | 2010-12-11 13:08:57 +0000 | [diff] [blame] | 240 | struct asic3 *asic = irq_data_get_irq_chip_data(data); |
Samuel Ortiz | fa9ff4b | 2008-02-07 00:14:49 -0800 | [diff] [blame] | 241 | int regval; |
| 242 | unsigned long flags; |
| 243 | |
Julia Cartwright | 93ad447 | 2017-03-21 17:43:04 -0500 | [diff] [blame] | 244 | raw_spin_lock_irqsave(&asic->lock, flags); |
Samuel Ortiz | fa9ff4b | 2008-02-07 00:14:49 -0800 | [diff] [blame] | 245 | regval = asic3_read_register(asic, |
Samuel Ortiz | 3b8139f | 2008-06-20 11:12:21 +0200 | [diff] [blame] | 246 | ASIC3_INTR_BASE + |
| 247 | ASIC3_INTR_INT_MASK); |
Samuel Ortiz | fa9ff4b | 2008-02-07 00:14:49 -0800 | [diff] [blame] | 248 | |
| 249 | regval &= ~(ASIC3_INTMASK_MASK0 << |
Mark Brown | 0f76aae | 2010-12-11 13:08:57 +0000 | [diff] [blame] | 250 | (data->irq - (asic->irq_base + ASIC3_NUM_GPIOS))); |
Samuel Ortiz | fa9ff4b | 2008-02-07 00:14:49 -0800 | [diff] [blame] | 251 | |
| 252 | asic3_write_register(asic, |
Samuel Ortiz | 3b8139f | 2008-06-20 11:12:21 +0200 | [diff] [blame] | 253 | ASIC3_INTR_BASE + |
| 254 | ASIC3_INTR_INT_MASK, |
Samuel Ortiz | fa9ff4b | 2008-02-07 00:14:49 -0800 | [diff] [blame] | 255 | regval); |
Julia Cartwright | 93ad447 | 2017-03-21 17:43:04 -0500 | [diff] [blame] | 256 | raw_spin_unlock_irqrestore(&asic->lock, flags); |
Samuel Ortiz | fa9ff4b | 2008-02-07 00:14:49 -0800 | [diff] [blame] | 257 | } |
| 258 | |
Mark Brown | 0f76aae | 2010-12-11 13:08:57 +0000 | [diff] [blame] | 259 | static void asic3_unmask_gpio_irq(struct irq_data *data) |
Samuel Ortiz | fa9ff4b | 2008-02-07 00:14:49 -0800 | [diff] [blame] | 260 | { |
Mark Brown | 0f76aae | 2010-12-11 13:08:57 +0000 | [diff] [blame] | 261 | struct asic3 *asic = irq_data_get_irq_chip_data(data); |
Samuel Ortiz | fa9ff4b | 2008-02-07 00:14:49 -0800 | [diff] [blame] | 262 | u32 val, bank, index; |
| 263 | unsigned long flags; |
| 264 | |
Mark Brown | 0f76aae | 2010-12-11 13:08:57 +0000 | [diff] [blame] | 265 | bank = asic3_irq_to_bank(asic, data->irq); |
| 266 | index = asic3_irq_to_index(asic, data->irq); |
Samuel Ortiz | fa9ff4b | 2008-02-07 00:14:49 -0800 | [diff] [blame] | 267 | |
Julia Cartwright | 93ad447 | 2017-03-21 17:43:04 -0500 | [diff] [blame] | 268 | raw_spin_lock_irqsave(&asic->lock, flags); |
Samuel Ortiz | 3b8139f | 2008-06-20 11:12:21 +0200 | [diff] [blame] | 269 | val = asic3_read_register(asic, bank + ASIC3_GPIO_MASK); |
Samuel Ortiz | fa9ff4b | 2008-02-07 00:14:49 -0800 | [diff] [blame] | 270 | val &= ~(1 << index); |
Samuel Ortiz | 3b8139f | 2008-06-20 11:12:21 +0200 | [diff] [blame] | 271 | asic3_write_register(asic, bank + ASIC3_GPIO_MASK, val); |
Julia Cartwright | 93ad447 | 2017-03-21 17:43:04 -0500 | [diff] [blame] | 272 | raw_spin_unlock_irqrestore(&asic->lock, flags); |
Samuel Ortiz | fa9ff4b | 2008-02-07 00:14:49 -0800 | [diff] [blame] | 273 | } |
| 274 | |
Mark Brown | 0f76aae | 2010-12-11 13:08:57 +0000 | [diff] [blame] | 275 | static void asic3_unmask_irq(struct irq_data *data) |
Samuel Ortiz | fa9ff4b | 2008-02-07 00:14:49 -0800 | [diff] [blame] | 276 | { |
Mark Brown | 0f76aae | 2010-12-11 13:08:57 +0000 | [diff] [blame] | 277 | struct asic3 *asic = irq_data_get_irq_chip_data(data); |
Samuel Ortiz | fa9ff4b | 2008-02-07 00:14:49 -0800 | [diff] [blame] | 278 | int regval; |
| 279 | unsigned long flags; |
| 280 | |
Julia Cartwright | 93ad447 | 2017-03-21 17:43:04 -0500 | [diff] [blame] | 281 | raw_spin_lock_irqsave(&asic->lock, flags); |
Samuel Ortiz | fa9ff4b | 2008-02-07 00:14:49 -0800 | [diff] [blame] | 282 | regval = asic3_read_register(asic, |
Samuel Ortiz | 3b8139f | 2008-06-20 11:12:21 +0200 | [diff] [blame] | 283 | ASIC3_INTR_BASE + |
| 284 | ASIC3_INTR_INT_MASK); |
Samuel Ortiz | fa9ff4b | 2008-02-07 00:14:49 -0800 | [diff] [blame] | 285 | |
| 286 | regval |= (ASIC3_INTMASK_MASK0 << |
Mark Brown | 0f76aae | 2010-12-11 13:08:57 +0000 | [diff] [blame] | 287 | (data->irq - (asic->irq_base + ASIC3_NUM_GPIOS))); |
Samuel Ortiz | fa9ff4b | 2008-02-07 00:14:49 -0800 | [diff] [blame] | 288 | |
| 289 | asic3_write_register(asic, |
Samuel Ortiz | 3b8139f | 2008-06-20 11:12:21 +0200 | [diff] [blame] | 290 | ASIC3_INTR_BASE + |
| 291 | ASIC3_INTR_INT_MASK, |
Samuel Ortiz | fa9ff4b | 2008-02-07 00:14:49 -0800 | [diff] [blame] | 292 | regval); |
Julia Cartwright | 93ad447 | 2017-03-21 17:43:04 -0500 | [diff] [blame] | 293 | raw_spin_unlock_irqrestore(&asic->lock, flags); |
Samuel Ortiz | fa9ff4b | 2008-02-07 00:14:49 -0800 | [diff] [blame] | 294 | } |
| 295 | |
Mark Brown | 0f76aae | 2010-12-11 13:08:57 +0000 | [diff] [blame] | 296 | static int asic3_gpio_irq_type(struct irq_data *data, unsigned int type) |
Samuel Ortiz | fa9ff4b | 2008-02-07 00:14:49 -0800 | [diff] [blame] | 297 | { |
Mark Brown | 0f76aae | 2010-12-11 13:08:57 +0000 | [diff] [blame] | 298 | struct asic3 *asic = irq_data_get_irq_chip_data(data); |
Samuel Ortiz | fa9ff4b | 2008-02-07 00:14:49 -0800 | [diff] [blame] | 299 | u32 bank, index; |
| 300 | u16 trigger, level, edge, bit; |
| 301 | unsigned long flags; |
| 302 | |
Mark Brown | 0f76aae | 2010-12-11 13:08:57 +0000 | [diff] [blame] | 303 | bank = asic3_irq_to_bank(asic, data->irq); |
| 304 | index = asic3_irq_to_index(asic, data->irq); |
Samuel Ortiz | fa9ff4b | 2008-02-07 00:14:49 -0800 | [diff] [blame] | 305 | bit = 1<<index; |
| 306 | |
Julia Cartwright | 93ad447 | 2017-03-21 17:43:04 -0500 | [diff] [blame] | 307 | raw_spin_lock_irqsave(&asic->lock, flags); |
Samuel Ortiz | fa9ff4b | 2008-02-07 00:14:49 -0800 | [diff] [blame] | 308 | level = asic3_read_register(asic, |
Samuel Ortiz | 3b8139f | 2008-06-20 11:12:21 +0200 | [diff] [blame] | 309 | bank + ASIC3_GPIO_LEVEL_TRIGGER); |
Samuel Ortiz | fa9ff4b | 2008-02-07 00:14:49 -0800 | [diff] [blame] | 310 | edge = asic3_read_register(asic, |
Samuel Ortiz | 3b8139f | 2008-06-20 11:12:21 +0200 | [diff] [blame] | 311 | bank + ASIC3_GPIO_EDGE_TRIGGER); |
Samuel Ortiz | fa9ff4b | 2008-02-07 00:14:49 -0800 | [diff] [blame] | 312 | trigger = asic3_read_register(asic, |
Samuel Ortiz | 3b8139f | 2008-06-20 11:12:21 +0200 | [diff] [blame] | 313 | bank + ASIC3_GPIO_TRIGGER_TYPE); |
Mark Brown | 0f76aae | 2010-12-11 13:08:57 +0000 | [diff] [blame] | 314 | asic->irq_bothedge[(data->irq - asic->irq_base) >> 4] &= ~bit; |
Samuel Ortiz | fa9ff4b | 2008-02-07 00:14:49 -0800 | [diff] [blame] | 315 | |
Dmitry Baryshkov | 6cab486 | 2008-07-27 04:23:31 +0100 | [diff] [blame] | 316 | if (type == IRQ_TYPE_EDGE_RISING) { |
Samuel Ortiz | fa9ff4b | 2008-02-07 00:14:49 -0800 | [diff] [blame] | 317 | trigger |= bit; |
| 318 | edge |= bit; |
Dmitry Baryshkov | 6cab486 | 2008-07-27 04:23:31 +0100 | [diff] [blame] | 319 | } else if (type == IRQ_TYPE_EDGE_FALLING) { |
Samuel Ortiz | fa9ff4b | 2008-02-07 00:14:49 -0800 | [diff] [blame] | 320 | trigger |= bit; |
| 321 | edge &= ~bit; |
Dmitry Baryshkov | 6cab486 | 2008-07-27 04:23:31 +0100 | [diff] [blame] | 322 | } else if (type == IRQ_TYPE_EDGE_BOTH) { |
Samuel Ortiz | fa9ff4b | 2008-02-07 00:14:49 -0800 | [diff] [blame] | 323 | trigger |= bit; |
Mark Brown | 0f76aae | 2010-12-11 13:08:57 +0000 | [diff] [blame] | 324 | if (asic3_gpio_get(&asic->gpio, data->irq - asic->irq_base)) |
Samuel Ortiz | fa9ff4b | 2008-02-07 00:14:49 -0800 | [diff] [blame] | 325 | edge &= ~bit; |
| 326 | else |
| 327 | edge |= bit; |
Mark Brown | 0f76aae | 2010-12-11 13:08:57 +0000 | [diff] [blame] | 328 | asic->irq_bothedge[(data->irq - asic->irq_base) >> 4] |= bit; |
Dmitry Baryshkov | 6cab486 | 2008-07-27 04:23:31 +0100 | [diff] [blame] | 329 | } else if (type == IRQ_TYPE_LEVEL_LOW) { |
Samuel Ortiz | fa9ff4b | 2008-02-07 00:14:49 -0800 | [diff] [blame] | 330 | trigger &= ~bit; |
| 331 | level &= ~bit; |
Dmitry Baryshkov | 6cab486 | 2008-07-27 04:23:31 +0100 | [diff] [blame] | 332 | } else if (type == IRQ_TYPE_LEVEL_HIGH) { |
Samuel Ortiz | fa9ff4b | 2008-02-07 00:14:49 -0800 | [diff] [blame] | 333 | trigger &= ~bit; |
| 334 | level |= bit; |
| 335 | } else { |
| 336 | /* |
Dmitry Baryshkov | 6cab486 | 2008-07-27 04:23:31 +0100 | [diff] [blame] | 337 | * if type == IRQ_TYPE_NONE, we should mask interrupts, but |
Samuel Ortiz | fa9ff4b | 2008-02-07 00:14:49 -0800 | [diff] [blame] | 338 | * be careful to not unmask them if mask was also called. |
| 339 | * Probably need internal state for mask. |
| 340 | */ |
Samuel Ortiz | 24f4f2e | 2008-06-20 11:11:19 +0200 | [diff] [blame] | 341 | dev_notice(asic->dev, "irq type not changed\n"); |
Samuel Ortiz | fa9ff4b | 2008-02-07 00:14:49 -0800 | [diff] [blame] | 342 | } |
Samuel Ortiz | 3b8139f | 2008-06-20 11:12:21 +0200 | [diff] [blame] | 343 | asic3_write_register(asic, bank + ASIC3_GPIO_LEVEL_TRIGGER, |
Samuel Ortiz | fa9ff4b | 2008-02-07 00:14:49 -0800 | [diff] [blame] | 344 | level); |
Samuel Ortiz | 3b8139f | 2008-06-20 11:12:21 +0200 | [diff] [blame] | 345 | asic3_write_register(asic, bank + ASIC3_GPIO_EDGE_TRIGGER, |
Samuel Ortiz | fa9ff4b | 2008-02-07 00:14:49 -0800 | [diff] [blame] | 346 | edge); |
Samuel Ortiz | 3b8139f | 2008-06-20 11:12:21 +0200 | [diff] [blame] | 347 | asic3_write_register(asic, bank + ASIC3_GPIO_TRIGGER_TYPE, |
Samuel Ortiz | fa9ff4b | 2008-02-07 00:14:49 -0800 | [diff] [blame] | 348 | trigger); |
Julia Cartwright | 93ad447 | 2017-03-21 17:43:04 -0500 | [diff] [blame] | 349 | raw_spin_unlock_irqrestore(&asic->lock, flags); |
Samuel Ortiz | fa9ff4b | 2008-02-07 00:14:49 -0800 | [diff] [blame] | 350 | return 0; |
| 351 | } |
| 352 | |
Paul Parsons | 2fe372f | 2012-04-11 00:35:34 +0100 | [diff] [blame] | 353 | static int asic3_gpio_irq_set_wake(struct irq_data *data, unsigned int on) |
| 354 | { |
| 355 | struct asic3 *asic = irq_data_get_irq_chip_data(data); |
| 356 | u32 bank, index; |
| 357 | u16 bit; |
| 358 | |
| 359 | bank = asic3_irq_to_bank(asic, data->irq); |
| 360 | index = asic3_irq_to_index(asic, data->irq); |
| 361 | bit = 1<<index; |
| 362 | |
| 363 | asic3_set_register(asic, bank + ASIC3_GPIO_SLEEP_MASK, bit, !on); |
| 364 | |
| 365 | return 0; |
| 366 | } |
| 367 | |
Samuel Ortiz | fa9ff4b | 2008-02-07 00:14:49 -0800 | [diff] [blame] | 368 | static struct irq_chip asic3_gpio_irq_chip = { |
| 369 | .name = "ASIC3-GPIO", |
Mark Brown | 0f76aae | 2010-12-11 13:08:57 +0000 | [diff] [blame] | 370 | .irq_ack = asic3_mask_gpio_irq, |
| 371 | .irq_mask = asic3_mask_gpio_irq, |
| 372 | .irq_unmask = asic3_unmask_gpio_irq, |
| 373 | .irq_set_type = asic3_gpio_irq_type, |
Paul Parsons | 2fe372f | 2012-04-11 00:35:34 +0100 | [diff] [blame] | 374 | .irq_set_wake = asic3_gpio_irq_set_wake, |
Samuel Ortiz | fa9ff4b | 2008-02-07 00:14:49 -0800 | [diff] [blame] | 375 | }; |
| 376 | |
| 377 | static struct irq_chip asic3_irq_chip = { |
| 378 | .name = "ASIC3", |
Mark Brown | 0f76aae | 2010-12-11 13:08:57 +0000 | [diff] [blame] | 379 | .irq_ack = asic3_mask_irq, |
| 380 | .irq_mask = asic3_mask_irq, |
| 381 | .irq_unmask = asic3_unmask_irq, |
Samuel Ortiz | fa9ff4b | 2008-02-07 00:14:49 -0800 | [diff] [blame] | 382 | }; |
| 383 | |
Philipp Zabel | 065032f | 2008-06-21 00:51:38 +0200 | [diff] [blame] | 384 | static int __init asic3_irq_probe(struct platform_device *pdev) |
Samuel Ortiz | fa9ff4b | 2008-02-07 00:14:49 -0800 | [diff] [blame] | 385 | { |
| 386 | struct asic3 *asic = platform_get_drvdata(pdev); |
| 387 | unsigned long clksel = 0; |
| 388 | unsigned int irq, irq_base; |
Roel Kluin | c491b2f | 2008-07-25 19:44:41 -0700 | [diff] [blame] | 389 | int ret; |
Samuel Ortiz | fa9ff4b | 2008-02-07 00:14:49 -0800 | [diff] [blame] | 390 | |
Roel Kluin | c491b2f | 2008-07-25 19:44:41 -0700 | [diff] [blame] | 391 | ret = platform_get_irq(pdev, 0); |
| 392 | if (ret < 0) |
| 393 | return ret; |
| 394 | asic->irq_nr = ret; |
Samuel Ortiz | fa9ff4b | 2008-02-07 00:14:49 -0800 | [diff] [blame] | 395 | |
| 396 | /* turn on clock to IRQ controller */ |
| 397 | clksel |= CLOCK_SEL_CX; |
| 398 | asic3_write_register(asic, ASIC3_OFFSET(CLOCK, SEL), |
| 399 | clksel); |
| 400 | |
| 401 | irq_base = asic->irq_base; |
| 402 | |
| 403 | for (irq = irq_base; irq < irq_base + ASIC3_NR_IRQS; irq++) { |
| 404 | if (irq < asic->irq_base + ASIC3_NUM_GPIOS) |
Thomas Gleixner | d5bb122 | 2011-03-25 11:12:32 +0000 | [diff] [blame] | 405 | irq_set_chip(irq, &asic3_gpio_irq_chip); |
Samuel Ortiz | fa9ff4b | 2008-02-07 00:14:49 -0800 | [diff] [blame] | 406 | else |
Thomas Gleixner | d5bb122 | 2011-03-25 11:12:32 +0000 | [diff] [blame] | 407 | irq_set_chip(irq, &asic3_irq_chip); |
Samuel Ortiz | fa9ff4b | 2008-02-07 00:14:49 -0800 | [diff] [blame] | 408 | |
Thomas Gleixner | d5bb122 | 2011-03-25 11:12:32 +0000 | [diff] [blame] | 409 | irq_set_chip_data(irq, asic); |
| 410 | irq_set_handler(irq, handle_level_irq); |
Rob Herring | 9bd09f3 | 2015-07-27 15:55:20 -0500 | [diff] [blame] | 411 | irq_clear_status_flags(irq, IRQ_NOREQUEST | IRQ_NOPROBE); |
Samuel Ortiz | fa9ff4b | 2008-02-07 00:14:49 -0800 | [diff] [blame] | 412 | } |
| 413 | |
Samuel Ortiz | 3b8139f | 2008-06-20 11:12:21 +0200 | [diff] [blame] | 414 | asic3_write_register(asic, ASIC3_OFFSET(INTR, INT_MASK), |
Samuel Ortiz | fa9ff4b | 2008-02-07 00:14:49 -0800 | [diff] [blame] | 415 | ASIC3_INTMASK_GINTMASK); |
| 416 | |
Thomas Gleixner | c30e304 | 2015-06-21 20:16:06 +0200 | [diff] [blame] | 417 | irq_set_chained_handler_and_data(asic->irq_nr, asic3_irq_demux, asic); |
Thomas Gleixner | d5bb122 | 2011-03-25 11:12:32 +0000 | [diff] [blame] | 418 | irq_set_irq_type(asic->irq_nr, IRQ_TYPE_EDGE_RISING); |
Samuel Ortiz | fa9ff4b | 2008-02-07 00:14:49 -0800 | [diff] [blame] | 419 | |
| 420 | return 0; |
| 421 | } |
| 422 | |
| 423 | static void asic3_irq_remove(struct platform_device *pdev) |
| 424 | { |
| 425 | struct asic3 *asic = platform_get_drvdata(pdev); |
| 426 | unsigned int irq, irq_base; |
| 427 | |
| 428 | irq_base = asic->irq_base; |
| 429 | |
| 430 | for (irq = irq_base; irq < irq_base + ASIC3_NR_IRQS; irq++) { |
Rob Herring | 9bd09f3 | 2015-07-27 15:55:20 -0500 | [diff] [blame] | 431 | irq_set_status_flags(irq, IRQ_NOREQUEST | IRQ_NOPROBE); |
Thomas Gleixner | d6f7ce9f | 2011-03-25 11:12:35 +0000 | [diff] [blame] | 432 | irq_set_chip_and_handler(irq, NULL, NULL); |
Thomas Gleixner | d5bb122 | 2011-03-25 11:12:32 +0000 | [diff] [blame] | 433 | irq_set_chip_data(irq, NULL); |
Samuel Ortiz | fa9ff4b | 2008-02-07 00:14:49 -0800 | [diff] [blame] | 434 | } |
Thomas Gleixner | d5bb122 | 2011-03-25 11:12:32 +0000 | [diff] [blame] | 435 | irq_set_chained_handler(asic->irq_nr, NULL); |
Samuel Ortiz | fa9ff4b | 2008-02-07 00:14:49 -0800 | [diff] [blame] | 436 | } |
| 437 | |
| 438 | /* GPIOs */ |
Samuel Ortiz | 6f2384c | 2008-06-20 11:02:19 +0200 | [diff] [blame] | 439 | static int asic3_gpio_direction(struct gpio_chip *chip, |
| 440 | unsigned offset, int out) |
| 441 | { |
| 442 | u32 mask = ASIC3_GPIO_TO_MASK(offset), out_reg; |
| 443 | unsigned int gpio_base; |
| 444 | unsigned long flags; |
| 445 | struct asic3 *asic; |
| 446 | |
Linus Walleij | 082cc468 | 2016-03-30 10:48:01 +0200 | [diff] [blame] | 447 | asic = gpiochip_get_data(chip); |
Samuel Ortiz | 6f2384c | 2008-06-20 11:02:19 +0200 | [diff] [blame] | 448 | gpio_base = ASIC3_GPIO_TO_BASE(offset); |
| 449 | |
Samuel Ortiz | 3b8139f | 2008-06-20 11:12:21 +0200 | [diff] [blame] | 450 | if (gpio_base > ASIC3_GPIO_D_BASE) { |
Samuel Ortiz | 24f4f2e | 2008-06-20 11:11:19 +0200 | [diff] [blame] | 451 | dev_err(asic->dev, "Invalid base (0x%x) for gpio %d\n", |
| 452 | gpio_base, offset); |
Samuel Ortiz | 6f2384c | 2008-06-20 11:02:19 +0200 | [diff] [blame] | 453 | return -EINVAL; |
| 454 | } |
| 455 | |
Julia Cartwright | 93ad447 | 2017-03-21 17:43:04 -0500 | [diff] [blame] | 456 | raw_spin_lock_irqsave(&asic->lock, flags); |
Samuel Ortiz | 6f2384c | 2008-06-20 11:02:19 +0200 | [diff] [blame] | 457 | |
Samuel Ortiz | 3b8139f | 2008-06-20 11:12:21 +0200 | [diff] [blame] | 458 | out_reg = asic3_read_register(asic, gpio_base + ASIC3_GPIO_DIRECTION); |
Samuel Ortiz | 6f2384c | 2008-06-20 11:02:19 +0200 | [diff] [blame] | 459 | |
| 460 | /* Input is 0, Output is 1 */ |
| 461 | if (out) |
| 462 | out_reg |= mask; |
| 463 | else |
| 464 | out_reg &= ~mask; |
| 465 | |
Samuel Ortiz | 3b8139f | 2008-06-20 11:12:21 +0200 | [diff] [blame] | 466 | asic3_write_register(asic, gpio_base + ASIC3_GPIO_DIRECTION, out_reg); |
Samuel Ortiz | 6f2384c | 2008-06-20 11:02:19 +0200 | [diff] [blame] | 467 | |
Julia Cartwright | 93ad447 | 2017-03-21 17:43:04 -0500 | [diff] [blame] | 468 | raw_spin_unlock_irqrestore(&asic->lock, flags); |
Samuel Ortiz | 6f2384c | 2008-06-20 11:02:19 +0200 | [diff] [blame] | 469 | |
| 470 | return 0; |
| 471 | |
| 472 | } |
| 473 | |
| 474 | static int asic3_gpio_direction_input(struct gpio_chip *chip, |
| 475 | unsigned offset) |
| 476 | { |
| 477 | return asic3_gpio_direction(chip, offset, 0); |
| 478 | } |
| 479 | |
| 480 | static int asic3_gpio_direction_output(struct gpio_chip *chip, |
| 481 | unsigned offset, int value) |
| 482 | { |
| 483 | return asic3_gpio_direction(chip, offset, 1); |
| 484 | } |
| 485 | |
| 486 | static int asic3_gpio_get(struct gpio_chip *chip, |
| 487 | unsigned offset) |
| 488 | { |
| 489 | unsigned int gpio_base; |
| 490 | u32 mask = ASIC3_GPIO_TO_MASK(offset); |
| 491 | struct asic3 *asic; |
| 492 | |
Linus Walleij | 082cc468 | 2016-03-30 10:48:01 +0200 | [diff] [blame] | 493 | asic = gpiochip_get_data(chip); |
Samuel Ortiz | 6f2384c | 2008-06-20 11:02:19 +0200 | [diff] [blame] | 494 | gpio_base = ASIC3_GPIO_TO_BASE(offset); |
| 495 | |
Samuel Ortiz | 3b8139f | 2008-06-20 11:12:21 +0200 | [diff] [blame] | 496 | if (gpio_base > ASIC3_GPIO_D_BASE) { |
Samuel Ortiz | 24f4f2e | 2008-06-20 11:11:19 +0200 | [diff] [blame] | 497 | dev_err(asic->dev, "Invalid base (0x%x) for gpio %d\n", |
| 498 | gpio_base, offset); |
Samuel Ortiz | 6f2384c | 2008-06-20 11:02:19 +0200 | [diff] [blame] | 499 | return -EINVAL; |
| 500 | } |
| 501 | |
Linus Walleij | f8e3a51 | 2015-12-22 15:47:05 +0100 | [diff] [blame] | 502 | return !!(asic3_read_register(asic, |
| 503 | gpio_base + ASIC3_GPIO_STATUS) & mask); |
Samuel Ortiz | 6f2384c | 2008-06-20 11:02:19 +0200 | [diff] [blame] | 504 | } |
| 505 | |
| 506 | static void asic3_gpio_set(struct gpio_chip *chip, |
| 507 | unsigned offset, int value) |
| 508 | { |
| 509 | u32 mask, out_reg; |
| 510 | unsigned int gpio_base; |
| 511 | unsigned long flags; |
| 512 | struct asic3 *asic; |
| 513 | |
Linus Walleij | 082cc468 | 2016-03-30 10:48:01 +0200 | [diff] [blame] | 514 | asic = gpiochip_get_data(chip); |
Samuel Ortiz | 6f2384c | 2008-06-20 11:02:19 +0200 | [diff] [blame] | 515 | gpio_base = ASIC3_GPIO_TO_BASE(offset); |
| 516 | |
Samuel Ortiz | 3b8139f | 2008-06-20 11:12:21 +0200 | [diff] [blame] | 517 | if (gpio_base > ASIC3_GPIO_D_BASE) { |
Samuel Ortiz | 24f4f2e | 2008-06-20 11:11:19 +0200 | [diff] [blame] | 518 | dev_err(asic->dev, "Invalid base (0x%x) for gpio %d\n", |
| 519 | gpio_base, offset); |
Samuel Ortiz | 6f2384c | 2008-06-20 11:02:19 +0200 | [diff] [blame] | 520 | return; |
| 521 | } |
| 522 | |
| 523 | mask = ASIC3_GPIO_TO_MASK(offset); |
| 524 | |
Julia Cartwright | 93ad447 | 2017-03-21 17:43:04 -0500 | [diff] [blame] | 525 | raw_spin_lock_irqsave(&asic->lock, flags); |
Samuel Ortiz | 6f2384c | 2008-06-20 11:02:19 +0200 | [diff] [blame] | 526 | |
Samuel Ortiz | 3b8139f | 2008-06-20 11:12:21 +0200 | [diff] [blame] | 527 | out_reg = asic3_read_register(asic, gpio_base + ASIC3_GPIO_OUT); |
Samuel Ortiz | 6f2384c | 2008-06-20 11:02:19 +0200 | [diff] [blame] | 528 | |
| 529 | if (value) |
| 530 | out_reg |= mask; |
| 531 | else |
| 532 | out_reg &= ~mask; |
| 533 | |
Samuel Ortiz | 3b8139f | 2008-06-20 11:12:21 +0200 | [diff] [blame] | 534 | asic3_write_register(asic, gpio_base + ASIC3_GPIO_OUT, out_reg); |
Samuel Ortiz | 6f2384c | 2008-06-20 11:02:19 +0200 | [diff] [blame] | 535 | |
Julia Cartwright | 93ad447 | 2017-03-21 17:43:04 -0500 | [diff] [blame] | 536 | raw_spin_unlock_irqrestore(&asic->lock, flags); |
Samuel Ortiz | 6f2384c | 2008-06-20 11:02:19 +0200 | [diff] [blame] | 537 | } |
| 538 | |
Paul Parsons | 450b115 | 2012-01-31 01:18:35 +0000 | [diff] [blame] | 539 | static int asic3_gpio_to_irq(struct gpio_chip *chip, unsigned offset) |
| 540 | { |
Linus Walleij | 082cc468 | 2016-03-30 10:48:01 +0200 | [diff] [blame] | 541 | struct asic3 *asic = gpiochip_get_data(chip); |
Dmitry Artamonow | 02269ab | 2012-04-12 15:33:34 +0400 | [diff] [blame] | 542 | |
Samuel Ortiz | 12693f6 | 2012-04-16 21:28:29 +0200 | [diff] [blame] | 543 | return asic->irq_base + offset; |
Paul Parsons | 450b115 | 2012-01-31 01:18:35 +0000 | [diff] [blame] | 544 | } |
| 545 | |
Philipp Zabel | 065032f | 2008-06-21 00:51:38 +0200 | [diff] [blame] | 546 | static __init int asic3_gpio_probe(struct platform_device *pdev, |
| 547 | u16 *gpio_config, int num) |
Samuel Ortiz | fa9ff4b | 2008-02-07 00:14:49 -0800 | [diff] [blame] | 548 | { |
Samuel Ortiz | fa9ff4b | 2008-02-07 00:14:49 -0800 | [diff] [blame] | 549 | struct asic3 *asic = platform_get_drvdata(pdev); |
Samuel Ortiz | 3b26bf1 | 2008-06-20 11:09:51 +0200 | [diff] [blame] | 550 | u16 alt_reg[ASIC3_NUM_GPIO_BANKS]; |
| 551 | u16 out_reg[ASIC3_NUM_GPIO_BANKS]; |
| 552 | u16 dir_reg[ASIC3_NUM_GPIO_BANKS]; |
| 553 | int i; |
Samuel Ortiz | fa9ff4b | 2008-02-07 00:14:49 -0800 | [diff] [blame] | 554 | |
Russell King | 59f0cb0 | 2008-10-27 11:24:09 +0000 | [diff] [blame] | 555 | memset(alt_reg, 0, ASIC3_NUM_GPIO_BANKS * sizeof(u16)); |
| 556 | memset(out_reg, 0, ASIC3_NUM_GPIO_BANKS * sizeof(u16)); |
| 557 | memset(dir_reg, 0, ASIC3_NUM_GPIO_BANKS * sizeof(u16)); |
Samuel Ortiz | 3b26bf1 | 2008-06-20 11:09:51 +0200 | [diff] [blame] | 558 | |
| 559 | /* Enable all GPIOs */ |
Samuel Ortiz | 3b8139f | 2008-06-20 11:12:21 +0200 | [diff] [blame] | 560 | asic3_write_register(asic, ASIC3_GPIO_OFFSET(A, MASK), 0xffff); |
| 561 | asic3_write_register(asic, ASIC3_GPIO_OFFSET(B, MASK), 0xffff); |
| 562 | asic3_write_register(asic, ASIC3_GPIO_OFFSET(C, MASK), 0xffff); |
| 563 | asic3_write_register(asic, ASIC3_GPIO_OFFSET(D, MASK), 0xffff); |
Samuel Ortiz | fa9ff4b | 2008-02-07 00:14:49 -0800 | [diff] [blame] | 564 | |
Samuel Ortiz | 3b26bf1 | 2008-06-20 11:09:51 +0200 | [diff] [blame] | 565 | for (i = 0; i < num; i++) { |
| 566 | u8 alt, pin, dir, init, bank_num, bit_num; |
| 567 | u16 config = gpio_config[i]; |
Samuel Ortiz | fa9ff4b | 2008-02-07 00:14:49 -0800 | [diff] [blame] | 568 | |
Samuel Ortiz | 3b26bf1 | 2008-06-20 11:09:51 +0200 | [diff] [blame] | 569 | pin = ASIC3_CONFIG_GPIO_PIN(config); |
| 570 | alt = ASIC3_CONFIG_GPIO_ALT(config); |
| 571 | dir = ASIC3_CONFIG_GPIO_DIR(config); |
| 572 | init = ASIC3_CONFIG_GPIO_INIT(config); |
| 573 | |
| 574 | bank_num = ASIC3_GPIO_TO_BANK(pin); |
| 575 | bit_num = ASIC3_GPIO_TO_BIT(pin); |
| 576 | |
| 577 | alt_reg[bank_num] |= (alt << bit_num); |
| 578 | out_reg[bank_num] |= (init << bit_num); |
| 579 | dir_reg[bank_num] |= (dir << bit_num); |
| 580 | } |
| 581 | |
| 582 | for (i = 0; i < ASIC3_NUM_GPIO_BANKS; i++) { |
| 583 | asic3_write_register(asic, |
| 584 | ASIC3_BANK_TO_BASE(i) + |
Samuel Ortiz | 3b8139f | 2008-06-20 11:12:21 +0200 | [diff] [blame] | 585 | ASIC3_GPIO_DIRECTION, |
Samuel Ortiz | 3b26bf1 | 2008-06-20 11:09:51 +0200 | [diff] [blame] | 586 | dir_reg[i]); |
| 587 | asic3_write_register(asic, |
Samuel Ortiz | 3b8139f | 2008-06-20 11:12:21 +0200 | [diff] [blame] | 588 | ASIC3_BANK_TO_BASE(i) + ASIC3_GPIO_OUT, |
Samuel Ortiz | 3b26bf1 | 2008-06-20 11:09:51 +0200 | [diff] [blame] | 589 | out_reg[i]); |
| 590 | asic3_write_register(asic, |
| 591 | ASIC3_BANK_TO_BASE(i) + |
Samuel Ortiz | 3b8139f | 2008-06-20 11:12:21 +0200 | [diff] [blame] | 592 | ASIC3_GPIO_ALT_FUNCTION, |
Samuel Ortiz | 3b26bf1 | 2008-06-20 11:09:51 +0200 | [diff] [blame] | 593 | alt_reg[i]); |
Samuel Ortiz | fa9ff4b | 2008-02-07 00:14:49 -0800 | [diff] [blame] | 594 | } |
| 595 | |
Linus Walleij | 082cc468 | 2016-03-30 10:48:01 +0200 | [diff] [blame] | 596 | return gpiochip_add_data(&asic->gpio, asic); |
Samuel Ortiz | fa9ff4b | 2008-02-07 00:14:49 -0800 | [diff] [blame] | 597 | } |
| 598 | |
Samuel Ortiz | 6f2384c | 2008-06-20 11:02:19 +0200 | [diff] [blame] | 599 | static int asic3_gpio_remove(struct platform_device *pdev) |
Samuel Ortiz | fa9ff4b | 2008-02-07 00:14:49 -0800 | [diff] [blame] | 600 | { |
Samuel Ortiz | 6f2384c | 2008-06-20 11:02:19 +0200 | [diff] [blame] | 601 | struct asic3 *asic = platform_get_drvdata(pdev); |
| 602 | |
abdoulaye berthe | 88d5e52 | 2014-07-12 22:30:14 +0200 | [diff] [blame] | 603 | gpiochip_remove(&asic->gpio); |
| 604 | return 0; |
Samuel Ortiz | fa9ff4b | 2008-02-07 00:14:49 -0800 | [diff] [blame] | 605 | } |
| 606 | |
Paul Parsons | c29a812 | 2011-08-09 16:27:43 +0000 | [diff] [blame] | 607 | static void asic3_clk_enable(struct asic3 *asic, struct asic3_clk *clk) |
Philipp Zabel | e956a2a | 2009-06-05 18:31:02 +0200 | [diff] [blame] | 608 | { |
| 609 | unsigned long flags; |
| 610 | u32 cdex; |
| 611 | |
Julia Cartwright | 93ad447 | 2017-03-21 17:43:04 -0500 | [diff] [blame] | 612 | raw_spin_lock_irqsave(&asic->lock, flags); |
Philipp Zabel | e956a2a | 2009-06-05 18:31:02 +0200 | [diff] [blame] | 613 | if (clk->enabled++ == 0) { |
| 614 | cdex = asic3_read_register(asic, ASIC3_OFFSET(CLOCK, CDEX)); |
| 615 | cdex |= clk->cdex; |
| 616 | asic3_write_register(asic, ASIC3_OFFSET(CLOCK, CDEX), cdex); |
| 617 | } |
Julia Cartwright | 93ad447 | 2017-03-21 17:43:04 -0500 | [diff] [blame] | 618 | raw_spin_unlock_irqrestore(&asic->lock, flags); |
Philipp Zabel | e956a2a | 2009-06-05 18:31:02 +0200 | [diff] [blame] | 619 | } |
| 620 | |
| 621 | static void asic3_clk_disable(struct asic3 *asic, struct asic3_clk *clk) |
| 622 | { |
| 623 | unsigned long flags; |
| 624 | u32 cdex; |
| 625 | |
| 626 | WARN_ON(clk->enabled == 0); |
| 627 | |
Julia Cartwright | 93ad447 | 2017-03-21 17:43:04 -0500 | [diff] [blame] | 628 | raw_spin_lock_irqsave(&asic->lock, flags); |
Philipp Zabel | e956a2a | 2009-06-05 18:31:02 +0200 | [diff] [blame] | 629 | if (--clk->enabled == 0) { |
| 630 | cdex = asic3_read_register(asic, ASIC3_OFFSET(CLOCK, CDEX)); |
| 631 | cdex &= ~clk->cdex; |
| 632 | asic3_write_register(asic, ASIC3_OFFSET(CLOCK, CDEX), cdex); |
| 633 | } |
Julia Cartwright | 93ad447 | 2017-03-21 17:43:04 -0500 | [diff] [blame] | 634 | raw_spin_unlock_irqrestore(&asic->lock, flags); |
Philipp Zabel | e956a2a | 2009-06-05 18:31:02 +0200 | [diff] [blame] | 635 | } |
Samuel Ortiz | fa9ff4b | 2008-02-07 00:14:49 -0800 | [diff] [blame] | 636 | |
Philipp Zabel | 9461f65 | 2009-06-15 12:10:24 +0200 | [diff] [blame] | 637 | /* MFD cells (SPI, PWM, LED, DS1WM, MMC) */ |
| 638 | static struct ds1wm_driver_data ds1wm_pdata = { |
| 639 | .active_high = 1, |
Jean-François Dagenais | f607e7f | 2011-07-08 15:39:44 -0700 | [diff] [blame] | 640 | .reset_recover_delay = 1, |
Philipp Zabel | 9461f65 | 2009-06-15 12:10:24 +0200 | [diff] [blame] | 641 | }; |
| 642 | |
| 643 | static struct resource ds1wm_resources[] = { |
| 644 | { |
| 645 | .start = ASIC3_OWM_BASE, |
| 646 | .end = ASIC3_OWM_BASE + 0x13, |
| 647 | .flags = IORESOURCE_MEM, |
| 648 | }, |
| 649 | { |
| 650 | .start = ASIC3_IRQ_OWM, |
Mark Brown | fe42142 | 2010-12-11 13:00:34 +0000 | [diff] [blame] | 651 | .end = ASIC3_IRQ_OWM, |
Philipp Zabel | 9461f65 | 2009-06-15 12:10:24 +0200 | [diff] [blame] | 652 | .flags = IORESOURCE_IRQ | IORESOURCE_IRQ_HIGHEDGE, |
| 653 | }, |
| 654 | }; |
| 655 | |
| 656 | static int ds1wm_enable(struct platform_device *pdev) |
| 657 | { |
| 658 | struct asic3 *asic = dev_get_drvdata(pdev->dev.parent); |
| 659 | |
| 660 | /* Turn on external clocks and the OWM clock */ |
| 661 | asic3_clk_enable(asic, &asic->clocks[ASIC3_CLOCK_EX0]); |
| 662 | asic3_clk_enable(asic, &asic->clocks[ASIC3_CLOCK_EX1]); |
| 663 | asic3_clk_enable(asic, &asic->clocks[ASIC3_CLOCK_OWM]); |
Lee Jones | d43c429 | 2015-10-28 14:11:23 +0000 | [diff] [blame] | 664 | usleep_range(1000, 5000); |
Philipp Zabel | 9461f65 | 2009-06-15 12:10:24 +0200 | [diff] [blame] | 665 | |
| 666 | /* Reset and enable DS1WM */ |
| 667 | asic3_set_register(asic, ASIC3_OFFSET(EXTCF, RESET), |
| 668 | ASIC3_EXTCF_OWM_RESET, 1); |
Lee Jones | d43c429 | 2015-10-28 14:11:23 +0000 | [diff] [blame] | 669 | usleep_range(1000, 5000); |
Philipp Zabel | 9461f65 | 2009-06-15 12:10:24 +0200 | [diff] [blame] | 670 | asic3_set_register(asic, ASIC3_OFFSET(EXTCF, RESET), |
| 671 | ASIC3_EXTCF_OWM_RESET, 0); |
Lee Jones | d43c429 | 2015-10-28 14:11:23 +0000 | [diff] [blame] | 672 | usleep_range(1000, 5000); |
Philipp Zabel | 9461f65 | 2009-06-15 12:10:24 +0200 | [diff] [blame] | 673 | asic3_set_register(asic, ASIC3_OFFSET(EXTCF, SELECT), |
| 674 | ASIC3_EXTCF_OWM_EN, 1); |
Lee Jones | d43c429 | 2015-10-28 14:11:23 +0000 | [diff] [blame] | 675 | usleep_range(1000, 5000); |
Philipp Zabel | 9461f65 | 2009-06-15 12:10:24 +0200 | [diff] [blame] | 676 | |
| 677 | return 0; |
| 678 | } |
| 679 | |
| 680 | static int ds1wm_disable(struct platform_device *pdev) |
| 681 | { |
| 682 | struct asic3 *asic = dev_get_drvdata(pdev->dev.parent); |
| 683 | |
| 684 | asic3_set_register(asic, ASIC3_OFFSET(EXTCF, SELECT), |
| 685 | ASIC3_EXTCF_OWM_EN, 0); |
| 686 | |
| 687 | asic3_clk_disable(asic, &asic->clocks[ASIC3_CLOCK_OWM]); |
| 688 | asic3_clk_disable(asic, &asic->clocks[ASIC3_CLOCK_EX0]); |
| 689 | asic3_clk_disable(asic, &asic->clocks[ASIC3_CLOCK_EX1]); |
| 690 | |
| 691 | return 0; |
| 692 | } |
| 693 | |
Geert Uytterhoeven | 5ac9855 | 2013-11-18 14:33:06 +0100 | [diff] [blame] | 694 | static const struct mfd_cell asic3_cell_ds1wm = { |
Philipp Zabel | 9461f65 | 2009-06-15 12:10:24 +0200 | [diff] [blame] | 695 | .name = "ds1wm", |
| 696 | .enable = ds1wm_enable, |
| 697 | .disable = ds1wm_disable, |
Samuel Ortiz | 121ea57 | 2011-04-06 11:41:03 +0200 | [diff] [blame] | 698 | .platform_data = &ds1wm_pdata, |
| 699 | .pdata_size = sizeof(ds1wm_pdata), |
Philipp Zabel | 9461f65 | 2009-06-15 12:10:24 +0200 | [diff] [blame] | 700 | .num_resources = ARRAY_SIZE(ds1wm_resources), |
| 701 | .resources = ds1wm_resources, |
| 702 | }; |
| 703 | |
Ian Molton | 64e8867 | 2010-01-06 13:51:48 +0100 | [diff] [blame] | 704 | static void asic3_mmc_pwr(struct platform_device *pdev, int state) |
| 705 | { |
| 706 | struct asic3 *asic = dev_get_drvdata(pdev->dev.parent); |
| 707 | |
| 708 | tmio_core_mmc_pwr(asic->tmio_cnf, 1 - asic->bus_shift, state); |
| 709 | } |
| 710 | |
| 711 | static void asic3_mmc_clk_div(struct platform_device *pdev, int state) |
| 712 | { |
| 713 | struct asic3 *asic = dev_get_drvdata(pdev->dev.parent); |
| 714 | |
| 715 | tmio_core_mmc_clk_div(asic->tmio_cnf, 1 - asic->bus_shift, state); |
| 716 | } |
| 717 | |
Philipp Zabel | 09f05ce | 2009-06-15 12:10:25 +0200 | [diff] [blame] | 718 | static struct tmio_mmc_data asic3_mmc_data = { |
Ian Molton | 64e8867 | 2010-01-06 13:51:48 +0100 | [diff] [blame] | 719 | .hclk = 24576000, |
Robert Jarzmik | 4eb1d7f | 2018-05-26 11:31:50 +0200 | [diff] [blame] | 720 | .ocr_mask = MMC_VDD_32_33 | MMC_VDD_33_34, |
Ian Molton | 64e8867 | 2010-01-06 13:51:48 +0100 | [diff] [blame] | 721 | .set_pwr = asic3_mmc_pwr, |
| 722 | .set_clk_div = asic3_mmc_clk_div, |
Philipp Zabel | 09f05ce | 2009-06-15 12:10:25 +0200 | [diff] [blame] | 723 | }; |
| 724 | |
| 725 | static struct resource asic3_mmc_resources[] = { |
Zhen Lei | c5db56f | 2021-06-01 14:36:48 +0800 | [diff] [blame] | 726 | DEFINE_RES_MEM(ASIC3_SD_CTRL_BASE, 0x400), |
| 727 | DEFINE_RES_IRQ(0) |
Philipp Zabel | 09f05ce | 2009-06-15 12:10:25 +0200 | [diff] [blame] | 728 | }; |
| 729 | |
| 730 | static int asic3_mmc_enable(struct platform_device *pdev) |
| 731 | { |
| 732 | struct asic3 *asic = dev_get_drvdata(pdev->dev.parent); |
| 733 | |
| 734 | /* Not sure if it must be done bit by bit, but leaving as-is */ |
| 735 | asic3_set_register(asic, ASIC3_OFFSET(SDHWCTRL, SDCONF), |
| 736 | ASIC3_SDHWCTRL_LEVCD, 1); |
| 737 | asic3_set_register(asic, ASIC3_OFFSET(SDHWCTRL, SDCONF), |
| 738 | ASIC3_SDHWCTRL_LEVWP, 1); |
| 739 | asic3_set_register(asic, ASIC3_OFFSET(SDHWCTRL, SDCONF), |
| 740 | ASIC3_SDHWCTRL_SUSPEND, 0); |
| 741 | asic3_set_register(asic, ASIC3_OFFSET(SDHWCTRL, SDCONF), |
| 742 | ASIC3_SDHWCTRL_PCLR, 0); |
| 743 | |
| 744 | asic3_clk_enable(asic, &asic->clocks[ASIC3_CLOCK_EX0]); |
| 745 | /* CLK32 used for card detection and for interruption detection |
| 746 | * when HCLK is stopped. |
| 747 | */ |
| 748 | asic3_clk_enable(asic, &asic->clocks[ASIC3_CLOCK_EX1]); |
Lee Jones | d43c429 | 2015-10-28 14:11:23 +0000 | [diff] [blame] | 749 | usleep_range(1000, 5000); |
Philipp Zabel | 09f05ce | 2009-06-15 12:10:25 +0200 | [diff] [blame] | 750 | |
| 751 | /* HCLK 24.576 MHz, BCLK 12.288 MHz: */ |
| 752 | asic3_write_register(asic, ASIC3_OFFSET(CLOCK, SEL), |
| 753 | CLOCK_SEL_CX | CLOCK_SEL_SD_HCLK_SEL); |
| 754 | |
| 755 | asic3_clk_enable(asic, &asic->clocks[ASIC3_CLOCK_SD_HOST]); |
| 756 | asic3_clk_enable(asic, &asic->clocks[ASIC3_CLOCK_SD_BUS]); |
Lee Jones | d43c429 | 2015-10-28 14:11:23 +0000 | [diff] [blame] | 757 | usleep_range(1000, 5000); |
Philipp Zabel | 09f05ce | 2009-06-15 12:10:25 +0200 | [diff] [blame] | 758 | |
| 759 | asic3_set_register(asic, ASIC3_OFFSET(EXTCF, SELECT), |
| 760 | ASIC3_EXTCF_SD_MEM_ENABLE, 1); |
| 761 | |
| 762 | /* Enable SD card slot 3.3V power supply */ |
| 763 | asic3_set_register(asic, ASIC3_OFFSET(SDHWCTRL, SDCONF), |
| 764 | ASIC3_SDHWCTRL_SDPWR, 1); |
| 765 | |
Ian Molton | 64e8867 | 2010-01-06 13:51:48 +0100 | [diff] [blame] | 766 | /* ASIC3_SD_CTRL_BASE assumes 32-bit addressing, TMIO is 16-bit */ |
| 767 | tmio_core_mmc_enable(asic->tmio_cnf, 1 - asic->bus_shift, |
| 768 | ASIC3_SD_CTRL_BASE >> 1); |
| 769 | |
Philipp Zabel | 09f05ce | 2009-06-15 12:10:25 +0200 | [diff] [blame] | 770 | return 0; |
| 771 | } |
| 772 | |
| 773 | static int asic3_mmc_disable(struct platform_device *pdev) |
| 774 | { |
| 775 | struct asic3 *asic = dev_get_drvdata(pdev->dev.parent); |
| 776 | |
| 777 | /* Put in suspend mode */ |
| 778 | asic3_set_register(asic, ASIC3_OFFSET(SDHWCTRL, SDCONF), |
| 779 | ASIC3_SDHWCTRL_SUSPEND, 1); |
| 780 | |
| 781 | /* Disable clocks */ |
| 782 | asic3_clk_disable(asic, &asic->clocks[ASIC3_CLOCK_SD_HOST]); |
| 783 | asic3_clk_disable(asic, &asic->clocks[ASIC3_CLOCK_SD_BUS]); |
| 784 | asic3_clk_disable(asic, &asic->clocks[ASIC3_CLOCK_EX0]); |
| 785 | asic3_clk_disable(asic, &asic->clocks[ASIC3_CLOCK_EX1]); |
| 786 | return 0; |
| 787 | } |
| 788 | |
Geert Uytterhoeven | 5ac9855 | 2013-11-18 14:33:06 +0100 | [diff] [blame] | 789 | static const struct mfd_cell asic3_cell_mmc = { |
Philipp Zabel | 09f05ce | 2009-06-15 12:10:25 +0200 | [diff] [blame] | 790 | .name = "tmio-mmc", |
| 791 | .enable = asic3_mmc_enable, |
| 792 | .disable = asic3_mmc_disable, |
Paul Parsons | 3c6e365 | 2011-08-09 16:27:24 +0000 | [diff] [blame] | 793 | .suspend = asic3_mmc_disable, |
| 794 | .resume = asic3_mmc_enable, |
Samuel Ortiz | ec71974 | 2011-04-06 11:38:14 +0200 | [diff] [blame] | 795 | .platform_data = &asic3_mmc_data, |
| 796 | .pdata_size = sizeof(asic3_mmc_data), |
Philipp Zabel | 09f05ce | 2009-06-15 12:10:25 +0200 | [diff] [blame] | 797 | .num_resources = ARRAY_SIZE(asic3_mmc_resources), |
| 798 | .resources = asic3_mmc_resources, |
| 799 | }; |
| 800 | |
Paul Parsons | 13ca4f6 | 2011-05-13 18:53:03 +0000 | [diff] [blame] | 801 | static const int clock_ledn[ASIC3_NUM_LEDS] = { |
| 802 | [0] = ASIC3_CLOCK_LED0, |
| 803 | [1] = ASIC3_CLOCK_LED1, |
| 804 | [2] = ASIC3_CLOCK_LED2, |
| 805 | }; |
| 806 | |
| 807 | static int asic3_leds_enable(struct platform_device *pdev) |
| 808 | { |
| 809 | const struct mfd_cell *cell = mfd_get_cell(pdev); |
| 810 | struct asic3 *asic = dev_get_drvdata(pdev->dev.parent); |
| 811 | |
| 812 | asic3_clk_enable(asic, &asic->clocks[clock_ledn[cell->id]]); |
| 813 | |
| 814 | return 0; |
| 815 | } |
| 816 | |
| 817 | static int asic3_leds_disable(struct platform_device *pdev) |
| 818 | { |
| 819 | const struct mfd_cell *cell = mfd_get_cell(pdev); |
| 820 | struct asic3 *asic = dev_get_drvdata(pdev->dev.parent); |
| 821 | |
| 822 | asic3_clk_disable(asic, &asic->clocks[clock_ledn[cell->id]]); |
| 823 | |
| 824 | return 0; |
| 825 | } |
| 826 | |
Paul Parsons | e0b13b5 | 2011-08-09 16:27:33 +0000 | [diff] [blame] | 827 | static int asic3_leds_suspend(struct platform_device *pdev) |
| 828 | { |
| 829 | const struct mfd_cell *cell = mfd_get_cell(pdev); |
| 830 | struct asic3 *asic = dev_get_drvdata(pdev->dev.parent); |
| 831 | |
| 832 | while (asic3_gpio_get(&asic->gpio, ASIC3_GPIO(C, cell->id)) != 0) |
Lee Jones | d43c429 | 2015-10-28 14:11:23 +0000 | [diff] [blame] | 833 | usleep_range(1000, 5000); |
Paul Parsons | e0b13b5 | 2011-08-09 16:27:33 +0000 | [diff] [blame] | 834 | |
| 835 | asic3_clk_disable(asic, &asic->clocks[clock_ledn[cell->id]]); |
| 836 | |
| 837 | return 0; |
| 838 | } |
| 839 | |
Paul Parsons | 13ca4f6 | 2011-05-13 18:53:03 +0000 | [diff] [blame] | 840 | static struct mfd_cell asic3_cell_leds[ASIC3_NUM_LEDS] = { |
| 841 | [0] = { |
| 842 | .name = "leds-asic3", |
| 843 | .id = 0, |
| 844 | .enable = asic3_leds_enable, |
| 845 | .disable = asic3_leds_disable, |
Paul Parsons | e0b13b5 | 2011-08-09 16:27:33 +0000 | [diff] [blame] | 846 | .suspend = asic3_leds_suspend, |
| 847 | .resume = asic3_leds_enable, |
Paul Parsons | 13ca4f6 | 2011-05-13 18:53:03 +0000 | [diff] [blame] | 848 | }, |
| 849 | [1] = { |
| 850 | .name = "leds-asic3", |
| 851 | .id = 1, |
| 852 | .enable = asic3_leds_enable, |
| 853 | .disable = asic3_leds_disable, |
Paul Parsons | e0b13b5 | 2011-08-09 16:27:33 +0000 | [diff] [blame] | 854 | .suspend = asic3_leds_suspend, |
| 855 | .resume = asic3_leds_enable, |
Paul Parsons | 13ca4f6 | 2011-05-13 18:53:03 +0000 | [diff] [blame] | 856 | }, |
| 857 | [2] = { |
| 858 | .name = "leds-asic3", |
| 859 | .id = 2, |
| 860 | .enable = asic3_leds_enable, |
| 861 | .disable = asic3_leds_disable, |
Paul Parsons | e0b13b5 | 2011-08-09 16:27:33 +0000 | [diff] [blame] | 862 | .suspend = asic3_leds_suspend, |
| 863 | .resume = asic3_leds_enable, |
Paul Parsons | 13ca4f6 | 2011-05-13 18:53:03 +0000 | [diff] [blame] | 864 | }, |
| 865 | }; |
| 866 | |
Philipp Zabel | 9461f65 | 2009-06-15 12:10:24 +0200 | [diff] [blame] | 867 | static int __init asic3_mfd_probe(struct platform_device *pdev, |
Paul Parsons | 13ca4f6 | 2011-05-13 18:53:03 +0000 | [diff] [blame] | 868 | struct asic3_platform_data *pdata, |
Philipp Zabel | 9461f65 | 2009-06-15 12:10:24 +0200 | [diff] [blame] | 869 | struct resource *mem) |
| 870 | { |
| 871 | struct asic3 *asic = platform_get_drvdata(pdev); |
Philipp Zabel | 09f05ce | 2009-06-15 12:10:25 +0200 | [diff] [blame] | 872 | struct resource *mem_sdio; |
| 873 | int irq, ret; |
| 874 | |
| 875 | mem_sdio = platform_get_resource(pdev, IORESOURCE_MEM, 1); |
| 876 | if (!mem_sdio) |
| 877 | dev_dbg(asic->dev, "no SDIO MEM resource\n"); |
| 878 | |
| 879 | irq = platform_get_irq(pdev, 1); |
| 880 | if (irq < 0) |
| 881 | dev_dbg(asic->dev, "no SDIO IRQ resource\n"); |
Philipp Zabel | 9461f65 | 2009-06-15 12:10:24 +0200 | [diff] [blame] | 882 | |
| 883 | /* DS1WM */ |
| 884 | asic3_set_register(asic, ASIC3_OFFSET(EXTCF, SELECT), |
| 885 | ASIC3_EXTCF_OWM_SMB, 0); |
| 886 | |
| 887 | ds1wm_resources[0].start >>= asic->bus_shift; |
| 888 | ds1wm_resources[0].end >>= asic->bus_shift; |
| 889 | |
Philipp Zabel | 09f05ce | 2009-06-15 12:10:25 +0200 | [diff] [blame] | 890 | /* MMC */ |
Sachin Kamat | 44b61a9 | 2014-06-10 15:30:34 +0530 | [diff] [blame] | 891 | if (mem_sdio) { |
Lee Jones | d43c429 | 2015-10-28 14:11:23 +0000 | [diff] [blame] | 892 | asic->tmio_cnf = ioremap((ASIC3_SD_CONFIG_BASE >> |
| 893 | asic->bus_shift) + mem_sdio->start, |
Paul Parsons | 74e32d1 | 2011-05-15 14:13:11 +0000 | [diff] [blame] | 894 | ASIC3_SD_CONFIG_SIZE >> asic->bus_shift); |
Sachin Kamat | 44b61a9 | 2014-06-10 15:30:34 +0530 | [diff] [blame] | 895 | if (!asic->tmio_cnf) { |
| 896 | ret = -ENOMEM; |
| 897 | dev_dbg(asic->dev, "Couldn't ioremap SD_CONFIG\n"); |
| 898 | goto out; |
| 899 | } |
Ian Molton | 64e8867 | 2010-01-06 13:51:48 +0100 | [diff] [blame] | 900 | } |
Philipp Zabel | 09f05ce | 2009-06-15 12:10:25 +0200 | [diff] [blame] | 901 | asic3_mmc_resources[0].start >>= asic->bus_shift; |
| 902 | asic3_mmc_resources[0].end >>= asic->bus_shift; |
Philipp Zabel | 09f05ce | 2009-06-15 12:10:25 +0200 | [diff] [blame] | 903 | |
Paul Parsons | 4f30424 | 2012-04-09 13:18:31 +0100 | [diff] [blame] | 904 | if (pdata->clock_rate) { |
| 905 | ds1wm_pdata.clock_rate = pdata->clock_rate; |
| 906 | ret = mfd_add_devices(&pdev->dev, pdev->id, |
Mark Brown | 0848c94 | 2012-09-11 15:16:36 +0800 | [diff] [blame] | 907 | &asic3_cell_ds1wm, 1, mem, asic->irq_base, NULL); |
Paul Parsons | 4f30424 | 2012-04-09 13:18:31 +0100 | [diff] [blame] | 908 | if (ret < 0) |
| 909 | goto out; |
| 910 | } |
Philipp Zabel | 9461f65 | 2009-06-15 12:10:24 +0200 | [diff] [blame] | 911 | |
Paul Parsons | 13ca4f6 | 2011-05-13 18:53:03 +0000 | [diff] [blame] | 912 | if (mem_sdio && (irq >= 0)) { |
Philipp Zabel | 09f05ce | 2009-06-15 12:10:25 +0200 | [diff] [blame] | 913 | ret = mfd_add_devices(&pdev->dev, pdev->id, |
Mark Brown | 0848c94 | 2012-09-11 15:16:36 +0800 | [diff] [blame] | 914 | &asic3_cell_mmc, 1, mem_sdio, irq, NULL); |
Paul Parsons | 13ca4f6 | 2011-05-13 18:53:03 +0000 | [diff] [blame] | 915 | if (ret < 0) |
| 916 | goto out; |
| 917 | } |
| 918 | |
Arnd Bergmann | b2f0fa8 | 2012-08-04 06:20:49 +0000 | [diff] [blame] | 919 | ret = 0; |
Paul Parsons | 13ca4f6 | 2011-05-13 18:53:03 +0000 | [diff] [blame] | 920 | if (pdata->leds) { |
| 921 | int i; |
| 922 | |
| 923 | for (i = 0; i < ASIC3_NUM_LEDS; ++i) { |
| 924 | asic3_cell_leds[i].platform_data = &pdata->leds[i]; |
| 925 | asic3_cell_leds[i].pdata_size = sizeof(pdata->leds[i]); |
| 926 | } |
| 927 | ret = mfd_add_devices(&pdev->dev, 0, |
Mark Brown | 0848c94 | 2012-09-11 15:16:36 +0800 | [diff] [blame] | 928 | asic3_cell_leds, ASIC3_NUM_LEDS, NULL, 0, NULL); |
Paul Parsons | 13ca4f6 | 2011-05-13 18:53:03 +0000 | [diff] [blame] | 929 | } |
Philipp Zabel | 09f05ce | 2009-06-15 12:10:25 +0200 | [diff] [blame] | 930 | |
| 931 | out: |
Philipp Zabel | 9461f65 | 2009-06-15 12:10:24 +0200 | [diff] [blame] | 932 | return ret; |
| 933 | } |
| 934 | |
| 935 | static void asic3_mfd_remove(struct platform_device *pdev) |
| 936 | { |
Ian Molton | 64e8867 | 2010-01-06 13:51:48 +0100 | [diff] [blame] | 937 | struct asic3 *asic = platform_get_drvdata(pdev); |
| 938 | |
Philipp Zabel | 9461f65 | 2009-06-15 12:10:24 +0200 | [diff] [blame] | 939 | mfd_remove_devices(&pdev->dev); |
Ian Molton | 64e8867 | 2010-01-06 13:51:48 +0100 | [diff] [blame] | 940 | iounmap(asic->tmio_cnf); |
Philipp Zabel | 9461f65 | 2009-06-15 12:10:24 +0200 | [diff] [blame] | 941 | } |
| 942 | |
Samuel Ortiz | fa9ff4b | 2008-02-07 00:14:49 -0800 | [diff] [blame] | 943 | /* Core */ |
Philipp Zabel | 065032f | 2008-06-21 00:51:38 +0200 | [diff] [blame] | 944 | static int __init asic3_probe(struct platform_device *pdev) |
Samuel Ortiz | fa9ff4b | 2008-02-07 00:14:49 -0800 | [diff] [blame] | 945 | { |
Jingoo Han | 334a41ce | 2013-07-30 17:10:05 +0900 | [diff] [blame] | 946 | struct asic3_platform_data *pdata = dev_get_platdata(&pdev->dev); |
Samuel Ortiz | fa9ff4b | 2008-02-07 00:14:49 -0800 | [diff] [blame] | 947 | struct asic3 *asic; |
| 948 | struct resource *mem; |
| 949 | unsigned long clksel; |
Samuel Ortiz | 6f2384c | 2008-06-20 11:02:19 +0200 | [diff] [blame] | 950 | int ret = 0; |
Samuel Ortiz | fa9ff4b | 2008-02-07 00:14:49 -0800 | [diff] [blame] | 951 | |
Lee Jones | 1cee87f | 2013-05-23 16:25:09 +0100 | [diff] [blame] | 952 | asic = devm_kzalloc(&pdev->dev, |
| 953 | sizeof(struct asic3), GFP_KERNEL); |
Lee Jones | d43c429 | 2015-10-28 14:11:23 +0000 | [diff] [blame] | 954 | if (!asic) |
Samuel Ortiz | fa9ff4b | 2008-02-07 00:14:49 -0800 | [diff] [blame] | 955 | return -ENOMEM; |
| 956 | |
Julia Cartwright | 93ad447 | 2017-03-21 17:43:04 -0500 | [diff] [blame] | 957 | raw_spin_lock_init(&asic->lock); |
Samuel Ortiz | fa9ff4b | 2008-02-07 00:14:49 -0800 | [diff] [blame] | 958 | platform_set_drvdata(pdev, asic); |
| 959 | asic->dev = &pdev->dev; |
| 960 | |
| 961 | mem = platform_get_resource(pdev, IORESOURCE_MEM, 0); |
| 962 | if (!mem) { |
Samuel Ortiz | 24f4f2e | 2008-06-20 11:11:19 +0200 | [diff] [blame] | 963 | dev_err(asic->dev, "no MEM resource\n"); |
Lee Jones | 1cee87f | 2013-05-23 16:25:09 +0100 | [diff] [blame] | 964 | return -ENOMEM; |
Samuel Ortiz | fa9ff4b | 2008-02-07 00:14:49 -0800 | [diff] [blame] | 965 | } |
| 966 | |
Philipp Zabel | be584bd | 2009-06-05 18:31:04 +0200 | [diff] [blame] | 967 | asic->mapping = ioremap(mem->start, resource_size(mem)); |
Samuel Ortiz | fa9ff4b | 2008-02-07 00:14:49 -0800 | [diff] [blame] | 968 | if (!asic->mapping) { |
Samuel Ortiz | 24f4f2e | 2008-06-20 11:11:19 +0200 | [diff] [blame] | 969 | dev_err(asic->dev, "Couldn't ioremap\n"); |
Lee Jones | 1cee87f | 2013-05-23 16:25:09 +0100 | [diff] [blame] | 970 | return -ENOMEM; |
Samuel Ortiz | fa9ff4b | 2008-02-07 00:14:49 -0800 | [diff] [blame] | 971 | } |
| 972 | |
| 973 | asic->irq_base = pdata->irq_base; |
| 974 | |
Philipp Zabel | 99cdb0c | 2008-07-10 02:17:02 +0200 | [diff] [blame] | 975 | /* calculate bus shift from mem resource */ |
Philipp Zabel | be584bd | 2009-06-05 18:31:04 +0200 | [diff] [blame] | 976 | asic->bus_shift = 2 - (resource_size(mem) >> 12); |
Samuel Ortiz | fa9ff4b | 2008-02-07 00:14:49 -0800 | [diff] [blame] | 977 | |
| 978 | clksel = 0; |
| 979 | asic3_write_register(asic, ASIC3_OFFSET(CLOCK, SEL), clksel); |
| 980 | |
| 981 | ret = asic3_irq_probe(pdev); |
| 982 | if (ret < 0) { |
Samuel Ortiz | 24f4f2e | 2008-06-20 11:11:19 +0200 | [diff] [blame] | 983 | dev_err(asic->dev, "Couldn't probe IRQs\n"); |
Samuel Ortiz | 6f2384c | 2008-06-20 11:02:19 +0200 | [diff] [blame] | 984 | goto out_unmap; |
Samuel Ortiz | fa9ff4b | 2008-02-07 00:14:49 -0800 | [diff] [blame] | 985 | } |
Samuel Ortiz | 6f2384c | 2008-06-20 11:02:19 +0200 | [diff] [blame] | 986 | |
Paul Parsons | d8e4a88 | 2011-08-09 16:27:50 +0000 | [diff] [blame] | 987 | asic->gpio.label = "asic3"; |
Samuel Ortiz | 6f2384c | 2008-06-20 11:02:19 +0200 | [diff] [blame] | 988 | asic->gpio.base = pdata->gpio_base; |
| 989 | asic->gpio.ngpio = ASIC3_NUM_GPIOS; |
| 990 | asic->gpio.get = asic3_gpio_get; |
| 991 | asic->gpio.set = asic3_gpio_set; |
| 992 | asic->gpio.direction_input = asic3_gpio_direction_input; |
| 993 | asic->gpio.direction_output = asic3_gpio_direction_output; |
Paul Parsons | 450b115 | 2012-01-31 01:18:35 +0000 | [diff] [blame] | 994 | asic->gpio.to_irq = asic3_gpio_to_irq; |
Samuel Ortiz | 6f2384c | 2008-06-20 11:02:19 +0200 | [diff] [blame] | 995 | |
Samuel Ortiz | 3b26bf1 | 2008-06-20 11:09:51 +0200 | [diff] [blame] | 996 | ret = asic3_gpio_probe(pdev, |
| 997 | pdata->gpio_config, |
| 998 | pdata->gpio_config_num); |
Samuel Ortiz | 6f2384c | 2008-06-20 11:02:19 +0200 | [diff] [blame] | 999 | if (ret < 0) { |
Samuel Ortiz | 24f4f2e | 2008-06-20 11:11:19 +0200 | [diff] [blame] | 1000 | dev_err(asic->dev, "GPIO probe failed\n"); |
Samuel Ortiz | 6f2384c | 2008-06-20 11:02:19 +0200 | [diff] [blame] | 1001 | goto out_irq; |
| 1002 | } |
Samuel Ortiz | fa9ff4b | 2008-02-07 00:14:49 -0800 | [diff] [blame] | 1003 | |
Philipp Zabel | e956a2a | 2009-06-05 18:31:02 +0200 | [diff] [blame] | 1004 | /* Making a per-device copy is only needed for the |
| 1005 | * theoretical case of multiple ASIC3s on one board: |
| 1006 | */ |
| 1007 | memcpy(asic->clocks, asic3_clk_init, sizeof(asic3_clk_init)); |
| 1008 | |
Paul Parsons | 13ca4f6 | 2011-05-13 18:53:03 +0000 | [diff] [blame] | 1009 | asic3_mfd_probe(pdev, pdata, mem); |
Philipp Zabel | 9461f65 | 2009-06-15 12:10:24 +0200 | [diff] [blame] | 1010 | |
Paul Parsons | f22a9c6 | 2012-04-05 17:45:04 +0100 | [diff] [blame] | 1011 | asic3_set_register(asic, ASIC3_OFFSET(EXTCF, SELECT), |
| 1012 | (ASIC3_EXTCF_CF0_BUF_EN|ASIC3_EXTCF_CF0_PWAIT_EN), 1); |
| 1013 | |
Samuel Ortiz | 24f4f2e | 2008-06-20 11:11:19 +0200 | [diff] [blame] | 1014 | dev_info(asic->dev, "ASIC3 Core driver\n"); |
Samuel Ortiz | fa9ff4b | 2008-02-07 00:14:49 -0800 | [diff] [blame] | 1015 | |
| 1016 | return 0; |
| 1017 | |
Samuel Ortiz | 6f2384c | 2008-06-20 11:02:19 +0200 | [diff] [blame] | 1018 | out_irq: |
| 1019 | asic3_irq_remove(pdev); |
| 1020 | |
| 1021 | out_unmap: |
Samuel Ortiz | fa9ff4b | 2008-02-07 00:14:49 -0800 | [diff] [blame] | 1022 | iounmap(asic->mapping); |
Samuel Ortiz | 6f2384c | 2008-06-20 11:02:19 +0200 | [diff] [blame] | 1023 | |
Samuel Ortiz | fa9ff4b | 2008-02-07 00:14:49 -0800 | [diff] [blame] | 1024 | return ret; |
| 1025 | } |
| 1026 | |
Bill Pemberton | 4740f73 | 2012-11-19 13:26:01 -0500 | [diff] [blame] | 1027 | static int asic3_remove(struct platform_device *pdev) |
Samuel Ortiz | fa9ff4b | 2008-02-07 00:14:49 -0800 | [diff] [blame] | 1028 | { |
Samuel Ortiz | 6f2384c | 2008-06-20 11:02:19 +0200 | [diff] [blame] | 1029 | int ret; |
Samuel Ortiz | fa9ff4b | 2008-02-07 00:14:49 -0800 | [diff] [blame] | 1030 | struct asic3 *asic = platform_get_drvdata(pdev); |
| 1031 | |
Paul Parsons | f22a9c6 | 2012-04-05 17:45:04 +0100 | [diff] [blame] | 1032 | asic3_set_register(asic, ASIC3_OFFSET(EXTCF, SELECT), |
| 1033 | (ASIC3_EXTCF_CF0_BUF_EN|ASIC3_EXTCF_CF0_PWAIT_EN), 0); |
| 1034 | |
Philipp Zabel | 9461f65 | 2009-06-15 12:10:24 +0200 | [diff] [blame] | 1035 | asic3_mfd_remove(pdev); |
| 1036 | |
Samuel Ortiz | 6f2384c | 2008-06-20 11:02:19 +0200 | [diff] [blame] | 1037 | ret = asic3_gpio_remove(pdev); |
| 1038 | if (ret < 0) |
| 1039 | return ret; |
Samuel Ortiz | fa9ff4b | 2008-02-07 00:14:49 -0800 | [diff] [blame] | 1040 | asic3_irq_remove(pdev); |
| 1041 | |
| 1042 | asic3_write_register(asic, ASIC3_OFFSET(CLOCK, SEL), 0); |
| 1043 | |
| 1044 | iounmap(asic->mapping); |
| 1045 | |
Samuel Ortiz | fa9ff4b | 2008-02-07 00:14:49 -0800 | [diff] [blame] | 1046 | return 0; |
| 1047 | } |
| 1048 | |
| 1049 | static void asic3_shutdown(struct platform_device *pdev) |
| 1050 | { |
| 1051 | } |
| 1052 | |
| 1053 | static struct platform_driver asic3_device_driver = { |
| 1054 | .driver = { |
| 1055 | .name = "asic3", |
| 1056 | }, |
Bill Pemberton | 8444921 | 2012-11-19 13:20:24 -0500 | [diff] [blame] | 1057 | .remove = asic3_remove, |
Samuel Ortiz | fa9ff4b | 2008-02-07 00:14:49 -0800 | [diff] [blame] | 1058 | .shutdown = asic3_shutdown, |
| 1059 | }; |
| 1060 | |
| 1061 | static int __init asic3_init(void) |
| 1062 | { |
| 1063 | int retval = 0; |
Lee Jones | d43c429 | 2015-10-28 14:11:23 +0000 | [diff] [blame] | 1064 | |
Philipp Zabel | 065032f | 2008-06-21 00:51:38 +0200 | [diff] [blame] | 1065 | retval = platform_driver_probe(&asic3_device_driver, asic3_probe); |
Lee Jones | d43c429 | 2015-10-28 14:11:23 +0000 | [diff] [blame] | 1066 | |
Samuel Ortiz | fa9ff4b | 2008-02-07 00:14:49 -0800 | [diff] [blame] | 1067 | return retval; |
| 1068 | } |
| 1069 | |
| 1070 | subsys_initcall(asic3_init); |