]> git.proxmox.com Git - mirror_ubuntu-bionic-kernel.git/blame - drivers/macintosh/adb.c
powerpc: Delete old PrPMC 280/2800 support
[mirror_ubuntu-bionic-kernel.git] / drivers / macintosh / adb.c
CommitLineData
1da177e4
LT
1/*
2 * Device driver for the Apple Desktop Bus
3 * and the /dev/adb device on macintoshes.
4 *
5 * Copyright (C) 1996 Paul Mackerras.
6 *
7 * Modified to declare controllers as structures, added
8 * client notification of bus reset and handles PowerBook
9 * sleep, by Benjamin Herrenschmidt.
10 *
11 * To do:
12 *
13 * - /sys/bus/adb to list the devices and infos
14 * - more /dev/adb to allow userland to receive the
15 * flow of auto-polling datas from a given device.
16 * - move bus probe to a kernel thread
17 */
18
1da177e4
LT
19#include <linux/types.h>
20#include <linux/errno.h>
21#include <linux/kernel.h>
22#include <linux/slab.h>
23#include <linux/module.h>
24#include <linux/fs.h>
25#include <linux/mm.h>
26#include <linux/sched.h>
1da177e4
LT
27#include <linux/adb.h>
28#include <linux/cuda.h>
29#include <linux/pmu.h>
30#include <linux/notifier.h>
31#include <linux/wait.h>
32#include <linux/init.h>
33#include <linux/delay.h>
34#include <linux/spinlock.h>
35#include <linux/completion.h>
36#include <linux/device.h>
c61dace9 37#include <linux/kthread.h>
fe2528b9 38#include <linux/platform_device.h>
af3ce514 39#include <linux/mutex.h>
1da177e4 40
74e7cd43 41#include <linux/uaccess.h>
1da177e4
LT
42#ifdef CONFIG_PPC
43#include <asm/prom.h>
e8222502 44#include <asm/machdep.h>
1da177e4
LT
45#endif
46
47
1da177e4
LT
48EXPORT_SYMBOL(adb_client_list);
49
50extern struct adb_driver via_macii_driver;
51extern struct adb_driver via_maciisi_driver;
52extern struct adb_driver via_cuda_driver;
53extern struct adb_driver adb_iop_driver;
54extern struct adb_driver via_pmu_driver;
55extern struct adb_driver macio_adb_driver;
56
d851b6e0 57static DEFINE_MUTEX(adb_mutex);
1da177e4
LT
58static struct adb_driver *adb_driver_list[] = {
59#ifdef CONFIG_ADB_MACII
60 &via_macii_driver,
61#endif
62#ifdef CONFIG_ADB_MACIISI
63 &via_maciisi_driver,
64#endif
65#ifdef CONFIG_ADB_CUDA
66 &via_cuda_driver,
67#endif
68#ifdef CONFIG_ADB_IOP
69 &adb_iop_driver,
70#endif
71#if defined(CONFIG_ADB_PMU) || defined(CONFIG_ADB_PMU68K)
72 &via_pmu_driver,
73#endif
74#ifdef CONFIG_ADB_MACIO
75 &macio_adb_driver,
76#endif
77 NULL
78};
79
56b22935 80static struct class *adb_dev_class;
1da177e4 81
9b4a8dd2 82static struct adb_driver *adb_controller;
e041c683 83BLOCKING_NOTIFIER_HEAD(adb_client_list);
1da177e4
LT
84static int adb_got_sleep;
85static int adb_inited;
8192b1f6 86static DEFINE_SEMAPHORE(adb_probe_mutex);
1da177e4
LT
87static int sleepy_trackpad;
88static int autopoll_devs;
89int __adb_probe_sync;
90
1da177e4
LT
91static int adb_scan_bus(void);
92static int do_adb_reset_bus(void);
93static void adbdev_init(void);
94static int try_handler_change(int, int);
95
96static struct adb_handler {
7d12e780 97 void (*handler)(unsigned char *, int, int);
1da177e4
LT
98 int original_address;
99 int handler_id;
100 int busy;
101} adb_handler[16];
102
103/*
af3ce514 104 * The adb_handler_mutex mutex protects all accesses to the original_address
1da177e4
LT
105 * and handler_id fields of adb_handler[i] for all i, and changes to the
106 * handler field.
107 * Accesses to the handler field are protected by the adb_handler_lock
108 * rwlock. It is held across all calls to any handler, so that by the
109 * time adb_unregister returns, we know that the old handler isn't being
110 * called.
111 */
af3ce514 112static DEFINE_MUTEX(adb_handler_mutex);
1da177e4
LT
113static DEFINE_RWLOCK(adb_handler_lock);
114
115#if 0
116static void printADBreply(struct adb_request *req)
117{
118 int i;
119
120 printk("adb reply (%d)", req->reply_len);
121 for(i = 0; i < req->reply_len; i++)
122 printk(" %x", req->reply[i]);
123 printk("\n");
124
125}
126#endif
127
1da177e4
LT
128static int adb_scan_bus(void)
129{
130 int i, highFree=0, noMovement;
131 int devmask = 0;
132 struct adb_request req;
133
134 /* assumes adb_handler[] is all zeroes at this point */
135 for (i = 1; i < 16; i++) {
136 /* see if there is anything at address i */
137 adb_request(&req, NULL, ADBREQ_SYNC | ADBREQ_REPLY, 1,
138 (i << 4) | 0xf);
139 if (req.reply_len > 1)
140 /* one or more devices at this address */
141 adb_handler[i].original_address = i;
142 else if (i > highFree)
143 highFree = i;
144 }
145
146 /* Note we reset noMovement to 0 each time we move a device */
147 for (noMovement = 1; noMovement < 2 && highFree > 0; noMovement++) {
148 for (i = 1; i < 16; i++) {
149 if (adb_handler[i].original_address == 0)
150 continue;
151 /*
152 * Send a "talk register 3" command to address i
153 * to provoke a collision if there is more than
154 * one device at this address.
155 */
156 adb_request(&req, NULL, ADBREQ_SYNC | ADBREQ_REPLY, 1,
157 (i << 4) | 0xf);
158 /*
159 * Move the device(s) which didn't detect a
160 * collision to address `highFree'. Hopefully
161 * this only moves one device.
162 */
163 adb_request(&req, NULL, ADBREQ_SYNC, 3,
164 (i<< 4) | 0xb, (highFree | 0x60), 0xfe);
165 /*
166 * See if anybody actually moved. This is suggested
167 * by HW TechNote 01:
168 *
169 * http://developer.apple.com/technotes/hw/hw_01.html
170 */
171 adb_request(&req, NULL, ADBREQ_SYNC | ADBREQ_REPLY, 1,
172 (highFree << 4) | 0xf);
173 if (req.reply_len <= 1) continue;
174 /*
175 * Test whether there are any device(s) left
176 * at address i.
177 */
178 adb_request(&req, NULL, ADBREQ_SYNC | ADBREQ_REPLY, 1,
179 (i << 4) | 0xf);
180 if (req.reply_len > 1) {
181 /*
182 * There are still one or more devices
183 * left at address i. Register the one(s)
184 * we moved to `highFree', and find a new
185 * value for highFree.
186 */
187 adb_handler[highFree].original_address =
188 adb_handler[i].original_address;
189 while (highFree > 0 &&
190 adb_handler[highFree].original_address)
191 highFree--;
192 if (highFree <= 0)
193 break;
194
195 noMovement = 0;
74e7cd43 196 } else {
1da177e4
LT
197 /*
198 * No devices left at address i; move the
199 * one(s) we moved to `highFree' back to i.
200 */
201 adb_request(&req, NULL, ADBREQ_SYNC, 3,
202 (highFree << 4) | 0xb,
203 (i | 0x60), 0xfe);
204 }
205 }
206 }
207
208 /* Now fill in the handler_id field of the adb_handler entries. */
209 printk(KERN_DEBUG "adb devices:");
210 for (i = 1; i < 16; i++) {
211 if (adb_handler[i].original_address == 0)
212 continue;
213 adb_request(&req, NULL, ADBREQ_SYNC | ADBREQ_REPLY, 1,
214 (i << 4) | 0xf);
215 adb_handler[i].handler_id = req.reply[2];
216 printk(" [%d]: %d %x", i, adb_handler[i].original_address,
217 adb_handler[i].handler_id);
218 devmask |= 1 << i;
219 }
220 printk("\n");
221 return devmask;
222}
223
224/*
225 * This kernel task handles ADB probing. It dies once probing is
226 * completed.
227 */
228static int
229adb_probe_task(void *x)
230{
1da177e4
LT
231 printk(KERN_INFO "adb: starting probe task...\n");
232 do_adb_reset_bus();
233 printk(KERN_INFO "adb: finished probe task...\n");
1b6dd9ba 234
1da177e4 235 up(&adb_probe_mutex);
1b6dd9ba 236
1da177e4
LT
237 return 0;
238}
239
240static void
3e577a80 241__adb_probe_task(struct work_struct *bullshit)
1da177e4 242{
c61dace9 243 kthread_run(adb_probe_task, NULL, "kadbprobe");
1da177e4
LT
244}
245
3e577a80 246static DECLARE_WORK(adb_reset_work, __adb_probe_task);
1da177e4
LT
247
248int
249adb_reset_bus(void)
250{
251 if (__adb_probe_sync) {
252 do_adb_reset_bus();
253 return 0;
254 }
255
256 down(&adb_probe_mutex);
257 schedule_work(&adb_reset_work);
258 return 0;
259}
260
c9f6d3d5
JB
261#ifdef CONFIG_PM
262/*
263 * notify clients before sleep
264 */
265static int adb_suspend(struct platform_device *dev, pm_message_t state)
266{
267 adb_got_sleep = 1;
268 /* We need to get a lock on the probe thread */
269 down(&adb_probe_mutex);
270 /* Stop autopoll */
271 if (adb_controller->autopoll)
272 adb_controller->autopoll(0);
273 blocking_notifier_call_chain(&adb_client_list, ADB_MSG_POWERDOWN, NULL);
274
275 return 0;
276}
277
278/*
279 * reset bus after sleep
280 */
281static int adb_resume(struct platform_device *dev)
282{
283 adb_got_sleep = 0;
284 up(&adb_probe_mutex);
285 adb_reset_bus();
286
287 return 0;
288}
289#endif /* CONFIG_PM */
290
9b4a8dd2 291static int __init adb_init(void)
1da177e4
LT
292{
293 struct adb_driver *driver;
294 int i;
295
296#ifdef CONFIG_PPC32
e8222502 297 if (!machine_is(chrp) && !machine_is(powermac))
1da177e4
LT
298 return 0;
299#endif
300#ifdef CONFIG_MAC
301 if (!MACH_IS_MAC)
302 return 0;
303#endif
304
305 /* xmon may do early-init */
306 if (adb_inited)
307 return 0;
308 adb_inited = 1;
309
310 adb_controller = NULL;
311
312 i = 0;
313 while ((driver = adb_driver_list[i++]) != NULL) {
314 if (!driver->probe()) {
315 adb_controller = driver;
316 break;
317 }
318 }
18814ee8
FT
319 if (adb_controller != NULL && adb_controller->init &&
320 adb_controller->init())
1da177e4 321 adb_controller = NULL;
18814ee8
FT
322 if (adb_controller == NULL) {
323 printk(KERN_WARNING "Warning: no ADB interface detected\n");
1da177e4 324 } else {
1da177e4 325#ifdef CONFIG_PPC
71a157e8
GL
326 if (of_machine_is_compatible("AAPL,PowerBook1998") ||
327 of_machine_is_compatible("PowerBook1,1"))
1da177e4
LT
328 sleepy_trackpad = 1;
329#endif /* CONFIG_PPC */
c9f6d3d5 330
1da177e4
LT
331 adbdev_init();
332 adb_reset_bus();
333 }
334 return 0;
335}
336
faa5b9da 337device_initcall(adb_init);
1da177e4 338
1da177e4
LT
339static int
340do_adb_reset_bus(void)
341{
70b52b38 342 int ret;
1da177e4
LT
343
344 if (adb_controller == NULL)
345 return -ENXIO;
346
347 if (adb_controller->autopoll)
348 adb_controller->autopoll(0);
349
70b52b38
JB
350 blocking_notifier_call_chain(&adb_client_list,
351 ADB_MSG_PRE_RESET, NULL);
1da177e4
LT
352
353 if (sleepy_trackpad) {
354 /* Let the trackpad settle down */
c61dace9 355 msleep(500);
1da177e4
LT
356 }
357
af3ce514 358 mutex_lock(&adb_handler_mutex);
1da177e4
LT
359 write_lock_irq(&adb_handler_lock);
360 memset(adb_handler, 0, sizeof(adb_handler));
361 write_unlock_irq(&adb_handler_lock);
362
363 /* That one is still a bit synchronous, oh well... */
364 if (adb_controller->reset_bus)
365 ret = adb_controller->reset_bus();
366 else
367 ret = 0;
368
369 if (sleepy_trackpad) {
370 /* Let the trackpad settle down */
c61dace9 371 msleep(1500);
1da177e4
LT
372 }
373
374 if (!ret) {
375 autopoll_devs = adb_scan_bus();
376 if (adb_controller->autopoll)
377 adb_controller->autopoll(autopoll_devs);
378 }
af3ce514 379 mutex_unlock(&adb_handler_mutex);
1da177e4 380
70b52b38
JB
381 blocking_notifier_call_chain(&adb_client_list,
382 ADB_MSG_POST_RESET, NULL);
1da177e4
LT
383
384 return ret;
385}
386
387void
388adb_poll(void)
389{
390 if ((adb_controller == NULL)||(adb_controller->poll == NULL))
391 return;
392 adb_controller->poll();
393}
394
c61dace9 395static void adb_sync_req_done(struct adb_request *req)
1da177e4 396{
c61dace9 397 struct completion *comp = req->arg;
1da177e4 398
c61dace9
PM
399 complete(comp);
400}
1da177e4
LT
401
402int
403adb_request(struct adb_request *req, void (*done)(struct adb_request *),
404 int flags, int nbytes, ...)
405{
406 va_list list;
c61dace9 407 int i;
1da177e4 408 int rc;
c61dace9 409 struct completion comp;
1da177e4
LT
410
411 if ((adb_controller == NULL) || (adb_controller->send_request == NULL))
412 return -ENXIO;
413 if (nbytes < 1)
414 return -EINVAL;
c61dace9 415
1da177e4
LT
416 req->nbytes = nbytes+1;
417 req->done = done;
418 req->reply_expected = flags & ADBREQ_REPLY;
419 req->data[0] = ADB_PACKET;
420 va_start(list, nbytes);
421 for (i = 0; i < nbytes; ++i)
422 req->data[i+1] = va_arg(list, int);
423 va_end(list);
424
425 if (flags & ADBREQ_NOSEND)
426 return 0;
427
c61dace9
PM
428 /* Synchronous requests block using an on-stack completion */
429 if (flags & ADBREQ_SYNC) {
430 WARN_ON(done);
431 req->done = adb_sync_req_done;
432 req->arg = &comp;
433 init_completion(&comp);
1da177e4
LT
434 }
435
c61dace9
PM
436 rc = adb_controller->send_request(req, 0);
437
438 if ((flags & ADBREQ_SYNC) && !rc && !req->complete)
439 wait_for_completion(&comp);
1da177e4
LT
440
441 return rc;
442}
443
444 /* Ultimately this should return the number of devices with
445 the given default id.
446 And it does it now ! Note: changed behaviour: This function
447 will now register if default_id _and_ handler_id both match
448 but handler_id can be left to 0 to match with default_id only.
449 When handler_id is set, this function will try to adjust
450 the handler_id id it doesn't match. */
451int
452adb_register(int default_id, int handler_id, struct adb_ids *ids,
7d12e780 453 void (*handler)(unsigned char *, int, int))
1da177e4
LT
454{
455 int i;
456
af3ce514 457 mutex_lock(&adb_handler_mutex);
1da177e4
LT
458 ids->nids = 0;
459 for (i = 1; i < 16; i++) {
460 if ((adb_handler[i].original_address == default_id) &&
461 (!handler_id || (handler_id == adb_handler[i].handler_id) ||
462 try_handler_change(i, handler_id))) {
463 if (adb_handler[i].handler != 0) {
464 printk(KERN_ERR
465 "Two handlers for ADB device %d\n",
466 default_id);
467 continue;
468 }
469 write_lock_irq(&adb_handler_lock);
470 adb_handler[i].handler = handler;
471 write_unlock_irq(&adb_handler_lock);
472 ids->id[ids->nids++] = i;
473 }
474 }
af3ce514 475 mutex_unlock(&adb_handler_mutex);
1da177e4
LT
476 return ids->nids;
477}
478
479int
480adb_unregister(int index)
481{
482 int ret = -ENODEV;
483
af3ce514 484 mutex_lock(&adb_handler_mutex);
1da177e4
LT
485 write_lock_irq(&adb_handler_lock);
486 if (adb_handler[index].handler) {
487 while(adb_handler[index].busy) {
488 write_unlock_irq(&adb_handler_lock);
489 yield();
490 write_lock_irq(&adb_handler_lock);
491 }
492 ret = 0;
493 adb_handler[index].handler = NULL;
494 }
495 write_unlock_irq(&adb_handler_lock);
af3ce514 496 mutex_unlock(&adb_handler_mutex);
1da177e4
LT
497 return ret;
498}
499
500void
7d12e780 501adb_input(unsigned char *buf, int nb, int autopoll)
1da177e4
LT
502{
503 int i, id;
74e7cd43 504 static int dump_adb_input;
1da177e4
LT
505 unsigned long flags;
506
7d12e780 507 void (*handler)(unsigned char *, int, int);
1da177e4
LT
508
509 /* We skip keystrokes and mouse moves when the sleep process
510 * has been started. We stop autopoll, but this is another security
511 */
512 if (adb_got_sleep)
513 return;
514
515 id = buf[0] >> 4;
516 if (dump_adb_input) {
517 printk(KERN_INFO "adb packet: ");
518 for (i = 0; i < nb; ++i)
519 printk(" %x", buf[i]);
520 printk(", id = %d\n", id);
521 }
522 write_lock_irqsave(&adb_handler_lock, flags);
523 handler = adb_handler[id].handler;
524 if (handler != NULL)
525 adb_handler[id].busy = 1;
526 write_unlock_irqrestore(&adb_handler_lock, flags);
527 if (handler != NULL) {
7d12e780 528 (*handler)(buf, nb, autopoll);
1da177e4
LT
529 wmb();
530 adb_handler[id].busy = 0;
531 }
532
533}
534
535/* Try to change handler to new_id. Will return 1 if successful. */
536static int try_handler_change(int address, int new_id)
537{
538 struct adb_request req;
539
540 if (adb_handler[address].handler_id == new_id)
541 return 1;
542 adb_request(&req, NULL, ADBREQ_SYNC, 3,
543 ADB_WRITEREG(address, 3), address | 0x20, new_id);
544 adb_request(&req, NULL, ADBREQ_SYNC | ADBREQ_REPLY, 1,
545 ADB_READREG(address, 3));
546 if (req.reply_len < 2)
547 return 0;
548 if (req.reply[2] != new_id)
549 return 0;
550 adb_handler[address].handler_id = req.reply[2];
551
552 return 1;
553}
554
555int
556adb_try_handler_change(int address, int new_id)
557{
558 int ret;
559
af3ce514 560 mutex_lock(&adb_handler_mutex);
1da177e4 561 ret = try_handler_change(address, new_id);
af3ce514 562 mutex_unlock(&adb_handler_mutex);
1da177e4
LT
563 return ret;
564}
565
566int
567adb_get_infos(int address, int *original_address, int *handler_id)
568{
af3ce514 569 mutex_lock(&adb_handler_mutex);
1da177e4
LT
570 *original_address = adb_handler[address].original_address;
571 *handler_id = adb_handler[address].handler_id;
af3ce514 572 mutex_unlock(&adb_handler_mutex);
1da177e4
LT
573
574 return (*original_address != 0);
575}
576
577
578/*
579 * /dev/adb device driver.
580 */
581
582#define ADB_MAJOR 56 /* major number for /dev/adb */
583
584struct adbdev_state {
585 spinlock_t lock;
586 atomic_t n_pending;
587 struct adb_request *completed;
588 wait_queue_head_t wait_queue;
589 int inuse;
590};
591
592static void adb_write_done(struct adb_request *req)
593{
594 struct adbdev_state *state = (struct adbdev_state *) req->arg;
595 unsigned long flags;
596
597 if (!req->complete) {
598 req->reply_len = 0;
599 req->complete = 1;
600 }
601 spin_lock_irqsave(&state->lock, flags);
602 atomic_dec(&state->n_pending);
603 if (!state->inuse) {
604 kfree(req);
605 if (atomic_read(&state->n_pending) == 0) {
606 spin_unlock_irqrestore(&state->lock, flags);
607 kfree(state);
608 return;
609 }
610 } else {
611 struct adb_request **ap = &state->completed;
612 while (*ap != NULL)
613 ap = &(*ap)->next;
614 req->next = NULL;
615 *ap = req;
616 wake_up_interruptible(&state->wait_queue);
617 }
618 spin_unlock_irqrestore(&state->lock, flags);
619}
620
621static int
622do_adb_query(struct adb_request *req)
623{
624 int ret = -EINVAL;
625
74e7cd43 626 switch(req->data[1]) {
1da177e4
LT
627 case ADB_QUERY_GETDEVINFO:
628 if (req->nbytes < 3)
629 break;
af3ce514 630 mutex_lock(&adb_handler_mutex);
1da177e4
LT
631 req->reply[0] = adb_handler[req->data[2]].original_address;
632 req->reply[1] = adb_handler[req->data[2]].handler_id;
af3ce514 633 mutex_unlock(&adb_handler_mutex);
1da177e4
LT
634 req->complete = 1;
635 req->reply_len = 2;
636 adb_write_done(req);
637 ret = 0;
638 break;
639 }
640 return ret;
641}
642
643static int adb_open(struct inode *inode, struct file *file)
644{
645 struct adbdev_state *state;
26ce4f06 646 int ret = 0;
1da177e4 647
d851b6e0 648 mutex_lock(&adb_mutex);
26ce4f06
JC
649 if (iminor(inode) > 0 || adb_controller == NULL) {
650 ret = -ENXIO;
651 goto out;
652 }
1da177e4 653 state = kmalloc(sizeof(struct adbdev_state), GFP_KERNEL);
26ce4f06
JC
654 if (state == 0) {
655 ret = -ENOMEM;
656 goto out;
657 }
1da177e4
LT
658 file->private_data = state;
659 spin_lock_init(&state->lock);
660 atomic_set(&state->n_pending, 0);
661 state->completed = NULL;
662 init_waitqueue_head(&state->wait_queue);
663 state->inuse = 1;
664
26ce4f06 665out:
d851b6e0 666 mutex_unlock(&adb_mutex);
26ce4f06 667 return ret;
1da177e4
LT
668}
669
670static int adb_release(struct inode *inode, struct file *file)
671{
672 struct adbdev_state *state = file->private_data;
673 unsigned long flags;
674
d851b6e0 675 mutex_lock(&adb_mutex);
1da177e4
LT
676 if (state) {
677 file->private_data = NULL;
678 spin_lock_irqsave(&state->lock, flags);
679 if (atomic_read(&state->n_pending) == 0
680 && state->completed == NULL) {
681 spin_unlock_irqrestore(&state->lock, flags);
682 kfree(state);
683 } else {
684 state->inuse = 0;
685 spin_unlock_irqrestore(&state->lock, flags);
686 }
687 }
d851b6e0 688 mutex_unlock(&adb_mutex);
1da177e4
LT
689 return 0;
690}
691
692static ssize_t adb_read(struct file *file, char __user *buf,
693 size_t count, loff_t *ppos)
694{
695 int ret = 0;
696 struct adbdev_state *state = file->private_data;
697 struct adb_request *req;
74e7cd43 698 DECLARE_WAITQUEUE(wait, current);
1da177e4
LT
699 unsigned long flags;
700
701 if (count < 2)
702 return -EINVAL;
703 if (count > sizeof(req->reply))
704 count = sizeof(req->reply);
705 if (!access_ok(VERIFY_WRITE, buf, count))
706 return -EFAULT;
707
708 req = NULL;
709 spin_lock_irqsave(&state->lock, flags);
710 add_wait_queue(&state->wait_queue, &wait);
64f8c135 711 set_current_state(TASK_INTERRUPTIBLE);
1da177e4
LT
712
713 for (;;) {
714 req = state->completed;
715 if (req != NULL)
716 state->completed = req->next;
717 else if (atomic_read(&state->n_pending) == 0)
718 ret = -EIO;
719 if (req != NULL || ret != 0)
720 break;
721
722 if (file->f_flags & O_NONBLOCK) {
723 ret = -EAGAIN;
724 break;
725 }
726 if (signal_pending(current)) {
727 ret = -ERESTARTSYS;
728 break;
729 }
730 spin_unlock_irqrestore(&state->lock, flags);
731 schedule();
732 spin_lock_irqsave(&state->lock, flags);
733 }
734
64f8c135 735 set_current_state(TASK_RUNNING);
1da177e4
LT
736 remove_wait_queue(&state->wait_queue, &wait);
737 spin_unlock_irqrestore(&state->lock, flags);
738
739 if (ret)
740 return ret;
741
742 ret = req->reply_len;
743 if (ret > count)
744 ret = count;
745 if (ret > 0 && copy_to_user(buf, req->reply, ret))
746 ret = -EFAULT;
747
748 kfree(req);
749 return ret;
750}
751
752static ssize_t adb_write(struct file *file, const char __user *buf,
753 size_t count, loff_t *ppos)
754{
755 int ret/*, i*/;
756 struct adbdev_state *state = file->private_data;
757 struct adb_request *req;
758
759 if (count < 2 || count > sizeof(req->data))
760 return -EINVAL;
761 if (adb_controller == NULL)
762 return -ENXIO;
763 if (!access_ok(VERIFY_READ, buf, count))
764 return -EFAULT;
765
5cbded58 766 req = kmalloc(sizeof(struct adb_request),
1da177e4
LT
767 GFP_KERNEL);
768 if (req == NULL)
769 return -ENOMEM;
770
771 req->nbytes = count;
772 req->done = adb_write_done;
773 req->arg = (void *) state;
774 req->complete = 0;
775
776 ret = -EFAULT;
777 if (copy_from_user(req->data, buf, count))
778 goto out;
779
780 atomic_inc(&state->n_pending);
781
782 /* If a probe is in progress or we are sleeping, wait for it to complete */
783 down(&adb_probe_mutex);
784
785 /* Queries are special requests sent to the ADB driver itself */
786 if (req->data[0] == ADB_QUERY) {
787 if (count > 1)
788 ret = do_adb_query(req);
789 else
790 ret = -EINVAL;
791 up(&adb_probe_mutex);
792 }
793 /* Special case for ADB_BUSRESET request, all others are sent to
794 the controller */
74e7cd43
BS
795 else if ((req->data[0] == ADB_PACKET) && (count > 1)
796 && (req->data[1] == ADB_BUSRESET)) {
1da177e4
LT
797 ret = do_adb_reset_bus();
798 up(&adb_probe_mutex);
799 atomic_dec(&state->n_pending);
800 if (ret == 0)
801 ret = count;
802 goto out;
803 } else {
804 req->reply_expected = ((req->data[1] & 0xc) == 0xc);
805 if (adb_controller && adb_controller->send_request)
806 ret = adb_controller->send_request(req, 0);
807 else
808 ret = -ENXIO;
809 up(&adb_probe_mutex);
810 }
811
812 if (ret != 0) {
813 atomic_dec(&state->n_pending);
814 goto out;
815 }
816 return count;
817
818out:
819 kfree(req);
820 return ret;
821}
822
fa027c2a 823static const struct file_operations adb_fops = {
1da177e4
LT
824 .owner = THIS_MODULE,
825 .llseek = no_llseek,
826 .read = adb_read,
827 .write = adb_write,
828 .open = adb_open,
829 .release = adb_release,
830};
831
c9f6d3d5
JB
832static struct platform_driver adb_pfdrv = {
833 .driver = {
834 .name = "adb",
835 },
836#ifdef CONFIG_PM
837 .suspend = adb_suspend,
838 .resume = adb_resume,
839#endif
840};
841
842static struct platform_device adb_pfdev = {
843 .name = "adb",
844};
845
846static int __init
847adb_dummy_probe(struct platform_device *dev)
848{
849 if (dev == &adb_pfdev)
850 return 0;
851 return -ENODEV;
852}
853
854static void __init
1da177e4
LT
855adbdev_init(void)
856{
857 if (register_chrdev(ADB_MAJOR, "adb", &adb_fops)) {
858 printk(KERN_ERR "adb: unable to get major %d\n", ADB_MAJOR);
859 return;
860 }
861
56b22935
GKH
862 adb_dev_class = class_create(THIS_MODULE, "adb");
863 if (IS_ERR(adb_dev_class))
1da177e4 864 return;
a9b12619 865 device_create(adb_dev_class, NULL, MKDEV(ADB_MAJOR, 0), NULL, "adb");
c9f6d3d5
JB
866
867 platform_device_register(&adb_pfdev);
868 platform_driver_probe(&adb_pfdrv, adb_dummy_probe);
1da177e4 869}