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>
39 #define IRQ_GPAIN0 (0)
40 #define IRQ_GPAIN1 (1)
41 #define IRQ_GPAIN2 (2)
42 #define IRQ_GPAIN3 (3)
43 #define IRQ_GPBIN0 (4)
44 #define IRQ_GPBIN1 (5)
45 #define IRQ_GPBIN2 (6)
46 #define IRQ_GPBIN3 (7)
47 #define IRQ_GPBIN4 (8)
48 #define IRQ_GPBIN5 (9)
49 #define IRQ_GPCIN0 (10)
50 #define IRQ_GPCIN1 (11)
51 #define IRQ_GPCIN2 (12)
52 #define IRQ_GPCIN3 (13)
53 #define IRQ_GPCIN4 (14)
54 #define IRQ_GPCIN5 (15)
55 #define IRQ_GPCIN6 (16)
56 #define IRQ_GPCIN7 (17)
57 #define IRQ_MSTXINT (18)
58 #define IRQ_MSRXINT (19)
59 #define IRQ_MSSTOPERRINT (20)
60 #define IRQ_TPTXINT (21)
61 #define IRQ_TPRXINT (22)
62 #define IRQ_TPSTOPERRINT (23)
63 #define SSPXMTINT (24)
64 #define SSPRCVINT (25)
66 #define AUDXMTDMADONEA (32)
67 #define AUDRCVDMADONEA (33)
68 #define AUDXMTDMADONEB (34)
69 #define AUDRCVDMADONEB (35)
77 #define IRQ_USBPWR (43)
79 #define IRQ_HCIBUFFACC (45)
80 #define IRQ_HCIRMTWKP (46)
81 #define IRQ_NHCIMFCIR (47)
82 #define IRQ_USB_PORT_RESUME (48)
83 #define IRQ_S0_READY_NINT (49)
84 #define IRQ_S1_READY_NINT (50)
85 #define IRQ_S0_CD_VALID (51)
86 #define IRQ_S1_CD_VALID (52)
87 #define IRQ_S0_BVD1_STSCHG (53)
88 #define IRQ_S1_BVD1_STSCHG (54)
90 extern void __init
sa1110_mb_enable(void);
93 * We keep the following data for the overall SA1111. Note that the
94 * struct device and struct resource are "fake"; they should be supplied
95 * by the bus above us. However, in the interests of getting all SA1111
96 * drivers converted over to the device model, we provide this as an
97 * anchor point for all the other drivers.
104 int irq_base
; /* base for cascaded on-chip IRQs */
113 * We _really_ need to eliminate this. Its only users
114 * are the PWM and DMA checking code.
116 static struct sa1111
*g_sa1111
;
118 struct sa1111_dev_info
{
119 unsigned long offset
;
120 unsigned long skpcr_mask
;
125 static struct sa1111_dev_info sa1111_devices
[] = {
127 .offset
= SA1111_USB
,
128 .skpcr_mask
= SKPCR_UCLKEN
,
129 .devid
= SA1111_DEVID_USB
,
141 .skpcr_mask
= SKPCR_I2SCLKEN
| SKPCR_L3CLKEN
,
142 .devid
= SA1111_DEVID_SAC
,
152 .skpcr_mask
= SKPCR_SCLKEN
,
153 .devid
= SA1111_DEVID_SSP
,
156 .offset
= SA1111_KBD
,
157 .skpcr_mask
= SKPCR_PTCLKEN
,
158 .devid
= SA1111_DEVID_PS2
,
165 .offset
= SA1111_MSE
,
166 .skpcr_mask
= SKPCR_PMCLKEN
,
167 .devid
= SA1111_DEVID_PS2
,
176 .devid
= SA1111_DEVID_PCMCIA
,
188 void __init
sa1111_adjust_zones(unsigned long *size
, unsigned long *holes
)
190 unsigned int sz
= SZ_1M
>> PAGE_SHIFT
;
192 size
[1] = size
[0] - sz
;
197 * SA1111 interrupt support. Since clearing an IRQ while there are
198 * active IRQs causes the interrupt output to pulse, the upper levels
199 * will call us again if there are more interrupts to process.
202 sa1111_irq_handler(unsigned int irq
, struct irq_desc
*desc
)
204 unsigned int stat0
, stat1
, i
;
205 struct sa1111
*sachip
= get_irq_data(irq
);
206 void __iomem
*mapbase
= sachip
->base
+ SA1111_INTC
;
208 stat0
= sa1111_readl(mapbase
+ SA1111_INTSTATCLR0
);
209 stat1
= sa1111_readl(mapbase
+ SA1111_INTSTATCLR1
);
211 sa1111_writel(stat0
, mapbase
+ SA1111_INTSTATCLR0
);
213 desc
->irq_data
.chip
->irq_ack(&desc
->irq_data
);
215 sa1111_writel(stat1
, mapbase
+ SA1111_INTSTATCLR1
);
217 if (stat0
== 0 && stat1
== 0) {
218 do_bad_IRQ(irq
, desc
);
222 for (i
= 0; stat0
; i
++, stat0
>>= 1)
224 generic_handle_irq(i
+ sachip
->irq_base
);
226 for (i
= 32; stat1
; i
++, stat1
>>= 1)
228 generic_handle_irq(i
+ sachip
->irq_base
);
230 /* For level-based interrupts */
231 desc
->irq_data
.chip
->irq_unmask(&desc
->irq_data
);
234 #define SA1111_IRQMASK_LO(x) (1 << (x - sachip->irq_base))
235 #define SA1111_IRQMASK_HI(x) (1 << (x - sachip->irq_base - 32))
237 static void sa1111_ack_irq(struct irq_data
*d
)
241 static void sa1111_mask_lowirq(struct irq_data
*d
)
243 struct sa1111
*sachip
= irq_data_get_irq_chip_data(d
);
244 void __iomem
*mapbase
= sachip
->base
+ SA1111_INTC
;
247 ie0
= sa1111_readl(mapbase
+ SA1111_INTEN0
);
248 ie0
&= ~SA1111_IRQMASK_LO(d
->irq
);
249 writel(ie0
, mapbase
+ SA1111_INTEN0
);
252 static void sa1111_unmask_lowirq(struct irq_data
*d
)
254 struct sa1111
*sachip
= irq_data_get_irq_chip_data(d
);
255 void __iomem
*mapbase
= sachip
->base
+ SA1111_INTC
;
258 ie0
= sa1111_readl(mapbase
+ SA1111_INTEN0
);
259 ie0
|= SA1111_IRQMASK_LO(d
->irq
);
260 sa1111_writel(ie0
, mapbase
+ SA1111_INTEN0
);
264 * Attempt to re-trigger the interrupt. The SA1111 contains a register
265 * (INTSET) which claims to do this. However, in practice no amount of
266 * manipulation of INTEN and INTSET guarantees that the interrupt will
267 * be triggered. In fact, its very difficult, if not impossible to get
268 * INTSET to re-trigger the interrupt.
270 static int sa1111_retrigger_lowirq(struct irq_data
*d
)
272 struct sa1111
*sachip
= irq_data_get_irq_chip_data(d
);
273 void __iomem
*mapbase
= sachip
->base
+ SA1111_INTC
;
274 unsigned int mask
= SA1111_IRQMASK_LO(d
->irq
);
278 ip0
= sa1111_readl(mapbase
+ SA1111_INTPOL0
);
279 for (i
= 0; i
< 8; i
++) {
280 sa1111_writel(ip0
^ mask
, mapbase
+ SA1111_INTPOL0
);
281 sa1111_writel(ip0
, mapbase
+ SA1111_INTPOL0
);
282 if (sa1111_readl(mapbase
+ SA1111_INTSTATCLR0
) & mask
)
287 printk(KERN_ERR
"Danger Will Robinson: failed to "
288 "re-trigger IRQ%d\n", d
->irq
);
289 return i
== 8 ? -1 : 0;
292 static int sa1111_type_lowirq(struct irq_data
*d
, unsigned int flags
)
294 struct sa1111
*sachip
= irq_data_get_irq_chip_data(d
);
295 void __iomem
*mapbase
= sachip
->base
+ SA1111_INTC
;
296 unsigned int mask
= SA1111_IRQMASK_LO(d
->irq
);
299 if (flags
== IRQ_TYPE_PROBE
)
302 if ((!(flags
& IRQ_TYPE_EDGE_RISING
) ^ !(flags
& IRQ_TYPE_EDGE_FALLING
)) == 0)
305 ip0
= sa1111_readl(mapbase
+ SA1111_INTPOL0
);
306 if (flags
& IRQ_TYPE_EDGE_RISING
)
310 sa1111_writel(ip0
, mapbase
+ SA1111_INTPOL0
);
311 sa1111_writel(ip0
, mapbase
+ SA1111_WAKEPOL0
);
316 static int sa1111_wake_lowirq(struct irq_data
*d
, unsigned int on
)
318 struct sa1111
*sachip
= irq_data_get_irq_chip_data(d
);
319 void __iomem
*mapbase
= sachip
->base
+ SA1111_INTC
;
320 unsigned int mask
= SA1111_IRQMASK_LO(d
->irq
);
323 we0
= sa1111_readl(mapbase
+ SA1111_WAKEEN0
);
328 sa1111_writel(we0
, mapbase
+ SA1111_WAKEEN0
);
333 static struct irq_chip sa1111_low_chip
= {
335 .irq_ack
= sa1111_ack_irq
,
336 .irq_mask
= sa1111_mask_lowirq
,
337 .irq_unmask
= sa1111_unmask_lowirq
,
338 .irq_retrigger
= sa1111_retrigger_lowirq
,
339 .irq_set_type
= sa1111_type_lowirq
,
340 .irq_set_wake
= sa1111_wake_lowirq
,
343 static void sa1111_mask_highirq(struct irq_data
*d
)
345 struct sa1111
*sachip
= irq_data_get_irq_chip_data(d
);
346 void __iomem
*mapbase
= sachip
->base
+ SA1111_INTC
;
349 ie1
= sa1111_readl(mapbase
+ SA1111_INTEN1
);
350 ie1
&= ~SA1111_IRQMASK_HI(d
->irq
);
351 sa1111_writel(ie1
, mapbase
+ SA1111_INTEN1
);
354 static void sa1111_unmask_highirq(struct irq_data
*d
)
356 struct sa1111
*sachip
= irq_data_get_irq_chip_data(d
);
357 void __iomem
*mapbase
= sachip
->base
+ SA1111_INTC
;
360 ie1
= sa1111_readl(mapbase
+ SA1111_INTEN1
);
361 ie1
|= SA1111_IRQMASK_HI(d
->irq
);
362 sa1111_writel(ie1
, mapbase
+ SA1111_INTEN1
);
366 * Attempt to re-trigger the interrupt. The SA1111 contains a register
367 * (INTSET) which claims to do this. However, in practice no amount of
368 * manipulation of INTEN and INTSET guarantees that the interrupt will
369 * be triggered. In fact, its very difficult, if not impossible to get
370 * INTSET to re-trigger the interrupt.
372 static int sa1111_retrigger_highirq(struct irq_data
*d
)
374 struct sa1111
*sachip
= irq_data_get_irq_chip_data(d
);
375 void __iomem
*mapbase
= sachip
->base
+ SA1111_INTC
;
376 unsigned int mask
= SA1111_IRQMASK_HI(d
->irq
);
380 ip1
= sa1111_readl(mapbase
+ SA1111_INTPOL1
);
381 for (i
= 0; i
< 8; i
++) {
382 sa1111_writel(ip1
^ mask
, mapbase
+ SA1111_INTPOL1
);
383 sa1111_writel(ip1
, mapbase
+ SA1111_INTPOL1
);
384 if (sa1111_readl(mapbase
+ SA1111_INTSTATCLR1
) & mask
)
389 printk(KERN_ERR
"Danger Will Robinson: failed to "
390 "re-trigger IRQ%d\n", d
->irq
);
391 return i
== 8 ? -1 : 0;
394 static int sa1111_type_highirq(struct irq_data
*d
, unsigned int flags
)
396 struct sa1111
*sachip
= irq_data_get_irq_chip_data(d
);
397 void __iomem
*mapbase
= sachip
->base
+ SA1111_INTC
;
398 unsigned int mask
= SA1111_IRQMASK_HI(d
->irq
);
401 if (flags
== IRQ_TYPE_PROBE
)
404 if ((!(flags
& IRQ_TYPE_EDGE_RISING
) ^ !(flags
& IRQ_TYPE_EDGE_FALLING
)) == 0)
407 ip1
= sa1111_readl(mapbase
+ SA1111_INTPOL1
);
408 if (flags
& IRQ_TYPE_EDGE_RISING
)
412 sa1111_writel(ip1
, mapbase
+ SA1111_INTPOL1
);
413 sa1111_writel(ip1
, mapbase
+ SA1111_WAKEPOL1
);
418 static int sa1111_wake_highirq(struct irq_data
*d
, unsigned int on
)
420 struct sa1111
*sachip
= irq_data_get_irq_chip_data(d
);
421 void __iomem
*mapbase
= sachip
->base
+ SA1111_INTC
;
422 unsigned int mask
= SA1111_IRQMASK_HI(d
->irq
);
425 we1
= sa1111_readl(mapbase
+ SA1111_WAKEEN1
);
430 sa1111_writel(we1
, mapbase
+ SA1111_WAKEEN1
);
435 static struct irq_chip sa1111_high_chip
= {
437 .irq_ack
= sa1111_ack_irq
,
438 .irq_mask
= sa1111_mask_highirq
,
439 .irq_unmask
= sa1111_unmask_highirq
,
440 .irq_retrigger
= sa1111_retrigger_highirq
,
441 .irq_set_type
= sa1111_type_highirq
,
442 .irq_set_wake
= sa1111_wake_highirq
,
445 static void sa1111_setup_irq(struct sa1111
*sachip
)
447 void __iomem
*irqbase
= sachip
->base
+ SA1111_INTC
;
451 * We're guaranteed that this region hasn't been taken.
453 request_mem_region(sachip
->phys
+ SA1111_INTC
, 512, "irq");
455 /* disable all IRQs */
456 sa1111_writel(0, irqbase
+ SA1111_INTEN0
);
457 sa1111_writel(0, irqbase
+ SA1111_INTEN1
);
458 sa1111_writel(0, irqbase
+ SA1111_WAKEEN0
);
459 sa1111_writel(0, irqbase
+ SA1111_WAKEEN1
);
462 * detect on rising edge. Note: Feb 2001 Errata for SA1111
463 * specifies that S0ReadyInt and S1ReadyInt should be '1'.
465 sa1111_writel(0, irqbase
+ SA1111_INTPOL0
);
466 sa1111_writel(SA1111_IRQMASK_HI(IRQ_S0_READY_NINT
) |
467 SA1111_IRQMASK_HI(IRQ_S1_READY_NINT
),
468 irqbase
+ SA1111_INTPOL1
);
471 sa1111_writel(~0, irqbase
+ SA1111_INTSTATCLR0
);
472 sa1111_writel(~0, irqbase
+ SA1111_INTSTATCLR1
);
474 for (irq
= IRQ_GPAIN0
; irq
<= SSPROR
; irq
++) {
475 set_irq_chip(irq
, &sa1111_low_chip
);
476 set_irq_chip_data(irq
, sachip
);
477 set_irq_handler(irq
, handle_edge_irq
);
478 set_irq_flags(irq
, IRQF_VALID
| IRQF_PROBE
);
481 for (irq
= AUDXMTDMADONEA
; irq
<= IRQ_S1_BVD1_STSCHG
; irq
++) {
482 set_irq_chip(irq
, &sa1111_high_chip
);
483 set_irq_chip_data(irq
, sachip
);
484 set_irq_handler(irq
, handle_edge_irq
);
485 set_irq_flags(irq
, IRQF_VALID
| IRQF_PROBE
);
489 * Register SA1111 interrupt
491 set_irq_type(sachip
->irq
, IRQ_TYPE_EDGE_RISING
);
492 set_irq_data(sachip
->irq
, sachip
);
493 set_irq_chained_handler(sachip
->irq
, sa1111_irq_handler
);
497 * Bring the SA1111 out of reset. This requires a set procedure:
498 * 1. nRESET asserted (by hardware)
499 * 2. CLK turned on from SA1110
500 * 3. nRESET deasserted
501 * 4. VCO turned on, PLL_BYPASS turned off
502 * 5. Wait lock time, then assert RCLKEn
503 * 7. PCR set to allow clocking of individual functions
505 * Until we've done this, the only registers we can access are:
510 static void sa1111_wake(struct sa1111
*sachip
)
512 unsigned long flags
, r
;
514 spin_lock_irqsave(&sachip
->lock
, flags
);
516 clk_enable(sachip
->clk
);
519 * Turn VCO on, and disable PLL Bypass.
521 r
= sa1111_readl(sachip
->base
+ SA1111_SKCR
);
523 sa1111_writel(r
, sachip
->base
+ SA1111_SKCR
);
524 r
|= SKCR_PLL_BYPASS
| SKCR_OE_EN
;
525 sa1111_writel(r
, sachip
->base
+ SA1111_SKCR
);
528 * Wait lock time. SA1111 manual _doesn't_
529 * specify a figure for this! We choose 100us.
534 * Enable RCLK. We also ensure that RDYEN is set.
536 r
|= SKCR_RCLKEN
| SKCR_RDYEN
;
537 sa1111_writel(r
, sachip
->base
+ SA1111_SKCR
);
540 * Wait 14 RCLK cycles for the chip to finish coming out
541 * of reset. (RCLK=24MHz). This is 590ns.
546 * Ensure all clocks are initially off.
548 sa1111_writel(0, sachip
->base
+ SA1111_SKPCR
);
550 spin_unlock_irqrestore(&sachip
->lock
, flags
);
553 #ifdef CONFIG_ARCH_SA1100
555 static u32 sa1111_dma_mask
[] = {
567 * Configure the SA1111 shared memory controller.
570 sa1111_configure_smc(struct sa1111
*sachip
, int sdram
, unsigned int drac
,
571 unsigned int cas_latency
)
573 unsigned int smcr
= SMCR_DTIM
| SMCR_MBGE
| FInsrt(drac
, SMCR_DRAC
);
575 if (cas_latency
== 3)
578 sa1111_writel(smcr
, sachip
->base
+ SA1111_SMCR
);
581 * Now clear the bits in the DMA mask to work around the SA1111
582 * DMA erratum (Intel StrongARM SA-1111 Microprocessor Companion
583 * Chip Specification Update, June 2000, Erratum #7).
585 if (sachip
->dev
->dma_mask
)
586 *sachip
->dev
->dma_mask
&= sa1111_dma_mask
[drac
>> 2];
588 sachip
->dev
->coherent_dma_mask
&= sa1111_dma_mask
[drac
>> 2];
593 static void sa1111_dev_release(struct device
*_dev
)
595 struct sa1111_dev
*dev
= SA1111_DEV(_dev
);
597 release_resource(&dev
->res
);
602 sa1111_init_one_child(struct sa1111
*sachip
, struct resource
*parent
,
603 struct sa1111_dev_info
*info
)
605 struct sa1111_dev
*dev
;
608 dev
= kzalloc(sizeof(struct sa1111_dev
), GFP_KERNEL
);
614 dev_set_name(&dev
->dev
, "%4.4lx", info
->offset
);
615 dev
->devid
= info
->devid
;
616 dev
->dev
.parent
= sachip
->dev
;
617 dev
->dev
.bus
= &sa1111_bus_type
;
618 dev
->dev
.release
= sa1111_dev_release
;
619 dev
->dev
.coherent_dma_mask
= sachip
->dev
->coherent_dma_mask
;
620 dev
->res
.start
= sachip
->phys
+ info
->offset
;
621 dev
->res
.end
= dev
->res
.start
+ 511;
622 dev
->res
.name
= dev_name(&dev
->dev
);
623 dev
->res
.flags
= IORESOURCE_MEM
;
624 dev
->mapbase
= sachip
->base
+ info
->offset
;
625 dev
->skpcr_mask
= info
->skpcr_mask
;
626 memmove(dev
->irq
, info
->irq
, sizeof(dev
->irq
));
628 ret
= request_resource(parent
, &dev
->res
);
630 printk("SA1111: failed to allocate resource for %s\n",
632 dev_set_name(&dev
->dev
, NULL
);
638 ret
= device_register(&dev
->dev
);
640 release_resource(&dev
->res
);
645 #ifdef CONFIG_DMABOUNCE
647 * If the parent device has a DMA mask associated with it,
648 * propagate it down to the children.
650 if (sachip
->dev
->dma_mask
) {
651 dev
->dma_mask
= *sachip
->dev
->dma_mask
;
652 dev
->dev
.dma_mask
= &dev
->dma_mask
;
654 if (dev
->dma_mask
!= 0xffffffffUL
) {
655 ret
= dmabounce_register_dev(&dev
->dev
, 1024, 4096);
657 dev_err(&dev
->dev
, "SA1111: Failed to register"
658 " with dmabounce\n");
659 device_unregister(&dev
->dev
);
670 * sa1111_probe - probe for a single SA1111 chip.
671 * @phys_addr: physical address of device.
673 * Probe for a SA1111 chip. This must be called
674 * before any other SA1111-specific code.
677 * %-ENODEV device not found.
678 * %-EBUSY physical address already marked in-use.
682 __sa1111_probe(struct device
*me
, struct resource
*mem
, int irq
)
684 struct sa1111
*sachip
;
686 unsigned int has_devs
;
687 int i
, ret
= -ENODEV
;
689 sachip
= kzalloc(sizeof(struct sa1111
), GFP_KERNEL
);
693 sachip
->clk
= clk_get(me
, "SA1111_CLK");
694 if (IS_ERR(sachip
->clk
)) {
695 ret
= PTR_ERR(sachip
->clk
);
699 spin_lock_init(&sachip
->lock
);
702 dev_set_drvdata(sachip
->dev
, sachip
);
704 sachip
->phys
= mem
->start
;
708 * Map the whole region. This also maps the
709 * registers for our children.
711 sachip
->base
= ioremap(mem
->start
, PAGE_SIZE
* 2);
718 * Probe for the chip. Only touch the SBI registers.
720 id
= sa1111_readl(sachip
->base
+ SA1111_SKID
);
721 if ((id
& SKID_ID_MASK
) != SKID_SA1111_ID
) {
722 printk(KERN_DEBUG
"SA1111 not detected: ID = %08lx\n", id
);
727 printk(KERN_INFO
"SA1111 Microprocessor Companion Chip: "
728 "silicon revision %lx, metal revision %lx\n",
729 (id
& SKID_SIREV_MASK
)>>4, (id
& SKID_MTREV_MASK
));
732 * We found it. Wake the chip up, and initialise.
736 #ifdef CONFIG_ARCH_SA1100
741 * The SDRAM configuration of the SA1110 and the SA1111 must
742 * match. This is very important to ensure that SA1111 accesses
743 * don't corrupt the SDRAM. Note that this ungates the SA1111's
744 * MBGNT signal, so we must have called sa1110_mb_disable()
747 sa1111_configure_smc(sachip
, 1,
748 FExtr(MDCNFG
, MDCNFG_SA1110_DRAC0
),
749 FExtr(MDCNFG
, MDCNFG_SA1110_TDL0
));
752 * We only need to turn on DCLK whenever we want to use the
753 * DMA. It can otherwise be held firmly in the off position.
754 * (currently, we always enable it.)
756 val
= sa1111_readl(sachip
->base
+ SA1111_SKPCR
);
757 sa1111_writel(val
| SKPCR_DCLKEN
, sachip
->base
+ SA1111_SKPCR
);
760 * Enable the SA1110 memory bus request and grant signals.
767 * The interrupt controller must be initialised before any
768 * other device to ensure that the interrupts are available.
770 if (sachip
->irq
!= NO_IRQ
)
771 sa1111_setup_irq(sachip
);
776 if (machine_is_assabet() || machine_is_jornada720() ||
778 has_devs
&= ~(1 << 4);
780 has_devs
&= ~(1 << 1);
782 for (i
= 0; i
< ARRAY_SIZE(sa1111_devices
); i
++)
783 if (has_devs
& (1 << i
))
784 sa1111_init_one_child(sachip
, mem
, &sa1111_devices
[i
]);
789 iounmap(sachip
->base
);
791 clk_put(sachip
->clk
);
797 static int sa1111_remove_one(struct device
*dev
, void *data
)
799 device_unregister(dev
);
803 static void __sa1111_remove(struct sa1111
*sachip
)
805 void __iomem
*irqbase
= sachip
->base
+ SA1111_INTC
;
807 device_for_each_child(sachip
->dev
, NULL
, sa1111_remove_one
);
809 /* disable all IRQs */
810 sa1111_writel(0, irqbase
+ SA1111_INTEN0
);
811 sa1111_writel(0, irqbase
+ SA1111_INTEN1
);
812 sa1111_writel(0, irqbase
+ SA1111_WAKEEN0
);
813 sa1111_writel(0, irqbase
+ SA1111_WAKEEN1
);
815 clk_disable(sachip
->clk
);
817 if (sachip
->irq
!= NO_IRQ
) {
818 set_irq_chained_handler(sachip
->irq
, NULL
);
819 set_irq_data(sachip
->irq
, NULL
);
821 release_mem_region(sachip
->phys
+ SA1111_INTC
, 512);
824 iounmap(sachip
->base
);
825 clk_put(sachip
->clk
);
830 * According to the "Intel StrongARM SA-1111 Microprocessor Companion
831 * Chip Specification Update" (June 2000), erratum #7, there is a
832 * significant bug in the SA1111 SDRAM shared memory controller. If
833 * an access to a region of memory above 1MB relative to the bank base,
834 * it is important that address bit 10 _NOT_ be asserted. Depending
835 * on the configuration of the RAM, bit 10 may correspond to one
836 * of several different (processor-relative) address bits.
838 * This routine only identifies whether or not a given DMA address
839 * is susceptible to the bug.
841 * This should only get called for sa1111_device types due to the
842 * way we configure our device dma_masks.
844 int dma_needs_bounce(struct device
*dev
, dma_addr_t addr
, size_t size
)
847 * Section 4.6 of the "Intel StrongARM SA-1111 Development Module
848 * User's Guide" mentions that jumpers R51 and R52 control the
849 * target of SA-1111 DMA (either SDRAM bank 0 on Assabet, or
850 * SDRAM bank 1 on Neponset). The default configuration selects
851 * Assabet, so any address in bank 1 is necessarily invalid.
853 return ((machine_is_assabet() || machine_is_pfs168()) &&
854 (addr
>= 0xc8000000 || (addr
+ size
) >= 0xc8000000));
857 struct sa1111_save_data
{
862 unsigned char skpwm0
;
863 unsigned char skpwm1
;
866 * Interrupt controller
868 unsigned int intpol0
;
869 unsigned int intpol1
;
872 unsigned int wakepol0
;
873 unsigned int wakepol1
;
874 unsigned int wakeen0
;
875 unsigned int wakeen1
;
880 static int sa1111_suspend(struct platform_device
*dev
, pm_message_t state
)
882 struct sa1111
*sachip
= platform_get_drvdata(dev
);
883 struct sa1111_save_data
*save
;
888 save
= kmalloc(sizeof(struct sa1111_save_data
), GFP_KERNEL
);
891 sachip
->saved_state
= save
;
893 spin_lock_irqsave(&sachip
->lock
, flags
);
899 save
->skcr
= sa1111_readl(base
+ SA1111_SKCR
);
900 save
->skpcr
= sa1111_readl(base
+ SA1111_SKPCR
);
901 save
->skcdr
= sa1111_readl(base
+ SA1111_SKCDR
);
902 save
->skaud
= sa1111_readl(base
+ SA1111_SKAUD
);
903 save
->skpwm0
= sa1111_readl(base
+ SA1111_SKPWM0
);
904 save
->skpwm1
= sa1111_readl(base
+ SA1111_SKPWM1
);
906 base
= sachip
->base
+ SA1111_INTC
;
907 save
->intpol0
= sa1111_readl(base
+ SA1111_INTPOL0
);
908 save
->intpol1
= sa1111_readl(base
+ SA1111_INTPOL1
);
909 save
->inten0
= sa1111_readl(base
+ SA1111_INTEN0
);
910 save
->inten1
= sa1111_readl(base
+ SA1111_INTEN1
);
911 save
->wakepol0
= sa1111_readl(base
+ SA1111_WAKEPOL0
);
912 save
->wakepol1
= sa1111_readl(base
+ SA1111_WAKEPOL1
);
913 save
->wakeen0
= sa1111_readl(base
+ SA1111_WAKEEN0
);
914 save
->wakeen1
= sa1111_readl(base
+ SA1111_WAKEEN1
);
919 val
= sa1111_readl(sachip
->base
+ SA1111_SKCR
);
920 sa1111_writel(val
| SKCR_SLEEP
, sachip
->base
+ SA1111_SKCR
);
921 sa1111_writel(0, sachip
->base
+ SA1111_SKPWM0
);
922 sa1111_writel(0, sachip
->base
+ SA1111_SKPWM1
);
924 clk_disable(sachip
->clk
);
926 spin_unlock_irqrestore(&sachip
->lock
, flags
);
932 * sa1111_resume - Restore the SA1111 device state.
933 * @dev: device to restore
935 * Restore the general state of the SA1111; clock control and
936 * interrupt controller. Other parts of the SA1111 must be
937 * restored by their respective drivers, and must be called
938 * via LDM after this function.
940 static int sa1111_resume(struct platform_device
*dev
)
942 struct sa1111
*sachip
= platform_get_drvdata(dev
);
943 struct sa1111_save_data
*save
;
944 unsigned long flags
, id
;
947 save
= sachip
->saved_state
;
952 * Ensure that the SA1111 is still here.
953 * FIXME: shouldn't do this here.
955 id
= sa1111_readl(sachip
->base
+ SA1111_SKID
);
956 if ((id
& SKID_ID_MASK
) != SKID_SA1111_ID
) {
957 __sa1111_remove(sachip
);
958 platform_set_drvdata(dev
, NULL
);
964 * First of all, wake up the chip.
969 * Only lock for write ops. Also, sa1111_wake must be called with
972 spin_lock_irqsave(&sachip
->lock
, flags
);
974 sa1111_writel(0, sachip
->base
+ SA1111_INTC
+ SA1111_INTEN0
);
975 sa1111_writel(0, sachip
->base
+ SA1111_INTC
+ SA1111_INTEN1
);
978 sa1111_writel(save
->skcr
, base
+ SA1111_SKCR
);
979 sa1111_writel(save
->skpcr
, base
+ SA1111_SKPCR
);
980 sa1111_writel(save
->skcdr
, base
+ SA1111_SKCDR
);
981 sa1111_writel(save
->skaud
, base
+ SA1111_SKAUD
);
982 sa1111_writel(save
->skpwm0
, base
+ SA1111_SKPWM0
);
983 sa1111_writel(save
->skpwm1
, base
+ SA1111_SKPWM1
);
985 base
= sachip
->base
+ SA1111_INTC
;
986 sa1111_writel(save
->intpol0
, base
+ SA1111_INTPOL0
);
987 sa1111_writel(save
->intpol1
, base
+ SA1111_INTPOL1
);
988 sa1111_writel(save
->inten0
, base
+ SA1111_INTEN0
);
989 sa1111_writel(save
->inten1
, base
+ SA1111_INTEN1
);
990 sa1111_writel(save
->wakepol0
, base
+ SA1111_WAKEPOL0
);
991 sa1111_writel(save
->wakepol1
, base
+ SA1111_WAKEPOL1
);
992 sa1111_writel(save
->wakeen0
, base
+ SA1111_WAKEEN0
);
993 sa1111_writel(save
->wakeen1
, base
+ SA1111_WAKEEN1
);
995 spin_unlock_irqrestore(&sachip
->lock
, flags
);
997 sachip
->saved_state
= NULL
;
1004 #define sa1111_suspend NULL
1005 #define sa1111_resume NULL
1008 static int __devinit
sa1111_probe(struct platform_device
*pdev
)
1010 struct resource
*mem
;
1013 mem
= platform_get_resource(pdev
, IORESOURCE_MEM
, 0);
1016 irq
= platform_get_irq(pdev
, 0);
1020 return __sa1111_probe(&pdev
->dev
, mem
, irq
);
1023 static int sa1111_remove(struct platform_device
*pdev
)
1025 struct sa1111
*sachip
= platform_get_drvdata(pdev
);
1029 kfree(sachip
->saved_state
);
1030 sachip
->saved_state
= NULL
;
1032 __sa1111_remove(sachip
);
1033 platform_set_drvdata(pdev
, NULL
);
1040 * Not sure if this should be on the system bus or not yet.
1041 * We really want some way to register a system device at
1042 * the per-machine level, and then have this driver pick
1043 * up the registered devices.
1045 * We also need to handle the SDRAM configuration for
1046 * PXA250/SA1110 machine classes.
1048 static struct platform_driver sa1111_device_driver
= {
1049 .probe
= sa1111_probe
,
1050 .remove
= sa1111_remove
,
1051 .suspend
= sa1111_suspend
,
1052 .resume
= sa1111_resume
,
1059 * Get the parent device driver (us) structure
1060 * from a child function device
1062 static inline struct sa1111
*sa1111_chip_driver(struct sa1111_dev
*sadev
)
1064 return (struct sa1111
*)dev_get_drvdata(sadev
->dev
.parent
);
1068 * The bits in the opdiv field are non-linear.
1070 static unsigned char opdiv_table
[] = { 1, 4, 2, 8 };
1072 static unsigned int __sa1111_pll_clock(struct sa1111
*sachip
)
1074 unsigned int skcdr
, fbdiv
, ipdiv
, opdiv
;
1076 skcdr
= sa1111_readl(sachip
->base
+ SA1111_SKCDR
);
1078 fbdiv
= (skcdr
& 0x007f) + 2;
1079 ipdiv
= ((skcdr
& 0x0f80) >> 7) + 2;
1080 opdiv
= opdiv_table
[(skcdr
& 0x3000) >> 12];
1082 return 3686400 * fbdiv
/ (ipdiv
* opdiv
);
1086 * sa1111_pll_clock - return the current PLL clock frequency.
1087 * @sadev: SA1111 function block
1089 * BUG: we should look at SKCR. We also blindly believe that
1090 * the chip is being fed with the 3.6864MHz clock.
1092 * Returns the PLL clock in Hz.
1094 unsigned int sa1111_pll_clock(struct sa1111_dev
*sadev
)
1096 struct sa1111
*sachip
= sa1111_chip_driver(sadev
);
1098 return __sa1111_pll_clock(sachip
);
1100 EXPORT_SYMBOL(sa1111_pll_clock
);
1103 * sa1111_select_audio_mode - select I2S or AC link mode
1104 * @sadev: SA1111 function block
1105 * @mode: One of %SA1111_AUDIO_ACLINK or %SA1111_AUDIO_I2S
1107 * Frob the SKCR to select AC Link mode or I2S mode for
1110 void sa1111_select_audio_mode(struct sa1111_dev
*sadev
, int mode
)
1112 struct sa1111
*sachip
= sa1111_chip_driver(sadev
);
1113 unsigned long flags
;
1116 spin_lock_irqsave(&sachip
->lock
, flags
);
1118 val
= sa1111_readl(sachip
->base
+ SA1111_SKCR
);
1119 if (mode
== SA1111_AUDIO_I2S
) {
1124 sa1111_writel(val
, sachip
->base
+ SA1111_SKCR
);
1126 spin_unlock_irqrestore(&sachip
->lock
, flags
);
1128 EXPORT_SYMBOL(sa1111_select_audio_mode
);
1131 * sa1111_set_audio_rate - set the audio sample rate
1132 * @sadev: SA1111 SAC function block
1133 * @rate: sample rate to select
1135 int sa1111_set_audio_rate(struct sa1111_dev
*sadev
, int rate
)
1137 struct sa1111
*sachip
= sa1111_chip_driver(sadev
);
1140 if (sadev
->devid
!= SA1111_DEVID_SAC
)
1143 div
= (__sa1111_pll_clock(sachip
) / 256 + rate
/ 2) / rate
;
1149 sa1111_writel(div
- 1, sachip
->base
+ SA1111_SKAUD
);
1153 EXPORT_SYMBOL(sa1111_set_audio_rate
);
1156 * sa1111_get_audio_rate - get the audio sample rate
1157 * @sadev: SA1111 SAC function block device
1159 int sa1111_get_audio_rate(struct sa1111_dev
*sadev
)
1161 struct sa1111
*sachip
= sa1111_chip_driver(sadev
);
1164 if (sadev
->devid
!= SA1111_DEVID_SAC
)
1167 div
= sa1111_readl(sachip
->base
+ SA1111_SKAUD
) + 1;
1169 return __sa1111_pll_clock(sachip
) / (256 * div
);
1171 EXPORT_SYMBOL(sa1111_get_audio_rate
);
1173 void sa1111_set_io_dir(struct sa1111_dev
*sadev
,
1174 unsigned int bits
, unsigned int dir
,
1175 unsigned int sleep_dir
)
1177 struct sa1111
*sachip
= sa1111_chip_driver(sadev
);
1178 unsigned long flags
;
1180 void __iomem
*gpio
= sachip
->base
+ SA1111_GPIO
;
1182 #define MODIFY_BITS(port, mask, dir) \
1184 val = sa1111_readl(port); \
1186 val |= (dir) & (mask); \
1187 sa1111_writel(val, port); \
1190 spin_lock_irqsave(&sachip
->lock
, flags
);
1191 MODIFY_BITS(gpio
+ SA1111_GPIO_PADDR
, bits
& 15, dir
);
1192 MODIFY_BITS(gpio
+ SA1111_GPIO_PBDDR
, (bits
>> 8) & 255, dir
>> 8);
1193 MODIFY_BITS(gpio
+ SA1111_GPIO_PCDDR
, (bits
>> 16) & 255, dir
>> 16);
1195 MODIFY_BITS(gpio
+ SA1111_GPIO_PASDR
, bits
& 15, sleep_dir
);
1196 MODIFY_BITS(gpio
+ SA1111_GPIO_PBSDR
, (bits
>> 8) & 255, sleep_dir
>> 8);
1197 MODIFY_BITS(gpio
+ SA1111_GPIO_PCSDR
, (bits
>> 16) & 255, sleep_dir
>> 16);
1198 spin_unlock_irqrestore(&sachip
->lock
, flags
);
1200 EXPORT_SYMBOL(sa1111_set_io_dir
);
1202 void sa1111_set_io(struct sa1111_dev
*sadev
, unsigned int bits
, unsigned int v
)
1204 struct sa1111
*sachip
= sa1111_chip_driver(sadev
);
1205 unsigned long flags
;
1207 void __iomem
*gpio
= sachip
->base
+ SA1111_GPIO
;
1209 spin_lock_irqsave(&sachip
->lock
, flags
);
1210 MODIFY_BITS(gpio
+ SA1111_GPIO_PADWR
, bits
& 15, v
);
1211 MODIFY_BITS(gpio
+ SA1111_GPIO_PBDWR
, (bits
>> 8) & 255, v
>> 8);
1212 MODIFY_BITS(gpio
+ SA1111_GPIO_PCDWR
, (bits
>> 16) & 255, v
>> 16);
1213 spin_unlock_irqrestore(&sachip
->lock
, flags
);
1215 EXPORT_SYMBOL(sa1111_set_io
);
1217 void sa1111_set_sleep_io(struct sa1111_dev
*sadev
, unsigned int bits
, unsigned int v
)
1219 struct sa1111
*sachip
= sa1111_chip_driver(sadev
);
1220 unsigned long flags
;
1222 void __iomem
*gpio
= sachip
->base
+ SA1111_GPIO
;
1224 spin_lock_irqsave(&sachip
->lock
, flags
);
1225 MODIFY_BITS(gpio
+ SA1111_GPIO_PASSR
, bits
& 15, v
);
1226 MODIFY_BITS(gpio
+ SA1111_GPIO_PBSSR
, (bits
>> 8) & 255, v
>> 8);
1227 MODIFY_BITS(gpio
+ SA1111_GPIO_PCSSR
, (bits
>> 16) & 255, v
>> 16);
1228 spin_unlock_irqrestore(&sachip
->lock
, flags
);
1230 EXPORT_SYMBOL(sa1111_set_sleep_io
);
1233 * Individual device operations.
1237 * sa1111_enable_device - enable an on-chip SA1111 function block
1238 * @sadev: SA1111 function block device to enable
1240 void sa1111_enable_device(struct sa1111_dev
*sadev
)
1242 struct sa1111
*sachip
= sa1111_chip_driver(sadev
);
1243 unsigned long flags
;
1246 spin_lock_irqsave(&sachip
->lock
, flags
);
1247 val
= sa1111_readl(sachip
->base
+ SA1111_SKPCR
);
1248 sa1111_writel(val
| sadev
->skpcr_mask
, sachip
->base
+ SA1111_SKPCR
);
1249 spin_unlock_irqrestore(&sachip
->lock
, flags
);
1251 EXPORT_SYMBOL(sa1111_enable_device
);
1254 * sa1111_disable_device - disable an on-chip SA1111 function block
1255 * @sadev: SA1111 function block device to disable
1257 void sa1111_disable_device(struct sa1111_dev
*sadev
)
1259 struct sa1111
*sachip
= sa1111_chip_driver(sadev
);
1260 unsigned long flags
;
1263 spin_lock_irqsave(&sachip
->lock
, flags
);
1264 val
= sa1111_readl(sachip
->base
+ SA1111_SKPCR
);
1265 sa1111_writel(val
& ~sadev
->skpcr_mask
, sachip
->base
+ SA1111_SKPCR
);
1266 spin_unlock_irqrestore(&sachip
->lock
, flags
);
1268 EXPORT_SYMBOL(sa1111_disable_device
);
1271 * SA1111 "Register Access Bus."
1273 * We model this as a regular bus type, and hang devices directly
1276 static int sa1111_match(struct device
*_dev
, struct device_driver
*_drv
)
1278 struct sa1111_dev
*dev
= SA1111_DEV(_dev
);
1279 struct sa1111_driver
*drv
= SA1111_DRV(_drv
);
1281 return dev
->devid
== drv
->devid
;
1284 static int sa1111_bus_suspend(struct device
*dev
, pm_message_t state
)
1286 struct sa1111_dev
*sadev
= SA1111_DEV(dev
);
1287 struct sa1111_driver
*drv
= SA1111_DRV(dev
->driver
);
1290 if (drv
&& drv
->suspend
)
1291 ret
= drv
->suspend(sadev
, state
);
1295 static int sa1111_bus_resume(struct device
*dev
)
1297 struct sa1111_dev
*sadev
= SA1111_DEV(dev
);
1298 struct sa1111_driver
*drv
= SA1111_DRV(dev
->driver
);
1301 if (drv
&& drv
->resume
)
1302 ret
= drv
->resume(sadev
);
1306 static int sa1111_bus_probe(struct device
*dev
)
1308 struct sa1111_dev
*sadev
= SA1111_DEV(dev
);
1309 struct sa1111_driver
*drv
= SA1111_DRV(dev
->driver
);
1313 ret
= drv
->probe(sadev
);
1317 static int sa1111_bus_remove(struct device
*dev
)
1319 struct sa1111_dev
*sadev
= SA1111_DEV(dev
);
1320 struct sa1111_driver
*drv
= SA1111_DRV(dev
->driver
);
1324 ret
= drv
->remove(sadev
);
1328 struct bus_type sa1111_bus_type
= {
1329 .name
= "sa1111-rab",
1330 .match
= sa1111_match
,
1331 .probe
= sa1111_bus_probe
,
1332 .remove
= sa1111_bus_remove
,
1333 .suspend
= sa1111_bus_suspend
,
1334 .resume
= sa1111_bus_resume
,
1336 EXPORT_SYMBOL(sa1111_bus_type
);
1338 int sa1111_driver_register(struct sa1111_driver
*driver
)
1340 driver
->drv
.bus
= &sa1111_bus_type
;
1341 return driver_register(&driver
->drv
);
1343 EXPORT_SYMBOL(sa1111_driver_register
);
1345 void sa1111_driver_unregister(struct sa1111_driver
*driver
)
1347 driver_unregister(&driver
->drv
);
1349 EXPORT_SYMBOL(sa1111_driver_unregister
);
1351 static int __init
sa1111_init(void)
1353 int ret
= bus_register(&sa1111_bus_type
);
1355 platform_driver_register(&sa1111_device_driver
);
1359 static void __exit
sa1111_exit(void)
1361 platform_driver_unregister(&sa1111_device_driver
);
1362 bus_unregister(&sa1111_bus_type
);
1365 subsys_initcall(sa1111_init
);
1366 module_exit(sa1111_exit
);
1368 MODULE_DESCRIPTION("Intel Corporation SA1111 core driver");
1369 MODULE_LICENSE("GPL");