blob: c71ae09430c5c580e7f0cc5bbd0d3610fd8b5048 [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>
Samuel Ortizfa9ff4b2008-02-07 00:14:49 -080023#include <linux/io.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090024#include <linux/slab.h>
Samuel Ortizfa9ff4b2008-02-07 00:14:49 -080025#include <linux/spinlock.h>
26#include <linux/platform_device.h>
27
28#include <linux/mfd/asic3.h>
Philipp Zabel9461f652009-06-15 12:10:24 +020029#include <linux/mfd/core.h>
30#include <linux/mfd/ds1wm.h>
Philipp Zabel09f05ce2009-06-15 12:10:25 +020031#include <linux/mfd/tmio.h>
Samuel Ortizfa9ff4b2008-02-07 00:14:49 -080032
Philipp Zabele956a2a2009-06-05 18:31:02 +020033enum {
34 ASIC3_CLOCK_SPI,
35 ASIC3_CLOCK_OWM,
36 ASIC3_CLOCK_PWM0,
37 ASIC3_CLOCK_PWM1,
38 ASIC3_CLOCK_LED0,
39 ASIC3_CLOCK_LED1,
40 ASIC3_CLOCK_LED2,
41 ASIC3_CLOCK_SD_HOST,
42 ASIC3_CLOCK_SD_BUS,
43 ASIC3_CLOCK_SMBUS,
44 ASIC3_CLOCK_EX0,
45 ASIC3_CLOCK_EX1,
46};
47
48struct asic3_clk {
49 int enabled;
50 unsigned int cdex;
51 unsigned long rate;
52};
53
54#define INIT_CDEX(_name, _rate) \
55 [ASIC3_CLOCK_##_name] = { \
56 .cdex = CLOCK_CDEX_##_name, \
57 .rate = _rate, \
58 }
59
Mark Brown59f2ad22010-12-11 12:59:35 +000060static struct asic3_clk asic3_clk_init[] __initdata = {
Philipp Zabele956a2a2009-06-05 18:31:02 +020061 INIT_CDEX(SPI, 0),
62 INIT_CDEX(OWM, 5000000),
63 INIT_CDEX(PWM0, 0),
64 INIT_CDEX(PWM1, 0),
65 INIT_CDEX(LED0, 0),
66 INIT_CDEX(LED1, 0),
67 INIT_CDEX(LED2, 0),
68 INIT_CDEX(SD_HOST, 24576000),
69 INIT_CDEX(SD_BUS, 12288000),
70 INIT_CDEX(SMBUS, 0),
71 INIT_CDEX(EX0, 32768),
72 INIT_CDEX(EX1, 24576000),
73};
74
Samuel Ortiz6f2384c2008-06-20 11:02:19 +020075struct asic3 {
76 void __iomem *mapping;
77 unsigned int bus_shift;
78 unsigned int irq_nr;
79 unsigned int irq_base;
80 spinlock_t lock;
81 u16 irq_bothedge[4];
82 struct gpio_chip gpio;
83 struct device *dev;
Ian Molton64e88672010-01-06 13:51:48 +010084 void __iomem *tmio_cnf;
Philipp Zabele956a2a2009-06-05 18:31:02 +020085
86 struct asic3_clk clocks[ARRAY_SIZE(asic3_clk_init)];
Samuel Ortiz6f2384c2008-06-20 11:02:19 +020087};
88
89static int asic3_gpio_get(struct gpio_chip *chip, unsigned offset);
90
Paul Parsons13ca4f62011-05-13 18:53:03 +000091void asic3_write_register(struct asic3 *asic, unsigned int reg, u32 value)
Samuel Ortizfa9ff4b2008-02-07 00:14:49 -080092{
Al Virob32661e2008-03-29 03:10:58 +000093 iowrite16(value, asic->mapping +
Samuel Ortizfa9ff4b2008-02-07 00:14:49 -080094 (reg >> asic->bus_shift));
95}
Paul Parsons13ca4f62011-05-13 18:53:03 +000096EXPORT_SYMBOL_GPL(asic3_write_register);
Samuel Ortizfa9ff4b2008-02-07 00:14:49 -080097
Paul Parsons13ca4f62011-05-13 18:53:03 +000098u32 asic3_read_register(struct asic3 *asic, unsigned int reg)
Samuel Ortizfa9ff4b2008-02-07 00:14:49 -080099{
Al Virob32661e2008-03-29 03:10:58 +0000100 return ioread16(asic->mapping +
Samuel Ortizfa9ff4b2008-02-07 00:14:49 -0800101 (reg >> asic->bus_shift));
102}
Paul Parsons13ca4f62011-05-13 18:53:03 +0000103EXPORT_SYMBOL_GPL(asic3_read_register);
Samuel Ortizfa9ff4b2008-02-07 00:14:49 -0800104
Mark Brown59f2ad22010-12-11 12:59:35 +0000105static void asic3_set_register(struct asic3 *asic, u32 reg, u32 bits, bool set)
Philipp Zabel6483c1b2009-06-05 18:31:01 +0200106{
107 unsigned long flags;
108 u32 val;
109
110 spin_lock_irqsave(&asic->lock, flags);
111 val = asic3_read_register(asic, reg);
112 if (set)
113 val |= bits;
114 else
115 val &= ~bits;
116 asic3_write_register(asic, reg, val);
117 spin_unlock_irqrestore(&asic->lock, flags);
118}
119
Samuel Ortizfa9ff4b2008-02-07 00:14:49 -0800120/* IRQs */
121#define MAX_ASIC_ISR_LOOPS 20
Samuel Ortiz3b8139f2008-06-20 11:12:21 +0200122#define ASIC3_GPIO_BASE_INCR \
123 (ASIC3_GPIO_B_BASE - ASIC3_GPIO_A_BASE)
Samuel Ortizfa9ff4b2008-02-07 00:14:49 -0800124
125static void asic3_irq_flip_edge(struct asic3 *asic,
126 u32 base, int bit)
127{
128 u16 edge;
129 unsigned long flags;
130
131 spin_lock_irqsave(&asic->lock, flags);
132 edge = asic3_read_register(asic,
Samuel Ortiz3b8139f2008-06-20 11:12:21 +0200133 base + ASIC3_GPIO_EDGE_TRIGGER);
Samuel Ortizfa9ff4b2008-02-07 00:14:49 -0800134 edge ^= bit;
135 asic3_write_register(asic,
Samuel Ortiz3b8139f2008-06-20 11:12:21 +0200136 base + ASIC3_GPIO_EDGE_TRIGGER, edge);
Samuel Ortizfa9ff4b2008-02-07 00:14:49 -0800137 spin_unlock_irqrestore(&asic->lock, flags);
138}
139
140static void asic3_irq_demux(unsigned int irq, struct irq_desc *desc)
141{
Thomas Gleixner52a7d602011-03-25 11:12:26 +0000142 struct asic3 *asic = irq_desc_get_handler_data(desc);
143 struct irq_data *data = irq_desc_get_irq_data(desc);
Samuel Ortizfa9ff4b2008-02-07 00:14:49 -0800144 int iter, i;
145 unsigned long flags;
Samuel Ortizfa9ff4b2008-02-07 00:14:49 -0800146
Axel Lina09aee82011-04-14 22:43:47 +0800147 data->chip->irq_ack(data);
Samuel Ortizfa9ff4b2008-02-07 00:14:49 -0800148
149 for (iter = 0 ; iter < MAX_ASIC_ISR_LOOPS; iter++) {
150 u32 status;
151 int bank;
152
153 spin_lock_irqsave(&asic->lock, flags);
154 status = asic3_read_register(asic,
Samuel Ortiz3b8139f2008-06-20 11:12:21 +0200155 ASIC3_OFFSET(INTR, P_INT_STAT));
Samuel Ortizfa9ff4b2008-02-07 00:14:49 -0800156 spin_unlock_irqrestore(&asic->lock, flags);
157
158 /* Check all ten register bits */
159 if ((status & 0x3ff) == 0)
160 break;
161
162 /* Handle GPIO IRQs */
163 for (bank = 0; bank < ASIC3_NUM_GPIO_BANKS; bank++) {
164 if (status & (1 << bank)) {
165 unsigned long base, istat;
166
Samuel Ortiz3b8139f2008-06-20 11:12:21 +0200167 base = ASIC3_GPIO_A_BASE
168 + bank * ASIC3_GPIO_BASE_INCR;
Samuel Ortizfa9ff4b2008-02-07 00:14:49 -0800169
170 spin_lock_irqsave(&asic->lock, flags);
171 istat = asic3_read_register(asic,
172 base +
Samuel Ortiz3b8139f2008-06-20 11:12:21 +0200173 ASIC3_GPIO_INT_STATUS);
Samuel Ortizfa9ff4b2008-02-07 00:14:49 -0800174 /* Clearing IntStatus */
175 asic3_write_register(asic,
176 base +
Samuel Ortiz3b8139f2008-06-20 11:12:21 +0200177 ASIC3_GPIO_INT_STATUS, 0);
Samuel Ortizfa9ff4b2008-02-07 00:14:49 -0800178 spin_unlock_irqrestore(&asic->lock, flags);
179
180 for (i = 0; i < ASIC3_GPIOS_PER_BANK; i++) {
181 int bit = (1 << i);
182 unsigned int irqnr;
183
184 if (!(istat & bit))
185 continue;
186
187 irqnr = asic->irq_base +
188 (ASIC3_GPIOS_PER_BANK * bank)
189 + i;
Thomas Gleixner52a7d602011-03-25 11:12:26 +0000190 generic_handle_irq(irqnr);
Samuel Ortizfa9ff4b2008-02-07 00:14:49 -0800191 if (asic->irq_bothedge[bank] & bit)
192 asic3_irq_flip_edge(asic, base,
193 bit);
194 }
195 }
196 }
197
198 /* Handle remaining IRQs in the status register */
199 for (i = ASIC3_NUM_GPIOS; i < ASIC3_NR_IRQS; i++) {
200 /* They start at bit 4 and go up */
Thomas Gleixner52a7d602011-03-25 11:12:26 +0000201 if (status & (1 << (i - ASIC3_NUM_GPIOS + 4)))
202 generic_handle_irq(asic->irq_base + i);
Samuel Ortizfa9ff4b2008-02-07 00:14:49 -0800203 }
204 }
205
206 if (iter >= MAX_ASIC_ISR_LOOPS)
Samuel Ortiz24f4f2e2008-06-20 11:11:19 +0200207 dev_err(asic->dev, "interrupt processing overrun\n");
Samuel Ortizfa9ff4b2008-02-07 00:14:49 -0800208}
209
210static inline int asic3_irq_to_bank(struct asic3 *asic, int irq)
211{
212 int n;
213
214 n = (irq - asic->irq_base) >> 4;
215
Samuel Ortiz3b8139f2008-06-20 11:12:21 +0200216 return (n * (ASIC3_GPIO_B_BASE - ASIC3_GPIO_A_BASE));
Samuel Ortizfa9ff4b2008-02-07 00:14:49 -0800217}
218
219static inline int asic3_irq_to_index(struct asic3 *asic, int irq)
220{
221 return (irq - asic->irq_base) & 0xf;
222}
223
Mark Brown0f76aae2010-12-11 13:08:57 +0000224static void asic3_mask_gpio_irq(struct irq_data *data)
Samuel Ortizfa9ff4b2008-02-07 00:14:49 -0800225{
Mark Brown0f76aae2010-12-11 13:08:57 +0000226 struct asic3 *asic = irq_data_get_irq_chip_data(data);
Samuel Ortizfa9ff4b2008-02-07 00:14:49 -0800227 u32 val, bank, index;
228 unsigned long flags;
229
Mark Brown0f76aae2010-12-11 13:08:57 +0000230 bank = asic3_irq_to_bank(asic, data->irq);
231 index = asic3_irq_to_index(asic, data->irq);
Samuel Ortizfa9ff4b2008-02-07 00:14:49 -0800232
233 spin_lock_irqsave(&asic->lock, flags);
Samuel Ortiz3b8139f2008-06-20 11:12:21 +0200234 val = asic3_read_register(asic, bank + ASIC3_GPIO_MASK);
Samuel Ortizfa9ff4b2008-02-07 00:14:49 -0800235 val |= 1 << index;
Samuel Ortiz3b8139f2008-06-20 11:12:21 +0200236 asic3_write_register(asic, bank + ASIC3_GPIO_MASK, val);
Samuel Ortizfa9ff4b2008-02-07 00:14:49 -0800237 spin_unlock_irqrestore(&asic->lock, flags);
238}
239
Mark Brown0f76aae2010-12-11 13:08:57 +0000240static void asic3_mask_irq(struct irq_data *data)
Samuel Ortizfa9ff4b2008-02-07 00:14:49 -0800241{
Mark Brown0f76aae2010-12-11 13:08:57 +0000242 struct asic3 *asic = irq_data_get_irq_chip_data(data);
Samuel Ortizfa9ff4b2008-02-07 00:14:49 -0800243 int regval;
244 unsigned long flags;
245
246 spin_lock_irqsave(&asic->lock, flags);
247 regval = asic3_read_register(asic,
Samuel Ortiz3b8139f2008-06-20 11:12:21 +0200248 ASIC3_INTR_BASE +
249 ASIC3_INTR_INT_MASK);
Samuel Ortizfa9ff4b2008-02-07 00:14:49 -0800250
251 regval &= ~(ASIC3_INTMASK_MASK0 <<
Mark Brown0f76aae2010-12-11 13:08:57 +0000252 (data->irq - (asic->irq_base + ASIC3_NUM_GPIOS)));
Samuel Ortizfa9ff4b2008-02-07 00:14:49 -0800253
254 asic3_write_register(asic,
Samuel Ortiz3b8139f2008-06-20 11:12:21 +0200255 ASIC3_INTR_BASE +
256 ASIC3_INTR_INT_MASK,
Samuel Ortizfa9ff4b2008-02-07 00:14:49 -0800257 regval);
258 spin_unlock_irqrestore(&asic->lock, flags);
259}
260
Mark Brown0f76aae2010-12-11 13:08:57 +0000261static void asic3_unmask_gpio_irq(struct irq_data *data)
Samuel Ortizfa9ff4b2008-02-07 00:14:49 -0800262{
Mark Brown0f76aae2010-12-11 13:08:57 +0000263 struct asic3 *asic = irq_data_get_irq_chip_data(data);
Samuel Ortizfa9ff4b2008-02-07 00:14:49 -0800264 u32 val, bank, index;
265 unsigned long flags;
266
Mark Brown0f76aae2010-12-11 13:08:57 +0000267 bank = asic3_irq_to_bank(asic, data->irq);
268 index = asic3_irq_to_index(asic, data->irq);
Samuel Ortizfa9ff4b2008-02-07 00:14:49 -0800269
270 spin_lock_irqsave(&asic->lock, flags);
Samuel Ortiz3b8139f2008-06-20 11:12:21 +0200271 val = asic3_read_register(asic, bank + ASIC3_GPIO_MASK);
Samuel Ortizfa9ff4b2008-02-07 00:14:49 -0800272 val &= ~(1 << index);
Samuel Ortiz3b8139f2008-06-20 11:12:21 +0200273 asic3_write_register(asic, bank + ASIC3_GPIO_MASK, val);
Samuel Ortizfa9ff4b2008-02-07 00:14:49 -0800274 spin_unlock_irqrestore(&asic->lock, flags);
275}
276
Mark Brown0f76aae2010-12-11 13:08:57 +0000277static void asic3_unmask_irq(struct irq_data *data)
Samuel Ortizfa9ff4b2008-02-07 00:14:49 -0800278{
Mark Brown0f76aae2010-12-11 13:08:57 +0000279 struct asic3 *asic = irq_data_get_irq_chip_data(data);
Samuel Ortizfa9ff4b2008-02-07 00:14:49 -0800280 int regval;
281 unsigned long flags;
282
283 spin_lock_irqsave(&asic->lock, flags);
284 regval = asic3_read_register(asic,
Samuel Ortiz3b8139f2008-06-20 11:12:21 +0200285 ASIC3_INTR_BASE +
286 ASIC3_INTR_INT_MASK);
Samuel Ortizfa9ff4b2008-02-07 00:14:49 -0800287
288 regval |= (ASIC3_INTMASK_MASK0 <<
Mark Brown0f76aae2010-12-11 13:08:57 +0000289 (data->irq - (asic->irq_base + ASIC3_NUM_GPIOS)));
Samuel Ortizfa9ff4b2008-02-07 00:14:49 -0800290
291 asic3_write_register(asic,
Samuel Ortiz3b8139f2008-06-20 11:12:21 +0200292 ASIC3_INTR_BASE +
293 ASIC3_INTR_INT_MASK,
Samuel Ortizfa9ff4b2008-02-07 00:14:49 -0800294 regval);
295 spin_unlock_irqrestore(&asic->lock, flags);
296}
297
Mark Brown0f76aae2010-12-11 13:08:57 +0000298static int asic3_gpio_irq_type(struct irq_data *data, unsigned int type)
Samuel Ortizfa9ff4b2008-02-07 00:14:49 -0800299{
Mark Brown0f76aae2010-12-11 13:08:57 +0000300 struct asic3 *asic = irq_data_get_irq_chip_data(data);
Samuel Ortizfa9ff4b2008-02-07 00:14:49 -0800301 u32 bank, index;
302 u16 trigger, level, edge, bit;
303 unsigned long flags;
304
Mark Brown0f76aae2010-12-11 13:08:57 +0000305 bank = asic3_irq_to_bank(asic, data->irq);
306 index = asic3_irq_to_index(asic, data->irq);
Samuel Ortizfa9ff4b2008-02-07 00:14:49 -0800307 bit = 1<<index;
308
309 spin_lock_irqsave(&asic->lock, flags);
310 level = asic3_read_register(asic,
Samuel Ortiz3b8139f2008-06-20 11:12:21 +0200311 bank + ASIC3_GPIO_LEVEL_TRIGGER);
Samuel Ortizfa9ff4b2008-02-07 00:14:49 -0800312 edge = asic3_read_register(asic,
Samuel Ortiz3b8139f2008-06-20 11:12:21 +0200313 bank + ASIC3_GPIO_EDGE_TRIGGER);
Samuel Ortizfa9ff4b2008-02-07 00:14:49 -0800314 trigger = asic3_read_register(asic,
Samuel Ortiz3b8139f2008-06-20 11:12:21 +0200315 bank + ASIC3_GPIO_TRIGGER_TYPE);
Mark Brown0f76aae2010-12-11 13:08:57 +0000316 asic->irq_bothedge[(data->irq - asic->irq_base) >> 4] &= ~bit;
Samuel Ortizfa9ff4b2008-02-07 00:14:49 -0800317
Dmitry Baryshkov6cab4862008-07-27 04:23:31 +0100318 if (type == IRQ_TYPE_EDGE_RISING) {
Samuel Ortizfa9ff4b2008-02-07 00:14:49 -0800319 trigger |= bit;
320 edge |= bit;
Dmitry Baryshkov6cab4862008-07-27 04:23:31 +0100321 } else if (type == IRQ_TYPE_EDGE_FALLING) {
Samuel Ortizfa9ff4b2008-02-07 00:14:49 -0800322 trigger |= bit;
323 edge &= ~bit;
Dmitry Baryshkov6cab4862008-07-27 04:23:31 +0100324 } else if (type == IRQ_TYPE_EDGE_BOTH) {
Samuel Ortizfa9ff4b2008-02-07 00:14:49 -0800325 trigger |= bit;
Mark Brown0f76aae2010-12-11 13:08:57 +0000326 if (asic3_gpio_get(&asic->gpio, data->irq - asic->irq_base))
Samuel Ortizfa9ff4b2008-02-07 00:14:49 -0800327 edge &= ~bit;
328 else
329 edge |= bit;
Mark Brown0f76aae2010-12-11 13:08:57 +0000330 asic->irq_bothedge[(data->irq - asic->irq_base) >> 4] |= bit;
Dmitry Baryshkov6cab4862008-07-27 04:23:31 +0100331 } else if (type == IRQ_TYPE_LEVEL_LOW) {
Samuel Ortizfa9ff4b2008-02-07 00:14:49 -0800332 trigger &= ~bit;
333 level &= ~bit;
Dmitry Baryshkov6cab4862008-07-27 04:23:31 +0100334 } else if (type == IRQ_TYPE_LEVEL_HIGH) {
Samuel Ortizfa9ff4b2008-02-07 00:14:49 -0800335 trigger &= ~bit;
336 level |= bit;
337 } else {
338 /*
Dmitry Baryshkov6cab4862008-07-27 04:23:31 +0100339 * if type == IRQ_TYPE_NONE, we should mask interrupts, but
Samuel Ortizfa9ff4b2008-02-07 00:14:49 -0800340 * be careful to not unmask them if mask was also called.
341 * Probably need internal state for mask.
342 */
Samuel Ortiz24f4f2e2008-06-20 11:11:19 +0200343 dev_notice(asic->dev, "irq type not changed\n");
Samuel Ortizfa9ff4b2008-02-07 00:14:49 -0800344 }
Samuel Ortiz3b8139f2008-06-20 11:12:21 +0200345 asic3_write_register(asic, bank + ASIC3_GPIO_LEVEL_TRIGGER,
Samuel Ortizfa9ff4b2008-02-07 00:14:49 -0800346 level);
Samuel Ortiz3b8139f2008-06-20 11:12:21 +0200347 asic3_write_register(asic, bank + ASIC3_GPIO_EDGE_TRIGGER,
Samuel Ortizfa9ff4b2008-02-07 00:14:49 -0800348 edge);
Samuel Ortiz3b8139f2008-06-20 11:12:21 +0200349 asic3_write_register(asic, bank + ASIC3_GPIO_TRIGGER_TYPE,
Samuel Ortizfa9ff4b2008-02-07 00:14:49 -0800350 trigger);
351 spin_unlock_irqrestore(&asic->lock, flags);
352 return 0;
353}
354
355static struct irq_chip asic3_gpio_irq_chip = {
356 .name = "ASIC3-GPIO",
Mark Brown0f76aae2010-12-11 13:08:57 +0000357 .irq_ack = asic3_mask_gpio_irq,
358 .irq_mask = asic3_mask_gpio_irq,
359 .irq_unmask = asic3_unmask_gpio_irq,
360 .irq_set_type = asic3_gpio_irq_type,
Samuel Ortizfa9ff4b2008-02-07 00:14:49 -0800361};
362
363static struct irq_chip asic3_irq_chip = {
364 .name = "ASIC3",
Mark Brown0f76aae2010-12-11 13:08:57 +0000365 .irq_ack = asic3_mask_irq,
366 .irq_mask = asic3_mask_irq,
367 .irq_unmask = asic3_unmask_irq,
Samuel Ortizfa9ff4b2008-02-07 00:14:49 -0800368};
369
Philipp Zabel065032f2008-06-21 00:51:38 +0200370static int __init asic3_irq_probe(struct platform_device *pdev)
Samuel Ortizfa9ff4b2008-02-07 00:14:49 -0800371{
372 struct asic3 *asic = platform_get_drvdata(pdev);
373 unsigned long clksel = 0;
374 unsigned int irq, irq_base;
Roel Kluinc491b2f2008-07-25 19:44:41 -0700375 int ret;
Samuel Ortizfa9ff4b2008-02-07 00:14:49 -0800376
Roel Kluinc491b2f2008-07-25 19:44:41 -0700377 ret = platform_get_irq(pdev, 0);
378 if (ret < 0)
379 return ret;
380 asic->irq_nr = ret;
Samuel Ortizfa9ff4b2008-02-07 00:14:49 -0800381
382 /* turn on clock to IRQ controller */
383 clksel |= CLOCK_SEL_CX;
384 asic3_write_register(asic, ASIC3_OFFSET(CLOCK, SEL),
385 clksel);
386
387 irq_base = asic->irq_base;
388
389 for (irq = irq_base; irq < irq_base + ASIC3_NR_IRQS; irq++) {
390 if (irq < asic->irq_base + ASIC3_NUM_GPIOS)
Thomas Gleixnerd5bb1222011-03-25 11:12:32 +0000391 irq_set_chip(irq, &asic3_gpio_irq_chip);
Samuel Ortizfa9ff4b2008-02-07 00:14:49 -0800392 else
Thomas Gleixnerd5bb1222011-03-25 11:12:32 +0000393 irq_set_chip(irq, &asic3_irq_chip);
Samuel Ortizfa9ff4b2008-02-07 00:14:49 -0800394
Thomas Gleixnerd5bb1222011-03-25 11:12:32 +0000395 irq_set_chip_data(irq, asic);
396 irq_set_handler(irq, handle_level_irq);
Samuel Ortizfa9ff4b2008-02-07 00:14:49 -0800397 set_irq_flags(irq, IRQF_VALID | IRQF_PROBE);
398 }
399
Samuel Ortiz3b8139f2008-06-20 11:12:21 +0200400 asic3_write_register(asic, ASIC3_OFFSET(INTR, INT_MASK),
Samuel Ortizfa9ff4b2008-02-07 00:14:49 -0800401 ASIC3_INTMASK_GINTMASK);
402
Thomas Gleixnerd5bb1222011-03-25 11:12:32 +0000403 irq_set_chained_handler(asic->irq_nr, asic3_irq_demux);
404 irq_set_irq_type(asic->irq_nr, IRQ_TYPE_EDGE_RISING);
405 irq_set_handler_data(asic->irq_nr, asic);
Samuel Ortizfa9ff4b2008-02-07 00:14:49 -0800406
407 return 0;
408}
409
410static void asic3_irq_remove(struct platform_device *pdev)
411{
412 struct asic3 *asic = platform_get_drvdata(pdev);
413 unsigned int irq, irq_base;
414
415 irq_base = asic->irq_base;
416
417 for (irq = irq_base; irq < irq_base + ASIC3_NR_IRQS; irq++) {
418 set_irq_flags(irq, 0);
Thomas Gleixnerd6f7ce9f2011-03-25 11:12:35 +0000419 irq_set_chip_and_handler(irq, NULL, NULL);
Thomas Gleixnerd5bb1222011-03-25 11:12:32 +0000420 irq_set_chip_data(irq, NULL);
Samuel Ortizfa9ff4b2008-02-07 00:14:49 -0800421 }
Thomas Gleixnerd5bb1222011-03-25 11:12:32 +0000422 irq_set_chained_handler(asic->irq_nr, NULL);
Samuel Ortizfa9ff4b2008-02-07 00:14:49 -0800423}
424
425/* GPIOs */
Samuel Ortiz6f2384c2008-06-20 11:02:19 +0200426static int asic3_gpio_direction(struct gpio_chip *chip,
427 unsigned offset, int out)
428{
429 u32 mask = ASIC3_GPIO_TO_MASK(offset), out_reg;
430 unsigned int gpio_base;
431 unsigned long flags;
432 struct asic3 *asic;
433
434 asic = container_of(chip, struct asic3, gpio);
435 gpio_base = ASIC3_GPIO_TO_BASE(offset);
436
Samuel Ortiz3b8139f2008-06-20 11:12:21 +0200437 if (gpio_base > ASIC3_GPIO_D_BASE) {
Samuel Ortiz24f4f2e2008-06-20 11:11:19 +0200438 dev_err(asic->dev, "Invalid base (0x%x) for gpio %d\n",
439 gpio_base, offset);
Samuel Ortiz6f2384c2008-06-20 11:02:19 +0200440 return -EINVAL;
441 }
442
443 spin_lock_irqsave(&asic->lock, flags);
444
Samuel Ortiz3b8139f2008-06-20 11:12:21 +0200445 out_reg = asic3_read_register(asic, gpio_base + ASIC3_GPIO_DIRECTION);
Samuel Ortiz6f2384c2008-06-20 11:02:19 +0200446
447 /* Input is 0, Output is 1 */
448 if (out)
449 out_reg |= mask;
450 else
451 out_reg &= ~mask;
452
Samuel Ortiz3b8139f2008-06-20 11:12:21 +0200453 asic3_write_register(asic, gpio_base + ASIC3_GPIO_DIRECTION, out_reg);
Samuel Ortiz6f2384c2008-06-20 11:02:19 +0200454
455 spin_unlock_irqrestore(&asic->lock, flags);
456
457 return 0;
458
459}
460
461static int asic3_gpio_direction_input(struct gpio_chip *chip,
462 unsigned offset)
463{
464 return asic3_gpio_direction(chip, offset, 0);
465}
466
467static int asic3_gpio_direction_output(struct gpio_chip *chip,
468 unsigned offset, int value)
469{
470 return asic3_gpio_direction(chip, offset, 1);
471}
472
473static int asic3_gpio_get(struct gpio_chip *chip,
474 unsigned offset)
475{
476 unsigned int gpio_base;
477 u32 mask = ASIC3_GPIO_TO_MASK(offset);
478 struct asic3 *asic;
479
480 asic = container_of(chip, struct asic3, gpio);
481 gpio_base = ASIC3_GPIO_TO_BASE(offset);
482
Samuel Ortiz3b8139f2008-06-20 11:12:21 +0200483 if (gpio_base > ASIC3_GPIO_D_BASE) {
Samuel Ortiz24f4f2e2008-06-20 11:11:19 +0200484 dev_err(asic->dev, "Invalid base (0x%x) for gpio %d\n",
485 gpio_base, offset);
Samuel Ortiz6f2384c2008-06-20 11:02:19 +0200486 return -EINVAL;
487 }
488
Samuel Ortiz3b8139f2008-06-20 11:12:21 +0200489 return asic3_read_register(asic, gpio_base + ASIC3_GPIO_STATUS) & mask;
Samuel Ortiz6f2384c2008-06-20 11:02:19 +0200490}
491
492static void asic3_gpio_set(struct gpio_chip *chip,
493 unsigned offset, int value)
494{
495 u32 mask, out_reg;
496 unsigned int gpio_base;
497 unsigned long flags;
498 struct asic3 *asic;
499
500 asic = container_of(chip, struct asic3, gpio);
501 gpio_base = ASIC3_GPIO_TO_BASE(offset);
502
Samuel Ortiz3b8139f2008-06-20 11:12:21 +0200503 if (gpio_base > ASIC3_GPIO_D_BASE) {
Samuel Ortiz24f4f2e2008-06-20 11:11:19 +0200504 dev_err(asic->dev, "Invalid base (0x%x) for gpio %d\n",
505 gpio_base, offset);
Samuel Ortiz6f2384c2008-06-20 11:02:19 +0200506 return;
507 }
508
509 mask = ASIC3_GPIO_TO_MASK(offset);
510
511 spin_lock_irqsave(&asic->lock, flags);
512
Samuel Ortiz3b8139f2008-06-20 11:12:21 +0200513 out_reg = asic3_read_register(asic, gpio_base + ASIC3_GPIO_OUT);
Samuel Ortiz6f2384c2008-06-20 11:02:19 +0200514
515 if (value)
516 out_reg |= mask;
517 else
518 out_reg &= ~mask;
519
Samuel Ortiz3b8139f2008-06-20 11:12:21 +0200520 asic3_write_register(asic, gpio_base + ASIC3_GPIO_OUT, out_reg);
Samuel Ortiz6f2384c2008-06-20 11:02:19 +0200521
522 spin_unlock_irqrestore(&asic->lock, flags);
523
524 return;
525}
526
Philipp Zabel065032f2008-06-21 00:51:38 +0200527static __init int asic3_gpio_probe(struct platform_device *pdev,
528 u16 *gpio_config, int num)
Samuel Ortizfa9ff4b2008-02-07 00:14:49 -0800529{
Samuel Ortizfa9ff4b2008-02-07 00:14:49 -0800530 struct asic3 *asic = platform_get_drvdata(pdev);
Samuel Ortiz3b26bf12008-06-20 11:09:51 +0200531 u16 alt_reg[ASIC3_NUM_GPIO_BANKS];
532 u16 out_reg[ASIC3_NUM_GPIO_BANKS];
533 u16 dir_reg[ASIC3_NUM_GPIO_BANKS];
534 int i;
Samuel Ortizfa9ff4b2008-02-07 00:14:49 -0800535
Russell King59f0cb02008-10-27 11:24:09 +0000536 memset(alt_reg, 0, ASIC3_NUM_GPIO_BANKS * sizeof(u16));
537 memset(out_reg, 0, ASIC3_NUM_GPIO_BANKS * sizeof(u16));
538 memset(dir_reg, 0, ASIC3_NUM_GPIO_BANKS * sizeof(u16));
Samuel Ortiz3b26bf12008-06-20 11:09:51 +0200539
540 /* Enable all GPIOs */
Samuel Ortiz3b8139f2008-06-20 11:12:21 +0200541 asic3_write_register(asic, ASIC3_GPIO_OFFSET(A, MASK), 0xffff);
542 asic3_write_register(asic, ASIC3_GPIO_OFFSET(B, MASK), 0xffff);
543 asic3_write_register(asic, ASIC3_GPIO_OFFSET(C, MASK), 0xffff);
544 asic3_write_register(asic, ASIC3_GPIO_OFFSET(D, MASK), 0xffff);
Samuel Ortizfa9ff4b2008-02-07 00:14:49 -0800545
Samuel Ortiz3b26bf12008-06-20 11:09:51 +0200546 for (i = 0; i < num; i++) {
547 u8 alt, pin, dir, init, bank_num, bit_num;
548 u16 config = gpio_config[i];
Samuel Ortizfa9ff4b2008-02-07 00:14:49 -0800549
Samuel Ortiz3b26bf12008-06-20 11:09:51 +0200550 pin = ASIC3_CONFIG_GPIO_PIN(config);
551 alt = ASIC3_CONFIG_GPIO_ALT(config);
552 dir = ASIC3_CONFIG_GPIO_DIR(config);
553 init = ASIC3_CONFIG_GPIO_INIT(config);
554
555 bank_num = ASIC3_GPIO_TO_BANK(pin);
556 bit_num = ASIC3_GPIO_TO_BIT(pin);
557
558 alt_reg[bank_num] |= (alt << bit_num);
559 out_reg[bank_num] |= (init << bit_num);
560 dir_reg[bank_num] |= (dir << bit_num);
561 }
562
563 for (i = 0; i < ASIC3_NUM_GPIO_BANKS; i++) {
564 asic3_write_register(asic,
565 ASIC3_BANK_TO_BASE(i) +
Samuel Ortiz3b8139f2008-06-20 11:12:21 +0200566 ASIC3_GPIO_DIRECTION,
Samuel Ortiz3b26bf12008-06-20 11:09:51 +0200567 dir_reg[i]);
568 asic3_write_register(asic,
Samuel Ortiz3b8139f2008-06-20 11:12:21 +0200569 ASIC3_BANK_TO_BASE(i) + ASIC3_GPIO_OUT,
Samuel Ortiz3b26bf12008-06-20 11:09:51 +0200570 out_reg[i]);
571 asic3_write_register(asic,
572 ASIC3_BANK_TO_BASE(i) +
Samuel Ortiz3b8139f2008-06-20 11:12:21 +0200573 ASIC3_GPIO_ALT_FUNCTION,
Samuel Ortiz3b26bf12008-06-20 11:09:51 +0200574 alt_reg[i]);
Samuel Ortizfa9ff4b2008-02-07 00:14:49 -0800575 }
576
Samuel Ortiz6f2384c2008-06-20 11:02:19 +0200577 return gpiochip_add(&asic->gpio);
Samuel Ortizfa9ff4b2008-02-07 00:14:49 -0800578}
579
Samuel Ortiz6f2384c2008-06-20 11:02:19 +0200580static int asic3_gpio_remove(struct platform_device *pdev)
Samuel Ortizfa9ff4b2008-02-07 00:14:49 -0800581{
Samuel Ortiz6f2384c2008-06-20 11:02:19 +0200582 struct asic3 *asic = platform_get_drvdata(pdev);
583
584 return gpiochip_remove(&asic->gpio);
Samuel Ortizfa9ff4b2008-02-07 00:14:49 -0800585}
586
Philipp Zabele956a2a2009-06-05 18:31:02 +0200587static int asic3_clk_enable(struct asic3 *asic, struct asic3_clk *clk)
588{
589 unsigned long flags;
590 u32 cdex;
591
592 spin_lock_irqsave(&asic->lock, flags);
593 if (clk->enabled++ == 0) {
594 cdex = asic3_read_register(asic, ASIC3_OFFSET(CLOCK, CDEX));
595 cdex |= clk->cdex;
596 asic3_write_register(asic, ASIC3_OFFSET(CLOCK, CDEX), cdex);
597 }
598 spin_unlock_irqrestore(&asic->lock, flags);
599
600 return 0;
601}
602
603static void asic3_clk_disable(struct asic3 *asic, struct asic3_clk *clk)
604{
605 unsigned long flags;
606 u32 cdex;
607
608 WARN_ON(clk->enabled == 0);
609
610 spin_lock_irqsave(&asic->lock, flags);
611 if (--clk->enabled == 0) {
612 cdex = asic3_read_register(asic, ASIC3_OFFSET(CLOCK, CDEX));
613 cdex &= ~clk->cdex;
614 asic3_write_register(asic, ASIC3_OFFSET(CLOCK, CDEX), cdex);
615 }
616 spin_unlock_irqrestore(&asic->lock, flags);
617}
Samuel Ortizfa9ff4b2008-02-07 00:14:49 -0800618
Philipp Zabel9461f652009-06-15 12:10:24 +0200619/* MFD cells (SPI, PWM, LED, DS1WM, MMC) */
620static struct ds1wm_driver_data ds1wm_pdata = {
621 .active_high = 1,
Jean-François Dagenaisf607e7f2011-07-08 15:39:44 -0700622 .reset_recover_delay = 1,
Philipp Zabel9461f652009-06-15 12:10:24 +0200623};
624
625static struct resource ds1wm_resources[] = {
626 {
627 .start = ASIC3_OWM_BASE,
628 .end = ASIC3_OWM_BASE + 0x13,
629 .flags = IORESOURCE_MEM,
630 },
631 {
632 .start = ASIC3_IRQ_OWM,
Mark Brownfe421422010-12-11 13:00:34 +0000633 .end = ASIC3_IRQ_OWM,
Philipp Zabel9461f652009-06-15 12:10:24 +0200634 .flags = IORESOURCE_IRQ | IORESOURCE_IRQ_HIGHEDGE,
635 },
636};
637
638static int ds1wm_enable(struct platform_device *pdev)
639{
640 struct asic3 *asic = dev_get_drvdata(pdev->dev.parent);
641
642 /* Turn on external clocks and the OWM clock */
643 asic3_clk_enable(asic, &asic->clocks[ASIC3_CLOCK_EX0]);
644 asic3_clk_enable(asic, &asic->clocks[ASIC3_CLOCK_EX1]);
645 asic3_clk_enable(asic, &asic->clocks[ASIC3_CLOCK_OWM]);
646 msleep(1);
647
648 /* Reset and enable DS1WM */
649 asic3_set_register(asic, ASIC3_OFFSET(EXTCF, RESET),
650 ASIC3_EXTCF_OWM_RESET, 1);
651 msleep(1);
652 asic3_set_register(asic, ASIC3_OFFSET(EXTCF, RESET),
653 ASIC3_EXTCF_OWM_RESET, 0);
654 msleep(1);
655 asic3_set_register(asic, ASIC3_OFFSET(EXTCF, SELECT),
656 ASIC3_EXTCF_OWM_EN, 1);
657 msleep(1);
658
659 return 0;
660}
661
662static int ds1wm_disable(struct platform_device *pdev)
663{
664 struct asic3 *asic = dev_get_drvdata(pdev->dev.parent);
665
666 asic3_set_register(asic, ASIC3_OFFSET(EXTCF, SELECT),
667 ASIC3_EXTCF_OWM_EN, 0);
668
669 asic3_clk_disable(asic, &asic->clocks[ASIC3_CLOCK_OWM]);
670 asic3_clk_disable(asic, &asic->clocks[ASIC3_CLOCK_EX0]);
671 asic3_clk_disable(asic, &asic->clocks[ASIC3_CLOCK_EX1]);
672
673 return 0;
674}
675
676static struct mfd_cell asic3_cell_ds1wm = {
677 .name = "ds1wm",
678 .enable = ds1wm_enable,
679 .disable = ds1wm_disable,
Samuel Ortiz121ea572011-04-06 11:41:03 +0200680 .platform_data = &ds1wm_pdata,
681 .pdata_size = sizeof(ds1wm_pdata),
Philipp Zabel9461f652009-06-15 12:10:24 +0200682 .num_resources = ARRAY_SIZE(ds1wm_resources),
683 .resources = ds1wm_resources,
684};
685
Ian Molton64e88672010-01-06 13:51:48 +0100686static void asic3_mmc_pwr(struct platform_device *pdev, int state)
687{
688 struct asic3 *asic = dev_get_drvdata(pdev->dev.parent);
689
690 tmio_core_mmc_pwr(asic->tmio_cnf, 1 - asic->bus_shift, state);
691}
692
693static void asic3_mmc_clk_div(struct platform_device *pdev, int state)
694{
695 struct asic3 *asic = dev_get_drvdata(pdev->dev.parent);
696
697 tmio_core_mmc_clk_div(asic->tmio_cnf, 1 - asic->bus_shift, state);
698}
699
Philipp Zabel09f05ce2009-06-15 12:10:25 +0200700static struct tmio_mmc_data asic3_mmc_data = {
Ian Molton64e88672010-01-06 13:51:48 +0100701 .hclk = 24576000,
702 .set_pwr = asic3_mmc_pwr,
703 .set_clk_div = asic3_mmc_clk_div,
Philipp Zabel09f05ce2009-06-15 12:10:25 +0200704};
705
706static struct resource asic3_mmc_resources[] = {
707 {
708 .start = ASIC3_SD_CTRL_BASE,
709 .end = ASIC3_SD_CTRL_BASE + 0x3ff,
710 .flags = IORESOURCE_MEM,
711 },
712 {
Philipp Zabel09f05ce2009-06-15 12:10:25 +0200713 .start = 0,
714 .end = 0,
715 .flags = IORESOURCE_IRQ,
716 },
717};
718
719static int asic3_mmc_enable(struct platform_device *pdev)
720{
721 struct asic3 *asic = dev_get_drvdata(pdev->dev.parent);
722
723 /* Not sure if it must be done bit by bit, but leaving as-is */
724 asic3_set_register(asic, ASIC3_OFFSET(SDHWCTRL, SDCONF),
725 ASIC3_SDHWCTRL_LEVCD, 1);
726 asic3_set_register(asic, ASIC3_OFFSET(SDHWCTRL, SDCONF),
727 ASIC3_SDHWCTRL_LEVWP, 1);
728 asic3_set_register(asic, ASIC3_OFFSET(SDHWCTRL, SDCONF),
729 ASIC3_SDHWCTRL_SUSPEND, 0);
730 asic3_set_register(asic, ASIC3_OFFSET(SDHWCTRL, SDCONF),
731 ASIC3_SDHWCTRL_PCLR, 0);
732
733 asic3_clk_enable(asic, &asic->clocks[ASIC3_CLOCK_EX0]);
734 /* CLK32 used for card detection and for interruption detection
735 * when HCLK is stopped.
736 */
737 asic3_clk_enable(asic, &asic->clocks[ASIC3_CLOCK_EX1]);
738 msleep(1);
739
740 /* HCLK 24.576 MHz, BCLK 12.288 MHz: */
741 asic3_write_register(asic, ASIC3_OFFSET(CLOCK, SEL),
742 CLOCK_SEL_CX | CLOCK_SEL_SD_HCLK_SEL);
743
744 asic3_clk_enable(asic, &asic->clocks[ASIC3_CLOCK_SD_HOST]);
745 asic3_clk_enable(asic, &asic->clocks[ASIC3_CLOCK_SD_BUS]);
746 msleep(1);
747
748 asic3_set_register(asic, ASIC3_OFFSET(EXTCF, SELECT),
749 ASIC3_EXTCF_SD_MEM_ENABLE, 1);
750
751 /* Enable SD card slot 3.3V power supply */
752 asic3_set_register(asic, ASIC3_OFFSET(SDHWCTRL, SDCONF),
753 ASIC3_SDHWCTRL_SDPWR, 1);
754
Ian Molton64e88672010-01-06 13:51:48 +0100755 /* ASIC3_SD_CTRL_BASE assumes 32-bit addressing, TMIO is 16-bit */
756 tmio_core_mmc_enable(asic->tmio_cnf, 1 - asic->bus_shift,
757 ASIC3_SD_CTRL_BASE >> 1);
758
Philipp Zabel09f05ce2009-06-15 12:10:25 +0200759 return 0;
760}
761
762static int asic3_mmc_disable(struct platform_device *pdev)
763{
764 struct asic3 *asic = dev_get_drvdata(pdev->dev.parent);
765
766 /* Put in suspend mode */
767 asic3_set_register(asic, ASIC3_OFFSET(SDHWCTRL, SDCONF),
768 ASIC3_SDHWCTRL_SUSPEND, 1);
769
770 /* Disable clocks */
771 asic3_clk_disable(asic, &asic->clocks[ASIC3_CLOCK_SD_HOST]);
772 asic3_clk_disable(asic, &asic->clocks[ASIC3_CLOCK_SD_BUS]);
773 asic3_clk_disable(asic, &asic->clocks[ASIC3_CLOCK_EX0]);
774 asic3_clk_disable(asic, &asic->clocks[ASIC3_CLOCK_EX1]);
775 return 0;
776}
777
778static struct mfd_cell asic3_cell_mmc = {
779 .name = "tmio-mmc",
780 .enable = asic3_mmc_enable,
781 .disable = asic3_mmc_disable,
Samuel Ortizec719742011-04-06 11:38:14 +0200782 .platform_data = &asic3_mmc_data,
783 .pdata_size = sizeof(asic3_mmc_data),
Philipp Zabel09f05ce2009-06-15 12:10:25 +0200784 .num_resources = ARRAY_SIZE(asic3_mmc_resources),
785 .resources = asic3_mmc_resources,
786};
787
Paul Parsons13ca4f62011-05-13 18:53:03 +0000788static const int clock_ledn[ASIC3_NUM_LEDS] = {
789 [0] = ASIC3_CLOCK_LED0,
790 [1] = ASIC3_CLOCK_LED1,
791 [2] = ASIC3_CLOCK_LED2,
792};
793
794static int asic3_leds_enable(struct platform_device *pdev)
795{
796 const struct mfd_cell *cell = mfd_get_cell(pdev);
797 struct asic3 *asic = dev_get_drvdata(pdev->dev.parent);
798
799 asic3_clk_enable(asic, &asic->clocks[clock_ledn[cell->id]]);
800
801 return 0;
802}
803
804static int asic3_leds_disable(struct platform_device *pdev)
805{
806 const struct mfd_cell *cell = mfd_get_cell(pdev);
807 struct asic3 *asic = dev_get_drvdata(pdev->dev.parent);
808
809 asic3_clk_disable(asic, &asic->clocks[clock_ledn[cell->id]]);
810
811 return 0;
812}
813
814static struct mfd_cell asic3_cell_leds[ASIC3_NUM_LEDS] = {
815 [0] = {
816 .name = "leds-asic3",
817 .id = 0,
818 .enable = asic3_leds_enable,
819 .disable = asic3_leds_disable,
820 },
821 [1] = {
822 .name = "leds-asic3",
823 .id = 1,
824 .enable = asic3_leds_enable,
825 .disable = asic3_leds_disable,
826 },
827 [2] = {
828 .name = "leds-asic3",
829 .id = 2,
830 .enable = asic3_leds_enable,
831 .disable = asic3_leds_disable,
832 },
833};
834
Philipp Zabel9461f652009-06-15 12:10:24 +0200835static int __init asic3_mfd_probe(struct platform_device *pdev,
Paul Parsons13ca4f62011-05-13 18:53:03 +0000836 struct asic3_platform_data *pdata,
Philipp Zabel9461f652009-06-15 12:10:24 +0200837 struct resource *mem)
838{
839 struct asic3 *asic = platform_get_drvdata(pdev);
Philipp Zabel09f05ce2009-06-15 12:10:25 +0200840 struct resource *mem_sdio;
841 int irq, ret;
842
843 mem_sdio = platform_get_resource(pdev, IORESOURCE_MEM, 1);
844 if (!mem_sdio)
845 dev_dbg(asic->dev, "no SDIO MEM resource\n");
846
847 irq = platform_get_irq(pdev, 1);
848 if (irq < 0)
849 dev_dbg(asic->dev, "no SDIO IRQ resource\n");
Philipp Zabel9461f652009-06-15 12:10:24 +0200850
851 /* DS1WM */
852 asic3_set_register(asic, ASIC3_OFFSET(EXTCF, SELECT),
853 ASIC3_EXTCF_OWM_SMB, 0);
854
855 ds1wm_resources[0].start >>= asic->bus_shift;
856 ds1wm_resources[0].end >>= asic->bus_shift;
857
Philipp Zabel09f05ce2009-06-15 12:10:25 +0200858 /* MMC */
Ian Molton64e88672010-01-06 13:51:48 +0100859 asic->tmio_cnf = ioremap((ASIC3_SD_CONFIG_BASE >> asic->bus_shift) +
Paul Parsons74e32d12011-05-15 14:13:11 +0000860 mem_sdio->start,
861 ASIC3_SD_CONFIG_SIZE >> asic->bus_shift);
Ian Molton64e88672010-01-06 13:51:48 +0100862 if (!asic->tmio_cnf) {
863 ret = -ENOMEM;
864 dev_dbg(asic->dev, "Couldn't ioremap SD_CONFIG\n");
865 goto out;
866 }
Philipp Zabel09f05ce2009-06-15 12:10:25 +0200867 asic3_mmc_resources[0].start >>= asic->bus_shift;
868 asic3_mmc_resources[0].end >>= asic->bus_shift;
Philipp Zabel09f05ce2009-06-15 12:10:25 +0200869
Philipp Zabel9461f652009-06-15 12:10:24 +0200870 ret = mfd_add_devices(&pdev->dev, pdev->id,
871 &asic3_cell_ds1wm, 1, mem, asic->irq_base);
Philipp Zabel09f05ce2009-06-15 12:10:25 +0200872 if (ret < 0)
873 goto out;
Philipp Zabel9461f652009-06-15 12:10:24 +0200874
Paul Parsons13ca4f62011-05-13 18:53:03 +0000875 if (mem_sdio && (irq >= 0)) {
Philipp Zabel09f05ce2009-06-15 12:10:25 +0200876 ret = mfd_add_devices(&pdev->dev, pdev->id,
877 &asic3_cell_mmc, 1, mem_sdio, irq);
Paul Parsons13ca4f62011-05-13 18:53:03 +0000878 if (ret < 0)
879 goto out;
880 }
881
882 if (pdata->leds) {
883 int i;
884
885 for (i = 0; i < ASIC3_NUM_LEDS; ++i) {
886 asic3_cell_leds[i].platform_data = &pdata->leds[i];
887 asic3_cell_leds[i].pdata_size = sizeof(pdata->leds[i]);
888 }
889 ret = mfd_add_devices(&pdev->dev, 0,
890 asic3_cell_leds, ASIC3_NUM_LEDS, NULL, 0);
891 }
Philipp Zabel09f05ce2009-06-15 12:10:25 +0200892
893 out:
Philipp Zabel9461f652009-06-15 12:10:24 +0200894 return ret;
895}
896
897static void asic3_mfd_remove(struct platform_device *pdev)
898{
Ian Molton64e88672010-01-06 13:51:48 +0100899 struct asic3 *asic = platform_get_drvdata(pdev);
900
Philipp Zabel9461f652009-06-15 12:10:24 +0200901 mfd_remove_devices(&pdev->dev);
Ian Molton64e88672010-01-06 13:51:48 +0100902 iounmap(asic->tmio_cnf);
Philipp Zabel9461f652009-06-15 12:10:24 +0200903}
904
Samuel Ortizfa9ff4b2008-02-07 00:14:49 -0800905/* Core */
Philipp Zabel065032f2008-06-21 00:51:38 +0200906static int __init asic3_probe(struct platform_device *pdev)
Samuel Ortizfa9ff4b2008-02-07 00:14:49 -0800907{
908 struct asic3_platform_data *pdata = pdev->dev.platform_data;
909 struct asic3 *asic;
910 struct resource *mem;
911 unsigned long clksel;
Samuel Ortiz6f2384c2008-06-20 11:02:19 +0200912 int ret = 0;
Samuel Ortizfa9ff4b2008-02-07 00:14:49 -0800913
914 asic = kzalloc(sizeof(struct asic3), GFP_KERNEL);
Samuel Ortiz6f2384c2008-06-20 11:02:19 +0200915 if (asic == NULL) {
916 printk(KERN_ERR "kzalloc failed\n");
Samuel Ortizfa9ff4b2008-02-07 00:14:49 -0800917 return -ENOMEM;
Samuel Ortiz6f2384c2008-06-20 11:02:19 +0200918 }
Samuel Ortizfa9ff4b2008-02-07 00:14:49 -0800919
920 spin_lock_init(&asic->lock);
921 platform_set_drvdata(pdev, asic);
922 asic->dev = &pdev->dev;
923
924 mem = platform_get_resource(pdev, IORESOURCE_MEM, 0);
925 if (!mem) {
926 ret = -ENOMEM;
Samuel Ortiz24f4f2e2008-06-20 11:11:19 +0200927 dev_err(asic->dev, "no MEM resource\n");
Samuel Ortiz6f2384c2008-06-20 11:02:19 +0200928 goto out_free;
Samuel Ortizfa9ff4b2008-02-07 00:14:49 -0800929 }
930
Philipp Zabelbe584bd2009-06-05 18:31:04 +0200931 asic->mapping = ioremap(mem->start, resource_size(mem));
Samuel Ortizfa9ff4b2008-02-07 00:14:49 -0800932 if (!asic->mapping) {
933 ret = -ENOMEM;
Samuel Ortiz24f4f2e2008-06-20 11:11:19 +0200934 dev_err(asic->dev, "Couldn't ioremap\n");
Samuel Ortiz6f2384c2008-06-20 11:02:19 +0200935 goto out_free;
Samuel Ortizfa9ff4b2008-02-07 00:14:49 -0800936 }
937
938 asic->irq_base = pdata->irq_base;
939
Philipp Zabel99cdb0c2008-07-10 02:17:02 +0200940 /* calculate bus shift from mem resource */
Philipp Zabelbe584bd2009-06-05 18:31:04 +0200941 asic->bus_shift = 2 - (resource_size(mem) >> 12);
Samuel Ortizfa9ff4b2008-02-07 00:14:49 -0800942
943 clksel = 0;
944 asic3_write_register(asic, ASIC3_OFFSET(CLOCK, SEL), clksel);
945
946 ret = asic3_irq_probe(pdev);
947 if (ret < 0) {
Samuel Ortiz24f4f2e2008-06-20 11:11:19 +0200948 dev_err(asic->dev, "Couldn't probe IRQs\n");
Samuel Ortiz6f2384c2008-06-20 11:02:19 +0200949 goto out_unmap;
Samuel Ortizfa9ff4b2008-02-07 00:14:49 -0800950 }
Samuel Ortiz6f2384c2008-06-20 11:02:19 +0200951
952 asic->gpio.base = pdata->gpio_base;
953 asic->gpio.ngpio = ASIC3_NUM_GPIOS;
954 asic->gpio.get = asic3_gpio_get;
955 asic->gpio.set = asic3_gpio_set;
956 asic->gpio.direction_input = asic3_gpio_direction_input;
957 asic->gpio.direction_output = asic3_gpio_direction_output;
958
Samuel Ortiz3b26bf12008-06-20 11:09:51 +0200959 ret = asic3_gpio_probe(pdev,
960 pdata->gpio_config,
961 pdata->gpio_config_num);
Samuel Ortiz6f2384c2008-06-20 11:02:19 +0200962 if (ret < 0) {
Samuel Ortiz24f4f2e2008-06-20 11:11:19 +0200963 dev_err(asic->dev, "GPIO probe failed\n");
Samuel Ortiz6f2384c2008-06-20 11:02:19 +0200964 goto out_irq;
965 }
Samuel Ortizfa9ff4b2008-02-07 00:14:49 -0800966
Philipp Zabele956a2a2009-06-05 18:31:02 +0200967 /* Making a per-device copy is only needed for the
968 * theoretical case of multiple ASIC3s on one board:
969 */
970 memcpy(asic->clocks, asic3_clk_init, sizeof(asic3_clk_init));
971
Paul Parsons13ca4f62011-05-13 18:53:03 +0000972 asic3_mfd_probe(pdev, pdata, mem);
Philipp Zabel9461f652009-06-15 12:10:24 +0200973
Samuel Ortiz24f4f2e2008-06-20 11:11:19 +0200974 dev_info(asic->dev, "ASIC3 Core driver\n");
Samuel Ortizfa9ff4b2008-02-07 00:14:49 -0800975
976 return 0;
977
Samuel Ortiz6f2384c2008-06-20 11:02:19 +0200978 out_irq:
979 asic3_irq_remove(pdev);
980
981 out_unmap:
Samuel Ortizfa9ff4b2008-02-07 00:14:49 -0800982 iounmap(asic->mapping);
Samuel Ortiz6f2384c2008-06-20 11:02:19 +0200983
984 out_free:
Samuel Ortizfa9ff4b2008-02-07 00:14:49 -0800985 kfree(asic);
986
987 return ret;
988}
989
Uwe Kleine-König1e3edaf2009-10-01 10:28:05 +0200990static int __devexit asic3_remove(struct platform_device *pdev)
Samuel Ortizfa9ff4b2008-02-07 00:14:49 -0800991{
Samuel Ortiz6f2384c2008-06-20 11:02:19 +0200992 int ret;
Samuel Ortizfa9ff4b2008-02-07 00:14:49 -0800993 struct asic3 *asic = platform_get_drvdata(pdev);
994
Philipp Zabel9461f652009-06-15 12:10:24 +0200995 asic3_mfd_remove(pdev);
996
Samuel Ortiz6f2384c2008-06-20 11:02:19 +0200997 ret = asic3_gpio_remove(pdev);
998 if (ret < 0)
999 return ret;
Samuel Ortizfa9ff4b2008-02-07 00:14:49 -08001000 asic3_irq_remove(pdev);
1001
1002 asic3_write_register(asic, ASIC3_OFFSET(CLOCK, SEL), 0);
1003
1004 iounmap(asic->mapping);
1005
1006 kfree(asic);
1007
1008 return 0;
1009}
1010
1011static void asic3_shutdown(struct platform_device *pdev)
1012{
1013}
1014
1015static struct platform_driver asic3_device_driver = {
1016 .driver = {
1017 .name = "asic3",
1018 },
Samuel Ortizfa9ff4b2008-02-07 00:14:49 -08001019 .remove = __devexit_p(asic3_remove),
1020 .shutdown = asic3_shutdown,
1021};
1022
1023static int __init asic3_init(void)
1024{
1025 int retval = 0;
Philipp Zabel065032f2008-06-21 00:51:38 +02001026 retval = platform_driver_probe(&asic3_device_driver, asic3_probe);
Samuel Ortizfa9ff4b2008-02-07 00:14:49 -08001027 return retval;
1028}
1029
1030subsys_initcall(asic3_init);