| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | /* | 
|  | 2 | * Device driver for the via-cuda on Apple Powermacs. | 
|  | 3 | * | 
|  | 4 | * The VIA (versatile interface adapter) interfaces to the CUDA, | 
|  | 5 | * a 6805 microprocessor core which controls the ADB (Apple Desktop | 
|  | 6 | * Bus) which connects to the keyboard and mouse.  The CUDA also | 
|  | 7 | * controls system power and the RTC (real time clock) chip. | 
|  | 8 | * | 
|  | 9 | * Copyright (C) 1996 Paul Mackerras. | 
|  | 10 | */ | 
|  | 11 | #include <stdarg.h> | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 12 | #include <linux/types.h> | 
|  | 13 | #include <linux/errno.h> | 
|  | 14 | #include <linux/kernel.h> | 
|  | 15 | #include <linux/delay.h> | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 16 | #include <linux/adb.h> | 
|  | 17 | #include <linux/cuda.h> | 
|  | 18 | #include <linux/spinlock.h> | 
|  | 19 | #include <linux/interrupt.h> | 
|  | 20 | #ifdef CONFIG_PPC | 
|  | 21 | #include <asm/prom.h> | 
|  | 22 | #include <asm/machdep.h> | 
|  | 23 | #else | 
|  | 24 | #include <asm/macintosh.h> | 
|  | 25 | #include <asm/macints.h> | 
|  | 26 | #include <asm/machw.h> | 
|  | 27 | #include <asm/mac_via.h> | 
|  | 28 | #endif | 
|  | 29 | #include <asm/io.h> | 
|  | 30 | #include <asm/system.h> | 
|  | 31 | #include <linux/init.h> | 
|  | 32 |  | 
|  | 33 | static volatile unsigned char __iomem *via; | 
|  | 34 | static DEFINE_SPINLOCK(cuda_lock); | 
|  | 35 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 36 | /* VIA registers - spaced 0x200 bytes apart */ | 
|  | 37 | #define RS		0x200		/* skip between registers */ | 
|  | 38 | #define B		0		/* B-side data */ | 
|  | 39 | #define A		RS		/* A-side data */ | 
|  | 40 | #define DIRB		(2*RS)		/* B-side direction (1=output) */ | 
|  | 41 | #define DIRA		(3*RS)		/* A-side direction (1=output) */ | 
|  | 42 | #define T1CL		(4*RS)		/* Timer 1 ctr/latch (low 8 bits) */ | 
|  | 43 | #define T1CH		(5*RS)		/* Timer 1 counter (high 8 bits) */ | 
|  | 44 | #define T1LL		(6*RS)		/* Timer 1 latch (low 8 bits) */ | 
|  | 45 | #define T1LH		(7*RS)		/* Timer 1 latch (high 8 bits) */ | 
|  | 46 | #define T2CL		(8*RS)		/* Timer 2 ctr/latch (low 8 bits) */ | 
|  | 47 | #define T2CH		(9*RS)		/* Timer 2 counter (high 8 bits) */ | 
|  | 48 | #define SR		(10*RS)		/* Shift register */ | 
|  | 49 | #define ACR		(11*RS)		/* Auxiliary control register */ | 
|  | 50 | #define PCR		(12*RS)		/* Peripheral control register */ | 
|  | 51 | #define IFR		(13*RS)		/* Interrupt flag register */ | 
|  | 52 | #define IER		(14*RS)		/* Interrupt enable register */ | 
|  | 53 | #define ANH		(15*RS)		/* A-side data, no handshake */ | 
|  | 54 |  | 
|  | 55 | /* Bits in B data register: all active low */ | 
|  | 56 | #define TREQ		0x08		/* Transfer request (input) */ | 
|  | 57 | #define TACK		0x10		/* Transfer acknowledge (output) */ | 
|  | 58 | #define TIP		0x20		/* Transfer in progress (output) */ | 
|  | 59 |  | 
|  | 60 | /* Bits in ACR */ | 
|  | 61 | #define SR_CTRL		0x1c		/* Shift register control bits */ | 
|  | 62 | #define SR_EXT		0x0c		/* Shift on external clock */ | 
|  | 63 | #define SR_OUT		0x10		/* Shift out if 1 */ | 
|  | 64 |  | 
|  | 65 | /* Bits in IFR and IER */ | 
|  | 66 | #define IER_SET		0x80		/* set bits in IER */ | 
|  | 67 | #define IER_CLR		0		/* clear bits in IER */ | 
|  | 68 | #define SR_INT		0x04		/* Shift register full/empty */ | 
|  | 69 |  | 
|  | 70 | static enum cuda_state { | 
|  | 71 | idle, | 
|  | 72 | sent_first_byte, | 
|  | 73 | sending, | 
|  | 74 | reading, | 
|  | 75 | read_done, | 
|  | 76 | awaiting_reply | 
|  | 77 | } cuda_state; | 
|  | 78 |  | 
|  | 79 | static struct adb_request *current_req; | 
|  | 80 | static struct adb_request *last_req; | 
|  | 81 | static unsigned char cuda_rbuf[16]; | 
|  | 82 | static unsigned char *reply_ptr; | 
|  | 83 | static int reading_reply; | 
|  | 84 | static int data_index; | 
|  | 85 | #ifdef CONFIG_PPC | 
|  | 86 | static struct device_node *vias; | 
|  | 87 | #endif | 
| Olaf Hering | 8727585 | 2007-02-10 21:35:12 +0100 | [diff] [blame] | 88 | static int cuda_fully_inited; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 89 |  | 
|  | 90 | #ifdef CONFIG_ADB | 
|  | 91 | static int cuda_probe(void); | 
|  | 92 | static int cuda_init(void); | 
|  | 93 | static int cuda_send_request(struct adb_request *req, int sync); | 
|  | 94 | static int cuda_adb_autopoll(int devs); | 
|  | 95 | static int cuda_reset_adb_bus(void); | 
|  | 96 | #endif /* CONFIG_ADB */ | 
|  | 97 |  | 
|  | 98 | static int cuda_init_via(void); | 
|  | 99 | static void cuda_start(void); | 
| David Howells | 7d12e78 | 2006-10-05 14:55:46 +0100 | [diff] [blame] | 100 | static irqreturn_t cuda_interrupt(int irq, void *arg); | 
|  | 101 | static void cuda_input(unsigned char *buf, int nb); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 102 | void cuda_poll(void); | 
|  | 103 | static int cuda_write(struct adb_request *req); | 
|  | 104 |  | 
|  | 105 | int cuda_request(struct adb_request *req, | 
|  | 106 | void (*done)(struct adb_request *), int nbytes, ...); | 
|  | 107 |  | 
|  | 108 | #ifdef CONFIG_ADB | 
|  | 109 | struct adb_driver via_cuda_driver = { | 
|  | 110 | "CUDA", | 
|  | 111 | cuda_probe, | 
|  | 112 | cuda_init, | 
|  | 113 | cuda_send_request, | 
|  | 114 | cuda_adb_autopoll, | 
|  | 115 | cuda_poll, | 
|  | 116 | cuda_reset_adb_bus | 
|  | 117 | }; | 
|  | 118 | #endif /* CONFIG_ADB */ | 
|  | 119 |  | 
|  | 120 | #ifdef CONFIG_PPC | 
| Benjamin Herrenschmidt | 51d3082 | 2005-11-23 17:57:25 +1100 | [diff] [blame] | 121 | int __init find_via_cuda(void) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 122 | { | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 123 | struct adb_request req; | 
| Benjamin Herrenschmidt | 51d3082 | 2005-11-23 17:57:25 +1100 | [diff] [blame] | 124 | phys_addr_t taddr; | 
| Jeremy Kerr | 018a3d1 | 2006-07-12 15:40:29 +1000 | [diff] [blame] | 125 | const u32 *reg; | 
| Benjamin Herrenschmidt | 51d3082 | 2005-11-23 17:57:25 +1100 | [diff] [blame] | 126 | int err; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 127 |  | 
|  | 128 | if (vias != 0) | 
|  | 129 | return 1; | 
| Benjamin Herrenschmidt | 51d3082 | 2005-11-23 17:57:25 +1100 | [diff] [blame] | 130 | vias = of_find_node_by_name(NULL, "via-cuda"); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 131 | if (vias == 0) | 
|  | 132 | return 0; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 133 |  | 
| Jeremy Kerr | 018a3d1 | 2006-07-12 15:40:29 +1000 | [diff] [blame] | 134 | reg = get_property(vias, "reg", NULL); | 
| Benjamin Herrenschmidt | 51d3082 | 2005-11-23 17:57:25 +1100 | [diff] [blame] | 135 | if (reg == NULL) { | 
|  | 136 | printk(KERN_ERR "via-cuda: No \"reg\" property !\n"); | 
|  | 137 | goto fail; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 138 | } | 
| Benjamin Herrenschmidt | 51d3082 | 2005-11-23 17:57:25 +1100 | [diff] [blame] | 139 | taddr = of_translate_address(vias, reg); | 
|  | 140 | if (taddr == 0) { | 
|  | 141 | printk(KERN_ERR "via-cuda: Can't translate address !\n"); | 
|  | 142 | goto fail; | 
|  | 143 | } | 
|  | 144 | via = ioremap(taddr, 0x2000); | 
|  | 145 | if (via == NULL) { | 
|  | 146 | printk(KERN_ERR "via-cuda: Can't map address !\n"); | 
|  | 147 | goto fail; | 
|  | 148 | } | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 149 |  | 
|  | 150 | cuda_state = idle; | 
|  | 151 | sys_ctrler = SYS_CTRLER_CUDA; | 
|  | 152 |  | 
|  | 153 | err = cuda_init_via(); | 
|  | 154 | if (err) { | 
|  | 155 | printk(KERN_ERR "cuda_init_via() failed\n"); | 
|  | 156 | via = NULL; | 
|  | 157 | return 0; | 
|  | 158 | } | 
|  | 159 |  | 
|  | 160 | /* Clear and enable interrupts, but only on PPC. On 68K it's done  */ | 
|  | 161 | /* for us by the main VIA driver in arch/m68k/mac/via.c        */ | 
|  | 162 |  | 
|  | 163 | #ifndef CONFIG_MAC | 
|  | 164 | out_8(&via[IFR], 0x7f);	/* clear interrupts by writing 1s */ | 
|  | 165 | out_8(&via[IER], IER_SET|SR_INT); /* enable interrupt from SR */ | 
|  | 166 | #endif | 
|  | 167 |  | 
|  | 168 | /* enable autopoll */ | 
|  | 169 | cuda_request(&req, NULL, 3, CUDA_PACKET, CUDA_AUTOPOLL, 1); | 
|  | 170 | while (!req.complete) | 
|  | 171 | cuda_poll(); | 
|  | 172 |  | 
|  | 173 | return 1; | 
| Benjamin Herrenschmidt | 51d3082 | 2005-11-23 17:57:25 +1100 | [diff] [blame] | 174 |  | 
|  | 175 | fail: | 
|  | 176 | of_node_put(vias); | 
|  | 177 | vias = NULL; | 
|  | 178 | return 0; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 179 | } | 
|  | 180 | #endif /* CONFIG_PPC */ | 
|  | 181 |  | 
|  | 182 | static int __init via_cuda_start(void) | 
|  | 183 | { | 
| Benjamin Herrenschmidt | 0ebfff1 | 2006-07-03 21:36:01 +1000 | [diff] [blame] | 184 | unsigned int irq; | 
|  | 185 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 186 | if (via == NULL) | 
|  | 187 | return -ENODEV; | 
|  | 188 |  | 
| Benjamin Herrenschmidt | 0ebfff1 | 2006-07-03 21:36:01 +1000 | [diff] [blame] | 189 | #ifdef CONFIG_MAC | 
|  | 190 | irq = IRQ_MAC_ADB; | 
|  | 191 | #else /* CONFIG_MAC */ | 
|  | 192 | irq = irq_of_parse_and_map(vias, 0); | 
|  | 193 | if (irq == NO_IRQ) { | 
|  | 194 | printk(KERN_ERR "via-cuda: can't map interrupts for %s\n", | 
|  | 195 | vias->full_name); | 
|  | 196 | return -ENODEV; | 
|  | 197 | } | 
|  | 198 | #endif /* CONFIG_MAP */ | 
|  | 199 |  | 
|  | 200 | if (request_irq(irq, cuda_interrupt, 0, "ADB", cuda_interrupt)) { | 
|  | 201 | printk(KERN_ERR "via-cuda: can't request irq %d\n", irq); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 202 | return -EAGAIN; | 
|  | 203 | } | 
|  | 204 |  | 
|  | 205 | printk("Macintosh CUDA driver v0.5 for Unified ADB.\n"); | 
|  | 206 |  | 
|  | 207 | cuda_fully_inited = 1; | 
|  | 208 | return 0; | 
|  | 209 | } | 
|  | 210 |  | 
|  | 211 | device_initcall(via_cuda_start); | 
|  | 212 |  | 
|  | 213 | #ifdef CONFIG_ADB | 
|  | 214 | static int | 
|  | 215 | cuda_probe(void) | 
|  | 216 | { | 
|  | 217 | #ifdef CONFIG_PPC | 
|  | 218 | if (sys_ctrler != SYS_CTRLER_CUDA) | 
|  | 219 | return -ENODEV; | 
|  | 220 | #else | 
|  | 221 | if (macintosh_config->adb_type != MAC_ADB_CUDA) | 
|  | 222 | return -ENODEV; | 
|  | 223 | via = via1; | 
|  | 224 | #endif | 
|  | 225 | return 0; | 
|  | 226 | } | 
|  | 227 |  | 
|  | 228 | static int __init | 
|  | 229 | cuda_init(void) | 
|  | 230 | { | 
|  | 231 | #ifdef CONFIG_PPC | 
|  | 232 | if (via == NULL) | 
|  | 233 | return -ENODEV; | 
|  | 234 | return 0; | 
|  | 235 | #else | 
|  | 236 | int err = cuda_init_via(); | 
|  | 237 | if (err) { | 
|  | 238 | printk(KERN_ERR "cuda_init_via() failed\n"); | 
|  | 239 | return -ENODEV; | 
|  | 240 | } | 
|  | 241 |  | 
|  | 242 | return via_cuda_start(); | 
|  | 243 | #endif | 
|  | 244 | } | 
|  | 245 | #endif /* CONFIG_ADB */ | 
|  | 246 |  | 
|  | 247 | #define WAIT_FOR(cond, what)					\ | 
|  | 248 | do {                                                        \ | 
|  | 249 | int x;							\ | 
|  | 250 | for (x = 1000; !(cond); --x) {				\ | 
|  | 251 | if (x == 0) {					\ | 
|  | 252 | printk("Timeout waiting for " what "\n");	\ | 
|  | 253 | return -ENXIO;					\ | 
|  | 254 | }							\ | 
|  | 255 | udelay(100);					\ | 
|  | 256 | }							\ | 
|  | 257 | } while (0) | 
|  | 258 |  | 
|  | 259 | static int | 
|  | 260 | cuda_init_via(void) | 
|  | 261 | { | 
|  | 262 | out_8(&via[DIRB], (in_8(&via[DIRB]) | TACK | TIP) & ~TREQ);	/* TACK & TIP out */ | 
|  | 263 | out_8(&via[B], in_8(&via[B]) | TACK | TIP);			/* negate them */ | 
|  | 264 | out_8(&via[ACR] ,(in_8(&via[ACR]) & ~SR_CTRL) | SR_EXT);	/* SR data in */ | 
|  | 265 | (void)in_8(&via[SR]);						/* clear any left-over data */ | 
|  | 266 | #ifndef CONFIG_MAC | 
|  | 267 | out_8(&via[IER], 0x7f);					/* disable interrupts from VIA */ | 
|  | 268 | (void)in_8(&via[IER]); | 
|  | 269 | #endif | 
|  | 270 |  | 
|  | 271 | /* delay 4ms and then clear any pending interrupt */ | 
|  | 272 | mdelay(4); | 
|  | 273 | (void)in_8(&via[SR]); | 
|  | 274 | out_8(&via[IFR], in_8(&via[IFR]) & 0x7f); | 
|  | 275 |  | 
|  | 276 | /* sync with the CUDA - assert TACK without TIP */ | 
|  | 277 | out_8(&via[B], in_8(&via[B]) & ~TACK); | 
|  | 278 |  | 
|  | 279 | /* wait for the CUDA to assert TREQ in response */ | 
|  | 280 | WAIT_FOR((in_8(&via[B]) & TREQ) == 0, "CUDA response to sync"); | 
|  | 281 |  | 
|  | 282 | /* wait for the interrupt and then clear it */ | 
|  | 283 | WAIT_FOR(in_8(&via[IFR]) & SR_INT, "CUDA response to sync (2)"); | 
|  | 284 | (void)in_8(&via[SR]); | 
|  | 285 | out_8(&via[IFR], in_8(&via[IFR]) & 0x7f); | 
|  | 286 |  | 
|  | 287 | /* finish the sync by negating TACK */ | 
|  | 288 | out_8(&via[B], in_8(&via[B]) | TACK); | 
|  | 289 |  | 
|  | 290 | /* wait for the CUDA to negate TREQ and the corresponding interrupt */ | 
|  | 291 | WAIT_FOR(in_8(&via[B]) & TREQ, "CUDA response to sync (3)"); | 
|  | 292 | WAIT_FOR(in_8(&via[IFR]) & SR_INT, "CUDA response to sync (4)"); | 
|  | 293 | (void)in_8(&via[SR]); | 
|  | 294 | out_8(&via[IFR], in_8(&via[IFR]) & 0x7f); | 
|  | 295 | out_8(&via[B], in_8(&via[B]) | TIP);	/* should be unnecessary */ | 
|  | 296 |  | 
|  | 297 | return 0; | 
|  | 298 | } | 
|  | 299 |  | 
|  | 300 | #ifdef CONFIG_ADB | 
|  | 301 | /* Send an ADB command */ | 
|  | 302 | static int | 
|  | 303 | cuda_send_request(struct adb_request *req, int sync) | 
|  | 304 | { | 
|  | 305 | int i; | 
|  | 306 |  | 
|  | 307 | if ((via == NULL) || !cuda_fully_inited) { | 
|  | 308 | req->complete = 1; | 
|  | 309 | return -ENXIO; | 
|  | 310 | } | 
|  | 311 |  | 
|  | 312 | req->reply_expected = 1; | 
|  | 313 |  | 
|  | 314 | i = cuda_write(req); | 
|  | 315 | if (i) | 
|  | 316 | return i; | 
|  | 317 |  | 
|  | 318 | if (sync) { | 
|  | 319 | while (!req->complete) | 
|  | 320 | cuda_poll(); | 
|  | 321 | } | 
|  | 322 | return 0; | 
|  | 323 | } | 
|  | 324 |  | 
|  | 325 |  | 
|  | 326 | /* Enable/disable autopolling */ | 
|  | 327 | static int | 
|  | 328 | cuda_adb_autopoll(int devs) | 
|  | 329 | { | 
|  | 330 | struct adb_request req; | 
|  | 331 |  | 
|  | 332 | if ((via == NULL) || !cuda_fully_inited) | 
|  | 333 | return -ENXIO; | 
|  | 334 |  | 
|  | 335 | cuda_request(&req, NULL, 3, CUDA_PACKET, CUDA_AUTOPOLL, (devs? 1: 0)); | 
|  | 336 | while (!req.complete) | 
|  | 337 | cuda_poll(); | 
|  | 338 | return 0; | 
|  | 339 | } | 
|  | 340 |  | 
|  | 341 | /* Reset adb bus - how do we do this?? */ | 
|  | 342 | static int | 
|  | 343 | cuda_reset_adb_bus(void) | 
|  | 344 | { | 
|  | 345 | struct adb_request req; | 
|  | 346 |  | 
|  | 347 | if ((via == NULL) || !cuda_fully_inited) | 
|  | 348 | return -ENXIO; | 
|  | 349 |  | 
|  | 350 | cuda_request(&req, NULL, 2, ADB_PACKET, 0);		/* maybe? */ | 
|  | 351 | while (!req.complete) | 
|  | 352 | cuda_poll(); | 
|  | 353 | return 0; | 
|  | 354 | } | 
|  | 355 | #endif /* CONFIG_ADB */ | 
|  | 356 | /* Construct and send a cuda request */ | 
|  | 357 | int | 
|  | 358 | cuda_request(struct adb_request *req, void (*done)(struct adb_request *), | 
|  | 359 | int nbytes, ...) | 
|  | 360 | { | 
|  | 361 | va_list list; | 
|  | 362 | int i; | 
|  | 363 |  | 
|  | 364 | if (via == NULL) { | 
|  | 365 | req->complete = 1; | 
|  | 366 | return -ENXIO; | 
|  | 367 | } | 
|  | 368 |  | 
|  | 369 | req->nbytes = nbytes; | 
|  | 370 | req->done = done; | 
|  | 371 | va_start(list, nbytes); | 
|  | 372 | for (i = 0; i < nbytes; ++i) | 
|  | 373 | req->data[i] = va_arg(list, int); | 
|  | 374 | va_end(list); | 
|  | 375 | req->reply_expected = 1; | 
|  | 376 | return cuda_write(req); | 
|  | 377 | } | 
|  | 378 |  | 
|  | 379 | static int | 
|  | 380 | cuda_write(struct adb_request *req) | 
|  | 381 | { | 
|  | 382 | unsigned long flags; | 
|  | 383 |  | 
|  | 384 | if (req->nbytes < 2 || req->data[0] > CUDA_PACKET) { | 
|  | 385 | req->complete = 1; | 
|  | 386 | return -EINVAL; | 
|  | 387 | } | 
|  | 388 | req->next = NULL; | 
|  | 389 | req->sent = 0; | 
|  | 390 | req->complete = 0; | 
|  | 391 | req->reply_len = 0; | 
|  | 392 |  | 
|  | 393 | spin_lock_irqsave(&cuda_lock, flags); | 
|  | 394 | if (current_req != 0) { | 
|  | 395 | last_req->next = req; | 
|  | 396 | last_req = req; | 
|  | 397 | } else { | 
|  | 398 | current_req = req; | 
|  | 399 | last_req = req; | 
|  | 400 | if (cuda_state == idle) | 
|  | 401 | cuda_start(); | 
|  | 402 | } | 
|  | 403 | spin_unlock_irqrestore(&cuda_lock, flags); | 
|  | 404 |  | 
|  | 405 | return 0; | 
|  | 406 | } | 
|  | 407 |  | 
|  | 408 | static void | 
|  | 409 | cuda_start(void) | 
|  | 410 | { | 
|  | 411 | struct adb_request *req; | 
|  | 412 |  | 
|  | 413 | /* assert cuda_state == idle */ | 
|  | 414 | /* get the packet to send */ | 
|  | 415 | req = current_req; | 
|  | 416 | if (req == 0) | 
|  | 417 | return; | 
|  | 418 | if ((in_8(&via[B]) & TREQ) == 0) | 
|  | 419 | return;			/* a byte is coming in from the CUDA */ | 
|  | 420 |  | 
|  | 421 | /* set the shift register to shift out and send a byte */ | 
|  | 422 | out_8(&via[ACR], in_8(&via[ACR]) | SR_OUT); | 
|  | 423 | out_8(&via[SR], req->data[0]); | 
|  | 424 | out_8(&via[B], in_8(&via[B]) & ~TIP); | 
|  | 425 | cuda_state = sent_first_byte; | 
|  | 426 | } | 
|  | 427 |  | 
|  | 428 | void | 
|  | 429 | cuda_poll(void) | 
|  | 430 | { | 
|  | 431 | unsigned long flags; | 
|  | 432 |  | 
|  | 433 | /* cuda_interrupt only takes a normal lock, we disable | 
|  | 434 | * interrupts here to avoid re-entering and thus deadlocking. | 
|  | 435 | * An option would be to disable only the IRQ source with | 
|  | 436 | * disable_irq(), would that work on m68k ? --BenH | 
|  | 437 | */ | 
|  | 438 | local_irq_save(flags); | 
| Olof Johansson | 49f19ce | 2006-10-05 20:31:10 -0500 | [diff] [blame] | 439 | cuda_interrupt(0, NULL); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 440 | local_irq_restore(flags); | 
|  | 441 | } | 
|  | 442 |  | 
|  | 443 | static irqreturn_t | 
| David Howells | 7d12e78 | 2006-10-05 14:55:46 +0100 | [diff] [blame] | 444 | cuda_interrupt(int irq, void *arg) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 445 | { | 
|  | 446 | int status; | 
|  | 447 | struct adb_request *req = NULL; | 
|  | 448 | unsigned char ibuf[16]; | 
|  | 449 | int ibuf_len = 0; | 
|  | 450 | int complete = 0; | 
|  | 451 | unsigned char virq; | 
|  | 452 |  | 
|  | 453 | spin_lock(&cuda_lock); | 
|  | 454 |  | 
|  | 455 | virq = in_8(&via[IFR]) & 0x7f; | 
|  | 456 | out_8(&via[IFR], virq); | 
|  | 457 | if ((virq & SR_INT) == 0) { | 
|  | 458 | spin_unlock(&cuda_lock); | 
|  | 459 | return IRQ_NONE; | 
|  | 460 | } | 
|  | 461 |  | 
|  | 462 | status = (~in_8(&via[B]) & (TIP|TREQ)) | (in_8(&via[ACR]) & SR_OUT); | 
|  | 463 | /* printk("cuda_interrupt: state=%d status=%x\n", cuda_state, status); */ | 
|  | 464 | switch (cuda_state) { | 
|  | 465 | case idle: | 
|  | 466 | /* CUDA has sent us the first byte of data - unsolicited */ | 
|  | 467 | if (status != TREQ) | 
|  | 468 | printk("cuda: state=idle, status=%x\n", status); | 
|  | 469 | (void)in_8(&via[SR]); | 
|  | 470 | out_8(&via[B], in_8(&via[B]) & ~TIP); | 
|  | 471 | cuda_state = reading; | 
|  | 472 | reply_ptr = cuda_rbuf; | 
|  | 473 | reading_reply = 0; | 
|  | 474 | break; | 
|  | 475 |  | 
|  | 476 | case awaiting_reply: | 
|  | 477 | /* CUDA has sent us the first byte of data of a reply */ | 
|  | 478 | if (status != TREQ) | 
|  | 479 | printk("cuda: state=awaiting_reply, status=%x\n", status); | 
|  | 480 | (void)in_8(&via[SR]); | 
|  | 481 | out_8(&via[B], in_8(&via[B]) & ~TIP); | 
|  | 482 | cuda_state = reading; | 
|  | 483 | reply_ptr = current_req->reply; | 
|  | 484 | reading_reply = 1; | 
|  | 485 | break; | 
|  | 486 |  | 
|  | 487 | case sent_first_byte: | 
|  | 488 | if (status == TREQ + TIP + SR_OUT) { | 
|  | 489 | /* collision */ | 
|  | 490 | out_8(&via[ACR], in_8(&via[ACR]) & ~SR_OUT); | 
|  | 491 | (void)in_8(&via[SR]); | 
|  | 492 | out_8(&via[B], in_8(&via[B]) | TIP | TACK); | 
|  | 493 | cuda_state = idle; | 
|  | 494 | } else { | 
|  | 495 | /* assert status == TIP + SR_OUT */ | 
|  | 496 | if (status != TIP + SR_OUT) | 
|  | 497 | printk("cuda: state=sent_first_byte status=%x\n", status); | 
|  | 498 | out_8(&via[SR], current_req->data[1]); | 
|  | 499 | out_8(&via[B], in_8(&via[B]) ^ TACK); | 
|  | 500 | data_index = 2; | 
|  | 501 | cuda_state = sending; | 
|  | 502 | } | 
|  | 503 | break; | 
|  | 504 |  | 
|  | 505 | case sending: | 
|  | 506 | req = current_req; | 
|  | 507 | if (data_index >= req->nbytes) { | 
|  | 508 | out_8(&via[ACR], in_8(&via[ACR]) & ~SR_OUT); | 
|  | 509 | (void)in_8(&via[SR]); | 
|  | 510 | out_8(&via[B], in_8(&via[B]) | TACK | TIP); | 
|  | 511 | req->sent = 1; | 
|  | 512 | if (req->reply_expected) { | 
|  | 513 | cuda_state = awaiting_reply; | 
|  | 514 | } else { | 
|  | 515 | current_req = req->next; | 
|  | 516 | complete = 1; | 
|  | 517 | /* not sure about this */ | 
|  | 518 | cuda_state = idle; | 
|  | 519 | cuda_start(); | 
|  | 520 | } | 
|  | 521 | } else { | 
|  | 522 | out_8(&via[SR], req->data[data_index++]); | 
|  | 523 | out_8(&via[B], in_8(&via[B]) ^ TACK); | 
|  | 524 | } | 
|  | 525 | break; | 
|  | 526 |  | 
|  | 527 | case reading: | 
|  | 528 | *reply_ptr++ = in_8(&via[SR]); | 
|  | 529 | if (status == TIP) { | 
|  | 530 | /* that's all folks */ | 
|  | 531 | out_8(&via[B], in_8(&via[B]) | TACK | TIP); | 
|  | 532 | cuda_state = read_done; | 
|  | 533 | } else { | 
|  | 534 | /* assert status == TIP | TREQ */ | 
|  | 535 | if (status != TIP + TREQ) | 
|  | 536 | printk("cuda: state=reading status=%x\n", status); | 
|  | 537 | out_8(&via[B], in_8(&via[B]) ^ TACK); | 
|  | 538 | } | 
|  | 539 | break; | 
|  | 540 |  | 
|  | 541 | case read_done: | 
|  | 542 | (void)in_8(&via[SR]); | 
|  | 543 | if (reading_reply) { | 
|  | 544 | req = current_req; | 
|  | 545 | req->reply_len = reply_ptr - req->reply; | 
|  | 546 | if (req->data[0] == ADB_PACKET) { | 
|  | 547 | /* Have to adjust the reply from ADB commands */ | 
|  | 548 | if (req->reply_len <= 2 || (req->reply[1] & 2) != 0) { | 
|  | 549 | /* the 0x2 bit indicates no response */ | 
|  | 550 | req->reply_len = 0; | 
|  | 551 | } else { | 
|  | 552 | /* leave just the command and result bytes in the reply */ | 
|  | 553 | req->reply_len -= 2; | 
|  | 554 | memmove(req->reply, req->reply + 2, req->reply_len); | 
|  | 555 | } | 
|  | 556 | } | 
|  | 557 | current_req = req->next; | 
|  | 558 | complete = 1; | 
|  | 559 | } else { | 
|  | 560 | /* This is tricky. We must break the spinlock to call | 
|  | 561 | * cuda_input. However, doing so means we might get | 
|  | 562 | * re-entered from another CPU getting an interrupt | 
|  | 563 | * or calling cuda_poll(). I ended up using the stack | 
|  | 564 | * (it's only for 16 bytes) and moving the actual | 
|  | 565 | * call to cuda_input to outside of the lock. | 
|  | 566 | */ | 
|  | 567 | ibuf_len = reply_ptr - cuda_rbuf; | 
|  | 568 | memcpy(ibuf, cuda_rbuf, ibuf_len); | 
|  | 569 | } | 
|  | 570 | if (status == TREQ) { | 
|  | 571 | out_8(&via[B], in_8(&via[B]) & ~TIP); | 
|  | 572 | cuda_state = reading; | 
|  | 573 | reply_ptr = cuda_rbuf; | 
|  | 574 | reading_reply = 0; | 
|  | 575 | } else { | 
|  | 576 | cuda_state = idle; | 
|  | 577 | cuda_start(); | 
|  | 578 | } | 
|  | 579 | break; | 
|  | 580 |  | 
|  | 581 | default: | 
|  | 582 | printk("cuda_interrupt: unknown cuda_state %d?\n", cuda_state); | 
|  | 583 | } | 
|  | 584 | spin_unlock(&cuda_lock); | 
|  | 585 | if (complete && req) { | 
|  | 586 | void (*done)(struct adb_request *) = req->done; | 
|  | 587 | mb(); | 
|  | 588 | req->complete = 1; | 
|  | 589 | /* Here, we assume that if the request has a done member, the | 
|  | 590 | * struct request will survive to setting req->complete to 1 | 
|  | 591 | */ | 
|  | 592 | if (done) | 
|  | 593 | (*done)(req); | 
|  | 594 | } | 
|  | 595 | if (ibuf_len) | 
| David Howells | 7d12e78 | 2006-10-05 14:55:46 +0100 | [diff] [blame] | 596 | cuda_input(ibuf, ibuf_len); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 597 | return IRQ_HANDLED; | 
|  | 598 | } | 
|  | 599 |  | 
|  | 600 | static void | 
| David Howells | 7d12e78 | 2006-10-05 14:55:46 +0100 | [diff] [blame] | 601 | cuda_input(unsigned char *buf, int nb) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 602 | { | 
|  | 603 | int i; | 
|  | 604 |  | 
|  | 605 | switch (buf[0]) { | 
|  | 606 | case ADB_PACKET: | 
|  | 607 | #ifdef CONFIG_XMON | 
|  | 608 | if (nb == 5 && buf[2] == 0x2c) { | 
|  | 609 | extern int xmon_wants_key, xmon_adb_keycode; | 
|  | 610 | if (xmon_wants_key) { | 
|  | 611 | xmon_adb_keycode = buf[3]; | 
|  | 612 | return; | 
|  | 613 | } | 
|  | 614 | } | 
|  | 615 | #endif /* CONFIG_XMON */ | 
|  | 616 | #ifdef CONFIG_ADB | 
| David Howells | 7d12e78 | 2006-10-05 14:55:46 +0100 | [diff] [blame] | 617 | adb_input(buf+2, nb-2, buf[1] & 0x40); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 618 | #endif /* CONFIG_ADB */ | 
|  | 619 | break; | 
|  | 620 |  | 
|  | 621 | default: | 
|  | 622 | printk("data from cuda (%d bytes):", nb); | 
|  | 623 | for (i = 0; i < nb; ++i) | 
|  | 624 | printk(" %.2x", buf[i]); | 
|  | 625 | printk("\n"); | 
|  | 626 | } | 
|  | 627 | } |