blob: c27fd1fc3b86789a73cf725ce57a5863e5175d6f [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,
622};
623
624static struct resource ds1wm_resources[] = {
625 {
626 .start = ASIC3_OWM_BASE,
627 .end = ASIC3_OWM_BASE + 0x13,
628 .flags = IORESOURCE_MEM,
629 },
630 {
631 .start = ASIC3_IRQ_OWM,
Mark Brownfe421422010-12-11 13:00:34 +0000632 .end = ASIC3_IRQ_OWM,
Philipp Zabel9461f652009-06-15 12:10:24 +0200633 .flags = IORESOURCE_IRQ | IORESOURCE_IRQ_HIGHEDGE,
634 },
635};
636
637static int ds1wm_enable(struct platform_device *pdev)
638{
639 struct asic3 *asic = dev_get_drvdata(pdev->dev.parent);
640
641 /* Turn on external clocks and the OWM clock */
642 asic3_clk_enable(asic, &asic->clocks[ASIC3_CLOCK_EX0]);
643 asic3_clk_enable(asic, &asic->clocks[ASIC3_CLOCK_EX1]);
644 asic3_clk_enable(asic, &asic->clocks[ASIC3_CLOCK_OWM]);
645 msleep(1);
646
647 /* Reset and enable DS1WM */
648 asic3_set_register(asic, ASIC3_OFFSET(EXTCF, RESET),
649 ASIC3_EXTCF_OWM_RESET, 1);
650 msleep(1);
651 asic3_set_register(asic, ASIC3_OFFSET(EXTCF, RESET),
652 ASIC3_EXTCF_OWM_RESET, 0);
653 msleep(1);
654 asic3_set_register(asic, ASIC3_OFFSET(EXTCF, SELECT),
655 ASIC3_EXTCF_OWM_EN, 1);
656 msleep(1);
657
658 return 0;
659}
660
661static int ds1wm_disable(struct platform_device *pdev)
662{
663 struct asic3 *asic = dev_get_drvdata(pdev->dev.parent);
664
665 asic3_set_register(asic, ASIC3_OFFSET(EXTCF, SELECT),
666 ASIC3_EXTCF_OWM_EN, 0);
667
668 asic3_clk_disable(asic, &asic->clocks[ASIC3_CLOCK_OWM]);
669 asic3_clk_disable(asic, &asic->clocks[ASIC3_CLOCK_EX0]);
670 asic3_clk_disable(asic, &asic->clocks[ASIC3_CLOCK_EX1]);
671
672 return 0;
673}
674
675static struct mfd_cell asic3_cell_ds1wm = {
676 .name = "ds1wm",
677 .enable = ds1wm_enable,
678 .disable = ds1wm_disable,
Samuel Ortiz121ea572011-04-06 11:41:03 +0200679 .platform_data = &ds1wm_pdata,
680 .pdata_size = sizeof(ds1wm_pdata),
Philipp Zabel9461f652009-06-15 12:10:24 +0200681 .num_resources = ARRAY_SIZE(ds1wm_resources),
682 .resources = ds1wm_resources,
683};
684
Ian Molton64e88672010-01-06 13:51:48 +0100685static void asic3_mmc_pwr(struct platform_device *pdev, int state)
686{
687 struct asic3 *asic = dev_get_drvdata(pdev->dev.parent);
688
689 tmio_core_mmc_pwr(asic->tmio_cnf, 1 - asic->bus_shift, state);
690}
691
692static void asic3_mmc_clk_div(struct platform_device *pdev, int state)
693{
694 struct asic3 *asic = dev_get_drvdata(pdev->dev.parent);
695
696 tmio_core_mmc_clk_div(asic->tmio_cnf, 1 - asic->bus_shift, state);
697}
698
Philipp Zabel09f05ce2009-06-15 12:10:25 +0200699static struct tmio_mmc_data asic3_mmc_data = {
Ian Molton64e88672010-01-06 13:51:48 +0100700 .hclk = 24576000,
701 .set_pwr = asic3_mmc_pwr,
702 .set_clk_div = asic3_mmc_clk_div,
Philipp Zabel09f05ce2009-06-15 12:10:25 +0200703};
704
705static struct resource asic3_mmc_resources[] = {
706 {
707 .start = ASIC3_SD_CTRL_BASE,
708 .end = ASIC3_SD_CTRL_BASE + 0x3ff,
709 .flags = IORESOURCE_MEM,
710 },
711 {
Philipp Zabel09f05ce2009-06-15 12:10:25 +0200712 .start = 0,
713 .end = 0,
714 .flags = IORESOURCE_IRQ,
715 },
716};
717
718static int asic3_mmc_enable(struct platform_device *pdev)
719{
720 struct asic3 *asic = dev_get_drvdata(pdev->dev.parent);
721
722 /* Not sure if it must be done bit by bit, but leaving as-is */
723 asic3_set_register(asic, ASIC3_OFFSET(SDHWCTRL, SDCONF),
724 ASIC3_SDHWCTRL_LEVCD, 1);
725 asic3_set_register(asic, ASIC3_OFFSET(SDHWCTRL, SDCONF),
726 ASIC3_SDHWCTRL_LEVWP, 1);
727 asic3_set_register(asic, ASIC3_OFFSET(SDHWCTRL, SDCONF),
728 ASIC3_SDHWCTRL_SUSPEND, 0);
729 asic3_set_register(asic, ASIC3_OFFSET(SDHWCTRL, SDCONF),
730 ASIC3_SDHWCTRL_PCLR, 0);
731
732 asic3_clk_enable(asic, &asic->clocks[ASIC3_CLOCK_EX0]);
733 /* CLK32 used for card detection and for interruption detection
734 * when HCLK is stopped.
735 */
736 asic3_clk_enable(asic, &asic->clocks[ASIC3_CLOCK_EX1]);
737 msleep(1);
738
739 /* HCLK 24.576 MHz, BCLK 12.288 MHz: */
740 asic3_write_register(asic, ASIC3_OFFSET(CLOCK, SEL),
741 CLOCK_SEL_CX | CLOCK_SEL_SD_HCLK_SEL);
742
743 asic3_clk_enable(asic, &asic->clocks[ASIC3_CLOCK_SD_HOST]);
744 asic3_clk_enable(asic, &asic->clocks[ASIC3_CLOCK_SD_BUS]);
745 msleep(1);
746
747 asic3_set_register(asic, ASIC3_OFFSET(EXTCF, SELECT),
748 ASIC3_EXTCF_SD_MEM_ENABLE, 1);
749
750 /* Enable SD card slot 3.3V power supply */
751 asic3_set_register(asic, ASIC3_OFFSET(SDHWCTRL, SDCONF),
752 ASIC3_SDHWCTRL_SDPWR, 1);
753
Ian Molton64e88672010-01-06 13:51:48 +0100754 /* ASIC3_SD_CTRL_BASE assumes 32-bit addressing, TMIO is 16-bit */
755 tmio_core_mmc_enable(asic->tmio_cnf, 1 - asic->bus_shift,
756 ASIC3_SD_CTRL_BASE >> 1);
757
Philipp Zabel09f05ce2009-06-15 12:10:25 +0200758 return 0;
759}
760
761static int asic3_mmc_disable(struct platform_device *pdev)
762{
763 struct asic3 *asic = dev_get_drvdata(pdev->dev.parent);
764
765 /* Put in suspend mode */
766 asic3_set_register(asic, ASIC3_OFFSET(SDHWCTRL, SDCONF),
767 ASIC3_SDHWCTRL_SUSPEND, 1);
768
769 /* Disable clocks */
770 asic3_clk_disable(asic, &asic->clocks[ASIC3_CLOCK_SD_HOST]);
771 asic3_clk_disable(asic, &asic->clocks[ASIC3_CLOCK_SD_BUS]);
772 asic3_clk_disable(asic, &asic->clocks[ASIC3_CLOCK_EX0]);
773 asic3_clk_disable(asic, &asic->clocks[ASIC3_CLOCK_EX1]);
774 return 0;
775}
776
777static struct mfd_cell asic3_cell_mmc = {
778 .name = "tmio-mmc",
779 .enable = asic3_mmc_enable,
780 .disable = asic3_mmc_disable,
Samuel Ortizec719742011-04-06 11:38:14 +0200781 .platform_data = &asic3_mmc_data,
782 .pdata_size = sizeof(asic3_mmc_data),
Philipp Zabel09f05ce2009-06-15 12:10:25 +0200783 .num_resources = ARRAY_SIZE(asic3_mmc_resources),
784 .resources = asic3_mmc_resources,
785};
786
Paul Parsons13ca4f62011-05-13 18:53:03 +0000787static const int clock_ledn[ASIC3_NUM_LEDS] = {
788 [0] = ASIC3_CLOCK_LED0,
789 [1] = ASIC3_CLOCK_LED1,
790 [2] = ASIC3_CLOCK_LED2,
791};
792
793static int asic3_leds_enable(struct platform_device *pdev)
794{
795 const struct mfd_cell *cell = mfd_get_cell(pdev);
796 struct asic3 *asic = dev_get_drvdata(pdev->dev.parent);
797
798 asic3_clk_enable(asic, &asic->clocks[clock_ledn[cell->id]]);
799
800 return 0;
801}
802
803static int asic3_leds_disable(struct platform_device *pdev)
804{
805 const struct mfd_cell *cell = mfd_get_cell(pdev);
806 struct asic3 *asic = dev_get_drvdata(pdev->dev.parent);
807
808 asic3_clk_disable(asic, &asic->clocks[clock_ledn[cell->id]]);
809
810 return 0;
811}
812
813static struct mfd_cell asic3_cell_leds[ASIC3_NUM_LEDS] = {
814 [0] = {
815 .name = "leds-asic3",
816 .id = 0,
817 .enable = asic3_leds_enable,
818 .disable = asic3_leds_disable,
819 },
820 [1] = {
821 .name = "leds-asic3",
822 .id = 1,
823 .enable = asic3_leds_enable,
824 .disable = asic3_leds_disable,
825 },
826 [2] = {
827 .name = "leds-asic3",
828 .id = 2,
829 .enable = asic3_leds_enable,
830 .disable = asic3_leds_disable,
831 },
832};
833
Philipp Zabel9461f652009-06-15 12:10:24 +0200834static int __init asic3_mfd_probe(struct platform_device *pdev,
Paul Parsons13ca4f62011-05-13 18:53:03 +0000835 struct asic3_platform_data *pdata,
Philipp Zabel9461f652009-06-15 12:10:24 +0200836 struct resource *mem)
837{
838 struct asic3 *asic = platform_get_drvdata(pdev);
Philipp Zabel09f05ce2009-06-15 12:10:25 +0200839 struct resource *mem_sdio;
840 int irq, ret;
841
842 mem_sdio = platform_get_resource(pdev, IORESOURCE_MEM, 1);
843 if (!mem_sdio)
844 dev_dbg(asic->dev, "no SDIO MEM resource\n");
845
846 irq = platform_get_irq(pdev, 1);
847 if (irq < 0)
848 dev_dbg(asic->dev, "no SDIO IRQ resource\n");
Philipp Zabel9461f652009-06-15 12:10:24 +0200849
850 /* DS1WM */
851 asic3_set_register(asic, ASIC3_OFFSET(EXTCF, SELECT),
852 ASIC3_EXTCF_OWM_SMB, 0);
853
854 ds1wm_resources[0].start >>= asic->bus_shift;
855 ds1wm_resources[0].end >>= asic->bus_shift;
856
Philipp Zabel09f05ce2009-06-15 12:10:25 +0200857 /* MMC */
Ian Molton64e88672010-01-06 13:51:48 +0100858 asic->tmio_cnf = ioremap((ASIC3_SD_CONFIG_BASE >> asic->bus_shift) +
Paul Parsons74e32d12011-05-15 14:13:11 +0000859 mem_sdio->start,
860 ASIC3_SD_CONFIG_SIZE >> asic->bus_shift);
Ian Molton64e88672010-01-06 13:51:48 +0100861 if (!asic->tmio_cnf) {
862 ret = -ENOMEM;
863 dev_dbg(asic->dev, "Couldn't ioremap SD_CONFIG\n");
864 goto out;
865 }
Philipp Zabel09f05ce2009-06-15 12:10:25 +0200866 asic3_mmc_resources[0].start >>= asic->bus_shift;
867 asic3_mmc_resources[0].end >>= asic->bus_shift;
Philipp Zabel09f05ce2009-06-15 12:10:25 +0200868
Philipp Zabel9461f652009-06-15 12:10:24 +0200869 ret = mfd_add_devices(&pdev->dev, pdev->id,
870 &asic3_cell_ds1wm, 1, mem, asic->irq_base);
Philipp Zabel09f05ce2009-06-15 12:10:25 +0200871 if (ret < 0)
872 goto out;
Philipp Zabel9461f652009-06-15 12:10:24 +0200873
Paul Parsons13ca4f62011-05-13 18:53:03 +0000874 if (mem_sdio && (irq >= 0)) {
Philipp Zabel09f05ce2009-06-15 12:10:25 +0200875 ret = mfd_add_devices(&pdev->dev, pdev->id,
876 &asic3_cell_mmc, 1, mem_sdio, irq);
Paul Parsons13ca4f62011-05-13 18:53:03 +0000877 if (ret < 0)
878 goto out;
879 }
880
881 if (pdata->leds) {
882 int i;
883
884 for (i = 0; i < ASIC3_NUM_LEDS; ++i) {
885 asic3_cell_leds[i].platform_data = &pdata->leds[i];
886 asic3_cell_leds[i].pdata_size = sizeof(pdata->leds[i]);
887 }
888 ret = mfd_add_devices(&pdev->dev, 0,
889 asic3_cell_leds, ASIC3_NUM_LEDS, NULL, 0);
890 }
Philipp Zabel09f05ce2009-06-15 12:10:25 +0200891
892 out:
Philipp Zabel9461f652009-06-15 12:10:24 +0200893 return ret;
894}
895
896static void asic3_mfd_remove(struct platform_device *pdev)
897{
Ian Molton64e88672010-01-06 13:51:48 +0100898 struct asic3 *asic = platform_get_drvdata(pdev);
899
Philipp Zabel9461f652009-06-15 12:10:24 +0200900 mfd_remove_devices(&pdev->dev);
Ian Molton64e88672010-01-06 13:51:48 +0100901 iounmap(asic->tmio_cnf);
Philipp Zabel9461f652009-06-15 12:10:24 +0200902}
903
Samuel Ortizfa9ff4b2008-02-07 00:14:49 -0800904/* Core */
Philipp Zabel065032f2008-06-21 00:51:38 +0200905static int __init asic3_probe(struct platform_device *pdev)
Samuel Ortizfa9ff4b2008-02-07 00:14:49 -0800906{
907 struct asic3_platform_data *pdata = pdev->dev.platform_data;
908 struct asic3 *asic;
909 struct resource *mem;
910 unsigned long clksel;
Samuel Ortiz6f2384c2008-06-20 11:02:19 +0200911 int ret = 0;
Samuel Ortizfa9ff4b2008-02-07 00:14:49 -0800912
913 asic = kzalloc(sizeof(struct asic3), GFP_KERNEL);
Samuel Ortiz6f2384c2008-06-20 11:02:19 +0200914 if (asic == NULL) {
915 printk(KERN_ERR "kzalloc failed\n");
Samuel Ortizfa9ff4b2008-02-07 00:14:49 -0800916 return -ENOMEM;
Samuel Ortiz6f2384c2008-06-20 11:02:19 +0200917 }
Samuel Ortizfa9ff4b2008-02-07 00:14:49 -0800918
919 spin_lock_init(&asic->lock);
920 platform_set_drvdata(pdev, asic);
921 asic->dev = &pdev->dev;
922
923 mem = platform_get_resource(pdev, IORESOURCE_MEM, 0);
924 if (!mem) {
925 ret = -ENOMEM;
Samuel Ortiz24f4f2e2008-06-20 11:11:19 +0200926 dev_err(asic->dev, "no MEM resource\n");
Samuel Ortiz6f2384c2008-06-20 11:02:19 +0200927 goto out_free;
Samuel Ortizfa9ff4b2008-02-07 00:14:49 -0800928 }
929
Philipp Zabelbe584bd2009-06-05 18:31:04 +0200930 asic->mapping = ioremap(mem->start, resource_size(mem));
Samuel Ortizfa9ff4b2008-02-07 00:14:49 -0800931 if (!asic->mapping) {
932 ret = -ENOMEM;
Samuel Ortiz24f4f2e2008-06-20 11:11:19 +0200933 dev_err(asic->dev, "Couldn't ioremap\n");
Samuel Ortiz6f2384c2008-06-20 11:02:19 +0200934 goto out_free;
Samuel Ortizfa9ff4b2008-02-07 00:14:49 -0800935 }
936
937 asic->irq_base = pdata->irq_base;
938
Philipp Zabel99cdb0c2008-07-10 02:17:02 +0200939 /* calculate bus shift from mem resource */
Philipp Zabelbe584bd2009-06-05 18:31:04 +0200940 asic->bus_shift = 2 - (resource_size(mem) >> 12);
Samuel Ortizfa9ff4b2008-02-07 00:14:49 -0800941
942 clksel = 0;
943 asic3_write_register(asic, ASIC3_OFFSET(CLOCK, SEL), clksel);
944
945 ret = asic3_irq_probe(pdev);
946 if (ret < 0) {
Samuel Ortiz24f4f2e2008-06-20 11:11:19 +0200947 dev_err(asic->dev, "Couldn't probe IRQs\n");
Samuel Ortiz6f2384c2008-06-20 11:02:19 +0200948 goto out_unmap;
Samuel Ortizfa9ff4b2008-02-07 00:14:49 -0800949 }
Samuel Ortiz6f2384c2008-06-20 11:02:19 +0200950
951 asic->gpio.base = pdata->gpio_base;
952 asic->gpio.ngpio = ASIC3_NUM_GPIOS;
953 asic->gpio.get = asic3_gpio_get;
954 asic->gpio.set = asic3_gpio_set;
955 asic->gpio.direction_input = asic3_gpio_direction_input;
956 asic->gpio.direction_output = asic3_gpio_direction_output;
957
Samuel Ortiz3b26bf12008-06-20 11:09:51 +0200958 ret = asic3_gpio_probe(pdev,
959 pdata->gpio_config,
960 pdata->gpio_config_num);
Samuel Ortiz6f2384c2008-06-20 11:02:19 +0200961 if (ret < 0) {
Samuel Ortiz24f4f2e2008-06-20 11:11:19 +0200962 dev_err(asic->dev, "GPIO probe failed\n");
Samuel Ortiz6f2384c2008-06-20 11:02:19 +0200963 goto out_irq;
964 }
Samuel Ortizfa9ff4b2008-02-07 00:14:49 -0800965
Philipp Zabele956a2a2009-06-05 18:31:02 +0200966 /* Making a per-device copy is only needed for the
967 * theoretical case of multiple ASIC3s on one board:
968 */
969 memcpy(asic->clocks, asic3_clk_init, sizeof(asic3_clk_init));
970
Paul Parsons13ca4f62011-05-13 18:53:03 +0000971 asic3_mfd_probe(pdev, pdata, mem);
Philipp Zabel9461f652009-06-15 12:10:24 +0200972
Samuel Ortiz24f4f2e2008-06-20 11:11:19 +0200973 dev_info(asic->dev, "ASIC3 Core driver\n");
Samuel Ortizfa9ff4b2008-02-07 00:14:49 -0800974
975 return 0;
976
Samuel Ortiz6f2384c2008-06-20 11:02:19 +0200977 out_irq:
978 asic3_irq_remove(pdev);
979
980 out_unmap:
Samuel Ortizfa9ff4b2008-02-07 00:14:49 -0800981 iounmap(asic->mapping);
Samuel Ortiz6f2384c2008-06-20 11:02:19 +0200982
983 out_free:
Samuel Ortizfa9ff4b2008-02-07 00:14:49 -0800984 kfree(asic);
985
986 return ret;
987}
988
Uwe Kleine-König1e3edaf2009-10-01 10:28:05 +0200989static int __devexit asic3_remove(struct platform_device *pdev)
Samuel Ortizfa9ff4b2008-02-07 00:14:49 -0800990{
Samuel Ortiz6f2384c2008-06-20 11:02:19 +0200991 int ret;
Samuel Ortizfa9ff4b2008-02-07 00:14:49 -0800992 struct asic3 *asic = platform_get_drvdata(pdev);
993
Philipp Zabel9461f652009-06-15 12:10:24 +0200994 asic3_mfd_remove(pdev);
995
Samuel Ortiz6f2384c2008-06-20 11:02:19 +0200996 ret = asic3_gpio_remove(pdev);
997 if (ret < 0)
998 return ret;
Samuel Ortizfa9ff4b2008-02-07 00:14:49 -0800999 asic3_irq_remove(pdev);
1000
1001 asic3_write_register(asic, ASIC3_OFFSET(CLOCK, SEL), 0);
1002
1003 iounmap(asic->mapping);
1004
1005 kfree(asic);
1006
1007 return 0;
1008}
1009
1010static void asic3_shutdown(struct platform_device *pdev)
1011{
1012}
1013
1014static struct platform_driver asic3_device_driver = {
1015 .driver = {
1016 .name = "asic3",
1017 },
Samuel Ortizfa9ff4b2008-02-07 00:14:49 -08001018 .remove = __devexit_p(asic3_remove),
1019 .shutdown = asic3_shutdown,
1020};
1021
1022static int __init asic3_init(void)
1023{
1024 int retval = 0;
Philipp Zabel065032f2008-06-21 00:51:38 +02001025 retval = platform_driver_probe(&asic3_device_driver, asic3_probe);
Samuel Ortizfa9ff4b2008-02-07 00:14:49 -08001026 return retval;
1027}
1028
1029subsys_initcall(asic3_init);