]> git.proxmox.com Git - mirror_ubuntu-zesty-kernel.git/blame - drivers/sh/maple/maple.c
Merge branch 'drm-tda998x-devel' of git://git.armlinux.org.uk/~rmk/linux-arm into...
[mirror_ubuntu-zesty-kernel.git] / drivers / sh / maple / maple.c
CommitLineData
17be2d2b
AM
1/*
2 * Core maple bus functionality
3 *
b233b28e 4 * Copyright (C) 2007 - 2009 Adrian McMenamin
63870295 5 * Copyright (C) 2001 - 2008 Paul Mundt
b233b28e 6 * Copyright (C) 2000 - 2001 YAEGASHI Takeshi
17be2d2b 7 * Copyright (C) 2001 M. R. Brown
17be2d2b
AM
8 *
9 * This file is subject to the terms and conditions of the GNU General Public
10 * License. See the file "COPYING" in the main directory of this archive
11 * for more details.
12 */
13#include <linux/init.h>
14#include <linux/kernel.h>
15#include <linux/device.h>
17be2d2b
AM
16#include <linux/interrupt.h>
17#include <linux/list.h>
18#include <linux/io.h>
19#include <linux/slab.h>
20#include <linux/maple.h>
21#include <linux/dma-mapping.h>
1795cf48 22#include <linux/delay.h>
db4e8395 23#include <linux/module.h>
17be2d2b
AM
24#include <asm/cacheflush.h>
25#include <asm/dma.h>
26#include <asm/io.h>
1795cf48
AM
27#include <mach/dma.h>
28#include <mach/sysasic.h>
17be2d2b 29
b233b28e 30MODULE_AUTHOR("Adrian McMenamin <adrian@mcmen.demon.co.uk>");
17be2d2b
AM
31MODULE_DESCRIPTION("Maple bus driver for Dreamcast");
32MODULE_LICENSE("GPL v2");
33MODULE_SUPPORTED_DEVICE("{{SEGA, Dreamcast/Maple}}");
34
35static void maple_dma_handler(struct work_struct *work);
36static void maple_vblank_handler(struct work_struct *work);
37
38static DECLARE_WORK(maple_dma_process, maple_dma_handler);
39static DECLARE_WORK(maple_vblank_process, maple_vblank_handler);
40
41static LIST_HEAD(maple_waitq);
42static LIST_HEAD(maple_sentq);
43
1795cf48
AM
44/* mutex to protect queue of waiting packets */
45static DEFINE_MUTEX(maple_wlist_lock);
17be2d2b 46
b233b28e 47static struct maple_driver maple_unsupported_device;
17be2d2b
AM
48static struct device maple_bus;
49static int subdevice_map[MAPLE_PORTS];
50static unsigned long *maple_sendbuf, *maple_sendptr, *maple_lastptr;
51static unsigned long maple_pnp_time;
1795cf48 52static int started, scanning, fullscan;
17be2d2b
AM
53static struct kmem_cache *maple_queue_cache;
54
55struct maple_device_specify {
b9482378
AM
56 int port;
57 int unit;
17be2d2b
AM
58};
59
b233b28e
AM
60static bool checked[MAPLE_PORTS];
61static bool empty[MAPLE_PORTS];
62static struct maple_device *baseunits[MAPLE_PORTS];
bd496669 63
17be2d2b 64/**
63870295
PM
65 * maple_driver_register - register a maple driver
66 * @drv: maple driver to be registered.
67 *
68 * Registers the passed in @drv, while updating the bus type.
69 * Devices with matching function IDs will be automatically probed.
17be2d2b 70 */
63870295 71int maple_driver_register(struct maple_driver *drv)
17be2d2b 72{
b9482378
AM
73 if (!drv)
74 return -EINVAL;
63870295
PM
75
76 drv->drv.bus = &maple_bus_type;
77
78 return driver_register(&drv->drv);
17be2d2b
AM
79}
80EXPORT_SYMBOL_GPL(maple_driver_register);
81
63870295
PM
82/**
83 * maple_driver_unregister - unregister a maple driver.
84 * @drv: maple driver to unregister.
85 *
86 * Cleans up after maple_driver_register(). To be invoked in the exit
87 * path of any module drivers.
88 */
89void maple_driver_unregister(struct maple_driver *drv)
90{
91 driver_unregister(&drv->drv);
92}
61787063 93EXPORT_SYMBOL_GPL(maple_driver_unregister);
63870295 94
17be2d2b 95/* set hardware registers to enable next round of dma */
b233b28e 96static void maple_dma_reset(void)
17be2d2b 97{
c0537844 98 __raw_writel(MAPLE_MAGIC, MAPLE_RESET);
b9482378 99 /* set trig type to 0 for software trigger, 1 for hardware (VBLANK) */
c0537844 100 __raw_writel(1, MAPLE_TRIGTYPE);
b233b28e
AM
101 /*
102 * Maple system register
103 * bits 31 - 16 timeout in units of 20nsec
104 * bit 12 hard trigger - set 0 to keep responding to VBLANK
105 * bits 9 - 8 set 00 for 2 Mbps, 01 for 1 Mbps
106 * bits 3 - 0 delay (in 1.3ms) between VBLANK and start of DMA
107 * max delay is 11
108 */
c0537844
PM
109 __raw_writel(MAPLE_2MBPS | MAPLE_TIMEOUT(0xFFFF), MAPLE_SPEED);
110 __raw_writel(virt_to_phys(maple_sendbuf), MAPLE_DMAADDR);
111 __raw_writel(1, MAPLE_ENABLE);
17be2d2b
AM
112}
113
114/**
115 * maple_getcond_callback - setup handling MAPLE_COMMAND_GETCOND
116 * @dev: device responding
117 * @callback: handler callback
118 * @interval: interval in jiffies between callbacks
119 * @function: the function code for the device
120 */
121void maple_getcond_callback(struct maple_device *dev,
b3c69e24
AM
122 void (*callback) (struct mapleq *mq),
123 unsigned long interval, unsigned long function)
17be2d2b 124{
b9482378
AM
125 dev->callback = callback;
126 dev->interval = interval;
127 dev->function = cpu_to_be32(function);
128 dev->when = jiffies;
17be2d2b
AM
129}
130EXPORT_SYMBOL_GPL(maple_getcond_callback);
131
132static int maple_dma_done(void)
133{
c0537844 134 return (__raw_readl(MAPLE_STATE) & 1) == 0;
17be2d2b
AM
135}
136
137static void maple_release_device(struct device *dev)
138{
b3c69e24
AM
139 struct maple_device *mdev;
140 struct mapleq *mq;
b233b28e 141
b3c69e24
AM
142 mdev = to_maple_dev(dev);
143 mq = mdev->mq;
b233b28e
AM
144 kmem_cache_free(maple_queue_cache, mq->recvbuf);
145 kfree(mq);
b3c69e24 146 kfree(mdev);
17be2d2b
AM
147}
148
6a9545bd 149/**
b233b28e 150 * maple_add_packet - add a single instruction to the maple bus queue
6a9545bd
PM
151 * @mdev: maple device
152 * @function: function on device being queried
153 * @command: maple command to add
154 * @length: length of command string (in 32 bit words)
155 * @data: remainder of command string
17be2d2b 156 */
1795cf48
AM
157int maple_add_packet(struct maple_device *mdev, u32 function, u32 command,
158 size_t length, void *data)
17be2d2b 159{
b233b28e 160 int ret = 0;
1795cf48
AM
161 void *sendbuf = NULL;
162
1795cf48 163 if (length) {
b233b28e 164 sendbuf = kzalloc(length * 4, GFP_KERNEL);
1795cf48 165 if (!sendbuf) {
1795cf48
AM
166 ret = -ENOMEM;
167 goto out;
168 }
169 ((__be32 *)sendbuf)[0] = cpu_to_be32(function);
170 }
171
172 mdev->mq->command = command;
173 mdev->mq->length = length;
174 if (length > 1)
175 memcpy(sendbuf + 4, data, (length - 1) * 4);
176 mdev->mq->sendbuf = sendbuf;
177
178 mutex_lock(&maple_wlist_lock);
b233b28e 179 list_add_tail(&mdev->mq->list, &maple_waitq);
1795cf48
AM
180 mutex_unlock(&maple_wlist_lock);
181out:
182 return ret;
183}
b233b28e 184EXPORT_SYMBOL_GPL(maple_add_packet);
1795cf48 185
b3c69e24 186static struct mapleq *maple_allocq(struct maple_device *mdev)
17be2d2b 187{
b9482378 188 struct mapleq *mq;
17be2d2b 189
b233b28e 190 mq = kzalloc(sizeof(*mq), GFP_KERNEL);
b9482378 191 if (!mq)
1795cf48 192 goto failed_nomem;
17be2d2b 193
b233b28e 194 INIT_LIST_HEAD(&mq->list);
b3c69e24 195 mq->dev = mdev;
b233b28e 196 mq->recvbuf = kmem_cache_zalloc(maple_queue_cache, GFP_KERNEL);
1795cf48
AM
197 if (!mq->recvbuf)
198 goto failed_p2;
b233b28e 199 mq->recvbuf->buf = &((mq->recvbuf->bufx)[0]);
17be2d2b 200
b9482378 201 return mq;
1795cf48
AM
202
203failed_p2:
204 kfree(mq);
205failed_nomem:
b233b28e
AM
206 dev_err(&mdev->dev, "could not allocate memory for device (%d, %d)\n",
207 mdev->port, mdev->unit);
1795cf48 208 return NULL;
17be2d2b
AM
209}
210
211static struct maple_device *maple_alloc_dev(int port, int unit)
212{
b3c69e24 213 struct maple_device *mdev;
17be2d2b 214
b233b28e
AM
215 /* zero this out to avoid kobj subsystem
216 * thinking it has already been registered */
217
b3c69e24
AM
218 mdev = kzalloc(sizeof(*mdev), GFP_KERNEL);
219 if (!mdev)
b9482378 220 return NULL;
17be2d2b 221
b3c69e24
AM
222 mdev->port = port;
223 mdev->unit = unit;
b233b28e 224
b3c69e24 225 mdev->mq = maple_allocq(mdev);
17be2d2b 226
b3c69e24
AM
227 if (!mdev->mq) {
228 kfree(mdev);
b9482378
AM
229 return NULL;
230 }
b3c69e24
AM
231 mdev->dev.bus = &maple_bus_type;
232 mdev->dev.parent = &maple_bus;
b233b28e 233 init_waitqueue_head(&mdev->maple_wait);
b3c69e24 234 return mdev;
17be2d2b
AM
235}
236
237static void maple_free_dev(struct maple_device *mdev)
238{
b233b28e
AM
239 kmem_cache_free(maple_queue_cache, mdev->mq->recvbuf);
240 kfree(mdev->mq);
b9482378 241 kfree(mdev);
17be2d2b
AM
242}
243
244/* process the command queue into a maple command block
245 * terminating command has bit 32 of first long set to 0
246 */
247static void maple_build_block(struct mapleq *mq)
248{
b9482378
AM
249 int port, unit, from, to, len;
250 unsigned long *lsendbuf = mq->sendbuf;
17be2d2b 251
b9482378
AM
252 port = mq->dev->port & 3;
253 unit = mq->dev->unit;
254 len = mq->length;
255 from = port << 6;
256 to = (port << 6) | (unit > 0 ? (1 << (unit - 1)) & 0x1f : 0x20);
17be2d2b 257
b9482378
AM
258 *maple_lastptr &= 0x7fffffff;
259 maple_lastptr = maple_sendptr;
17be2d2b 260
b9482378 261 *maple_sendptr++ = (port << 16) | len | 0x80000000;
913df445 262 *maple_sendptr++ = virt_to_phys(mq->recvbuf->buf);
b9482378
AM
263 *maple_sendptr++ =
264 mq->command | (to << 8) | (from << 16) | (len << 24);
b9482378
AM
265 while (len-- > 0)
266 *maple_sendptr++ = *lsendbuf++;
17be2d2b
AM
267}
268
269/* build up command queue */
270static void maple_send(void)
271{
1795cf48 272 int i, maple_packets = 0;
b9482378
AM
273 struct mapleq *mq, *nmq;
274
b233b28e 275 if (!maple_dma_done())
b9482378 276 return;
b233b28e
AM
277
278 /* disable DMA */
c0537844 279 __raw_writel(0, MAPLE_ENABLE);
b233b28e
AM
280
281 if (!list_empty(&maple_sentq))
282 goto finish;
283
1795cf48 284 mutex_lock(&maple_wlist_lock);
b233b28e 285 if (list_empty(&maple_waitq)) {
1795cf48 286 mutex_unlock(&maple_wlist_lock);
b233b28e 287 goto finish;
1795cf48 288 }
b233b28e 289
1795cf48
AM
290 maple_lastptr = maple_sendbuf;
291 maple_sendptr = maple_sendbuf;
b233b28e 292
b9482378
AM
293 list_for_each_entry_safe(mq, nmq, &maple_waitq, list) {
294 maple_build_block(mq);
b233b28e
AM
295 list_del_init(&mq->list);
296 list_add_tail(&mq->list, &maple_sentq);
b9482378
AM
297 if (maple_packets++ > MAPLE_MAXPACKETS)
298 break;
299 }
1795cf48 300 mutex_unlock(&maple_wlist_lock);
b9482378
AM
301 if (maple_packets > 0) {
302 for (i = 0; i < (1 << MAPLE_DMA_PAGES); i++)
303 dma_cache_sync(0, maple_sendbuf + i * PAGE_SIZE,
304 PAGE_SIZE, DMA_BIDIRECTIONAL);
305 }
b233b28e
AM
306
307finish:
308 maple_dma_reset();
17be2d2b
AM
309}
310
1795cf48 311/* check if there is a driver registered likely to match this device */
b233b28e 312static int maple_check_matching_driver(struct device_driver *driver,
b9482378 313 void *devptr)
17be2d2b 314{
b9482378
AM
315 struct maple_driver *maple_drv;
316 struct maple_device *mdev;
317
318 mdev = devptr;
319 maple_drv = to_maple_driver(driver);
1795cf48
AM
320 if (mdev->devinfo.function & cpu_to_be32(maple_drv->function))
321 return 1;
b9482378 322 return 0;
17be2d2b
AM
323}
324
325static void maple_detach_driver(struct maple_device *mdev)
326{
b3c69e24 327 device_unregister(&mdev->dev);
17be2d2b
AM
328}
329
330/* process initial MAPLE_COMMAND_DEVINFO for each device or port */
b3c69e24 331static void maple_attach_driver(struct maple_device *mdev)
17be2d2b 332{
b3c69e24 333 char *p, *recvbuf;
b9482378 334 unsigned long function;
b233b28e 335 int matched, error;
b9482378 336
b233b28e 337 recvbuf = mdev->mq->recvbuf->buf;
b3c69e24
AM
338 /* copy the data as individual elements in
339 * case of memory optimisation */
340 memcpy(&mdev->devinfo.function, recvbuf + 4, 4);
341 memcpy(&mdev->devinfo.function_data[0], recvbuf + 8, 12);
342 memcpy(&mdev->devinfo.area_code, recvbuf + 20, 1);
343 memcpy(&mdev->devinfo.connector_direction, recvbuf + 21, 1);
344 memcpy(&mdev->devinfo.product_name[0], recvbuf + 22, 30);
b3c69e24
AM
345 memcpy(&mdev->devinfo.standby_power, recvbuf + 112, 2);
346 memcpy(&mdev->devinfo.max_power, recvbuf + 114, 2);
347 memcpy(mdev->product_name, mdev->devinfo.product_name, 30);
348 mdev->product_name[30] = '\0';
349 memcpy(mdev->product_licence, mdev->devinfo.product_licence, 60);
350 mdev->product_licence[60] = '\0';
351
352 for (p = mdev->product_name + 29; mdev->product_name <= p; p--)
b9482378
AM
353 if (*p == ' ')
354 *p = '\0';
355 else
356 break;
b3c69e24 357 for (p = mdev->product_licence + 59; mdev->product_licence <= p; p--)
b9482378
AM
358 if (*p == ' ')
359 *p = '\0';
360 else
361 break;
362
b3c69e24 363 function = be32_to_cpu(mdev->devinfo.function);
b9482378 364
b233b28e
AM
365 dev_info(&mdev->dev, "detected %s: function 0x%lX: at (%d, %d)\n",
366 mdev->product_name, function, mdev->port, mdev->unit);
367
b9482378
AM
368 if (function > 0x200) {
369 /* Do this silently - as not a real device */
370 function = 0;
b233b28e 371 mdev->driver = &maple_unsupported_device;
93fde774 372 dev_set_name(&mdev->dev, "%d:0.port", mdev->port);
b9482378 373 } else {
b9482378 374 matched =
1795cf48 375 bus_for_each_drv(&maple_bus_type, NULL, mdev,
b233b28e 376 maple_check_matching_driver);
b9482378
AM
377
378 if (matched == 0) {
379 /* Driver does not exist yet */
b233b28e
AM
380 dev_info(&mdev->dev, "no driver found\n");
381 mdev->driver = &maple_unsupported_device;
b9482378 382 }
93fde774
KS
383 dev_set_name(&mdev->dev, "%d:0%d.%lX", mdev->port,
384 mdev->unit, function);
b9482378 385 }
b233b28e 386
b3c69e24
AM
387 mdev->function = function;
388 mdev->dev.release = &maple_release_device;
b233b28e
AM
389
390 atomic_set(&mdev->busy, 0);
391 error = device_register(&mdev->dev);
392 if (error) {
393 dev_warn(&mdev->dev, "could not register device at"
394 " (%d, %d), with error 0x%X\n", mdev->unit,
395 mdev->port, error);
b3c69e24
AM
396 maple_free_dev(mdev);
397 mdev = NULL;
398 return;
b9482378 399 }
17be2d2b
AM
400}
401
402/*
403 * if device has been registered for the given
404 * port and unit then return 1 - allows identification
405 * of which devices need to be attached or detached
406 */
b233b28e 407static int check_maple_device(struct device *device, void *portptr)
17be2d2b 408{
b9482378
AM
409 struct maple_device_specify *ds;
410 struct maple_device *mdev;
411
412 ds = portptr;
413 mdev = to_maple_dev(device);
414 if (mdev->port == ds->port && mdev->unit == ds->unit)
415 return 1;
416 return 0;
17be2d2b
AM
417}
418
419static int setup_maple_commands(struct device *device, void *ignored)
420{
1795cf48 421 int add;
b233b28e
AM
422 struct maple_device *mdev = to_maple_dev(device);
423 if (mdev->interval > 0 && atomic_read(&mdev->busy) == 0 &&
424 time_after(jiffies, mdev->when)) {
425 /* bounce if we cannot add */
426 add = maple_add_packet(mdev,
427 be32_to_cpu(mdev->devinfo.function),
1795cf48
AM
428 MAPLE_COMMAND_GETCOND, 1, NULL);
429 if (!add)
b233b28e 430 mdev->when = jiffies + mdev->interval;
b9482378 431 } else {
1795cf48 432 if (time_after(jiffies, maple_pnp_time))
b233b28e
AM
433 /* Ensure we don't have block reads and devinfo
434 * calls interfering with one another - so flag the
435 * device as busy */
436 if (atomic_read(&mdev->busy) == 0) {
437 atomic_set(&mdev->busy, 1);
438 maple_add_packet(mdev, 0,
439 MAPLE_COMMAND_DEVINFO, 0, NULL);
440 }
b9482378 441 }
b9482378 442 return 0;
17be2d2b
AM
443}
444
445/* VBLANK bottom half - implemented via workqueue */
446static void maple_vblank_handler(struct work_struct *work)
447{
b233b28e
AM
448 int x, locking;
449 struct maple_device *mdev;
450
451 if (!maple_dma_done())
b9482378 452 return;
1795cf48 453
c0537844 454 __raw_writel(0, MAPLE_ENABLE);
1795cf48 455
b233b28e
AM
456 if (!list_empty(&maple_sentq))
457 goto finish;
458
459 /*
460 * Set up essential commands - to fetch data and
461 * check devices are still present
462 */
b9482378 463 bus_for_each_dev(&maple_bus_type, NULL, NULL,
b233b28e
AM
464 setup_maple_commands);
465
466 if (time_after(jiffies, maple_pnp_time)) {
467 /*
468 * Scan the empty ports - bus is flakey and may have
469 * mis-reported emptyness
470 */
471 for (x = 0; x < MAPLE_PORTS; x++) {
472 if (checked[x] && empty[x]) {
473 mdev = baseunits[x];
474 if (!mdev)
475 break;
476 atomic_set(&mdev->busy, 1);
477 locking = maple_add_packet(mdev, 0,
478 MAPLE_COMMAND_DEVINFO, 0, NULL);
479 if (!locking)
480 break;
481 }
482 }
1795cf48 483
b9482378 484 maple_pnp_time = jiffies + MAPLE_PNP_INTERVAL;
b9482378 485 }
1795cf48 486
b233b28e
AM
487finish:
488 maple_send();
17be2d2b
AM
489}
490
b233b28e 491/* handle devices added via hotplugs - placing them on queue for DEVINFO */
17be2d2b
AM
492static void maple_map_subunits(struct maple_device *mdev, int submask)
493{
b9482378
AM
494 int retval, k, devcheck;
495 struct maple_device *mdev_add;
496 struct maple_device_specify ds;
497
1795cf48 498 ds.port = mdev->port;
b9482378 499 for (k = 0; k < 5; k++) {
b9482378
AM
500 ds.unit = k + 1;
501 retval =
502 bus_for_each_dev(&maple_bus_type, NULL, &ds,
b233b28e 503 check_maple_device);
b9482378
AM
504 if (retval) {
505 submask = submask >> 1;
506 continue;
507 }
508 devcheck = submask & 0x01;
509 if (devcheck) {
510 mdev_add = maple_alloc_dev(mdev->port, k + 1);
511 if (!mdev_add)
512 return;
b233b28e 513 atomic_set(&mdev_add->busy, 1);
1795cf48
AM
514 maple_add_packet(mdev_add, 0, MAPLE_COMMAND_DEVINFO,
515 0, NULL);
516 /* mark that we are checking sub devices */
b9482378
AM
517 scanning = 1;
518 }
519 submask = submask >> 1;
520 }
17be2d2b
AM
521}
522
523/* mark a device as removed */
524static void maple_clean_submap(struct maple_device *mdev)
525{
b9482378 526 int killbit;
17be2d2b 527
b9482378
AM
528 killbit = (mdev->unit > 0 ? (1 << (mdev->unit - 1)) & 0x1f : 0x20);
529 killbit = ~killbit;
530 killbit &= 0xFF;
531 subdevice_map[mdev->port] = subdevice_map[mdev->port] & killbit;
17be2d2b
AM
532}
533
534/* handle empty port or hotplug removal */
b233b28e
AM
535static void maple_response_none(struct maple_device *mdev)
536{
537 maple_clean_submap(mdev);
538
539 if (likely(mdev->unit != 0)) {
540 /*
541 * Block devices play up
542 * and give the impression they have
543 * been removed even when still in place or
544 * trip the mtd layer when they have
545 * really gone - this code traps that eventuality
546 * and ensures we aren't overloaded with useless
547 * error messages
548 */
549 if (mdev->can_unload) {
550 if (!mdev->can_unload(mdev)) {
551 atomic_set(&mdev->busy, 2);
552 wake_up(&mdev->maple_wait);
553 return;
554 }
555 }
556
557 dev_info(&mdev->dev, "detaching device at (%d, %d)\n",
558 mdev->port, mdev->unit);
b9482378
AM
559 maple_detach_driver(mdev);
560 return;
b233b28e
AM
561 } else {
562 if (!started || !fullscan) {
563 if (checked[mdev->port] == false) {
564 checked[mdev->port] = true;
565 empty[mdev->port] = true;
566 dev_info(&mdev->dev, "no devices"
567 " to port %d\n", mdev->port);
568 }
569 return;
bd496669 570 }
b9482378 571 }
b233b28e
AM
572 /* Some hardware devices generate false detach messages on unit 0 */
573 atomic_set(&mdev->busy, 0);
17be2d2b
AM
574}
575
576/* preprocess hotplugs or scans */
577static void maple_response_devinfo(struct maple_device *mdev,
b9482378 578 char *recvbuf)
17be2d2b 579{
b9482378 580 char submask;
bd496669
AM
581 if (!started || (scanning == 2) || !fullscan) {
582 if ((mdev->unit == 0) && (checked[mdev->port] == false)) {
583 checked[mdev->port] = true;
584 maple_attach_driver(mdev);
585 } else {
586 if (mdev->unit != 0)
587 maple_attach_driver(mdev);
b233b28e
AM
588 if (mdev->unit == 0) {
589 empty[mdev->port] = false;
590 maple_attach_driver(mdev);
591 }
bd496669 592 }
b9482378
AM
593 }
594 if (mdev->unit == 0) {
595 submask = recvbuf[2] & 0x1F;
596 if (submask ^ subdevice_map[mdev->port]) {
597 maple_map_subunits(mdev, submask);
598 subdevice_map[mdev->port] = submask;
599 }
600 }
17be2d2b
AM
601}
602
b233b28e
AM
603static void maple_response_fileerr(struct maple_device *mdev, void *recvbuf)
604{
605 if (mdev->fileerr_handler) {
606 mdev->fileerr_handler(mdev, recvbuf);
607 return;
608 } else
609 dev_warn(&mdev->dev, "device at (%d, %d) reports"
610 "file error 0x%X\n", mdev->port, mdev->unit,
611 ((int *)recvbuf)[1]);
612}
613
1795cf48
AM
614static void maple_port_rescan(void)
615{
616 int i;
617 struct maple_device *mdev;
618
619 fullscan = 1;
620 for (i = 0; i < MAPLE_PORTS; i++) {
621 if (checked[i] == false) {
622 fullscan = 0;
623 mdev = baseunits[i];
1795cf48
AM
624 maple_add_packet(mdev, 0, MAPLE_COMMAND_DEVINFO,
625 0, NULL);
626 }
627 }
628}
629
17be2d2b
AM
630/* maple dma end bottom half - implemented via workqueue */
631static void maple_dma_handler(struct work_struct *work)
632{
b9482378 633 struct mapleq *mq, *nmq;
b233b28e 634 struct maple_device *mdev;
b9482378
AM
635 char *recvbuf;
636 enum maple_code code;
637
638 if (!maple_dma_done())
639 return;
c0537844 640 __raw_writel(0, MAPLE_ENABLE);
b9482378
AM
641 if (!list_empty(&maple_sentq)) {
642 list_for_each_entry_safe(mq, nmq, &maple_sentq, list) {
b233b28e
AM
643 mdev = mq->dev;
644 recvbuf = mq->recvbuf->buf;
645 dma_cache_sync(&mdev->dev, recvbuf, 0x400,
646 DMA_FROM_DEVICE);
b9482378 647 code = recvbuf[0];
1795cf48 648 kfree(mq->sendbuf);
1795cf48 649 list_del_init(&mq->list);
b9482378
AM
650 switch (code) {
651 case MAPLE_RESPONSE_NONE:
b233b28e 652 maple_response_none(mdev);
b9482378
AM
653 break;
654
655 case MAPLE_RESPONSE_DEVINFO:
b233b28e
AM
656 maple_response_devinfo(mdev, recvbuf);
657 atomic_set(&mdev->busy, 0);
b9482378
AM
658 break;
659
660 case MAPLE_RESPONSE_DATATRF:
b233b28e
AM
661 if (mdev->callback)
662 mdev->callback(mq);
663 atomic_set(&mdev->busy, 0);
664 wake_up(&mdev->maple_wait);
b9482378
AM
665 break;
666
667 case MAPLE_RESPONSE_FILEERR:
b233b28e
AM
668 maple_response_fileerr(mdev, recvbuf);
669 atomic_set(&mdev->busy, 0);
670 wake_up(&mdev->maple_wait);
671 break;
672
b9482378
AM
673 case MAPLE_RESPONSE_AGAIN:
674 case MAPLE_RESPONSE_BADCMD:
675 case MAPLE_RESPONSE_BADFUNC:
b233b28e
AM
676 dev_warn(&mdev->dev, "non-fatal error"
677 " 0x%X at (%d, %d)\n", code,
678 mdev->port, mdev->unit);
679 atomic_set(&mdev->busy, 0);
b9482378
AM
680 break;
681
682 case MAPLE_RESPONSE_ALLINFO:
b233b28e
AM
683 dev_notice(&mdev->dev, "extended"
684 " device information request for (%d, %d)"
685 " but call is not supported\n", mdev->port,
686 mdev->unit);
687 atomic_set(&mdev->busy, 0);
b9482378
AM
688 break;
689
690 case MAPLE_RESPONSE_OK:
b233b28e
AM
691 atomic_set(&mdev->busy, 0);
692 wake_up(&mdev->maple_wait);
b9482378
AM
693 break;
694
695 default:
696 break;
697 }
698 }
1795cf48 699 /* if scanning is 1 then we have subdevices to check */
b9482378
AM
700 if (scanning == 1) {
701 maple_send();
702 scanning = 2;
703 } else
704 scanning = 0;
1795cf48
AM
705 /*check if we have actually tested all ports yet */
706 if (!fullscan)
707 maple_port_rescan();
708 /* mark that we have been through the first scan */
b233b28e 709 started = 1;
b9482378 710 }
b233b28e 711 maple_send();
17be2d2b
AM
712}
713
b233b28e 714static irqreturn_t maple_dma_interrupt(int irq, void *dev_id)
17be2d2b 715{
b9482378
AM
716 /* Load everything into the bottom half */
717 schedule_work(&maple_dma_process);
718 return IRQ_HANDLED;
17be2d2b
AM
719}
720
b233b28e 721static irqreturn_t maple_vblank_interrupt(int irq, void *dev_id)
17be2d2b 722{
b9482378
AM
723 schedule_work(&maple_vblank_process);
724 return IRQ_HANDLED;
17be2d2b
AM
725}
726
17be2d2b
AM
727static int maple_set_dma_interrupt_handler(void)
728{
b233b28e
AM
729 return request_irq(HW_EVENT_MAPLE_DMA, maple_dma_interrupt,
730 IRQF_SHARED, "maple bus DMA", &maple_unsupported_device);
17be2d2b
AM
731}
732
733static int maple_set_vblank_interrupt_handler(void)
734{
b233b28e
AM
735 return request_irq(HW_EVENT_VSYNC, maple_vblank_interrupt,
736 IRQF_SHARED, "maple bus VBLANK", &maple_unsupported_device);
17be2d2b
AM
737}
738
739static int maple_get_dma_buffer(void)
740{
b9482378
AM
741 maple_sendbuf =
742 (void *) __get_free_pages(GFP_KERNEL | __GFP_ZERO,
743 MAPLE_DMA_PAGES);
744 if (!maple_sendbuf)
745 return -ENOMEM;
746 return 0;
17be2d2b
AM
747}
748
b233b28e 749static int maple_match_bus_driver(struct device *devptr,
b9482378 750 struct device_driver *drvptr)
17be2d2b 751{
63870295
PM
752 struct maple_driver *maple_drv = to_maple_driver(drvptr);
753 struct maple_device *maple_dev = to_maple_dev(devptr);
b9482378 754
b9482378
AM
755 /* Trap empty port case */
756 if (maple_dev->devinfo.function == 0xFFFFFFFF)
757 return 0;
758 else if (maple_dev->devinfo.function &
1795cf48 759 cpu_to_be32(maple_drv->function))
b9482378
AM
760 return 1;
761 return 0;
17be2d2b
AM
762}
763
b9482378
AM
764static int maple_bus_uevent(struct device *dev,
765 struct kobj_uevent_env *env)
17be2d2b 766{
b9482378 767 return 0;
17be2d2b
AM
768}
769
770static void maple_bus_release(struct device *dev)
771{
772}
773
b233b28e 774static struct maple_driver maple_unsupported_device = {
b9482378 775 .drv = {
b233b28e 776 .name = "maple_unsupported_device",
b9482378 777 .bus = &maple_bus_type,
b3c69e24 778 },
17be2d2b 779};
ee665ecc 780/*
b233b28e
AM
781 * maple_bus_type - core maple bus structure
782 */
17be2d2b 783struct bus_type maple_bus_type = {
b9482378 784 .name = "maple",
b233b28e 785 .match = maple_match_bus_driver,
b9482378 786 .uevent = maple_bus_uevent,
17be2d2b
AM
787};
788EXPORT_SYMBOL_GPL(maple_bus_type);
789
790static struct device maple_bus = {
93fde774 791 .init_name = "maple",
b9482378 792 .release = maple_bus_release,
17be2d2b
AM
793};
794
795static int __init maple_bus_init(void)
796{
b9482378
AM
797 int retval, i;
798 struct maple_device *mdev[MAPLE_PORTS];
b233b28e 799
c0537844 800 __raw_writel(0, MAPLE_ENABLE);
b9482378
AM
801
802 retval = device_register(&maple_bus);
803 if (retval)
804 goto cleanup;
805
806 retval = bus_register(&maple_bus_type);
807 if (retval)
808 goto cleanup_device;
809
b233b28e 810 retval = driver_register(&maple_unsupported_device.drv);
b9482378
AM
811 if (retval)
812 goto cleanup_bus;
813
814 /* allocate memory for maple bus dma */
815 retval = maple_get_dma_buffer();
816 if (retval) {
b233b28e 817 dev_err(&maple_bus, "failed to allocate DMA buffers\n");
b9482378
AM
818 goto cleanup_basic;
819 }
820
821 /* set up DMA interrupt handler */
822 retval = maple_set_dma_interrupt_handler();
823 if (retval) {
b233b28e
AM
824 dev_err(&maple_bus, "bus failed to grab maple "
825 "DMA IRQ\n");
b9482378
AM
826 goto cleanup_dma;
827 }
828
829 /* set up VBLANK interrupt handler */
830 retval = maple_set_vblank_interrupt_handler();
831 if (retval) {
b233b28e 832 dev_err(&maple_bus, "bus failed to grab VBLANK IRQ\n");
b9482378
AM
833 goto cleanup_irq;
834 }
835
b233b28e 836 maple_queue_cache = KMEM_CACHE(maple_buffer, SLAB_HWCACHE_ALIGN);
b9482378
AM
837
838 if (!maple_queue_cache)
839 goto cleanup_bothirqs;
840
1795cf48
AM
841 INIT_LIST_HEAD(&maple_waitq);
842 INIT_LIST_HEAD(&maple_sentq);
843
b9482378
AM
844 /* setup maple ports */
845 for (i = 0; i < MAPLE_PORTS; i++) {
bd496669 846 checked[i] = false;
b233b28e 847 empty[i] = false;
b9482378
AM
848 mdev[i] = maple_alloc_dev(i, 0);
849 if (!mdev[i]) {
850 while (i-- > 0)
851 maple_free_dev(mdev[i]);
852 goto cleanup_cache;
853 }
b233b28e
AM
854 baseunits[i] = mdev[i];
855 atomic_set(&mdev[i]->busy, 1);
1795cf48 856 maple_add_packet(mdev[i], 0, MAPLE_COMMAND_DEVINFO, 0, NULL);
b9482378
AM
857 subdevice_map[i] = 0;
858 }
859
b233b28e
AM
860 maple_pnp_time = jiffies + HZ;
861 /* prepare initial queue */
b9482378 862 maple_send();
b233b28e 863 dev_info(&maple_bus, "bus core now registered\n");
b9482378
AM
864
865 return 0;
866
b3c69e24 867cleanup_cache:
b9482378
AM
868 kmem_cache_destroy(maple_queue_cache);
869
b3c69e24 870cleanup_bothirqs:
b9482378
AM
871 free_irq(HW_EVENT_VSYNC, 0);
872
b3c69e24 873cleanup_irq:
b9482378
AM
874 free_irq(HW_EVENT_MAPLE_DMA, 0);
875
b3c69e24 876cleanup_dma:
b9482378
AM
877 free_pages((unsigned long) maple_sendbuf, MAPLE_DMA_PAGES);
878
b3c69e24 879cleanup_basic:
b233b28e 880 driver_unregister(&maple_unsupported_device.drv);
b9482378 881
b3c69e24 882cleanup_bus:
b9482378
AM
883 bus_unregister(&maple_bus_type);
884
b3c69e24 885cleanup_device:
b9482378
AM
886 device_unregister(&maple_bus);
887
b3c69e24 888cleanup:
b233b28e 889 printk(KERN_ERR "Maple bus registration failed\n");
b9482378 890 return retval;
17be2d2b 891}
b3c69e24
AM
892/* Push init to later to ensure hardware gets detected */
893fs_initcall(maple_bus_init);