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