2 * linux/arch/arm/mach-sa1100/neponset.c
5 #include <linux/init.h>
6 #include <linux/ioport.h>
8 #include <linux/kernel.h>
9 #include <linux/module.h>
10 #include <linux/platform_device.h>
12 #include <linux/serial_core.h>
13 #include <linux/slab.h>
15 #include <asm/mach-types.h>
16 #include <asm/mach/map.h>
17 #include <asm/mach/serial_sa1100.h>
18 #include <asm/hardware/sa1111.h>
19 #include <asm/sizes.h>
21 #include <mach/hardware.h>
22 #include <mach/assabet.h>
23 #include <mach/neponset.h>
24 #include <mach/irqs.h>
26 #define NEP_IRQ_SMC91X 0
27 #define NEP_IRQ_USAR 1
28 #define NEP_IRQ_SA1111 2
38 #define MDM_CTL_0 0xb0
39 #define MDM_CTL_1 0xb4
42 #define IRR_ETHERNET (1 << 0)
43 #define IRR_USAR (1 << 1)
44 #define IRR_SA1111 (1 << 2)
46 #define MDM_CTL0_RTS1 (1 << 0)
47 #define MDM_CTL0_DTR1 (1 << 1)
48 #define MDM_CTL0_RTS2 (1 << 2)
49 #define MDM_CTL0_DTR2 (1 << 3)
51 #define MDM_CTL1_CTS1 (1 << 0)
52 #define MDM_CTL1_DSR1 (1 << 1)
53 #define MDM_CTL1_DCD1 (1 << 2)
54 #define MDM_CTL1_CTS2 (1 << 3)
55 #define MDM_CTL1_DSR2 (1 << 4)
56 #define MDM_CTL1_DCD2 (1 << 5)
58 #define AUD_SEL_1341 (1 << 0)
59 #define AUD_MUTE_1341 (1 << 1)
61 extern void sa1110_mb_disable(void);
63 struct neponset_drvdata
{
65 struct platform_device
*sa1111
;
66 struct platform_device
*smc91x
;
68 #ifdef CONFIG_PM_SLEEP
74 static void __iomem
*nep_base
;
76 void neponset_ncr_frob(unsigned int mask
, unsigned int val
)
78 void __iomem
*base
= nep_base
;
84 local_irq_save(flags
);
85 v
= readb_relaxed(base
+ NCR_0
);
86 writeb_relaxed((v
& ~mask
) | val
, base
+ NCR_0
);
87 local_irq_restore(flags
);
89 WARN(1, "nep_base unset\n");
92 EXPORT_SYMBOL(neponset_ncr_frob
);
94 static void neponset_set_mctrl(struct uart_port
*port
, u_int mctrl
)
96 void __iomem
*base
= nep_base
;
102 mdm_ctl0
= readb_relaxed(base
+ MDM_CTL_0
);
103 if (port
->mapbase
== _Ser1UTCR0
) {
104 if (mctrl
& TIOCM_RTS
)
105 mdm_ctl0
&= ~MDM_CTL0_RTS2
;
107 mdm_ctl0
|= MDM_CTL0_RTS2
;
109 if (mctrl
& TIOCM_DTR
)
110 mdm_ctl0
&= ~MDM_CTL0_DTR2
;
112 mdm_ctl0
|= MDM_CTL0_DTR2
;
113 } else if (port
->mapbase
== _Ser3UTCR0
) {
114 if (mctrl
& TIOCM_RTS
)
115 mdm_ctl0
&= ~MDM_CTL0_RTS1
;
117 mdm_ctl0
|= MDM_CTL0_RTS1
;
119 if (mctrl
& TIOCM_DTR
)
120 mdm_ctl0
&= ~MDM_CTL0_DTR1
;
122 mdm_ctl0
|= MDM_CTL0_DTR1
;
125 writeb_relaxed(mdm_ctl0
, base
+ MDM_CTL_0
);
128 static u_int
neponset_get_mctrl(struct uart_port
*port
)
130 void __iomem
*base
= nep_base
;
131 u_int ret
= TIOCM_CD
| TIOCM_CTS
| TIOCM_DSR
;
137 mdm_ctl1
= readb_relaxed(base
+ MDM_CTL_1
);
138 if (port
->mapbase
== _Ser1UTCR0
) {
139 if (mdm_ctl1
& MDM_CTL1_DCD2
)
141 if (mdm_ctl1
& MDM_CTL1_CTS2
)
143 if (mdm_ctl1
& MDM_CTL1_DSR2
)
145 } else if (port
->mapbase
== _Ser3UTCR0
) {
146 if (mdm_ctl1
& MDM_CTL1_DCD1
)
148 if (mdm_ctl1
& MDM_CTL1_CTS1
)
150 if (mdm_ctl1
& MDM_CTL1_DSR1
)
157 static struct sa1100_port_fns neponset_port_fns __devinitdata
= {
158 .set_mctrl
= neponset_set_mctrl
,
159 .get_mctrl
= neponset_get_mctrl
,
163 * Install handler for Neponset IRQ. Note that we have to loop here
164 * since the ETHERNET and USAR IRQs are level based, and we need to
165 * ensure that the IRQ signal is deasserted before returning. This
166 * is rather unfortunate.
168 static void neponset_irq_handler(unsigned int irq
, struct irq_desc
*desc
)
170 struct neponset_drvdata
*d
= irq_desc_get_handler_data(desc
);
175 * Acknowledge the parent IRQ.
177 desc
->irq_data
.chip
->irq_ack(&desc
->irq_data
);
180 * Read the interrupt reason register. Let's have all
181 * active IRQ bits high. Note: there is a typo in the
182 * Neponset user's guide for the SA1111 IRR level.
184 irr
= readb_relaxed(d
->base
+ IRR
);
185 irr
^= IRR_ETHERNET
| IRR_USAR
;
187 if ((irr
& (IRR_ETHERNET
| IRR_USAR
| IRR_SA1111
)) == 0)
191 * Since there is no individual mask, we have to
192 * mask the parent IRQ. This is safe, since we'll
193 * recheck the register for any pending IRQs.
195 if (irr
& (IRR_ETHERNET
| IRR_USAR
)) {
196 desc
->irq_data
.chip
->irq_mask(&desc
->irq_data
);
199 * Ack the interrupt now to prevent re-entering
200 * this neponset handler. Again, this is safe
201 * since we'll check the IRR register prior to
204 desc
->irq_data
.chip
->irq_ack(&desc
->irq_data
);
206 if (irr
& IRR_ETHERNET
)
207 generic_handle_irq(d
->irq_base
+ NEP_IRQ_SMC91X
);
210 generic_handle_irq(d
->irq_base
+ NEP_IRQ_USAR
);
212 desc
->irq_data
.chip
->irq_unmask(&desc
->irq_data
);
215 if (irr
& IRR_SA1111
)
216 generic_handle_irq(d
->irq_base
+ NEP_IRQ_SA1111
);
220 /* Yes, we really do not have any kind of masking or unmasking */
221 static void nochip_noop(struct irq_data
*irq
)
225 static struct irq_chip nochip
= {
227 .irq_ack
= nochip_noop
,
228 .irq_mask
= nochip_noop
,
229 .irq_unmask
= nochip_noop
,
232 static struct sa1111_platform_data sa1111_info
= {
233 .disable_devs
= SA1111_DEVID_PS2_MSE
,
236 static int __devinit
neponset_probe(struct platform_device
*dev
)
238 struct neponset_drvdata
*d
;
239 struct resource
*nep_res
, *sa1111_res
, *smc91x_res
;
240 struct resource sa1111_resources
[] = {
241 DEFINE_RES_MEM(0x40000000, SZ_8K
),
242 { .flags
= IORESOURCE_IRQ
},
244 struct platform_device_info sa1111_devinfo
= {
248 .res
= sa1111_resources
,
249 .num_res
= ARRAY_SIZE(sa1111_resources
),
250 .data
= &sa1111_info
,
251 .size_data
= sizeof(sa1111_info
),
252 .dma_mask
= 0xffffffffUL
,
254 struct resource smc91x_resources
[] = {
255 DEFINE_RES_MEM_NAMED(SA1100_CS3_PHYS
,
256 0x02000000, "smc91x-regs"),
257 DEFINE_RES_MEM_NAMED(SA1100_CS3_PHYS
+ 0x02000000,
258 0x02000000, "smc91x-attrib"),
259 { .flags
= IORESOURCE_IRQ
},
261 struct platform_device_info smc91x_devinfo
= {
265 .res
= smc91x_resources
,
266 .num_res
= ARRAY_SIZE(smc91x_resources
),
273 irq
= ret
= platform_get_irq(dev
, 0);
277 nep_res
= platform_get_resource(dev
, IORESOURCE_MEM
, 0);
278 smc91x_res
= platform_get_resource(dev
, IORESOURCE_MEM
, 1);
279 sa1111_res
= platform_get_resource(dev
, IORESOURCE_MEM
, 2);
280 if (!nep_res
|| !smc91x_res
|| !sa1111_res
) {
285 d
= kzalloc(sizeof(*d
), GFP_KERNEL
);
291 d
->base
= ioremap(nep_res
->start
, SZ_4K
);
297 if (readb_relaxed(d
->base
+ WHOAMI
) != 0x11) {
298 dev_warn(&dev
->dev
, "Neponset board detected, but wrong ID: %02x\n",
299 readb_relaxed(d
->base
+ WHOAMI
));
304 ret
= irq_alloc_descs(-1, IRQ_BOARD_START
, NEP_IRQ_NR
, -1);
306 dev_err(&dev
->dev
, "unable to allocate %u irqs: %d\n",
315 irq_set_chip_and_handler(d
->irq_base
+ NEP_IRQ_SMC91X
, &nochip
,
317 set_irq_flags(d
->irq_base
+ NEP_IRQ_SMC91X
, IRQF_VALID
| IRQF_PROBE
);
318 irq_set_chip_and_handler(d
->irq_base
+ NEP_IRQ_USAR
, &nochip
,
320 set_irq_flags(d
->irq_base
+ NEP_IRQ_USAR
, IRQF_VALID
| IRQF_PROBE
);
321 irq_set_chip(d
->irq_base
+ NEP_IRQ_SA1111
, &nochip
);
323 irq_set_irq_type(irq
, IRQ_TYPE_EDGE_RISING
);
324 irq_set_handler_data(irq
, d
);
325 irq_set_chained_handler(irq
, neponset_irq_handler
);
328 * We would set IRQ_GPIO25 to be a wake-up IRQ, but unfortunately
329 * something on the Neponset activates this IRQ on sleep (eth?)
332 enable_irq_wake(irq
);
335 dev_info(&dev
->dev
, "Neponset daughter board, providing IRQ%u-%u\n",
336 d
->irq_base
, d
->irq_base
+ NEP_IRQ_NR
- 1);
339 sa1100_register_uart_fns(&neponset_port_fns
);
341 /* Ensure that the memory bus request/grant signals are setup */
344 /* Disable GPIO 0/1 drivers so the buttons work on the Assabet */
345 writeb_relaxed(NCR_GP01_OFF
, d
->base
+ NCR_0
);
347 sa1111_resources
[0].parent
= sa1111_res
;
348 sa1111_resources
[1].start
= d
->irq_base
+ NEP_IRQ_SA1111
;
349 sa1111_resources
[1].end
= d
->irq_base
+ NEP_IRQ_SA1111
;
350 d
->sa1111
= platform_device_register_full(&sa1111_devinfo
);
352 smc91x_resources
[0].parent
= smc91x_res
;
353 smc91x_resources
[1].parent
= smc91x_res
;
354 smc91x_resources
[2].start
= d
->irq_base
+ NEP_IRQ_SMC91X
;
355 smc91x_resources
[2].end
= d
->irq_base
+ NEP_IRQ_SMC91X
;
356 d
->smc91x
= platform_device_register_full(&smc91x_devinfo
);
358 platform_set_drvdata(dev
, d
);
371 static int __devexit
neponset_remove(struct platform_device
*dev
)
373 struct neponset_drvdata
*d
= platform_get_drvdata(dev
);
374 int irq
= platform_get_irq(dev
, 0);
376 if (!IS_ERR(d
->sa1111
))
377 platform_device_unregister(d
->sa1111
);
378 if (!IS_ERR(d
->smc91x
))
379 platform_device_unregister(d
->smc91x
);
380 irq_set_chained_handler(irq
, NULL
);
381 irq_free_descs(d
->irq_base
, NEP_IRQ_NR
);
389 #ifdef CONFIG_PM_SLEEP
390 static int neponset_suspend(struct device
*dev
)
392 struct neponset_drvdata
*d
= dev_get_drvdata(dev
);
394 d
->ncr0
= readb_relaxed(d
->base
+ NCR_0
);
395 d
->mdm_ctl_0
= readb_relaxed(d
->base
+ MDM_CTL_0
);
400 static int neponset_resume(struct device
*dev
)
402 struct neponset_drvdata
*d
= dev_get_drvdata(dev
);
404 writeb_relaxed(d
->ncr0
, d
->base
+ NCR_0
);
405 writeb_relaxed(d
->mdm_ctl_0
, d
->base
+ MDM_CTL_0
);
410 static const struct dev_pm_ops neponset_pm_ops
= {
411 .suspend_noirq
= neponset_suspend
,
412 .resume_noirq
= neponset_resume
,
413 .freeze_noirq
= neponset_suspend
,
414 .restore_noirq
= neponset_resume
,
416 #define PM_OPS &neponset_pm_ops
421 static struct platform_driver neponset_device_driver
= {
422 .probe
= neponset_probe
,
423 .remove
= __devexit_p(neponset_remove
),
426 .owner
= THIS_MODULE
,
431 static int __init
neponset_init(void)
433 return platform_driver_register(&neponset_device_driver
);
436 subsys_initcall(neponset_init
);