blob: 120df5c08741a1b0f2fe53ca592fae2d7fd94ee2 [file] [log] [blame]
Samuel Ortizfa9ff4b2008-02-07 00:14:49 -08001/*
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 Ortiz6f2384c2008-06-20 11:02:19 +020012 * Copyright 2007-2008 OpenedHand Ltd.
Samuel Ortizfa9ff4b2008-02-07 00:14:49 -080013 *
14 * Authors: Phil Blundell <pb@handhelds.org>,
15 * Samuel Ortiz <sameo@openedhand.com>
16 *
17 */
18
Samuel Ortizfa9ff4b2008-02-07 00:14:49 -080019#include <linux/kernel.h>
Philipp Zabel9461f652009-06-15 12:10:24 +020020#include <linux/delay.h>
Samuel Ortizfa9ff4b2008-02-07 00:14:49 -080021#include <linux/irq.h>
Samuel Ortiz6f2384c2008-06-20 11:02:19 +020022#include <linux/gpio.h>
Paul Gortmaker5d4a3572011-07-10 12:41:10 -040023#include <linux/export.h>
Samuel Ortizfa9ff4b2008-02-07 00:14:49 -080024#include <linux/io.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090025#include <linux/slab.h>
Samuel Ortizfa9ff4b2008-02-07 00:14:49 -080026#include <linux/spinlock.h>
27#include <linux/platform_device.h>
28
29#include <linux/mfd/asic3.h>
Philipp Zabel9461f652009-06-15 12:10:24 +020030#include <linux/mfd/core.h>
31#include <linux/mfd/ds1wm.h>
Philipp Zabel09f05ce2009-06-15 12:10:25 +020032#include <linux/mfd/tmio.h>
Samuel Ortizfa9ff4b2008-02-07 00:14:49 -080033
Philipp Zabele956a2a2009-06-05 18:31:02 +020034enum {
35 ASIC3_CLOCK_SPI,
36 ASIC3_CLOCK_OWM,
37 ASIC3_CLOCK_PWM0,
38 ASIC3_CLOCK_PWM1,
39 ASIC3_CLOCK_LED0,
40 ASIC3_CLOCK_LED1,
41 ASIC3_CLOCK_LED2,
42 ASIC3_CLOCK_SD_HOST,
43 ASIC3_CLOCK_SD_BUS,
44 ASIC3_CLOCK_SMBUS,
45 ASIC3_CLOCK_EX0,
46 ASIC3_CLOCK_EX1,
47};
48
49struct asic3_clk {
50 int enabled;
51 unsigned int cdex;
52 unsigned long rate;
53};
54
55#define INIT_CDEX(_name, _rate) \
56 [ASIC3_CLOCK_##_name] = { \
57 .cdex = CLOCK_CDEX_##_name, \
58 .rate = _rate, \
59 }
60
Mark Brown59f2ad22010-12-11 12:59:35 +000061static struct asic3_clk asic3_clk_init[] __initdata = {
Philipp Zabele956a2a2009-06-05 18:31:02 +020062 INIT_CDEX(SPI, 0),
63 INIT_CDEX(OWM, 5000000),
64 INIT_CDEX(PWM0, 0),
65 INIT_CDEX(PWM1, 0),
66 INIT_CDEX(LED0, 0),
67 INIT_CDEX(LED1, 0),
68 INIT_CDEX(LED2, 0),
69 INIT_CDEX(SD_HOST, 24576000),
70 INIT_CDEX(SD_BUS, 12288000),
71 INIT_CDEX(SMBUS, 0),
72 INIT_CDEX(EX0, 32768),
73 INIT_CDEX(EX1, 24576000),
74};
75
Samuel Ortiz6f2384c2008-06-20 11:02:19 +020076struct asic3 {
77 void __iomem *mapping;
78 unsigned int bus_shift;
79 unsigned int irq_nr;
80 unsigned int irq_base;
81 spinlock_t lock;
82 u16 irq_bothedge[4];
83 struct gpio_chip gpio;
84 struct device *dev;
Ian Molton64e88672010-01-06 13:51:48 +010085 void __iomem *tmio_cnf;
Philipp Zabele956a2a2009-06-05 18:31:02 +020086
87 struct asic3_clk clocks[ARRAY_SIZE(asic3_clk_init)];
Samuel Ortiz6f2384c2008-06-20 11:02:19 +020088};
89
90static int asic3_gpio_get(struct gpio_chip *chip, unsigned offset);
91
Paul Parsons13ca4f62011-05-13 18:53:03 +000092void asic3_write_register(struct asic3 *asic, unsigned int reg, u32 value)
Samuel Ortizfa9ff4b2008-02-07 00:14:49 -080093{
Al Virob32661e2008-03-29 03:10:58 +000094 iowrite16(value, asic->mapping +
Samuel Ortizfa9ff4b2008-02-07 00:14:49 -080095 (reg >> asic->bus_shift));
96}
Paul Parsons13ca4f62011-05-13 18:53:03 +000097EXPORT_SYMBOL_GPL(asic3_write_register);
Samuel Ortizfa9ff4b2008-02-07 00:14:49 -080098
Paul Parsons13ca4f62011-05-13 18:53:03 +000099u32 asic3_read_register(struct asic3 *asic, unsigned int reg)
Samuel Ortizfa9ff4b2008-02-07 00:14:49 -0800100{
Al Virob32661e2008-03-29 03:10:58 +0000101 return ioread16(asic->mapping +
Samuel Ortizfa9ff4b2008-02-07 00:14:49 -0800102 (reg >> asic->bus_shift));
103}
Paul Parsons13ca4f62011-05-13 18:53:03 +0000104EXPORT_SYMBOL_GPL(asic3_read_register);
Samuel Ortizfa9ff4b2008-02-07 00:14:49 -0800105
Mark Brown59f2ad22010-12-11 12:59:35 +0000106static void asic3_set_register(struct asic3 *asic, u32 reg, u32 bits, bool set)
Philipp Zabel6483c1b2009-06-05 18:31:01 +0200107{
108 unsigned long flags;
109 u32 val;
110
111 spin_lock_irqsave(&asic->lock, flags);
112 val = asic3_read_register(asic, reg);
113 if (set)
114 val |= bits;
115 else
116 val &= ~bits;
117 asic3_write_register(asic, reg, val);
118 spin_unlock_irqrestore(&asic->lock, flags);
119}
120
Samuel Ortizfa9ff4b2008-02-07 00:14:49 -0800121/* IRQs */
122#define MAX_ASIC_ISR_LOOPS 20
Samuel Ortiz3b8139f2008-06-20 11:12:21 +0200123#define ASIC3_GPIO_BASE_INCR \
124 (ASIC3_GPIO_B_BASE - ASIC3_GPIO_A_BASE)
Samuel Ortizfa9ff4b2008-02-07 00:14:49 -0800125
126static void asic3_irq_flip_edge(struct asic3 *asic,
127 u32 base, int bit)
128{
129 u16 edge;
130 unsigned long flags;
131
132 spin_lock_irqsave(&asic->lock, flags);
133 edge = asic3_read_register(asic,
Samuel Ortiz3b8139f2008-06-20 11:12:21 +0200134 base + ASIC3_GPIO_EDGE_TRIGGER);
Samuel Ortizfa9ff4b2008-02-07 00:14:49 -0800135 edge ^= bit;
136 asic3_write_register(asic,
Samuel Ortiz3b8139f2008-06-20 11:12:21 +0200137 base + ASIC3_GPIO_EDGE_TRIGGER, edge);
Samuel Ortizfa9ff4b2008-02-07 00:14:49 -0800138 spin_unlock_irqrestore(&asic->lock, flags);
139}
140
141static void asic3_irq_demux(unsigned int irq, struct irq_desc *desc)
142{
Thomas Gleixner52a7d602011-03-25 11:12:26 +0000143 struct asic3 *asic = irq_desc_get_handler_data(desc);
144 struct irq_data *data = irq_desc_get_irq_data(desc);
Samuel Ortizfa9ff4b2008-02-07 00:14:49 -0800145 int iter, i;
146 unsigned long flags;
Samuel Ortizfa9ff4b2008-02-07 00:14:49 -0800147
Axel Lina09aee82011-04-14 22:43:47 +0800148 data->chip->irq_ack(data);
Samuel Ortizfa9ff4b2008-02-07 00:14:49 -0800149
150 for (iter = 0 ; iter < MAX_ASIC_ISR_LOOPS; iter++) {
151 u32 status;
152 int bank;
153
154 spin_lock_irqsave(&asic->lock, flags);
155 status = asic3_read_register(asic,
Samuel Ortiz3b8139f2008-06-20 11:12:21 +0200156 ASIC3_OFFSET(INTR, P_INT_STAT));
Samuel Ortizfa9ff4b2008-02-07 00:14:49 -0800157 spin_unlock_irqrestore(&asic->lock, flags);
158
159 /* Check all ten register bits */
160 if ((status & 0x3ff) == 0)
161 break;
162
163 /* Handle GPIO IRQs */
164 for (bank = 0; bank < ASIC3_NUM_GPIO_BANKS; bank++) {
165 if (status & (1 << bank)) {
166 unsigned long base, istat;
167
Samuel Ortiz3b8139f2008-06-20 11:12:21 +0200168 base = ASIC3_GPIO_A_BASE
169 + bank * ASIC3_GPIO_BASE_INCR;
Samuel Ortizfa9ff4b2008-02-07 00:14:49 -0800170
171 spin_lock_irqsave(&asic->lock, flags);
172 istat = asic3_read_register(asic,
173 base +
Samuel Ortiz3b8139f2008-06-20 11:12:21 +0200174 ASIC3_GPIO_INT_STATUS);
Samuel Ortizfa9ff4b2008-02-07 00:14:49 -0800175 /* Clearing IntStatus */
176 asic3_write_register(asic,
177 base +
Samuel Ortiz3b8139f2008-06-20 11:12:21 +0200178 ASIC3_GPIO_INT_STATUS, 0);
Samuel Ortizfa9ff4b2008-02-07 00:14:49 -0800179 spin_unlock_irqrestore(&asic->lock, flags);
180
181 for (i = 0; i < ASIC3_GPIOS_PER_BANK; i++) {
182 int bit = (1 << i);
183 unsigned int irqnr;
184
185 if (!(istat & bit))
186 continue;
187
188 irqnr = asic->irq_base +
189 (ASIC3_GPIOS_PER_BANK * bank)
190 + i;
Thomas Gleixner52a7d602011-03-25 11:12:26 +0000191 generic_handle_irq(irqnr);
Samuel Ortizfa9ff4b2008-02-07 00:14:49 -0800192 if (asic->irq_bothedge[bank] & bit)
193 asic3_irq_flip_edge(asic, base,
194 bit);
195 }
196 }
197 }
198
199 /* Handle remaining IRQs in the status register */
200 for (i = ASIC3_NUM_GPIOS; i < ASIC3_NR_IRQS; i++) {
201 /* They start at bit 4 and go up */
Thomas Gleixner52a7d602011-03-25 11:12:26 +0000202 if (status & (1 << (i - ASIC3_NUM_GPIOS + 4)))
203 generic_handle_irq(asic->irq_base + i);
Samuel Ortizfa9ff4b2008-02-07 00:14:49 -0800204 }
205 }
206
207 if (iter >= MAX_ASIC_ISR_LOOPS)
Samuel Ortiz24f4f2e2008-06-20 11:11:19 +0200208 dev_err(asic->dev, "interrupt processing overrun\n");
Samuel Ortizfa9ff4b2008-02-07 00:14:49 -0800209}
210
211static inline int asic3_irq_to_bank(struct asic3 *asic, int irq)
212{
213 int n;
214
215 n = (irq - asic->irq_base) >> 4;
216
Samuel Ortiz3b8139f2008-06-20 11:12:21 +0200217 return (n * (ASIC3_GPIO_B_BASE - ASIC3_GPIO_A_BASE));
Samuel Ortizfa9ff4b2008-02-07 00:14:49 -0800218}
219
220static inline int asic3_irq_to_index(struct asic3 *asic, int irq)
221{
222 return (irq - asic->irq_base) & 0xf;
223}
224
Mark Brown0f76aae2010-12-11 13:08:57 +0000225static void asic3_mask_gpio_irq(struct irq_data *data)
Samuel Ortizfa9ff4b2008-02-07 00:14:49 -0800226{
Mark Brown0f76aae2010-12-11 13:08:57 +0000227 struct asic3 *asic = irq_data_get_irq_chip_data(data);
Samuel Ortizfa9ff4b2008-02-07 00:14:49 -0800228 u32 val, bank, index;
229 unsigned long flags;
230
Mark Brown0f76aae2010-12-11 13:08:57 +0000231 bank = asic3_irq_to_bank(asic, data->irq);
232 index = asic3_irq_to_index(asic, data->irq);
Samuel Ortizfa9ff4b2008-02-07 00:14:49 -0800233
234 spin_lock_irqsave(&asic->lock, flags);
Samuel Ortiz3b8139f2008-06-20 11:12:21 +0200235 val = asic3_read_register(asic, bank + ASIC3_GPIO_MASK);
Samuel Ortizfa9ff4b2008-02-07 00:14:49 -0800236 val |= 1 << index;
Samuel Ortiz3b8139f2008-06-20 11:12:21 +0200237 asic3_write_register(asic, bank + ASIC3_GPIO_MASK, val);
Samuel Ortizfa9ff4b2008-02-07 00:14:49 -0800238 spin_unlock_irqrestore(&asic->lock, flags);
239}
240
Mark Brown0f76aae2010-12-11 13:08:57 +0000241static void asic3_mask_irq(struct irq_data *data)
Samuel Ortizfa9ff4b2008-02-07 00:14:49 -0800242{
Mark Brown0f76aae2010-12-11 13:08:57 +0000243 struct asic3 *asic = irq_data_get_irq_chip_data(data);
Samuel Ortizfa9ff4b2008-02-07 00:14:49 -0800244 int regval;
245 unsigned long flags;
246
247 spin_lock_irqsave(&asic->lock, flags);
248 regval = asic3_read_register(asic,
Samuel Ortiz3b8139f2008-06-20 11:12:21 +0200249 ASIC3_INTR_BASE +
250 ASIC3_INTR_INT_MASK);
Samuel Ortizfa9ff4b2008-02-07 00:14:49 -0800251
252 regval &= ~(ASIC3_INTMASK_MASK0 <<
Mark Brown0f76aae2010-12-11 13:08:57 +0000253 (data->irq - (asic->irq_base + ASIC3_NUM_GPIOS)));
Samuel Ortizfa9ff4b2008-02-07 00:14:49 -0800254
255 asic3_write_register(asic,
Samuel Ortiz3b8139f2008-06-20 11:12:21 +0200256 ASIC3_INTR_BASE +
257 ASIC3_INTR_INT_MASK,
Samuel Ortizfa9ff4b2008-02-07 00:14:49 -0800258 regval);
259 spin_unlock_irqrestore(&asic->lock, flags);
260}
261
Mark Brown0f76aae2010-12-11 13:08:57 +0000262static void asic3_unmask_gpio_irq(struct irq_data *data)
Samuel Ortizfa9ff4b2008-02-07 00:14:49 -0800263{
Mark Brown0f76aae2010-12-11 13:08:57 +0000264 struct asic3 *asic = irq_data_get_irq_chip_data(data);
Samuel Ortizfa9ff4b2008-02-07 00:14:49 -0800265 u32 val, bank, index;
266 unsigned long flags;
267
Mark Brown0f76aae2010-12-11 13:08:57 +0000268 bank = asic3_irq_to_bank(asic, data->irq);
269 index = asic3_irq_to_index(asic, data->irq);
Samuel Ortizfa9ff4b2008-02-07 00:14:49 -0800270
271 spin_lock_irqsave(&asic->lock, flags);
Samuel Ortiz3b8139f2008-06-20 11:12:21 +0200272 val = asic3_read_register(asic, bank + ASIC3_GPIO_MASK);
Samuel Ortizfa9ff4b2008-02-07 00:14:49 -0800273 val &= ~(1 << index);
Samuel Ortiz3b8139f2008-06-20 11:12:21 +0200274 asic3_write_register(asic, bank + ASIC3_GPIO_MASK, val);
Samuel Ortizfa9ff4b2008-02-07 00:14:49 -0800275 spin_unlock_irqrestore(&asic->lock, flags);
276}
277
Mark Brown0f76aae2010-12-11 13:08:57 +0000278static void asic3_unmask_irq(struct irq_data *data)
Samuel Ortizfa9ff4b2008-02-07 00:14:49 -0800279{
Mark Brown0f76aae2010-12-11 13:08:57 +0000280 struct asic3 *asic = irq_data_get_irq_chip_data(data);
Samuel Ortizfa9ff4b2008-02-07 00:14:49 -0800281 int regval;
282 unsigned long flags;
283
284 spin_lock_irqsave(&asic->lock, flags);
285 regval = asic3_read_register(asic,
Samuel Ortiz3b8139f2008-06-20 11:12:21 +0200286 ASIC3_INTR_BASE +
287 ASIC3_INTR_INT_MASK);
Samuel Ortizfa9ff4b2008-02-07 00:14:49 -0800288
289 regval |= (ASIC3_INTMASK_MASK0 <<
Mark Brown0f76aae2010-12-11 13:08:57 +0000290 (data->irq - (asic->irq_base + ASIC3_NUM_GPIOS)));
Samuel Ortizfa9ff4b2008-02-07 00:14:49 -0800291
292 asic3_write_register(asic,
Samuel Ortiz3b8139f2008-06-20 11:12:21 +0200293 ASIC3_INTR_BASE +
294 ASIC3_INTR_INT_MASK,
Samuel Ortizfa9ff4b2008-02-07 00:14:49 -0800295 regval);
296 spin_unlock_irqrestore(&asic->lock, flags);
297}
298
Mark Brown0f76aae2010-12-11 13:08:57 +0000299static int asic3_gpio_irq_type(struct irq_data *data, unsigned int type)
Samuel Ortizfa9ff4b2008-02-07 00:14:49 -0800300{
Mark Brown0f76aae2010-12-11 13:08:57 +0000301 struct asic3 *asic = irq_data_get_irq_chip_data(data);
Samuel Ortizfa9ff4b2008-02-07 00:14:49 -0800302 u32 bank, index;
303 u16 trigger, level, edge, bit;
304 unsigned long flags;
305
Mark Brown0f76aae2010-12-11 13:08:57 +0000306 bank = asic3_irq_to_bank(asic, data->irq);
307 index = asic3_irq_to_index(asic, data->irq);
Samuel Ortizfa9ff4b2008-02-07 00:14:49 -0800308 bit = 1<<index;
309
310 spin_lock_irqsave(&asic->lock, flags);
311 level = asic3_read_register(asic,
Samuel Ortiz3b8139f2008-06-20 11:12:21 +0200312 bank + ASIC3_GPIO_LEVEL_TRIGGER);
Samuel Ortizfa9ff4b2008-02-07 00:14:49 -0800313 edge = asic3_read_register(asic,
Samuel Ortiz3b8139f2008-06-20 11:12:21 +0200314 bank + ASIC3_GPIO_EDGE_TRIGGER);
Samuel Ortizfa9ff4b2008-02-07 00:14:49 -0800315 trigger = asic3_read_register(asic,
Samuel Ortiz3b8139f2008-06-20 11:12:21 +0200316 bank + ASIC3_GPIO_TRIGGER_TYPE);
Mark Brown0f76aae2010-12-11 13:08:57 +0000317 asic->irq_bothedge[(data->irq - asic->irq_base) >> 4] &= ~bit;
Samuel Ortizfa9ff4b2008-02-07 00:14:49 -0800318
Dmitry Baryshkov6cab4862008-07-27 04:23:31 +0100319 if (type == IRQ_TYPE_EDGE_RISING) {
Samuel Ortizfa9ff4b2008-02-07 00:14:49 -0800320 trigger |= bit;
321 edge |= bit;
Dmitry Baryshkov6cab4862008-07-27 04:23:31 +0100322 } else if (type == IRQ_TYPE_EDGE_FALLING) {
Samuel Ortizfa9ff4b2008-02-07 00:14:49 -0800323 trigger |= bit;
324 edge &= ~bit;
Dmitry Baryshkov6cab4862008-07-27 04:23:31 +0100325 } else if (type == IRQ_TYPE_EDGE_BOTH) {
Samuel Ortizfa9ff4b2008-02-07 00:14:49 -0800326 trigger |= bit;
Mark Brown0f76aae2010-12-11 13:08:57 +0000327 if (asic3_gpio_get(&asic->gpio, data->irq - asic->irq_base))
Samuel Ortizfa9ff4b2008-02-07 00:14:49 -0800328 edge &= ~bit;
329 else
330 edge |= bit;
Mark Brown0f76aae2010-12-11 13:08:57 +0000331 asic->irq_bothedge[(data->irq - asic->irq_base) >> 4] |= bit;
Dmitry Baryshkov6cab4862008-07-27 04:23:31 +0100332 } else if (type == IRQ_TYPE_LEVEL_LOW) {
Samuel Ortizfa9ff4b2008-02-07 00:14:49 -0800333 trigger &= ~bit;
334 level &= ~bit;
Dmitry Baryshkov6cab4862008-07-27 04:23:31 +0100335 } else if (type == IRQ_TYPE_LEVEL_HIGH) {
Samuel Ortizfa9ff4b2008-02-07 00:14:49 -0800336 trigger &= ~bit;
337 level |= bit;
338 } else {
339 /*
Dmitry Baryshkov6cab4862008-07-27 04:23:31 +0100340 * if type == IRQ_TYPE_NONE, we should mask interrupts, but
Samuel Ortizfa9ff4b2008-02-07 00:14:49 -0800341 * be careful to not unmask them if mask was also called.
342 * Probably need internal state for mask.
343 */
Samuel Ortiz24f4f2e2008-06-20 11:11:19 +0200344 dev_notice(asic->dev, "irq type not changed\n");
Samuel Ortizfa9ff4b2008-02-07 00:14:49 -0800345 }
Samuel Ortiz3b8139f2008-06-20 11:12:21 +0200346 asic3_write_register(asic, bank + ASIC3_GPIO_LEVEL_TRIGGER,
Samuel Ortizfa9ff4b2008-02-07 00:14:49 -0800347 level);
Samuel Ortiz3b8139f2008-06-20 11:12:21 +0200348 asic3_write_register(asic, bank + ASIC3_GPIO_EDGE_TRIGGER,
Samuel Ortizfa9ff4b2008-02-07 00:14:49 -0800349 edge);
Samuel Ortiz3b8139f2008-06-20 11:12:21 +0200350 asic3_write_register(asic, bank + ASIC3_GPIO_TRIGGER_TYPE,
Samuel Ortizfa9ff4b2008-02-07 00:14:49 -0800351 trigger);
352 spin_unlock_irqrestore(&asic->lock, flags);
353 return 0;
354}
355
Paul Parsons2fe372f2012-04-11 00:35:34 +0100356static int asic3_gpio_irq_set_wake(struct irq_data *data, unsigned int on)
357{
358 struct asic3 *asic = irq_data_get_irq_chip_data(data);
359 u32 bank, index;
360 u16 bit;
361
362 bank = asic3_irq_to_bank(asic, data->irq);
363 index = asic3_irq_to_index(asic, data->irq);
364 bit = 1<<index;
365
366 asic3_set_register(asic, bank + ASIC3_GPIO_SLEEP_MASK, bit, !on);
367
368 return 0;
369}
370
Samuel Ortizfa9ff4b2008-02-07 00:14:49 -0800371static struct irq_chip asic3_gpio_irq_chip = {
372 .name = "ASIC3-GPIO",
Mark Brown0f76aae2010-12-11 13:08:57 +0000373 .irq_ack = asic3_mask_gpio_irq,
374 .irq_mask = asic3_mask_gpio_irq,
375 .irq_unmask = asic3_unmask_gpio_irq,
376 .irq_set_type = asic3_gpio_irq_type,
Paul Parsons2fe372f2012-04-11 00:35:34 +0100377 .irq_set_wake = asic3_gpio_irq_set_wake,
Samuel Ortizfa9ff4b2008-02-07 00:14:49 -0800378};
379
380static struct irq_chip asic3_irq_chip = {
381 .name = "ASIC3",
Mark Brown0f76aae2010-12-11 13:08:57 +0000382 .irq_ack = asic3_mask_irq,
383 .irq_mask = asic3_mask_irq,
384 .irq_unmask = asic3_unmask_irq,
Samuel Ortizfa9ff4b2008-02-07 00:14:49 -0800385};
386
Philipp Zabel065032f2008-06-21 00:51:38 +0200387static int __init asic3_irq_probe(struct platform_device *pdev)
Samuel Ortizfa9ff4b2008-02-07 00:14:49 -0800388{
389 struct asic3 *asic = platform_get_drvdata(pdev);
390 unsigned long clksel = 0;
391 unsigned int irq, irq_base;
Roel Kluinc491b2f2008-07-25 19:44:41 -0700392 int ret;
Samuel Ortizfa9ff4b2008-02-07 00:14:49 -0800393
Roel Kluinc491b2f2008-07-25 19:44:41 -0700394 ret = platform_get_irq(pdev, 0);
395 if (ret < 0)
396 return ret;
397 asic->irq_nr = ret;
Samuel Ortizfa9ff4b2008-02-07 00:14:49 -0800398
399 /* turn on clock to IRQ controller */
400 clksel |= CLOCK_SEL_CX;
401 asic3_write_register(asic, ASIC3_OFFSET(CLOCK, SEL),
402 clksel);
403
404 irq_base = asic->irq_base;
405
406 for (irq = irq_base; irq < irq_base + ASIC3_NR_IRQS; irq++) {
407 if (irq < asic->irq_base + ASIC3_NUM_GPIOS)
Thomas Gleixnerd5bb1222011-03-25 11:12:32 +0000408 irq_set_chip(irq, &asic3_gpio_irq_chip);
Samuel Ortizfa9ff4b2008-02-07 00:14:49 -0800409 else
Thomas Gleixnerd5bb1222011-03-25 11:12:32 +0000410 irq_set_chip(irq, &asic3_irq_chip);
Samuel Ortizfa9ff4b2008-02-07 00:14:49 -0800411
Thomas Gleixnerd5bb1222011-03-25 11:12:32 +0000412 irq_set_chip_data(irq, asic);
413 irq_set_handler(irq, handle_level_irq);
Samuel Ortizfa9ff4b2008-02-07 00:14:49 -0800414 set_irq_flags(irq, IRQF_VALID | IRQF_PROBE);
415 }
416
Samuel Ortiz3b8139f2008-06-20 11:12:21 +0200417 asic3_write_register(asic, ASIC3_OFFSET(INTR, INT_MASK),
Samuel Ortizfa9ff4b2008-02-07 00:14:49 -0800418 ASIC3_INTMASK_GINTMASK);
419
Thomas Gleixnerc30e3042015-06-21 20:16:06 +0200420 irq_set_chained_handler_and_data(asic->irq_nr, asic3_irq_demux, asic);
Thomas Gleixnerd5bb1222011-03-25 11:12:32 +0000421 irq_set_irq_type(asic->irq_nr, IRQ_TYPE_EDGE_RISING);
Samuel Ortizfa9ff4b2008-02-07 00:14:49 -0800422
423 return 0;
424}
425
426static void asic3_irq_remove(struct platform_device *pdev)
427{
428 struct asic3 *asic = platform_get_drvdata(pdev);
429 unsigned int irq, irq_base;
430
431 irq_base = asic->irq_base;
432
433 for (irq = irq_base; irq < irq_base + ASIC3_NR_IRQS; irq++) {
434 set_irq_flags(irq, 0);
Thomas Gleixnerd6f7ce9f2011-03-25 11:12:35 +0000435 irq_set_chip_and_handler(irq, NULL, NULL);
Thomas Gleixnerd5bb1222011-03-25 11:12:32 +0000436 irq_set_chip_data(irq, NULL);
Samuel Ortizfa9ff4b2008-02-07 00:14:49 -0800437 }
Thomas Gleixnerd5bb1222011-03-25 11:12:32 +0000438 irq_set_chained_handler(asic->irq_nr, NULL);
Samuel Ortizfa9ff4b2008-02-07 00:14:49 -0800439}
440
441/* GPIOs */
Samuel Ortiz6f2384c2008-06-20 11:02:19 +0200442static int asic3_gpio_direction(struct gpio_chip *chip,
443 unsigned offset, int out)
444{
445 u32 mask = ASIC3_GPIO_TO_MASK(offset), out_reg;
446 unsigned int gpio_base;
447 unsigned long flags;
448 struct asic3 *asic;
449
450 asic = container_of(chip, struct asic3, gpio);
451 gpio_base = ASIC3_GPIO_TO_BASE(offset);
452
Samuel Ortiz3b8139f2008-06-20 11:12:21 +0200453 if (gpio_base > ASIC3_GPIO_D_BASE) {
Samuel Ortiz24f4f2e2008-06-20 11:11:19 +0200454 dev_err(asic->dev, "Invalid base (0x%x) for gpio %d\n",
455 gpio_base, offset);
Samuel Ortiz6f2384c2008-06-20 11:02:19 +0200456 return -EINVAL;
457 }
458
459 spin_lock_irqsave(&asic->lock, flags);
460
Samuel Ortiz3b8139f2008-06-20 11:12:21 +0200461 out_reg = asic3_read_register(asic, gpio_base + ASIC3_GPIO_DIRECTION);
Samuel Ortiz6f2384c2008-06-20 11:02:19 +0200462
463 /* Input is 0, Output is 1 */
464 if (out)
465 out_reg |= mask;
466 else
467 out_reg &= ~mask;
468
Samuel Ortiz3b8139f2008-06-20 11:12:21 +0200469 asic3_write_register(asic, gpio_base + ASIC3_GPIO_DIRECTION, out_reg);
Samuel Ortiz6f2384c2008-06-20 11:02:19 +0200470
471 spin_unlock_irqrestore(&asic->lock, flags);
472
473 return 0;
474
475}
476
477static int asic3_gpio_direction_input(struct gpio_chip *chip,
478 unsigned offset)
479{
480 return asic3_gpio_direction(chip, offset, 0);
481}
482
483static int asic3_gpio_direction_output(struct gpio_chip *chip,
484 unsigned offset, int value)
485{
486 return asic3_gpio_direction(chip, offset, 1);
487}
488
489static int asic3_gpio_get(struct gpio_chip *chip,
490 unsigned offset)
491{
492 unsigned int gpio_base;
493 u32 mask = ASIC3_GPIO_TO_MASK(offset);
494 struct asic3 *asic;
495
496 asic = container_of(chip, struct asic3, gpio);
497 gpio_base = ASIC3_GPIO_TO_BASE(offset);
498
Samuel Ortiz3b8139f2008-06-20 11:12:21 +0200499 if (gpio_base > ASIC3_GPIO_D_BASE) {
Samuel Ortiz24f4f2e2008-06-20 11:11:19 +0200500 dev_err(asic->dev, "Invalid base (0x%x) for gpio %d\n",
501 gpio_base, offset);
Samuel Ortiz6f2384c2008-06-20 11:02:19 +0200502 return -EINVAL;
503 }
504
Samuel Ortiz3b8139f2008-06-20 11:12:21 +0200505 return asic3_read_register(asic, gpio_base + ASIC3_GPIO_STATUS) & mask;
Samuel Ortiz6f2384c2008-06-20 11:02:19 +0200506}
507
508static void asic3_gpio_set(struct gpio_chip *chip,
509 unsigned offset, int value)
510{
511 u32 mask, out_reg;
512 unsigned int gpio_base;
513 unsigned long flags;
514 struct asic3 *asic;
515
516 asic = container_of(chip, struct asic3, gpio);
517 gpio_base = ASIC3_GPIO_TO_BASE(offset);
518
Samuel Ortiz3b8139f2008-06-20 11:12:21 +0200519 if (gpio_base > ASIC3_GPIO_D_BASE) {
Samuel Ortiz24f4f2e2008-06-20 11:11:19 +0200520 dev_err(asic->dev, "Invalid base (0x%x) for gpio %d\n",
521 gpio_base, offset);
Samuel Ortiz6f2384c2008-06-20 11:02:19 +0200522 return;
523 }
524
525 mask = ASIC3_GPIO_TO_MASK(offset);
526
527 spin_lock_irqsave(&asic->lock, flags);
528
Samuel Ortiz3b8139f2008-06-20 11:12:21 +0200529 out_reg = asic3_read_register(asic, gpio_base + ASIC3_GPIO_OUT);
Samuel Ortiz6f2384c2008-06-20 11:02:19 +0200530
531 if (value)
532 out_reg |= mask;
533 else
534 out_reg &= ~mask;
535
Samuel Ortiz3b8139f2008-06-20 11:12:21 +0200536 asic3_write_register(asic, gpio_base + ASIC3_GPIO_OUT, out_reg);
Samuel Ortiz6f2384c2008-06-20 11:02:19 +0200537
538 spin_unlock_irqrestore(&asic->lock, flags);
539
540 return;
541}
542
Paul Parsons450b1152012-01-31 01:18:35 +0000543static int asic3_gpio_to_irq(struct gpio_chip *chip, unsigned offset)
544{
Dmitry Artamonow02269ab2012-04-12 15:33:34 +0400545 struct asic3 *asic = container_of(chip, struct asic3, gpio);
546
Samuel Ortiz12693f62012-04-16 21:28:29 +0200547 return asic->irq_base + offset;
Paul Parsons450b1152012-01-31 01:18:35 +0000548}
549
Philipp Zabel065032f2008-06-21 00:51:38 +0200550static __init int asic3_gpio_probe(struct platform_device *pdev,
551 u16 *gpio_config, int num)
Samuel Ortizfa9ff4b2008-02-07 00:14:49 -0800552{
Samuel Ortizfa9ff4b2008-02-07 00:14:49 -0800553 struct asic3 *asic = platform_get_drvdata(pdev);
Samuel Ortiz3b26bf12008-06-20 11:09:51 +0200554 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 Ortizfa9ff4b2008-02-07 00:14:49 -0800558
Russell King59f0cb02008-10-27 11:24:09 +0000559 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 Ortiz3b26bf12008-06-20 11:09:51 +0200562
563 /* Enable all GPIOs */
Samuel Ortiz3b8139f2008-06-20 11:12:21 +0200564 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 Ortizfa9ff4b2008-02-07 00:14:49 -0800568
Samuel Ortiz3b26bf12008-06-20 11:09:51 +0200569 for (i = 0; i < num; i++) {
570 u8 alt, pin, dir, init, bank_num, bit_num;
571 u16 config = gpio_config[i];
Samuel Ortizfa9ff4b2008-02-07 00:14:49 -0800572
Samuel Ortiz3b26bf12008-06-20 11:09:51 +0200573 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 Ortiz3b8139f2008-06-20 11:12:21 +0200589 ASIC3_GPIO_DIRECTION,
Samuel Ortiz3b26bf12008-06-20 11:09:51 +0200590 dir_reg[i]);
591 asic3_write_register(asic,
Samuel Ortiz3b8139f2008-06-20 11:12:21 +0200592 ASIC3_BANK_TO_BASE(i) + ASIC3_GPIO_OUT,
Samuel Ortiz3b26bf12008-06-20 11:09:51 +0200593 out_reg[i]);
594 asic3_write_register(asic,
595 ASIC3_BANK_TO_BASE(i) +
Samuel Ortiz3b8139f2008-06-20 11:12:21 +0200596 ASIC3_GPIO_ALT_FUNCTION,
Samuel Ortiz3b26bf12008-06-20 11:09:51 +0200597 alt_reg[i]);
Samuel Ortizfa9ff4b2008-02-07 00:14:49 -0800598 }
599
Samuel Ortiz6f2384c2008-06-20 11:02:19 +0200600 return gpiochip_add(&asic->gpio);
Samuel Ortizfa9ff4b2008-02-07 00:14:49 -0800601}
602
Samuel Ortiz6f2384c2008-06-20 11:02:19 +0200603static int asic3_gpio_remove(struct platform_device *pdev)
Samuel Ortizfa9ff4b2008-02-07 00:14:49 -0800604{
Samuel Ortiz6f2384c2008-06-20 11:02:19 +0200605 struct asic3 *asic = platform_get_drvdata(pdev);
606
abdoulaye berthe88d5e522014-07-12 22:30:14 +0200607 gpiochip_remove(&asic->gpio);
608 return 0;
Samuel Ortizfa9ff4b2008-02-07 00:14:49 -0800609}
610
Paul Parsonsc29a8122011-08-09 16:27:43 +0000611static void asic3_clk_enable(struct asic3 *asic, struct asic3_clk *clk)
Philipp Zabele956a2a2009-06-05 18:31:02 +0200612{
613 unsigned long flags;
614 u32 cdex;
615
616 spin_lock_irqsave(&asic->lock, flags);
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 }
622 spin_unlock_irqrestore(&asic->lock, flags);
Philipp Zabele956a2a2009-06-05 18:31:02 +0200623}
624
625static 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
632 spin_lock_irqsave(&asic->lock, flags);
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 }
638 spin_unlock_irqrestore(&asic->lock, flags);
639}
Samuel Ortizfa9ff4b2008-02-07 00:14:49 -0800640
Philipp Zabel9461f652009-06-15 12:10:24 +0200641/* MFD cells (SPI, PWM, LED, DS1WM, MMC) */
642static struct ds1wm_driver_data ds1wm_pdata = {
643 .active_high = 1,
Jean-François Dagenaisf607e7f2011-07-08 15:39:44 -0700644 .reset_recover_delay = 1,
Philipp Zabel9461f652009-06-15 12:10:24 +0200645};
646
647static 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 Brownfe421422010-12-11 13:00:34 +0000655 .end = ASIC3_IRQ_OWM,
Philipp Zabel9461f652009-06-15 12:10:24 +0200656 .flags = IORESOURCE_IRQ | IORESOURCE_IRQ_HIGHEDGE,
657 },
658};
659
660static 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]);
668 msleep(1);
669
670 /* Reset and enable DS1WM */
671 asic3_set_register(asic, ASIC3_OFFSET(EXTCF, RESET),
672 ASIC3_EXTCF_OWM_RESET, 1);
673 msleep(1);
674 asic3_set_register(asic, ASIC3_OFFSET(EXTCF, RESET),
675 ASIC3_EXTCF_OWM_RESET, 0);
676 msleep(1);
677 asic3_set_register(asic, ASIC3_OFFSET(EXTCF, SELECT),
678 ASIC3_EXTCF_OWM_EN, 1);
679 msleep(1);
680
681 return 0;
682}
683
684static 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 Uytterhoeven5ac98552013-11-18 14:33:06 +0100698static const struct mfd_cell asic3_cell_ds1wm = {
Philipp Zabel9461f652009-06-15 12:10:24 +0200699 .name = "ds1wm",
700 .enable = ds1wm_enable,
701 .disable = ds1wm_disable,
Samuel Ortiz121ea572011-04-06 11:41:03 +0200702 .platform_data = &ds1wm_pdata,
703 .pdata_size = sizeof(ds1wm_pdata),
Philipp Zabel9461f652009-06-15 12:10:24 +0200704 .num_resources = ARRAY_SIZE(ds1wm_resources),
705 .resources = ds1wm_resources,
706};
707
Ian Molton64e88672010-01-06 13:51:48 +0100708static 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
715static 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 Zabel09f05ce2009-06-15 12:10:25 +0200722static struct tmio_mmc_data asic3_mmc_data = {
Ian Molton64e88672010-01-06 13:51:48 +0100723 .hclk = 24576000,
724 .set_pwr = asic3_mmc_pwr,
725 .set_clk_div = asic3_mmc_clk_div,
Philipp Zabel09f05ce2009-06-15 12:10:25 +0200726};
727
728static struct resource asic3_mmc_resources[] = {
729 {
730 .start = ASIC3_SD_CTRL_BASE,
731 .end = ASIC3_SD_CTRL_BASE + 0x3ff,
732 .flags = IORESOURCE_MEM,
733 },
734 {
Philipp Zabel09f05ce2009-06-15 12:10:25 +0200735 .start = 0,
736 .end = 0,
737 .flags = IORESOURCE_IRQ,
738 },
739};
740
741static int asic3_mmc_enable(struct platform_device *pdev)
742{
743 struct asic3 *asic = dev_get_drvdata(pdev->dev.parent);
744
745 /* Not sure if it must be done bit by bit, but leaving as-is */
746 asic3_set_register(asic, ASIC3_OFFSET(SDHWCTRL, SDCONF),
747 ASIC3_SDHWCTRL_LEVCD, 1);
748 asic3_set_register(asic, ASIC3_OFFSET(SDHWCTRL, SDCONF),
749 ASIC3_SDHWCTRL_LEVWP, 1);
750 asic3_set_register(asic, ASIC3_OFFSET(SDHWCTRL, SDCONF),
751 ASIC3_SDHWCTRL_SUSPEND, 0);
752 asic3_set_register(asic, ASIC3_OFFSET(SDHWCTRL, SDCONF),
753 ASIC3_SDHWCTRL_PCLR, 0);
754
755 asic3_clk_enable(asic, &asic->clocks[ASIC3_CLOCK_EX0]);
756 /* CLK32 used for card detection and for interruption detection
757 * when HCLK is stopped.
758 */
759 asic3_clk_enable(asic, &asic->clocks[ASIC3_CLOCK_EX1]);
760 msleep(1);
761
762 /* HCLK 24.576 MHz, BCLK 12.288 MHz: */
763 asic3_write_register(asic, ASIC3_OFFSET(CLOCK, SEL),
764 CLOCK_SEL_CX | CLOCK_SEL_SD_HCLK_SEL);
765
766 asic3_clk_enable(asic, &asic->clocks[ASIC3_CLOCK_SD_HOST]);
767 asic3_clk_enable(asic, &asic->clocks[ASIC3_CLOCK_SD_BUS]);
768 msleep(1);
769
770 asic3_set_register(asic, ASIC3_OFFSET(EXTCF, SELECT),
771 ASIC3_EXTCF_SD_MEM_ENABLE, 1);
772
773 /* Enable SD card slot 3.3V power supply */
774 asic3_set_register(asic, ASIC3_OFFSET(SDHWCTRL, SDCONF),
775 ASIC3_SDHWCTRL_SDPWR, 1);
776
Ian Molton64e88672010-01-06 13:51:48 +0100777 /* ASIC3_SD_CTRL_BASE assumes 32-bit addressing, TMIO is 16-bit */
778 tmio_core_mmc_enable(asic->tmio_cnf, 1 - asic->bus_shift,
779 ASIC3_SD_CTRL_BASE >> 1);
780
Philipp Zabel09f05ce2009-06-15 12:10:25 +0200781 return 0;
782}
783
784static int asic3_mmc_disable(struct platform_device *pdev)
785{
786 struct asic3 *asic = dev_get_drvdata(pdev->dev.parent);
787
788 /* Put in suspend mode */
789 asic3_set_register(asic, ASIC3_OFFSET(SDHWCTRL, SDCONF),
790 ASIC3_SDHWCTRL_SUSPEND, 1);
791
792 /* Disable clocks */
793 asic3_clk_disable(asic, &asic->clocks[ASIC3_CLOCK_SD_HOST]);
794 asic3_clk_disable(asic, &asic->clocks[ASIC3_CLOCK_SD_BUS]);
795 asic3_clk_disable(asic, &asic->clocks[ASIC3_CLOCK_EX0]);
796 asic3_clk_disable(asic, &asic->clocks[ASIC3_CLOCK_EX1]);
797 return 0;
798}
799
Geert Uytterhoeven5ac98552013-11-18 14:33:06 +0100800static const struct mfd_cell asic3_cell_mmc = {
Philipp Zabel09f05ce2009-06-15 12:10:25 +0200801 .name = "tmio-mmc",
802 .enable = asic3_mmc_enable,
803 .disable = asic3_mmc_disable,
Paul Parsons3c6e3652011-08-09 16:27:24 +0000804 .suspend = asic3_mmc_disable,
805 .resume = asic3_mmc_enable,
Samuel Ortizec719742011-04-06 11:38:14 +0200806 .platform_data = &asic3_mmc_data,
807 .pdata_size = sizeof(asic3_mmc_data),
Philipp Zabel09f05ce2009-06-15 12:10:25 +0200808 .num_resources = ARRAY_SIZE(asic3_mmc_resources),
809 .resources = asic3_mmc_resources,
810};
811
Paul Parsons13ca4f62011-05-13 18:53:03 +0000812static const int clock_ledn[ASIC3_NUM_LEDS] = {
813 [0] = ASIC3_CLOCK_LED0,
814 [1] = ASIC3_CLOCK_LED1,
815 [2] = ASIC3_CLOCK_LED2,
816};
817
818static int asic3_leds_enable(struct platform_device *pdev)
819{
820 const struct mfd_cell *cell = mfd_get_cell(pdev);
821 struct asic3 *asic = dev_get_drvdata(pdev->dev.parent);
822
823 asic3_clk_enable(asic, &asic->clocks[clock_ledn[cell->id]]);
824
825 return 0;
826}
827
828static int asic3_leds_disable(struct platform_device *pdev)
829{
830 const struct mfd_cell *cell = mfd_get_cell(pdev);
831 struct asic3 *asic = dev_get_drvdata(pdev->dev.parent);
832
833 asic3_clk_disable(asic, &asic->clocks[clock_ledn[cell->id]]);
834
835 return 0;
836}
837
Paul Parsonse0b13b52011-08-09 16:27:33 +0000838static int asic3_leds_suspend(struct platform_device *pdev)
839{
840 const struct mfd_cell *cell = mfd_get_cell(pdev);
841 struct asic3 *asic = dev_get_drvdata(pdev->dev.parent);
842
843 while (asic3_gpio_get(&asic->gpio, ASIC3_GPIO(C, cell->id)) != 0)
844 msleep(1);
845
846 asic3_clk_disable(asic, &asic->clocks[clock_ledn[cell->id]]);
847
848 return 0;
849}
850
Paul Parsons13ca4f62011-05-13 18:53:03 +0000851static struct mfd_cell asic3_cell_leds[ASIC3_NUM_LEDS] = {
852 [0] = {
853 .name = "leds-asic3",
854 .id = 0,
855 .enable = asic3_leds_enable,
856 .disable = asic3_leds_disable,
Paul Parsonse0b13b52011-08-09 16:27:33 +0000857 .suspend = asic3_leds_suspend,
858 .resume = asic3_leds_enable,
Paul Parsons13ca4f62011-05-13 18:53:03 +0000859 },
860 [1] = {
861 .name = "leds-asic3",
862 .id = 1,
863 .enable = asic3_leds_enable,
864 .disable = asic3_leds_disable,
Paul Parsonse0b13b52011-08-09 16:27:33 +0000865 .suspend = asic3_leds_suspend,
866 .resume = asic3_leds_enable,
Paul Parsons13ca4f62011-05-13 18:53:03 +0000867 },
868 [2] = {
869 .name = "leds-asic3",
870 .id = 2,
871 .enable = asic3_leds_enable,
872 .disable = asic3_leds_disable,
Paul Parsonse0b13b52011-08-09 16:27:33 +0000873 .suspend = asic3_leds_suspend,
874 .resume = asic3_leds_enable,
Paul Parsons13ca4f62011-05-13 18:53:03 +0000875 },
876};
877
Philipp Zabel9461f652009-06-15 12:10:24 +0200878static int __init asic3_mfd_probe(struct platform_device *pdev,
Paul Parsons13ca4f62011-05-13 18:53:03 +0000879 struct asic3_platform_data *pdata,
Philipp Zabel9461f652009-06-15 12:10:24 +0200880 struct resource *mem)
881{
882 struct asic3 *asic = platform_get_drvdata(pdev);
Philipp Zabel09f05ce2009-06-15 12:10:25 +0200883 struct resource *mem_sdio;
884 int irq, ret;
885
886 mem_sdio = platform_get_resource(pdev, IORESOURCE_MEM, 1);
887 if (!mem_sdio)
888 dev_dbg(asic->dev, "no SDIO MEM resource\n");
889
890 irq = platform_get_irq(pdev, 1);
891 if (irq < 0)
892 dev_dbg(asic->dev, "no SDIO IRQ resource\n");
Philipp Zabel9461f652009-06-15 12:10:24 +0200893
894 /* DS1WM */
895 asic3_set_register(asic, ASIC3_OFFSET(EXTCF, SELECT),
896 ASIC3_EXTCF_OWM_SMB, 0);
897
898 ds1wm_resources[0].start >>= asic->bus_shift;
899 ds1wm_resources[0].end >>= asic->bus_shift;
900
Philipp Zabel09f05ce2009-06-15 12:10:25 +0200901 /* MMC */
Sachin Kamat44b61a92014-06-10 15:30:34 +0530902 if (mem_sdio) {
903 asic->tmio_cnf = ioremap((ASIC3_SD_CONFIG_BASE >> asic->bus_shift) +
Paul Parsons74e32d12011-05-15 14:13:11 +0000904 mem_sdio->start,
905 ASIC3_SD_CONFIG_SIZE >> asic->bus_shift);
Sachin Kamat44b61a92014-06-10 15:30:34 +0530906 if (!asic->tmio_cnf) {
907 ret = -ENOMEM;
908 dev_dbg(asic->dev, "Couldn't ioremap SD_CONFIG\n");
909 goto out;
910 }
Ian Molton64e88672010-01-06 13:51:48 +0100911 }
Philipp Zabel09f05ce2009-06-15 12:10:25 +0200912 asic3_mmc_resources[0].start >>= asic->bus_shift;
913 asic3_mmc_resources[0].end >>= asic->bus_shift;
Philipp Zabel09f05ce2009-06-15 12:10:25 +0200914
Paul Parsons4f304242012-04-09 13:18:31 +0100915 if (pdata->clock_rate) {
916 ds1wm_pdata.clock_rate = pdata->clock_rate;
917 ret = mfd_add_devices(&pdev->dev, pdev->id,
Mark Brown0848c942012-09-11 15:16:36 +0800918 &asic3_cell_ds1wm, 1, mem, asic->irq_base, NULL);
Paul Parsons4f304242012-04-09 13:18:31 +0100919 if (ret < 0)
920 goto out;
921 }
Philipp Zabel9461f652009-06-15 12:10:24 +0200922
Paul Parsons13ca4f62011-05-13 18:53:03 +0000923 if (mem_sdio && (irq >= 0)) {
Philipp Zabel09f05ce2009-06-15 12:10:25 +0200924 ret = mfd_add_devices(&pdev->dev, pdev->id,
Mark Brown0848c942012-09-11 15:16:36 +0800925 &asic3_cell_mmc, 1, mem_sdio, irq, NULL);
Paul Parsons13ca4f62011-05-13 18:53:03 +0000926 if (ret < 0)
927 goto out;
928 }
929
Arnd Bergmannb2f0fa82012-08-04 06:20:49 +0000930 ret = 0;
Paul Parsons13ca4f62011-05-13 18:53:03 +0000931 if (pdata->leds) {
932 int i;
933
934 for (i = 0; i < ASIC3_NUM_LEDS; ++i) {
935 asic3_cell_leds[i].platform_data = &pdata->leds[i];
936 asic3_cell_leds[i].pdata_size = sizeof(pdata->leds[i]);
937 }
938 ret = mfd_add_devices(&pdev->dev, 0,
Mark Brown0848c942012-09-11 15:16:36 +0800939 asic3_cell_leds, ASIC3_NUM_LEDS, NULL, 0, NULL);
Paul Parsons13ca4f62011-05-13 18:53:03 +0000940 }
Philipp Zabel09f05ce2009-06-15 12:10:25 +0200941
942 out:
Philipp Zabel9461f652009-06-15 12:10:24 +0200943 return ret;
944}
945
946static void asic3_mfd_remove(struct platform_device *pdev)
947{
Ian Molton64e88672010-01-06 13:51:48 +0100948 struct asic3 *asic = platform_get_drvdata(pdev);
949
Philipp Zabel9461f652009-06-15 12:10:24 +0200950 mfd_remove_devices(&pdev->dev);
Ian Molton64e88672010-01-06 13:51:48 +0100951 iounmap(asic->tmio_cnf);
Philipp Zabel9461f652009-06-15 12:10:24 +0200952}
953
Samuel Ortizfa9ff4b2008-02-07 00:14:49 -0800954/* Core */
Philipp Zabel065032f2008-06-21 00:51:38 +0200955static int __init asic3_probe(struct platform_device *pdev)
Samuel Ortizfa9ff4b2008-02-07 00:14:49 -0800956{
Jingoo Han334a41c2013-07-30 17:10:05 +0900957 struct asic3_platform_data *pdata = dev_get_platdata(&pdev->dev);
Samuel Ortizfa9ff4b2008-02-07 00:14:49 -0800958 struct asic3 *asic;
959 struct resource *mem;
960 unsigned long clksel;
Samuel Ortiz6f2384c2008-06-20 11:02:19 +0200961 int ret = 0;
Samuel Ortizfa9ff4b2008-02-07 00:14:49 -0800962
Lee Jones1cee87f2013-05-23 16:25:09 +0100963 asic = devm_kzalloc(&pdev->dev,
964 sizeof(struct asic3), GFP_KERNEL);
Samuel Ortiz6f2384c2008-06-20 11:02:19 +0200965 if (asic == NULL) {
966 printk(KERN_ERR "kzalloc failed\n");
Samuel Ortizfa9ff4b2008-02-07 00:14:49 -0800967 return -ENOMEM;
Samuel Ortiz6f2384c2008-06-20 11:02:19 +0200968 }
Samuel Ortizfa9ff4b2008-02-07 00:14:49 -0800969
970 spin_lock_init(&asic->lock);
971 platform_set_drvdata(pdev, asic);
972 asic->dev = &pdev->dev;
973
974 mem = platform_get_resource(pdev, IORESOURCE_MEM, 0);
975 if (!mem) {
Samuel Ortiz24f4f2e2008-06-20 11:11:19 +0200976 dev_err(asic->dev, "no MEM resource\n");
Lee Jones1cee87f2013-05-23 16:25:09 +0100977 return -ENOMEM;
Samuel Ortizfa9ff4b2008-02-07 00:14:49 -0800978 }
979
Philipp Zabelbe584bd2009-06-05 18:31:04 +0200980 asic->mapping = ioremap(mem->start, resource_size(mem));
Samuel Ortizfa9ff4b2008-02-07 00:14:49 -0800981 if (!asic->mapping) {
Samuel Ortiz24f4f2e2008-06-20 11:11:19 +0200982 dev_err(asic->dev, "Couldn't ioremap\n");
Lee Jones1cee87f2013-05-23 16:25:09 +0100983 return -ENOMEM;
Samuel Ortizfa9ff4b2008-02-07 00:14:49 -0800984 }
985
986 asic->irq_base = pdata->irq_base;
987
Philipp Zabel99cdb0c2008-07-10 02:17:02 +0200988 /* calculate bus shift from mem resource */
Philipp Zabelbe584bd2009-06-05 18:31:04 +0200989 asic->bus_shift = 2 - (resource_size(mem) >> 12);
Samuel Ortizfa9ff4b2008-02-07 00:14:49 -0800990
991 clksel = 0;
992 asic3_write_register(asic, ASIC3_OFFSET(CLOCK, SEL), clksel);
993
994 ret = asic3_irq_probe(pdev);
995 if (ret < 0) {
Samuel Ortiz24f4f2e2008-06-20 11:11:19 +0200996 dev_err(asic->dev, "Couldn't probe IRQs\n");
Samuel Ortiz6f2384c2008-06-20 11:02:19 +0200997 goto out_unmap;
Samuel Ortizfa9ff4b2008-02-07 00:14:49 -0800998 }
Samuel Ortiz6f2384c2008-06-20 11:02:19 +0200999
Paul Parsonsd8e4a882011-08-09 16:27:50 +00001000 asic->gpio.label = "asic3";
Samuel Ortiz6f2384c2008-06-20 11:02:19 +02001001 asic->gpio.base = pdata->gpio_base;
1002 asic->gpio.ngpio = ASIC3_NUM_GPIOS;
1003 asic->gpio.get = asic3_gpio_get;
1004 asic->gpio.set = asic3_gpio_set;
1005 asic->gpio.direction_input = asic3_gpio_direction_input;
1006 asic->gpio.direction_output = asic3_gpio_direction_output;
Paul Parsons450b1152012-01-31 01:18:35 +00001007 asic->gpio.to_irq = asic3_gpio_to_irq;
Samuel Ortiz6f2384c2008-06-20 11:02:19 +02001008
Samuel Ortiz3b26bf12008-06-20 11:09:51 +02001009 ret = asic3_gpio_probe(pdev,
1010 pdata->gpio_config,
1011 pdata->gpio_config_num);
Samuel Ortiz6f2384c2008-06-20 11:02:19 +02001012 if (ret < 0) {
Samuel Ortiz24f4f2e2008-06-20 11:11:19 +02001013 dev_err(asic->dev, "GPIO probe failed\n");
Samuel Ortiz6f2384c2008-06-20 11:02:19 +02001014 goto out_irq;
1015 }
Samuel Ortizfa9ff4b2008-02-07 00:14:49 -08001016
Philipp Zabele956a2a2009-06-05 18:31:02 +02001017 /* Making a per-device copy is only needed for the
1018 * theoretical case of multiple ASIC3s on one board:
1019 */
1020 memcpy(asic->clocks, asic3_clk_init, sizeof(asic3_clk_init));
1021
Paul Parsons13ca4f62011-05-13 18:53:03 +00001022 asic3_mfd_probe(pdev, pdata, mem);
Philipp Zabel9461f652009-06-15 12:10:24 +02001023
Paul Parsonsf22a9c62012-04-05 17:45:04 +01001024 asic3_set_register(asic, ASIC3_OFFSET(EXTCF, SELECT),
1025 (ASIC3_EXTCF_CF0_BUF_EN|ASIC3_EXTCF_CF0_PWAIT_EN), 1);
1026
Samuel Ortiz24f4f2e2008-06-20 11:11:19 +02001027 dev_info(asic->dev, "ASIC3 Core driver\n");
Samuel Ortizfa9ff4b2008-02-07 00:14:49 -08001028
1029 return 0;
1030
Samuel Ortiz6f2384c2008-06-20 11:02:19 +02001031 out_irq:
1032 asic3_irq_remove(pdev);
1033
1034 out_unmap:
Samuel Ortizfa9ff4b2008-02-07 00:14:49 -08001035 iounmap(asic->mapping);
Samuel Ortiz6f2384c2008-06-20 11:02:19 +02001036
Samuel Ortizfa9ff4b2008-02-07 00:14:49 -08001037 return ret;
1038}
1039
Bill Pemberton4740f732012-11-19 13:26:01 -05001040static int asic3_remove(struct platform_device *pdev)
Samuel Ortizfa9ff4b2008-02-07 00:14:49 -08001041{
Samuel Ortiz6f2384c2008-06-20 11:02:19 +02001042 int ret;
Samuel Ortizfa9ff4b2008-02-07 00:14:49 -08001043 struct asic3 *asic = platform_get_drvdata(pdev);
1044
Paul Parsonsf22a9c62012-04-05 17:45:04 +01001045 asic3_set_register(asic, ASIC3_OFFSET(EXTCF, SELECT),
1046 (ASIC3_EXTCF_CF0_BUF_EN|ASIC3_EXTCF_CF0_PWAIT_EN), 0);
1047
Philipp Zabel9461f652009-06-15 12:10:24 +02001048 asic3_mfd_remove(pdev);
1049
Samuel Ortiz6f2384c2008-06-20 11:02:19 +02001050 ret = asic3_gpio_remove(pdev);
1051 if (ret < 0)
1052 return ret;
Samuel Ortizfa9ff4b2008-02-07 00:14:49 -08001053 asic3_irq_remove(pdev);
1054
1055 asic3_write_register(asic, ASIC3_OFFSET(CLOCK, SEL), 0);
1056
1057 iounmap(asic->mapping);
1058
Samuel Ortizfa9ff4b2008-02-07 00:14:49 -08001059 return 0;
1060}
1061
1062static void asic3_shutdown(struct platform_device *pdev)
1063{
1064}
1065
1066static struct platform_driver asic3_device_driver = {
1067 .driver = {
1068 .name = "asic3",
1069 },
Bill Pemberton84449212012-11-19 13:20:24 -05001070 .remove = asic3_remove,
Samuel Ortizfa9ff4b2008-02-07 00:14:49 -08001071 .shutdown = asic3_shutdown,
1072};
1073
1074static int __init asic3_init(void)
1075{
1076 int retval = 0;
Philipp Zabel065032f2008-06-21 00:51:38 +02001077 retval = platform_driver_probe(&asic3_device_driver, asic3_probe);
Samuel Ortizfa9ff4b2008-02-07 00:14:49 -08001078 return retval;
1079}
1080
1081subsys_initcall(asic3_init);