blob: 47681960783be7eb62d89c951d2987f69caa36a8 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * linux/arch/arm/mach-sa1100/neponset.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07003 */
Russell King9590e892012-01-24 22:36:47 +00004#include <linux/err.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005#include <linux/init.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006#include <linux/ioport.h>
Russell Kingced8d212012-01-24 22:22:18 +00007#include <linux/irq.h>
Russell King92e617d2012-01-24 22:13:00 +00008#include <linux/kernel.h>
Russell Kingae14c2e2012-01-24 22:10:02 +00009#include <linux/module.h>
Russell Kingd052d1b2005-10-29 19:07:23 +010010#include <linux/platform_device.h>
Russell King92e617d2012-01-24 22:13:00 +000011#include <linux/serial_core.h>
Russell Kingae14c2e2012-01-24 22:10:02 +000012#include <linux/slab.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070013
Linus Torvalds1da177e2005-04-16 15:20:36 -070014#include <asm/mach-types.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070015#include <asm/mach/map.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070016#include <asm/mach/serial_sa1100.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070017#include <asm/hardware/sa1111.h>
18#include <asm/sizes.h>
19
Russell King92e617d2012-01-24 22:13:00 +000020#include <mach/hardware.h>
21#include <mach/assabet.h>
22#include <mach/neponset.h>
23
Russell Kingced8d212012-01-24 22:22:18 +000024#define NEP_IRQ_SMC91X 0
25#define NEP_IRQ_USAR 1
26#define NEP_IRQ_SA1111 2
27#define NEP_IRQ_NR 3
28
Russell Kingae14c2e2012-01-24 22:10:02 +000029struct neponset_drvdata {
Russell King9590e892012-01-24 22:36:47 +000030 struct platform_device *sa1111;
31 struct platform_device *smc91x;
Russell Kingced8d212012-01-24 22:22:18 +000032 unsigned irq_base;
Russell Kingae14c2e2012-01-24 22:10:02 +000033#ifdef CONFIG_PM_SLEEP
34 u32 ncr0;
35 u32 mdm_ctl_0;
36#endif
37};
38
Russell King6ad1b612012-01-16 09:31:47 +000039void neponset_ncr_frob(unsigned int mask, unsigned int val)
40{
41 unsigned long flags;
42
43 local_irq_save(flags);
44 NCR_0 = (NCR_0 & ~mask) | val;
45 local_irq_restore(flags);
46}
47
Linus Torvalds1da177e2005-04-16 15:20:36 -070048static void neponset_set_mctrl(struct uart_port *port, u_int mctrl)
49{
50 u_int mdm_ctl0 = MDM_CTL_0;
51
52 if (port->mapbase == _Ser1UTCR0) {
53 if (mctrl & TIOCM_RTS)
54 mdm_ctl0 &= ~MDM_CTL0_RTS2;
55 else
56 mdm_ctl0 |= MDM_CTL0_RTS2;
57
58 if (mctrl & TIOCM_DTR)
59 mdm_ctl0 &= ~MDM_CTL0_DTR2;
60 else
61 mdm_ctl0 |= MDM_CTL0_DTR2;
62 } else if (port->mapbase == _Ser3UTCR0) {
63 if (mctrl & TIOCM_RTS)
64 mdm_ctl0 &= ~MDM_CTL0_RTS1;
65 else
66 mdm_ctl0 |= MDM_CTL0_RTS1;
67
68 if (mctrl & TIOCM_DTR)
69 mdm_ctl0 &= ~MDM_CTL0_DTR1;
70 else
71 mdm_ctl0 |= MDM_CTL0_DTR1;
72 }
73
74 MDM_CTL_0 = mdm_ctl0;
75}
76
77static u_int neponset_get_mctrl(struct uart_port *port)
78{
79 u_int ret = TIOCM_CD | TIOCM_CTS | TIOCM_DSR;
80 u_int mdm_ctl1 = MDM_CTL_1;
81
82 if (port->mapbase == _Ser1UTCR0) {
83 if (mdm_ctl1 & MDM_CTL1_DCD2)
84 ret &= ~TIOCM_CD;
85 if (mdm_ctl1 & MDM_CTL1_CTS2)
86 ret &= ~TIOCM_CTS;
87 if (mdm_ctl1 & MDM_CTL1_DSR2)
88 ret &= ~TIOCM_DSR;
89 } else if (port->mapbase == _Ser3UTCR0) {
90 if (mdm_ctl1 & MDM_CTL1_DCD1)
91 ret &= ~TIOCM_CD;
92 if (mdm_ctl1 & MDM_CTL1_CTS1)
93 ret &= ~TIOCM_CTS;
94 if (mdm_ctl1 & MDM_CTL1_DSR1)
95 ret &= ~TIOCM_DSR;
96 }
97
98 return ret;
99}
100
Russell Kingcdea4602007-05-30 17:48:45 +0100101static struct sa1100_port_fns neponset_port_fns __devinitdata = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700102 .set_mctrl = neponset_set_mctrl,
103 .get_mctrl = neponset_get_mctrl,
104};
105
Russell King71045522012-01-16 00:17:41 +0000106/*
Russell King92e617d2012-01-24 22:13:00 +0000107 * Install handler for Neponset IRQ. Note that we have to loop here
108 * since the ETHERNET and USAR IRQs are level based, and we need to
109 * ensure that the IRQ signal is deasserted before returning. This
110 * is rather unfortunate.
111 */
Russell Kingced8d212012-01-24 22:22:18 +0000112static void neponset_irq_handler(unsigned int irq, struct irq_desc *desc)
Russell King92e617d2012-01-24 22:13:00 +0000113{
Russell Kingced8d212012-01-24 22:22:18 +0000114 struct neponset_drvdata *d = irq_desc_get_handler_data(desc);
Russell King92e617d2012-01-24 22:13:00 +0000115 unsigned int irr;
116
117 while (1) {
118 /*
119 * Acknowledge the parent IRQ.
120 */
121 desc->irq_data.chip->irq_ack(&desc->irq_data);
122
123 /*
124 * Read the interrupt reason register. Let's have all
125 * active IRQ bits high. Note: there is a typo in the
126 * Neponset user's guide for the SA1111 IRR level.
127 */
128 irr = IRR ^ (IRR_ETHERNET | IRR_USAR);
129
130 if ((irr & (IRR_ETHERNET | IRR_USAR | IRR_SA1111)) == 0)
131 break;
132
133 /*
134 * Since there is no individual mask, we have to
135 * mask the parent IRQ. This is safe, since we'll
136 * recheck the register for any pending IRQs.
137 */
138 if (irr & (IRR_ETHERNET | IRR_USAR)) {
139 desc->irq_data.chip->irq_mask(&desc->irq_data);
140
141 /*
142 * Ack the interrupt now to prevent re-entering
143 * this neponset handler. Again, this is safe
144 * since we'll check the IRR register prior to
145 * leaving.
146 */
147 desc->irq_data.chip->irq_ack(&desc->irq_data);
148
Russell Kingced8d212012-01-24 22:22:18 +0000149 if (irr & IRR_ETHERNET)
150 generic_handle_irq(d->irq_base + NEP_IRQ_SMC91X);
Russell King92e617d2012-01-24 22:13:00 +0000151
Russell Kingced8d212012-01-24 22:22:18 +0000152 if (irr & IRR_USAR)
153 generic_handle_irq(d->irq_base + NEP_IRQ_USAR);
Russell King92e617d2012-01-24 22:13:00 +0000154
155 desc->irq_data.chip->irq_unmask(&desc->irq_data);
156 }
157
Russell Kingced8d212012-01-24 22:22:18 +0000158 if (irr & IRR_SA1111)
159 generic_handle_irq(d->irq_base + NEP_IRQ_SA1111);
Russell King92e617d2012-01-24 22:13:00 +0000160 }
161}
162
Russell Kingced8d212012-01-24 22:22:18 +0000163/* Yes, we really do not have any kind of masking or unmasking */
Russell King71045522012-01-16 00:17:41 +0000164static void nochip_noop(struct irq_data *irq)
165{
166}
167
168static struct irq_chip nochip = {
169 .name = "neponset",
170 .irq_ack = nochip_noop,
171 .irq_mask = nochip_noop,
172 .irq_unmask = nochip_noop,
173};
174
Russell King92e617d2012-01-24 22:13:00 +0000175static struct sa1111_platform_data sa1111_info = {
176 .irq_base = IRQ_BOARD_END,
177};
178
Russell Kingcdea4602007-05-30 17:48:45 +0100179static int __devinit neponset_probe(struct platform_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700180{
Russell Kingae14c2e2012-01-24 22:10:02 +0000181 struct neponset_drvdata *d;
Russell Kingced8d212012-01-24 22:22:18 +0000182 struct resource sa1111_resources[] = {
183 DEFINE_RES_MEM(0x40000000, SZ_8K),
184 { .flags = IORESOURCE_IRQ },
185 };
Russell King9590e892012-01-24 22:36:47 +0000186 struct platform_device_info sa1111_devinfo = {
187 .parent = &dev->dev,
188 .name = "sa1111",
189 .id = 0,
190 .res = sa1111_resources,
191 .num_res = ARRAY_SIZE(sa1111_resources),
192 .data = &sa1111_info,
193 .size_data = sizeof(sa1111_info),
194 .dma_mask = 0xffffffffUL,
195 };
Russell Kingced8d212012-01-24 22:22:18 +0000196 struct resource smc91x_resources[] = {
197 DEFINE_RES_MEM_NAMED(SA1100_CS3_PHYS,
198 0x02000000, "smc91x-regs"),
199 DEFINE_RES_MEM_NAMED(SA1100_CS3_PHYS + 0x02000000,
200 0x02000000, "smc91x-attrib"),
201 { .flags = IORESOURCE_IRQ },
202 };
Russell King9590e892012-01-24 22:36:47 +0000203 struct platform_device_info smc91x_devinfo = {
204 .parent = &dev->dev,
205 .name = "smc91x",
206 .id = 0,
207 .res = smc91x_resources,
208 .num_res = ARRAY_SIZE(smc91x_resources),
209 };
Russell Kingae14c2e2012-01-24 22:10:02 +0000210 int ret;
211
212 d = kzalloc(sizeof(*d), GFP_KERNEL);
213 if (!d) {
214 ret = -ENOMEM;
215 goto err_alloc;
216 }
217
Russell Kingced8d212012-01-24 22:22:18 +0000218 ret = irq_alloc_descs(-1, IRQ_BOARD_START, NEP_IRQ_NR, -1);
219 if (ret <= 0) {
220 dev_err(&dev->dev, "unable to allocate %u irqs: %d\n",
221 NEP_IRQ_NR, ret);
222 if (ret == 0)
223 ret = -ENOMEM;
224 goto err_irq_alloc;
225 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700226
Russell Kingced8d212012-01-24 22:22:18 +0000227 d->irq_base = ret;
228
229 irq_set_chip_and_handler(d->irq_base + NEP_IRQ_SMC91X, &nochip,
230 handle_simple_irq);
231 set_irq_flags(d->irq_base + NEP_IRQ_SMC91X, IRQF_VALID | IRQF_PROBE);
232 irq_set_chip_and_handler(d->irq_base + NEP_IRQ_USAR, &nochip,
233 handle_simple_irq);
234 set_irq_flags(d->irq_base + NEP_IRQ_USAR, IRQF_VALID | IRQF_PROBE);
235 irq_set_chip(d->irq_base + NEP_IRQ_SA1111, &nochip);
236
Thomas Gleixner6845664a2011-03-24 13:25:22 +0100237 irq_set_irq_type(IRQ_GPIO25, IRQ_TYPE_EDGE_RISING);
Russell Kingced8d212012-01-24 22:22:18 +0000238 irq_set_handler_data(IRQ_GPIO25, d);
Thomas Gleixner6845664a2011-03-24 13:25:22 +0100239 irq_set_chained_handler(IRQ_GPIO25, neponset_irq_handler);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700240
241 /*
Russell Kingced8d212012-01-24 22:22:18 +0000242 * We would set IRQ_GPIO25 to be a wake-up IRQ, but unfortunately
243 * something on the Neponset activates this IRQ on sleep (eth?)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700244 */
245#if 0
246 enable_irq_wake(IRQ_GPIO25);
247#endif
248
Russell Kingced8d212012-01-24 22:22:18 +0000249 dev_info(&dev->dev, "Neponset daughter board, providing IRQ%u-%u\n",
250 d->irq_base, d->irq_base + NEP_IRQ_NR - 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700251
Russell Kingced8d212012-01-24 22:22:18 +0000252 sa1100_register_uart_fns(&neponset_port_fns);
253
254 /* Disable GPIO 0/1 drivers so the buttons work on the Assabet */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700255 NCR_0 = NCR_GP01_OFF;
256
Russell Kingced8d212012-01-24 22:22:18 +0000257 sa1111_resources[1].start = d->irq_base + NEP_IRQ_SA1111;
258 sa1111_resources[1].end = d->irq_base + NEP_IRQ_SA1111;
Russell King9590e892012-01-24 22:36:47 +0000259 d->sa1111 = platform_device_register_full(&sa1111_devinfo);
Russell Kingced8d212012-01-24 22:22:18 +0000260
261 smc91x_resources[2].start = d->irq_base + NEP_IRQ_SMC91X;
262 smc91x_resources[2].end = d->irq_base + NEP_IRQ_SMC91X;
Russell King9590e892012-01-24 22:36:47 +0000263 d->smc91x = platform_device_register_full(&smc91x_devinfo);
264
Russell Kingae14c2e2012-01-24 22:10:02 +0000265 platform_set_drvdata(dev, d);
266
267 return 0;
268
Russell Kingced8d212012-01-24 22:22:18 +0000269 err_irq_alloc:
270 kfree(d);
Russell Kingae14c2e2012-01-24 22:10:02 +0000271 err_alloc:
272 return ret;
273}
274
275static int __devexit neponset_remove(struct platform_device *dev)
276{
277 struct neponset_drvdata *d = platform_get_drvdata(dev);
278
Russell King9590e892012-01-24 22:36:47 +0000279 if (!IS_ERR(d->sa1111))
280 platform_device_unregister(d->sa1111);
281 if (!IS_ERR(d->smc91x))
282 platform_device_unregister(d->smc91x);
Russell Kingae14c2e2012-01-24 22:10:02 +0000283 irq_set_chained_handler(IRQ_GPIO25, NULL);
Russell Kingced8d212012-01-24 22:22:18 +0000284 irq_free_descs(d->irq_base, NEP_IRQ_NR);
Russell Kingae14c2e2012-01-24 22:10:02 +0000285 kfree(d);
286
Linus Torvalds1da177e2005-04-16 15:20:36 -0700287 return 0;
288}
289
290#ifdef CONFIG_PM
Russell King3ae5eae2005-11-09 22:32:44 +0000291static int neponset_suspend(struct platform_device *dev, pm_message_t state)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700292{
Russell Kingae14c2e2012-01-24 22:10:02 +0000293 struct neponset_drvdata *d = platform_get_drvdata(dev);
294
295 d->ncr0 = NCR_0;
296 d->mdm_ctl_0 = MDM_CTL_0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700297
298 return 0;
299}
300
Russell King3ae5eae2005-11-09 22:32:44 +0000301static int neponset_resume(struct platform_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700302{
Russell Kingae14c2e2012-01-24 22:10:02 +0000303 struct neponset_drvdata *d = platform_get_drvdata(dev);
304
305 NCR_0 = d->ncr0;
306 MDM_CTL_0 = d->mdm_ctl_0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700307
308 return 0;
309}
310
311#else
312#define neponset_suspend NULL
313#define neponset_resume NULL
314#endif
315
Russell King3ae5eae2005-11-09 22:32:44 +0000316static struct platform_driver neponset_device_driver = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700317 .probe = neponset_probe,
Russell Kingae14c2e2012-01-24 22:10:02 +0000318 .remove = __devexit_p(neponset_remove),
Linus Torvalds1da177e2005-04-16 15:20:36 -0700319 .suspend = neponset_suspend,
320 .resume = neponset_resume,
Russell King3ae5eae2005-11-09 22:32:44 +0000321 .driver = {
322 .name = "neponset",
Russell King398e58d2012-01-24 23:33:28 +0000323 .owner = THIS_MODULE,
Russell King3ae5eae2005-11-09 22:32:44 +0000324 },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700325};
326
327static struct resource neponset_resources[] = {
Russell Kinga1810992012-01-12 10:25:29 +0000328 [0] = DEFINE_RES_MEM(0x10000000, 0x08000000),
Linus Torvalds1da177e2005-04-16 15:20:36 -0700329};
330
331static struct platform_device neponset_device = {
332 .name = "neponset",
333 .id = 0,
334 .num_resources = ARRAY_SIZE(neponset_resources),
335 .resource = neponset_resources,
336};
337
Russell Kingcdcb81f2007-07-20 10:32:46 +0100338extern void sa1110_mb_disable(void);
339
Linus Torvalds1da177e2005-04-16 15:20:36 -0700340static int __init neponset_init(void)
341{
Russell King3ae5eae2005-11-09 22:32:44 +0000342 platform_driver_register(&neponset_device_driver);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700343
344 /*
345 * The Neponset is only present on the Assabet machine type.
346 */
347 if (!machine_is_assabet())
348 return -ENODEV;
349
350 /*
351 * Ensure that the memory bus request/grant signals are setup,
352 * and the grant is held in its inactive state, whether or not
353 * we actually have a Neponset attached.
354 */
355 sa1110_mb_disable();
356
357 if (!machine_has_neponset()) {
358 printk(KERN_DEBUG "Neponset expansion board not present\n");
359 return -ENODEV;
360 }
361
362 if (WHOAMI != 0x11) {
363 printk(KERN_WARNING "Neponset board detected, but "
364 "wrong ID: %02x\n", WHOAMI);
365 return -ENODEV;
366 }
367
Russell King9590e892012-01-24 22:36:47 +0000368 return platform_device_register(&neponset_device);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700369}
370
371subsys_initcall(neponset_init);
372
373static struct map_desc neponset_io_desc[] __initdata = {
Deepak Saxena92519d82005-10-28 15:19:04 +0100374 { /* System Registers */
375 .virtual = 0xf3000000,
376 .pfn = __phys_to_pfn(0x10000000),
377 .length = SZ_1M,
378 .type = MT_DEVICE
379 }, { /* SA-1111 */
380 .virtual = 0xf4000000,
381 .pfn = __phys_to_pfn(0x40000000),
382 .length = SZ_1M,
383 .type = MT_DEVICE
384 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700385};
386
387void __init neponset_map_io(void)
388{
389 iotable_init(neponset_io_desc, ARRAY_SIZE(neponset_io_desc));
390}