sm501: fixes for akpms comments on gpiolib addition
[linux-2.6-block.git] / drivers / mfd / sm501.c
CommitLineData
b6d6454f
BD
1/* linux/drivers/mfd/sm501.c
2 *
3 * Copyright (C) 2006 Simtec Electronics
4 * Ben Dooks <ben@simtec.co.uk>
5 * Vincent Sanders <vince@simtec.co.uk>
6 *
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License version 2 as
9 * published by the Free Software Foundation.
10 *
11 * SM501 MFD driver
12*/
13
14#include <linux/kernel.h>
15#include <linux/module.h>
16#include <linux/delay.h>
17#include <linux/init.h>
18#include <linux/list.h>
19#include <linux/device.h>
20#include <linux/platform_device.h>
21#include <linux/pci.h>
f61be273 22#include <linux/gpio.h>
42cd2366 23#include <linux/i2c-gpio.h>
b6d6454f
BD
24
25#include <linux/sm501.h>
26#include <linux/sm501-regs.h>
61711f8f 27#include <linux/serial_8250.h>
b6d6454f
BD
28
29#include <asm/io.h>
30
31struct sm501_device {
32 struct list_head list;
33 struct platform_device pdev;
34};
35
f61be273
BD
36struct sm501_gpio;
37
38struct sm501_gpio_chip {
39 struct gpio_chip gpio;
40 struct sm501_gpio *ourgpio; /* to get back to parent. */
41 void __iomem *regbase;
42};
43
44struct sm501_gpio {
45 struct sm501_gpio_chip low;
46 struct sm501_gpio_chip high;
47 spinlock_t lock;
48
49 unsigned int registered : 1;
50 void __iomem *regs;
51 struct resource *regs_res;
52};
53
b6d6454f
BD
54struct sm501_devdata {
55 spinlock_t reg_lock;
56 struct mutex clock_lock;
57 struct list_head devices;
f61be273 58 struct sm501_gpio gpio;
b6d6454f
BD
59
60 struct device *dev;
61 struct resource *io_res;
62 struct resource *mem_res;
63 struct resource *regs_claim;
64 struct sm501_platdata *platdata;
65
f61be273 66
331d7475
BD
67 unsigned int in_suspend;
68 unsigned long pm_misc;
69
b6d6454f
BD
70 int unit_power[20];
71 unsigned int pdev_id;
72 unsigned int irq;
73 void __iomem *regs;
3149be50 74 unsigned int rev;
b6d6454f
BD
75};
76
f61be273 77
b6d6454f
BD
78#define MHZ (1000 * 1000)
79
80#ifdef DEBUG
245904a4 81static const unsigned int div_tab[] = {
b6d6454f
BD
82 [0] = 1,
83 [1] = 2,
84 [2] = 4,
85 [3] = 8,
86 [4] = 16,
87 [5] = 32,
88 [6] = 64,
89 [7] = 128,
90 [8] = 3,
91 [9] = 6,
92 [10] = 12,
93 [11] = 24,
94 [12] = 48,
95 [13] = 96,
96 [14] = 192,
97 [15] = 384,
98 [16] = 5,
99 [17] = 10,
100 [18] = 20,
101 [19] = 40,
102 [20] = 80,
103 [21] = 160,
104 [22] = 320,
105 [23] = 604,
106};
107
108static unsigned long decode_div(unsigned long pll2, unsigned long val,
109 unsigned int lshft, unsigned int selbit,
245904a4 110 unsigned long mask)
b6d6454f
BD
111{
112 if (val & selbit)
113 pll2 = 288 * MHZ;
114
245904a4 115 return pll2 / div_tab[(val >> lshft) & mask];
b6d6454f
BD
116}
117
118#define fmt_freq(x) ((x) / MHZ), ((x) % MHZ), (x)
119
120/* sm501_dump_clk
121 *
122 * Print out the current clock configuration for the device
123*/
124
125static void sm501_dump_clk(struct sm501_devdata *sm)
126{
127 unsigned long misct = readl(sm->regs + SM501_MISC_TIMING);
128 unsigned long pm0 = readl(sm->regs + SM501_POWER_MODE_0_CLOCK);
129 unsigned long pm1 = readl(sm->regs + SM501_POWER_MODE_1_CLOCK);
130 unsigned long pmc = readl(sm->regs + SM501_POWER_MODE_CONTROL);
131 unsigned long sdclk0, sdclk1;
132 unsigned long pll2 = 0;
133
134 switch (misct & 0x30) {
135 case 0x00:
136 pll2 = 336 * MHZ;
137 break;
138 case 0x10:
139 pll2 = 288 * MHZ;
140 break;
141 case 0x20:
142 pll2 = 240 * MHZ;
143 break;
144 case 0x30:
145 pll2 = 192 * MHZ;
146 break;
147 }
148
149 sdclk0 = (misct & (1<<12)) ? pll2 : 288 * MHZ;
245904a4 150 sdclk0 /= div_tab[((misct >> 8) & 0xf)];
b6d6454f
BD
151
152 sdclk1 = (misct & (1<<20)) ? pll2 : 288 * MHZ;
245904a4 153 sdclk1 /= div_tab[((misct >> 16) & 0xf)];
b6d6454f
BD
154
155 dev_dbg(sm->dev, "MISCT=%08lx, PM0=%08lx, PM1=%08lx\n",
156 misct, pm0, pm1);
157
158 dev_dbg(sm->dev, "PLL2 = %ld.%ld MHz (%ld), SDCLK0=%08lx, SDCLK1=%08lx\n",
159 fmt_freq(pll2), sdclk0, sdclk1);
160
161 dev_dbg(sm->dev, "SDRAM: PM0=%ld, PM1=%ld\n", sdclk0, sdclk1);
162
163 dev_dbg(sm->dev, "PM0[%c]: "
164 "P2 %ld.%ld MHz (%ld), V2 %ld.%ld (%ld), "
48986f06 165 "M %ld.%ld (%ld), MX1 %ld.%ld (%ld)\n",
b6d6454f 166 (pmc & 3 ) == 0 ? '*' : '-',
245904a4
VS
167 fmt_freq(decode_div(pll2, pm0, 24, 1<<29, 31)),
168 fmt_freq(decode_div(pll2, pm0, 16, 1<<20, 15)),
169 fmt_freq(decode_div(pll2, pm0, 8, 1<<12, 15)),
170 fmt_freq(decode_div(pll2, pm0, 0, 1<<4, 15)));
b6d6454f
BD
171
172 dev_dbg(sm->dev, "PM1[%c]: "
173 "P2 %ld.%ld MHz (%ld), V2 %ld.%ld (%ld), "
174 "M %ld.%ld (%ld), MX1 %ld.%ld (%ld)\n",
175 (pmc & 3 ) == 1 ? '*' : '-',
245904a4
VS
176 fmt_freq(decode_div(pll2, pm1, 24, 1<<29, 31)),
177 fmt_freq(decode_div(pll2, pm1, 16, 1<<20, 15)),
178 fmt_freq(decode_div(pll2, pm1, 8, 1<<12, 15)),
179 fmt_freq(decode_div(pll2, pm1, 0, 1<<4, 15)));
b6d6454f 180}
331d7475
BD
181
182static void sm501_dump_regs(struct sm501_devdata *sm)
183{
184 void __iomem *regs = sm->regs;
185
186 dev_info(sm->dev, "System Control %08x\n",
187 readl(regs + SM501_SYSTEM_CONTROL));
188 dev_info(sm->dev, "Misc Control %08x\n",
189 readl(regs + SM501_MISC_CONTROL));
190 dev_info(sm->dev, "GPIO Control Low %08x\n",
191 readl(regs + SM501_GPIO31_0_CONTROL));
192 dev_info(sm->dev, "GPIO Control Hi %08x\n",
193 readl(regs + SM501_GPIO63_32_CONTROL));
194 dev_info(sm->dev, "DRAM Control %08x\n",
195 readl(regs + SM501_DRAM_CONTROL));
196 dev_info(sm->dev, "Arbitration Ctrl %08x\n",
197 readl(regs + SM501_ARBTRTN_CONTROL));
198 dev_info(sm->dev, "Misc Timing %08x\n",
199 readl(regs + SM501_MISC_TIMING));
200}
201
202static void sm501_dump_gate(struct sm501_devdata *sm)
b6d6454f 203{
331d7475
BD
204 dev_info(sm->dev, "CurrentGate %08x\n",
205 readl(sm->regs + SM501_CURRENT_GATE));
206 dev_info(sm->dev, "CurrentClock %08x\n",
207 readl(sm->regs + SM501_CURRENT_CLOCK));
208 dev_info(sm->dev, "PowerModeControl %08x\n",
209 readl(sm->regs + SM501_POWER_MODE_CONTROL));
b6d6454f 210}
331d7475
BD
211
212#else
213static inline void sm501_dump_gate(struct sm501_devdata *sm) { }
214static inline void sm501_dump_regs(struct sm501_devdata *sm) { }
215static inline void sm501_dump_clk(struct sm501_devdata *sm) { }
b6d6454f
BD
216#endif
217
218/* sm501_sync_regs
219 *
220 * ensure the
221*/
222
223static void sm501_sync_regs(struct sm501_devdata *sm)
224{
225 readl(sm->regs);
226}
227
331d7475
BD
228static inline void sm501_mdelay(struct sm501_devdata *sm, unsigned int delay)
229{
230 /* during suspend/resume, we are currently not allowed to sleep,
231 * so change to using mdelay() instead of msleep() if we
232 * are in one of these paths */
233
234 if (sm->in_suspend)
235 mdelay(delay);
236 else
237 msleep(delay);
238}
239
b6d6454f
BD
240/* sm501_misc_control
241 *
331d7475 242 * alters the miscellaneous control parameters
b6d6454f
BD
243*/
244
245int sm501_misc_control(struct device *dev,
246 unsigned long set, unsigned long clear)
247{
248 struct sm501_devdata *sm = dev_get_drvdata(dev);
249 unsigned long misc;
250 unsigned long save;
251 unsigned long to;
252
253 spin_lock_irqsave(&sm->reg_lock, save);
254
255 misc = readl(sm->regs + SM501_MISC_CONTROL);
256 to = (misc & ~clear) | set;
257
258 if (to != misc) {
259 writel(to, sm->regs + SM501_MISC_CONTROL);
260 sm501_sync_regs(sm);
261
262 dev_dbg(sm->dev, "MISC_CONTROL %08lx\n", misc);
263 }
264
265 spin_unlock_irqrestore(&sm->reg_lock, save);
266 return to;
267}
268
269EXPORT_SYMBOL_GPL(sm501_misc_control);
270
271/* sm501_modify_reg
272 *
273 * Modify a register in the SM501 which may be shared with other
274 * drivers.
275*/
276
277unsigned long sm501_modify_reg(struct device *dev,
278 unsigned long reg,
279 unsigned long set,
280 unsigned long clear)
281{
282 struct sm501_devdata *sm = dev_get_drvdata(dev);
283 unsigned long data;
284 unsigned long save;
285
286 spin_lock_irqsave(&sm->reg_lock, save);
287
288 data = readl(sm->regs + reg);
289 data |= set;
290 data &= ~clear;
291
292 writel(data, sm->regs + reg);
293 sm501_sync_regs(sm);
294
295 spin_unlock_irqrestore(&sm->reg_lock, save);
296
297 return data;
298}
299
300EXPORT_SYMBOL_GPL(sm501_modify_reg);
301
b6d6454f
BD
302/* sm501_unit_power
303 *
304 * alters the power active gate to set specific units on or off
305 */
306
307int sm501_unit_power(struct device *dev, unsigned int unit, unsigned int to)
308{
309 struct sm501_devdata *sm = dev_get_drvdata(dev);
310 unsigned long mode;
311 unsigned long gate;
312 unsigned long clock;
313
314 mutex_lock(&sm->clock_lock);
315
316 mode = readl(sm->regs + SM501_POWER_MODE_CONTROL);
317 gate = readl(sm->regs + SM501_CURRENT_GATE);
318 clock = readl(sm->regs + SM501_CURRENT_CLOCK);
319
320 mode &= 3; /* get current power mode */
321
bf703c3f 322 if (unit >= ARRAY_SIZE(sm->unit_power)) {
145980a0 323 dev_err(dev, "%s: bad unit %d\n", __func__, unit);
b6d6454f
BD
324 goto already;
325 }
326
145980a0 327 dev_dbg(sm->dev, "%s: unit %d, cur %d, to %d\n", __func__, unit,
b6d6454f
BD
328 sm->unit_power[unit], to);
329
330 if (to == 0 && sm->unit_power[unit] == 0) {
331 dev_err(sm->dev, "unit %d is already shutdown\n", unit);
332 goto already;
333 }
334
335 sm->unit_power[unit] += to ? 1 : -1;
336 to = sm->unit_power[unit] ? 1 : 0;
337
338 if (to) {
339 if (gate & (1 << unit))
340 goto already;
341 gate |= (1 << unit);
342 } else {
343 if (!(gate & (1 << unit)))
344 goto already;
345 gate &= ~(1 << unit);
346 }
347
348 switch (mode) {
349 case 1:
350 writel(gate, sm->regs + SM501_POWER_MODE_0_GATE);
351 writel(clock, sm->regs + SM501_POWER_MODE_0_CLOCK);
352 mode = 0;
353 break;
354 case 2:
355 case 0:
356 writel(gate, sm->regs + SM501_POWER_MODE_1_GATE);
357 writel(clock, sm->regs + SM501_POWER_MODE_1_CLOCK);
358 mode = 1;
359 break;
360
361 default:
362 return -1;
363 }
364
365 writel(mode, sm->regs + SM501_POWER_MODE_CONTROL);
366 sm501_sync_regs(sm);
367
368 dev_dbg(sm->dev, "gate %08lx, clock %08lx, mode %08lx\n",
369 gate, clock, mode);
370
331d7475 371 sm501_mdelay(sm, 16);
b6d6454f
BD
372
373 already:
374 mutex_unlock(&sm->clock_lock);
375 return gate;
376}
377
378EXPORT_SYMBOL_GPL(sm501_unit_power);
379
380
381/* Perform a rounded division. */
382static long sm501fb_round_div(long num, long denom)
383{
384 /* n / d + 1 / 2 = (2n + d) / 2d */
385 return (2 * num + denom) / (2 * denom);
386}
387
388/* clock value structure. */
389struct sm501_clock {
390 unsigned long mclk;
391 int divider;
392 int shift;
3149be50 393 unsigned int m, n, k;
b6d6454f
BD
394};
395
3149be50
VS
396/* sm501_calc_clock
397 *
398 * Calculates the nearest discrete clock frequency that
399 * can be achieved with the specified input clock.
400 * the maximum divisor is 3 or 5
401 */
402
403static int sm501_calc_clock(unsigned long freq,
404 struct sm501_clock *clock,
405 int max_div,
406 unsigned long mclk,
407 long *best_diff)
408{
409 int ret = 0;
410 int divider;
411 int shift;
412 long diff;
413
414 /* try dividers 1 and 3 for CRT and for panel,
415 try divider 5 for panel only.*/
416
417 for (divider = 1; divider <= max_div; divider += 2) {
418 /* try all 8 shift values.*/
419 for (shift = 0; shift < 8; shift++) {
420 /* Calculate difference to requested clock */
421 diff = sm501fb_round_div(mclk, divider << shift) - freq;
422 if (diff < 0)
423 diff = -diff;
424
425 /* If it is less than the current, use it */
426 if (diff < *best_diff) {
427 *best_diff = diff;
428
429 clock->mclk = mclk;
430 clock->divider = divider;
431 clock->shift = shift;
432 ret = 1;
433 }
434 }
435 }
436
437 return ret;
438}
439
440/* sm501_calc_pll
441 *
442 * Calculates the nearest discrete clock frequency that can be
443 * achieved using the programmable PLL.
444 * the maximum divisor is 3 or 5
445 */
446
447static unsigned long sm501_calc_pll(unsigned long freq,
448 struct sm501_clock *clock,
449 int max_div)
450{
451 unsigned long mclk;
452 unsigned int m, n, k;
453 long best_diff = 999999999;
454
455 /*
456 * The SM502 datasheet doesn't specify the min/max values for M and N.
457 * N = 1 at least doesn't work in practice.
458 */
459 for (m = 2; m <= 255; m++) {
460 for (n = 2; n <= 127; n++) {
461 for (k = 0; k <= 1; k++) {
462 mclk = (24000000UL * m / n) >> k;
463
464 if (sm501_calc_clock(freq, clock, max_div,
465 mclk, &best_diff)) {
466 clock->m = m;
467 clock->n = n;
468 clock->k = k;
469 }
470 }
471 }
472 }
473
474 /* Return best clock. */
475 return clock->mclk / (clock->divider << clock->shift);
476}
477
b6d6454f
BD
478/* sm501_select_clock
479 *
3149be50
VS
480 * Calculates the nearest discrete clock frequency that can be
481 * achieved using the 288MHz and 336MHz PLLs.
b6d6454f
BD
482 * the maximum divisor is 3 or 5
483 */
3149be50 484
b6d6454f
BD
485static unsigned long sm501_select_clock(unsigned long freq,
486 struct sm501_clock *clock,
487 int max_div)
488{
489 unsigned long mclk;
b6d6454f
BD
490 long best_diff = 999999999;
491
492 /* Try 288MHz and 336MHz clocks. */
493 for (mclk = 288000000; mclk <= 336000000; mclk += 48000000) {
3149be50 494 sm501_calc_clock(freq, clock, max_div, mclk, &best_diff);
b6d6454f
BD
495 }
496
497 /* Return best clock. */
498 return clock->mclk / (clock->divider << clock->shift);
499}
500
501/* sm501_set_clock
502 *
503 * set one of the four clock sources to the closest available frequency to
504 * the one specified
505*/
506
507unsigned long sm501_set_clock(struct device *dev,
508 int clksrc,
509 unsigned long req_freq)
510{
511 struct sm501_devdata *sm = dev_get_drvdata(dev);
512 unsigned long mode = readl(sm->regs + SM501_POWER_MODE_CONTROL);
513 unsigned long gate = readl(sm->regs + SM501_CURRENT_GATE);
514 unsigned long clock = readl(sm->regs + SM501_CURRENT_CLOCK);
515 unsigned char reg;
3149be50 516 unsigned int pll_reg = 0;
b6d6454f
BD
517 unsigned long sm501_freq; /* the actual frequency acheived */
518
519 struct sm501_clock to;
520
521 /* find achivable discrete frequency and setup register value
522 * accordingly, V2XCLK, MCLK and M1XCLK are the same P2XCLK
523 * has an extra bit for the divider */
524
525 switch (clksrc) {
526 case SM501_CLOCK_P2XCLK:
527 /* This clock is divided in half so to achive the
528 * requested frequency the value must be multiplied by
529 * 2. This clock also has an additional pre divisor */
530
3149be50
VS
531 if (sm->rev >= 0xC0) {
532 /* SM502 -> use the programmable PLL */
533 sm501_freq = (sm501_calc_pll(2 * req_freq,
534 &to, 5) / 2);
535 reg = to.shift & 0x07;/* bottom 3 bits are shift */
536 if (to.divider == 3)
537 reg |= 0x08; /* /3 divider required */
538 else if (to.divider == 5)
539 reg |= 0x10; /* /5 divider required */
540 reg |= 0x40; /* select the programmable PLL */
541 pll_reg = 0x20000 | (to.k << 15) | (to.n << 8) | to.m;
542 } else {
543 sm501_freq = (sm501_select_clock(2 * req_freq,
544 &to, 5) / 2);
545 reg = to.shift & 0x07;/* bottom 3 bits are shift */
546 if (to.divider == 3)
547 reg |= 0x08; /* /3 divider required */
548 else if (to.divider == 5)
549 reg |= 0x10; /* /5 divider required */
550 if (to.mclk != 288000000)
551 reg |= 0x20; /* which mclk pll is source */
552 }
b6d6454f
BD
553 break;
554
555 case SM501_CLOCK_V2XCLK:
556 /* This clock is divided in half so to achive the
557 * requested frequency the value must be multiplied by 2. */
558
559 sm501_freq = (sm501_select_clock(2 * req_freq, &to, 3) / 2);
560 reg=to.shift & 0x07; /* bottom 3 bits are shift */
561 if (to.divider == 3)
562 reg |= 0x08; /* /3 divider required */
563 if (to.mclk != 288000000)
564 reg |= 0x10; /* which mclk pll is source */
565 break;
566
567 case SM501_CLOCK_MCLK:
568 case SM501_CLOCK_M1XCLK:
569 /* These clocks are the same and not further divided */
570
571 sm501_freq = sm501_select_clock( req_freq, &to, 3);
572 reg=to.shift & 0x07; /* bottom 3 bits are shift */
573 if (to.divider == 3)
574 reg |= 0x08; /* /3 divider required */
575 if (to.mclk != 288000000)
576 reg |= 0x10; /* which mclk pll is source */
577 break;
578
579 default:
580 return 0; /* this is bad */
581 }
582
583 mutex_lock(&sm->clock_lock);
584
585 mode = readl(sm->regs + SM501_POWER_MODE_CONTROL);
586 gate = readl(sm->regs + SM501_CURRENT_GATE);
587 clock = readl(sm->regs + SM501_CURRENT_CLOCK);
588
589 clock = clock & ~(0xFF << clksrc);
590 clock |= reg<<clksrc;
591
592 mode &= 3; /* find current mode */
593
594 switch (mode) {
595 case 1:
596 writel(gate, sm->regs + SM501_POWER_MODE_0_GATE);
597 writel(clock, sm->regs + SM501_POWER_MODE_0_CLOCK);
598 mode = 0;
599 break;
600 case 2:
601 case 0:
602 writel(gate, sm->regs + SM501_POWER_MODE_1_GATE);
603 writel(clock, sm->regs + SM501_POWER_MODE_1_CLOCK);
604 mode = 1;
605 break;
606
607 default:
608 mutex_unlock(&sm->clock_lock);
609 return -1;
610 }
611
612 writel(mode, sm->regs + SM501_POWER_MODE_CONTROL);
3149be50
VS
613
614 if (pll_reg)
615 writel(pll_reg, sm->regs + SM501_PROGRAMMABLE_PLL_CONTROL);
616
b6d6454f
BD
617 sm501_sync_regs(sm);
618
619 dev_info(sm->dev, "gate %08lx, clock %08lx, mode %08lx\n",
620 gate, clock, mode);
621
331d7475 622 sm501_mdelay(sm, 16);
b6d6454f
BD
623 mutex_unlock(&sm->clock_lock);
624
625 sm501_dump_clk(sm);
626
627 return sm501_freq;
628}
629
630EXPORT_SYMBOL_GPL(sm501_set_clock);
631
632/* sm501_find_clock
633 *
634 * finds the closest available frequency for a given clock
635*/
636
3149be50
VS
637unsigned long sm501_find_clock(struct device *dev,
638 int clksrc,
b6d6454f
BD
639 unsigned long req_freq)
640{
3149be50 641 struct sm501_devdata *sm = dev_get_drvdata(dev);
b6d6454f
BD
642 unsigned long sm501_freq; /* the frequency achiveable by the 501 */
643 struct sm501_clock to;
644
645 switch (clksrc) {
646 case SM501_CLOCK_P2XCLK:
3149be50
VS
647 if (sm->rev >= 0xC0) {
648 /* SM502 -> use the programmable PLL */
649 sm501_freq = (sm501_calc_pll(2 * req_freq,
650 &to, 5) / 2);
651 } else {
652 sm501_freq = (sm501_select_clock(2 * req_freq,
653 &to, 5) / 2);
654 }
b6d6454f
BD
655 break;
656
657 case SM501_CLOCK_V2XCLK:
658 sm501_freq = (sm501_select_clock(2 * req_freq, &to, 3) / 2);
659 break;
660
661 case SM501_CLOCK_MCLK:
662 case SM501_CLOCK_M1XCLK:
663 sm501_freq = sm501_select_clock(req_freq, &to, 3);
664 break;
665
666 default:
667 sm501_freq = 0; /* error */
668 }
669
670 return sm501_freq;
671}
672
673EXPORT_SYMBOL_GPL(sm501_find_clock);
674
675static struct sm501_device *to_sm_device(struct platform_device *pdev)
676{
677 return container_of(pdev, struct sm501_device, pdev);
678}
679
680/* sm501_device_release
681 *
682 * A release function for the platform devices we create to allow us to
683 * free any items we allocated
684*/
685
686static void sm501_device_release(struct device *dev)
687{
688 kfree(to_sm_device(to_platform_device(dev)));
689}
690
691/* sm501_create_subdev
692 *
693 * Create a skeleton platform device with resources for passing to a
694 * sub-driver
695*/
696
697static struct platform_device *
61711f8f
MD
698sm501_create_subdev(struct sm501_devdata *sm, char *name,
699 unsigned int res_count, unsigned int platform_data_size)
b6d6454f
BD
700{
701 struct sm501_device *smdev;
702
703 smdev = kzalloc(sizeof(struct sm501_device) +
61711f8f
MD
704 (sizeof(struct resource) * res_count) +
705 platform_data_size, GFP_KERNEL);
b6d6454f
BD
706 if (!smdev)
707 return NULL;
708
709 smdev->pdev.dev.release = sm501_device_release;
710
711 smdev->pdev.name = name;
712 smdev->pdev.id = sm->pdev_id;
b6d6454f
BD
713 smdev->pdev.dev.parent = sm->dev;
714
61711f8f
MD
715 if (res_count) {
716 smdev->pdev.resource = (struct resource *)(smdev+1);
717 smdev->pdev.num_resources = res_count;
718 }
719 if (platform_data_size)
720 smdev->pdev.dev.platform_data = (void *)(smdev+1);
721
b6d6454f
BD
722 return &smdev->pdev;
723}
724
725/* sm501_register_device
726 *
727 * Register a platform device created with sm501_create_subdev()
728*/
729
730static int sm501_register_device(struct sm501_devdata *sm,
731 struct platform_device *pdev)
732{
733 struct sm501_device *smdev = to_sm_device(pdev);
734 int ptr;
735 int ret;
736
737 for (ptr = 0; ptr < pdev->num_resources; ptr++) {
738 printk("%s[%d] flags %08lx: %08llx..%08llx\n",
739 pdev->name, ptr,
740 pdev->resource[ptr].flags,
741 (unsigned long long)pdev->resource[ptr].start,
742 (unsigned long long)pdev->resource[ptr].end);
743 }
744
745 ret = platform_device_register(pdev);
746
747 if (ret >= 0) {
748 dev_dbg(sm->dev, "registered %s\n", pdev->name);
749 list_add_tail(&smdev->list, &sm->devices);
750 } else
751 dev_err(sm->dev, "error registering %s (%d)\n",
752 pdev->name, ret);
753
754 return ret;
755}
756
757/* sm501_create_subio
758 *
759 * Fill in an IO resource for a sub device
760*/
761
762static void sm501_create_subio(struct sm501_devdata *sm,
763 struct resource *res,
764 resource_size_t offs,
765 resource_size_t size)
766{
767 res->flags = IORESOURCE_MEM;
768 res->parent = sm->io_res;
769 res->start = sm->io_res->start + offs;
770 res->end = res->start + size - 1;
771}
772
773/* sm501_create_mem
774 *
775 * Fill in an MEM resource for a sub device
776*/
777
778static void sm501_create_mem(struct sm501_devdata *sm,
779 struct resource *res,
780 resource_size_t *offs,
781 resource_size_t size)
782{
783 *offs -= size; /* adjust memory size */
784
785 res->flags = IORESOURCE_MEM;
786 res->parent = sm->mem_res;
787 res->start = sm->mem_res->start + *offs;
788 res->end = res->start + size - 1;
789}
790
791/* sm501_create_irq
792 *
793 * Fill in an IRQ resource for a sub device
794*/
795
796static void sm501_create_irq(struct sm501_devdata *sm,
797 struct resource *res)
798{
799 res->flags = IORESOURCE_IRQ;
800 res->parent = NULL;
801 res->start = res->end = sm->irq;
802}
803
804static int sm501_register_usbhost(struct sm501_devdata *sm,
805 resource_size_t *mem_avail)
806{
807 struct platform_device *pdev;
808
61711f8f 809 pdev = sm501_create_subdev(sm, "sm501-usb", 3, 0);
b6d6454f
BD
810 if (!pdev)
811 return -ENOMEM;
812
813 sm501_create_subio(sm, &pdev->resource[0], 0x40000, 0x20000);
814 sm501_create_mem(sm, &pdev->resource[1], mem_avail, 256*1024);
815 sm501_create_irq(sm, &pdev->resource[2]);
816
817 return sm501_register_device(sm, pdev);
818}
819
61711f8f
MD
820static void sm501_setup_uart_data(struct sm501_devdata *sm,
821 struct plat_serial8250_port *uart_data,
822 unsigned int offset)
823{
824 uart_data->membase = sm->regs + offset;
825 uart_data->mapbase = sm->io_res->start + offset;
826 uart_data->iotype = UPIO_MEM;
827 uart_data->irq = sm->irq;
828 uart_data->flags = UPF_BOOT_AUTOCONF | UPF_SKIP_TEST | UPF_SHARE_IRQ;
829 uart_data->regshift = 2;
830 uart_data->uartclk = (9600 * 16);
831}
832
833static int sm501_register_uart(struct sm501_devdata *sm, int devices)
834{
835 struct platform_device *pdev;
836 struct plat_serial8250_port *uart_data;
837
838 pdev = sm501_create_subdev(sm, "serial8250", 0,
839 sizeof(struct plat_serial8250_port) * 3);
840 if (!pdev)
841 return -ENOMEM;
842
843 uart_data = pdev->dev.platform_data;
844
845 if (devices & SM501_USE_UART0) {
846 sm501_setup_uart_data(sm, uart_data++, 0x30000);
847 sm501_unit_power(sm->dev, SM501_GATE_UART0, 1);
848 sm501_modify_reg(sm->dev, SM501_IRQ_MASK, 1 << 12, 0);
849 sm501_modify_reg(sm->dev, SM501_GPIO63_32_CONTROL, 0x01e0, 0);
850 }
851 if (devices & SM501_USE_UART1) {
852 sm501_setup_uart_data(sm, uart_data++, 0x30020);
853 sm501_unit_power(sm->dev, SM501_GATE_UART1, 1);
854 sm501_modify_reg(sm->dev, SM501_IRQ_MASK, 1 << 13, 0);
855 sm501_modify_reg(sm->dev, SM501_GPIO63_32_CONTROL, 0x1e00, 0);
856 }
857
858 pdev->id = PLAT8250_DEV_SM501;
859
860 return sm501_register_device(sm, pdev);
861}
862
b6d6454f
BD
863static int sm501_register_display(struct sm501_devdata *sm,
864 resource_size_t *mem_avail)
865{
866 struct platform_device *pdev;
867
61711f8f 868 pdev = sm501_create_subdev(sm, "sm501-fb", 4, 0);
b6d6454f
BD
869 if (!pdev)
870 return -ENOMEM;
871
872 sm501_create_subio(sm, &pdev->resource[0], 0x80000, 0x10000);
873 sm501_create_subio(sm, &pdev->resource[1], 0x100000, 0x50000);
874 sm501_create_mem(sm, &pdev->resource[2], mem_avail, *mem_avail);
875 sm501_create_irq(sm, &pdev->resource[3]);
876
877 return sm501_register_device(sm, pdev);
878}
879
f61be273
BD
880#ifdef CONFIG_MFD_SM501_GPIO
881
882static inline struct sm501_gpio_chip *to_sm501_gpio(struct gpio_chip *gc)
883{
884 return container_of(gc, struct sm501_gpio_chip, gpio);
885}
886
887static inline struct sm501_devdata *sm501_gpio_to_dev(struct sm501_gpio *gpio)
888{
889 return container_of(gpio, struct sm501_devdata, gpio);
890}
891
892static int sm501_gpio_get(struct gpio_chip *chip, unsigned offset)
893
894{
895 struct sm501_gpio_chip *smgpio = to_sm501_gpio(chip);
896 unsigned long result;
897
898 result = readl(smgpio->regbase + SM501_GPIO_DATA_LOW);
899 result >>= offset;
900
901 return result & 1UL;
902}
903
904static void sm501_gpio_set(struct gpio_chip *chip, unsigned offset, int value)
905
906{
907 struct sm501_gpio_chip *smchip = to_sm501_gpio(chip);
908 struct sm501_gpio *smgpio = smchip->ourgpio;
909 unsigned long bit = 1 << offset;
910 void __iomem *regs = smchip->regbase;
911 unsigned long save;
912 unsigned long val;
913
914 dev_dbg(sm501_gpio_to_dev(smgpio)->dev, "%s(%p,%d)\n",
915 __func__, chip, offset);
916
917 spin_lock_irqsave(&smgpio->lock, save);
918
919 val = readl(regs + SM501_GPIO_DATA_LOW) & ~bit;
920 if (value)
921 val |= bit;
922 writel(val, regs);
923
924 sm501_sync_regs(sm501_gpio_to_dev(smgpio));
925 spin_unlock_irqrestore(&smgpio->lock, save);
926}
927
928static int sm501_gpio_input(struct gpio_chip *chip, unsigned offset)
929{
930 struct sm501_gpio_chip *smchip = to_sm501_gpio(chip);
931 struct sm501_gpio *smgpio = smchip->ourgpio;
932 void __iomem *regs = smchip->regbase;
933 unsigned long bit = 1 << offset;
934 unsigned long save;
935 unsigned long ddr;
936
937 dev_info(sm501_gpio_to_dev(smgpio)->dev, "%s(%p,%d)\n",
938 __func__, chip, offset);
939
940 spin_lock_irqsave(&smgpio->lock, save);
941
942 ddr = readl(regs + SM501_GPIO_DDR_LOW);
943 writel(ddr & ~bit, regs + SM501_GPIO_DDR_LOW);
944
945 sm501_sync_regs(sm501_gpio_to_dev(smgpio));
946 spin_unlock_irqrestore(&smgpio->lock, save);
947
948 return 0;
949}
950
951static int sm501_gpio_output(struct gpio_chip *chip,
952 unsigned offset, int value)
953{
954 struct sm501_gpio_chip *smchip = to_sm501_gpio(chip);
955 struct sm501_gpio *smgpio = smchip->ourgpio;
956 unsigned long bit = 1 << offset;
957 void __iomem *regs = smchip->regbase;
958 unsigned long save;
959 unsigned long val;
960 unsigned long ddr;
961
962 dev_dbg(sm501_gpio_to_dev(smgpio)->dev, "%s(%p,%d,%d)\n",
963 __func__, chip, offset, value);
964
965 spin_lock_irqsave(&smgpio->lock, save);
966
967 val = readl(regs + SM501_GPIO_DATA_LOW);
968 if (value)
969 val |= bit;
970 else
971 val &= ~bit;
972 writel(val, regs);
973
974 ddr = readl(regs + SM501_GPIO_DDR_LOW);
975 writel(ddr | bit, regs + SM501_GPIO_DDR_LOW);
976
977 sm501_sync_regs(sm501_gpio_to_dev(smgpio));
978 writel(val, regs + SM501_GPIO_DATA_LOW);
979
980 sm501_sync_regs(sm501_gpio_to_dev(smgpio));
981 spin_unlock_irqrestore(&smgpio->lock, save);
982
983 return 0;
984}
985
986static struct gpio_chip gpio_chip_template = {
987 .ngpio = 32,
988 .direction_input = sm501_gpio_input,
989 .direction_output = sm501_gpio_output,
990 .set = sm501_gpio_set,
991 .get = sm501_gpio_get,
992};
993
994static int __devinit sm501_gpio_register_chip(struct sm501_devdata *sm,
995 struct sm501_gpio *gpio,
996 struct sm501_gpio_chip *chip)
997{
998 struct sm501_platdata *pdata = sm->platdata;
999 struct gpio_chip *gchip = &chip->gpio;
60e540d6 1000 int base = pdata->gpio_base;
f61be273 1001
28130bea 1002 chip->gpio = gpio_chip_template;
f61be273
BD
1003
1004 if (chip == &gpio->high) {
60e540d6
AP
1005 if (base > 0)
1006 base += 32;
f61be273
BD
1007 chip->regbase = gpio->regs + SM501_GPIO_DATA_HIGH;
1008 gchip->label = "SM501-HIGH";
1009 } else {
1010 chip->regbase = gpio->regs + SM501_GPIO_DATA_LOW;
1011 gchip->label = "SM501-LOW";
1012 }
1013
1014 gchip->base = base;
1015 chip->ourgpio = gpio;
1016
1017 return gpiochip_add(gchip);
1018}
1019
1020static int sm501_register_gpio(struct sm501_devdata *sm)
1021{
1022 struct sm501_gpio *gpio = &sm->gpio;
1023 resource_size_t iobase = sm->io_res->start + SM501_GPIO;
1024 int ret;
1025 int tmp;
1026
1027 dev_dbg(sm->dev, "registering gpio block %08llx\n",
1028 (unsigned long long)iobase);
1029
1030 spin_lock_init(&gpio->lock);
1031
1032 gpio->regs_res = request_mem_region(iobase, 0x20, "sm501-gpio");
1033 if (gpio->regs_res == NULL) {
1034 dev_err(sm->dev, "gpio: failed to request region\n");
1035 return -ENXIO;
1036 }
1037
1038 gpio->regs = ioremap(iobase, 0x20);
1039 if (gpio->regs == NULL) {
1040 dev_err(sm->dev, "gpio: failed to remap registers\n");
1041 ret = -ENXIO;
28130bea 1042 goto err_claimed;
f61be273
BD
1043 }
1044
1045 /* Register both our chips. */
1046
1047 ret = sm501_gpio_register_chip(sm, gpio, &gpio->low);
1048 if (ret) {
1049 dev_err(sm->dev, "failed to add low chip\n");
1050 goto err_mapped;
1051 }
1052
1053 ret = sm501_gpio_register_chip(sm, gpio, &gpio->high);
1054 if (ret) {
1055 dev_err(sm->dev, "failed to add high chip\n");
1056 goto err_low_chip;
1057 }
1058
1059 gpio->registered = 1;
1060
1061 return 0;
1062
1063 err_low_chip:
1064 tmp = gpiochip_remove(&gpio->low.gpio);
1065 if (tmp) {
1066 dev_err(sm->dev, "cannot remove low chip, cannot tidy up\n");
1067 return ret;
1068 }
1069
1070 err_mapped:
28130bea
BD
1071 iounmap(gpio->regs);
1072
1073 err_claimed:
f61be273
BD
1074 release_resource(gpio->regs_res);
1075 kfree(gpio->regs_res);
1076
1077 return ret;
1078}
1079
1080static void sm501_gpio_remove(struct sm501_devdata *sm)
1081{
28130bea 1082 struct sm501_gpio *gpio = &sm->gpio;
f61be273
BD
1083 int ret;
1084
28130bea 1085 ret = gpiochip_remove(&gpio->low.gpio);
f61be273
BD
1086 if (ret)
1087 dev_err(sm->dev, "cannot remove low chip, cannot tidy up\n");
1088
28130bea 1089 ret = gpiochip_remove(&gpio->high.gpio);
f61be273
BD
1090 if (ret)
1091 dev_err(sm->dev, "cannot remove high chip, cannot tidy up\n");
28130bea
BD
1092
1093 iounmap(gpio->regs);
1094 release_resource(gpio->regs_res);
1095 kfree(gpio->regs_res);
f61be273
BD
1096}
1097
28130bea 1098static inline int sm501_gpio_pin2nr(struct sm501_devdata *sm, unsigned int pin)
42cd2366
BD
1099{
1100 struct sm501_gpio *gpio = &sm->gpio;
1101 return pin + (pin < 32) ? gpio->low.gpio.base : gpio->high.gpio.base;
1102}
f61be273 1103#else
28130bea 1104static inline int sm501_register_gpio(struct sm501_devdata *sm)
f61be273
BD
1105{
1106 return 0;
1107}
1108
28130bea 1109static inline void sm501_gpio_remove(struct sm501_devdata *sm)
f61be273
BD
1110{
1111}
42cd2366 1112
28130bea 1113static inline int sm501_gpio_pin2nr(struct sm501_devdata *sm, unsigned int pin)
42cd2366
BD
1114{
1115 return -1;
1116}
f61be273
BD
1117#endif
1118
42cd2366
BD
1119static int sm501_register_gpio_i2c_instance(struct sm501_devdata *sm,
1120 struct sm501_platdata_gpio_i2c *iic)
1121{
1122 struct i2c_gpio_platform_data *icd;
1123 struct platform_device *pdev;
1124
1125 pdev = sm501_create_subdev(sm, "i2c-gpio", 0,
1126 sizeof(struct i2c_gpio_platform_data));
1127 if (!pdev)
1128 return -ENOMEM;
1129
1130 icd = pdev->dev.platform_data;
1131
1132 /* We keep the pin_sda and pin_scl fields relative in case the
1133 * same platform data is passed to >1 SM501.
1134 */
1135
1136 icd->sda_pin = sm501_gpio_pin2nr(sm, iic->pin_sda);
1137 icd->scl_pin = sm501_gpio_pin2nr(sm, iic->pin_scl);
1138 icd->timeout = iic->timeout;
1139 icd->udelay = iic->udelay;
1140
1141 /* note, we can't use either of the pin numbers, as the i2c-gpio
1142 * driver uses the platform.id field to generate the bus number
1143 * to register with the i2c core; The i2c core doesn't have enough
1144 * entries to deal with anything we currently use.
1145 */
1146
1147 pdev->id = iic->bus_num;
1148
1149 dev_info(sm->dev, "registering i2c-%d: sda=%d (%d), scl=%d (%d)\n",
1150 iic->bus_num,
1151 icd->sda_pin, iic->pin_sda, icd->scl_pin, iic->pin_scl);
1152
1153 return sm501_register_device(sm, pdev);
1154}
1155
1156static int sm501_register_gpio_i2c(struct sm501_devdata *sm,
1157 struct sm501_platdata *pdata)
1158{
1159 struct sm501_platdata_gpio_i2c *iic = pdata->gpio_i2c;
1160 int index;
1161 int ret;
1162
1163 for (index = 0; index < pdata->gpio_i2c_nr; index++, iic++) {
1164 ret = sm501_register_gpio_i2c_instance(sm, iic);
1165 if (ret < 0)
1166 return ret;
1167 }
1168
1169 return 0;
1170}
1171
b6d6454f
BD
1172/* sm501_dbg_regs
1173 *
1174 * Debug attribute to attach to parent device to show core registers
1175*/
1176
1177static ssize_t sm501_dbg_regs(struct device *dev,
1178 struct device_attribute *attr, char *buff)
1179{
1180 struct sm501_devdata *sm = dev_get_drvdata(dev) ;
1181 unsigned int reg;
1182 char *ptr = buff;
1183 int ret;
1184
1185 for (reg = 0x00; reg < 0x70; reg += 4) {
1186 ret = sprintf(ptr, "%08x = %08x\n",
1187 reg, readl(sm->regs + reg));
1188 ptr += ret;
1189 }
1190
1191 return ptr - buff;
1192}
1193
1194
1195static DEVICE_ATTR(dbg_regs, 0666, sm501_dbg_regs, NULL);
1196
1197/* sm501_init_reg
1198 *
1199 * Helper function for the init code to setup a register
5136237b
BD
1200 *
1201 * clear the bits which are set in r->mask, and then set
1202 * the bits set in r->set.
b6d6454f
BD
1203*/
1204
1205static inline void sm501_init_reg(struct sm501_devdata *sm,
1206 unsigned long reg,
1207 struct sm501_reg_init *r)
1208{
1209 unsigned long tmp;
1210
1211 tmp = readl(sm->regs + reg);
b6d6454f 1212 tmp &= ~r->mask;
5136237b 1213 tmp |= r->set;
b6d6454f
BD
1214 writel(tmp, sm->regs + reg);
1215}
1216
1217/* sm501_init_regs
1218 *
1219 * Setup core register values
1220*/
1221
1222static void sm501_init_regs(struct sm501_devdata *sm,
1223 struct sm501_initdata *init)
1224{
1225 sm501_misc_control(sm->dev,
1226 init->misc_control.set,
1227 init->misc_control.mask);
1228
1229 sm501_init_reg(sm, SM501_MISC_TIMING, &init->misc_timing);
1230 sm501_init_reg(sm, SM501_GPIO31_0_CONTROL, &init->gpio_low);
1231 sm501_init_reg(sm, SM501_GPIO63_32_CONTROL, &init->gpio_high);
1232
b6d6454f
BD
1233 if (init->m1xclk) {
1234 dev_info(sm->dev, "setting M1XCLK to %ld\n", init->m1xclk);
1235 sm501_set_clock(sm->dev, SM501_CLOCK_M1XCLK, init->m1xclk);
1236 }
b5913bbd
BD
1237
1238 if (init->mclk) {
1239 dev_info(sm->dev, "setting MCLK to %ld\n", init->mclk);
1240 sm501_set_clock(sm->dev, SM501_CLOCK_MCLK, init->mclk);
1241 }
81906221
BD
1242
1243}
1244
1245/* Check the PLL sources for the M1CLK and M1XCLK
1246 *
1247 * If the M1CLK and M1XCLKs are not sourced from the same PLL, then
1248 * there is a risk (see errata AB-5) that the SM501 will cease proper
1249 * function. If this happens, then it is likely the SM501 will
1250 * hang the system.
1251*/
1252
1253static int sm501_check_clocks(struct sm501_devdata *sm)
1254{
1255 unsigned long pwrmode = readl(sm->regs + SM501_CURRENT_CLOCK);
1256 unsigned long msrc = (pwrmode & SM501_POWERMODE_M_SRC);
1257 unsigned long m1src = (pwrmode & SM501_POWERMODE_M1_SRC);
1258
1259 return ((msrc == 0 && m1src != 0) || (msrc != 0 && m1src == 0));
b6d6454f
BD
1260}
1261
1262static unsigned int sm501_mem_local[] = {
1263 [0] = 4*1024*1024,
1264 [1] = 8*1024*1024,
1265 [2] = 16*1024*1024,
1266 [3] = 32*1024*1024,
1267 [4] = 64*1024*1024,
1268 [5] = 2*1024*1024,
1269};
1270
1271/* sm501_init_dev
1272 *
1273 * Common init code for an SM501
1274*/
1275
1276static int sm501_init_dev(struct sm501_devdata *sm)
1277{
61711f8f 1278 struct sm501_initdata *idata;
42cd2366 1279 struct sm501_platdata *pdata;
b6d6454f
BD
1280 resource_size_t mem_avail;
1281 unsigned long dramctrl;
1e27dbe7 1282 unsigned long devid;
b6d6454f
BD
1283 int ret;
1284
1285 mutex_init(&sm->clock_lock);
1286 spin_lock_init(&sm->reg_lock);
1287
1288 INIT_LIST_HEAD(&sm->devices);
1289
1e27dbe7 1290 devid = readl(sm->regs + SM501_DEVICEID);
b6d6454f 1291
1e27dbe7
BD
1292 if ((devid & SM501_DEVICEID_IDMASK) != SM501_DEVICEID_SM501) {
1293 dev_err(sm->dev, "incorrect device id %08lx\n", devid);
1294 return -EINVAL;
1295 }
1296
61711f8f
MD
1297 /* disable irqs */
1298 writel(0, sm->regs + SM501_IRQ_MASK);
1299
1e27dbe7 1300 dramctrl = readl(sm->regs + SM501_DRAM_CONTROL);
b6d6454f
BD
1301 mem_avail = sm501_mem_local[(dramctrl >> 13) & 0x7];
1302
1e27dbe7
BD
1303 dev_info(sm->dev, "SM501 At %p: Version %08lx, %ld Mb, IRQ %d\n",
1304 sm->regs, devid, (unsigned long)mem_avail >> 20, sm->irq);
b6d6454f 1305
3149be50
VS
1306 sm->rev = devid & SM501_DEVICEID_REVMASK;
1307
331d7475 1308 sm501_dump_gate(sm);
b6d6454f
BD
1309
1310 ret = device_create_file(sm->dev, &dev_attr_dbg_regs);
1311 if (ret)
1312 dev_err(sm->dev, "failed to create debug regs file\n");
1313
1314 sm501_dump_clk(sm);
1315
1316 /* check to see if we have some device initialisation */
1317
42cd2366
BD
1318 pdata = sm->platdata;
1319 idata = pdata ? pdata->init : NULL;
1320
61711f8f
MD
1321 if (idata) {
1322 sm501_init_regs(sm, idata);
b6d6454f 1323
61711f8f
MD
1324 if (idata->devices & SM501_USE_USB_HOST)
1325 sm501_register_usbhost(sm, &mem_avail);
1326 if (idata->devices & (SM501_USE_UART0 | SM501_USE_UART1))
1327 sm501_register_uart(sm, idata->devices);
f61be273
BD
1328 if (idata->devices & SM501_USE_GPIO)
1329 sm501_register_gpio(sm);
b6d6454f
BD
1330 }
1331
42cd2366
BD
1332 if (pdata->gpio_i2c != NULL && pdata->gpio_i2c_nr > 0) {
1333 if (!sm->gpio.registered)
1334 dev_err(sm->dev, "no gpio registered for i2c gpio.\n");
1335 else
1336 sm501_register_gpio_i2c(sm, pdata);
1337 }
1338
81906221
BD
1339 ret = sm501_check_clocks(sm);
1340 if (ret) {
1341 dev_err(sm->dev, "M1X and M clocks sourced from different "
1342 "PLLs\n");
1343 return -EINVAL;
1344 }
1345
b6d6454f
BD
1346 /* always create a framebuffer */
1347 sm501_register_display(sm, &mem_avail);
1348
1349 return 0;
1350}
1351
1352static int sm501_plat_probe(struct platform_device *dev)
1353{
1354 struct sm501_devdata *sm;
1355 int err;
1356
1357 sm = kzalloc(sizeof(struct sm501_devdata), GFP_KERNEL);
1358 if (sm == NULL) {
1359 dev_err(&dev->dev, "no memory for device data\n");
1360 err = -ENOMEM;
1361 goto err1;
1362 }
1363
1364 sm->dev = &dev->dev;
1365 sm->pdev_id = dev->id;
1366 sm->irq = platform_get_irq(dev, 0);
1367 sm->io_res = platform_get_resource(dev, IORESOURCE_MEM, 1);
1368 sm->mem_res = platform_get_resource(dev, IORESOURCE_MEM, 0);
1369 sm->platdata = dev->dev.platform_data;
1370
1371 if (sm->irq < 0) {
1372 dev_err(&dev->dev, "failed to get irq resource\n");
1373 err = sm->irq;
1374 goto err_res;
1375 }
1376
1377 if (sm->io_res == NULL || sm->mem_res == NULL) {
1378 dev_err(&dev->dev, "failed to get IO resource\n");
1379 err = -ENOENT;
1380 goto err_res;
1381 }
1382
1383 sm->regs_claim = request_mem_region(sm->io_res->start,
1384 0x100, "sm501");
1385
1386 if (sm->regs_claim == NULL) {
1387 dev_err(&dev->dev, "cannot claim registers\n");
1388 err= -EBUSY;
1389 goto err_res;
1390 }
1391
1392 platform_set_drvdata(dev, sm);
1393
1394 sm->regs = ioremap(sm->io_res->start,
1395 (sm->io_res->end - sm->io_res->start) - 1);
1396
1397 if (sm->regs == NULL) {
1398 dev_err(&dev->dev, "cannot remap registers\n");
1399 err = -EIO;
1400 goto err_claim;
1401 }
1402
1403 return sm501_init_dev(sm);
1404
1405 err_claim:
1406 release_resource(sm->regs_claim);
1407 kfree(sm->regs_claim);
1408 err_res:
1409 kfree(sm);
1410 err1:
1411 return err;
1412
1413}
1414
331d7475 1415#ifdef CONFIG_PM
472dba7d 1416
331d7475
BD
1417/* power management support */
1418
472dba7d
BD
1419static void sm501_set_power(struct sm501_devdata *sm, int on)
1420{
1421 struct sm501_platdata *pd = sm->platdata;
1422
1423 if (pd == NULL)
1424 return;
1425
1426 if (pd->get_power) {
1427 if (pd->get_power(sm->dev) == on) {
1428 dev_dbg(sm->dev, "is already %d\n", on);
1429 return;
1430 }
1431 }
1432
1433 if (pd->set_power) {
1434 dev_dbg(sm->dev, "setting power to %d\n", on);
1435
1436 pd->set_power(sm->dev, on);
1437 sm501_mdelay(sm, 10);
1438 }
1439}
1440
331d7475
BD
1441static int sm501_plat_suspend(struct platform_device *pdev, pm_message_t state)
1442{
1443 struct sm501_devdata *sm = platform_get_drvdata(pdev);
1444
1445 sm->in_suspend = 1;
1446 sm->pm_misc = readl(sm->regs + SM501_MISC_CONTROL);
1447
1448 sm501_dump_regs(sm);
472dba7d
BD
1449
1450 if (sm->platdata) {
1451 if (sm->platdata->flags & SM501_FLAG_SUSPEND_OFF)
1452 sm501_set_power(sm, 0);
1453 }
1454
331d7475
BD
1455 return 0;
1456}
1457
1458static int sm501_plat_resume(struct platform_device *pdev)
1459{
1460 struct sm501_devdata *sm = platform_get_drvdata(pdev);
1461
472dba7d
BD
1462 sm501_set_power(sm, 1);
1463
331d7475
BD
1464 sm501_dump_regs(sm);
1465 sm501_dump_gate(sm);
1466 sm501_dump_clk(sm);
1467
1468 /* check to see if we are in the same state as when suspended */
1469
1470 if (readl(sm->regs + SM501_MISC_CONTROL) != sm->pm_misc) {
1471 dev_info(sm->dev, "SM501_MISC_CONTROL changed over sleep\n");
1472 writel(sm->pm_misc, sm->regs + SM501_MISC_CONTROL);
1473
1474 /* our suspend causes the controller state to change,
1475 * either by something attempting setup, power loss,
1476 * or an external reset event on power change */
1477
1478 if (sm->platdata && sm->platdata->init) {
1479 sm501_init_regs(sm, sm->platdata->init);
1480 }
1481 }
1482
1483 /* dump our state from resume */
1484
1485 sm501_dump_regs(sm);
1486 sm501_dump_clk(sm);
1487
1488 sm->in_suspend = 0;
1489
1490 return 0;
1491}
1492#else
1493#define sm501_plat_suspend NULL
1494#define sm501_plat_resume NULL
1495#endif
1496
b6d6454f
BD
1497/* Initialisation data for PCI devices */
1498
1499static struct sm501_initdata sm501_pci_initdata = {
1500 .gpio_high = {
1501 .set = 0x3F000000, /* 24bit panel */
1502 .mask = 0x0,
1503 },
1504 .misc_timing = {
1505 .set = 0x010100, /* SDRAM timing */
1506 .mask = 0x1F1F00,
1507 },
1508 .misc_control = {
1509 .set = SM501_MISC_PNL_24BIT,
1510 .mask = 0,
1511 },
1512
1513 .devices = SM501_USE_ALL,
81906221
BD
1514
1515 /* Errata AB-3 says that 72MHz is the fastest available
1516 * for 33MHZ PCI with proper bus-mastering operation */
1517
1518 .mclk = 72 * MHZ,
1519 .m1xclk = 144 * MHZ,
b6d6454f
BD
1520};
1521
1522static struct sm501_platdata_fbsub sm501_pdata_fbsub = {
1523 .flags = (SM501FB_FLAG_USE_INIT_MODE |
1524 SM501FB_FLAG_USE_HWCURSOR |
1525 SM501FB_FLAG_USE_HWACCEL |
1526 SM501FB_FLAG_DISABLE_AT_EXIT),
1527};
1528
1529static struct sm501_platdata_fb sm501_fb_pdata = {
1530 .fb_route = SM501_FB_OWN,
1531 .fb_crt = &sm501_pdata_fbsub,
1532 .fb_pnl = &sm501_pdata_fbsub,
1533};
1534
1535static struct sm501_platdata sm501_pci_platdata = {
1536 .init = &sm501_pci_initdata,
1537 .fb = &sm501_fb_pdata,
60e540d6 1538 .gpio_base = -1,
b6d6454f
BD
1539};
1540
1541static int sm501_pci_probe(struct pci_dev *dev,
1542 const struct pci_device_id *id)
1543{
1544 struct sm501_devdata *sm;
1545 int err;
1546
1547 sm = kzalloc(sizeof(struct sm501_devdata), GFP_KERNEL);
1548 if (sm == NULL) {
1549 dev_err(&dev->dev, "no memory for device data\n");
1550 err = -ENOMEM;
1551 goto err1;
1552 }
1553
1554 /* set a default set of platform data */
1555 dev->dev.platform_data = sm->platdata = &sm501_pci_platdata;
1556
1557 /* set a hopefully unique id for our child platform devices */
1558 sm->pdev_id = 32 + dev->devfn;
1559
1560 pci_set_drvdata(dev, sm);
1561
1562 err = pci_enable_device(dev);
1563 if (err) {
1564 dev_err(&dev->dev, "cannot enable device\n");
1565 goto err2;
1566 }
1567
1568 sm->dev = &dev->dev;
1569 sm->irq = dev->irq;
1570
1571#ifdef __BIG_ENDIAN
1572 /* if the system is big-endian, we most probably have a
1573 * translation in the IO layer making the PCI bus little endian
1574 * so make the framebuffer swapped pixels */
1575
1576 sm501_fb_pdata.flags |= SM501_FBPD_SWAP_FB_ENDIAN;
1577#endif
1578
1579 /* check our resources */
1580
1581 if (!(pci_resource_flags(dev, 0) & IORESOURCE_MEM)) {
1582 dev_err(&dev->dev, "region #0 is not memory?\n");
1583 err = -EINVAL;
1584 goto err3;
1585 }
1586
1587 if (!(pci_resource_flags(dev, 1) & IORESOURCE_MEM)) {
1588 dev_err(&dev->dev, "region #1 is not memory?\n");
1589 err = -EINVAL;
1590 goto err3;
1591 }
1592
1593 /* make our resources ready for sharing */
1594
1595 sm->io_res = &dev->resource[1];
1596 sm->mem_res = &dev->resource[0];
1597
1598 sm->regs_claim = request_mem_region(sm->io_res->start,
1599 0x100, "sm501");
1600 if (sm->regs_claim == NULL) {
1601 dev_err(&dev->dev, "cannot claim registers\n");
1602 err= -EBUSY;
1603 goto err3;
1604 }
1605
1606 sm->regs = ioremap(pci_resource_start(dev, 1),
1607 pci_resource_len(dev, 1));
1608
1609 if (sm->regs == NULL) {
1610 dev_err(&dev->dev, "cannot remap registers\n");
1611 err = -EIO;
1612 goto err4;
1613 }
1614
1615 sm501_init_dev(sm);
1616 return 0;
1617
1618 err4:
1619 release_resource(sm->regs_claim);
1620 kfree(sm->regs_claim);
1621 err3:
1622 pci_disable_device(dev);
1623 err2:
1624 pci_set_drvdata(dev, NULL);
1625 kfree(sm);
1626 err1:
1627 return err;
1628}
1629
1630static void sm501_remove_sub(struct sm501_devdata *sm,
1631 struct sm501_device *smdev)
1632{
1633 list_del(&smdev->list);
1634 platform_device_unregister(&smdev->pdev);
1635}
1636
1637static void sm501_dev_remove(struct sm501_devdata *sm)
1638{
1639 struct sm501_device *smdev, *tmp;
1640
1641 list_for_each_entry_safe(smdev, tmp, &sm->devices, list)
1642 sm501_remove_sub(sm, smdev);
1643
1644 device_remove_file(sm->dev, &dev_attr_dbg_regs);
f61be273
BD
1645
1646 if (sm->gpio.registered)
1647 sm501_gpio_remove(sm);
b6d6454f
BD
1648}
1649
1650static void sm501_pci_remove(struct pci_dev *dev)
1651{
1652 struct sm501_devdata *sm = pci_get_drvdata(dev);
1653
1654 sm501_dev_remove(sm);
1655 iounmap(sm->regs);
1656
1657 release_resource(sm->regs_claim);
1658 kfree(sm->regs_claim);
1659
1660 pci_set_drvdata(dev, NULL);
1661 pci_disable_device(dev);
1662}
1663
1664static int sm501_plat_remove(struct platform_device *dev)
1665{
1666 struct sm501_devdata *sm = platform_get_drvdata(dev);
1667
1668 sm501_dev_remove(sm);
1669 iounmap(sm->regs);
1670
1671 release_resource(sm->regs_claim);
1672 kfree(sm->regs_claim);
1673
1674 return 0;
1675}
1676
1677static struct pci_device_id sm501_pci_tbl[] = {
1678 { 0x126f, 0x0501, PCI_ANY_ID, PCI_ANY_ID, 0, 0, 0 },
1679 { 0, },
1680};
1681
1682MODULE_DEVICE_TABLE(pci, sm501_pci_tbl);
1683
1684static struct pci_driver sm501_pci_drv = {
1685 .name = "sm501",
1686 .id_table = sm501_pci_tbl,
1687 .probe = sm501_pci_probe,
1688 .remove = sm501_pci_remove,
1689};
1690
4f46d6e7
KS
1691MODULE_ALIAS("platform:sm501");
1692
b6d6454f
BD
1693static struct platform_driver sm501_plat_drv = {
1694 .driver = {
1695 .name = "sm501",
1696 .owner = THIS_MODULE,
1697 },
1698 .probe = sm501_plat_probe,
1699 .remove = sm501_plat_remove,
331d7475
BD
1700 .suspend = sm501_plat_suspend,
1701 .resume = sm501_plat_resume,
b6d6454f
BD
1702};
1703
1704static int __init sm501_base_init(void)
1705{
1706 platform_driver_register(&sm501_plat_drv);
f15e66b9 1707 return pci_register_driver(&sm501_pci_drv);
b6d6454f
BD
1708}
1709
1710static void __exit sm501_base_exit(void)
1711{
1712 platform_driver_unregister(&sm501_plat_drv);
1713 pci_unregister_driver(&sm501_pci_drv);
1714}
1715
1716module_init(sm501_base_init);
1717module_exit(sm501_base_exit);
1718
1719MODULE_DESCRIPTION("SM501 Core Driver");
1720MODULE_AUTHOR("Ben Dooks <ben@simtec.co.uk>, Vincent Sanders");
1721MODULE_LICENSE("GPL v2");