allow coexistance of N build and AC build.
[tomato.git] / release / src-rt-6.x / linux / linux-2.6 / drivers / parport / parport_sunbpp.c
blobd27019c2f860ab3a275575cc149687621b04663e
1 /* parport_sunbpp.c: Parallel-port routines for SBUS
2 *
3 * Author: Derrick J. Brashear <shadow@dementia.org>
5 * based on work by:
6 * Phil Blundell <philb@gnu.org>
7 * Tim Waugh <tim@cyberelk.demon.co.uk>
8 * Jose Renau <renau@acm.org>
9 * David Campbell <campbell@tirian.che.curtin.edu.au>
10 * Grant Guenther <grant@torque.net>
11 * Eddie C. Dost <ecd@skynet.be>
12 * Stephen Williams (steve@icarus.com)
13 * Gus Baldauf (gbaldauf@ix.netcom.com)
14 * Peter Zaitcev
15 * Tom Dyas
17 * Updated to new SBUS device framework: David S. Miller <davem@davemloft.net>
21 #include <linux/string.h>
22 #include <linux/module.h>
23 #include <linux/delay.h>
24 #include <linux/errno.h>
25 #include <linux/ioport.h>
26 #include <linux/kernel.h>
27 #include <linux/slab.h>
28 #include <linux/init.h>
30 #include <linux/parport.h>
32 #include <asm/ptrace.h>
33 #include <linux/interrupt.h>
35 #include <asm/io.h>
36 #include <asm/oplib.h> /* OpenProm Library */
37 #include <asm/sbus.h>
38 #include <asm/dma.h> /* BPP uses LSI 64854 for DMA */
39 #include <asm/irq.h>
40 #include <asm/sunbpp.h>
42 #undef __SUNBPP_DEBUG
43 #ifdef __SUNBPP_DEBUG
44 #define dprintk(x) printk x
45 #else
46 #define dprintk(x)
47 #endif
49 static irqreturn_t parport_sunbpp_interrupt(int irq, void *dev_id)
51 parport_generic_irq(irq, (struct parport *) dev_id);
52 return IRQ_HANDLED;
55 static void parport_sunbpp_disable_irq(struct parport *p)
57 struct bpp_regs __iomem *regs = (struct bpp_regs __iomem *)p->base;
58 u32 tmp;
60 tmp = sbus_readl(&regs->p_csr);
61 tmp &= ~DMA_INT_ENAB;
62 sbus_writel(tmp, &regs->p_csr);
65 static void parport_sunbpp_enable_irq(struct parport *p)
67 struct bpp_regs __iomem *regs = (struct bpp_regs __iomem *)p->base;
68 u32 tmp;
70 tmp = sbus_readl(&regs->p_csr);
71 tmp |= DMA_INT_ENAB;
72 sbus_writel(tmp, &regs->p_csr);
75 static void parport_sunbpp_write_data(struct parport *p, unsigned char d)
77 struct bpp_regs __iomem *regs = (struct bpp_regs __iomem *)p->base;
79 sbus_writeb(d, &regs->p_dr);
80 dprintk((KERN_DEBUG "wrote 0x%x\n", d));
83 static unsigned char parport_sunbpp_read_data(struct parport *p)
85 struct bpp_regs __iomem *regs = (struct bpp_regs __iomem *)p->base;
87 return sbus_readb(&regs->p_dr);
90 #if 0
91 static void control_pc_to_sunbpp(struct parport *p, unsigned char status)
93 struct bpp_regs __iomem *regs = (struct bpp_regs __iomem *)p->base;
94 unsigned char value_tcr = sbus_readb(&regs->p_tcr);
95 unsigned char value_or = sbus_readb(&regs->p_or);
97 if (status & PARPORT_CONTROL_STROBE)
98 value_tcr |= P_TCR_DS;
99 if (status & PARPORT_CONTROL_AUTOFD)
100 value_or |= P_OR_AFXN;
101 if (status & PARPORT_CONTROL_INIT)
102 value_or |= P_OR_INIT;
103 if (status & PARPORT_CONTROL_SELECT)
104 value_or |= P_OR_SLCT_IN;
106 sbus_writeb(value_or, &regs->p_or);
107 sbus_writeb(value_tcr, &regs->p_tcr);
109 #endif
111 static unsigned char status_sunbpp_to_pc(struct parport *p)
113 struct bpp_regs __iomem *regs = (struct bpp_regs __iomem *)p->base;
114 unsigned char bits = 0;
115 unsigned char value_tcr = sbus_readb(&regs->p_tcr);
116 unsigned char value_ir = sbus_readb(&regs->p_ir);
118 if (!(value_ir & P_IR_ERR))
119 bits |= PARPORT_STATUS_ERROR;
120 if (!(value_ir & P_IR_SLCT))
121 bits |= PARPORT_STATUS_SELECT;
122 if (!(value_ir & P_IR_PE))
123 bits |= PARPORT_STATUS_PAPEROUT;
124 if (value_tcr & P_TCR_ACK)
125 bits |= PARPORT_STATUS_ACK;
126 if (!(value_tcr & P_TCR_BUSY))
127 bits |= PARPORT_STATUS_BUSY;
129 dprintk((KERN_DEBUG "tcr 0x%x ir 0x%x\n", value_tcr, value_ir));
130 dprintk((KERN_DEBUG "read status 0x%x\n", bits));
131 return bits;
134 static unsigned char control_sunbpp_to_pc(struct parport *p)
136 struct bpp_regs __iomem *regs = (struct bpp_regs __iomem *)p->base;
137 unsigned char bits = 0;
138 unsigned char value_tcr = sbus_readb(&regs->p_tcr);
139 unsigned char value_or = sbus_readb(&regs->p_or);
141 if (!(value_tcr & P_TCR_DS))
142 bits |= PARPORT_CONTROL_STROBE;
143 if (!(value_or & P_OR_AFXN))
144 bits |= PARPORT_CONTROL_AUTOFD;
145 if (!(value_or & P_OR_INIT))
146 bits |= PARPORT_CONTROL_INIT;
147 if (value_or & P_OR_SLCT_IN)
148 bits |= PARPORT_CONTROL_SELECT;
150 dprintk((KERN_DEBUG "tcr 0x%x or 0x%x\n", value_tcr, value_or));
151 dprintk((KERN_DEBUG "read control 0x%x\n", bits));
152 return bits;
155 static unsigned char parport_sunbpp_read_control(struct parport *p)
157 return control_sunbpp_to_pc(p);
160 static unsigned char parport_sunbpp_frob_control(struct parport *p,
161 unsigned char mask,
162 unsigned char val)
164 struct bpp_regs __iomem *regs = (struct bpp_regs __iomem *)p->base;
165 unsigned char value_tcr = sbus_readb(&regs->p_tcr);
166 unsigned char value_or = sbus_readb(&regs->p_or);
168 dprintk((KERN_DEBUG "frob1: tcr 0x%x or 0x%x\n",
169 value_tcr, value_or));
170 if (mask & PARPORT_CONTROL_STROBE) {
171 if (val & PARPORT_CONTROL_STROBE) {
172 value_tcr &= ~P_TCR_DS;
173 } else {
174 value_tcr |= P_TCR_DS;
177 if (mask & PARPORT_CONTROL_AUTOFD) {
178 if (val & PARPORT_CONTROL_AUTOFD) {
179 value_or &= ~P_OR_AFXN;
180 } else {
181 value_or |= P_OR_AFXN;
184 if (mask & PARPORT_CONTROL_INIT) {
185 if (val & PARPORT_CONTROL_INIT) {
186 value_or &= ~P_OR_INIT;
187 } else {
188 value_or |= P_OR_INIT;
191 if (mask & PARPORT_CONTROL_SELECT) {
192 if (val & PARPORT_CONTROL_SELECT) {
193 value_or |= P_OR_SLCT_IN;
194 } else {
195 value_or &= ~P_OR_SLCT_IN;
199 sbus_writeb(value_or, &regs->p_or);
200 sbus_writeb(value_tcr, &regs->p_tcr);
201 dprintk((KERN_DEBUG "frob2: tcr 0x%x or 0x%x\n",
202 value_tcr, value_or));
203 return parport_sunbpp_read_control(p);
206 static void parport_sunbpp_write_control(struct parport *p, unsigned char d)
208 const unsigned char wm = (PARPORT_CONTROL_STROBE |
209 PARPORT_CONTROL_AUTOFD |
210 PARPORT_CONTROL_INIT |
211 PARPORT_CONTROL_SELECT);
213 parport_sunbpp_frob_control (p, wm, d & wm);
216 static unsigned char parport_sunbpp_read_status(struct parport *p)
218 return status_sunbpp_to_pc(p);
221 static void parport_sunbpp_data_forward (struct parport *p)
223 struct bpp_regs __iomem *regs = (struct bpp_regs __iomem *)p->base;
224 unsigned char value_tcr = sbus_readb(&regs->p_tcr);
226 dprintk((KERN_DEBUG "forward\n"));
227 value_tcr &= ~P_TCR_DIR;
228 sbus_writeb(value_tcr, &regs->p_tcr);
231 static void parport_sunbpp_data_reverse (struct parport *p)
233 struct bpp_regs __iomem *regs = (struct bpp_regs __iomem *)p->base;
234 u8 val = sbus_readb(&regs->p_tcr);
236 dprintk((KERN_DEBUG "reverse\n"));
237 val |= P_TCR_DIR;
238 sbus_writeb(val, &regs->p_tcr);
241 static void parport_sunbpp_init_state(struct pardevice *dev, struct parport_state *s)
243 s->u.pc.ctr = 0xc;
244 s->u.pc.ecr = 0x0;
247 static void parport_sunbpp_save_state(struct parport *p, struct parport_state *s)
249 s->u.pc.ctr = parport_sunbpp_read_control(p);
252 static void parport_sunbpp_restore_state(struct parport *p, struct parport_state *s)
254 parport_sunbpp_write_control(p, s->u.pc.ctr);
257 static struct parport_operations parport_sunbpp_ops =
259 .write_data = parport_sunbpp_write_data,
260 .read_data = parport_sunbpp_read_data,
262 .write_control = parport_sunbpp_write_control,
263 .read_control = parport_sunbpp_read_control,
264 .frob_control = parport_sunbpp_frob_control,
266 .read_status = parport_sunbpp_read_status,
268 .enable_irq = parport_sunbpp_enable_irq,
269 .disable_irq = parport_sunbpp_disable_irq,
271 .data_forward = parport_sunbpp_data_forward,
272 .data_reverse = parport_sunbpp_data_reverse,
274 .init_state = parport_sunbpp_init_state,
275 .save_state = parport_sunbpp_save_state,
276 .restore_state = parport_sunbpp_restore_state,
278 .epp_write_data = parport_ieee1284_epp_write_data,
279 .epp_read_data = parport_ieee1284_epp_read_data,
280 .epp_write_addr = parport_ieee1284_epp_write_addr,
281 .epp_read_addr = parport_ieee1284_epp_read_addr,
283 .ecp_write_data = parport_ieee1284_ecp_write_data,
284 .ecp_read_data = parport_ieee1284_ecp_read_data,
285 .ecp_write_addr = parport_ieee1284_ecp_write_addr,
287 .compat_write_data = parport_ieee1284_write_compat,
288 .nibble_read_data = parport_ieee1284_read_nibble,
289 .byte_read_data = parport_ieee1284_read_byte,
291 .owner = THIS_MODULE,
294 static int __devinit init_one_port(struct sbus_dev *sdev)
296 struct parport *p;
297 /* at least in theory there may be a "we don't dma" case */
298 struct parport_operations *ops;
299 void __iomem *base;
300 int irq, dma, err = 0, size;
301 struct bpp_regs __iomem *regs;
302 unsigned char value_tcr;
304 irq = sdev->irqs[0];
305 base = sbus_ioremap(&sdev->resource[0], 0,
306 sdev->reg_addrs[0].reg_size,
307 "sunbpp");
308 if (!base)
309 return -ENODEV;
311 size = sdev->reg_addrs[0].reg_size;
312 dma = PARPORT_DMA_NONE;
314 ops = kmalloc(sizeof(struct parport_operations), GFP_KERNEL);
315 if (!ops)
316 goto out_unmap;
318 memcpy (ops, &parport_sunbpp_ops, sizeof (struct parport_operations));
320 dprintk(("register_port\n"));
321 if (!(p = parport_register_port((unsigned long)base, irq, dma, ops)))
322 goto out_free_ops;
324 p->size = size;
325 p->dev = &sdev->ofdev.dev;
327 if ((err = request_irq(p->irq, parport_sunbpp_interrupt,
328 IRQF_SHARED, p->name, p)) != 0) {
329 goto out_put_port;
332 parport_sunbpp_enable_irq(p);
334 regs = (struct bpp_regs __iomem *)p->base;
336 value_tcr = sbus_readb(&regs->p_tcr);
337 value_tcr &= ~P_TCR_DIR;
338 sbus_writeb(value_tcr, &regs->p_tcr);
340 printk(KERN_INFO "%s: sunbpp at 0x%lx\n", p->name, p->base);
342 dev_set_drvdata(&sdev->ofdev.dev, p);
344 parport_announce_port(p);
346 return 0;
348 out_put_port:
349 parport_put_port(p);
351 out_free_ops:
352 kfree(ops);
354 out_unmap:
355 sbus_iounmap(base, size);
357 return err;
360 static int __devinit bpp_probe(struct of_device *dev, const struct of_device_id *match)
362 struct sbus_dev *sdev = to_sbus_device(&dev->dev);
364 return init_one_port(sdev);
367 static int __devexit bpp_remove(struct of_device *dev)
369 struct parport *p = dev_get_drvdata(&dev->dev);
370 struct parport_operations *ops = p->ops;
372 parport_remove_port(p);
374 if (p->irq != PARPORT_IRQ_NONE) {
375 parport_sunbpp_disable_irq(p);
376 free_irq(p->irq, p);
379 sbus_iounmap((void __iomem *) p->base, p->size);
380 parport_put_port(p);
381 kfree(ops);
383 dev_set_drvdata(&dev->dev, NULL);
385 return 0;
388 static struct of_device_id bpp_match[] = {
390 .name = "SUNW,bpp",
395 MODULE_DEVICE_TABLE(of, bpp_match);
397 static struct of_platform_driver bpp_sbus_driver = {
398 .name = "bpp",
399 .match_table = bpp_match,
400 .probe = bpp_probe,
401 .remove = __devexit_p(bpp_remove),
404 static int __init parport_sunbpp_init(void)
406 return of_register_driver(&bpp_sbus_driver, &sbus_bus_type);
409 static void __exit parport_sunbpp_exit(void)
411 of_unregister_driver(&bpp_sbus_driver);
414 MODULE_AUTHOR("Derrick J Brashear");
415 MODULE_DESCRIPTION("Parport Driver for Sparc bidirectional Port");
416 MODULE_SUPPORTED_DEVICE("Sparc Bidirectional Parallel Port");
417 MODULE_VERSION("2.0");
418 MODULE_LICENSE("GPL");
420 module_init(parport_sunbpp_init)
421 module_exit(parport_sunbpp_exit)