]> bbs.cooldavid.org Git - net-next-2.6.git/blame - arch/arm/common/sa1111.c
Merge branch 'rc-fixes' of git://git.kernel.org/pub/scm/linux/kernel/git/mmarek/kbuil...
[net-next-2.6.git] / arch / arm / common / sa1111.c
CommitLineData
1da177e4 1/*
f30c2269 2 * linux/arch/arm/common/sa1111.c
1da177e4
LT
3 *
4 * SA1111 support
5 *
6 * Original code by John Dorsey
7 *
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.
11 *
12 * This file contains all generic SA1111 support.
13 *
14 * All initialization functions provided here are intended to be called
15 * from machine specific code with proper arguments when required.
16 */
1da177e4
LT
17#include <linux/module.h>
18#include <linux/init.h>
19#include <linux/kernel.h>
20#include <linux/delay.h>
1da177e4
LT
21#include <linux/errno.h>
22#include <linux/ioport.h>
d052d1be 23#include <linux/platform_device.h>
1da177e4
LT
24#include <linux/slab.h>
25#include <linux/spinlock.h>
26#include <linux/dma-mapping.h>
97d654f8 27#include <linux/clk.h>
fced80c7 28#include <linux/io.h>
1da177e4 29
a09e64fb 30#include <mach/hardware.h>
1da177e4 31#include <asm/mach-types.h>
1da177e4
LT
32#include <asm/irq.h>
33#include <asm/mach/irq.h>
45e109d0 34#include <asm/sizes.h>
1da177e4
LT
35
36#include <asm/hardware/sa1111.h>
37
19851c58
EM
38/* SA1111 IRQs */
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)
65#define SSPROR (26)
66#define AUDXMTDMADONEA (32)
67#define AUDRCVDMADONEA (33)
68#define AUDXMTDMADONEB (34)
69#define AUDRCVDMADONEB (35)
70#define AUDTFSR (36)
71#define AUDRFSR (37)
72#define AUDTUR (38)
73#define AUDROR (39)
74#define AUDDTS (40)
75#define AUDRDD (41)
76#define AUDSTO (42)
77#define IRQ_USBPWR (43)
78#define IRQ_HCIM (44)
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)
89
1da177e4
LT
90extern void __init sa1110_mb_enable(void);
91
92/*
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.
98 */
99struct sa1111 {
100 struct device *dev;
97d654f8 101 struct clk *clk;
1da177e4
LT
102 unsigned long phys;
103 int irq;
19851c58 104 int irq_base; /* base for cascaded on-chip IRQs */
1da177e4
LT
105 spinlock_t lock;
106 void __iomem *base;
93160c63
RW
107#ifdef CONFIG_PM
108 void *saved_state;
109#endif
1da177e4
LT
110};
111
112/*
113 * We _really_ need to eliminate this. Its only users
114 * are the PWM and DMA checking code.
115 */
116static struct sa1111 *g_sa1111;
117
118struct sa1111_dev_info {
119 unsigned long offset;
120 unsigned long skpcr_mask;
121 unsigned int devid;
122 unsigned int irq[6];
123};
124
125static struct sa1111_dev_info sa1111_devices[] = {
126 {
127 .offset = SA1111_USB,
128 .skpcr_mask = SKPCR_UCLKEN,
129 .devid = SA1111_DEVID_USB,
130 .irq = {
131 IRQ_USBPWR,
132 IRQ_HCIM,
133 IRQ_HCIBUFFACC,
134 IRQ_HCIRMTWKP,
135 IRQ_NHCIMFCIR,
136 IRQ_USB_PORT_RESUME
137 },
138 },
139 {
140 .offset = 0x0600,
141 .skpcr_mask = SKPCR_I2SCLKEN | SKPCR_L3CLKEN,
142 .devid = SA1111_DEVID_SAC,
143 .irq = {
144 AUDXMTDMADONEA,
145 AUDXMTDMADONEB,
146 AUDRCVDMADONEA,
147 AUDRCVDMADONEB
148 },
149 },
150 {
151 .offset = 0x0800,
152 .skpcr_mask = SKPCR_SCLKEN,
153 .devid = SA1111_DEVID_SSP,
154 },
155 {
156 .offset = SA1111_KBD,
157 .skpcr_mask = SKPCR_PTCLKEN,
158 .devid = SA1111_DEVID_PS2,
159 .irq = {
160 IRQ_TPRXINT,
161 IRQ_TPTXINT
162 },
163 },
164 {
165 .offset = SA1111_MSE,
166 .skpcr_mask = SKPCR_PMCLKEN,
167 .devid = SA1111_DEVID_PS2,
168 .irq = {
169 IRQ_MSRXINT,
170 IRQ_MSTXINT
171 },
172 },
173 {
174 .offset = 0x1800,
175 .skpcr_mask = 0,
176 .devid = SA1111_DEVID_PCMCIA,
177 .irq = {
178 IRQ_S0_READY_NINT,
179 IRQ_S0_CD_VALID,
180 IRQ_S0_BVD1_STSCHG,
181 IRQ_S1_READY_NINT,
182 IRQ_S1_CD_VALID,
183 IRQ_S1_BVD1_STSCHG,
184 },
185 },
186};
187
1b12050f
RK
188void __init sa1111_adjust_zones(int node, unsigned long *size, unsigned long *holes)
189{
190 unsigned int sz = SZ_1M >> PAGE_SHIFT;
191
192 if (node != 0)
193 sz = 0;
194
195 size[1] = size[0] - sz;
196 size[0] = sz;
197}
198
1da177e4
LT
199/*
200 * SA1111 interrupt support. Since clearing an IRQ while there are
201 * active IRQs causes the interrupt output to pulse, the upper levels
202 * will call us again if there are more interrupts to process.
203 */
204static void
10dd5ce2 205sa1111_irq_handler(unsigned int irq, struct irq_desc *desc)
1da177e4
LT
206{
207 unsigned int stat0, stat1, i;
19851c58
EM
208 struct sa1111 *sachip = get_irq_data(irq);
209 void __iomem *mapbase = sachip->base + SA1111_INTC;
1da177e4 210
19851c58
EM
211 stat0 = sa1111_readl(mapbase + SA1111_INTSTATCLR0);
212 stat1 = sa1111_readl(mapbase + SA1111_INTSTATCLR1);
1da177e4 213
19851c58 214 sa1111_writel(stat0, mapbase + SA1111_INTSTATCLR0);
1da177e4
LT
215
216 desc->chip->ack(irq);
217
19851c58 218 sa1111_writel(stat1, mapbase + SA1111_INTSTATCLR1);
1da177e4
LT
219
220 if (stat0 == 0 && stat1 == 0) {
0cd61b68 221 do_bad_IRQ(irq, desc);
1da177e4
LT
222 return;
223 }
224
19851c58 225 for (i = 0; stat0; i++, stat0 >>= 1)
1da177e4 226 if (stat0 & 1)
19851c58 227 generic_handle_irq(i + sachip->irq_base);
1da177e4 228
19851c58 229 for (i = 32; stat1; i++, stat1 >>= 1)
1da177e4 230 if (stat1 & 1)
19851c58 231 generic_handle_irq(i + sachip->irq_base);
1da177e4
LT
232
233 /* For level-based interrupts */
234 desc->chip->unmask(irq);
235}
236
19851c58
EM
237#define SA1111_IRQMASK_LO(x) (1 << (x - sachip->irq_base))
238#define SA1111_IRQMASK_HI(x) (1 << (x - sachip->irq_base - 32))
1da177e4
LT
239
240static void sa1111_ack_irq(unsigned int irq)
241{
242}
243
244static void sa1111_mask_lowirq(unsigned int irq)
245{
19851c58
EM
246 struct sa1111 *sachip = get_irq_chip_data(irq);
247 void __iomem *mapbase = sachip->base + SA1111_INTC;
1da177e4
LT
248 unsigned long ie0;
249
250 ie0 = sa1111_readl(mapbase + SA1111_INTEN0);
251 ie0 &= ~SA1111_IRQMASK_LO(irq);
252 writel(ie0, mapbase + SA1111_INTEN0);
253}
254
255static void sa1111_unmask_lowirq(unsigned int irq)
256{
19851c58
EM
257 struct sa1111 *sachip = get_irq_chip_data(irq);
258 void __iomem *mapbase = sachip->base + SA1111_INTC;
1da177e4
LT
259 unsigned long ie0;
260
261 ie0 = sa1111_readl(mapbase + SA1111_INTEN0);
262 ie0 |= SA1111_IRQMASK_LO(irq);
263 sa1111_writel(ie0, mapbase + SA1111_INTEN0);
264}
265
266/*
267 * Attempt to re-trigger the interrupt. The SA1111 contains a register
268 * (INTSET) which claims to do this. However, in practice no amount of
269 * manipulation of INTEN and INTSET guarantees that the interrupt will
270 * be triggered. In fact, its very difficult, if not impossible to get
271 * INTSET to re-trigger the interrupt.
272 */
273static int sa1111_retrigger_lowirq(unsigned int irq)
274{
19851c58
EM
275 struct sa1111 *sachip = get_irq_chip_data(irq);
276 void __iomem *mapbase = sachip->base + SA1111_INTC;
1da177e4 277 unsigned int mask = SA1111_IRQMASK_LO(irq);
1da177e4
LT
278 unsigned long ip0;
279 int i;
280
281 ip0 = sa1111_readl(mapbase + SA1111_INTPOL0);
282 for (i = 0; i < 8; i++) {
283 sa1111_writel(ip0 ^ mask, mapbase + SA1111_INTPOL0);
284 sa1111_writel(ip0, mapbase + SA1111_INTPOL0);
285 if (sa1111_readl(mapbase + SA1111_INTSTATCLR1) & mask)
286 break;
287 }
288
289 if (i == 8)
290 printk(KERN_ERR "Danger Will Robinson: failed to "
291 "re-trigger IRQ%d\n", irq);
292 return i == 8 ? -1 : 0;
293}
294
295static int sa1111_type_lowirq(unsigned int irq, unsigned int flags)
296{
19851c58
EM
297 struct sa1111 *sachip = get_irq_chip_data(irq);
298 void __iomem *mapbase = sachip->base + SA1111_INTC;
1da177e4 299 unsigned int mask = SA1111_IRQMASK_LO(irq);
1da177e4
LT
300 unsigned long ip0;
301
6cab4860 302 if (flags == IRQ_TYPE_PROBE)
1da177e4
LT
303 return 0;
304
6cab4860 305 if ((!(flags & IRQ_TYPE_EDGE_RISING) ^ !(flags & IRQ_TYPE_EDGE_FALLING)) == 0)
1da177e4
LT
306 return -EINVAL;
307
308 ip0 = sa1111_readl(mapbase + SA1111_INTPOL0);
6cab4860 309 if (flags & IRQ_TYPE_EDGE_RISING)
1da177e4
LT
310 ip0 &= ~mask;
311 else
312 ip0 |= mask;
313 sa1111_writel(ip0, mapbase + SA1111_INTPOL0);
314 sa1111_writel(ip0, mapbase + SA1111_WAKEPOL0);
315
316 return 0;
317}
318
319static int sa1111_wake_lowirq(unsigned int irq, unsigned int on)
320{
19851c58
EM
321 struct sa1111 *sachip = get_irq_chip_data(irq);
322 void __iomem *mapbase = sachip->base + SA1111_INTC;
1da177e4 323 unsigned int mask = SA1111_IRQMASK_LO(irq);
1da177e4
LT
324 unsigned long we0;
325
326 we0 = sa1111_readl(mapbase + SA1111_WAKEEN0);
327 if (on)
328 we0 |= mask;
329 else
330 we0 &= ~mask;
331 sa1111_writel(we0, mapbase + SA1111_WAKEEN0);
332
333 return 0;
334}
335
38c677cb
DB
336static struct irq_chip sa1111_low_chip = {
337 .name = "SA1111-l",
1da177e4
LT
338 .ack = sa1111_ack_irq,
339 .mask = sa1111_mask_lowirq,
340 .unmask = sa1111_unmask_lowirq,
341 .retrigger = sa1111_retrigger_lowirq,
7801907b
RK
342 .set_type = sa1111_type_lowirq,
343 .set_wake = sa1111_wake_lowirq,
1da177e4
LT
344};
345
346static void sa1111_mask_highirq(unsigned int irq)
347{
19851c58
EM
348 struct sa1111 *sachip = get_irq_chip_data(irq);
349 void __iomem *mapbase = sachip->base + SA1111_INTC;
1da177e4
LT
350 unsigned long ie1;
351
352 ie1 = sa1111_readl(mapbase + SA1111_INTEN1);
353 ie1 &= ~SA1111_IRQMASK_HI(irq);
354 sa1111_writel(ie1, mapbase + SA1111_INTEN1);
355}
356
357static void sa1111_unmask_highirq(unsigned int irq)
358{
19851c58
EM
359 struct sa1111 *sachip = get_irq_chip_data(irq);
360 void __iomem *mapbase = sachip->base + SA1111_INTC;
1da177e4
LT
361 unsigned long ie1;
362
363 ie1 = sa1111_readl(mapbase + SA1111_INTEN1);
364 ie1 |= SA1111_IRQMASK_HI(irq);
365 sa1111_writel(ie1, mapbase + SA1111_INTEN1);
366}
367
368/*
369 * Attempt to re-trigger the interrupt. The SA1111 contains a register
370 * (INTSET) which claims to do this. However, in practice no amount of
371 * manipulation of INTEN and INTSET guarantees that the interrupt will
372 * be triggered. In fact, its very difficult, if not impossible to get
373 * INTSET to re-trigger the interrupt.
374 */
375static int sa1111_retrigger_highirq(unsigned int irq)
376{
19851c58
EM
377 struct sa1111 *sachip = get_irq_chip_data(irq);
378 void __iomem *mapbase = sachip->base + SA1111_INTC;
1da177e4 379 unsigned int mask = SA1111_IRQMASK_HI(irq);
1da177e4
LT
380 unsigned long ip1;
381 int i;
382
383 ip1 = sa1111_readl(mapbase + SA1111_INTPOL1);
384 for (i = 0; i < 8; i++) {
385 sa1111_writel(ip1 ^ mask, mapbase + SA1111_INTPOL1);
386 sa1111_writel(ip1, mapbase + SA1111_INTPOL1);
387 if (sa1111_readl(mapbase + SA1111_INTSTATCLR1) & mask)
388 break;
389 }
390
391 if (i == 8)
392 printk(KERN_ERR "Danger Will Robinson: failed to "
393 "re-trigger IRQ%d\n", irq);
394 return i == 8 ? -1 : 0;
395}
396
397static int sa1111_type_highirq(unsigned int irq, unsigned int flags)
398{
19851c58
EM
399 struct sa1111 *sachip = get_irq_chip_data(irq);
400 void __iomem *mapbase = sachip->base + SA1111_INTC;
1da177e4 401 unsigned int mask = SA1111_IRQMASK_HI(irq);
1da177e4
LT
402 unsigned long ip1;
403
6cab4860 404 if (flags == IRQ_TYPE_PROBE)
1da177e4
LT
405 return 0;
406
6cab4860 407 if ((!(flags & IRQ_TYPE_EDGE_RISING) ^ !(flags & IRQ_TYPE_EDGE_FALLING)) == 0)
1da177e4
LT
408 return -EINVAL;
409
410 ip1 = sa1111_readl(mapbase + SA1111_INTPOL1);
6cab4860 411 if (flags & IRQ_TYPE_EDGE_RISING)
1da177e4
LT
412 ip1 &= ~mask;
413 else
414 ip1 |= mask;
415 sa1111_writel(ip1, mapbase + SA1111_INTPOL1);
416 sa1111_writel(ip1, mapbase + SA1111_WAKEPOL1);
417
418 return 0;
419}
420
421static int sa1111_wake_highirq(unsigned int irq, unsigned int on)
422{
19851c58
EM
423 struct sa1111 *sachip = get_irq_chip_data(irq);
424 void __iomem *mapbase = sachip->base + SA1111_INTC;
1da177e4 425 unsigned int mask = SA1111_IRQMASK_HI(irq);
1da177e4
LT
426 unsigned long we1;
427
428 we1 = sa1111_readl(mapbase + SA1111_WAKEEN1);
429 if (on)
430 we1 |= mask;
431 else
432 we1 &= ~mask;
433 sa1111_writel(we1, mapbase + SA1111_WAKEEN1);
434
435 return 0;
436}
437
38c677cb
DB
438static struct irq_chip sa1111_high_chip = {
439 .name = "SA1111-h",
1da177e4
LT
440 .ack = sa1111_ack_irq,
441 .mask = sa1111_mask_highirq,
442 .unmask = sa1111_unmask_highirq,
443 .retrigger = sa1111_retrigger_highirq,
7801907b
RK
444 .set_type = sa1111_type_highirq,
445 .set_wake = sa1111_wake_highirq,
1da177e4
LT
446};
447
448static void sa1111_setup_irq(struct sa1111 *sachip)
449{
450 void __iomem *irqbase = sachip->base + SA1111_INTC;
451 unsigned int irq;
452
453 /*
454 * We're guaranteed that this region hasn't been taken.
455 */
456 request_mem_region(sachip->phys + SA1111_INTC, 512, "irq");
457
458 /* disable all IRQs */
459 sa1111_writel(0, irqbase + SA1111_INTEN0);
460 sa1111_writel(0, irqbase + SA1111_INTEN1);
461 sa1111_writel(0, irqbase + SA1111_WAKEEN0);
462 sa1111_writel(0, irqbase + SA1111_WAKEEN1);
463
464 /*
465 * detect on rising edge. Note: Feb 2001 Errata for SA1111
466 * specifies that S0ReadyInt and S1ReadyInt should be '1'.
467 */
468 sa1111_writel(0, irqbase + SA1111_INTPOL0);
469 sa1111_writel(SA1111_IRQMASK_HI(IRQ_S0_READY_NINT) |
470 SA1111_IRQMASK_HI(IRQ_S1_READY_NINT),
471 irqbase + SA1111_INTPOL1);
472
473 /* clear all IRQs */
474 sa1111_writel(~0, irqbase + SA1111_INTSTATCLR0);
475 sa1111_writel(~0, irqbase + SA1111_INTSTATCLR1);
476
477 for (irq = IRQ_GPAIN0; irq <= SSPROR; irq++) {
478 set_irq_chip(irq, &sa1111_low_chip);
19851c58 479 set_irq_chip_data(irq, sachip);
10dd5ce2 480 set_irq_handler(irq, handle_edge_irq);
1da177e4
LT
481 set_irq_flags(irq, IRQF_VALID | IRQF_PROBE);
482 }
483
484 for (irq = AUDXMTDMADONEA; irq <= IRQ_S1_BVD1_STSCHG; irq++) {
485 set_irq_chip(irq, &sa1111_high_chip);
19851c58 486 set_irq_chip_data(irq, sachip);
10dd5ce2 487 set_irq_handler(irq, handle_edge_irq);
1da177e4
LT
488 set_irq_flags(irq, IRQF_VALID | IRQF_PROBE);
489 }
490
491 /*
492 * Register SA1111 interrupt
493 */
6cab4860 494 set_irq_type(sachip->irq, IRQ_TYPE_EDGE_RISING);
19851c58 495 set_irq_data(sachip->irq, sachip);
1da177e4
LT
496 set_irq_chained_handler(sachip->irq, sa1111_irq_handler);
497}
498
499/*
500 * Bring the SA1111 out of reset. This requires a set procedure:
501 * 1. nRESET asserted (by hardware)
502 * 2. CLK turned on from SA1110
503 * 3. nRESET deasserted
504 * 4. VCO turned on, PLL_BYPASS turned off
505 * 5. Wait lock time, then assert RCLKEn
506 * 7. PCR set to allow clocking of individual functions
507 *
508 * Until we've done this, the only registers we can access are:
509 * SBI_SKCR
510 * SBI_SMCR
511 * SBI_SKID
512 */
513static void sa1111_wake(struct sa1111 *sachip)
514{
515 unsigned long flags, r;
516
517 spin_lock_irqsave(&sachip->lock, flags);
518
97d654f8 519 clk_enable(sachip->clk);
1da177e4
LT
520
521 /*
522 * Turn VCO on, and disable PLL Bypass.
523 */
524 r = sa1111_readl(sachip->base + SA1111_SKCR);
525 r &= ~SKCR_VCO_OFF;
526 sa1111_writel(r, sachip->base + SA1111_SKCR);
527 r |= SKCR_PLL_BYPASS | SKCR_OE_EN;
528 sa1111_writel(r, sachip->base + SA1111_SKCR);
529
530 /*
531 * Wait lock time. SA1111 manual _doesn't_
532 * specify a figure for this! We choose 100us.
533 */
534 udelay(100);
535
536 /*
537 * Enable RCLK. We also ensure that RDYEN is set.
538 */
539 r |= SKCR_RCLKEN | SKCR_RDYEN;
540 sa1111_writel(r, sachip->base + SA1111_SKCR);
541
542 /*
543 * Wait 14 RCLK cycles for the chip to finish coming out
544 * of reset. (RCLK=24MHz). This is 590ns.
545 */
546 udelay(1);
547
548 /*
549 * Ensure all clocks are initially off.
550 */
551 sa1111_writel(0, sachip->base + SA1111_SKPCR);
552
553 spin_unlock_irqrestore(&sachip->lock, flags);
554}
555
556#ifdef CONFIG_ARCH_SA1100
557
558static u32 sa1111_dma_mask[] = {
559 ~0,
560 ~(1 << 20),
561 ~(1 << 23),
562 ~(1 << 24),
563 ~(1 << 25),
564 ~(1 << 20),
565 ~(1 << 20),
566 0,
567};
568
569/*
570 * Configure the SA1111 shared memory controller.
571 */
572void
573sa1111_configure_smc(struct sa1111 *sachip, int sdram, unsigned int drac,
574 unsigned int cas_latency)
575{
576 unsigned int smcr = SMCR_DTIM | SMCR_MBGE | FInsrt(drac, SMCR_DRAC);
577
578 if (cas_latency == 3)
579 smcr |= SMCR_CLAT;
580
581 sa1111_writel(smcr, sachip->base + SA1111_SMCR);
582
583 /*
584 * Now clear the bits in the DMA mask to work around the SA1111
585 * DMA erratum (Intel StrongARM SA-1111 Microprocessor Companion
586 * Chip Specification Update, June 2000, Erratum #7).
587 */
588 if (sachip->dev->dma_mask)
589 *sachip->dev->dma_mask &= sa1111_dma_mask[drac >> 2];
590
591 sachip->dev->coherent_dma_mask &= sa1111_dma_mask[drac >> 2];
592}
593
594#endif
595
596static void sa1111_dev_release(struct device *_dev)
597{
598 struct sa1111_dev *dev = SA1111_DEV(_dev);
599
600 release_resource(&dev->res);
601 kfree(dev);
602}
603
604static int
605sa1111_init_one_child(struct sa1111 *sachip, struct resource *parent,
606 struct sa1111_dev_info *info)
607{
608 struct sa1111_dev *dev;
609 int ret;
610
d2a02b93 611 dev = kzalloc(sizeof(struct sa1111_dev), GFP_KERNEL);
1da177e4
LT
612 if (!dev) {
613 ret = -ENOMEM;
614 goto out;
615 }
1da177e4 616
3f978704 617 dev_set_name(&dev->dev, "%4.4lx", info->offset);
1da177e4
LT
618 dev->devid = info->devid;
619 dev->dev.parent = sachip->dev;
620 dev->dev.bus = &sa1111_bus_type;
621 dev->dev.release = sa1111_dev_release;
622 dev->dev.coherent_dma_mask = sachip->dev->coherent_dma_mask;
623 dev->res.start = sachip->phys + info->offset;
624 dev->res.end = dev->res.start + 511;
3f978704 625 dev->res.name = dev_name(&dev->dev);
1da177e4
LT
626 dev->res.flags = IORESOURCE_MEM;
627 dev->mapbase = sachip->base + info->offset;
628 dev->skpcr_mask = info->skpcr_mask;
629 memmove(dev->irq, info->irq, sizeof(dev->irq));
630
631 ret = request_resource(parent, &dev->res);
632 if (ret) {
633 printk("SA1111: failed to allocate resource for %s\n",
634 dev->res.name);
3f978704 635 dev_set_name(&dev->dev, NULL);
1da177e4
LT
636 kfree(dev);
637 goto out;
638 }
639
640
641 ret = device_register(&dev->dev);
642 if (ret) {
643 release_resource(&dev->res);
644 kfree(dev);
645 goto out;
646 }
647
957cf333 648#ifdef CONFIG_DMABOUNCE
1da177e4
LT
649 /*
650 * If the parent device has a DMA mask associated with it,
651 * propagate it down to the children.
652 */
653 if (sachip->dev->dma_mask) {
654 dev->dma_mask = *sachip->dev->dma_mask;
655 dev->dev.dma_mask = &dev->dma_mask;
656
657 if (dev->dma_mask != 0xffffffffUL) {
658 ret = dmabounce_register_dev(&dev->dev, 1024, 4096);
659 if (ret) {
fc3a8828
GKH
660 dev_err(&dev->dev, "SA1111: Failed to register"
661 " with dmabounce\n");
1da177e4
LT
662 device_unregister(&dev->dev);
663 }
664 }
665 }
957cf333 666#endif
1da177e4
LT
667
668out:
669 return ret;
670}
671
672/**
673 * sa1111_probe - probe for a single SA1111 chip.
674 * @phys_addr: physical address of device.
675 *
676 * Probe for a SA1111 chip. This must be called
677 * before any other SA1111-specific code.
678 *
679 * Returns:
680 * %-ENODEV device not found.
681 * %-EBUSY physical address already marked in-use.
682 * %0 successful.
683 */
684static int
685__sa1111_probe(struct device *me, struct resource *mem, int irq)
686{
687 struct sa1111 *sachip;
688 unsigned long id;
416112f8 689 unsigned int has_devs;
1da177e4
LT
690 int i, ret = -ENODEV;
691
d2a02b93 692 sachip = kzalloc(sizeof(struct sa1111), GFP_KERNEL);
1da177e4
LT
693 if (!sachip)
694 return -ENOMEM;
695
13f75582 696 sachip->clk = clk_get(me, "SA1111_CLK");
442a9022 697 if (IS_ERR(sachip->clk)) {
97d654f8
RK
698 ret = PTR_ERR(sachip->clk);
699 goto err_free;
700 }
701
1da177e4
LT
702 spin_lock_init(&sachip->lock);
703
704 sachip->dev = me;
705 dev_set_drvdata(sachip->dev, sachip);
706
707 sachip->phys = mem->start;
708 sachip->irq = irq;
709
710 /*
711 * Map the whole region. This also maps the
712 * registers for our children.
713 */
714 sachip->base = ioremap(mem->start, PAGE_SIZE * 2);
715 if (!sachip->base) {
716 ret = -ENOMEM;
97d654f8 717 goto err_clkput;
1da177e4
LT
718 }
719
720 /*
721 * Probe for the chip. Only touch the SBI registers.
722 */
723 id = sa1111_readl(sachip->base + SA1111_SKID);
724 if ((id & SKID_ID_MASK) != SKID_SA1111_ID) {
725 printk(KERN_DEBUG "SA1111 not detected: ID = %08lx\n", id);
726 ret = -ENODEV;
97d654f8 727 goto err_unmap;
1da177e4
LT
728 }
729
730 printk(KERN_INFO "SA1111 Microprocessor Companion Chip: "
731 "silicon revision %lx, metal revision %lx\n",
732 (id & SKID_SIREV_MASK)>>4, (id & SKID_MTREV_MASK));
733
734 /*
735 * We found it. Wake the chip up, and initialise.
736 */
737 sa1111_wake(sachip);
738
739#ifdef CONFIG_ARCH_SA1100
416112f8
DB
740 {
741 unsigned int val;
742
1da177e4
LT
743 /*
744 * The SDRAM configuration of the SA1110 and the SA1111 must
745 * match. This is very important to ensure that SA1111 accesses
746 * don't corrupt the SDRAM. Note that this ungates the SA1111's
747 * MBGNT signal, so we must have called sa1110_mb_disable()
748 * beforehand.
749 */
750 sa1111_configure_smc(sachip, 1,
751 FExtr(MDCNFG, MDCNFG_SA1110_DRAC0),
752 FExtr(MDCNFG, MDCNFG_SA1110_TDL0));
753
754 /*
755 * We only need to turn on DCLK whenever we want to use the
756 * DMA. It can otherwise be held firmly in the off position.
757 * (currently, we always enable it.)
758 */
759 val = sa1111_readl(sachip->base + SA1111_SKPCR);
760 sa1111_writel(val | SKPCR_DCLKEN, sachip->base + SA1111_SKPCR);
761
762 /*
763 * Enable the SA1110 memory bus request and grant signals.
764 */
765 sa1110_mb_enable();
416112f8 766 }
1da177e4
LT
767#endif
768
769 /*
770 * The interrupt controller must be initialised before any
771 * other device to ensure that the interrupts are available.
772 */
773 if (sachip->irq != NO_IRQ)
774 sa1111_setup_irq(sachip);
775
776 g_sa1111 = sachip;
777
778 has_devs = ~0;
779 if (machine_is_assabet() || machine_is_jornada720() ||
780 machine_is_badge4())
781 has_devs &= ~(1 << 4);
782 else
783 has_devs &= ~(1 << 1);
784
785 for (i = 0; i < ARRAY_SIZE(sa1111_devices); i++)
786 if (has_devs & (1 << i))
787 sa1111_init_one_child(sachip, mem, &sa1111_devices[i]);
788
789 return 0;
790
97d654f8 791 err_unmap:
1da177e4 792 iounmap(sachip->base);
97d654f8
RK
793 err_clkput:
794 clk_put(sachip->clk);
795 err_free:
1da177e4
LT
796 kfree(sachip);
797 return ret;
798}
799
522c37b9
RK
800static int sa1111_remove_one(struct device *dev, void *data)
801{
802 device_unregister(dev);
803 return 0;
804}
805
1da177e4
LT
806static void __sa1111_remove(struct sa1111 *sachip)
807{
1da177e4
LT
808 void __iomem *irqbase = sachip->base + SA1111_INTC;
809
522c37b9 810 device_for_each_child(sachip->dev, NULL, sa1111_remove_one);
1da177e4
LT
811
812 /* disable all IRQs */
813 sa1111_writel(0, irqbase + SA1111_INTEN0);
814 sa1111_writel(0, irqbase + SA1111_INTEN1);
815 sa1111_writel(0, irqbase + SA1111_WAKEEN0);
816 sa1111_writel(0, irqbase + SA1111_WAKEEN1);
817
97d654f8
RK
818 clk_disable(sachip->clk);
819
1da177e4
LT
820 if (sachip->irq != NO_IRQ) {
821 set_irq_chained_handler(sachip->irq, NULL);
822 set_irq_data(sachip->irq, NULL);
823
824 release_mem_region(sachip->phys + SA1111_INTC, 512);
825 }
826
827 iounmap(sachip->base);
97d654f8 828 clk_put(sachip->clk);
1da177e4
LT
829 kfree(sachip);
830}
831
832/*
833 * According to the "Intel StrongARM SA-1111 Microprocessor Companion
834 * Chip Specification Update" (June 2000), erratum #7, there is a
835 * significant bug in the SA1111 SDRAM shared memory controller. If
836 * an access to a region of memory above 1MB relative to the bank base,
837 * it is important that address bit 10 _NOT_ be asserted. Depending
838 * on the configuration of the RAM, bit 10 may correspond to one
839 * of several different (processor-relative) address bits.
840 *
841 * This routine only identifies whether or not a given DMA address
842 * is susceptible to the bug.
843 *
844 * This should only get called for sa1111_device types due to the
845 * way we configure our device dma_masks.
846 */
847int dma_needs_bounce(struct device *dev, dma_addr_t addr, size_t size)
848{
849 /*
850 * Section 4.6 of the "Intel StrongARM SA-1111 Development Module
851 * User's Guide" mentions that jumpers R51 and R52 control the
852 * target of SA-1111 DMA (either SDRAM bank 0 on Assabet, or
853 * SDRAM bank 1 on Neponset). The default configuration selects
854 * Assabet, so any address in bank 1 is necessarily invalid.
855 */
856 return ((machine_is_assabet() || machine_is_pfs168()) &&
857 (addr >= 0xc8000000 || (addr + size) >= 0xc8000000));
858}
859
860struct sa1111_save_data {
861 unsigned int skcr;
862 unsigned int skpcr;
863 unsigned int skcdr;
864 unsigned char skaud;
865 unsigned char skpwm0;
866 unsigned char skpwm1;
867
868 /*
869 * Interrupt controller
870 */
871 unsigned int intpol0;
872 unsigned int intpol1;
873 unsigned int inten0;
874 unsigned int inten1;
875 unsigned int wakepol0;
876 unsigned int wakepol1;
877 unsigned int wakeen0;
878 unsigned int wakeen1;
879};
880
881#ifdef CONFIG_PM
882
3ae5eaec 883static int sa1111_suspend(struct platform_device *dev, pm_message_t state)
1da177e4 884{
3ae5eaec 885 struct sa1111 *sachip = platform_get_drvdata(dev);
1da177e4
LT
886 struct sa1111_save_data *save;
887 unsigned long flags;
888 unsigned int val;
889 void __iomem *base;
890
1da177e4
LT
891 save = kmalloc(sizeof(struct sa1111_save_data), GFP_KERNEL);
892 if (!save)
893 return -ENOMEM;
93160c63 894 sachip->saved_state = save;
1da177e4
LT
895
896 spin_lock_irqsave(&sachip->lock, flags);
897
898 /*
899 * Save state.
900 */
901 base = sachip->base;
902 save->skcr = sa1111_readl(base + SA1111_SKCR);
903 save->skpcr = sa1111_readl(base + SA1111_SKPCR);
904 save->skcdr = sa1111_readl(base + SA1111_SKCDR);
905 save->skaud = sa1111_readl(base + SA1111_SKAUD);
906 save->skpwm0 = sa1111_readl(base + SA1111_SKPWM0);
907 save->skpwm1 = sa1111_readl(base + SA1111_SKPWM1);
908
909 base = sachip->base + SA1111_INTC;
910 save->intpol0 = sa1111_readl(base + SA1111_INTPOL0);
911 save->intpol1 = sa1111_readl(base + SA1111_INTPOL1);
912 save->inten0 = sa1111_readl(base + SA1111_INTEN0);
913 save->inten1 = sa1111_readl(base + SA1111_INTEN1);
914 save->wakepol0 = sa1111_readl(base + SA1111_WAKEPOL0);
915 save->wakepol1 = sa1111_readl(base + SA1111_WAKEPOL1);
916 save->wakeen0 = sa1111_readl(base + SA1111_WAKEEN0);
917 save->wakeen1 = sa1111_readl(base + SA1111_WAKEEN1);
918
919 /*
920 * Disable.
921 */
922 val = sa1111_readl(sachip->base + SA1111_SKCR);
923 sa1111_writel(val | SKCR_SLEEP, sachip->base + SA1111_SKCR);
924 sa1111_writel(0, sachip->base + SA1111_SKPWM0);
925 sa1111_writel(0, sachip->base + SA1111_SKPWM1);
926
97d654f8
RK
927 clk_disable(sachip->clk);
928
1da177e4
LT
929 spin_unlock_irqrestore(&sachip->lock, flags);
930
931 return 0;
932}
933
934/*
935 * sa1111_resume - Restore the SA1111 device state.
936 * @dev: device to restore
1da177e4
LT
937 *
938 * Restore the general state of the SA1111; clock control and
939 * interrupt controller. Other parts of the SA1111 must be
940 * restored by their respective drivers, and must be called
941 * via LDM after this function.
942 */
3ae5eaec 943static int sa1111_resume(struct platform_device *dev)
1da177e4 944{
3ae5eaec 945 struct sa1111 *sachip = platform_get_drvdata(dev);
1da177e4
LT
946 struct sa1111_save_data *save;
947 unsigned long flags, id;
948 void __iomem *base;
949
93160c63 950 save = sachip->saved_state;
1da177e4
LT
951 if (!save)
952 return 0;
953
1da177e4
LT
954 /*
955 * Ensure that the SA1111 is still here.
956 * FIXME: shouldn't do this here.
957 */
958 id = sa1111_readl(sachip->base + SA1111_SKID);
959 if ((id & SKID_ID_MASK) != SKID_SA1111_ID) {
960 __sa1111_remove(sachip);
3ae5eaec 961 platform_set_drvdata(dev, NULL);
1da177e4
LT
962 kfree(save);
963 return 0;
964 }
965
966 /*
967 * First of all, wake up the chip.
968 */
969 sa1111_wake(sachip);
3defb247
MV
970
971 /*
972 * Only lock for write ops. Also, sa1111_wake must be called with
973 * released spinlock!
974 */
975 spin_lock_irqsave(&sachip->lock, flags);
976
1da177e4
LT
977 sa1111_writel(0, sachip->base + SA1111_INTC + SA1111_INTEN0);
978 sa1111_writel(0, sachip->base + SA1111_INTC + SA1111_INTEN1);
979
980 base = sachip->base;
981 sa1111_writel(save->skcr, base + SA1111_SKCR);
982 sa1111_writel(save->skpcr, base + SA1111_SKPCR);
983 sa1111_writel(save->skcdr, base + SA1111_SKCDR);
984 sa1111_writel(save->skaud, base + SA1111_SKAUD);
985 sa1111_writel(save->skpwm0, base + SA1111_SKPWM0);
986 sa1111_writel(save->skpwm1, base + SA1111_SKPWM1);
987
988 base = sachip->base + SA1111_INTC;
989 sa1111_writel(save->intpol0, base + SA1111_INTPOL0);
990 sa1111_writel(save->intpol1, base + SA1111_INTPOL1);
991 sa1111_writel(save->inten0, base + SA1111_INTEN0);
992 sa1111_writel(save->inten1, base + SA1111_INTEN1);
993 sa1111_writel(save->wakepol0, base + SA1111_WAKEPOL0);
994 sa1111_writel(save->wakepol1, base + SA1111_WAKEPOL1);
995 sa1111_writel(save->wakeen0, base + SA1111_WAKEEN0);
996 sa1111_writel(save->wakeen1, base + SA1111_WAKEEN1);
997
998 spin_unlock_irqrestore(&sachip->lock, flags);
999
93160c63 1000 sachip->saved_state = NULL;
1da177e4
LT
1001 kfree(save);
1002
1003 return 0;
1004}
1005
1006#else
1007#define sa1111_suspend NULL
1008#define sa1111_resume NULL
1009#endif
1010
5d43839a 1011static int __devinit sa1111_probe(struct platform_device *pdev)
1da177e4 1012{
1da177e4
LT
1013 struct resource *mem;
1014 int irq;
1015
1016 mem = platform_get_resource(pdev, IORESOURCE_MEM, 0);
1017 if (!mem)
1018 return -EINVAL;
1019 irq = platform_get_irq(pdev, 0);
48944738
DV
1020 if (irq < 0)
1021 return -ENXIO;
1da177e4 1022
3ae5eaec 1023 return __sa1111_probe(&pdev->dev, mem, irq);
1da177e4
LT
1024}
1025
3ae5eaec 1026static int sa1111_remove(struct platform_device *pdev)
1da177e4 1027{
3ae5eaec 1028 struct sa1111 *sachip = platform_get_drvdata(pdev);
1da177e4
LT
1029
1030 if (sachip) {
1031 __sa1111_remove(sachip);
3ae5eaec 1032 platform_set_drvdata(pdev, NULL);
1da177e4
LT
1033
1034#ifdef CONFIG_PM
93160c63
RW
1035 kfree(sachip->saved_state);
1036 sachip->saved_state = NULL;
1da177e4
LT
1037#endif
1038 }
1039
1040 return 0;
1041}
1042
1043/*
1044 * Not sure if this should be on the system bus or not yet.
1045 * We really want some way to register a system device at
1046 * the per-machine level, and then have this driver pick
1047 * up the registered devices.
1048 *
1049 * We also need to handle the SDRAM configuration for
1050 * PXA250/SA1110 machine classes.
1051 */
3ae5eaec 1052static struct platform_driver sa1111_device_driver = {
1da177e4
LT
1053 .probe = sa1111_probe,
1054 .remove = sa1111_remove,
1055 .suspend = sa1111_suspend,
1056 .resume = sa1111_resume,
3ae5eaec
RK
1057 .driver = {
1058 .name = "sa1111",
1059 },
1da177e4
LT
1060};
1061
1062/*
1063 * Get the parent device driver (us) structure
1064 * from a child function device
1065 */
1066static inline struct sa1111 *sa1111_chip_driver(struct sa1111_dev *sadev)
1067{
1068 return (struct sa1111 *)dev_get_drvdata(sadev->dev.parent);
1069}
1070
1071/*
1072 * The bits in the opdiv field are non-linear.
1073 */
1074static unsigned char opdiv_table[] = { 1, 4, 2, 8 };
1075
1076static unsigned int __sa1111_pll_clock(struct sa1111 *sachip)
1077{
1078 unsigned int skcdr, fbdiv, ipdiv, opdiv;
1079
1080 skcdr = sa1111_readl(sachip->base + SA1111_SKCDR);
1081
1082 fbdiv = (skcdr & 0x007f) + 2;
1083 ipdiv = ((skcdr & 0x0f80) >> 7) + 2;
1084 opdiv = opdiv_table[(skcdr & 0x3000) >> 12];
1085
1086 return 3686400 * fbdiv / (ipdiv * opdiv);
1087}
1088
1089/**
1090 * sa1111_pll_clock - return the current PLL clock frequency.
1091 * @sadev: SA1111 function block
1092 *
1093 * BUG: we should look at SKCR. We also blindly believe that
1094 * the chip is being fed with the 3.6864MHz clock.
1095 *
1096 * Returns the PLL clock in Hz.
1097 */
1098unsigned int sa1111_pll_clock(struct sa1111_dev *sadev)
1099{
1100 struct sa1111 *sachip = sa1111_chip_driver(sadev);
1101
1102 return __sa1111_pll_clock(sachip);
1103}
0a4bc5e8 1104EXPORT_SYMBOL(sa1111_pll_clock);
1da177e4
LT
1105
1106/**
1107 * sa1111_select_audio_mode - select I2S or AC link mode
1108 * @sadev: SA1111 function block
1109 * @mode: One of %SA1111_AUDIO_ACLINK or %SA1111_AUDIO_I2S
1110 *
1111 * Frob the SKCR to select AC Link mode or I2S mode for
1112 * the audio block.
1113 */
1114void sa1111_select_audio_mode(struct sa1111_dev *sadev, int mode)
1115{
1116 struct sa1111 *sachip = sa1111_chip_driver(sadev);
1117 unsigned long flags;
1118 unsigned int val;
1119
1120 spin_lock_irqsave(&sachip->lock, flags);
1121
1122 val = sa1111_readl(sachip->base + SA1111_SKCR);
1123 if (mode == SA1111_AUDIO_I2S) {
1124 val &= ~SKCR_SELAC;
1125 } else {
1126 val |= SKCR_SELAC;
1127 }
1128 sa1111_writel(val, sachip->base + SA1111_SKCR);
1129
1130 spin_unlock_irqrestore(&sachip->lock, flags);
1131}
0a4bc5e8 1132EXPORT_SYMBOL(sa1111_select_audio_mode);
1da177e4
LT
1133
1134/**
1135 * sa1111_set_audio_rate - set the audio sample rate
1136 * @sadev: SA1111 SAC function block
1137 * @rate: sample rate to select
1138 */
1139int sa1111_set_audio_rate(struct sa1111_dev *sadev, int rate)
1140{
1141 struct sa1111 *sachip = sa1111_chip_driver(sadev);
1142 unsigned int div;
1143
1144 if (sadev->devid != SA1111_DEVID_SAC)
1145 return -EINVAL;
1146
1147 div = (__sa1111_pll_clock(sachip) / 256 + rate / 2) / rate;
1148 if (div == 0)
1149 div = 1;
1150 if (div > 128)
1151 div = 128;
1152
1153 sa1111_writel(div - 1, sachip->base + SA1111_SKAUD);
1154
1155 return 0;
1156}
0a4bc5e8 1157EXPORT_SYMBOL(sa1111_set_audio_rate);
1da177e4
LT
1158
1159/**
1160 * sa1111_get_audio_rate - get the audio sample rate
1161 * @sadev: SA1111 SAC function block device
1162 */
1163int sa1111_get_audio_rate(struct sa1111_dev *sadev)
1164{
1165 struct sa1111 *sachip = sa1111_chip_driver(sadev);
1166 unsigned long div;
1167
1168 if (sadev->devid != SA1111_DEVID_SAC)
1169 return -EINVAL;
1170
1171 div = sa1111_readl(sachip->base + SA1111_SKAUD) + 1;
1172
1173 return __sa1111_pll_clock(sachip) / (256 * div);
1174}
0a4bc5e8 1175EXPORT_SYMBOL(sa1111_get_audio_rate);
1da177e4
LT
1176
1177void sa1111_set_io_dir(struct sa1111_dev *sadev,
1178 unsigned int bits, unsigned int dir,
1179 unsigned int sleep_dir)
1180{
1181 struct sa1111 *sachip = sa1111_chip_driver(sadev);
1182 unsigned long flags;
1183 unsigned int val;
1184 void __iomem *gpio = sachip->base + SA1111_GPIO;
1185
1186#define MODIFY_BITS(port, mask, dir) \
1187 if (mask) { \
1188 val = sa1111_readl(port); \
1189 val &= ~(mask); \
1190 val |= (dir) & (mask); \
1191 sa1111_writel(val, port); \
1192 }
1193
1194 spin_lock_irqsave(&sachip->lock, flags);
1195 MODIFY_BITS(gpio + SA1111_GPIO_PADDR, bits & 15, dir);
1196 MODIFY_BITS(gpio + SA1111_GPIO_PBDDR, (bits >> 8) & 255, dir >> 8);
1197 MODIFY_BITS(gpio + SA1111_GPIO_PCDDR, (bits >> 16) & 255, dir >> 16);
1198
1199 MODIFY_BITS(gpio + SA1111_GPIO_PASDR, bits & 15, sleep_dir);
1200 MODIFY_BITS(gpio + SA1111_GPIO_PBSDR, (bits >> 8) & 255, sleep_dir >> 8);
1201 MODIFY_BITS(gpio + SA1111_GPIO_PCSDR, (bits >> 16) & 255, sleep_dir >> 16);
1202 spin_unlock_irqrestore(&sachip->lock, flags);
1203}
0a4bc5e8 1204EXPORT_SYMBOL(sa1111_set_io_dir);
1da177e4
LT
1205
1206void sa1111_set_io(struct sa1111_dev *sadev, unsigned int bits, unsigned int v)
1207{
1208 struct sa1111 *sachip = sa1111_chip_driver(sadev);
1209 unsigned long flags;
1210 unsigned int val;
1211 void __iomem *gpio = sachip->base + SA1111_GPIO;
1212
1213 spin_lock_irqsave(&sachip->lock, flags);
1214 MODIFY_BITS(gpio + SA1111_GPIO_PADWR, bits & 15, v);
1215 MODIFY_BITS(gpio + SA1111_GPIO_PBDWR, (bits >> 8) & 255, v >> 8);
1216 MODIFY_BITS(gpio + SA1111_GPIO_PCDWR, (bits >> 16) & 255, v >> 16);
1217 spin_unlock_irqrestore(&sachip->lock, flags);
1218}
0a4bc5e8 1219EXPORT_SYMBOL(sa1111_set_io);
1da177e4
LT
1220
1221void sa1111_set_sleep_io(struct sa1111_dev *sadev, unsigned int bits, unsigned int v)
1222{
1223 struct sa1111 *sachip = sa1111_chip_driver(sadev);
1224 unsigned long flags;
1225 unsigned int val;
1226 void __iomem *gpio = sachip->base + SA1111_GPIO;
1227
1228 spin_lock_irqsave(&sachip->lock, flags);
1229 MODIFY_BITS(gpio + SA1111_GPIO_PASSR, bits & 15, v);
1230 MODIFY_BITS(gpio + SA1111_GPIO_PBSSR, (bits >> 8) & 255, v >> 8);
1231 MODIFY_BITS(gpio + SA1111_GPIO_PCSSR, (bits >> 16) & 255, v >> 16);
1232 spin_unlock_irqrestore(&sachip->lock, flags);
1233}
0a4bc5e8 1234EXPORT_SYMBOL(sa1111_set_sleep_io);
1da177e4
LT
1235
1236/*
1237 * Individual device operations.
1238 */
1239
1240/**
1241 * sa1111_enable_device - enable an on-chip SA1111 function block
1242 * @sadev: SA1111 function block device to enable
1243 */
1244void sa1111_enable_device(struct sa1111_dev *sadev)
1245{
1246 struct sa1111 *sachip = sa1111_chip_driver(sadev);
1247 unsigned long flags;
1248 unsigned int val;
1249
1250 spin_lock_irqsave(&sachip->lock, flags);
1251 val = sa1111_readl(sachip->base + SA1111_SKPCR);
1252 sa1111_writel(val | sadev->skpcr_mask, sachip->base + SA1111_SKPCR);
1253 spin_unlock_irqrestore(&sachip->lock, flags);
1254}
0a4bc5e8 1255EXPORT_SYMBOL(sa1111_enable_device);
1da177e4
LT
1256
1257/**
1258 * sa1111_disable_device - disable an on-chip SA1111 function block
1259 * @sadev: SA1111 function block device to disable
1260 */
1261void sa1111_disable_device(struct sa1111_dev *sadev)
1262{
1263 struct sa1111 *sachip = sa1111_chip_driver(sadev);
1264 unsigned long flags;
1265 unsigned int val;
1266
1267 spin_lock_irqsave(&sachip->lock, flags);
1268 val = sa1111_readl(sachip->base + SA1111_SKPCR);
1269 sa1111_writel(val & ~sadev->skpcr_mask, sachip->base + SA1111_SKPCR);
1270 spin_unlock_irqrestore(&sachip->lock, flags);
1271}
0a4bc5e8 1272EXPORT_SYMBOL(sa1111_disable_device);
1da177e4
LT
1273
1274/*
1275 * SA1111 "Register Access Bus."
1276 *
1277 * We model this as a regular bus type, and hang devices directly
1278 * off this.
1279 */
1280static int sa1111_match(struct device *_dev, struct device_driver *_drv)
1281{
1282 struct sa1111_dev *dev = SA1111_DEV(_dev);
1283 struct sa1111_driver *drv = SA1111_DRV(_drv);
1284
1285 return dev->devid == drv->devid;
1286}
1287
1288static int sa1111_bus_suspend(struct device *dev, pm_message_t state)
1289{
1290 struct sa1111_dev *sadev = SA1111_DEV(dev);
1291 struct sa1111_driver *drv = SA1111_DRV(dev->driver);
1292 int ret = 0;
1293
1294 if (drv && drv->suspend)
1295 ret = drv->suspend(sadev, state);
1296 return ret;
1297}
1298
1299static int sa1111_bus_resume(struct device *dev)
1300{
1301 struct sa1111_dev *sadev = SA1111_DEV(dev);
1302 struct sa1111_driver *drv = SA1111_DRV(dev->driver);
1303 int ret = 0;
1304
1305 if (drv && drv->resume)
1306 ret = drv->resume(sadev);
1307 return ret;
1308}
1309
1310static int sa1111_bus_probe(struct device *dev)
1311{
1312 struct sa1111_dev *sadev = SA1111_DEV(dev);
1313 struct sa1111_driver *drv = SA1111_DRV(dev->driver);
1314 int ret = -ENODEV;
1315
1316 if (drv->probe)
1317 ret = drv->probe(sadev);
1318 return ret;
1319}
1320
1321static int sa1111_bus_remove(struct device *dev)
1322{
1323 struct sa1111_dev *sadev = SA1111_DEV(dev);
1324 struct sa1111_driver *drv = SA1111_DRV(dev->driver);
1325 int ret = 0;
1326
1327 if (drv->remove)
1328 ret = drv->remove(sadev);
1329 return ret;
1330}
1331
1332struct bus_type sa1111_bus_type = {
1333 .name = "sa1111-rab",
1334 .match = sa1111_match,
2876ba43
RK
1335 .probe = sa1111_bus_probe,
1336 .remove = sa1111_bus_remove,
1da177e4
LT
1337 .suspend = sa1111_bus_suspend,
1338 .resume = sa1111_bus_resume,
1339};
0a4bc5e8 1340EXPORT_SYMBOL(sa1111_bus_type);
1da177e4
LT
1341
1342int sa1111_driver_register(struct sa1111_driver *driver)
1343{
1da177e4
LT
1344 driver->drv.bus = &sa1111_bus_type;
1345 return driver_register(&driver->drv);
1346}
0a4bc5e8 1347EXPORT_SYMBOL(sa1111_driver_register);
1da177e4
LT
1348
1349void sa1111_driver_unregister(struct sa1111_driver *driver)
1350{
1351 driver_unregister(&driver->drv);
1352}
0a4bc5e8 1353EXPORT_SYMBOL(sa1111_driver_unregister);
1da177e4
LT
1354
1355static int __init sa1111_init(void)
1356{
1357 int ret = bus_register(&sa1111_bus_type);
1358 if (ret == 0)
3ae5eaec 1359 platform_driver_register(&sa1111_device_driver);
1da177e4
LT
1360 return ret;
1361}
1362
1363static void __exit sa1111_exit(void)
1364{
3ae5eaec 1365 platform_driver_unregister(&sa1111_device_driver);
1da177e4
LT
1366 bus_unregister(&sa1111_bus_type);
1367}
1368
72724382 1369subsys_initcall(sa1111_init);
1da177e4
LT
1370module_exit(sa1111_exit);
1371
1372MODULE_DESCRIPTION("Intel Corporation SA1111 core driver");
1373MODULE_LICENSE("GPL");