xref: /openbmc/linux/arch/arm/mach-sa1100/neponset.c (revision 374da9da)
1 /*
2  * linux/arch/arm/mach-sa1100/neponset.c
3  */
4 #include <linux/err.h>
5 #include <linux/init.h>
6 #include <linux/ioport.h>
7 #include <linux/irq.h>
8 #include <linux/kernel.h>
9 #include <linux/module.h>
10 #include <linux/platform_device.h>
11 #include <linux/pm.h>
12 #include <linux/serial_core.h>
13 #include <linux/slab.h>
14 
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>
20 
21 #include <mach/hardware.h>
22 #include <mach/assabet.h>
23 #include <mach/neponset.h>
24 
25 #define NEP_IRQ_SMC91X	0
26 #define NEP_IRQ_USAR	1
27 #define NEP_IRQ_SA1111	2
28 #define NEP_IRQ_NR	3
29 
30 #define WHOAMI		0x00
31 #define LEDS		0x10
32 #define SWPK		0x20
33 #define IRR		0x24
34 #define KP_Y_IN		0x80
35 #define KP_X_OUT	0x90
36 #define NCR_0		0xa0
37 #define MDM_CTL_0	0xb0
38 #define MDM_CTL_1	0xb4
39 #define AUD_CTL		0xc0
40 
41 #define IRR_ETHERNET	(1 << 0)
42 #define IRR_USAR	(1 << 1)
43 #define IRR_SA1111	(1 << 2)
44 
45 #define MDM_CTL0_RTS1	(1 << 0)
46 #define MDM_CTL0_DTR1	(1 << 1)
47 #define MDM_CTL0_RTS2	(1 << 2)
48 #define MDM_CTL0_DTR2	(1 << 3)
49 
50 #define MDM_CTL1_CTS1	(1 << 0)
51 #define MDM_CTL1_DSR1	(1 << 1)
52 #define MDM_CTL1_DCD1	(1 << 2)
53 #define MDM_CTL1_CTS2	(1 << 3)
54 #define MDM_CTL1_DSR2	(1 << 4)
55 #define MDM_CTL1_DCD2	(1 << 5)
56 
57 #define AUD_SEL_1341	(1 << 0)
58 #define AUD_MUTE_1341	(1 << 1)
59 
60 extern void sa1110_mb_disable(void);
61 
62 struct neponset_drvdata {
63 	void __iomem *base;
64 	struct platform_device *sa1111;
65 	struct platform_device *smc91x;
66 	unsigned irq_base;
67 #ifdef CONFIG_PM_SLEEP
68 	u32 ncr0;
69 	u32 mdm_ctl_0;
70 #endif
71 };
72 
73 static void __iomem *nep_base;
74 
75 void neponset_ncr_frob(unsigned int mask, unsigned int val)
76 {
77 	void __iomem *base = nep_base;
78 
79 	if (base) {
80 		unsigned long flags;
81 		unsigned v;
82 
83 		local_irq_save(flags);
84 		v = readb_relaxed(base + NCR_0);
85 		writeb_relaxed((v & ~mask) | val, base + NCR_0);
86 		local_irq_restore(flags);
87 	} else {
88 		WARN(1, "nep_base unset\n");
89 	}
90 }
91 
92 static void neponset_set_mctrl(struct uart_port *port, u_int mctrl)
93 {
94 	void __iomem *base = nep_base;
95 	u_int mdm_ctl0;
96 
97 	if (!base)
98 		return;
99 
100 	mdm_ctl0 = readb_relaxed(base + MDM_CTL_0);
101 	if (port->mapbase == _Ser1UTCR0) {
102 		if (mctrl & TIOCM_RTS)
103 			mdm_ctl0 &= ~MDM_CTL0_RTS2;
104 		else
105 			mdm_ctl0 |= MDM_CTL0_RTS2;
106 
107 		if (mctrl & TIOCM_DTR)
108 			mdm_ctl0 &= ~MDM_CTL0_DTR2;
109 		else
110 			mdm_ctl0 |= MDM_CTL0_DTR2;
111 	} else if (port->mapbase == _Ser3UTCR0) {
112 		if (mctrl & TIOCM_RTS)
113 			mdm_ctl0 &= ~MDM_CTL0_RTS1;
114 		else
115 			mdm_ctl0 |= MDM_CTL0_RTS1;
116 
117 		if (mctrl & TIOCM_DTR)
118 			mdm_ctl0 &= ~MDM_CTL0_DTR1;
119 		else
120 			mdm_ctl0 |= MDM_CTL0_DTR1;
121 	}
122 
123 	writeb_relaxed(mdm_ctl0, base + MDM_CTL_0);
124 }
125 
126 static u_int neponset_get_mctrl(struct uart_port *port)
127 {
128 	void __iomem *base = nep_base;
129 	u_int ret = TIOCM_CD | TIOCM_CTS | TIOCM_DSR;
130 	u_int mdm_ctl1;
131 
132 	if (!base)
133 		return ret;
134 
135 	mdm_ctl1 = readb_relaxed(base + MDM_CTL_1);
136 	if (port->mapbase == _Ser1UTCR0) {
137 		if (mdm_ctl1 & MDM_CTL1_DCD2)
138 			ret &= ~TIOCM_CD;
139 		if (mdm_ctl1 & MDM_CTL1_CTS2)
140 			ret &= ~TIOCM_CTS;
141 		if (mdm_ctl1 & MDM_CTL1_DSR2)
142 			ret &= ~TIOCM_DSR;
143 	} else if (port->mapbase == _Ser3UTCR0) {
144 		if (mdm_ctl1 & MDM_CTL1_DCD1)
145 			ret &= ~TIOCM_CD;
146 		if (mdm_ctl1 & MDM_CTL1_CTS1)
147 			ret &= ~TIOCM_CTS;
148 		if (mdm_ctl1 & MDM_CTL1_DSR1)
149 			ret &= ~TIOCM_DSR;
150 	}
151 
152 	return ret;
153 }
154 
155 static struct sa1100_port_fns neponset_port_fns __devinitdata = {
156 	.set_mctrl	= neponset_set_mctrl,
157 	.get_mctrl	= neponset_get_mctrl,
158 };
159 
160 /*
161  * Install handler for Neponset IRQ.  Note that we have to loop here
162  * since the ETHERNET and USAR IRQs are level based, and we need to
163  * ensure that the IRQ signal is deasserted before returning.  This
164  * is rather unfortunate.
165  */
166 static void neponset_irq_handler(unsigned int irq, struct irq_desc *desc)
167 {
168 	struct neponset_drvdata *d = irq_desc_get_handler_data(desc);
169 	unsigned int irr;
170 
171 	while (1) {
172 		/*
173 		 * Acknowledge the parent IRQ.
174 		 */
175 		desc->irq_data.chip->irq_ack(&desc->irq_data);
176 
177 		/*
178 		 * Read the interrupt reason register.  Let's have all
179 		 * active IRQ bits high.  Note: there is a typo in the
180 		 * Neponset user's guide for the SA1111 IRR level.
181 		 */
182 		irr = readb_relaxed(d->base + IRR);
183 		irr ^= IRR_ETHERNET | IRR_USAR;
184 
185 		if ((irr & (IRR_ETHERNET | IRR_USAR | IRR_SA1111)) == 0)
186 			break;
187 
188 		/*
189 		 * Since there is no individual mask, we have to
190 		 * mask the parent IRQ.  This is safe, since we'll
191 		 * recheck the register for any pending IRQs.
192 		 */
193 		if (irr & (IRR_ETHERNET | IRR_USAR)) {
194 			desc->irq_data.chip->irq_mask(&desc->irq_data);
195 
196 			/*
197 			 * Ack the interrupt now to prevent re-entering
198 			 * this neponset handler.  Again, this is safe
199 			 * since we'll check the IRR register prior to
200 			 * leaving.
201 			 */
202 			desc->irq_data.chip->irq_ack(&desc->irq_data);
203 
204 			if (irr & IRR_ETHERNET)
205 				generic_handle_irq(d->irq_base + NEP_IRQ_SMC91X);
206 
207 			if (irr & IRR_USAR)
208 				generic_handle_irq(d->irq_base + NEP_IRQ_USAR);
209 
210 			desc->irq_data.chip->irq_unmask(&desc->irq_data);
211 		}
212 
213 		if (irr & IRR_SA1111)
214 			generic_handle_irq(d->irq_base + NEP_IRQ_SA1111);
215 	}
216 }
217 
218 /* Yes, we really do not have any kind of masking or unmasking */
219 static void nochip_noop(struct irq_data *irq)
220 {
221 }
222 
223 static struct irq_chip nochip = {
224 	.name = "neponset",
225 	.irq_ack = nochip_noop,
226 	.irq_mask = nochip_noop,
227 	.irq_unmask = nochip_noop,
228 };
229 
230 static struct sa1111_platform_data sa1111_info = {
231 	.irq_base	= IRQ_BOARD_END,
232 	.disable_devs	= SA1111_DEVID_PS2_MSE,
233 };
234 
235 static int __devinit neponset_probe(struct platform_device *dev)
236 {
237 	struct neponset_drvdata *d;
238 	struct resource *nep_res, *sa1111_res, *smc91x_res;
239 	struct resource sa1111_resources[] = {
240 		DEFINE_RES_MEM(0x40000000, SZ_8K),
241 		{ .flags = IORESOURCE_IRQ },
242 	};
243 	struct platform_device_info sa1111_devinfo = {
244 		.parent = &dev->dev,
245 		.name = "sa1111",
246 		.id = 0,
247 		.res = sa1111_resources,
248 		.num_res = ARRAY_SIZE(sa1111_resources),
249 		.data = &sa1111_info,
250 		.size_data = sizeof(sa1111_info),
251 		.dma_mask = 0xffffffffUL,
252 	};
253 	struct resource smc91x_resources[] = {
254 		DEFINE_RES_MEM_NAMED(SA1100_CS3_PHYS,
255 			0x02000000, "smc91x-regs"),
256 		DEFINE_RES_MEM_NAMED(SA1100_CS3_PHYS + 0x02000000,
257 			0x02000000, "smc91x-attrib"),
258 		{ .flags = IORESOURCE_IRQ },
259 	};
260 	struct platform_device_info smc91x_devinfo = {
261 		.parent = &dev->dev,
262 		.name = "smc91x",
263 		.id = 0,
264 		.res = smc91x_resources,
265 		.num_res = ARRAY_SIZE(smc91x_resources),
266 	};
267 	int ret, irq;
268 
269 	if (nep_base)
270 		return -EBUSY;
271 
272 	irq = ret = platform_get_irq(dev, 0);
273 	if (ret < 0)
274 		goto err_alloc;
275 
276 	nep_res = platform_get_resource(dev, IORESOURCE_MEM, 0);
277 	smc91x_res = platform_get_resource(dev, IORESOURCE_MEM, 1);
278 	sa1111_res = platform_get_resource(dev, IORESOURCE_MEM, 2);
279 	if (!nep_res || !smc91x_res || !sa1111_res) {
280 		ret = -ENXIO;
281 		goto err_alloc;
282 	}
283 
284 	d = kzalloc(sizeof(*d), GFP_KERNEL);
285 	if (!d) {
286 		ret = -ENOMEM;
287 		goto err_alloc;
288 	}
289 
290 	d->base = ioremap(nep_res->start, SZ_4K);
291 	if (!d->base) {
292 		ret = -ENOMEM;
293 		goto err_ioremap;
294 	}
295 
296 	if (readb_relaxed(d->base + WHOAMI) != 0x11) {
297 		dev_warn(&dev->dev, "Neponset board detected, but wrong ID: %02x\n",
298 			 readb_relaxed(d->base + WHOAMI));
299 		ret = -ENODEV;
300 		goto err_id;
301 	}
302 
303 	ret = irq_alloc_descs(-1, IRQ_BOARD_START, NEP_IRQ_NR, -1);
304 	if (ret <= 0) {
305 		dev_err(&dev->dev, "unable to allocate %u irqs: %d\n",
306 			NEP_IRQ_NR, ret);
307 		if (ret == 0)
308 			ret = -ENOMEM;
309 		goto err_irq_alloc;
310 	}
311 
312 	d->irq_base = ret;
313 
314 	irq_set_chip_and_handler(d->irq_base + NEP_IRQ_SMC91X, &nochip,
315 		handle_simple_irq);
316 	set_irq_flags(d->irq_base + NEP_IRQ_SMC91X, IRQF_VALID | IRQF_PROBE);
317 	irq_set_chip_and_handler(d->irq_base + NEP_IRQ_USAR, &nochip,
318 		handle_simple_irq);
319 	set_irq_flags(d->irq_base + NEP_IRQ_USAR, IRQF_VALID | IRQF_PROBE);
320 	irq_set_chip(d->irq_base + NEP_IRQ_SA1111, &nochip);
321 
322 	irq_set_irq_type(irq, IRQ_TYPE_EDGE_RISING);
323 	irq_set_handler_data(irq, d);
324 	irq_set_chained_handler(irq, neponset_irq_handler);
325 
326 	/*
327 	 * We would set IRQ_GPIO25 to be a wake-up IRQ, but unfortunately
328 	 * something on the Neponset activates this IRQ on sleep (eth?)
329 	 */
330 #if 0
331 	enable_irq_wake(irq);
332 #endif
333 
334 	dev_info(&dev->dev, "Neponset daughter board, providing IRQ%u-%u\n",
335 		 d->irq_base, d->irq_base + NEP_IRQ_NR - 1);
336 	nep_base = d->base;
337 
338 	sa1100_register_uart_fns(&neponset_port_fns);
339 
340 	/* Ensure that the memory bus request/grant signals are setup */
341 	sa1110_mb_disable();
342 
343 	/* Disable GPIO 0/1 drivers so the buttons work on the Assabet */
344 	writeb_relaxed(NCR_GP01_OFF, d->base + NCR_0);
345 
346 	sa1111_resources[0].parent = sa1111_res;
347 	sa1111_resources[1].start = d->irq_base + NEP_IRQ_SA1111;
348 	sa1111_resources[1].end = d->irq_base + NEP_IRQ_SA1111;
349 	d->sa1111 = platform_device_register_full(&sa1111_devinfo);
350 
351 	smc91x_resources[0].parent = smc91x_res;
352 	smc91x_resources[1].parent = smc91x_res;
353 	smc91x_resources[2].start = d->irq_base + NEP_IRQ_SMC91X;
354 	smc91x_resources[2].end = d->irq_base + NEP_IRQ_SMC91X;
355 	d->smc91x = platform_device_register_full(&smc91x_devinfo);
356 
357 	platform_set_drvdata(dev, d);
358 
359 	return 0;
360 
361  err_irq_alloc:
362  err_id:
363 	iounmap(d->base);
364  err_ioremap:
365 	kfree(d);
366  err_alloc:
367 	return ret;
368 }
369 
370 static int __devexit neponset_remove(struct platform_device *dev)
371 {
372 	struct neponset_drvdata *d = platform_get_drvdata(dev);
373 	int irq = platform_get_irq(dev, 0);
374 
375 	if (!IS_ERR(d->sa1111))
376 		platform_device_unregister(d->sa1111);
377 	if (!IS_ERR(d->smc91x))
378 		platform_device_unregister(d->smc91x);
379 	irq_set_chained_handler(irq, NULL);
380 	irq_free_descs(d->irq_base, NEP_IRQ_NR);
381 	nep_base = NULL;
382 	iounmap(d->base);
383 	kfree(d);
384 
385 	return 0;
386 }
387 
388 #ifdef CONFIG_PM_SLEEP
389 static int neponset_suspend(struct device *dev)
390 {
391 	struct neponset_drvdata *d = dev_get_drvdata(dev);
392 
393 	d->ncr0 = readb_relaxed(d->base + NCR_0);
394 	d->mdm_ctl_0 = readb_relaxed(d->base + MDM_CTL_0);
395 
396 	return 0;
397 }
398 
399 static int neponset_resume(struct device *dev)
400 {
401 	struct neponset_drvdata *d = dev_get_drvdata(dev);
402 
403 	writeb_relaxed(d->ncr0, d->base + NCR_0);
404 	writeb_relaxed(d->mdm_ctl_0, d->base + MDM_CTL_0);
405 
406 	return 0;
407 }
408 
409 static const struct dev_pm_ops neponset_pm_ops = {
410 	.suspend_noirq = neponset_suspend,
411 	.resume_noirq = neponset_resume,
412 	.freeze_noirq = neponset_suspend,
413 	.restore_noirq = neponset_resume,
414 };
415 #define PM_OPS &neponset_pm_ops
416 #else
417 #define PM_OPS NULL
418 #endif
419 
420 static struct platform_driver neponset_device_driver = {
421 	.probe		= neponset_probe,
422 	.remove		= __devexit_p(neponset_remove),
423 	.driver		= {
424 		.name	= "neponset",
425 		.owner	= THIS_MODULE,
426 		.pm	= PM_OPS,
427 	},
428 };
429 
430 static int __init neponset_init(void)
431 {
432 	return platform_driver_register(&neponset_device_driver);
433 }
434 
435 subsys_initcall(neponset_init);
436