Import 2.3.12pre2
[davej-history.git] / drivers / parport / parport_arc.c
blob8cba7a630bef238fe6629822769f3559382c05d2
1 /* Low-level parallel port routines for Archimedes onboard hardware
3 * Author: Phil Blundell <Philip.Blundell@pobox.com>
4 */
6 /* This driver is for the parallel port hardware found on Acorn's old
7 * range of Archimedes machines. The A5000 and newer systems have PC-style
8 * I/O hardware and should use the parport_pc driver instead.
10 * The Acorn printer port hardware is very simple. There is a single 8-bit
11 * write-only latch for the data port and control/status bits are handled
12 * with various auxilliary input and output lines. The port is not
13 * bidirectional, does not support any modes other than SPP, and has only
14 * a subset of the standard printer control lines connected.
17 #include <linux/threads.h>
18 #include <linux/delay.h>
19 #include <linux/errno.h>
20 #include <linux/interrupt.h>
21 #include <linux/ioport.h>
22 #include <linux/kernel.h>
23 #include <linux/malloc.h>
24 #include <linux/parport.h>
26 #include <asm/ptrace.h>
27 #include <asm/io.h>
28 #include <asm/arch/oldlatches.h>
29 #include <asm/arch/irqs.h>
31 #define DATA_ADDRESS 0x3350010
33 /* This is equivalent to the above and only used for request_region. */
34 #define PORT_BASE 0x80000000 | ((DATA_ADDRESS - IO_BASE) >> 2)
36 /* The hardware can't read from the data latch, so we must use a soft
37 copy. */
38 static unsigned char data_copy;
40 /* These are pretty simple. We know the irq is never shared and the
41 kernel does all the magic that's required. */
42 static void arc_enable_irq(struct parport *p)
44 enable_irq(p->irq);
47 static void arc_disable_irq(struct parport *p)
49 disable_irq(p->irq);
52 static void arc_interrupt(int irq, void *dev_id, struct pt_regs *regs)
54 parport_generic_irq(irq, (struct parport *) dev_id, regs);
57 static void arc_write_data(struct parport *p, unsigned char data)
59 data_copy = data;
60 outb_t(data, DATA_LATCH);
63 static unsigned char arc_read_data(struct parport *p)
65 return data_copy;
68 static void arc_inc_use_count(void)
70 #ifdef MODULE
71 MOD_INC_USE_COUNT;
72 #endif
75 static void arc_dec_use_count(void)
77 #ifdef MODULE
78 MOD_DEC_USE_COUNT;
79 #endif
82 static void arc_fill_inode(struct inode *inode, int fill)
84 #ifdef MODULE
85 if (fill)
86 MOD_INC_USE_COUNT;
87 else
88 MOD_DEC_USE_COUNT;
89 #endif
92 static struct parport_operations parport_arc_ops =
94 arc_write_data,
95 arc_read_data,
97 arc_write_control,
98 arc_read_control,
99 arc_frob_control,
101 arc_read_status,
103 arc_enable_irq,
104 arc_disable_irq,
106 arc_data_forward,
107 arc_data_reverse,
109 arc_interrupt,
111 arc_init_state,
112 arc_save_state,
113 arc_restore_state,
115 arc_inc_use_count,
116 arc_dec_use_count,
117 arc_fill_inode,
119 parport_ieee1284_epp_write_data,
120 parport_ieee1284_epp_read_data,
121 parport_ieee1284_epp_write_addr,
122 parport_ieee1284_epp_read_addr,
124 parport_ieee1284_ecp_write_data,
125 parport_ieee1284_ecp_read_data,
126 parport_ieee1284_ecp_write_addr,
128 parport_ieee1284_write_compat,
129 parport_ieee1284_read_nibble,
130 parport_ieee1284_read_byte,
133 /* --- Initialisation code -------------------------------- */
135 int parport_arc_init(void)
137 /* Archimedes hardware provides only one port, at a fixed address */
138 struct parport *p;
140 if (check_region(PORT_BASE, 1))
141 return 0;
143 p = parport_register_port (PORT_BASE, IRQ_PRINTERACK,
144 PARPORT_DMA_NONE, &parport_arc_ops);
146 if (!p)
147 return 0;
149 p->modes = PARPORT_MODE_ARCSPP;
150 p->size = 1;
152 printk(KERN_INFO "%s: Archimedes on-board port, using irq %d\n",
153 p->irq);
154 parport_proc_register(p);
156 /* Tell the high-level drivers about the port. */
157 parport_announce_port (p);
159 return 1;