2 * linux/arch/arm/common/sa1111.c
6 * Original code by John Dorsey
8 * This program is free software; you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License version 2 as
10 * published by the Free Software Foundation.
12 * This file contains all generic SA1111 support.
14 * All initialization functions provided here are intended to be called
15 * from machine specific code with proper arguments when required.
17 #include <linux/module.h>
18 #include <linux/init.h>
19 #include <linux/kernel.h>
20 #include <linux/delay.h>
21 #include <linux/errno.h>
22 #include <linux/ioport.h>
23 #include <linux/platform_device.h>
24 #include <linux/slab.h>
25 #include <linux/spinlock.h>
26 #include <linux/dma-mapping.h>
27 #include <linux/clk.h>
30 #include <mach/hardware.h>
31 #include <asm/mach-types.h>
33 #include <asm/mach/irq.h>
34 #include <asm/sizes.h>
36 #include <asm/hardware/sa1111.h>
38 extern void __init
sa1110_mb_enable(void);
41 * We keep the following data for the overall SA1111. Note that the
42 * struct device and struct resource are "fake"; they should be supplied
43 * by the bus above us. However, in the interests of getting all SA1111
44 * drivers converted over to the device model, we provide this as an
45 * anchor point for all the other drivers.
60 * We _really_ need to eliminate this. Its only users
61 * are the PWM and DMA checking code.
63 static struct sa1111
*g_sa1111
;
65 struct sa1111_dev_info
{
67 unsigned long skpcr_mask
;
72 static struct sa1111_dev_info sa1111_devices
[] = {
75 .skpcr_mask
= SKPCR_UCLKEN
,
76 .devid
= SA1111_DEVID_USB
,
88 .skpcr_mask
= SKPCR_I2SCLKEN
| SKPCR_L3CLKEN
,
89 .devid
= SA1111_DEVID_SAC
,
99 .skpcr_mask
= SKPCR_SCLKEN
,
100 .devid
= SA1111_DEVID_SSP
,
103 .offset
= SA1111_KBD
,
104 .skpcr_mask
= SKPCR_PTCLKEN
,
105 .devid
= SA1111_DEVID_PS2
,
112 .offset
= SA1111_MSE
,
113 .skpcr_mask
= SKPCR_PMCLKEN
,
114 .devid
= SA1111_DEVID_PS2
,
123 .devid
= SA1111_DEVID_PCMCIA
,
135 void __init
sa1111_adjust_zones(int node
, unsigned long *size
, unsigned long *holes
)
137 unsigned int sz
= SZ_1M
>> PAGE_SHIFT
;
142 size
[1] = size
[0] - sz
;
147 * SA1111 interrupt support. Since clearing an IRQ while there are
148 * active IRQs causes the interrupt output to pulse, the upper levels
149 * will call us again if there are more interrupts to process.
152 sa1111_irq_handler(unsigned int irq
, struct irq_desc
*desc
)
154 unsigned int stat0
, stat1
, i
;
155 void __iomem
*base
= get_irq_data(irq
);
157 stat0
= sa1111_readl(base
+ SA1111_INTSTATCLR0
);
158 stat1
= sa1111_readl(base
+ SA1111_INTSTATCLR1
);
160 sa1111_writel(stat0
, base
+ SA1111_INTSTATCLR0
);
162 desc
->chip
->ack(irq
);
164 sa1111_writel(stat1
, base
+ SA1111_INTSTATCLR1
);
166 if (stat0
== 0 && stat1
== 0) {
167 do_bad_IRQ(irq
, desc
);
171 for (i
= IRQ_SA1111_START
; stat0
; i
++, stat0
>>= 1)
173 handle_edge_irq(i
, irq_desc
+ i
);
175 for (i
= IRQ_SA1111_START
+ 32; stat1
; i
++, stat1
>>= 1)
177 handle_edge_irq(i
, irq_desc
+ i
);
179 /* For level-based interrupts */
180 desc
->chip
->unmask(irq
);
183 #define SA1111_IRQMASK_LO(x) (1 << (x - IRQ_SA1111_START))
184 #define SA1111_IRQMASK_HI(x) (1 << (x - IRQ_SA1111_START - 32))
186 static void sa1111_ack_irq(unsigned int irq
)
190 static void sa1111_mask_lowirq(unsigned int irq
)
192 void __iomem
*mapbase
= get_irq_chip_data(irq
);
195 ie0
= sa1111_readl(mapbase
+ SA1111_INTEN0
);
196 ie0
&= ~SA1111_IRQMASK_LO(irq
);
197 writel(ie0
, mapbase
+ SA1111_INTEN0
);
200 static void sa1111_unmask_lowirq(unsigned int irq
)
202 void __iomem
*mapbase
= get_irq_chip_data(irq
);
205 ie0
= sa1111_readl(mapbase
+ SA1111_INTEN0
);
206 ie0
|= SA1111_IRQMASK_LO(irq
);
207 sa1111_writel(ie0
, mapbase
+ SA1111_INTEN0
);
211 * Attempt to re-trigger the interrupt. The SA1111 contains a register
212 * (INTSET) which claims to do this. However, in practice no amount of
213 * manipulation of INTEN and INTSET guarantees that the interrupt will
214 * be triggered. In fact, its very difficult, if not impossible to get
215 * INTSET to re-trigger the interrupt.
217 static int sa1111_retrigger_lowirq(unsigned int irq
)
219 unsigned int mask
= SA1111_IRQMASK_LO(irq
);
220 void __iomem
*mapbase
= get_irq_chip_data(irq
);
224 ip0
= sa1111_readl(mapbase
+ SA1111_INTPOL0
);
225 for (i
= 0; i
< 8; i
++) {
226 sa1111_writel(ip0
^ mask
, mapbase
+ SA1111_INTPOL0
);
227 sa1111_writel(ip0
, mapbase
+ SA1111_INTPOL0
);
228 if (sa1111_readl(mapbase
+ SA1111_INTSTATCLR1
) & mask
)
233 printk(KERN_ERR
"Danger Will Robinson: failed to "
234 "re-trigger IRQ%d\n", irq
);
235 return i
== 8 ? -1 : 0;
238 static int sa1111_type_lowirq(unsigned int irq
, unsigned int flags
)
240 unsigned int mask
= SA1111_IRQMASK_LO(irq
);
241 void __iomem
*mapbase
= get_irq_chip_data(irq
);
244 if (flags
== IRQ_TYPE_PROBE
)
247 if ((!(flags
& IRQ_TYPE_EDGE_RISING
) ^ !(flags
& IRQ_TYPE_EDGE_FALLING
)) == 0)
250 ip0
= sa1111_readl(mapbase
+ SA1111_INTPOL0
);
251 if (flags
& IRQ_TYPE_EDGE_RISING
)
255 sa1111_writel(ip0
, mapbase
+ SA1111_INTPOL0
);
256 sa1111_writel(ip0
, mapbase
+ SA1111_WAKEPOL0
);
261 static int sa1111_wake_lowirq(unsigned int irq
, unsigned int on
)
263 unsigned int mask
= SA1111_IRQMASK_LO(irq
);
264 void __iomem
*mapbase
= get_irq_chip_data(irq
);
267 we0
= sa1111_readl(mapbase
+ SA1111_WAKEEN0
);
272 sa1111_writel(we0
, mapbase
+ SA1111_WAKEEN0
);
277 static struct irq_chip sa1111_low_chip
= {
279 .ack
= sa1111_ack_irq
,
280 .mask
= sa1111_mask_lowirq
,
281 .unmask
= sa1111_unmask_lowirq
,
282 .retrigger
= sa1111_retrigger_lowirq
,
283 .set_type
= sa1111_type_lowirq
,
284 .set_wake
= sa1111_wake_lowirq
,
287 static void sa1111_mask_highirq(unsigned int irq
)
289 void __iomem
*mapbase
= get_irq_chip_data(irq
);
292 ie1
= sa1111_readl(mapbase
+ SA1111_INTEN1
);
293 ie1
&= ~SA1111_IRQMASK_HI(irq
);
294 sa1111_writel(ie1
, mapbase
+ SA1111_INTEN1
);
297 static void sa1111_unmask_highirq(unsigned int irq
)
299 void __iomem
*mapbase
= get_irq_chip_data(irq
);
302 ie1
= sa1111_readl(mapbase
+ SA1111_INTEN1
);
303 ie1
|= SA1111_IRQMASK_HI(irq
);
304 sa1111_writel(ie1
, mapbase
+ SA1111_INTEN1
);
308 * Attempt to re-trigger the interrupt. The SA1111 contains a register
309 * (INTSET) which claims to do this. However, in practice no amount of
310 * manipulation of INTEN and INTSET guarantees that the interrupt will
311 * be triggered. In fact, its very difficult, if not impossible to get
312 * INTSET to re-trigger the interrupt.
314 static int sa1111_retrigger_highirq(unsigned int irq
)
316 unsigned int mask
= SA1111_IRQMASK_HI(irq
);
317 void __iomem
*mapbase
= get_irq_chip_data(irq
);
321 ip1
= sa1111_readl(mapbase
+ SA1111_INTPOL1
);
322 for (i
= 0; i
< 8; i
++) {
323 sa1111_writel(ip1
^ mask
, mapbase
+ SA1111_INTPOL1
);
324 sa1111_writel(ip1
, mapbase
+ SA1111_INTPOL1
);
325 if (sa1111_readl(mapbase
+ SA1111_INTSTATCLR1
) & mask
)
330 printk(KERN_ERR
"Danger Will Robinson: failed to "
331 "re-trigger IRQ%d\n", irq
);
332 return i
== 8 ? -1 : 0;
335 static int sa1111_type_highirq(unsigned int irq
, unsigned int flags
)
337 unsigned int mask
= SA1111_IRQMASK_HI(irq
);
338 void __iomem
*mapbase
= get_irq_chip_data(irq
);
341 if (flags
== IRQ_TYPE_PROBE
)
344 if ((!(flags
& IRQ_TYPE_EDGE_RISING
) ^ !(flags
& IRQ_TYPE_EDGE_FALLING
)) == 0)
347 ip1
= sa1111_readl(mapbase
+ SA1111_INTPOL1
);
348 if (flags
& IRQ_TYPE_EDGE_RISING
)
352 sa1111_writel(ip1
, mapbase
+ SA1111_INTPOL1
);
353 sa1111_writel(ip1
, mapbase
+ SA1111_WAKEPOL1
);
358 static int sa1111_wake_highirq(unsigned int irq
, unsigned int on
)
360 unsigned int mask
= SA1111_IRQMASK_HI(irq
);
361 void __iomem
*mapbase
= get_irq_chip_data(irq
);
364 we1
= sa1111_readl(mapbase
+ SA1111_WAKEEN1
);
369 sa1111_writel(we1
, mapbase
+ SA1111_WAKEEN1
);
374 static struct irq_chip sa1111_high_chip
= {
376 .ack
= sa1111_ack_irq
,
377 .mask
= sa1111_mask_highirq
,
378 .unmask
= sa1111_unmask_highirq
,
379 .retrigger
= sa1111_retrigger_highirq
,
380 .set_type
= sa1111_type_highirq
,
381 .set_wake
= sa1111_wake_highirq
,
384 static void sa1111_setup_irq(struct sa1111
*sachip
)
386 void __iomem
*irqbase
= sachip
->base
+ SA1111_INTC
;
390 * We're guaranteed that this region hasn't been taken.
392 request_mem_region(sachip
->phys
+ SA1111_INTC
, 512, "irq");
394 /* disable all IRQs */
395 sa1111_writel(0, irqbase
+ SA1111_INTEN0
);
396 sa1111_writel(0, irqbase
+ SA1111_INTEN1
);
397 sa1111_writel(0, irqbase
+ SA1111_WAKEEN0
);
398 sa1111_writel(0, irqbase
+ SA1111_WAKEEN1
);
401 * detect on rising edge. Note: Feb 2001 Errata for SA1111
402 * specifies that S0ReadyInt and S1ReadyInt should be '1'.
404 sa1111_writel(0, irqbase
+ SA1111_INTPOL0
);
405 sa1111_writel(SA1111_IRQMASK_HI(IRQ_S0_READY_NINT
) |
406 SA1111_IRQMASK_HI(IRQ_S1_READY_NINT
),
407 irqbase
+ SA1111_INTPOL1
);
410 sa1111_writel(~0, irqbase
+ SA1111_INTSTATCLR0
);
411 sa1111_writel(~0, irqbase
+ SA1111_INTSTATCLR1
);
413 for (irq
= IRQ_GPAIN0
; irq
<= SSPROR
; irq
++) {
414 set_irq_chip(irq
, &sa1111_low_chip
);
415 set_irq_chip_data(irq
, irqbase
);
416 set_irq_handler(irq
, handle_edge_irq
);
417 set_irq_flags(irq
, IRQF_VALID
| IRQF_PROBE
);
420 for (irq
= AUDXMTDMADONEA
; irq
<= IRQ_S1_BVD1_STSCHG
; irq
++) {
421 set_irq_chip(irq
, &sa1111_high_chip
);
422 set_irq_chip_data(irq
, irqbase
);
423 set_irq_handler(irq
, handle_edge_irq
);
424 set_irq_flags(irq
, IRQF_VALID
| IRQF_PROBE
);
428 * Register SA1111 interrupt
430 set_irq_type(sachip
->irq
, IRQ_TYPE_EDGE_RISING
);
431 set_irq_data(sachip
->irq
, irqbase
);
432 set_irq_chained_handler(sachip
->irq
, sa1111_irq_handler
);
436 * Bring the SA1111 out of reset. This requires a set procedure:
437 * 1. nRESET asserted (by hardware)
438 * 2. CLK turned on from SA1110
439 * 3. nRESET deasserted
440 * 4. VCO turned on, PLL_BYPASS turned off
441 * 5. Wait lock time, then assert RCLKEn
442 * 7. PCR set to allow clocking of individual functions
444 * Until we've done this, the only registers we can access are:
449 static void sa1111_wake(struct sa1111
*sachip
)
451 unsigned long flags
, r
;
453 spin_lock_irqsave(&sachip
->lock
, flags
);
455 clk_enable(sachip
->clk
);
458 * Turn VCO on, and disable PLL Bypass.
460 r
= sa1111_readl(sachip
->base
+ SA1111_SKCR
);
462 sa1111_writel(r
, sachip
->base
+ SA1111_SKCR
);
463 r
|= SKCR_PLL_BYPASS
| SKCR_OE_EN
;
464 sa1111_writel(r
, sachip
->base
+ SA1111_SKCR
);
467 * Wait lock time. SA1111 manual _doesn't_
468 * specify a figure for this! We choose 100us.
473 * Enable RCLK. We also ensure that RDYEN is set.
475 r
|= SKCR_RCLKEN
| SKCR_RDYEN
;
476 sa1111_writel(r
, sachip
->base
+ SA1111_SKCR
);
479 * Wait 14 RCLK cycles for the chip to finish coming out
480 * of reset. (RCLK=24MHz). This is 590ns.
485 * Ensure all clocks are initially off.
487 sa1111_writel(0, sachip
->base
+ SA1111_SKPCR
);
489 spin_unlock_irqrestore(&sachip
->lock
, flags
);
492 #ifdef CONFIG_ARCH_SA1100
494 static u32 sa1111_dma_mask
[] = {
506 * Configure the SA1111 shared memory controller.
509 sa1111_configure_smc(struct sa1111
*sachip
, int sdram
, unsigned int drac
,
510 unsigned int cas_latency
)
512 unsigned int smcr
= SMCR_DTIM
| SMCR_MBGE
| FInsrt(drac
, SMCR_DRAC
);
514 if (cas_latency
== 3)
517 sa1111_writel(smcr
, sachip
->base
+ SA1111_SMCR
);
520 * Now clear the bits in the DMA mask to work around the SA1111
521 * DMA erratum (Intel StrongARM SA-1111 Microprocessor Companion
522 * Chip Specification Update, June 2000, Erratum #7).
524 if (sachip
->dev
->dma_mask
)
525 *sachip
->dev
->dma_mask
&= sa1111_dma_mask
[drac
>> 2];
527 sachip
->dev
->coherent_dma_mask
&= sa1111_dma_mask
[drac
>> 2];
532 static void sa1111_dev_release(struct device
*_dev
)
534 struct sa1111_dev
*dev
= SA1111_DEV(_dev
);
536 release_resource(&dev
->res
);
541 sa1111_init_one_child(struct sa1111
*sachip
, struct resource
*parent
,
542 struct sa1111_dev_info
*info
)
544 struct sa1111_dev
*dev
;
547 dev
= kzalloc(sizeof(struct sa1111_dev
), GFP_KERNEL
);
553 dev_set_name(&dev
->dev
, "%4.4lx", info
->offset
);
554 dev
->devid
= info
->devid
;
555 dev
->dev
.parent
= sachip
->dev
;
556 dev
->dev
.bus
= &sa1111_bus_type
;
557 dev
->dev
.release
= sa1111_dev_release
;
558 dev
->dev
.coherent_dma_mask
= sachip
->dev
->coherent_dma_mask
;
559 dev
->res
.start
= sachip
->phys
+ info
->offset
;
560 dev
->res
.end
= dev
->res
.start
+ 511;
561 dev
->res
.name
= dev_name(&dev
->dev
);
562 dev
->res
.flags
= IORESOURCE_MEM
;
563 dev
->mapbase
= sachip
->base
+ info
->offset
;
564 dev
->skpcr_mask
= info
->skpcr_mask
;
565 memmove(dev
->irq
, info
->irq
, sizeof(dev
->irq
));
567 ret
= request_resource(parent
, &dev
->res
);
569 printk("SA1111: failed to allocate resource for %s\n",
571 dev_set_name(&dev
->dev
, NULL
);
577 ret
= device_register(&dev
->dev
);
579 release_resource(&dev
->res
);
584 #ifdef CONFIG_DMABOUNCE
586 * If the parent device has a DMA mask associated with it,
587 * propagate it down to the children.
589 if (sachip
->dev
->dma_mask
) {
590 dev
->dma_mask
= *sachip
->dev
->dma_mask
;
591 dev
->dev
.dma_mask
= &dev
->dma_mask
;
593 if (dev
->dma_mask
!= 0xffffffffUL
) {
594 ret
= dmabounce_register_dev(&dev
->dev
, 1024, 4096);
596 dev_err(&dev
->dev
, "SA1111: Failed to register"
597 " with dmabounce\n");
598 device_unregister(&dev
->dev
);
609 * sa1111_probe - probe for a single SA1111 chip.
610 * @phys_addr: physical address of device.
612 * Probe for a SA1111 chip. This must be called
613 * before any other SA1111-specific code.
616 * %-ENODEV device not found.
617 * %-EBUSY physical address already marked in-use.
621 __sa1111_probe(struct device
*me
, struct resource
*mem
, int irq
)
623 struct sa1111
*sachip
;
625 unsigned int has_devs
;
626 int i
, ret
= -ENODEV
;
628 sachip
= kzalloc(sizeof(struct sa1111
), GFP_KERNEL
);
632 sachip
->clk
= clk_get(me
, "SA1111_CLK");
633 if (IS_ERR(sachip
->clk
)) {
634 ret
= PTR_ERR(sachip
->clk
);
638 spin_lock_init(&sachip
->lock
);
641 dev_set_drvdata(sachip
->dev
, sachip
);
643 sachip
->phys
= mem
->start
;
647 * Map the whole region. This also maps the
648 * registers for our children.
650 sachip
->base
= ioremap(mem
->start
, PAGE_SIZE
* 2);
657 * Probe for the chip. Only touch the SBI registers.
659 id
= sa1111_readl(sachip
->base
+ SA1111_SKID
);
660 if ((id
& SKID_ID_MASK
) != SKID_SA1111_ID
) {
661 printk(KERN_DEBUG
"SA1111 not detected: ID = %08lx\n", id
);
666 printk(KERN_INFO
"SA1111 Microprocessor Companion Chip: "
667 "silicon revision %lx, metal revision %lx\n",
668 (id
& SKID_SIREV_MASK
)>>4, (id
& SKID_MTREV_MASK
));
671 * We found it. Wake the chip up, and initialise.
675 #ifdef CONFIG_ARCH_SA1100
680 * The SDRAM configuration of the SA1110 and the SA1111 must
681 * match. This is very important to ensure that SA1111 accesses
682 * don't corrupt the SDRAM. Note that this ungates the SA1111's
683 * MBGNT signal, so we must have called sa1110_mb_disable()
686 sa1111_configure_smc(sachip
, 1,
687 FExtr(MDCNFG
, MDCNFG_SA1110_DRAC0
),
688 FExtr(MDCNFG
, MDCNFG_SA1110_TDL0
));
691 * We only need to turn on DCLK whenever we want to use the
692 * DMA. It can otherwise be held firmly in the off position.
693 * (currently, we always enable it.)
695 val
= sa1111_readl(sachip
->base
+ SA1111_SKPCR
);
696 sa1111_writel(val
| SKPCR_DCLKEN
, sachip
->base
+ SA1111_SKPCR
);
699 * Enable the SA1110 memory bus request and grant signals.
706 * The interrupt controller must be initialised before any
707 * other device to ensure that the interrupts are available.
709 if (sachip
->irq
!= NO_IRQ
)
710 sa1111_setup_irq(sachip
);
715 if (machine_is_assabet() || machine_is_jornada720() ||
717 has_devs
&= ~(1 << 4);
719 has_devs
&= ~(1 << 1);
721 for (i
= 0; i
< ARRAY_SIZE(sa1111_devices
); i
++)
722 if (has_devs
& (1 << i
))
723 sa1111_init_one_child(sachip
, mem
, &sa1111_devices
[i
]);
728 iounmap(sachip
->base
);
730 clk_put(sachip
->clk
);
736 static int sa1111_remove_one(struct device
*dev
, void *data
)
738 device_unregister(dev
);
742 static void __sa1111_remove(struct sa1111
*sachip
)
744 void __iomem
*irqbase
= sachip
->base
+ SA1111_INTC
;
746 device_for_each_child(sachip
->dev
, NULL
, sa1111_remove_one
);
748 /* disable all IRQs */
749 sa1111_writel(0, irqbase
+ SA1111_INTEN0
);
750 sa1111_writel(0, irqbase
+ SA1111_INTEN1
);
751 sa1111_writel(0, irqbase
+ SA1111_WAKEEN0
);
752 sa1111_writel(0, irqbase
+ SA1111_WAKEEN1
);
754 clk_disable(sachip
->clk
);
756 if (sachip
->irq
!= NO_IRQ
) {
757 set_irq_chained_handler(sachip
->irq
, NULL
);
758 set_irq_data(sachip
->irq
, NULL
);
760 release_mem_region(sachip
->phys
+ SA1111_INTC
, 512);
763 iounmap(sachip
->base
);
764 clk_put(sachip
->clk
);
769 * According to the "Intel StrongARM SA-1111 Microprocessor Companion
770 * Chip Specification Update" (June 2000), erratum #7, there is a
771 * significant bug in the SA1111 SDRAM shared memory controller. If
772 * an access to a region of memory above 1MB relative to the bank base,
773 * it is important that address bit 10 _NOT_ be asserted. Depending
774 * on the configuration of the RAM, bit 10 may correspond to one
775 * of several different (processor-relative) address bits.
777 * This routine only identifies whether or not a given DMA address
778 * is susceptible to the bug.
780 * This should only get called for sa1111_device types due to the
781 * way we configure our device dma_masks.
783 int dma_needs_bounce(struct device
*dev
, dma_addr_t addr
, size_t size
)
786 * Section 4.6 of the "Intel StrongARM SA-1111 Development Module
787 * User's Guide" mentions that jumpers R51 and R52 control the
788 * target of SA-1111 DMA (either SDRAM bank 0 on Assabet, or
789 * SDRAM bank 1 on Neponset). The default configuration selects
790 * Assabet, so any address in bank 1 is necessarily invalid.
792 return ((machine_is_assabet() || machine_is_pfs168()) &&
793 (addr
>= 0xc8000000 || (addr
+ size
) >= 0xc8000000));
796 struct sa1111_save_data
{
801 unsigned char skpwm0
;
802 unsigned char skpwm1
;
805 * Interrupt controller
807 unsigned int intpol0
;
808 unsigned int intpol1
;
811 unsigned int wakepol0
;
812 unsigned int wakepol1
;
813 unsigned int wakeen0
;
814 unsigned int wakeen1
;
819 static int sa1111_suspend(struct platform_device
*dev
, pm_message_t state
)
821 struct sa1111
*sachip
= platform_get_drvdata(dev
);
822 struct sa1111_save_data
*save
;
827 save
= kmalloc(sizeof(struct sa1111_save_data
), GFP_KERNEL
);
830 sachip
->saved_state
= save
;
832 spin_lock_irqsave(&sachip
->lock
, flags
);
838 save
->skcr
= sa1111_readl(base
+ SA1111_SKCR
);
839 save
->skpcr
= sa1111_readl(base
+ SA1111_SKPCR
);
840 save
->skcdr
= sa1111_readl(base
+ SA1111_SKCDR
);
841 save
->skaud
= sa1111_readl(base
+ SA1111_SKAUD
);
842 save
->skpwm0
= sa1111_readl(base
+ SA1111_SKPWM0
);
843 save
->skpwm1
= sa1111_readl(base
+ SA1111_SKPWM1
);
845 base
= sachip
->base
+ SA1111_INTC
;
846 save
->intpol0
= sa1111_readl(base
+ SA1111_INTPOL0
);
847 save
->intpol1
= sa1111_readl(base
+ SA1111_INTPOL1
);
848 save
->inten0
= sa1111_readl(base
+ SA1111_INTEN0
);
849 save
->inten1
= sa1111_readl(base
+ SA1111_INTEN1
);
850 save
->wakepol0
= sa1111_readl(base
+ SA1111_WAKEPOL0
);
851 save
->wakepol1
= sa1111_readl(base
+ SA1111_WAKEPOL1
);
852 save
->wakeen0
= sa1111_readl(base
+ SA1111_WAKEEN0
);
853 save
->wakeen1
= sa1111_readl(base
+ SA1111_WAKEEN1
);
858 val
= sa1111_readl(sachip
->base
+ SA1111_SKCR
);
859 sa1111_writel(val
| SKCR_SLEEP
, sachip
->base
+ SA1111_SKCR
);
860 sa1111_writel(0, sachip
->base
+ SA1111_SKPWM0
);
861 sa1111_writel(0, sachip
->base
+ SA1111_SKPWM1
);
863 clk_disable(sachip
->clk
);
865 spin_unlock_irqrestore(&sachip
->lock
, flags
);
871 * sa1111_resume - Restore the SA1111 device state.
872 * @dev: device to restore
874 * Restore the general state of the SA1111; clock control and
875 * interrupt controller. Other parts of the SA1111 must be
876 * restored by their respective drivers, and must be called
877 * via LDM after this function.
879 static int sa1111_resume(struct platform_device
*dev
)
881 struct sa1111
*sachip
= platform_get_drvdata(dev
);
882 struct sa1111_save_data
*save
;
883 unsigned long flags
, id
;
886 save
= sachip
->saved_state
;
890 spin_lock_irqsave(&sachip
->lock
, flags
);
893 * Ensure that the SA1111 is still here.
894 * FIXME: shouldn't do this here.
896 id
= sa1111_readl(sachip
->base
+ SA1111_SKID
);
897 if ((id
& SKID_ID_MASK
) != SKID_SA1111_ID
) {
898 __sa1111_remove(sachip
);
899 platform_set_drvdata(dev
, NULL
);
905 * First of all, wake up the chip.
908 sa1111_writel(0, sachip
->base
+ SA1111_INTC
+ SA1111_INTEN0
);
909 sa1111_writel(0, sachip
->base
+ SA1111_INTC
+ SA1111_INTEN1
);
912 sa1111_writel(save
->skcr
, base
+ SA1111_SKCR
);
913 sa1111_writel(save
->skpcr
, base
+ SA1111_SKPCR
);
914 sa1111_writel(save
->skcdr
, base
+ SA1111_SKCDR
);
915 sa1111_writel(save
->skaud
, base
+ SA1111_SKAUD
);
916 sa1111_writel(save
->skpwm0
, base
+ SA1111_SKPWM0
);
917 sa1111_writel(save
->skpwm1
, base
+ SA1111_SKPWM1
);
919 base
= sachip
->base
+ SA1111_INTC
;
920 sa1111_writel(save
->intpol0
, base
+ SA1111_INTPOL0
);
921 sa1111_writel(save
->intpol1
, base
+ SA1111_INTPOL1
);
922 sa1111_writel(save
->inten0
, base
+ SA1111_INTEN0
);
923 sa1111_writel(save
->inten1
, base
+ SA1111_INTEN1
);
924 sa1111_writel(save
->wakepol0
, base
+ SA1111_WAKEPOL0
);
925 sa1111_writel(save
->wakepol1
, base
+ SA1111_WAKEPOL1
);
926 sa1111_writel(save
->wakeen0
, base
+ SA1111_WAKEEN0
);
927 sa1111_writel(save
->wakeen1
, base
+ SA1111_WAKEEN1
);
929 spin_unlock_irqrestore(&sachip
->lock
, flags
);
931 sachip
->saved_state
= NULL
;
938 #define sa1111_suspend NULL
939 #define sa1111_resume NULL
942 static int __devinit
sa1111_probe(struct platform_device
*pdev
)
944 struct resource
*mem
;
947 mem
= platform_get_resource(pdev
, IORESOURCE_MEM
, 0);
950 irq
= platform_get_irq(pdev
, 0);
954 return __sa1111_probe(&pdev
->dev
, mem
, irq
);
957 static int sa1111_remove(struct platform_device
*pdev
)
959 struct sa1111
*sachip
= platform_get_drvdata(pdev
);
962 __sa1111_remove(sachip
);
963 platform_set_drvdata(pdev
, NULL
);
966 kfree(sachip
->saved_state
);
967 sachip
->saved_state
= NULL
;
975 * Not sure if this should be on the system bus or not yet.
976 * We really want some way to register a system device at
977 * the per-machine level, and then have this driver pick
978 * up the registered devices.
980 * We also need to handle the SDRAM configuration for
981 * PXA250/SA1110 machine classes.
983 static struct platform_driver sa1111_device_driver
= {
984 .probe
= sa1111_probe
,
985 .remove
= sa1111_remove
,
986 .suspend
= sa1111_suspend
,
987 .resume
= sa1111_resume
,
994 * Get the parent device driver (us) structure
995 * from a child function device
997 static inline struct sa1111
*sa1111_chip_driver(struct sa1111_dev
*sadev
)
999 return (struct sa1111
*)dev_get_drvdata(sadev
->dev
.parent
);
1003 * The bits in the opdiv field are non-linear.
1005 static unsigned char opdiv_table
[] = { 1, 4, 2, 8 };
1007 static unsigned int __sa1111_pll_clock(struct sa1111
*sachip
)
1009 unsigned int skcdr
, fbdiv
, ipdiv
, opdiv
;
1011 skcdr
= sa1111_readl(sachip
->base
+ SA1111_SKCDR
);
1013 fbdiv
= (skcdr
& 0x007f) + 2;
1014 ipdiv
= ((skcdr
& 0x0f80) >> 7) + 2;
1015 opdiv
= opdiv_table
[(skcdr
& 0x3000) >> 12];
1017 return 3686400 * fbdiv
/ (ipdiv
* opdiv
);
1021 * sa1111_pll_clock - return the current PLL clock frequency.
1022 * @sadev: SA1111 function block
1024 * BUG: we should look at SKCR. We also blindly believe that
1025 * the chip is being fed with the 3.6864MHz clock.
1027 * Returns the PLL clock in Hz.
1029 unsigned int sa1111_pll_clock(struct sa1111_dev
*sadev
)
1031 struct sa1111
*sachip
= sa1111_chip_driver(sadev
);
1033 return __sa1111_pll_clock(sachip
);
1037 * sa1111_select_audio_mode - select I2S or AC link mode
1038 * @sadev: SA1111 function block
1039 * @mode: One of %SA1111_AUDIO_ACLINK or %SA1111_AUDIO_I2S
1041 * Frob the SKCR to select AC Link mode or I2S mode for
1044 void sa1111_select_audio_mode(struct sa1111_dev
*sadev
, int mode
)
1046 struct sa1111
*sachip
= sa1111_chip_driver(sadev
);
1047 unsigned long flags
;
1050 spin_lock_irqsave(&sachip
->lock
, flags
);
1052 val
= sa1111_readl(sachip
->base
+ SA1111_SKCR
);
1053 if (mode
== SA1111_AUDIO_I2S
) {
1058 sa1111_writel(val
, sachip
->base
+ SA1111_SKCR
);
1060 spin_unlock_irqrestore(&sachip
->lock
, flags
);
1064 * sa1111_set_audio_rate - set the audio sample rate
1065 * @sadev: SA1111 SAC function block
1066 * @rate: sample rate to select
1068 int sa1111_set_audio_rate(struct sa1111_dev
*sadev
, int rate
)
1070 struct sa1111
*sachip
= sa1111_chip_driver(sadev
);
1073 if (sadev
->devid
!= SA1111_DEVID_SAC
)
1076 div
= (__sa1111_pll_clock(sachip
) / 256 + rate
/ 2) / rate
;
1082 sa1111_writel(div
- 1, sachip
->base
+ SA1111_SKAUD
);
1088 * sa1111_get_audio_rate - get the audio sample rate
1089 * @sadev: SA1111 SAC function block device
1091 int sa1111_get_audio_rate(struct sa1111_dev
*sadev
)
1093 struct sa1111
*sachip
= sa1111_chip_driver(sadev
);
1096 if (sadev
->devid
!= SA1111_DEVID_SAC
)
1099 div
= sa1111_readl(sachip
->base
+ SA1111_SKAUD
) + 1;
1101 return __sa1111_pll_clock(sachip
) / (256 * div
);
1104 void sa1111_set_io_dir(struct sa1111_dev
*sadev
,
1105 unsigned int bits
, unsigned int dir
,
1106 unsigned int sleep_dir
)
1108 struct sa1111
*sachip
= sa1111_chip_driver(sadev
);
1109 unsigned long flags
;
1111 void __iomem
*gpio
= sachip
->base
+ SA1111_GPIO
;
1113 #define MODIFY_BITS(port, mask, dir) \
1115 val = sa1111_readl(port); \
1117 val |= (dir) & (mask); \
1118 sa1111_writel(val, port); \
1121 spin_lock_irqsave(&sachip
->lock
, flags
);
1122 MODIFY_BITS(gpio
+ SA1111_GPIO_PADDR
, bits
& 15, dir
);
1123 MODIFY_BITS(gpio
+ SA1111_GPIO_PBDDR
, (bits
>> 8) & 255, dir
>> 8);
1124 MODIFY_BITS(gpio
+ SA1111_GPIO_PCDDR
, (bits
>> 16) & 255, dir
>> 16);
1126 MODIFY_BITS(gpio
+ SA1111_GPIO_PASDR
, bits
& 15, sleep_dir
);
1127 MODIFY_BITS(gpio
+ SA1111_GPIO_PBSDR
, (bits
>> 8) & 255, sleep_dir
>> 8);
1128 MODIFY_BITS(gpio
+ SA1111_GPIO_PCSDR
, (bits
>> 16) & 255, sleep_dir
>> 16);
1129 spin_unlock_irqrestore(&sachip
->lock
, flags
);
1132 void sa1111_set_io(struct sa1111_dev
*sadev
, unsigned int bits
, unsigned int v
)
1134 struct sa1111
*sachip
= sa1111_chip_driver(sadev
);
1135 unsigned long flags
;
1137 void __iomem
*gpio
= sachip
->base
+ SA1111_GPIO
;
1139 spin_lock_irqsave(&sachip
->lock
, flags
);
1140 MODIFY_BITS(gpio
+ SA1111_GPIO_PADWR
, bits
& 15, v
);
1141 MODIFY_BITS(gpio
+ SA1111_GPIO_PBDWR
, (bits
>> 8) & 255, v
>> 8);
1142 MODIFY_BITS(gpio
+ SA1111_GPIO_PCDWR
, (bits
>> 16) & 255, v
>> 16);
1143 spin_unlock_irqrestore(&sachip
->lock
, flags
);
1146 void sa1111_set_sleep_io(struct sa1111_dev
*sadev
, unsigned int bits
, unsigned int v
)
1148 struct sa1111
*sachip
= sa1111_chip_driver(sadev
);
1149 unsigned long flags
;
1151 void __iomem
*gpio
= sachip
->base
+ SA1111_GPIO
;
1153 spin_lock_irqsave(&sachip
->lock
, flags
);
1154 MODIFY_BITS(gpio
+ SA1111_GPIO_PASSR
, bits
& 15, v
);
1155 MODIFY_BITS(gpio
+ SA1111_GPIO_PBSSR
, (bits
>> 8) & 255, v
>> 8);
1156 MODIFY_BITS(gpio
+ SA1111_GPIO_PCSSR
, (bits
>> 16) & 255, v
>> 16);
1157 spin_unlock_irqrestore(&sachip
->lock
, flags
);
1161 * Individual device operations.
1165 * sa1111_enable_device - enable an on-chip SA1111 function block
1166 * @sadev: SA1111 function block device to enable
1168 void sa1111_enable_device(struct sa1111_dev
*sadev
)
1170 struct sa1111
*sachip
= sa1111_chip_driver(sadev
);
1171 unsigned long flags
;
1174 spin_lock_irqsave(&sachip
->lock
, flags
);
1175 val
= sa1111_readl(sachip
->base
+ SA1111_SKPCR
);
1176 sa1111_writel(val
| sadev
->skpcr_mask
, sachip
->base
+ SA1111_SKPCR
);
1177 spin_unlock_irqrestore(&sachip
->lock
, flags
);
1181 * sa1111_disable_device - disable an on-chip SA1111 function block
1182 * @sadev: SA1111 function block device to disable
1184 void sa1111_disable_device(struct sa1111_dev
*sadev
)
1186 struct sa1111
*sachip
= sa1111_chip_driver(sadev
);
1187 unsigned long flags
;
1190 spin_lock_irqsave(&sachip
->lock
, flags
);
1191 val
= sa1111_readl(sachip
->base
+ SA1111_SKPCR
);
1192 sa1111_writel(val
& ~sadev
->skpcr_mask
, sachip
->base
+ SA1111_SKPCR
);
1193 spin_unlock_irqrestore(&sachip
->lock
, flags
);
1197 * SA1111 "Register Access Bus."
1199 * We model this as a regular bus type, and hang devices directly
1202 static int sa1111_match(struct device
*_dev
, struct device_driver
*_drv
)
1204 struct sa1111_dev
*dev
= SA1111_DEV(_dev
);
1205 struct sa1111_driver
*drv
= SA1111_DRV(_drv
);
1207 return dev
->devid
== drv
->devid
;
1210 static int sa1111_bus_suspend(struct device
*dev
, pm_message_t state
)
1212 struct sa1111_dev
*sadev
= SA1111_DEV(dev
);
1213 struct sa1111_driver
*drv
= SA1111_DRV(dev
->driver
);
1216 if (drv
&& drv
->suspend
)
1217 ret
= drv
->suspend(sadev
, state
);
1221 static int sa1111_bus_resume(struct device
*dev
)
1223 struct sa1111_dev
*sadev
= SA1111_DEV(dev
);
1224 struct sa1111_driver
*drv
= SA1111_DRV(dev
->driver
);
1227 if (drv
&& drv
->resume
)
1228 ret
= drv
->resume(sadev
);
1232 static int sa1111_bus_probe(struct device
*dev
)
1234 struct sa1111_dev
*sadev
= SA1111_DEV(dev
);
1235 struct sa1111_driver
*drv
= SA1111_DRV(dev
->driver
);
1239 ret
= drv
->probe(sadev
);
1243 static int sa1111_bus_remove(struct device
*dev
)
1245 struct sa1111_dev
*sadev
= SA1111_DEV(dev
);
1246 struct sa1111_driver
*drv
= SA1111_DRV(dev
->driver
);
1250 ret
= drv
->remove(sadev
);
1254 struct bus_type sa1111_bus_type
= {
1255 .name
= "sa1111-rab",
1256 .match
= sa1111_match
,
1257 .probe
= sa1111_bus_probe
,
1258 .remove
= sa1111_bus_remove
,
1259 .suspend
= sa1111_bus_suspend
,
1260 .resume
= sa1111_bus_resume
,
1263 int sa1111_driver_register(struct sa1111_driver
*driver
)
1265 driver
->drv
.bus
= &sa1111_bus_type
;
1266 return driver_register(&driver
->drv
);
1269 void sa1111_driver_unregister(struct sa1111_driver
*driver
)
1271 driver_unregister(&driver
->drv
);
1274 static int __init
sa1111_init(void)
1276 int ret
= bus_register(&sa1111_bus_type
);
1278 platform_driver_register(&sa1111_device_driver
);
1282 static void __exit
sa1111_exit(void)
1284 platform_driver_unregister(&sa1111_device_driver
);
1285 bus_unregister(&sa1111_bus_type
);
1288 subsys_initcall(sa1111_init
);
1289 module_exit(sa1111_exit
);
1291 MODULE_DESCRIPTION("Intel Corporation SA1111 core driver");
1292 MODULE_LICENSE("GPL");
1294 EXPORT_SYMBOL(sa1111_select_audio_mode
);
1295 EXPORT_SYMBOL(sa1111_set_audio_rate
);
1296 EXPORT_SYMBOL(sa1111_get_audio_rate
);
1297 EXPORT_SYMBOL(sa1111_set_io_dir
);
1298 EXPORT_SYMBOL(sa1111_set_io
);
1299 EXPORT_SYMBOL(sa1111_set_sleep_io
);
1300 EXPORT_SYMBOL(sa1111_enable_device
);
1301 EXPORT_SYMBOL(sa1111_disable_device
);
1302 EXPORT_SYMBOL(sa1111_pll_clock
);
1303 EXPORT_SYMBOL(sa1111_bus_type
);
1304 EXPORT_SYMBOL(sa1111_driver_register
);
1305 EXPORT_SYMBOL(sa1111_driver_unregister
);