]>
Commit | Line | Data |
---|---|---|
fa9ff4b1 SO |
1 | /* |
2 | * driver/mfd/asic3.c | |
3 | * | |
4 | * Compaq ASIC3 support. | |
5 | * | |
6 | * This program is free software; you can redistribute it and/or modify | |
7 | * it under the terms of the GNU General Public License version 2 as | |
8 | * published by the Free Software Foundation. | |
9 | * | |
10 | * Copyright 2001 Compaq Computer Corporation. | |
11 | * Copyright 2004-2005 Phil Blundell | |
6f2384c4 | 12 | * Copyright 2007-2008 OpenedHand Ltd. |
fa9ff4b1 SO |
13 | * |
14 | * Authors: Phil Blundell <[email protected]>, | |
15 | * Samuel Ortiz <[email protected]> | |
16 | * | |
17 | */ | |
18 | ||
fa9ff4b1 | 19 | #include <linux/kernel.h> |
9461f65a | 20 | #include <linux/delay.h> |
fa9ff4b1 | 21 | #include <linux/irq.h> |
6f2384c4 | 22 | #include <linux/gpio.h> |
5d4a357d | 23 | #include <linux/export.h> |
fa9ff4b1 | 24 | #include <linux/io.h> |
5a0e3ad6 | 25 | #include <linux/slab.h> |
fa9ff4b1 SO |
26 | #include <linux/spinlock.h> |
27 | #include <linux/platform_device.h> | |
28 | ||
29 | #include <linux/mfd/asic3.h> | |
9461f65a PZ |
30 | #include <linux/mfd/core.h> |
31 | #include <linux/mfd/ds1wm.h> | |
09f05ce8 | 32 | #include <linux/mfd/tmio.h> |
fa9ff4b1 | 33 | |
e956a2a8 PZ |
34 | enum { |
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 | ||
49 | struct 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 | ||
59f2ad2e | 61 | static struct asic3_clk asic3_clk_init[] __initdata = { |
e956a2a8 PZ |
62 | 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 | ||
6f2384c4 SO |
76 | struct 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; | |
64e8867b | 85 | void __iomem *tmio_cnf; |
e956a2a8 PZ |
86 | |
87 | struct asic3_clk clocks[ARRAY_SIZE(asic3_clk_init)]; | |
6f2384c4 SO |
88 | }; |
89 | ||
90 | static int asic3_gpio_get(struct gpio_chip *chip, unsigned offset); | |
91 | ||
13ca4f66 | 92 | void asic3_write_register(struct asic3 *asic, unsigned int reg, u32 value) |
fa9ff4b1 | 93 | { |
b32661e0 | 94 | iowrite16(value, asic->mapping + |
fa9ff4b1 SO |
95 | (reg >> asic->bus_shift)); |
96 | } | |
13ca4f66 | 97 | EXPORT_SYMBOL_GPL(asic3_write_register); |
fa9ff4b1 | 98 | |
13ca4f66 | 99 | u32 asic3_read_register(struct asic3 *asic, unsigned int reg) |
fa9ff4b1 | 100 | { |
b32661e0 | 101 | return ioread16(asic->mapping + |
fa9ff4b1 SO |
102 | (reg >> asic->bus_shift)); |
103 | } | |
13ca4f66 | 104 | EXPORT_SYMBOL_GPL(asic3_read_register); |
fa9ff4b1 | 105 | |
59f2ad2e | 106 | static void asic3_set_register(struct asic3 *asic, u32 reg, u32 bits, bool set) |
6483c1b5 PZ |
107 | { |
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 | ||
fa9ff4b1 SO |
121 | /* IRQs */ |
122 | #define MAX_ASIC_ISR_LOOPS 20 | |
3b8139f8 SO |
123 | #define ASIC3_GPIO_BASE_INCR \ |
124 | (ASIC3_GPIO_B_BASE - ASIC3_GPIO_A_BASE) | |
fa9ff4b1 SO |
125 | |
126 | static 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, | |
3b8139f8 | 134 | base + ASIC3_GPIO_EDGE_TRIGGER); |
fa9ff4b1 SO |
135 | edge ^= bit; |
136 | asic3_write_register(asic, | |
3b8139f8 | 137 | base + ASIC3_GPIO_EDGE_TRIGGER, edge); |
fa9ff4b1 SO |
138 | spin_unlock_irqrestore(&asic->lock, flags); |
139 | } | |
140 | ||
141 | static void asic3_irq_demux(unsigned int irq, struct irq_desc *desc) | |
142 | { | |
52a7d607 TG |
143 | struct asic3 *asic = irq_desc_get_handler_data(desc); |
144 | struct irq_data *data = irq_desc_get_irq_data(desc); | |
fa9ff4b1 SO |
145 | int iter, i; |
146 | unsigned long flags; | |
fa9ff4b1 | 147 | |
a09aee8b | 148 | data->chip->irq_ack(data); |
fa9ff4b1 SO |
149 | |
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, | |
3b8139f8 | 156 | ASIC3_OFFSET(INTR, P_INT_STAT)); |
fa9ff4b1 SO |
157 | 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 | ||
3b8139f8 SO |
168 | base = ASIC3_GPIO_A_BASE |
169 | + bank * ASIC3_GPIO_BASE_INCR; | |
fa9ff4b1 SO |
170 | |
171 | spin_lock_irqsave(&asic->lock, flags); | |
172 | istat = asic3_read_register(asic, | |
173 | base + | |
3b8139f8 | 174 | ASIC3_GPIO_INT_STATUS); |
fa9ff4b1 SO |
175 | /* Clearing IntStatus */ |
176 | asic3_write_register(asic, | |
177 | base + | |
3b8139f8 | 178 | ASIC3_GPIO_INT_STATUS, 0); |
fa9ff4b1 SO |
179 | 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; | |
52a7d607 | 191 | generic_handle_irq(irqnr); |
fa9ff4b1 SO |
192 | 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 */ | |
52a7d607 TG |
202 | if (status & (1 << (i - ASIC3_NUM_GPIOS + 4))) |
203 | generic_handle_irq(asic->irq_base + i); | |
fa9ff4b1 SO |
204 | } |
205 | } | |
206 | ||
207 | if (iter >= MAX_ASIC_ISR_LOOPS) | |
24f4f2ee | 208 | dev_err(asic->dev, "interrupt processing overrun\n"); |
fa9ff4b1 SO |
209 | } |
210 | ||
211 | static inline int asic3_irq_to_bank(struct asic3 *asic, int irq) | |
212 | { | |
213 | int n; | |
214 | ||
215 | n = (irq - asic->irq_base) >> 4; | |
216 | ||
3b8139f8 | 217 | return (n * (ASIC3_GPIO_B_BASE - ASIC3_GPIO_A_BASE)); |
fa9ff4b1 SO |
218 | } |
219 | ||
220 | static inline int asic3_irq_to_index(struct asic3 *asic, int irq) | |
221 | { | |
222 | return (irq - asic->irq_base) & 0xf; | |
223 | } | |
224 | ||
0f76aaeb | 225 | static void asic3_mask_gpio_irq(struct irq_data *data) |
fa9ff4b1 | 226 | { |
0f76aaeb | 227 | struct asic3 *asic = irq_data_get_irq_chip_data(data); |
fa9ff4b1 SO |
228 | u32 val, bank, index; |
229 | unsigned long flags; | |
230 | ||
0f76aaeb MB |
231 | bank = asic3_irq_to_bank(asic, data->irq); |
232 | index = asic3_irq_to_index(asic, data->irq); | |
fa9ff4b1 SO |
233 | |
234 | spin_lock_irqsave(&asic->lock, flags); | |
3b8139f8 | 235 | val = asic3_read_register(asic, bank + ASIC3_GPIO_MASK); |
fa9ff4b1 | 236 | val |= 1 << index; |
3b8139f8 | 237 | asic3_write_register(asic, bank + ASIC3_GPIO_MASK, val); |
fa9ff4b1 SO |
238 | spin_unlock_irqrestore(&asic->lock, flags); |
239 | } | |
240 | ||
0f76aaeb | 241 | static void asic3_mask_irq(struct irq_data *data) |
fa9ff4b1 | 242 | { |
0f76aaeb | 243 | struct asic3 *asic = irq_data_get_irq_chip_data(data); |
fa9ff4b1 SO |
244 | int regval; |
245 | unsigned long flags; | |
246 | ||
247 | spin_lock_irqsave(&asic->lock, flags); | |
248 | regval = asic3_read_register(asic, | |
3b8139f8 SO |
249 | ASIC3_INTR_BASE + |
250 | ASIC3_INTR_INT_MASK); | |
fa9ff4b1 SO |
251 | |
252 | regval &= ~(ASIC3_INTMASK_MASK0 << | |
0f76aaeb | 253 | (data->irq - (asic->irq_base + ASIC3_NUM_GPIOS))); |
fa9ff4b1 SO |
254 | |
255 | asic3_write_register(asic, | |
3b8139f8 SO |
256 | ASIC3_INTR_BASE + |
257 | ASIC3_INTR_INT_MASK, | |
fa9ff4b1 SO |
258 | regval); |
259 | spin_unlock_irqrestore(&asic->lock, flags); | |
260 | } | |
261 | ||
0f76aaeb | 262 | static void asic3_unmask_gpio_irq(struct irq_data *data) |
fa9ff4b1 | 263 | { |
0f76aaeb | 264 | struct asic3 *asic = irq_data_get_irq_chip_data(data); |
fa9ff4b1 SO |
265 | u32 val, bank, index; |
266 | unsigned long flags; | |
267 | ||
0f76aaeb MB |
268 | bank = asic3_irq_to_bank(asic, data->irq); |
269 | index = asic3_irq_to_index(asic, data->irq); | |
fa9ff4b1 SO |
270 | |
271 | spin_lock_irqsave(&asic->lock, flags); | |
3b8139f8 | 272 | val = asic3_read_register(asic, bank + ASIC3_GPIO_MASK); |
fa9ff4b1 | 273 | val &= ~(1 << index); |
3b8139f8 | 274 | asic3_write_register(asic, bank + ASIC3_GPIO_MASK, val); |
fa9ff4b1 SO |
275 | spin_unlock_irqrestore(&asic->lock, flags); |
276 | } | |
277 | ||
0f76aaeb | 278 | static void asic3_unmask_irq(struct irq_data *data) |
fa9ff4b1 | 279 | { |
0f76aaeb | 280 | struct asic3 *asic = irq_data_get_irq_chip_data(data); |
fa9ff4b1 SO |
281 | int regval; |
282 | unsigned long flags; | |
283 | ||
284 | spin_lock_irqsave(&asic->lock, flags); | |
285 | regval = asic3_read_register(asic, | |
3b8139f8 SO |
286 | ASIC3_INTR_BASE + |
287 | ASIC3_INTR_INT_MASK); | |
fa9ff4b1 SO |
288 | |
289 | regval |= (ASIC3_INTMASK_MASK0 << | |
0f76aaeb | 290 | (data->irq - (asic->irq_base + ASIC3_NUM_GPIOS))); |
fa9ff4b1 SO |
291 | |
292 | asic3_write_register(asic, | |
3b8139f8 SO |
293 | ASIC3_INTR_BASE + |
294 | ASIC3_INTR_INT_MASK, | |
fa9ff4b1 SO |
295 | regval); |
296 | spin_unlock_irqrestore(&asic->lock, flags); | |
297 | } | |
298 | ||
0f76aaeb | 299 | static int asic3_gpio_irq_type(struct irq_data *data, unsigned int type) |
fa9ff4b1 | 300 | { |
0f76aaeb | 301 | struct asic3 *asic = irq_data_get_irq_chip_data(data); |
fa9ff4b1 SO |
302 | u32 bank, index; |
303 | u16 trigger, level, edge, bit; | |
304 | unsigned long flags; | |
305 | ||
0f76aaeb MB |
306 | bank = asic3_irq_to_bank(asic, data->irq); |
307 | index = asic3_irq_to_index(asic, data->irq); | |
fa9ff4b1 SO |
308 | bit = 1<<index; |
309 | ||
310 | spin_lock_irqsave(&asic->lock, flags); | |
311 | level = asic3_read_register(asic, | |
3b8139f8 | 312 | bank + ASIC3_GPIO_LEVEL_TRIGGER); |
fa9ff4b1 | 313 | edge = asic3_read_register(asic, |
3b8139f8 | 314 | bank + ASIC3_GPIO_EDGE_TRIGGER); |
fa9ff4b1 | 315 | trigger = asic3_read_register(asic, |
3b8139f8 | 316 | bank + ASIC3_GPIO_TRIGGER_TYPE); |
0f76aaeb | 317 | asic->irq_bothedge[(data->irq - asic->irq_base) >> 4] &= ~bit; |
fa9ff4b1 | 318 | |
6cab4860 | 319 | if (type == IRQ_TYPE_EDGE_RISING) { |
fa9ff4b1 SO |
320 | trigger |= bit; |
321 | edge |= bit; | |
6cab4860 | 322 | } else if (type == IRQ_TYPE_EDGE_FALLING) { |
fa9ff4b1 SO |
323 | trigger |= bit; |
324 | edge &= ~bit; | |
6cab4860 | 325 | } else if (type == IRQ_TYPE_EDGE_BOTH) { |
fa9ff4b1 | 326 | trigger |= bit; |
0f76aaeb | 327 | if (asic3_gpio_get(&asic->gpio, data->irq - asic->irq_base)) |
fa9ff4b1 SO |
328 | edge &= ~bit; |
329 | else | |
330 | edge |= bit; | |
0f76aaeb | 331 | asic->irq_bothedge[(data->irq - asic->irq_base) >> 4] |= bit; |
6cab4860 | 332 | } else if (type == IRQ_TYPE_LEVEL_LOW) { |
fa9ff4b1 SO |
333 | trigger &= ~bit; |
334 | level &= ~bit; | |
6cab4860 | 335 | } else if (type == IRQ_TYPE_LEVEL_HIGH) { |
fa9ff4b1 SO |
336 | trigger &= ~bit; |
337 | level |= bit; | |
338 | } else { | |
339 | /* | |
6cab4860 | 340 | * if type == IRQ_TYPE_NONE, we should mask interrupts, but |
fa9ff4b1 SO |
341 | * be careful to not unmask them if mask was also called. |
342 | * Probably need internal state for mask. | |
343 | */ | |
24f4f2ee | 344 | dev_notice(asic->dev, "irq type not changed\n"); |
fa9ff4b1 | 345 | } |
3b8139f8 | 346 | asic3_write_register(asic, bank + ASIC3_GPIO_LEVEL_TRIGGER, |
fa9ff4b1 | 347 | level); |
3b8139f8 | 348 | asic3_write_register(asic, bank + ASIC3_GPIO_EDGE_TRIGGER, |
fa9ff4b1 | 349 | edge); |
3b8139f8 | 350 | asic3_write_register(asic, bank + ASIC3_GPIO_TRIGGER_TYPE, |
fa9ff4b1 SO |
351 | trigger); |
352 | spin_unlock_irqrestore(&asic->lock, flags); | |
353 | return 0; | |
354 | } | |
355 | ||
356 | static struct irq_chip asic3_gpio_irq_chip = { | |
357 | .name = "ASIC3-GPIO", | |
0f76aaeb MB |
358 | .irq_ack = asic3_mask_gpio_irq, |
359 | .irq_mask = asic3_mask_gpio_irq, | |
360 | .irq_unmask = asic3_unmask_gpio_irq, | |
361 | .irq_set_type = asic3_gpio_irq_type, | |
fa9ff4b1 SO |
362 | }; |
363 | ||
364 | static struct irq_chip asic3_irq_chip = { | |
365 | .name = "ASIC3", | |
0f76aaeb MB |
366 | .irq_ack = asic3_mask_irq, |
367 | .irq_mask = asic3_mask_irq, | |
368 | .irq_unmask = asic3_unmask_irq, | |
fa9ff4b1 SO |
369 | }; |
370 | ||
065032f6 | 371 | static int __init asic3_irq_probe(struct platform_device *pdev) |
fa9ff4b1 SO |
372 | { |
373 | struct asic3 *asic = platform_get_drvdata(pdev); | |
374 | unsigned long clksel = 0; | |
375 | unsigned int irq, irq_base; | |
c491b2ff | 376 | int ret; |
fa9ff4b1 | 377 | |
c491b2ff RK |
378 | ret = platform_get_irq(pdev, 0); |
379 | if (ret < 0) | |
380 | return ret; | |
381 | asic->irq_nr = ret; | |
fa9ff4b1 SO |
382 | |
383 | /* turn on clock to IRQ controller */ | |
384 | clksel |= CLOCK_SEL_CX; | |
385 | asic3_write_register(asic, ASIC3_OFFSET(CLOCK, SEL), | |
386 | clksel); | |
387 | ||
388 | irq_base = asic->irq_base; | |
389 | ||
390 | for (irq = irq_base; irq < irq_base + ASIC3_NR_IRQS; irq++) { | |
391 | if (irq < asic->irq_base + ASIC3_NUM_GPIOS) | |
d5bb1221 | 392 | irq_set_chip(irq, &asic3_gpio_irq_chip); |
fa9ff4b1 | 393 | else |
d5bb1221 | 394 | irq_set_chip(irq, &asic3_irq_chip); |
fa9ff4b1 | 395 | |
d5bb1221 TG |
396 | irq_set_chip_data(irq, asic); |
397 | irq_set_handler(irq, handle_level_irq); | |
fa9ff4b1 SO |
398 | set_irq_flags(irq, IRQF_VALID | IRQF_PROBE); |
399 | } | |
400 | ||
3b8139f8 | 401 | asic3_write_register(asic, ASIC3_OFFSET(INTR, INT_MASK), |
fa9ff4b1 SO |
402 | ASIC3_INTMASK_GINTMASK); |
403 | ||
d5bb1221 TG |
404 | irq_set_chained_handler(asic->irq_nr, asic3_irq_demux); |
405 | irq_set_irq_type(asic->irq_nr, IRQ_TYPE_EDGE_RISING); | |
406 | irq_set_handler_data(asic->irq_nr, asic); | |
fa9ff4b1 SO |
407 | |
408 | return 0; | |
409 | } | |
410 | ||
411 | static void asic3_irq_remove(struct platform_device *pdev) | |
412 | { | |
413 | struct asic3 *asic = platform_get_drvdata(pdev); | |
414 | unsigned int irq, irq_base; | |
415 | ||
416 | irq_base = asic->irq_base; | |
417 | ||
418 | for (irq = irq_base; irq < irq_base + ASIC3_NR_IRQS; irq++) { | |
419 | set_irq_flags(irq, 0); | |
d6f7ce9f | 420 | irq_set_chip_and_handler(irq, NULL, NULL); |
d5bb1221 | 421 | irq_set_chip_data(irq, NULL); |
fa9ff4b1 | 422 | } |
d5bb1221 | 423 | irq_set_chained_handler(asic->irq_nr, NULL); |
fa9ff4b1 SO |
424 | } |
425 | ||
426 | /* GPIOs */ | |
6f2384c4 SO |
427 | static int asic3_gpio_direction(struct gpio_chip *chip, |
428 | unsigned offset, int out) | |
429 | { | |
430 | u32 mask = ASIC3_GPIO_TO_MASK(offset), out_reg; | |
431 | unsigned int gpio_base; | |
432 | unsigned long flags; | |
433 | struct asic3 *asic; | |
434 | ||
435 | asic = container_of(chip, struct asic3, gpio); | |
436 | gpio_base = ASIC3_GPIO_TO_BASE(offset); | |
437 | ||
3b8139f8 | 438 | if (gpio_base > ASIC3_GPIO_D_BASE) { |
24f4f2ee SO |
439 | dev_err(asic->dev, "Invalid base (0x%x) for gpio %d\n", |
440 | gpio_base, offset); | |
6f2384c4 SO |
441 | return -EINVAL; |
442 | } | |
443 | ||
444 | spin_lock_irqsave(&asic->lock, flags); | |
445 | ||
3b8139f8 | 446 | out_reg = asic3_read_register(asic, gpio_base + ASIC3_GPIO_DIRECTION); |
6f2384c4 SO |
447 | |
448 | /* Input is 0, Output is 1 */ | |
449 | if (out) | |
450 | out_reg |= mask; | |
451 | else | |
452 | out_reg &= ~mask; | |
453 | ||
3b8139f8 | 454 | asic3_write_register(asic, gpio_base + ASIC3_GPIO_DIRECTION, out_reg); |
6f2384c4 SO |
455 | |
456 | spin_unlock_irqrestore(&asic->lock, flags); | |
457 | ||
458 | return 0; | |
459 | ||
460 | } | |
461 | ||
462 | static int asic3_gpio_direction_input(struct gpio_chip *chip, | |
463 | unsigned offset) | |
464 | { | |
465 | return asic3_gpio_direction(chip, offset, 0); | |
466 | } | |
467 | ||
468 | static int asic3_gpio_direction_output(struct gpio_chip *chip, | |
469 | unsigned offset, int value) | |
470 | { | |
471 | return asic3_gpio_direction(chip, offset, 1); | |
472 | } | |
473 | ||
474 | static int asic3_gpio_get(struct gpio_chip *chip, | |
475 | unsigned offset) | |
476 | { | |
477 | unsigned int gpio_base; | |
478 | u32 mask = ASIC3_GPIO_TO_MASK(offset); | |
479 | struct asic3 *asic; | |
480 | ||
481 | asic = container_of(chip, struct asic3, gpio); | |
482 | gpio_base = ASIC3_GPIO_TO_BASE(offset); | |
483 | ||
3b8139f8 | 484 | if (gpio_base > ASIC3_GPIO_D_BASE) { |
24f4f2ee SO |
485 | dev_err(asic->dev, "Invalid base (0x%x) for gpio %d\n", |
486 | gpio_base, offset); | |
6f2384c4 SO |
487 | return -EINVAL; |
488 | } | |
489 | ||
3b8139f8 | 490 | return asic3_read_register(asic, gpio_base + ASIC3_GPIO_STATUS) & mask; |
6f2384c4 SO |
491 | } |
492 | ||
493 | static void asic3_gpio_set(struct gpio_chip *chip, | |
494 | unsigned offset, int value) | |
495 | { | |
496 | u32 mask, out_reg; | |
497 | unsigned int gpio_base; | |
498 | unsigned long flags; | |
499 | struct asic3 *asic; | |
500 | ||
501 | asic = container_of(chip, struct asic3, gpio); | |
502 | gpio_base = ASIC3_GPIO_TO_BASE(offset); | |
503 | ||
3b8139f8 | 504 | if (gpio_base > ASIC3_GPIO_D_BASE) { |
24f4f2ee SO |
505 | dev_err(asic->dev, "Invalid base (0x%x) for gpio %d\n", |
506 | gpio_base, offset); | |
6f2384c4 SO |
507 | return; |
508 | } | |
509 | ||
510 | mask = ASIC3_GPIO_TO_MASK(offset); | |
511 | ||
512 | spin_lock_irqsave(&asic->lock, flags); | |
513 | ||
3b8139f8 | 514 | out_reg = asic3_read_register(asic, gpio_base + ASIC3_GPIO_OUT); |
6f2384c4 SO |
515 | |
516 | if (value) | |
517 | out_reg |= mask; | |
518 | else | |
519 | out_reg &= ~mask; | |
520 | ||
3b8139f8 | 521 | asic3_write_register(asic, gpio_base + ASIC3_GPIO_OUT, out_reg); |
6f2384c4 SO |
522 | |
523 | spin_unlock_irqrestore(&asic->lock, flags); | |
524 | ||
525 | return; | |
526 | } | |
527 | ||
450b1151 PP |
528 | static int asic3_gpio_to_irq(struct gpio_chip *chip, unsigned offset) |
529 | { | |
02269ab1 DA |
530 | struct asic3 *asic = container_of(chip, struct asic3, gpio); |
531 | ||
532 | return (offset < ASIC3_NUM_GPIOS) ? asic->irq_base + offset : -ENXIO; | |
450b1151 PP |
533 | } |
534 | ||
065032f6 PZ |
535 | static __init int asic3_gpio_probe(struct platform_device *pdev, |
536 | u16 *gpio_config, int num) | |
fa9ff4b1 | 537 | { |
fa9ff4b1 | 538 | struct asic3 *asic = platform_get_drvdata(pdev); |
3b26bf17 SO |
539 | u16 alt_reg[ASIC3_NUM_GPIO_BANKS]; |
540 | u16 out_reg[ASIC3_NUM_GPIO_BANKS]; | |
541 | u16 dir_reg[ASIC3_NUM_GPIO_BANKS]; | |
542 | int i; | |
fa9ff4b1 | 543 | |
59f0cb0f RK |
544 | memset(alt_reg, 0, ASIC3_NUM_GPIO_BANKS * sizeof(u16)); |
545 | memset(out_reg, 0, ASIC3_NUM_GPIO_BANKS * sizeof(u16)); | |
546 | memset(dir_reg, 0, ASIC3_NUM_GPIO_BANKS * sizeof(u16)); | |
3b26bf17 SO |
547 | |
548 | /* Enable all GPIOs */ | |
3b8139f8 SO |
549 | asic3_write_register(asic, ASIC3_GPIO_OFFSET(A, MASK), 0xffff); |
550 | asic3_write_register(asic, ASIC3_GPIO_OFFSET(B, MASK), 0xffff); | |
551 | asic3_write_register(asic, ASIC3_GPIO_OFFSET(C, MASK), 0xffff); | |
552 | asic3_write_register(asic, ASIC3_GPIO_OFFSET(D, MASK), 0xffff); | |
fa9ff4b1 | 553 | |
3b26bf17 SO |
554 | for (i = 0; i < num; i++) { |
555 | u8 alt, pin, dir, init, bank_num, bit_num; | |
556 | u16 config = gpio_config[i]; | |
557 | ||
558 | pin = ASIC3_CONFIG_GPIO_PIN(config); | |
559 | alt = ASIC3_CONFIG_GPIO_ALT(config); | |
560 | dir = ASIC3_CONFIG_GPIO_DIR(config); | |
561 | init = ASIC3_CONFIG_GPIO_INIT(config); | |
562 | ||
563 | bank_num = ASIC3_GPIO_TO_BANK(pin); | |
564 | bit_num = ASIC3_GPIO_TO_BIT(pin); | |
565 | ||
566 | alt_reg[bank_num] |= (alt << bit_num); | |
567 | out_reg[bank_num] |= (init << bit_num); | |
568 | dir_reg[bank_num] |= (dir << bit_num); | |
569 | } | |
570 | ||
571 | for (i = 0; i < ASIC3_NUM_GPIO_BANKS; i++) { | |
572 | asic3_write_register(asic, | |
573 | ASIC3_BANK_TO_BASE(i) + | |
3b8139f8 | 574 | ASIC3_GPIO_DIRECTION, |
3b26bf17 SO |
575 | dir_reg[i]); |
576 | asic3_write_register(asic, | |
3b8139f8 | 577 | ASIC3_BANK_TO_BASE(i) + ASIC3_GPIO_OUT, |
3b26bf17 SO |
578 | out_reg[i]); |
579 | asic3_write_register(asic, | |
580 | ASIC3_BANK_TO_BASE(i) + | |
3b8139f8 | 581 | ASIC3_GPIO_ALT_FUNCTION, |
3b26bf17 | 582 | alt_reg[i]); |
fa9ff4b1 SO |
583 | } |
584 | ||
6f2384c4 | 585 | return gpiochip_add(&asic->gpio); |
fa9ff4b1 SO |
586 | } |
587 | ||
6f2384c4 | 588 | static int asic3_gpio_remove(struct platform_device *pdev) |
fa9ff4b1 | 589 | { |
6f2384c4 SO |
590 | struct asic3 *asic = platform_get_drvdata(pdev); |
591 | ||
592 | return gpiochip_remove(&asic->gpio); | |
fa9ff4b1 SO |
593 | } |
594 | ||
c29a8127 | 595 | static void asic3_clk_enable(struct asic3 *asic, struct asic3_clk *clk) |
e956a2a8 PZ |
596 | { |
597 | unsigned long flags; | |
598 | u32 cdex; | |
599 | ||
600 | spin_lock_irqsave(&asic->lock, flags); | |
601 | if (clk->enabled++ == 0) { | |
602 | cdex = asic3_read_register(asic, ASIC3_OFFSET(CLOCK, CDEX)); | |
603 | cdex |= clk->cdex; | |
604 | asic3_write_register(asic, ASIC3_OFFSET(CLOCK, CDEX), cdex); | |
605 | } | |
606 | spin_unlock_irqrestore(&asic->lock, flags); | |
e956a2a8 PZ |
607 | } |
608 | ||
609 | static void asic3_clk_disable(struct asic3 *asic, struct asic3_clk *clk) | |
610 | { | |
611 | unsigned long flags; | |
612 | u32 cdex; | |
613 | ||
614 | WARN_ON(clk->enabled == 0); | |
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); | |
623 | } | |
fa9ff4b1 | 624 | |
9461f65a PZ |
625 | /* MFD cells (SPI, PWM, LED, DS1WM, MMC) */ |
626 | static struct ds1wm_driver_data ds1wm_pdata = { | |
627 | .active_high = 1, | |
f607e7fc | 628 | .reset_recover_delay = 1, |
9461f65a PZ |
629 | }; |
630 | ||
631 | static struct resource ds1wm_resources[] = { | |
632 | { | |
633 | .start = ASIC3_OWM_BASE, | |
634 | .end = ASIC3_OWM_BASE + 0x13, | |
635 | .flags = IORESOURCE_MEM, | |
636 | }, | |
637 | { | |
638 | .start = ASIC3_IRQ_OWM, | |
fe421425 | 639 | .end = ASIC3_IRQ_OWM, |
9461f65a PZ |
640 | .flags = IORESOURCE_IRQ | IORESOURCE_IRQ_HIGHEDGE, |
641 | }, | |
642 | }; | |
643 | ||
644 | static int ds1wm_enable(struct platform_device *pdev) | |
645 | { | |
646 | struct asic3 *asic = dev_get_drvdata(pdev->dev.parent); | |
647 | ||
648 | /* Turn on external clocks and the OWM clock */ | |
649 | asic3_clk_enable(asic, &asic->clocks[ASIC3_CLOCK_EX0]); | |
650 | asic3_clk_enable(asic, &asic->clocks[ASIC3_CLOCK_EX1]); | |
651 | asic3_clk_enable(asic, &asic->clocks[ASIC3_CLOCK_OWM]); | |
652 | msleep(1); | |
653 | ||
654 | /* Reset and enable DS1WM */ | |
655 | asic3_set_register(asic, ASIC3_OFFSET(EXTCF, RESET), | |
656 | ASIC3_EXTCF_OWM_RESET, 1); | |
657 | msleep(1); | |
658 | asic3_set_register(asic, ASIC3_OFFSET(EXTCF, RESET), | |
659 | ASIC3_EXTCF_OWM_RESET, 0); | |
660 | msleep(1); | |
661 | asic3_set_register(asic, ASIC3_OFFSET(EXTCF, SELECT), | |
662 | ASIC3_EXTCF_OWM_EN, 1); | |
663 | msleep(1); | |
664 | ||
665 | return 0; | |
666 | } | |
667 | ||
668 | static int ds1wm_disable(struct platform_device *pdev) | |
669 | { | |
670 | struct asic3 *asic = dev_get_drvdata(pdev->dev.parent); | |
671 | ||
672 | asic3_set_register(asic, ASIC3_OFFSET(EXTCF, SELECT), | |
673 | ASIC3_EXTCF_OWM_EN, 0); | |
674 | ||
675 | asic3_clk_disable(asic, &asic->clocks[ASIC3_CLOCK_OWM]); | |
676 | asic3_clk_disable(asic, &asic->clocks[ASIC3_CLOCK_EX0]); | |
677 | asic3_clk_disable(asic, &asic->clocks[ASIC3_CLOCK_EX1]); | |
678 | ||
679 | return 0; | |
680 | } | |
681 | ||
682 | static struct mfd_cell asic3_cell_ds1wm = { | |
683 | .name = "ds1wm", | |
684 | .enable = ds1wm_enable, | |
685 | .disable = ds1wm_disable, | |
121ea573 SO |
686 | .platform_data = &ds1wm_pdata, |
687 | .pdata_size = sizeof(ds1wm_pdata), | |
9461f65a PZ |
688 | .num_resources = ARRAY_SIZE(ds1wm_resources), |
689 | .resources = ds1wm_resources, | |
690 | }; | |
691 | ||
64e8867b IM |
692 | static void asic3_mmc_pwr(struct platform_device *pdev, int state) |
693 | { | |
694 | struct asic3 *asic = dev_get_drvdata(pdev->dev.parent); | |
695 | ||
696 | tmio_core_mmc_pwr(asic->tmio_cnf, 1 - asic->bus_shift, state); | |
697 | } | |
698 | ||
699 | static void asic3_mmc_clk_div(struct platform_device *pdev, int state) | |
700 | { | |
701 | struct asic3 *asic = dev_get_drvdata(pdev->dev.parent); | |
702 | ||
703 | tmio_core_mmc_clk_div(asic->tmio_cnf, 1 - asic->bus_shift, state); | |
704 | } | |
705 | ||
09f05ce8 | 706 | static struct tmio_mmc_data asic3_mmc_data = { |
64e8867b IM |
707 | .hclk = 24576000, |
708 | .set_pwr = asic3_mmc_pwr, | |
709 | .set_clk_div = asic3_mmc_clk_div, | |
09f05ce8 PZ |
710 | }; |
711 | ||
712 | static struct resource asic3_mmc_resources[] = { | |
713 | { | |
714 | .start = ASIC3_SD_CTRL_BASE, | |
715 | .end = ASIC3_SD_CTRL_BASE + 0x3ff, | |
716 | .flags = IORESOURCE_MEM, | |
717 | }, | |
09f05ce8 PZ |
718 | { |
719 | .start = 0, | |
720 | .end = 0, | |
721 | .flags = IORESOURCE_IRQ, | |
722 | }, | |
723 | }; | |
724 | ||
725 | static int asic3_mmc_enable(struct platform_device *pdev) | |
726 | { | |
727 | struct asic3 *asic = dev_get_drvdata(pdev->dev.parent); | |
728 | ||
729 | /* Not sure if it must be done bit by bit, but leaving as-is */ | |
730 | asic3_set_register(asic, ASIC3_OFFSET(SDHWCTRL, SDCONF), | |
731 | ASIC3_SDHWCTRL_LEVCD, 1); | |
732 | asic3_set_register(asic, ASIC3_OFFSET(SDHWCTRL, SDCONF), | |
733 | ASIC3_SDHWCTRL_LEVWP, 1); | |
734 | asic3_set_register(asic, ASIC3_OFFSET(SDHWCTRL, SDCONF), | |
735 | ASIC3_SDHWCTRL_SUSPEND, 0); | |
736 | asic3_set_register(asic, ASIC3_OFFSET(SDHWCTRL, SDCONF), | |
737 | ASIC3_SDHWCTRL_PCLR, 0); | |
738 | ||
739 | asic3_clk_enable(asic, &asic->clocks[ASIC3_CLOCK_EX0]); | |
740 | /* CLK32 used for card detection and for interruption detection | |
741 | * when HCLK is stopped. | |
742 | */ | |
743 | asic3_clk_enable(asic, &asic->clocks[ASIC3_CLOCK_EX1]); | |
744 | msleep(1); | |
745 | ||
746 | /* HCLK 24.576 MHz, BCLK 12.288 MHz: */ | |
747 | asic3_write_register(asic, ASIC3_OFFSET(CLOCK, SEL), | |
748 | CLOCK_SEL_CX | CLOCK_SEL_SD_HCLK_SEL); | |
749 | ||
750 | asic3_clk_enable(asic, &asic->clocks[ASIC3_CLOCK_SD_HOST]); | |
751 | asic3_clk_enable(asic, &asic->clocks[ASIC3_CLOCK_SD_BUS]); | |
752 | msleep(1); | |
753 | ||
754 | asic3_set_register(asic, ASIC3_OFFSET(EXTCF, SELECT), | |
755 | ASIC3_EXTCF_SD_MEM_ENABLE, 1); | |
756 | ||
757 | /* Enable SD card slot 3.3V power supply */ | |
758 | asic3_set_register(asic, ASIC3_OFFSET(SDHWCTRL, SDCONF), | |
759 | ASIC3_SDHWCTRL_SDPWR, 1); | |
760 | ||
64e8867b IM |
761 | /* ASIC3_SD_CTRL_BASE assumes 32-bit addressing, TMIO is 16-bit */ |
762 | tmio_core_mmc_enable(asic->tmio_cnf, 1 - asic->bus_shift, | |
763 | ASIC3_SD_CTRL_BASE >> 1); | |
764 | ||
09f05ce8 PZ |
765 | return 0; |
766 | } | |
767 | ||
768 | static int asic3_mmc_disable(struct platform_device *pdev) | |
769 | { | |
770 | struct asic3 *asic = dev_get_drvdata(pdev->dev.parent); | |
771 | ||
772 | /* Put in suspend mode */ | |
773 | asic3_set_register(asic, ASIC3_OFFSET(SDHWCTRL, SDCONF), | |
774 | ASIC3_SDHWCTRL_SUSPEND, 1); | |
775 | ||
776 | /* Disable clocks */ | |
777 | asic3_clk_disable(asic, &asic->clocks[ASIC3_CLOCK_SD_HOST]); | |
778 | asic3_clk_disable(asic, &asic->clocks[ASIC3_CLOCK_SD_BUS]); | |
779 | asic3_clk_disable(asic, &asic->clocks[ASIC3_CLOCK_EX0]); | |
780 | asic3_clk_disable(asic, &asic->clocks[ASIC3_CLOCK_EX1]); | |
781 | return 0; | |
782 | } | |
783 | ||
784 | static struct mfd_cell asic3_cell_mmc = { | |
785 | .name = "tmio-mmc", | |
786 | .enable = asic3_mmc_enable, | |
787 | .disable = asic3_mmc_disable, | |
3c6e3653 PP |
788 | .suspend = asic3_mmc_disable, |
789 | .resume = asic3_mmc_enable, | |
ec71974f SO |
790 | .platform_data = &asic3_mmc_data, |
791 | .pdata_size = sizeof(asic3_mmc_data), | |
09f05ce8 PZ |
792 | .num_resources = ARRAY_SIZE(asic3_mmc_resources), |
793 | .resources = asic3_mmc_resources, | |
794 | }; | |
795 | ||
13ca4f66 PP |
796 | static const int clock_ledn[ASIC3_NUM_LEDS] = { |
797 | [0] = ASIC3_CLOCK_LED0, | |
798 | [1] = ASIC3_CLOCK_LED1, | |
799 | [2] = ASIC3_CLOCK_LED2, | |
800 | }; | |
801 | ||
802 | static int asic3_leds_enable(struct platform_device *pdev) | |
803 | { | |
804 | const struct mfd_cell *cell = mfd_get_cell(pdev); | |
805 | struct asic3 *asic = dev_get_drvdata(pdev->dev.parent); | |
806 | ||
807 | asic3_clk_enable(asic, &asic->clocks[clock_ledn[cell->id]]); | |
808 | ||
809 | return 0; | |
810 | } | |
811 | ||
812 | static int asic3_leds_disable(struct platform_device *pdev) | |
813 | { | |
814 | const struct mfd_cell *cell = mfd_get_cell(pdev); | |
815 | struct asic3 *asic = dev_get_drvdata(pdev->dev.parent); | |
816 | ||
817 | asic3_clk_disable(asic, &asic->clocks[clock_ledn[cell->id]]); | |
818 | ||
819 | return 0; | |
820 | } | |
821 | ||
e0b13b5b PP |
822 | static int asic3_leds_suspend(struct platform_device *pdev) |
823 | { | |
824 | const struct mfd_cell *cell = mfd_get_cell(pdev); | |
825 | struct asic3 *asic = dev_get_drvdata(pdev->dev.parent); | |
826 | ||
827 | while (asic3_gpio_get(&asic->gpio, ASIC3_GPIO(C, cell->id)) != 0) | |
828 | msleep(1); | |
829 | ||
830 | asic3_clk_disable(asic, &asic->clocks[clock_ledn[cell->id]]); | |
831 | ||
832 | return 0; | |
833 | } | |
834 | ||
13ca4f66 PP |
835 | static struct mfd_cell asic3_cell_leds[ASIC3_NUM_LEDS] = { |
836 | [0] = { | |
837 | .name = "leds-asic3", | |
838 | .id = 0, | |
839 | .enable = asic3_leds_enable, | |
840 | .disable = asic3_leds_disable, | |
e0b13b5b PP |
841 | .suspend = asic3_leds_suspend, |
842 | .resume = asic3_leds_enable, | |
13ca4f66 PP |
843 | }, |
844 | [1] = { | |
845 | .name = "leds-asic3", | |
846 | .id = 1, | |
847 | .enable = asic3_leds_enable, | |
848 | .disable = asic3_leds_disable, | |
e0b13b5b PP |
849 | .suspend = asic3_leds_suspend, |
850 | .resume = asic3_leds_enable, | |
13ca4f66 PP |
851 | }, |
852 | [2] = { | |
853 | .name = "leds-asic3", | |
854 | .id = 2, | |
855 | .enable = asic3_leds_enable, | |
856 | .disable = asic3_leds_disable, | |
e0b13b5b PP |
857 | .suspend = asic3_leds_suspend, |
858 | .resume = asic3_leds_enable, | |
13ca4f66 PP |
859 | }, |
860 | }; | |
861 | ||
9461f65a | 862 | static int __init asic3_mfd_probe(struct platform_device *pdev, |
13ca4f66 | 863 | struct asic3_platform_data *pdata, |
9461f65a PZ |
864 | struct resource *mem) |
865 | { | |
866 | struct asic3 *asic = platform_get_drvdata(pdev); | |
09f05ce8 PZ |
867 | struct resource *mem_sdio; |
868 | int irq, ret; | |
869 | ||
870 | mem_sdio = platform_get_resource(pdev, IORESOURCE_MEM, 1); | |
871 | if (!mem_sdio) | |
872 | dev_dbg(asic->dev, "no SDIO MEM resource\n"); | |
873 | ||
874 | irq = platform_get_irq(pdev, 1); | |
875 | if (irq < 0) | |
876 | dev_dbg(asic->dev, "no SDIO IRQ resource\n"); | |
9461f65a PZ |
877 | |
878 | /* DS1WM */ | |
879 | asic3_set_register(asic, ASIC3_OFFSET(EXTCF, SELECT), | |
880 | ASIC3_EXTCF_OWM_SMB, 0); | |
881 | ||
882 | ds1wm_resources[0].start >>= asic->bus_shift; | |
883 | ds1wm_resources[0].end >>= asic->bus_shift; | |
884 | ||
09f05ce8 | 885 | /* MMC */ |
64e8867b | 886 | asic->tmio_cnf = ioremap((ASIC3_SD_CONFIG_BASE >> asic->bus_shift) + |
74e32d1b PP |
887 | mem_sdio->start, |
888 | ASIC3_SD_CONFIG_SIZE >> asic->bus_shift); | |
64e8867b IM |
889 | if (!asic->tmio_cnf) { |
890 | ret = -ENOMEM; | |
891 | dev_dbg(asic->dev, "Couldn't ioremap SD_CONFIG\n"); | |
892 | goto out; | |
893 | } | |
09f05ce8 PZ |
894 | asic3_mmc_resources[0].start >>= asic->bus_shift; |
895 | asic3_mmc_resources[0].end >>= asic->bus_shift; | |
09f05ce8 | 896 | |
9461f65a PZ |
897 | ret = mfd_add_devices(&pdev->dev, pdev->id, |
898 | &asic3_cell_ds1wm, 1, mem, asic->irq_base); | |
09f05ce8 PZ |
899 | if (ret < 0) |
900 | goto out; | |
901 | ||
13ca4f66 | 902 | if (mem_sdio && (irq >= 0)) { |
09f05ce8 PZ |
903 | ret = mfd_add_devices(&pdev->dev, pdev->id, |
904 | &asic3_cell_mmc, 1, mem_sdio, irq); | |
13ca4f66 PP |
905 | if (ret < 0) |
906 | goto out; | |
907 | } | |
908 | ||
909 | if (pdata->leds) { | |
910 | int i; | |
911 | ||
912 | for (i = 0; i < ASIC3_NUM_LEDS; ++i) { | |
913 | asic3_cell_leds[i].platform_data = &pdata->leds[i]; | |
914 | asic3_cell_leds[i].pdata_size = sizeof(pdata->leds[i]); | |
915 | } | |
916 | ret = mfd_add_devices(&pdev->dev, 0, | |
917 | asic3_cell_leds, ASIC3_NUM_LEDS, NULL, 0); | |
918 | } | |
9461f65a | 919 | |
09f05ce8 | 920 | out: |
9461f65a PZ |
921 | return ret; |
922 | } | |
923 | ||
924 | static void asic3_mfd_remove(struct platform_device *pdev) | |
925 | { | |
64e8867b IM |
926 | struct asic3 *asic = platform_get_drvdata(pdev); |
927 | ||
9461f65a | 928 | mfd_remove_devices(&pdev->dev); |
64e8867b | 929 | iounmap(asic->tmio_cnf); |
9461f65a PZ |
930 | } |
931 | ||
fa9ff4b1 | 932 | /* Core */ |
065032f6 | 933 | static int __init asic3_probe(struct platform_device *pdev) |
fa9ff4b1 SO |
934 | { |
935 | struct asic3_platform_data *pdata = pdev->dev.platform_data; | |
936 | struct asic3 *asic; | |
937 | struct resource *mem; | |
938 | unsigned long clksel; | |
6f2384c4 | 939 | int ret = 0; |
fa9ff4b1 SO |
940 | |
941 | asic = kzalloc(sizeof(struct asic3), GFP_KERNEL); | |
6f2384c4 SO |
942 | if (asic == NULL) { |
943 | printk(KERN_ERR "kzalloc failed\n"); | |
fa9ff4b1 | 944 | return -ENOMEM; |
6f2384c4 | 945 | } |
fa9ff4b1 SO |
946 | |
947 | spin_lock_init(&asic->lock); | |
948 | platform_set_drvdata(pdev, asic); | |
949 | asic->dev = &pdev->dev; | |
950 | ||
951 | mem = platform_get_resource(pdev, IORESOURCE_MEM, 0); | |
952 | if (!mem) { | |
953 | ret = -ENOMEM; | |
24f4f2ee | 954 | dev_err(asic->dev, "no MEM resource\n"); |
6f2384c4 | 955 | goto out_free; |
fa9ff4b1 SO |
956 | } |
957 | ||
be584bd5 | 958 | asic->mapping = ioremap(mem->start, resource_size(mem)); |
fa9ff4b1 SO |
959 | if (!asic->mapping) { |
960 | ret = -ENOMEM; | |
24f4f2ee | 961 | dev_err(asic->dev, "Couldn't ioremap\n"); |
6f2384c4 | 962 | goto out_free; |
fa9ff4b1 SO |
963 | } |
964 | ||
965 | asic->irq_base = pdata->irq_base; | |
966 | ||
99cdb0c8 | 967 | /* calculate bus shift from mem resource */ |
be584bd5 | 968 | asic->bus_shift = 2 - (resource_size(mem) >> 12); |
fa9ff4b1 SO |
969 | |
970 | clksel = 0; | |
971 | asic3_write_register(asic, ASIC3_OFFSET(CLOCK, SEL), clksel); | |
972 | ||
973 | ret = asic3_irq_probe(pdev); | |
974 | if (ret < 0) { | |
24f4f2ee | 975 | dev_err(asic->dev, "Couldn't probe IRQs\n"); |
6f2384c4 SO |
976 | goto out_unmap; |
977 | } | |
978 | ||
d8e4a88b | 979 | asic->gpio.label = "asic3"; |
6f2384c4 SO |
980 | asic->gpio.base = pdata->gpio_base; |
981 | asic->gpio.ngpio = ASIC3_NUM_GPIOS; | |
982 | asic->gpio.get = asic3_gpio_get; | |
983 | asic->gpio.set = asic3_gpio_set; | |
984 | asic->gpio.direction_input = asic3_gpio_direction_input; | |
985 | asic->gpio.direction_output = asic3_gpio_direction_output; | |
450b1151 | 986 | asic->gpio.to_irq = asic3_gpio_to_irq; |
6f2384c4 | 987 | |
3b26bf17 SO |
988 | ret = asic3_gpio_probe(pdev, |
989 | pdata->gpio_config, | |
990 | pdata->gpio_config_num); | |
6f2384c4 | 991 | if (ret < 0) { |
24f4f2ee | 992 | dev_err(asic->dev, "GPIO probe failed\n"); |
6f2384c4 | 993 | goto out_irq; |
fa9ff4b1 | 994 | } |
fa9ff4b1 | 995 | |
e956a2a8 PZ |
996 | /* Making a per-device copy is only needed for the |
997 | * theoretical case of multiple ASIC3s on one board: | |
998 | */ | |
999 | memcpy(asic->clocks, asic3_clk_init, sizeof(asic3_clk_init)); | |
1000 | ||
13ca4f66 | 1001 | asic3_mfd_probe(pdev, pdata, mem); |
9461f65a | 1002 | |
24f4f2ee | 1003 | dev_info(asic->dev, "ASIC3 Core driver\n"); |
fa9ff4b1 SO |
1004 | |
1005 | return 0; | |
1006 | ||
6f2384c4 SO |
1007 | out_irq: |
1008 | asic3_irq_remove(pdev); | |
1009 | ||
1010 | out_unmap: | |
fa9ff4b1 | 1011 | iounmap(asic->mapping); |
6f2384c4 SO |
1012 | |
1013 | out_free: | |
fa9ff4b1 SO |
1014 | kfree(asic); |
1015 | ||
1016 | return ret; | |
1017 | } | |
1018 | ||
1e3edaf6 | 1019 | static int __devexit asic3_remove(struct platform_device *pdev) |
fa9ff4b1 | 1020 | { |
6f2384c4 | 1021 | int ret; |
fa9ff4b1 SO |
1022 | struct asic3 *asic = platform_get_drvdata(pdev); |
1023 | ||
9461f65a PZ |
1024 | asic3_mfd_remove(pdev); |
1025 | ||
6f2384c4 SO |
1026 | ret = asic3_gpio_remove(pdev); |
1027 | if (ret < 0) | |
1028 | return ret; | |
fa9ff4b1 SO |
1029 | asic3_irq_remove(pdev); |
1030 | ||
1031 | asic3_write_register(asic, ASIC3_OFFSET(CLOCK, SEL), 0); | |
1032 | ||
1033 | iounmap(asic->mapping); | |
1034 | ||
1035 | kfree(asic); | |
1036 | ||
1037 | return 0; | |
1038 | } | |
1039 | ||
1040 | static void asic3_shutdown(struct platform_device *pdev) | |
1041 | { | |
1042 | } | |
1043 | ||
1044 | static struct platform_driver asic3_device_driver = { | |
1045 | .driver = { | |
1046 | .name = "asic3", | |
1047 | }, | |
fa9ff4b1 SO |
1048 | .remove = __devexit_p(asic3_remove), |
1049 | .shutdown = asic3_shutdown, | |
1050 | }; | |
1051 | ||
1052 | static int __init asic3_init(void) | |
1053 | { | |
1054 | int retval = 0; | |
065032f6 | 1055 | retval = platform_driver_probe(&asic3_device_driver, asic3_probe); |
fa9ff4b1 SO |
1056 | return retval; |
1057 | } | |
1058 | ||
1059 | subsys_initcall(asic3_init); |