1 /* linux/drivers/mfd/sm501.c
3 * Copyright (C) 2006 Simtec Electronics
4 * Ben Dooks <ben@simtec.co.uk>
5 * Vincent Sanders <vince@simtec.co.uk>
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.
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>
23 #include <linux/sm501.h>
24 #include <linux/sm501-regs.h>
29 struct list_head list
;
30 struct platform_device pdev
;
33 struct sm501_devdata
{
35 struct mutex clock_lock
;
36 struct list_head devices
;
39 struct resource
*io_res
;
40 struct resource
*mem_res
;
41 struct resource
*regs_claim
;
42 struct sm501_platdata
*platdata
;
44 unsigned int in_suspend
;
45 unsigned long pm_misc
;
53 #define MHZ (1000 * 1000)
56 static const unsigned int misc_div
[] = {
75 static const unsigned int px_div
[] = {
102 static unsigned long decode_div(unsigned long pll2
, unsigned long val
,
103 unsigned int lshft
, unsigned int selbit
,
104 unsigned long mask
, const unsigned int *dtab
)
109 return pll2
/ dtab
[(val
>> lshft
) & mask
];
112 #define fmt_freq(x) ((x) / MHZ), ((x) % MHZ), (x)
116 * Print out the current clock configuration for the device
119 static void sm501_dump_clk(struct sm501_devdata
*sm
)
121 unsigned long misct
= readl(sm
->regs
+ SM501_MISC_TIMING
);
122 unsigned long pm0
= readl(sm
->regs
+ SM501_POWER_MODE_0_CLOCK
);
123 unsigned long pm1
= readl(sm
->regs
+ SM501_POWER_MODE_1_CLOCK
);
124 unsigned long pmc
= readl(sm
->regs
+ SM501_POWER_MODE_CONTROL
);
125 unsigned long sdclk0
, sdclk1
;
126 unsigned long pll2
= 0;
128 switch (misct
& 0x30) {
143 sdclk0
= (misct
& (1<<12)) ? pll2
: 288 * MHZ
;
144 sdclk0
/= misc_div
[((misct
>> 8) & 0xf)];
146 sdclk1
= (misct
& (1<<20)) ? pll2
: 288 * MHZ
;
147 sdclk1
/= misc_div
[((misct
>> 16) & 0xf)];
149 dev_dbg(sm
->dev
, "MISCT=%08lx, PM0=%08lx, PM1=%08lx\n",
152 dev_dbg(sm
->dev
, "PLL2 = %ld.%ld MHz (%ld), SDCLK0=%08lx, SDCLK1=%08lx\n",
153 fmt_freq(pll2
), sdclk0
, sdclk1
);
155 dev_dbg(sm
->dev
, "SDRAM: PM0=%ld, PM1=%ld\n", sdclk0
, sdclk1
);
157 dev_dbg(sm
->dev
, "PM0[%c]: "
158 "P2 %ld.%ld MHz (%ld), V2 %ld.%ld (%ld), "
159 "M %ld.%ld (%ld), MX1 %ld.%ld (%ld)\n",
160 (pmc
& 3 ) == 0 ? '*' : '-',
161 fmt_freq(decode_div(pll2
, pm0
, 24, 1<<29, 31, px_div
)),
162 fmt_freq(decode_div(pll2
, pm0
, 16, 1<<20, 15, misc_div
)),
163 fmt_freq(decode_div(pll2
, pm0
, 8, 1<<12, 15, misc_div
)),
164 fmt_freq(decode_div(pll2
, pm0
, 0, 1<<4, 15, misc_div
)));
166 dev_dbg(sm
->dev
, "PM1[%c]: "
167 "P2 %ld.%ld MHz (%ld), V2 %ld.%ld (%ld), "
168 "M %ld.%ld (%ld), MX1 %ld.%ld (%ld)\n",
169 (pmc
& 3 ) == 1 ? '*' : '-',
170 fmt_freq(decode_div(pll2
, pm1
, 24, 1<<29, 31, px_div
)),
171 fmt_freq(decode_div(pll2
, pm1
, 16, 1<<20, 15, misc_div
)),
172 fmt_freq(decode_div(pll2
, pm1
, 8, 1<<12, 15, misc_div
)),
173 fmt_freq(decode_div(pll2
, pm1
, 0, 1<<4, 15, misc_div
)));
176 static void sm501_dump_regs(struct sm501_devdata
*sm
)
178 void __iomem
*regs
= sm
->regs
;
180 dev_info(sm
->dev
, "System Control %08x\n",
181 readl(regs
+ SM501_SYSTEM_CONTROL
));
182 dev_info(sm
->dev
, "Misc Control %08x\n",
183 readl(regs
+ SM501_MISC_CONTROL
));
184 dev_info(sm
->dev
, "GPIO Control Low %08x\n",
185 readl(regs
+ SM501_GPIO31_0_CONTROL
));
186 dev_info(sm
->dev
, "GPIO Control Hi %08x\n",
187 readl(regs
+ SM501_GPIO63_32_CONTROL
));
188 dev_info(sm
->dev
, "DRAM Control %08x\n",
189 readl(regs
+ SM501_DRAM_CONTROL
));
190 dev_info(sm
->dev
, "Arbitration Ctrl %08x\n",
191 readl(regs
+ SM501_ARBTRTN_CONTROL
));
192 dev_info(sm
->dev
, "Misc Timing %08x\n",
193 readl(regs
+ SM501_MISC_TIMING
));
196 static void sm501_dump_gate(struct sm501_devdata
*sm
)
198 dev_info(sm
->dev
, "CurrentGate %08x\n",
199 readl(sm
->regs
+ SM501_CURRENT_GATE
));
200 dev_info(sm
->dev
, "CurrentClock %08x\n",
201 readl(sm
->regs
+ SM501_CURRENT_CLOCK
));
202 dev_info(sm
->dev
, "PowerModeControl %08x\n",
203 readl(sm
->regs
+ SM501_POWER_MODE_CONTROL
));
207 static inline void sm501_dump_gate(struct sm501_devdata
*sm
) { }
208 static inline void sm501_dump_regs(struct sm501_devdata
*sm
) { }
209 static inline void sm501_dump_clk(struct sm501_devdata
*sm
) { }
217 static void sm501_sync_regs(struct sm501_devdata
*sm
)
222 static inline void sm501_mdelay(struct sm501_devdata
*sm
, unsigned int delay
)
224 /* during suspend/resume, we are currently not allowed to sleep,
225 * so change to using mdelay() instead of msleep() if we
226 * are in one of these paths */
234 /* sm501_misc_control
236 * alters the miscellaneous control parameters
239 int sm501_misc_control(struct device
*dev
,
240 unsigned long set
, unsigned long clear
)
242 struct sm501_devdata
*sm
= dev_get_drvdata(dev
);
247 spin_lock_irqsave(&sm
->reg_lock
, save
);
249 misc
= readl(sm
->regs
+ SM501_MISC_CONTROL
);
250 to
= (misc
& ~clear
) | set
;
253 writel(to
, sm
->regs
+ SM501_MISC_CONTROL
);
256 dev_dbg(sm
->dev
, "MISC_CONTROL %08lx\n", misc
);
259 spin_unlock_irqrestore(&sm
->reg_lock
, save
);
263 EXPORT_SYMBOL_GPL(sm501_misc_control
);
267 * Modify a register in the SM501 which may be shared with other
271 unsigned long sm501_modify_reg(struct device
*dev
,
276 struct sm501_devdata
*sm
= dev_get_drvdata(dev
);
280 spin_lock_irqsave(&sm
->reg_lock
, save
);
282 data
= readl(sm
->regs
+ reg
);
286 writel(data
, sm
->regs
+ reg
);
289 spin_unlock_irqrestore(&sm
->reg_lock
, save
);
294 EXPORT_SYMBOL_GPL(sm501_modify_reg
);
296 unsigned long sm501_gpio_get(struct device
*dev
,
299 struct sm501_devdata
*sm
= dev_get_drvdata(dev
);
300 unsigned long result
;
303 reg
= (gpio
> 32) ? SM501_GPIO_DATA_HIGH
: SM501_GPIO_DATA_LOW
;
304 result
= readl(sm
->regs
+ reg
);
306 result
>>= (gpio
& 31);
310 EXPORT_SYMBOL_GPL(sm501_gpio_get
);
312 void sm501_gpio_set(struct device
*dev
,
317 struct sm501_devdata
*sm
= dev_get_drvdata(dev
);
319 unsigned long bit
= 1 << (gpio
& 31);
324 base
= (gpio
> 32) ? SM501_GPIO_DATA_HIGH
: SM501_GPIO_DATA_LOW
;
327 spin_lock_irqsave(&sm
->reg_lock
, save
);
329 val
= readl(sm
->regs
+ base
) & ~bit
;
332 writel(val
, sm
->regs
+ base
);
334 val
= readl(sm
->regs
+ SM501_GPIO_DDR_LOW
) & ~bit
;
338 writel(val
, sm
->regs
+ SM501_GPIO_DDR_LOW
);
341 spin_unlock_irqrestore(&sm
->reg_lock
, save
);
345 EXPORT_SYMBOL_GPL(sm501_gpio_set
);
350 * alters the power active gate to set specific units on or off
353 int sm501_unit_power(struct device
*dev
, unsigned int unit
, unsigned int to
)
355 struct sm501_devdata
*sm
= dev_get_drvdata(dev
);
360 mutex_lock(&sm
->clock_lock
);
362 mode
= readl(sm
->regs
+ SM501_POWER_MODE_CONTROL
);
363 gate
= readl(sm
->regs
+ SM501_CURRENT_GATE
);
364 clock
= readl(sm
->regs
+ SM501_CURRENT_CLOCK
);
366 mode
&= 3; /* get current power mode */
368 if (unit
>= ARRAY_SIZE(sm
->unit_power
)) {
369 dev_err(dev
, "%s: bad unit %d\n", __FUNCTION__
, unit
);
373 dev_dbg(sm
->dev
, "%s: unit %d, cur %d, to %d\n", __FUNCTION__
, unit
,
374 sm
->unit_power
[unit
], to
);
376 if (to
== 0 && sm
->unit_power
[unit
] == 0) {
377 dev_err(sm
->dev
, "unit %d is already shutdown\n", unit
);
381 sm
->unit_power
[unit
] += to
? 1 : -1;
382 to
= sm
->unit_power
[unit
] ? 1 : 0;
385 if (gate
& (1 << unit
))
389 if (!(gate
& (1 << unit
)))
391 gate
&= ~(1 << unit
);
396 writel(gate
, sm
->regs
+ SM501_POWER_MODE_0_GATE
);
397 writel(clock
, sm
->regs
+ SM501_POWER_MODE_0_CLOCK
);
402 writel(gate
, sm
->regs
+ SM501_POWER_MODE_1_GATE
);
403 writel(clock
, sm
->regs
+ SM501_POWER_MODE_1_CLOCK
);
411 writel(mode
, sm
->regs
+ SM501_POWER_MODE_CONTROL
);
414 dev_dbg(sm
->dev
, "gate %08lx, clock %08lx, mode %08lx\n",
417 sm501_mdelay(sm
, 16);
420 mutex_unlock(&sm
->clock_lock
);
424 EXPORT_SYMBOL_GPL(sm501_unit_power
);
427 /* Perform a rounded division. */
428 static long sm501fb_round_div(long num
, long denom
)
430 /* n / d + 1 / 2 = (2n + d) / 2d */
431 return (2 * num
+ denom
) / (2 * denom
);
434 /* clock value structure. */
441 /* sm501_select_clock
443 * selects nearest discrete clock frequency the SM501 can achive
444 * the maximum divisor is 3 or 5
446 static unsigned long sm501_select_clock(unsigned long freq
,
447 struct sm501_clock
*clock
,
454 long best_diff
= 999999999;
456 /* Try 288MHz and 336MHz clocks. */
457 for (mclk
= 288000000; mclk
<= 336000000; mclk
+= 48000000) {
458 /* try dividers 1 and 3 for CRT and for panel,
459 try divider 5 for panel only.*/
461 for (divider
= 1; divider
<= max_div
; divider
+= 2) {
462 /* try all 8 shift values.*/
463 for (shift
= 0; shift
< 8; shift
++) {
464 /* Calculate difference to requested clock */
465 diff
= sm501fb_round_div(mclk
, divider
<< shift
) - freq
;
469 /* If it is less than the current, use it */
470 if (diff
< best_diff
) {
474 clock
->divider
= divider
;
475 clock
->shift
= shift
;
481 /* Return best clock. */
482 return clock
->mclk
/ (clock
->divider
<< clock
->shift
);
487 * set one of the four clock sources to the closest available frequency to
491 unsigned long sm501_set_clock(struct device
*dev
,
493 unsigned long req_freq
)
495 struct sm501_devdata
*sm
= dev_get_drvdata(dev
);
496 unsigned long mode
= readl(sm
->regs
+ SM501_POWER_MODE_CONTROL
);
497 unsigned long gate
= readl(sm
->regs
+ SM501_CURRENT_GATE
);
498 unsigned long clock
= readl(sm
->regs
+ SM501_CURRENT_CLOCK
);
500 unsigned long sm501_freq
; /* the actual frequency acheived */
502 struct sm501_clock to
;
504 /* find achivable discrete frequency and setup register value
505 * accordingly, V2XCLK, MCLK and M1XCLK are the same P2XCLK
506 * has an extra bit for the divider */
509 case SM501_CLOCK_P2XCLK
:
510 /* This clock is divided in half so to achive the
511 * requested frequency the value must be multiplied by
512 * 2. This clock also has an additional pre divisor */
514 sm501_freq
= (sm501_select_clock(2 * req_freq
, &to
, 5) / 2);
515 reg
=to
.shift
& 0x07;/* bottom 3 bits are shift */
517 reg
|= 0x08; /* /3 divider required */
518 else if (to
.divider
== 5)
519 reg
|= 0x10; /* /5 divider required */
520 if (to
.mclk
!= 288000000)
521 reg
|= 0x20; /* which mclk pll is source */
524 case SM501_CLOCK_V2XCLK
:
525 /* This clock is divided in half so to achive the
526 * requested frequency the value must be multiplied by 2. */
528 sm501_freq
= (sm501_select_clock(2 * req_freq
, &to
, 3) / 2);
529 reg
=to
.shift
& 0x07; /* bottom 3 bits are shift */
531 reg
|= 0x08; /* /3 divider required */
532 if (to
.mclk
!= 288000000)
533 reg
|= 0x10; /* which mclk pll is source */
536 case SM501_CLOCK_MCLK
:
537 case SM501_CLOCK_M1XCLK
:
538 /* These clocks are the same and not further divided */
540 sm501_freq
= sm501_select_clock( req_freq
, &to
, 3);
541 reg
=to
.shift
& 0x07; /* bottom 3 bits are shift */
543 reg
|= 0x08; /* /3 divider required */
544 if (to
.mclk
!= 288000000)
545 reg
|= 0x10; /* which mclk pll is source */
549 return 0; /* this is bad */
552 mutex_lock(&sm
->clock_lock
);
554 mode
= readl(sm
->regs
+ SM501_POWER_MODE_CONTROL
);
555 gate
= readl(sm
->regs
+ SM501_CURRENT_GATE
);
556 clock
= readl(sm
->regs
+ SM501_CURRENT_CLOCK
);
558 clock
= clock
& ~(0xFF << clksrc
);
559 clock
|= reg
<<clksrc
;
561 mode
&= 3; /* find current mode */
565 writel(gate
, sm
->regs
+ SM501_POWER_MODE_0_GATE
);
566 writel(clock
, sm
->regs
+ SM501_POWER_MODE_0_CLOCK
);
571 writel(gate
, sm
->regs
+ SM501_POWER_MODE_1_GATE
);
572 writel(clock
, sm
->regs
+ SM501_POWER_MODE_1_CLOCK
);
577 mutex_unlock(&sm
->clock_lock
);
581 writel(mode
, sm
->regs
+ SM501_POWER_MODE_CONTROL
);
584 dev_info(sm
->dev
, "gate %08lx, clock %08lx, mode %08lx\n",
587 sm501_mdelay(sm
, 16);
588 mutex_unlock(&sm
->clock_lock
);
595 EXPORT_SYMBOL_GPL(sm501_set_clock
);
599 * finds the closest available frequency for a given clock
602 unsigned long sm501_find_clock(int clksrc
,
603 unsigned long req_freq
)
605 unsigned long sm501_freq
; /* the frequency achiveable by the 501 */
606 struct sm501_clock to
;
609 case SM501_CLOCK_P2XCLK
:
610 sm501_freq
= (sm501_select_clock(2 * req_freq
, &to
, 5) / 2);
613 case SM501_CLOCK_V2XCLK
:
614 sm501_freq
= (sm501_select_clock(2 * req_freq
, &to
, 3) / 2);
617 case SM501_CLOCK_MCLK
:
618 case SM501_CLOCK_M1XCLK
:
619 sm501_freq
= sm501_select_clock(req_freq
, &to
, 3);
623 sm501_freq
= 0; /* error */
629 EXPORT_SYMBOL_GPL(sm501_find_clock
);
631 static struct sm501_device
*to_sm_device(struct platform_device
*pdev
)
633 return container_of(pdev
, struct sm501_device
, pdev
);
636 /* sm501_device_release
638 * A release function for the platform devices we create to allow us to
639 * free any items we allocated
642 static void sm501_device_release(struct device
*dev
)
644 kfree(to_sm_device(to_platform_device(dev
)));
647 /* sm501_create_subdev
649 * Create a skeleton platform device with resources for passing to a
653 static struct platform_device
*
654 sm501_create_subdev(struct sm501_devdata
*sm
,
655 char *name
, unsigned int res_count
)
657 struct sm501_device
*smdev
;
659 smdev
= kzalloc(sizeof(struct sm501_device
) +
660 sizeof(struct resource
) * res_count
, GFP_KERNEL
);
664 smdev
->pdev
.dev
.release
= sm501_device_release
;
666 smdev
->pdev
.name
= name
;
667 smdev
->pdev
.id
= sm
->pdev_id
;
668 smdev
->pdev
.resource
= (struct resource
*)(smdev
+1);
669 smdev
->pdev
.num_resources
= res_count
;
671 smdev
->pdev
.dev
.parent
= sm
->dev
;
676 /* sm501_register_device
678 * Register a platform device created with sm501_create_subdev()
681 static int sm501_register_device(struct sm501_devdata
*sm
,
682 struct platform_device
*pdev
)
684 struct sm501_device
*smdev
= to_sm_device(pdev
);
688 for (ptr
= 0; ptr
< pdev
->num_resources
; ptr
++) {
689 printk("%s[%d] flags %08lx: %08llx..%08llx\n",
691 pdev
->resource
[ptr
].flags
,
692 (unsigned long long)pdev
->resource
[ptr
].start
,
693 (unsigned long long)pdev
->resource
[ptr
].end
);
696 ret
= platform_device_register(pdev
);
699 dev_dbg(sm
->dev
, "registered %s\n", pdev
->name
);
700 list_add_tail(&smdev
->list
, &sm
->devices
);
702 dev_err(sm
->dev
, "error registering %s (%d)\n",
708 /* sm501_create_subio
710 * Fill in an IO resource for a sub device
713 static void sm501_create_subio(struct sm501_devdata
*sm
,
714 struct resource
*res
,
715 resource_size_t offs
,
716 resource_size_t size
)
718 res
->flags
= IORESOURCE_MEM
;
719 res
->parent
= sm
->io_res
;
720 res
->start
= sm
->io_res
->start
+ offs
;
721 res
->end
= res
->start
+ size
- 1;
726 * Fill in an MEM resource for a sub device
729 static void sm501_create_mem(struct sm501_devdata
*sm
,
730 struct resource
*res
,
731 resource_size_t
*offs
,
732 resource_size_t size
)
734 *offs
-= size
; /* adjust memory size */
736 res
->flags
= IORESOURCE_MEM
;
737 res
->parent
= sm
->mem_res
;
738 res
->start
= sm
->mem_res
->start
+ *offs
;
739 res
->end
= res
->start
+ size
- 1;
744 * Fill in an IRQ resource for a sub device
747 static void sm501_create_irq(struct sm501_devdata
*sm
,
748 struct resource
*res
)
750 res
->flags
= IORESOURCE_IRQ
;
752 res
->start
= res
->end
= sm
->irq
;
755 static int sm501_register_usbhost(struct sm501_devdata
*sm
,
756 resource_size_t
*mem_avail
)
758 struct platform_device
*pdev
;
760 pdev
= sm501_create_subdev(sm
, "sm501-usb", 3);
764 sm501_create_subio(sm
, &pdev
->resource
[0], 0x40000, 0x20000);
765 sm501_create_mem(sm
, &pdev
->resource
[1], mem_avail
, 256*1024);
766 sm501_create_irq(sm
, &pdev
->resource
[2]);
768 return sm501_register_device(sm
, pdev
);
771 static int sm501_register_display(struct sm501_devdata
*sm
,
772 resource_size_t
*mem_avail
)
774 struct platform_device
*pdev
;
776 pdev
= sm501_create_subdev(sm
, "sm501-fb", 4);
780 sm501_create_subio(sm
, &pdev
->resource
[0], 0x80000, 0x10000);
781 sm501_create_subio(sm
, &pdev
->resource
[1], 0x100000, 0x50000);
782 sm501_create_mem(sm
, &pdev
->resource
[2], mem_avail
, *mem_avail
);
783 sm501_create_irq(sm
, &pdev
->resource
[3]);
785 return sm501_register_device(sm
, pdev
);
790 * Debug attribute to attach to parent device to show core registers
793 static ssize_t
sm501_dbg_regs(struct device
*dev
,
794 struct device_attribute
*attr
, char *buff
)
796 struct sm501_devdata
*sm
= dev_get_drvdata(dev
) ;
801 for (reg
= 0x00; reg
< 0x70; reg
+= 4) {
802 ret
= sprintf(ptr
, "%08x = %08x\n",
803 reg
, readl(sm
->regs
+ reg
));
811 static DEVICE_ATTR(dbg_regs
, 0666, sm501_dbg_regs
, NULL
);
815 * Helper function for the init code to setup a register
817 * clear the bits which are set in r->mask, and then set
818 * the bits set in r->set.
821 static inline void sm501_init_reg(struct sm501_devdata
*sm
,
823 struct sm501_reg_init
*r
)
827 tmp
= readl(sm
->regs
+ reg
);
830 writel(tmp
, sm
->regs
+ reg
);
835 * Setup core register values
838 static void sm501_init_regs(struct sm501_devdata
*sm
,
839 struct sm501_initdata
*init
)
841 sm501_misc_control(sm
->dev
,
842 init
->misc_control
.set
,
843 init
->misc_control
.mask
);
845 sm501_init_reg(sm
, SM501_MISC_TIMING
, &init
->misc_timing
);
846 sm501_init_reg(sm
, SM501_GPIO31_0_CONTROL
, &init
->gpio_low
);
847 sm501_init_reg(sm
, SM501_GPIO63_32_CONTROL
, &init
->gpio_high
);
850 dev_info(sm
->dev
, "setting M1XCLK to %ld\n", init
->m1xclk
);
851 sm501_set_clock(sm
->dev
, SM501_CLOCK_M1XCLK
, init
->m1xclk
);
855 dev_info(sm
->dev
, "setting MCLK to %ld\n", init
->mclk
);
856 sm501_set_clock(sm
->dev
, SM501_CLOCK_MCLK
, init
->mclk
);
861 /* Check the PLL sources for the M1CLK and M1XCLK
863 * If the M1CLK and M1XCLKs are not sourced from the same PLL, then
864 * there is a risk (see errata AB-5) that the SM501 will cease proper
865 * function. If this happens, then it is likely the SM501 will
869 static int sm501_check_clocks(struct sm501_devdata
*sm
)
871 unsigned long pwrmode
= readl(sm
->regs
+ SM501_CURRENT_CLOCK
);
872 unsigned long msrc
= (pwrmode
& SM501_POWERMODE_M_SRC
);
873 unsigned long m1src
= (pwrmode
& SM501_POWERMODE_M1_SRC
);
875 return ((msrc
== 0 && m1src
!= 0) || (msrc
!= 0 && m1src
== 0));
878 static unsigned int sm501_mem_local
[] = {
889 * Common init code for an SM501
892 static int sm501_init_dev(struct sm501_devdata
*sm
)
894 resource_size_t mem_avail
;
895 unsigned long dramctrl
;
899 mutex_init(&sm
->clock_lock
);
900 spin_lock_init(&sm
->reg_lock
);
902 INIT_LIST_HEAD(&sm
->devices
);
904 devid
= readl(sm
->regs
+ SM501_DEVICEID
);
906 if ((devid
& SM501_DEVICEID_IDMASK
) != SM501_DEVICEID_SM501
) {
907 dev_err(sm
->dev
, "incorrect device id %08lx\n", devid
);
911 dramctrl
= readl(sm
->regs
+ SM501_DRAM_CONTROL
);
912 mem_avail
= sm501_mem_local
[(dramctrl
>> 13) & 0x7];
914 dev_info(sm
->dev
, "SM501 At %p: Version %08lx, %ld Mb, IRQ %d\n",
915 sm
->regs
, devid
, (unsigned long)mem_avail
>> 20, sm
->irq
);
919 ret
= device_create_file(sm
->dev
, &dev_attr_dbg_regs
);
921 dev_err(sm
->dev
, "failed to create debug regs file\n");
925 /* check to see if we have some device initialisation */
928 struct sm501_platdata
*pdata
= sm
->platdata
;
931 sm501_init_regs(sm
, sm
->platdata
->init
);
933 if (pdata
->init
->devices
& SM501_USE_USB_HOST
)
934 sm501_register_usbhost(sm
, &mem_avail
);
938 ret
= sm501_check_clocks(sm
);
940 dev_err(sm
->dev
, "M1X and M clocks sourced from different "
945 /* always create a framebuffer */
946 sm501_register_display(sm
, &mem_avail
);
951 static int sm501_plat_probe(struct platform_device
*dev
)
953 struct sm501_devdata
*sm
;
956 sm
= kzalloc(sizeof(struct sm501_devdata
), GFP_KERNEL
);
958 dev_err(&dev
->dev
, "no memory for device data\n");
964 sm
->pdev_id
= dev
->id
;
965 sm
->irq
= platform_get_irq(dev
, 0);
966 sm
->io_res
= platform_get_resource(dev
, IORESOURCE_MEM
, 1);
967 sm
->mem_res
= platform_get_resource(dev
, IORESOURCE_MEM
, 0);
968 sm
->platdata
= dev
->dev
.platform_data
;
971 dev_err(&dev
->dev
, "failed to get irq resource\n");
976 if (sm
->io_res
== NULL
|| sm
->mem_res
== NULL
) {
977 dev_err(&dev
->dev
, "failed to get IO resource\n");
982 sm
->regs_claim
= request_mem_region(sm
->io_res
->start
,
985 if (sm
->regs_claim
== NULL
) {
986 dev_err(&dev
->dev
, "cannot claim registers\n");
991 platform_set_drvdata(dev
, sm
);
993 sm
->regs
= ioremap(sm
->io_res
->start
,
994 (sm
->io_res
->end
- sm
->io_res
->start
) - 1);
996 if (sm
->regs
== NULL
) {
997 dev_err(&dev
->dev
, "cannot remap registers\n");
1002 return sm501_init_dev(sm
);
1005 release_resource(sm
->regs_claim
);
1006 kfree(sm
->regs_claim
);
1015 /* power management support */
1017 static int sm501_plat_suspend(struct platform_device
*pdev
, pm_message_t state
)
1019 struct sm501_devdata
*sm
= platform_get_drvdata(pdev
);
1022 sm
->pm_misc
= readl(sm
->regs
+ SM501_MISC_CONTROL
);
1024 sm501_dump_regs(sm
);
1028 static int sm501_plat_resume(struct platform_device
*pdev
)
1030 struct sm501_devdata
*sm
= platform_get_drvdata(pdev
);
1032 sm501_dump_regs(sm
);
1033 sm501_dump_gate(sm
);
1036 /* check to see if we are in the same state as when suspended */
1038 if (readl(sm
->regs
+ SM501_MISC_CONTROL
) != sm
->pm_misc
) {
1039 dev_info(sm
->dev
, "SM501_MISC_CONTROL changed over sleep\n");
1040 writel(sm
->pm_misc
, sm
->regs
+ SM501_MISC_CONTROL
);
1042 /* our suspend causes the controller state to change,
1043 * either by something attempting setup, power loss,
1044 * or an external reset event on power change */
1046 if (sm
->platdata
&& sm
->platdata
->init
) {
1047 sm501_init_regs(sm
, sm
->platdata
->init
);
1051 /* dump our state from resume */
1053 sm501_dump_regs(sm
);
1061 #define sm501_plat_suspend NULL
1062 #define sm501_plat_resume NULL
1065 /* Initialisation data for PCI devices */
1067 static struct sm501_initdata sm501_pci_initdata
= {
1069 .set
= 0x3F000000, /* 24bit panel */
1073 .set
= 0x010100, /* SDRAM timing */
1077 .set
= SM501_MISC_PNL_24BIT
,
1081 .devices
= SM501_USE_ALL
,
1083 /* Errata AB-3 says that 72MHz is the fastest available
1084 * for 33MHZ PCI with proper bus-mastering operation */
1087 .m1xclk
= 144 * MHZ
,
1090 static struct sm501_platdata_fbsub sm501_pdata_fbsub
= {
1091 .flags
= (SM501FB_FLAG_USE_INIT_MODE
|
1092 SM501FB_FLAG_USE_HWCURSOR
|
1093 SM501FB_FLAG_USE_HWACCEL
|
1094 SM501FB_FLAG_DISABLE_AT_EXIT
),
1097 static struct sm501_platdata_fb sm501_fb_pdata
= {
1098 .fb_route
= SM501_FB_OWN
,
1099 .fb_crt
= &sm501_pdata_fbsub
,
1100 .fb_pnl
= &sm501_pdata_fbsub
,
1103 static struct sm501_platdata sm501_pci_platdata
= {
1104 .init
= &sm501_pci_initdata
,
1105 .fb
= &sm501_fb_pdata
,
1108 static int sm501_pci_probe(struct pci_dev
*dev
,
1109 const struct pci_device_id
*id
)
1111 struct sm501_devdata
*sm
;
1114 sm
= kzalloc(sizeof(struct sm501_devdata
), GFP_KERNEL
);
1116 dev_err(&dev
->dev
, "no memory for device data\n");
1121 /* set a default set of platform data */
1122 dev
->dev
.platform_data
= sm
->platdata
= &sm501_pci_platdata
;
1124 /* set a hopefully unique id for our child platform devices */
1125 sm
->pdev_id
= 32 + dev
->devfn
;
1127 pci_set_drvdata(dev
, sm
);
1129 err
= pci_enable_device(dev
);
1131 dev_err(&dev
->dev
, "cannot enable device\n");
1135 sm
->dev
= &dev
->dev
;
1139 /* if the system is big-endian, we most probably have a
1140 * translation in the IO layer making the PCI bus little endian
1141 * so make the framebuffer swapped pixels */
1143 sm501_fb_pdata
.flags
|= SM501_FBPD_SWAP_FB_ENDIAN
;
1146 /* check our resources */
1148 if (!(pci_resource_flags(dev
, 0) & IORESOURCE_MEM
)) {
1149 dev_err(&dev
->dev
, "region #0 is not memory?\n");
1154 if (!(pci_resource_flags(dev
, 1) & IORESOURCE_MEM
)) {
1155 dev_err(&dev
->dev
, "region #1 is not memory?\n");
1160 /* make our resources ready for sharing */
1162 sm
->io_res
= &dev
->resource
[1];
1163 sm
->mem_res
= &dev
->resource
[0];
1165 sm
->regs_claim
= request_mem_region(sm
->io_res
->start
,
1167 if (sm
->regs_claim
== NULL
) {
1168 dev_err(&dev
->dev
, "cannot claim registers\n");
1173 sm
->regs
= ioremap(pci_resource_start(dev
, 1),
1174 pci_resource_len(dev
, 1));
1176 if (sm
->regs
== NULL
) {
1177 dev_err(&dev
->dev
, "cannot remap registers\n");
1186 release_resource(sm
->regs_claim
);
1187 kfree(sm
->regs_claim
);
1189 pci_disable_device(dev
);
1191 pci_set_drvdata(dev
, NULL
);
1197 static void sm501_remove_sub(struct sm501_devdata
*sm
,
1198 struct sm501_device
*smdev
)
1200 list_del(&smdev
->list
);
1201 platform_device_unregister(&smdev
->pdev
);
1204 static void sm501_dev_remove(struct sm501_devdata
*sm
)
1206 struct sm501_device
*smdev
, *tmp
;
1208 list_for_each_entry_safe(smdev
, tmp
, &sm
->devices
, list
)
1209 sm501_remove_sub(sm
, smdev
);
1211 device_remove_file(sm
->dev
, &dev_attr_dbg_regs
);
1214 static void sm501_pci_remove(struct pci_dev
*dev
)
1216 struct sm501_devdata
*sm
= pci_get_drvdata(dev
);
1218 sm501_dev_remove(sm
);
1221 release_resource(sm
->regs_claim
);
1222 kfree(sm
->regs_claim
);
1224 pci_set_drvdata(dev
, NULL
);
1225 pci_disable_device(dev
);
1228 static int sm501_plat_remove(struct platform_device
*dev
)
1230 struct sm501_devdata
*sm
= platform_get_drvdata(dev
);
1232 sm501_dev_remove(sm
);
1235 release_resource(sm
->regs_claim
);
1236 kfree(sm
->regs_claim
);
1241 static struct pci_device_id sm501_pci_tbl
[] = {
1242 { 0x126f, 0x0501, PCI_ANY_ID
, PCI_ANY_ID
, 0, 0, 0 },
1246 MODULE_DEVICE_TABLE(pci
, sm501_pci_tbl
);
1248 static struct pci_driver sm501_pci_drv
= {
1250 .id_table
= sm501_pci_tbl
,
1251 .probe
= sm501_pci_probe
,
1252 .remove
= sm501_pci_remove
,
1255 static struct platform_driver sm501_plat_drv
= {
1258 .owner
= THIS_MODULE
,
1260 .probe
= sm501_plat_probe
,
1261 .remove
= sm501_plat_remove
,
1262 .suspend
= sm501_plat_suspend
,
1263 .resume
= sm501_plat_resume
,
1266 static int __init
sm501_base_init(void)
1268 platform_driver_register(&sm501_plat_drv
);
1269 return pci_register_driver(&sm501_pci_drv
);
1272 static void __exit
sm501_base_exit(void)
1274 platform_driver_unregister(&sm501_plat_drv
);
1275 pci_unregister_driver(&sm501_pci_drv
);
1278 module_init(sm501_base_init
);
1279 module_exit(sm501_base_exit
);
1281 MODULE_DESCRIPTION("SM501 Core Driver");
1282 MODULE_AUTHOR("Ben Dooks <ben@simtec.co.uk>, Vincent Sanders");
1283 MODULE_LICENSE("GPL v2");