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/gpio/driver.h>
19 #include <linux/init.h>
20 #include <linux/irq.h>
21 #include <linux/kernel.h>
22 #include <linux/delay.h>
23 #include <linux/errno.h>
24 #include <linux/ioport.h>
25 #include <linux/platform_device.h>
26 #include <linux/slab.h>
27 #include <linux/spinlock.h>
28 #include <linux/dma-mapping.h>
29 #include <linux/clk.h>
32 #include <mach/hardware.h>
33 #include <asm/mach/irq.h>
34 #include <asm/mach-types.h>
35 #include <asm/sizes.h>
37 #include <asm/hardware/sa1111.h>
40 #define IRQ_GPAIN0 (0)
41 #define IRQ_GPAIN1 (1)
42 #define IRQ_GPAIN2 (2)
43 #define IRQ_GPAIN3 (3)
44 #define IRQ_GPBIN0 (4)
45 #define IRQ_GPBIN1 (5)
46 #define IRQ_GPBIN2 (6)
47 #define IRQ_GPBIN3 (7)
48 #define IRQ_GPBIN4 (8)
49 #define IRQ_GPBIN5 (9)
50 #define IRQ_GPCIN0 (10)
51 #define IRQ_GPCIN1 (11)
52 #define IRQ_GPCIN2 (12)
53 #define IRQ_GPCIN3 (13)
54 #define IRQ_GPCIN4 (14)
55 #define IRQ_GPCIN5 (15)
56 #define IRQ_GPCIN6 (16)
57 #define IRQ_GPCIN7 (17)
58 #define IRQ_MSTXINT (18)
59 #define IRQ_MSRXINT (19)
60 #define IRQ_MSSTOPERRINT (20)
61 #define IRQ_TPTXINT (21)
62 #define IRQ_TPRXINT (22)
63 #define IRQ_TPSTOPERRINT (23)
64 #define SSPXMTINT (24)
65 #define SSPRCVINT (25)
67 #define AUDXMTDMADONEA (32)
68 #define AUDRCVDMADONEA (33)
69 #define AUDXMTDMADONEB (34)
70 #define AUDRCVDMADONEB (35)
78 #define IRQ_USBPWR (43)
80 #define IRQ_HCIBUFFACC (45)
81 #define IRQ_HCIRMTWKP (46)
82 #define IRQ_NHCIMFCIR (47)
83 #define IRQ_USB_PORT_RESUME (48)
84 #define IRQ_S0_READY_NINT (49)
85 #define IRQ_S1_READY_NINT (50)
86 #define IRQ_S0_CD_VALID (51)
87 #define IRQ_S1_CD_VALID (52)
88 #define IRQ_S0_BVD1_STSCHG (53)
89 #define IRQ_S1_BVD1_STSCHG (54)
90 #define SA1111_IRQ_NR (55)
92 extern void sa1110_mb_enable(void);
93 extern void sa1110_mb_disable(void);
96 * We keep the following data for the overall SA1111. Note that the
97 * struct device and struct resource are "fake"; they should be supplied
98 * by the bus above us. However, in the interests of getting all SA1111
99 * drivers converted over to the device model, we provide this as an
100 * anchor point for all the other drivers.
107 int irq_base
; /* base for cascaded on-chip IRQs */
110 struct sa1111_platform_data
*pdata
;
118 * We _really_ need to eliminate this. Its only users
119 * are the PWM and DMA checking code.
121 static struct sa1111
*g_sa1111
;
123 struct sa1111_dev_info
{
124 unsigned long offset
;
125 unsigned long skpcr_mask
;
131 static struct sa1111_dev_info sa1111_devices
[] = {
133 .offset
= SA1111_USB
,
134 .skpcr_mask
= SKPCR_UCLKEN
,
136 .devid
= SA1111_DEVID_USB
,
148 .skpcr_mask
= SKPCR_I2SCLKEN
| SKPCR_L3CLKEN
,
150 .devid
= SA1111_DEVID_SAC
,
160 .skpcr_mask
= SKPCR_SCLKEN
,
161 .devid
= SA1111_DEVID_SSP
,
164 .offset
= SA1111_KBD
,
165 .skpcr_mask
= SKPCR_PTCLKEN
,
166 .devid
= SA1111_DEVID_PS2_KBD
,
173 .offset
= SA1111_MSE
,
174 .skpcr_mask
= SKPCR_PMCLKEN
,
175 .devid
= SA1111_DEVID_PS2_MSE
,
184 .devid
= SA1111_DEVID_PCMCIA
,
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.
201 static void sa1111_irq_handler(struct irq_desc
*desc
)
203 unsigned int stat0
, stat1
, i
;
204 struct sa1111
*sachip
= irq_desc_get_handler_data(desc
);
205 void __iomem
*mapbase
= sachip
->base
+ SA1111_INTC
;
207 stat0
= sa1111_readl(mapbase
+ SA1111_INTSTATCLR0
);
208 stat1
= sa1111_readl(mapbase
+ SA1111_INTSTATCLR1
);
210 sa1111_writel(stat0
, mapbase
+ SA1111_INTSTATCLR0
);
212 desc
->irq_data
.chip
->irq_ack(&desc
->irq_data
);
214 sa1111_writel(stat1
, mapbase
+ SA1111_INTSTATCLR1
);
216 if (stat0
== 0 && stat1
== 0) {
221 for (i
= 0; stat0
; i
++, stat0
>>= 1)
223 generic_handle_irq(i
+ sachip
->irq_base
);
225 for (i
= 32; stat1
; i
++, stat1
>>= 1)
227 generic_handle_irq(i
+ sachip
->irq_base
);
229 /* For level-based interrupts */
230 desc
->irq_data
.chip
->irq_unmask(&desc
->irq_data
);
233 #define SA1111_IRQMASK_LO(x) (1 << (x - sachip->irq_base))
234 #define SA1111_IRQMASK_HI(x) (1 << (x - sachip->irq_base - 32))
236 static u32
sa1111_irqmask(struct irq_data
*d
)
238 struct sa1111
*sachip
= irq_data_get_irq_chip_data(d
);
240 return BIT((d
->irq
- sachip
->irq_base
) & 31);
243 static int sa1111_irqbank(struct irq_data
*d
)
245 struct sa1111
*sachip
= irq_data_get_irq_chip_data(d
);
247 return ((d
->irq
- sachip
->irq_base
) / 32) * 4;
250 static void sa1111_ack_irq(struct irq_data
*d
)
254 static void sa1111_mask_irq(struct irq_data
*d
)
256 struct sa1111
*sachip
= irq_data_get_irq_chip_data(d
);
257 void __iomem
*mapbase
= sachip
->base
+ SA1111_INTC
+ sa1111_irqbank(d
);
260 ie
= sa1111_readl(mapbase
+ SA1111_INTEN0
);
261 ie
&= ~sa1111_irqmask(d
);
262 sa1111_writel(ie
, mapbase
+ SA1111_INTEN0
);
265 static void sa1111_unmask_irq(struct irq_data
*d
)
267 struct sa1111
*sachip
= irq_data_get_irq_chip_data(d
);
268 void __iomem
*mapbase
= sachip
->base
+ SA1111_INTC
+ sa1111_irqbank(d
);
271 ie
= sa1111_readl(mapbase
+ SA1111_INTEN0
);
272 ie
|= sa1111_irqmask(d
);
273 sa1111_writel(ie
, mapbase
+ SA1111_INTEN0
);
277 * Attempt to re-trigger the interrupt. The SA1111 contains a register
278 * (INTSET) which claims to do this. However, in practice no amount of
279 * manipulation of INTEN and INTSET guarantees that the interrupt will
280 * be triggered. In fact, its very difficult, if not impossible to get
281 * INTSET to re-trigger the interrupt.
283 static int sa1111_retrigger_irq(struct irq_data
*d
)
285 struct sa1111
*sachip
= irq_data_get_irq_chip_data(d
);
286 void __iomem
*mapbase
= sachip
->base
+ SA1111_INTC
+ sa1111_irqbank(d
);
287 u32 ip
, mask
= sa1111_irqmask(d
);
290 ip
= sa1111_readl(mapbase
+ SA1111_INTPOL0
);
291 for (i
= 0; i
< 8; i
++) {
292 sa1111_writel(ip
^ mask
, mapbase
+ SA1111_INTPOL0
);
293 sa1111_writel(ip
, mapbase
+ SA1111_INTPOL0
);
294 if (sa1111_readl(mapbase
+ SA1111_INTSTATCLR0
) & mask
)
299 pr_err("Danger Will Robinson: failed to re-trigger IRQ%d\n",
301 return i
== 8 ? -1 : 0;
304 static int sa1111_type_irq(struct irq_data
*d
, unsigned int flags
)
306 struct sa1111
*sachip
= irq_data_get_irq_chip_data(d
);
307 void __iomem
*mapbase
= sachip
->base
+ SA1111_INTC
+ sa1111_irqbank(d
);
308 u32 ip
, mask
= sa1111_irqmask(d
);
310 if (flags
== IRQ_TYPE_PROBE
)
313 if ((!(flags
& IRQ_TYPE_EDGE_RISING
) ^ !(flags
& IRQ_TYPE_EDGE_FALLING
)) == 0)
316 ip
= sa1111_readl(mapbase
+ SA1111_INTPOL0
);
317 if (flags
& IRQ_TYPE_EDGE_RISING
)
321 sa1111_writel(ip
, mapbase
+ SA1111_INTPOL0
);
322 sa1111_writel(ip
, mapbase
+ SA1111_WAKEPOL0
);
327 static int sa1111_wake_irq(struct irq_data
*d
, unsigned int on
)
329 struct sa1111
*sachip
= irq_data_get_irq_chip_data(d
);
330 void __iomem
*mapbase
= sachip
->base
+ SA1111_INTC
+ sa1111_irqbank(d
);
331 u32 we
, mask
= sa1111_irqmask(d
);
333 we
= sa1111_readl(mapbase
+ SA1111_WAKEEN0
);
338 sa1111_writel(we
, mapbase
+ SA1111_WAKEEN0
);
343 static struct irq_chip sa1111_irq_chip
= {
345 .irq_ack
= sa1111_ack_irq
,
346 .irq_mask
= sa1111_mask_irq
,
347 .irq_unmask
= sa1111_unmask_irq
,
348 .irq_retrigger
= sa1111_retrigger_irq
,
349 .irq_set_type
= sa1111_type_irq
,
350 .irq_set_wake
= sa1111_wake_irq
,
353 static int sa1111_setup_irq(struct sa1111
*sachip
, unsigned irq_base
)
355 void __iomem
*irqbase
= sachip
->base
+ SA1111_INTC
;
360 * We're guaranteed that this region hasn't been taken.
362 request_mem_region(sachip
->phys
+ SA1111_INTC
, 512, "irq");
364 ret
= irq_alloc_descs(-1, irq_base
, SA1111_IRQ_NR
, -1);
366 dev_err(sachip
->dev
, "unable to allocate %u irqs: %d\n",
373 sachip
->irq_base
= ret
;
375 /* disable all IRQs */
376 sa1111_writel(0, irqbase
+ SA1111_INTEN0
);
377 sa1111_writel(0, irqbase
+ SA1111_INTEN1
);
378 sa1111_writel(0, irqbase
+ SA1111_WAKEEN0
);
379 sa1111_writel(0, irqbase
+ SA1111_WAKEEN1
);
382 * detect on rising edge. Note: Feb 2001 Errata for SA1111
383 * specifies that S0ReadyInt and S1ReadyInt should be '1'.
385 sa1111_writel(0, irqbase
+ SA1111_INTPOL0
);
386 sa1111_writel(BIT(IRQ_S0_READY_NINT
& 31) |
387 BIT(IRQ_S1_READY_NINT
& 31),
388 irqbase
+ SA1111_INTPOL1
);
391 sa1111_writel(~0, irqbase
+ SA1111_INTSTATCLR0
);
392 sa1111_writel(~0, irqbase
+ SA1111_INTSTATCLR1
);
394 for (i
= IRQ_GPAIN0
; i
<= SSPROR
; i
++) {
395 irq
= sachip
->irq_base
+ i
;
396 irq_set_chip_and_handler(irq
, &sa1111_irq_chip
, handle_edge_irq
);
397 irq_set_chip_data(irq
, sachip
);
398 irq_clear_status_flags(irq
, IRQ_NOREQUEST
| IRQ_NOPROBE
);
401 for (i
= AUDXMTDMADONEA
; i
<= IRQ_S1_BVD1_STSCHG
; i
++) {
402 irq
= sachip
->irq_base
+ i
;
403 irq_set_chip_and_handler(irq
, &sa1111_irq_chip
, handle_edge_irq
);
404 irq_set_chip_data(irq
, sachip
);
405 irq_clear_status_flags(irq
, IRQ_NOREQUEST
| IRQ_NOPROBE
);
409 * Register SA1111 interrupt
411 irq_set_irq_type(sachip
->irq
, IRQ_TYPE_EDGE_RISING
);
412 irq_set_chained_handler_and_data(sachip
->irq
, sa1111_irq_handler
,
415 dev_info(sachip
->dev
, "Providing IRQ%u-%u\n",
416 sachip
->irq_base
, sachip
->irq_base
+ SA1111_IRQ_NR
- 1);
421 static void sa1111_remove_irq(struct sa1111
*sachip
)
423 void __iomem
*irqbase
= sachip
->base
+ SA1111_INTC
;
425 /* disable all IRQs */
426 sa1111_writel(0, irqbase
+ SA1111_INTEN0
);
427 sa1111_writel(0, irqbase
+ SA1111_INTEN1
);
428 sa1111_writel(0, irqbase
+ SA1111_WAKEEN0
);
429 sa1111_writel(0, irqbase
+ SA1111_WAKEEN1
);
431 if (sachip
->irq
!= NO_IRQ
) {
432 irq_set_chained_handler_and_data(sachip
->irq
, NULL
, NULL
);
433 irq_free_descs(sachip
->irq_base
, SA1111_IRQ_NR
);
435 release_mem_region(sachip
->phys
+ SA1111_INTC
, 512);
440 SA1111_GPIO_PXDDR
= (SA1111_GPIO_PADDR
- SA1111_GPIO_PADDR
),
441 SA1111_GPIO_PXDRR
= (SA1111_GPIO_PADRR
- SA1111_GPIO_PADDR
),
442 SA1111_GPIO_PXDWR
= (SA1111_GPIO_PADWR
- SA1111_GPIO_PADDR
),
443 SA1111_GPIO_PXSDR
= (SA1111_GPIO_PASDR
- SA1111_GPIO_PADDR
),
444 SA1111_GPIO_PXSSR
= (SA1111_GPIO_PASSR
- SA1111_GPIO_PADDR
),
447 static struct sa1111
*gc_to_sa1111(struct gpio_chip
*gc
)
449 return container_of(gc
, struct sa1111
, gc
);
452 static void __iomem
*sa1111_gpio_map_reg(struct sa1111
*sachip
, unsigned offset
)
454 void __iomem
*reg
= sachip
->base
+ SA1111_GPIO
;
457 return reg
+ SA1111_GPIO_PADDR
;
459 return reg
+ SA1111_GPIO_PBDDR
;
461 return reg
+ SA1111_GPIO_PCDDR
;
465 static u32
sa1111_gpio_map_bit(unsigned offset
)
470 return BIT(offset
- 4);
472 return BIT(offset
- 10);
476 static void sa1111_gpio_modify(void __iomem
*reg
, u32 mask
, u32 set
)
480 val
= readl_relaxed(reg
);
483 writel_relaxed(val
, reg
);
486 static int sa1111_gpio_get_direction(struct gpio_chip
*gc
, unsigned offset
)
488 struct sa1111
*sachip
= gc_to_sa1111(gc
);
489 void __iomem
*reg
= sa1111_gpio_map_reg(sachip
, offset
);
490 u32 mask
= sa1111_gpio_map_bit(offset
);
492 return !!(readl_relaxed(reg
+ SA1111_GPIO_PXDDR
) & mask
);
495 static int sa1111_gpio_direction_input(struct gpio_chip
*gc
, unsigned offset
)
497 struct sa1111
*sachip
= gc_to_sa1111(gc
);
499 void __iomem
*reg
= sa1111_gpio_map_reg(sachip
, offset
);
500 u32 mask
= sa1111_gpio_map_bit(offset
);
502 spin_lock_irqsave(&sachip
->lock
, flags
);
503 sa1111_gpio_modify(reg
+ SA1111_GPIO_PXDDR
, mask
, mask
);
504 sa1111_gpio_modify(reg
+ SA1111_GPIO_PXSDR
, mask
, mask
);
505 spin_unlock_irqrestore(&sachip
->lock
, flags
);
510 static int sa1111_gpio_direction_output(struct gpio_chip
*gc
, unsigned offset
,
513 struct sa1111
*sachip
= gc_to_sa1111(gc
);
515 void __iomem
*reg
= sa1111_gpio_map_reg(sachip
, offset
);
516 u32 mask
= sa1111_gpio_map_bit(offset
);
518 spin_lock_irqsave(&sachip
->lock
, flags
);
519 sa1111_gpio_modify(reg
+ SA1111_GPIO_PXDWR
, mask
, value
? mask
: 0);
520 sa1111_gpio_modify(reg
+ SA1111_GPIO_PXSSR
, mask
, value
? mask
: 0);
521 sa1111_gpio_modify(reg
+ SA1111_GPIO_PXDDR
, mask
, 0);
522 sa1111_gpio_modify(reg
+ SA1111_GPIO_PXSDR
, mask
, 0);
523 spin_unlock_irqrestore(&sachip
->lock
, flags
);
528 static int sa1111_gpio_get(struct gpio_chip
*gc
, unsigned offset
)
530 struct sa1111
*sachip
= gc_to_sa1111(gc
);
531 void __iomem
*reg
= sa1111_gpio_map_reg(sachip
, offset
);
532 u32 mask
= sa1111_gpio_map_bit(offset
);
534 return !!(readl_relaxed(reg
+ SA1111_GPIO_PXDRR
) & mask
);
537 static void sa1111_gpio_set(struct gpio_chip
*gc
, unsigned offset
, int value
)
539 struct sa1111
*sachip
= gc_to_sa1111(gc
);
541 void __iomem
*reg
= sa1111_gpio_map_reg(sachip
, offset
);
542 u32 mask
= sa1111_gpio_map_bit(offset
);
544 spin_lock_irqsave(&sachip
->lock
, flags
);
545 sa1111_gpio_modify(reg
+ SA1111_GPIO_PXDWR
, mask
, value
? mask
: 0);
546 sa1111_gpio_modify(reg
+ SA1111_GPIO_PXSSR
, mask
, value
? mask
: 0);
547 spin_unlock_irqrestore(&sachip
->lock
, flags
);
550 static void sa1111_gpio_set_multiple(struct gpio_chip
*gc
, unsigned long *mask
,
553 struct sa1111
*sachip
= gc_to_sa1111(gc
);
555 void __iomem
*reg
= sachip
->base
+ SA1111_GPIO
;
561 spin_lock_irqsave(&sachip
->lock
, flags
);
562 sa1111_gpio_modify(reg
+ SA1111_GPIO_PADWR
, msk
& 15, val
);
563 sa1111_gpio_modify(reg
+ SA1111_GPIO_PASSR
, msk
& 15, val
);
564 sa1111_gpio_modify(reg
+ SA1111_GPIO_PBDWR
, (msk
>> 4) & 255, val
>> 4);
565 sa1111_gpio_modify(reg
+ SA1111_GPIO_PBSSR
, (msk
>> 4) & 255, val
>> 4);
566 sa1111_gpio_modify(reg
+ SA1111_GPIO_PCDWR
, (msk
>> 12) & 255, val
>> 12);
567 sa1111_gpio_modify(reg
+ SA1111_GPIO_PCSSR
, (msk
>> 12) & 255, val
>> 12);
568 spin_unlock_irqrestore(&sachip
->lock
, flags
);
571 static int sa1111_gpio_to_irq(struct gpio_chip
*gc
, unsigned offset
)
573 struct sa1111
*sachip
= gc_to_sa1111(gc
);
575 return sachip
->irq_base
+ offset
;
578 static int sa1111_setup_gpios(struct sa1111
*sachip
)
580 sachip
->gc
.label
= "sa1111";
581 sachip
->gc
.parent
= sachip
->dev
;
582 sachip
->gc
.owner
= THIS_MODULE
;
583 sachip
->gc
.get_direction
= sa1111_gpio_get_direction
;
584 sachip
->gc
.direction_input
= sa1111_gpio_direction_input
;
585 sachip
->gc
.direction_output
= sa1111_gpio_direction_output
;
586 sachip
->gc
.get
= sa1111_gpio_get
;
587 sachip
->gc
.set
= sa1111_gpio_set
;
588 sachip
->gc
.set_multiple
= sa1111_gpio_set_multiple
;
589 sachip
->gc
.to_irq
= sa1111_gpio_to_irq
;
590 sachip
->gc
.base
= -1;
591 sachip
->gc
.ngpio
= 18;
593 return devm_gpiochip_add_data(sachip
->dev
, &sachip
->gc
, sachip
);
597 * Bring the SA1111 out of reset. This requires a set procedure:
598 * 1. nRESET asserted (by hardware)
599 * 2. CLK turned on from SA1110
600 * 3. nRESET deasserted
601 * 4. VCO turned on, PLL_BYPASS turned off
602 * 5. Wait lock time, then assert RCLKEn
603 * 7. PCR set to allow clocking of individual functions
605 * Until we've done this, the only registers we can access are:
610 static void sa1111_wake(struct sa1111
*sachip
)
612 unsigned long flags
, r
;
614 spin_lock_irqsave(&sachip
->lock
, flags
);
616 clk_enable(sachip
->clk
);
619 * Turn VCO on, and disable PLL Bypass.
621 r
= sa1111_readl(sachip
->base
+ SA1111_SKCR
);
623 sa1111_writel(r
, sachip
->base
+ SA1111_SKCR
);
624 r
|= SKCR_PLL_BYPASS
| SKCR_OE_EN
;
625 sa1111_writel(r
, sachip
->base
+ SA1111_SKCR
);
628 * Wait lock time. SA1111 manual _doesn't_
629 * specify a figure for this! We choose 100us.
634 * Enable RCLK. We also ensure that RDYEN is set.
636 r
|= SKCR_RCLKEN
| SKCR_RDYEN
;
637 sa1111_writel(r
, sachip
->base
+ SA1111_SKCR
);
640 * Wait 14 RCLK cycles for the chip to finish coming out
641 * of reset. (RCLK=24MHz). This is 590ns.
646 * Ensure all clocks are initially off.
648 sa1111_writel(0, sachip
->base
+ SA1111_SKPCR
);
650 spin_unlock_irqrestore(&sachip
->lock
, flags
);
653 #ifdef CONFIG_ARCH_SA1100
655 static u32 sa1111_dma_mask
[] = {
667 * Configure the SA1111 shared memory controller.
670 sa1111_configure_smc(struct sa1111
*sachip
, int sdram
, unsigned int drac
,
671 unsigned int cas_latency
)
673 unsigned int smcr
= SMCR_DTIM
| SMCR_MBGE
| FInsrt(drac
, SMCR_DRAC
);
675 if (cas_latency
== 3)
678 sa1111_writel(smcr
, sachip
->base
+ SA1111_SMCR
);
681 * Now clear the bits in the DMA mask to work around the SA1111
682 * DMA erratum (Intel StrongARM SA-1111 Microprocessor Companion
683 * Chip Specification Update, June 2000, Erratum #7).
685 if (sachip
->dev
->dma_mask
)
686 *sachip
->dev
->dma_mask
&= sa1111_dma_mask
[drac
>> 2];
688 sachip
->dev
->coherent_dma_mask
&= sa1111_dma_mask
[drac
>> 2];
692 static void sa1111_dev_release(struct device
*_dev
)
694 struct sa1111_dev
*dev
= to_sa1111_device(_dev
);
700 sa1111_init_one_child(struct sa1111
*sachip
, struct resource
*parent
,
701 struct sa1111_dev_info
*info
)
703 struct sa1111_dev
*dev
;
707 dev
= kzalloc(sizeof(struct sa1111_dev
), GFP_KERNEL
);
713 device_initialize(&dev
->dev
);
714 dev_set_name(&dev
->dev
, "%4.4lx", info
->offset
);
715 dev
->devid
= info
->devid
;
716 dev
->dev
.parent
= sachip
->dev
;
717 dev
->dev
.bus
= &sa1111_bus_type
;
718 dev
->dev
.release
= sa1111_dev_release
;
719 dev
->res
.start
= sachip
->phys
+ info
->offset
;
720 dev
->res
.end
= dev
->res
.start
+ 511;
721 dev
->res
.name
= dev_name(&dev
->dev
);
722 dev
->res
.flags
= IORESOURCE_MEM
;
723 dev
->mapbase
= sachip
->base
+ info
->offset
;
724 dev
->skpcr_mask
= info
->skpcr_mask
;
726 for (i
= 0; i
< ARRAY_SIZE(info
->irq
); i
++)
727 dev
->irq
[i
] = sachip
->irq_base
+ info
->irq
[i
];
730 * If the parent device has a DMA mask associated with it, and
731 * this child supports DMA, propagate it down to the children.
733 if (info
->dma
&& sachip
->dev
->dma_mask
) {
734 dev
->dma_mask
= *sachip
->dev
->dma_mask
;
735 dev
->dev
.dma_mask
= &dev
->dma_mask
;
736 dev
->dev
.coherent_dma_mask
= sachip
->dev
->coherent_dma_mask
;
739 ret
= request_resource(parent
, &dev
->res
);
741 dev_err(sachip
->dev
, "failed to allocate resource for %s\n",
746 ret
= device_add(&dev
->dev
);
752 release_resource(&dev
->res
);
754 put_device(&dev
->dev
);
760 * sa1111_probe - probe for a single SA1111 chip.
761 * @phys_addr: physical address of device.
763 * Probe for a SA1111 chip. This must be called
764 * before any other SA1111-specific code.
767 * %-ENODEV device not found.
768 * %-EBUSY physical address already marked in-use.
769 * %-EINVAL no platform data passed
772 static int __sa1111_probe(struct device
*me
, struct resource
*mem
, int irq
)
774 struct sa1111_platform_data
*pd
= me
->platform_data
;
775 struct sa1111
*sachip
;
777 unsigned int has_devs
;
778 int i
, ret
= -ENODEV
;
783 sachip
= devm_kzalloc(me
, sizeof(struct sa1111
), GFP_KERNEL
);
787 sachip
->clk
= devm_clk_get(me
, "SA1111_CLK");
788 if (IS_ERR(sachip
->clk
))
789 return PTR_ERR(sachip
->clk
);
791 ret
= clk_prepare(sachip
->clk
);
795 spin_lock_init(&sachip
->lock
);
798 dev_set_drvdata(sachip
->dev
, sachip
);
801 sachip
->phys
= mem
->start
;
805 * Map the whole region. This also maps the
806 * registers for our children.
808 sachip
->base
= ioremap(mem
->start
, PAGE_SIZE
* 2);
815 * Probe for the chip. Only touch the SBI registers.
817 id
= sa1111_readl(sachip
->base
+ SA1111_SKID
);
818 if ((id
& SKID_ID_MASK
) != SKID_SA1111_ID
) {
819 printk(KERN_DEBUG
"SA1111 not detected: ID = %08lx\n", id
);
824 pr_info("SA1111 Microprocessor Companion Chip: silicon revision %lx, metal revision %lx\n",
825 (id
& SKID_SIREV_MASK
) >> 4, id
& SKID_MTREV_MASK
);
828 * We found it. Wake the chip up, and initialise.
833 * The interrupt controller must be initialised before any
834 * other device to ensure that the interrupts are available.
836 if (sachip
->irq
!= NO_IRQ
) {
837 ret
= sa1111_setup_irq(sachip
, pd
->irq_base
);
842 /* Setup the GPIOs - should really be done after the IRQ setup */
843 ret
= sa1111_setup_gpios(sachip
);
847 #ifdef CONFIG_ARCH_SA1100
852 * The SDRAM configuration of the SA1110 and the SA1111 must
853 * match. This is very important to ensure that SA1111 accesses
854 * don't corrupt the SDRAM. Note that this ungates the SA1111's
855 * MBGNT signal, so we must have called sa1110_mb_disable()
858 sa1111_configure_smc(sachip
, 1,
859 FExtr(MDCNFG
, MDCNFG_SA1110_DRAC0
),
860 FExtr(MDCNFG
, MDCNFG_SA1110_TDL0
));
863 * We only need to turn on DCLK whenever we want to use the
864 * DMA. It can otherwise be held firmly in the off position.
865 * (currently, we always enable it.)
867 val
= sa1111_readl(sachip
->base
+ SA1111_SKPCR
);
868 sa1111_writel(val
| SKPCR_DCLKEN
, sachip
->base
+ SA1111_SKPCR
);
871 * Enable the SA1110 memory bus request and grant signals.
881 has_devs
&= ~pd
->disable_devs
;
883 for (i
= 0; i
< ARRAY_SIZE(sa1111_devices
); i
++)
884 if (sa1111_devices
[i
].devid
& has_devs
)
885 sa1111_init_one_child(sachip
, mem
, &sa1111_devices
[i
]);
890 sa1111_remove_irq(sachip
);
892 clk_disable(sachip
->clk
);
894 iounmap(sachip
->base
);
896 clk_unprepare(sachip
->clk
);
900 static int sa1111_remove_one(struct device
*dev
, void *data
)
902 struct sa1111_dev
*sadev
= to_sa1111_device(dev
);
903 if (dev
->bus
!= &sa1111_bus_type
)
905 device_del(&sadev
->dev
);
906 release_resource(&sadev
->res
);
907 put_device(&sadev
->dev
);
911 static void __sa1111_remove(struct sa1111
*sachip
)
913 device_for_each_child(sachip
->dev
, NULL
, sa1111_remove_one
);
915 sa1111_remove_irq(sachip
);
917 clk_disable(sachip
->clk
);
918 clk_unprepare(sachip
->clk
);
920 iounmap(sachip
->base
);
923 struct sa1111_save_data
{
928 unsigned char skpwm0
;
929 unsigned char skpwm1
;
932 * Interrupt controller
934 unsigned int intpol0
;
935 unsigned int intpol1
;
938 unsigned int wakepol0
;
939 unsigned int wakepol1
;
940 unsigned int wakeen0
;
941 unsigned int wakeen1
;
946 static int sa1111_suspend_noirq(struct device
*dev
)
948 struct sa1111
*sachip
= dev_get_drvdata(dev
);
949 struct sa1111_save_data
*save
;
954 save
= kmalloc(sizeof(struct sa1111_save_data
), GFP_KERNEL
);
957 sachip
->saved_state
= save
;
959 spin_lock_irqsave(&sachip
->lock
, flags
);
965 save
->skcr
= sa1111_readl(base
+ SA1111_SKCR
);
966 save
->skpcr
= sa1111_readl(base
+ SA1111_SKPCR
);
967 save
->skcdr
= sa1111_readl(base
+ SA1111_SKCDR
);
968 save
->skaud
= sa1111_readl(base
+ SA1111_SKAUD
);
969 save
->skpwm0
= sa1111_readl(base
+ SA1111_SKPWM0
);
970 save
->skpwm1
= sa1111_readl(base
+ SA1111_SKPWM1
);
972 sa1111_writel(0, sachip
->base
+ SA1111_SKPWM0
);
973 sa1111_writel(0, sachip
->base
+ SA1111_SKPWM1
);
975 base
= sachip
->base
+ SA1111_INTC
;
976 save
->intpol0
= sa1111_readl(base
+ SA1111_INTPOL0
);
977 save
->intpol1
= sa1111_readl(base
+ SA1111_INTPOL1
);
978 save
->inten0
= sa1111_readl(base
+ SA1111_INTEN0
);
979 save
->inten1
= sa1111_readl(base
+ SA1111_INTEN1
);
980 save
->wakepol0
= sa1111_readl(base
+ SA1111_WAKEPOL0
);
981 save
->wakepol1
= sa1111_readl(base
+ SA1111_WAKEPOL1
);
982 save
->wakeen0
= sa1111_readl(base
+ SA1111_WAKEEN0
);
983 save
->wakeen1
= sa1111_readl(base
+ SA1111_WAKEEN1
);
988 val
= sa1111_readl(sachip
->base
+ SA1111_SKCR
);
989 sa1111_writel(val
| SKCR_SLEEP
, sachip
->base
+ SA1111_SKCR
);
991 clk_disable(sachip
->clk
);
993 spin_unlock_irqrestore(&sachip
->lock
, flags
);
995 #ifdef CONFIG_ARCH_SA1100
1003 * sa1111_resume - Restore the SA1111 device state.
1004 * @dev: device to restore
1006 * Restore the general state of the SA1111; clock control and
1007 * interrupt controller. Other parts of the SA1111 must be
1008 * restored by their respective drivers, and must be called
1009 * via LDM after this function.
1011 static int sa1111_resume_noirq(struct device
*dev
)
1013 struct sa1111
*sachip
= dev_get_drvdata(dev
);
1014 struct sa1111_save_data
*save
;
1015 unsigned long flags
, id
;
1018 save
= sachip
->saved_state
;
1023 * Ensure that the SA1111 is still here.
1024 * FIXME: shouldn't do this here.
1026 id
= sa1111_readl(sachip
->base
+ SA1111_SKID
);
1027 if ((id
& SKID_ID_MASK
) != SKID_SA1111_ID
) {
1028 __sa1111_remove(sachip
);
1029 dev_set_drvdata(dev
, NULL
);
1035 * First of all, wake up the chip.
1037 sa1111_wake(sachip
);
1039 #ifdef CONFIG_ARCH_SA1100
1040 /* Enable the memory bus request/grant signals */
1045 * Only lock for write ops. Also, sa1111_wake must be called with
1046 * released spinlock!
1048 spin_lock_irqsave(&sachip
->lock
, flags
);
1050 sa1111_writel(0, sachip
->base
+ SA1111_INTC
+ SA1111_INTEN0
);
1051 sa1111_writel(0, sachip
->base
+ SA1111_INTC
+ SA1111_INTEN1
);
1053 base
= sachip
->base
;
1054 sa1111_writel(save
->skcr
, base
+ SA1111_SKCR
);
1055 sa1111_writel(save
->skpcr
, base
+ SA1111_SKPCR
);
1056 sa1111_writel(save
->skcdr
, base
+ SA1111_SKCDR
);
1057 sa1111_writel(save
->skaud
, base
+ SA1111_SKAUD
);
1058 sa1111_writel(save
->skpwm0
, base
+ SA1111_SKPWM0
);
1059 sa1111_writel(save
->skpwm1
, base
+ SA1111_SKPWM1
);
1061 base
= sachip
->base
+ SA1111_INTC
;
1062 sa1111_writel(save
->intpol0
, base
+ SA1111_INTPOL0
);
1063 sa1111_writel(save
->intpol1
, base
+ SA1111_INTPOL1
);
1064 sa1111_writel(save
->inten0
, base
+ SA1111_INTEN0
);
1065 sa1111_writel(save
->inten1
, base
+ SA1111_INTEN1
);
1066 sa1111_writel(save
->wakepol0
, base
+ SA1111_WAKEPOL0
);
1067 sa1111_writel(save
->wakepol1
, base
+ SA1111_WAKEPOL1
);
1068 sa1111_writel(save
->wakeen0
, base
+ SA1111_WAKEEN0
);
1069 sa1111_writel(save
->wakeen1
, base
+ SA1111_WAKEEN1
);
1071 spin_unlock_irqrestore(&sachip
->lock
, flags
);
1073 sachip
->saved_state
= NULL
;
1080 #define sa1111_suspend_noirq NULL
1081 #define sa1111_resume_noirq NULL
1084 static int sa1111_probe(struct platform_device
*pdev
)
1086 struct resource
*mem
;
1089 mem
= platform_get_resource(pdev
, IORESOURCE_MEM
, 0);
1092 irq
= platform_get_irq(pdev
, 0);
1096 return __sa1111_probe(&pdev
->dev
, mem
, irq
);
1099 static int sa1111_remove(struct platform_device
*pdev
)
1101 struct sa1111
*sachip
= platform_get_drvdata(pdev
);
1105 kfree(sachip
->saved_state
);
1106 sachip
->saved_state
= NULL
;
1108 __sa1111_remove(sachip
);
1109 platform_set_drvdata(pdev
, NULL
);
1115 static struct dev_pm_ops sa1111_pm_ops
= {
1116 .suspend_noirq
= sa1111_suspend_noirq
,
1117 .resume_noirq
= sa1111_resume_noirq
,
1121 * Not sure if this should be on the system bus or not yet.
1122 * We really want some way to register a system device at
1123 * the per-machine level, and then have this driver pick
1124 * up the registered devices.
1126 * We also need to handle the SDRAM configuration for
1127 * PXA250/SA1110 machine classes.
1129 static struct platform_driver sa1111_device_driver
= {
1130 .probe
= sa1111_probe
,
1131 .remove
= sa1111_remove
,
1134 .pm
= &sa1111_pm_ops
,
1139 * Get the parent device driver (us) structure
1140 * from a child function device
1142 static inline struct sa1111
*sa1111_chip_driver(struct sa1111_dev
*sadev
)
1144 return (struct sa1111
*)dev_get_drvdata(sadev
->dev
.parent
);
1148 * The bits in the opdiv field are non-linear.
1150 static unsigned char opdiv_table
[] = { 1, 4, 2, 8 };
1152 static unsigned int __sa1111_pll_clock(struct sa1111
*sachip
)
1154 unsigned int skcdr
, fbdiv
, ipdiv
, opdiv
;
1156 skcdr
= sa1111_readl(sachip
->base
+ SA1111_SKCDR
);
1158 fbdiv
= (skcdr
& 0x007f) + 2;
1159 ipdiv
= ((skcdr
& 0x0f80) >> 7) + 2;
1160 opdiv
= opdiv_table
[(skcdr
& 0x3000) >> 12];
1162 return 3686400 * fbdiv
/ (ipdiv
* opdiv
);
1166 * sa1111_pll_clock - return the current PLL clock frequency.
1167 * @sadev: SA1111 function block
1169 * BUG: we should look at SKCR. We also blindly believe that
1170 * the chip is being fed with the 3.6864MHz clock.
1172 * Returns the PLL clock in Hz.
1174 unsigned int sa1111_pll_clock(struct sa1111_dev
*sadev
)
1176 struct sa1111
*sachip
= sa1111_chip_driver(sadev
);
1178 return __sa1111_pll_clock(sachip
);
1180 EXPORT_SYMBOL(sa1111_pll_clock
);
1183 * sa1111_select_audio_mode - select I2S or AC link mode
1184 * @sadev: SA1111 function block
1185 * @mode: One of %SA1111_AUDIO_ACLINK or %SA1111_AUDIO_I2S
1187 * Frob the SKCR to select AC Link mode or I2S mode for
1190 void sa1111_select_audio_mode(struct sa1111_dev
*sadev
, int mode
)
1192 struct sa1111
*sachip
= sa1111_chip_driver(sadev
);
1193 unsigned long flags
;
1196 spin_lock_irqsave(&sachip
->lock
, flags
);
1198 val
= sa1111_readl(sachip
->base
+ SA1111_SKCR
);
1199 if (mode
== SA1111_AUDIO_I2S
) {
1204 sa1111_writel(val
, sachip
->base
+ SA1111_SKCR
);
1206 spin_unlock_irqrestore(&sachip
->lock
, flags
);
1208 EXPORT_SYMBOL(sa1111_select_audio_mode
);
1211 * sa1111_set_audio_rate - set the audio sample rate
1212 * @sadev: SA1111 SAC function block
1213 * @rate: sample rate to select
1215 int sa1111_set_audio_rate(struct sa1111_dev
*sadev
, int rate
)
1217 struct sa1111
*sachip
= sa1111_chip_driver(sadev
);
1220 if (sadev
->devid
!= SA1111_DEVID_SAC
)
1223 div
= (__sa1111_pll_clock(sachip
) / 256 + rate
/ 2) / rate
;
1229 sa1111_writel(div
- 1, sachip
->base
+ SA1111_SKAUD
);
1233 EXPORT_SYMBOL(sa1111_set_audio_rate
);
1236 * sa1111_get_audio_rate - get the audio sample rate
1237 * @sadev: SA1111 SAC function block device
1239 int sa1111_get_audio_rate(struct sa1111_dev
*sadev
)
1241 struct sa1111
*sachip
= sa1111_chip_driver(sadev
);
1244 if (sadev
->devid
!= SA1111_DEVID_SAC
)
1247 div
= sa1111_readl(sachip
->base
+ SA1111_SKAUD
) + 1;
1249 return __sa1111_pll_clock(sachip
) / (256 * div
);
1251 EXPORT_SYMBOL(sa1111_get_audio_rate
);
1253 void sa1111_set_io_dir(struct sa1111_dev
*sadev
,
1254 unsigned int bits
, unsigned int dir
,
1255 unsigned int sleep_dir
)
1257 struct sa1111
*sachip
= sa1111_chip_driver(sadev
);
1258 unsigned long flags
;
1260 void __iomem
*gpio
= sachip
->base
+ SA1111_GPIO
;
1262 #define MODIFY_BITS(port, mask, dir) \
1264 val = sa1111_readl(port); \
1266 val |= (dir) & (mask); \
1267 sa1111_writel(val, port); \
1270 spin_lock_irqsave(&sachip
->lock
, flags
);
1271 MODIFY_BITS(gpio
+ SA1111_GPIO_PADDR
, bits
& 15, dir
);
1272 MODIFY_BITS(gpio
+ SA1111_GPIO_PBDDR
, (bits
>> 8) & 255, dir
>> 8);
1273 MODIFY_BITS(gpio
+ SA1111_GPIO_PCDDR
, (bits
>> 16) & 255, dir
>> 16);
1275 MODIFY_BITS(gpio
+ SA1111_GPIO_PASDR
, bits
& 15, sleep_dir
);
1276 MODIFY_BITS(gpio
+ SA1111_GPIO_PBSDR
, (bits
>> 8) & 255, sleep_dir
>> 8);
1277 MODIFY_BITS(gpio
+ SA1111_GPIO_PCSDR
, (bits
>> 16) & 255, sleep_dir
>> 16);
1278 spin_unlock_irqrestore(&sachip
->lock
, flags
);
1280 EXPORT_SYMBOL(sa1111_set_io_dir
);
1282 void sa1111_set_io(struct sa1111_dev
*sadev
, unsigned int bits
, unsigned int v
)
1284 struct sa1111
*sachip
= sa1111_chip_driver(sadev
);
1285 unsigned long flags
;
1287 void __iomem
*gpio
= sachip
->base
+ SA1111_GPIO
;
1289 spin_lock_irqsave(&sachip
->lock
, flags
);
1290 MODIFY_BITS(gpio
+ SA1111_GPIO_PADWR
, bits
& 15, v
);
1291 MODIFY_BITS(gpio
+ SA1111_GPIO_PBDWR
, (bits
>> 8) & 255, v
>> 8);
1292 MODIFY_BITS(gpio
+ SA1111_GPIO_PCDWR
, (bits
>> 16) & 255, v
>> 16);
1293 spin_unlock_irqrestore(&sachip
->lock
, flags
);
1295 EXPORT_SYMBOL(sa1111_set_io
);
1297 void sa1111_set_sleep_io(struct sa1111_dev
*sadev
, unsigned int bits
, unsigned int v
)
1299 struct sa1111
*sachip
= sa1111_chip_driver(sadev
);
1300 unsigned long flags
;
1302 void __iomem
*gpio
= sachip
->base
+ SA1111_GPIO
;
1304 spin_lock_irqsave(&sachip
->lock
, flags
);
1305 MODIFY_BITS(gpio
+ SA1111_GPIO_PASSR
, bits
& 15, v
);
1306 MODIFY_BITS(gpio
+ SA1111_GPIO_PBSSR
, (bits
>> 8) & 255, v
>> 8);
1307 MODIFY_BITS(gpio
+ SA1111_GPIO_PCSSR
, (bits
>> 16) & 255, v
>> 16);
1308 spin_unlock_irqrestore(&sachip
->lock
, flags
);
1310 EXPORT_SYMBOL(sa1111_set_sleep_io
);
1313 * Individual device operations.
1317 * sa1111_enable_device - enable an on-chip SA1111 function block
1318 * @sadev: SA1111 function block device to enable
1320 int sa1111_enable_device(struct sa1111_dev
*sadev
)
1322 struct sa1111
*sachip
= sa1111_chip_driver(sadev
);
1323 unsigned long flags
;
1327 if (sachip
->pdata
&& sachip
->pdata
->enable
)
1328 ret
= sachip
->pdata
->enable(sachip
->pdata
->data
, sadev
->devid
);
1331 spin_lock_irqsave(&sachip
->lock
, flags
);
1332 val
= sa1111_readl(sachip
->base
+ SA1111_SKPCR
);
1333 sa1111_writel(val
| sadev
->skpcr_mask
, sachip
->base
+ SA1111_SKPCR
);
1334 spin_unlock_irqrestore(&sachip
->lock
, flags
);
1338 EXPORT_SYMBOL(sa1111_enable_device
);
1341 * sa1111_disable_device - disable an on-chip SA1111 function block
1342 * @sadev: SA1111 function block device to disable
1344 void sa1111_disable_device(struct sa1111_dev
*sadev
)
1346 struct sa1111
*sachip
= sa1111_chip_driver(sadev
);
1347 unsigned long flags
;
1350 spin_lock_irqsave(&sachip
->lock
, flags
);
1351 val
= sa1111_readl(sachip
->base
+ SA1111_SKPCR
);
1352 sa1111_writel(val
& ~sadev
->skpcr_mask
, sachip
->base
+ SA1111_SKPCR
);
1353 spin_unlock_irqrestore(&sachip
->lock
, flags
);
1355 if (sachip
->pdata
&& sachip
->pdata
->disable
)
1356 sachip
->pdata
->disable(sachip
->pdata
->data
, sadev
->devid
);
1358 EXPORT_SYMBOL(sa1111_disable_device
);
1360 int sa1111_get_irq(struct sa1111_dev
*sadev
, unsigned num
)
1362 if (num
>= ARRAY_SIZE(sadev
->irq
))
1364 return sadev
->irq
[num
];
1366 EXPORT_SYMBOL_GPL(sa1111_get_irq
);
1369 * SA1111 "Register Access Bus."
1371 * We model this as a regular bus type, and hang devices directly
1374 static int sa1111_match(struct device
*_dev
, struct device_driver
*_drv
)
1376 struct sa1111_dev
*dev
= to_sa1111_device(_dev
);
1377 struct sa1111_driver
*drv
= SA1111_DRV(_drv
);
1379 return !!(dev
->devid
& drv
->devid
);
1382 static int sa1111_bus_suspend(struct device
*dev
, pm_message_t state
)
1384 struct sa1111_dev
*sadev
= to_sa1111_device(dev
);
1385 struct sa1111_driver
*drv
= SA1111_DRV(dev
->driver
);
1388 if (drv
&& drv
->suspend
)
1389 ret
= drv
->suspend(sadev
, state
);
1393 static int sa1111_bus_resume(struct device
*dev
)
1395 struct sa1111_dev
*sadev
= to_sa1111_device(dev
);
1396 struct sa1111_driver
*drv
= SA1111_DRV(dev
->driver
);
1399 if (drv
&& drv
->resume
)
1400 ret
= drv
->resume(sadev
);
1404 static void sa1111_bus_shutdown(struct device
*dev
)
1406 struct sa1111_driver
*drv
= SA1111_DRV(dev
->driver
);
1408 if (drv
&& drv
->shutdown
)
1409 drv
->shutdown(to_sa1111_device(dev
));
1412 static int sa1111_bus_probe(struct device
*dev
)
1414 struct sa1111_dev
*sadev
= to_sa1111_device(dev
);
1415 struct sa1111_driver
*drv
= SA1111_DRV(dev
->driver
);
1419 ret
= drv
->probe(sadev
);
1423 static int sa1111_bus_remove(struct device
*dev
)
1425 struct sa1111_dev
*sadev
= to_sa1111_device(dev
);
1426 struct sa1111_driver
*drv
= SA1111_DRV(dev
->driver
);
1430 ret
= drv
->remove(sadev
);
1434 struct bus_type sa1111_bus_type
= {
1435 .name
= "sa1111-rab",
1436 .match
= sa1111_match
,
1437 .probe
= sa1111_bus_probe
,
1438 .remove
= sa1111_bus_remove
,
1439 .suspend
= sa1111_bus_suspend
,
1440 .resume
= sa1111_bus_resume
,
1441 .shutdown
= sa1111_bus_shutdown
,
1443 EXPORT_SYMBOL(sa1111_bus_type
);
1445 int sa1111_driver_register(struct sa1111_driver
*driver
)
1447 driver
->drv
.bus
= &sa1111_bus_type
;
1448 return driver_register(&driver
->drv
);
1450 EXPORT_SYMBOL(sa1111_driver_register
);
1452 void sa1111_driver_unregister(struct sa1111_driver
*driver
)
1454 driver_unregister(&driver
->drv
);
1456 EXPORT_SYMBOL(sa1111_driver_unregister
);
1458 #ifdef CONFIG_DMABOUNCE
1460 * According to the "Intel StrongARM SA-1111 Microprocessor Companion
1461 * Chip Specification Update" (June 2000), erratum #7, there is a
1462 * significant bug in the SA1111 SDRAM shared memory controller. If
1463 * an access to a region of memory above 1MB relative to the bank base,
1464 * it is important that address bit 10 _NOT_ be asserted. Depending
1465 * on the configuration of the RAM, bit 10 may correspond to one
1466 * of several different (processor-relative) address bits.
1468 * This routine only identifies whether or not a given DMA address
1469 * is susceptible to the bug.
1471 * This should only get called for sa1111_device types due to the
1472 * way we configure our device dma_masks.
1474 static int sa1111_needs_bounce(struct device
*dev
, dma_addr_t addr
, size_t size
)
1477 * Section 4.6 of the "Intel StrongARM SA-1111 Development Module
1478 * User's Guide" mentions that jumpers R51 and R52 control the
1479 * target of SA-1111 DMA (either SDRAM bank 0 on Assabet, or
1480 * SDRAM bank 1 on Neponset). The default configuration selects
1481 * Assabet, so any address in bank 1 is necessarily invalid.
1483 return (machine_is_assabet() || machine_is_pfs168()) &&
1484 (addr
>= 0xc8000000 || (addr
+ size
) >= 0xc8000000);
1487 static int sa1111_notifier_call(struct notifier_block
*n
, unsigned long action
,
1490 struct sa1111_dev
*dev
= to_sa1111_device(data
);
1493 case BUS_NOTIFY_ADD_DEVICE
:
1494 if (dev
->dev
.dma_mask
&& dev
->dma_mask
< 0xffffffffUL
) {
1495 int ret
= dmabounce_register_dev(&dev
->dev
, 1024, 4096,
1496 sa1111_needs_bounce
);
1498 dev_err(&dev
->dev
, "failed to register with dmabounce: %d\n", ret
);
1502 case BUS_NOTIFY_DEL_DEVICE
:
1503 if (dev
->dev
.dma_mask
&& dev
->dma_mask
< 0xffffffffUL
)
1504 dmabounce_unregister_dev(&dev
->dev
);
1510 static struct notifier_block sa1111_bus_notifier
= {
1511 .notifier_call
= sa1111_notifier_call
,
1515 static int __init
sa1111_init(void)
1517 int ret
= bus_register(&sa1111_bus_type
);
1518 #ifdef CONFIG_DMABOUNCE
1520 bus_register_notifier(&sa1111_bus_type
, &sa1111_bus_notifier
);
1523 platform_driver_register(&sa1111_device_driver
);
1527 static void __exit
sa1111_exit(void)
1529 platform_driver_unregister(&sa1111_device_driver
);
1530 #ifdef CONFIG_DMABOUNCE
1531 bus_unregister_notifier(&sa1111_bus_type
, &sa1111_bus_notifier
);
1533 bus_unregister(&sa1111_bus_type
);
1536 subsys_initcall(sa1111_init
);
1537 module_exit(sa1111_exit
);
1539 MODULE_DESCRIPTION("Intel Corporation SA1111 core driver");
1540 MODULE_LICENSE("GPL");