RT-AC66 3.0.0.4.374.130 core
[tomato.git] / release / src-rt-6.x / linux / linux-2.6 / include / asm-sparc64 / parport.h
blob23cc63f049a896769f4ed62e8d6ef8044f57d817
1 /* $Id: parport.h,v 1.11 2001/05/11 07:54:24 davem Exp $
2 * parport.h: sparc64 specific parport initialization and dma.
4 * Copyright (C) 1999 Eddie C. Dost (ecd@skynet.be)
5 */
7 #ifndef _ASM_SPARC64_PARPORT_H
8 #define _ASM_SPARC64_PARPORT_H 1
10 #include <asm/ebus.h>
11 #include <asm/isa.h>
12 #include <asm/ns87303.h>
14 #define PARPORT_PC_MAX_PORTS PARPORT_MAX
17 * While sparc64 doesn't have an ISA DMA API, we provide something that looks
18 * close enough to make parport_pc happy
20 #define HAS_DMA
22 static DEFINE_SPINLOCK(dma_spin_lock);
24 #define claim_dma_lock() \
25 ({ unsigned long flags; \
26 spin_lock_irqsave(&dma_spin_lock, flags); \
27 flags; \
30 #define release_dma_lock(__flags) \
31 spin_unlock_irqrestore(&dma_spin_lock, __flags);
33 static struct sparc_ebus_info {
34 struct ebus_dma_info info;
35 unsigned int addr;
36 unsigned int count;
37 int lock;
38 } sparc_ebus_dmas[PARPORT_PC_MAX_PORTS];
40 static __inline__ int request_dma(unsigned int dmanr, const char *device_id)
42 if (dmanr >= PARPORT_PC_MAX_PORTS)
43 return -EINVAL;
44 if (xchg(&sparc_ebus_dmas[dmanr].lock, 1) != 0)
45 return -EBUSY;
46 return 0;
49 static __inline__ void free_dma(unsigned int dmanr)
51 if (dmanr >= PARPORT_PC_MAX_PORTS) {
52 printk(KERN_WARNING "Trying to free DMA%d\n", dmanr);
53 return;
55 if (xchg(&sparc_ebus_dmas[dmanr].lock, 0) == 0) {
56 printk(KERN_WARNING "Trying to free free DMA%d\n", dmanr);
57 return;
61 static __inline__ void enable_dma(unsigned int dmanr)
63 ebus_dma_enable(&sparc_ebus_dmas[dmanr].info, 1);
65 if (ebus_dma_request(&sparc_ebus_dmas[dmanr].info,
66 sparc_ebus_dmas[dmanr].addr,
67 sparc_ebus_dmas[dmanr].count))
68 BUG();
71 static __inline__ void disable_dma(unsigned int dmanr)
73 ebus_dma_enable(&sparc_ebus_dmas[dmanr].info, 0);
76 static __inline__ void clear_dma_ff(unsigned int dmanr)
78 /* nothing */
81 static __inline__ void set_dma_mode(unsigned int dmanr, char mode)
83 ebus_dma_prepare(&sparc_ebus_dmas[dmanr].info, (mode != DMA_MODE_WRITE));
86 static __inline__ void set_dma_addr(unsigned int dmanr, unsigned int addr)
88 sparc_ebus_dmas[dmanr].addr = addr;
91 static __inline__ void set_dma_count(unsigned int dmanr, unsigned int count)
93 sparc_ebus_dmas[dmanr].count = count;
96 static __inline__ unsigned int get_dma_residue(unsigned int dmanr)
98 return ebus_dma_residue(&sparc_ebus_dmas[dmanr].info);
101 static int ebus_ecpp_p(struct linux_ebus_device *edev)
103 if (!strcmp(edev->prom_node->name, "ecpp"))
104 return 1;
105 if (!strcmp(edev->prom_node->name, "parallel")) {
106 const char *compat;
108 compat = of_get_property(edev->prom_node,
109 "compatible", NULL);
110 if (compat &&
111 (!strcmp(compat, "ecpp") ||
112 !strcmp(compat, "ns87317-ecpp") ||
113 !strcmp(compat + 13, "ecpp")))
114 return 1;
116 return 0;
119 static int parport_isa_probe(int count)
121 struct sparc_isa_bridge *isa_br;
122 struct sparc_isa_device *isa_dev;
124 for_each_isa(isa_br) {
125 for_each_isadev(isa_dev, isa_br) {
126 struct sparc_isa_device *child;
127 unsigned long base;
129 if (strcmp(isa_dev->prom_node->name, "dma"))
130 continue;
132 child = isa_dev->child;
133 while (child) {
134 if (!strcmp(child->prom_node->name, "parallel"))
135 break;
136 child = child->next;
138 if (!child)
139 continue;
141 base = child->resource.start;
143 /* No DMA, see commentary in
144 * asm-sparc64/floppy.h:isa_floppy_init()
146 if (parport_pc_probe_port(base, base + 0x400,
147 child->irq, PARPORT_DMA_NOFIFO,
148 &child->bus->self->dev))
149 count++;
153 return count;
156 static int parport_pc_find_nonpci_ports (int autoirq, int autodma)
158 struct linux_ebus *ebus;
159 struct linux_ebus_device *edev;
160 int count = 0;
162 for_each_ebus(ebus) {
163 for_each_ebusdev(edev, ebus) {
164 if (ebus_ecpp_p(edev)) {
165 unsigned long base = edev->resource[0].start;
166 unsigned long config = edev->resource[1].start;
167 unsigned long d_base = edev->resource[2].start;
168 unsigned long d_len;
170 spin_lock_init(&sparc_ebus_dmas[count].info.lock);
171 d_len = (edev->resource[2].end -
172 d_base) + 1;
173 sparc_ebus_dmas[count].info.regs =
174 ioremap(d_base, d_len);
175 if (!sparc_ebus_dmas[count].info.regs)
176 continue;
177 sparc_ebus_dmas[count].info.flags = 0;
178 sparc_ebus_dmas[count].info.callback = NULL;
179 sparc_ebus_dmas[count].info.client_cookie = NULL;
180 sparc_ebus_dmas[count].info.irq = 0xdeadbeef;
181 strcpy(sparc_ebus_dmas[count].info.name, "parport");
182 if (ebus_dma_register(&sparc_ebus_dmas[count].info))
183 continue;
184 ebus_dma_irq_enable(&sparc_ebus_dmas[count].info, 1);
186 /* Configure IRQ to Push Pull, Level Low */
187 /* Enable ECP, set bit 2 of the CTR first */
188 outb(0x04, base + 0x02);
189 ns87303_modify(config, PCR,
190 PCR_EPP_ENABLE |
191 PCR_IRQ_ODRAIN,
192 PCR_ECP_ENABLE |
193 PCR_ECP_CLK_ENA |
194 PCR_IRQ_POLAR);
196 /* CTR bit 5 controls direction of port */
197 ns87303_modify(config, PTR,
198 0, PTR_LPT_REG_DIR);
200 if (parport_pc_probe_port(base, base + 0x400,
201 edev->irqs[0],
202 count,
203 &ebus->self->dev))
204 count++;
209 count = parport_isa_probe(count);
211 return count;
214 #endif /* !(_ASM_SPARC64_PARPORT_H */