blob: 6eb80acea379fe2d8c132900d2250336f6c0e00c [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * linux/arch/arm/kernel/ecard.c
3 *
4 * Copyright 1995-2001 Russell King
5 *
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License version 2 as
8 * published by the Free Software Foundation.
9 *
10 * Find all installed expansion cards, and handle interrupts from them.
11 *
12 * Created from information from Acorns RiscOS3 PRMs
13 *
14 * 08-Dec-1996 RMK Added code for the 9'th expansion card - the ether
15 * podule slot.
16 * 06-May-1997 RMK Added blacklist for cards whose loader doesn't work.
17 * 12-Sep-1997 RMK Created new handling of interrupt enables/disables
18 * - cards can now register their own routine to control
19 * interrupts (recommended).
20 * 29-Sep-1997 RMK Expansion card interrupt hardware not being re-enabled
21 * on reset from Linux. (Caused cards not to respond
22 * under RiscOS without hard reset).
23 * 15-Feb-1998 RMK Added DMA support
24 * 12-Sep-1998 RMK Added EASI support
25 * 10-Jan-1999 RMK Run loaders in a simulated RISC OS environment.
26 * 17-Apr-1999 RMK Support for EASI Type C cycles.
27 */
28#define ECARD_C
29
Linus Torvalds1da177e2005-04-16 15:20:36 -070030#include <linux/module.h>
31#include <linux/kernel.h>
32#include <linux/types.h>
33#include <linux/sched.h>
34#include <linux/interrupt.h>
35#include <linux/completion.h>
36#include <linux/reboot.h>
37#include <linux/mm.h>
38#include <linux/slab.h>
39#include <linux/proc_fs.h>
40#include <linux/device.h>
41#include <linux/init.h>
Arjan van de Ven00431702006-01-12 18:42:23 +000042#include <linux/mutex.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070043
44#include <asm/dma.h>
45#include <asm/ecard.h>
46#include <asm/hardware.h>
47#include <asm/io.h>
48#include <asm/irq.h>
49#include <asm/mmu_context.h>
50#include <asm/mach/irq.h>
51#include <asm/tlbflush.h>
52
53#ifndef CONFIG_ARCH_RPC
54#define HAVE_EXPMASK
55#endif
56
57struct ecard_request {
58 void (*fn)(struct ecard_request *);
59 ecard_t *ec;
60 unsigned int address;
61 unsigned int length;
62 unsigned int use_loader;
63 void *buffer;
64 struct completion *complete;
65};
66
67struct expcard_blacklist {
68 unsigned short manufacturer;
69 unsigned short product;
70 const char *type;
71};
72
73static ecard_t *cards;
74static ecard_t *slot_to_expcard[MAX_ECARDS];
75static unsigned int ectcr;
76#ifdef HAS_EXPMASK
77static unsigned int have_expmask;
78#endif
79
80/* List of descriptions of cards which don't have an extended
81 * identification, or chunk directories containing a description.
82 */
83static struct expcard_blacklist __initdata blacklist[] = {
84 { MANU_ACORN, PROD_ACORN_ETHER1, "Acorn Ether1" }
85};
86
87asmlinkage extern int
88ecard_loader_reset(unsigned long base, loader_t loader);
89asmlinkage extern int
90ecard_loader_read(int off, unsigned long base, loader_t loader);
91
92static inline unsigned short ecard_getu16(unsigned char *v)
93{
94 return v[0] | v[1] << 8;
95}
96
97static inline signed long ecard_gets24(unsigned char *v)
98{
99 return v[0] | v[1] << 8 | v[2] << 16 | ((v[2] & 0x80) ? 0xff000000 : 0);
100}
101
102static inline ecard_t *slot_to_ecard(unsigned int slot)
103{
104 return slot < MAX_ECARDS ? slot_to_expcard[slot] : NULL;
105}
106
107/* ===================== Expansion card daemon ======================== */
108/*
109 * Since the loader programs on the expansion cards need to be run
110 * in a specific environment, create a separate task with this
111 * environment up, and pass requests to this task as and when we
112 * need to.
113 *
114 * This should allow 99% of loaders to be called from Linux.
115 *
116 * From a security standpoint, we trust the card vendors. This
117 * may be a misplaced trust.
118 */
119static void ecard_task_reset(struct ecard_request *req)
120{
121 struct expansion_card *ec = req->ec;
122 struct resource *res;
123
124 res = ec->slot_no == 8
125 ? &ec->resource[ECARD_RES_MEMC]
126 : ec->type == ECARD_EASI
127 ? &ec->resource[ECARD_RES_EASI]
128 : &ec->resource[ECARD_RES_IOCSYNC];
129
130 ecard_loader_reset(res->start, ec->loader);
131}
132
133static void ecard_task_readbytes(struct ecard_request *req)
134{
135 struct expansion_card *ec = req->ec;
136 unsigned char *buf = req->buffer;
137 unsigned int len = req->length;
138 unsigned int off = req->address;
139
140 if (ec->slot_no == 8) {
141 void __iomem *base = (void __iomem *)
142 ec->resource[ECARD_RES_MEMC].start;
143
144 /*
145 * The card maintains an index which increments the address
146 * into a 4096-byte page on each access. We need to keep
147 * track of the counter.
148 */
149 static unsigned int index;
150 unsigned int page;
151
152 page = (off >> 12) * 4;
153 if (page > 256 * 4)
154 return;
155
156 off &= 4095;
157
158 /*
159 * If we are reading offset 0, or our current index is
160 * greater than the offset, reset the hardware index counter.
161 */
162 if (off == 0 || index > off) {
163 writeb(0, base);
164 index = 0;
165 }
166
167 /*
168 * Increment the hardware index counter until we get to the
169 * required offset. The read bytes are discarded.
170 */
171 while (index < off) {
172 readb(base + page);
173 index += 1;
174 }
175
176 while (len--) {
177 *buf++ = readb(base + page);
178 index += 1;
179 }
180 } else {
181 unsigned long base = (ec->type == ECARD_EASI
182 ? &ec->resource[ECARD_RES_EASI]
183 : &ec->resource[ECARD_RES_IOCSYNC])->start;
184 void __iomem *pbase = (void __iomem *)base;
185
186 if (!req->use_loader || !ec->loader) {
187 off *= 4;
188 while (len--) {
189 *buf++ = readb(pbase + off);
190 off += 4;
191 }
192 } else {
193 while(len--) {
194 /*
195 * The following is required by some
196 * expansion card loader programs.
197 */
198 *(unsigned long *)0x108 = 0;
199 *buf++ = ecard_loader_read(off++, base,
200 ec->loader);
201 }
202 }
203 }
204
205}
206
207static DECLARE_WAIT_QUEUE_HEAD(ecard_wait);
208static struct ecard_request *ecard_req;
Arjan van de Ven00431702006-01-12 18:42:23 +0000209static DEFINE_MUTEX(ecard_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700210
211/*
212 * Set up the expansion card daemon's page tables.
213 */
214static void ecard_init_pgtables(struct mm_struct *mm)
215{
216 struct vm_area_struct vma;
217
218 /* We want to set up the page tables for the following mapping:
219 * Virtual Physical
220 * 0x03000000 0x03000000
221 * 0x03010000 unmapped
222 * 0x03210000 0x03210000
223 * 0x03400000 unmapped
224 * 0x08000000 0x08000000
225 * 0x10000000 unmapped
226 *
227 * FIXME: we don't follow this 100% yet.
228 */
229 pgd_t *src_pgd, *dst_pgd;
230
231 src_pgd = pgd_offset(mm, (unsigned long)IO_BASE);
232 dst_pgd = pgd_offset(mm, IO_START);
233
234 memcpy(dst_pgd, src_pgd, sizeof(pgd_t) * (IO_SIZE / PGDIR_SIZE));
235
236 src_pgd = pgd_offset(mm, EASI_BASE);
237 dst_pgd = pgd_offset(mm, EASI_START);
238
239 memcpy(dst_pgd, src_pgd, sizeof(pgd_t) * (EASI_SIZE / PGDIR_SIZE));
240
241 vma.vm_mm = mm;
242
243 flush_tlb_range(&vma, IO_START, IO_START + IO_SIZE);
244 flush_tlb_range(&vma, EASI_START, EASI_START + EASI_SIZE);
245}
246
247static int ecard_init_mm(void)
248{
249 struct mm_struct * mm = mm_alloc();
250 struct mm_struct *active_mm = current->active_mm;
251
252 if (!mm)
253 return -ENOMEM;
254
255 current->mm = mm;
256 current->active_mm = mm;
257 activate_mm(active_mm, mm);
258 mmdrop(active_mm);
259 ecard_init_pgtables(mm);
260 return 0;
261}
262
263static int
264ecard_task(void * unused)
265{
266 daemonize("kecardd");
267
268 /*
269 * Allocate a mm. We're not a lazy-TLB kernel task since we need
270 * to set page table entries where the user space would be. Note
271 * that this also creates the page tables. Failure is not an
272 * option here.
273 */
274 if (ecard_init_mm())
275 panic("kecardd: unable to alloc mm\n");
276
277 while (1) {
278 struct ecard_request *req;
279
280 wait_event_interruptible(ecard_wait, ecard_req != NULL);
281
282 req = xchg(&ecard_req, NULL);
283 if (req != NULL) {
284 req->fn(req);
285 complete(req->complete);
286 }
287 }
288}
289
290/*
291 * Wake the expansion card daemon to action our request.
292 *
293 * FIXME: The test here is not sufficient to detect if the
294 * kcardd is running.
295 */
296static void ecard_call(struct ecard_request *req)
297{
Peter Zijlstra6e9a4732006-09-30 23:28:10 -0700298 DECLARE_COMPLETION_ONSTACK(completion);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700299
300 req->complete = &completion;
301
Arjan van de Ven00431702006-01-12 18:42:23 +0000302 mutex_lock(&ecard_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700303 ecard_req = req;
304 wake_up(&ecard_wait);
305
306 /*
307 * Now wait for kecardd to run.
308 */
309 wait_for_completion(&completion);
Arjan van de Ven00431702006-01-12 18:42:23 +0000310 mutex_unlock(&ecard_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700311}
312
313/* ======================= Mid-level card control ===================== */
314
315static void
316ecard_readbytes(void *addr, ecard_t *ec, int off, int len, int useld)
317{
318 struct ecard_request req;
319
320 req.fn = ecard_task_readbytes;
321 req.ec = ec;
322 req.address = off;
323 req.length = len;
324 req.use_loader = useld;
325 req.buffer = addr;
326
327 ecard_call(&req);
328}
329
330int ecard_readchunk(struct in_chunk_dir *cd, ecard_t *ec, int id, int num)
331{
332 struct ex_chunk_dir excd;
333 int index = 16;
334 int useld = 0;
335
336 if (!ec->cid.cd)
337 return 0;
338
339 while(1) {
340 ecard_readbytes(&excd, ec, index, 8, useld);
341 index += 8;
342 if (c_id(&excd) == 0) {
343 if (!useld && ec->loader) {
344 useld = 1;
345 index = 0;
346 continue;
347 }
348 return 0;
349 }
350 if (c_id(&excd) == 0xf0) { /* link */
351 index = c_start(&excd);
352 continue;
353 }
354 if (c_id(&excd) == 0x80) { /* loader */
355 if (!ec->loader) {
Robert P. J. Day5cbded52006-12-13 00:35:56 -0800356 ec->loader = kmalloc(c_len(&excd),
Linus Torvalds1da177e2005-04-16 15:20:36 -0700357 GFP_KERNEL);
358 if (ec->loader)
359 ecard_readbytes(ec->loader, ec,
360 (int)c_start(&excd),
361 c_len(&excd), useld);
362 else
363 return 0;
364 }
365 continue;
366 }
367 if (c_id(&excd) == id && num-- == 0)
368 break;
369 }
370
371 if (c_id(&excd) & 0x80) {
372 switch (c_id(&excd) & 0x70) {
373 case 0x70:
374 ecard_readbytes((unsigned char *)excd.d.string, ec,
375 (int)c_start(&excd), c_len(&excd),
376 useld);
377 break;
378 case 0x00:
379 break;
380 }
381 }
382 cd->start_offset = c_start(&excd);
383 memcpy(cd->d.string, excd.d.string, 256);
384 return 1;
385}
386
387/* ======================= Interrupt control ============================ */
388
389static void ecard_def_irq_enable(ecard_t *ec, int irqnr)
390{
391#ifdef HAS_EXPMASK
392 if (irqnr < 4 && have_expmask) {
393 have_expmask |= 1 << irqnr;
394 __raw_writeb(have_expmask, EXPMASK_ENABLE);
395 }
396#endif
397}
398
399static void ecard_def_irq_disable(ecard_t *ec, int irqnr)
400{
401#ifdef HAS_EXPMASK
402 if (irqnr < 4 && have_expmask) {
403 have_expmask &= ~(1 << irqnr);
404 __raw_writeb(have_expmask, EXPMASK_ENABLE);
405 }
406#endif
407}
408
409static int ecard_def_irq_pending(ecard_t *ec)
410{
411 return !ec->irqmask || readb(ec->irqaddr) & ec->irqmask;
412}
413
414static void ecard_def_fiq_enable(ecard_t *ec, int fiqnr)
415{
416 panic("ecard_def_fiq_enable called - impossible");
417}
418
419static void ecard_def_fiq_disable(ecard_t *ec, int fiqnr)
420{
421 panic("ecard_def_fiq_disable called - impossible");
422}
423
424static int ecard_def_fiq_pending(ecard_t *ec)
425{
426 return !ec->fiqmask || readb(ec->fiqaddr) & ec->fiqmask;
427}
428
429static expansioncard_ops_t ecard_default_ops = {
430 ecard_def_irq_enable,
431 ecard_def_irq_disable,
432 ecard_def_irq_pending,
433 ecard_def_fiq_enable,
434 ecard_def_fiq_disable,
435 ecard_def_fiq_pending
436};
437
438/*
439 * Enable and disable interrupts from expansion cards.
440 * (interrupts are disabled for these functions).
441 *
442 * They are not meant to be called directly, but via enable/disable_irq.
443 */
444static void ecard_irq_unmask(unsigned int irqnr)
445{
446 ecard_t *ec = slot_to_ecard(irqnr - 32);
447
448 if (ec) {
449 if (!ec->ops)
450 ec->ops = &ecard_default_ops;
451
452 if (ec->claimed && ec->ops->irqenable)
453 ec->ops->irqenable(ec, irqnr);
454 else
455 printk(KERN_ERR "ecard: rejecting request to "
456 "enable IRQs for %d\n", irqnr);
457 }
458}
459
460static void ecard_irq_mask(unsigned int irqnr)
461{
462 ecard_t *ec = slot_to_ecard(irqnr - 32);
463
464 if (ec) {
465 if (!ec->ops)
466 ec->ops = &ecard_default_ops;
467
468 if (ec->ops && ec->ops->irqdisable)
469 ec->ops->irqdisable(ec, irqnr);
470 }
471}
472
David Brownell38c677c2006-08-01 22:26:25 +0100473static struct irq_chip ecard_chip = {
474 .name = "ECARD",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700475 .ack = ecard_irq_mask,
476 .mask = ecard_irq_mask,
477 .unmask = ecard_irq_unmask,
478};
479
480void ecard_enablefiq(unsigned int fiqnr)
481{
482 ecard_t *ec = slot_to_ecard(fiqnr);
483
484 if (ec) {
485 if (!ec->ops)
486 ec->ops = &ecard_default_ops;
487
488 if (ec->claimed && ec->ops->fiqenable)
489 ec->ops->fiqenable(ec, fiqnr);
490 else
491 printk(KERN_ERR "ecard: rejecting request to "
492 "enable FIQs for %d\n", fiqnr);
493 }
494}
495
496void ecard_disablefiq(unsigned int fiqnr)
497{
498 ecard_t *ec = slot_to_ecard(fiqnr);
499
500 if (ec) {
501 if (!ec->ops)
502 ec->ops = &ecard_default_ops;
503
504 if (ec->ops->fiqdisable)
505 ec->ops->fiqdisable(ec, fiqnr);
506 }
507}
508
509static void ecard_dump_irq_state(void)
510{
511 ecard_t *ec;
512
513 printk("Expansion card IRQ state:\n");
514
515 for (ec = cards; ec; ec = ec->next) {
516 if (ec->slot_no == 8)
517 continue;
518
519 printk(" %d: %sclaimed, ",
520 ec->slot_no, ec->claimed ? "" : "not ");
521
522 if (ec->ops && ec->ops->irqpending &&
523 ec->ops != &ecard_default_ops)
524 printk("irq %spending\n",
525 ec->ops->irqpending(ec) ? "" : "not ");
526 else
527 printk("irqaddr %p, mask = %02X, status = %02X\n",
528 ec->irqaddr, ec->irqmask, readb(ec->irqaddr));
529 }
530}
531
Russell King10dd5ce2006-11-23 11:41:32 +0000532static void ecard_check_lockup(struct irq_desc *desc)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700533{
534 static unsigned long last;
535 static int lockup;
536
537 /*
538 * If the timer interrupt has not run since the last million
539 * unrecognised expansion card interrupts, then there is
540 * something seriously wrong. Disable the expansion card
541 * interrupts so at least we can continue.
542 *
543 * Maybe we ought to start a timer to re-enable them some time
544 * later?
545 */
546 if (last == jiffies) {
547 lockup += 1;
548 if (lockup > 1000000) {
549 printk(KERN_ERR "\nInterrupt lockup detected - "
550 "disabling all expansion card interrupts\n");
551
552 desc->chip->mask(IRQ_EXPANSIONCARD);
553 ecard_dump_irq_state();
554 }
555 } else
556 lockup = 0;
557
558 /*
559 * If we did not recognise the source of this interrupt,
560 * warn the user, but don't flood the user with these messages.
561 */
562 if (!last || time_after(jiffies, last + 5*HZ)) {
563 last = jiffies;
564 printk(KERN_WARNING "Unrecognised interrupt from backplane\n");
565 ecard_dump_irq_state();
566 }
567}
568
569static void
Russell King10dd5ce2006-11-23 11:41:32 +0000570ecard_irq_handler(unsigned int irq, struct irq_desc *desc)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700571{
572 ecard_t *ec;
573 int called = 0;
574
575 desc->chip->mask(irq);
576 for (ec = cards; ec; ec = ec->next) {
577 int pending;
578
579 if (!ec->claimed || ec->irq == NO_IRQ || ec->slot_no == 8)
580 continue;
581
582 if (ec->ops && ec->ops->irqpending)
583 pending = ec->ops->irqpending(ec);
584 else
585 pending = ecard_default_ops.irqpending(ec);
586
587 if (pending) {
Russell King10dd5ce2006-11-23 11:41:32 +0000588 struct irq_desc *d = irq_desc + ec->irq;
Linus Torvalds0cd61b62006-10-06 10:53:39 -0700589 desc_handle_irq(ec->irq, d);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700590 called ++;
591 }
592 }
593 desc->chip->unmask(irq);
594
595 if (called == 0)
596 ecard_check_lockup(desc);
597}
598
599#ifdef HAS_EXPMASK
600static unsigned char priority_masks[] =
601{
602 0xf0, 0xf1, 0xf3, 0xf7, 0xff, 0xff, 0xff, 0xff
603};
604
605static unsigned char first_set[] =
606{
607 0x00, 0x00, 0x01, 0x00, 0x02, 0x00, 0x01, 0x00,
608 0x03, 0x00, 0x01, 0x00, 0x02, 0x00, 0x01, 0x00
609};
610
611static void
Russell King10dd5ce2006-11-23 11:41:32 +0000612ecard_irqexp_handler(unsigned int irq, struct irq_desc *desc)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700613{
614 const unsigned int statusmask = 15;
615 unsigned int status;
616
617 status = __raw_readb(EXPMASK_STATUS) & statusmask;
618 if (status) {
619 unsigned int slot = first_set[status];
620 ecard_t *ec = slot_to_ecard(slot);
621
622 if (ec->claimed) {
Thomas Gleixner33e39f12006-07-01 22:32:36 +0100623 struct irq_desc *d = irq_desc + ec->irq;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700624 /*
625 * this ugly code is so that we can operate a
626 * prioritorising system:
627 *
628 * Card 0 highest priority
629 * Card 1
630 * Card 2
631 * Card 3 lowest priority
632 *
633 * Serial cards should go in 0/1, ethernet/scsi in 2/3
634 * otherwise you will lose serial data at high speeds!
635 */
Linus Torvalds0cd61b62006-10-06 10:53:39 -0700636 desc_handle_irq(ec->irq, d);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700637 } else {
638 printk(KERN_WARNING "card%d: interrupt from unclaimed "
639 "card???\n", slot);
640 have_expmask &= ~(1 << slot);
641 __raw_writeb(have_expmask, EXPMASK_ENABLE);
642 }
643 } else
644 printk(KERN_WARNING "Wild interrupt from backplane (masks)\n");
645}
646
647static int __init ecard_probeirqhw(void)
648{
649 ecard_t *ec;
650 int found;
651
652 __raw_writeb(0x00, EXPMASK_ENABLE);
653 __raw_writeb(0xff, EXPMASK_STATUS);
654 found = (__raw_readb(EXPMASK_STATUS) & 15) == 0;
655 __raw_writeb(0xff, EXPMASK_ENABLE);
656
657 if (found) {
658 printk(KERN_DEBUG "Expansion card interrupt "
659 "management hardware found\n");
660
661 /* for each card present, set a bit to '1' */
662 have_expmask = 0x80000000;
663
664 for (ec = cards; ec; ec = ec->next)
665 have_expmask |= 1 << ec->slot_no;
666
667 __raw_writeb(have_expmask, EXPMASK_ENABLE);
668 }
669
670 return found;
671}
672#else
673#define ecard_irqexp_handler NULL
674#define ecard_probeirqhw() (0)
675#endif
676
677#ifndef IO_EC_MEMC8_BASE
678#define IO_EC_MEMC8_BASE 0
679#endif
680
681unsigned int __ecard_address(ecard_t *ec, card_type_t type, card_speed_t speed)
682{
683 unsigned long address = 0;
684 int slot = ec->slot_no;
685
686 if (ec->slot_no == 8)
687 return IO_EC_MEMC8_BASE;
688
689 ectcr &= ~(1 << slot);
690
691 switch (type) {
692 case ECARD_MEMC:
693 if (slot < 4)
694 address = IO_EC_MEMC_BASE + (slot << 12);
695 break;
696
697 case ECARD_IOC:
698 if (slot < 4)
699 address = IO_EC_IOC_BASE + (slot << 12);
700#ifdef IO_EC_IOC4_BASE
701 else
702 address = IO_EC_IOC4_BASE + ((slot - 4) << 12);
703#endif
704 if (address)
705 address += speed << 17;
706 break;
707
708#ifdef IO_EC_EASI_BASE
709 case ECARD_EASI:
710 address = IO_EC_EASI_BASE + (slot << 22);
711 if (speed == ECARD_FAST)
712 ectcr |= 1 << slot;
713 break;
714#endif
715 default:
716 break;
717 }
718
719#ifdef IOMD_ECTCR
720 iomd_writeb(ectcr, IOMD_ECTCR);
721#endif
722 return address;
723}
724
725static int ecard_prints(char *buffer, ecard_t *ec)
726{
727 char *start = buffer;
728
729 buffer += sprintf(buffer, " %d: %s ", ec->slot_no,
730 ec->type == ECARD_EASI ? "EASI" : " ");
731
732 if (ec->cid.id == 0) {
733 struct in_chunk_dir incd;
734
735 buffer += sprintf(buffer, "[%04X:%04X] ",
736 ec->cid.manufacturer, ec->cid.product);
737
738 if (!ec->card_desc && ec->cid.cd &&
739 ecard_readchunk(&incd, ec, 0xf5, 0)) {
740 ec->card_desc = kmalloc(strlen(incd.d.string)+1, GFP_KERNEL);
741
742 if (ec->card_desc)
743 strcpy((char *)ec->card_desc, incd.d.string);
744 }
745
746 buffer += sprintf(buffer, "%s\n", ec->card_desc ? ec->card_desc : "*unknown*");
747 } else
748 buffer += sprintf(buffer, "Simple card %d\n", ec->cid.id);
749
750 return buffer - start;
751}
752
753static int get_ecard_dev_info(char *buf, char **start, off_t pos, int count)
754{
755 ecard_t *ec = cards;
756 off_t at = 0;
757 int len, cnt;
758
759 cnt = 0;
760 while (ec && count > cnt) {
761 len = ecard_prints(buf, ec);
762 at += len;
763 if (at >= pos) {
764 if (!*start) {
765 *start = buf + (pos - (at - len));
766 cnt = at - pos;
767 } else
768 cnt += len;
769 buf += len;
770 }
771 ec = ec->next;
772 }
773 return (count > cnt) ? cnt : count;
774}
775
776static struct proc_dir_entry *proc_bus_ecard_dir = NULL;
777
778static void ecard_proc_init(void)
779{
780 proc_bus_ecard_dir = proc_mkdir("ecard", proc_bus);
781 create_proc_info_entry("devices", 0, proc_bus_ecard_dir,
782 get_ecard_dev_info);
783}
784
785#define ec_set_resource(ec,nr,st,sz) \
786 do { \
787 (ec)->resource[nr].name = ec->dev.bus_id; \
788 (ec)->resource[nr].start = st; \
789 (ec)->resource[nr].end = (st) + (sz) - 1; \
790 (ec)->resource[nr].flags = IORESOURCE_MEM; \
791 } while (0)
792
793static void __init ecard_free_card(struct expansion_card *ec)
794{
795 int i;
796
797 for (i = 0; i < ECARD_NUM_RESOURCES; i++)
798 if (ec->resource[i].flags)
799 release_resource(&ec->resource[i]);
800
801 kfree(ec);
802}
803
804static struct expansion_card *__init ecard_alloc_card(int type, int slot)
805{
806 struct expansion_card *ec;
807 unsigned long base;
808 int i;
809
Russell Kingd2a02b92006-03-20 19:46:41 +0000810 ec = kzalloc(sizeof(ecard_t), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700811 if (!ec) {
812 ec = ERR_PTR(-ENOMEM);
813 goto nomem;
814 }
815
Linus Torvalds1da177e2005-04-16 15:20:36 -0700816 ec->slot_no = slot;
817 ec->type = type;
818 ec->irq = NO_IRQ;
819 ec->fiq = NO_IRQ;
820 ec->dma = NO_DMA;
821 ec->ops = &ecard_default_ops;
822
823 snprintf(ec->dev.bus_id, sizeof(ec->dev.bus_id), "ecard%d", slot);
824 ec->dev.parent = NULL;
825 ec->dev.bus = &ecard_bus_type;
826 ec->dev.dma_mask = &ec->dma_mask;
827 ec->dma_mask = (u64)0xffffffff;
Russell King69f4f332007-04-02 13:53:15 +0100828 ec->dev.coherent_dma_mask = ec->dma_mask;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700829
830 if (slot < 4) {
831 ec_set_resource(ec, ECARD_RES_MEMC,
832 PODSLOT_MEMC_BASE + (slot << 14),
833 PODSLOT_MEMC_SIZE);
834 base = PODSLOT_IOC0_BASE + (slot << 14);
835 } else
836 base = PODSLOT_IOC4_BASE + ((slot - 4) << 14);
837
838#ifdef CONFIG_ARCH_RPC
839 if (slot < 8) {
840 ec_set_resource(ec, ECARD_RES_EASI,
841 PODSLOT_EASI_BASE + (slot << 24),
842 PODSLOT_EASI_SIZE);
843 }
844
845 if (slot == 8) {
846 ec_set_resource(ec, ECARD_RES_MEMC, NETSLOT_BASE, NETSLOT_SIZE);
847 } else
848#endif
849
850 for (i = 0; i <= ECARD_RES_IOCSYNC - ECARD_RES_IOCSLOW; i++)
851 ec_set_resource(ec, i + ECARD_RES_IOCSLOW,
852 base + (i << 19), PODSLOT_IOC_SIZE);
853
854 for (i = 0; i < ECARD_NUM_RESOURCES; i++) {
855 if (ec->resource[i].flags &&
856 request_resource(&iomem_resource, &ec->resource[i])) {
857 printk(KERN_ERR "%s: resource(s) not available\n",
858 ec->dev.bus_id);
859 ec->resource[i].end -= ec->resource[i].start;
860 ec->resource[i].start = 0;
861 ec->resource[i].flags = 0;
862 }
863 }
864
865 nomem:
866 return ec;
867}
868
Yani Ioannouff381d22005-05-17 06:40:51 -0400869static ssize_t ecard_show_irq(struct device *dev, struct device_attribute *attr, char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700870{
871 struct expansion_card *ec = ECARD_DEV(dev);
872 return sprintf(buf, "%u\n", ec->irq);
873}
874
Yani Ioannouff381d22005-05-17 06:40:51 -0400875static ssize_t ecard_show_dma(struct device *dev, struct device_attribute *attr, char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700876{
877 struct expansion_card *ec = ECARD_DEV(dev);
878 return sprintf(buf, "%u\n", ec->dma);
879}
880
Yani Ioannouff381d22005-05-17 06:40:51 -0400881static ssize_t ecard_show_resources(struct device *dev, struct device_attribute *attr, char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700882{
883 struct expansion_card *ec = ECARD_DEV(dev);
884 char *str = buf;
885 int i;
886
887 for (i = 0; i < ECARD_NUM_RESOURCES; i++)
Russell Kingc9e41432006-07-03 13:29:03 +0100888 str += sprintf(str, "%08x %08x %08lx\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700889 ec->resource[i].start,
890 ec->resource[i].end,
891 ec->resource[i].flags);
892
893 return str - buf;
894}
895
Yani Ioannouff381d22005-05-17 06:40:51 -0400896static ssize_t ecard_show_vendor(struct device *dev, struct device_attribute *attr, char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700897{
898 struct expansion_card *ec = ECARD_DEV(dev);
899 return sprintf(buf, "%u\n", ec->cid.manufacturer);
900}
901
Yani Ioannouff381d22005-05-17 06:40:51 -0400902static ssize_t ecard_show_device(struct device *dev, struct device_attribute *attr, char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700903{
904 struct expansion_card *ec = ECARD_DEV(dev);
905 return sprintf(buf, "%u\n", ec->cid.product);
906}
907
Yani Ioannouff381d22005-05-17 06:40:51 -0400908static ssize_t ecard_show_type(struct device *dev, struct device_attribute *attr, char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700909{
910 struct expansion_card *ec = ECARD_DEV(dev);
911 return sprintf(buf, "%s\n", ec->type == ECARD_EASI ? "EASI" : "IOC");
912}
913
914static struct device_attribute ecard_dev_attrs[] = {
915 __ATTR(device, S_IRUGO, ecard_show_device, NULL),
916 __ATTR(dma, S_IRUGO, ecard_show_dma, NULL),
917 __ATTR(irq, S_IRUGO, ecard_show_irq, NULL),
918 __ATTR(resource, S_IRUGO, ecard_show_resources, NULL),
919 __ATTR(type, S_IRUGO, ecard_show_type, NULL),
920 __ATTR(vendor, S_IRUGO, ecard_show_vendor, NULL),
921 __ATTR_NULL,
922};
923
924
925int ecard_request_resources(struct expansion_card *ec)
926{
927 int i, err = 0;
928
929 for (i = 0; i < ECARD_NUM_RESOURCES; i++) {
930 if (ecard_resource_end(ec, i) &&
931 !request_mem_region(ecard_resource_start(ec, i),
932 ecard_resource_len(ec, i),
933 ec->dev.driver->name)) {
934 err = -EBUSY;
935 break;
936 }
937 }
938
939 if (err) {
940 while (i--)
941 if (ecard_resource_end(ec, i))
942 release_mem_region(ecard_resource_start(ec, i),
943 ecard_resource_len(ec, i));
944 }
945 return err;
946}
947EXPORT_SYMBOL(ecard_request_resources);
948
949void ecard_release_resources(struct expansion_card *ec)
950{
951 int i;
952
953 for (i = 0; i < ECARD_NUM_RESOURCES; i++)
954 if (ecard_resource_end(ec, i))
955 release_mem_region(ecard_resource_start(ec, i),
956 ecard_resource_len(ec, i));
957}
958EXPORT_SYMBOL(ecard_release_resources);
959
960/*
961 * Probe for an expansion card.
962 *
963 * If bit 1 of the first byte of the card is set, then the
964 * card does not exist.
965 */
966static int __init
967ecard_probe(int slot, card_type_t type)
968{
969 ecard_t **ecp;
970 ecard_t *ec;
971 struct ex_ecid cid;
972 int i, rc;
973
974 ec = ecard_alloc_card(type, slot);
975 if (IS_ERR(ec)) {
976 rc = PTR_ERR(ec);
977 goto nomem;
978 }
979
980 rc = -ENODEV;
981 if ((ec->podaddr = ecard_address(ec, type, ECARD_SYNC)) == 0)
982 goto nodev;
983
984 cid.r_zero = 1;
985 ecard_readbytes(&cid, ec, 0, 16, 0);
986 if (cid.r_zero)
987 goto nodev;
988
989 ec->cid.id = cid.r_id;
990 ec->cid.cd = cid.r_cd;
991 ec->cid.is = cid.r_is;
992 ec->cid.w = cid.r_w;
993 ec->cid.manufacturer = ecard_getu16(cid.r_manu);
994 ec->cid.product = ecard_getu16(cid.r_prod);
995 ec->cid.country = cid.r_country;
996 ec->cid.irqmask = cid.r_irqmask;
997 ec->cid.irqoff = ecard_gets24(cid.r_irqoff);
998 ec->cid.fiqmask = cid.r_fiqmask;
999 ec->cid.fiqoff = ecard_gets24(cid.r_fiqoff);
1000 ec->fiqaddr =
1001 ec->irqaddr = (void __iomem *)ioaddr(ec->podaddr);
1002
1003 if (ec->cid.is) {
1004 ec->irqmask = ec->cid.irqmask;
1005 ec->irqaddr += ec->cid.irqoff;
1006 ec->fiqmask = ec->cid.fiqmask;
1007 ec->fiqaddr += ec->cid.fiqoff;
1008 } else {
1009 ec->irqmask = 1;
1010 ec->fiqmask = 4;
1011 }
1012
Ahmed S. Darwisheeea82f2007-02-05 16:10:25 -08001013 for (i = 0; i < ARRAY_SIZE(blacklist); i++)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001014 if (blacklist[i].manufacturer == ec->cid.manufacturer &&
1015 blacklist[i].product == ec->cid.product) {
1016 ec->card_desc = blacklist[i].type;
1017 break;
1018 }
1019
1020 /*
1021 * hook the interrupt handlers
1022 */
1023 if (slot < 8) {
1024 ec->irq = 32 + slot;
1025 set_irq_chip(ec->irq, &ecard_chip);
Russell King10dd5ce2006-11-23 11:41:32 +00001026 set_irq_handler(ec->irq, handle_level_irq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001027 set_irq_flags(ec->irq, IRQF_VALID);
1028 }
1029
1030#ifdef IO_EC_MEMC8_BASE
1031 if (slot == 8)
1032 ec->irq = 11;
1033#endif
1034#ifdef CONFIG_ARCH_RPC
1035 /* On RiscPC, only first two slots have DMA capability */
1036 if (slot < 2)
1037 ec->dma = 2 + slot;
1038#endif
1039
1040 for (ecp = &cards; *ecp; ecp = &(*ecp)->next);
1041
1042 *ecp = ec;
1043 slot_to_expcard[slot] = ec;
1044
1045 device_register(&ec->dev);
1046
1047 return 0;
1048
1049 nodev:
1050 ecard_free_card(ec);
1051 nomem:
1052 return rc;
1053}
1054
1055/*
1056 * Initialise the expansion card system.
1057 * Locate all hardware - interrupt management and
1058 * actual cards.
1059 */
1060static int __init ecard_init(void)
1061{
1062 int slot, irqhw, ret;
1063
1064 ret = kernel_thread(ecard_task, NULL, CLONE_KERNEL);
1065 if (ret < 0) {
1066 printk(KERN_ERR "Ecard: unable to create kernel thread: %d\n",
1067 ret);
1068 return ret;
1069 }
1070
1071 printk("Probing expansion cards\n");
1072
1073 for (slot = 0; slot < 8; slot ++) {
1074 if (ecard_probe(slot, ECARD_EASI) == -ENODEV)
1075 ecard_probe(slot, ECARD_IOC);
1076 }
1077
1078#ifdef IO_EC_MEMC8_BASE
1079 ecard_probe(8, ECARD_IOC);
1080#endif
1081
1082 irqhw = ecard_probeirqhw();
1083
1084 set_irq_chained_handler(IRQ_EXPANSIONCARD,
1085 irqhw ? ecard_irqexp_handler : ecard_irq_handler);
1086
1087 ecard_proc_init();
1088
1089 return 0;
1090}
1091
1092subsys_initcall(ecard_init);
1093
1094/*
1095 * ECARD "bus"
1096 */
1097static const struct ecard_id *
1098ecard_match_device(const struct ecard_id *ids, struct expansion_card *ec)
1099{
1100 int i;
1101
1102 for (i = 0; ids[i].manufacturer != 65535; i++)
1103 if (ec->cid.manufacturer == ids[i].manufacturer &&
1104 ec->cid.product == ids[i].product)
1105 return ids + i;
1106
1107 return NULL;
1108}
1109
1110static int ecard_drv_probe(struct device *dev)
1111{
1112 struct expansion_card *ec = ECARD_DEV(dev);
1113 struct ecard_driver *drv = ECARD_DRV(dev->driver);
1114 const struct ecard_id *id;
1115 int ret;
1116
1117 id = ecard_match_device(drv->id_table, ec);
1118
1119 ecard_claim(ec);
1120 ret = drv->probe(ec, id);
1121 if (ret)
1122 ecard_release(ec);
1123 return ret;
1124}
1125
1126static int ecard_drv_remove(struct device *dev)
1127{
1128 struct expansion_card *ec = ECARD_DEV(dev);
1129 struct ecard_driver *drv = ECARD_DRV(dev->driver);
1130
1131 drv->remove(ec);
1132 ecard_release(ec);
1133
1134 return 0;
1135}
1136
1137/*
1138 * Before rebooting, we must make sure that the expansion card is in a
1139 * sensible state, so it can be re-detected. This means that the first
1140 * page of the ROM must be visible. We call the expansion cards reset
1141 * handler, if any.
1142 */
1143static void ecard_drv_shutdown(struct device *dev)
1144{
1145 struct expansion_card *ec = ECARD_DEV(dev);
1146 struct ecard_driver *drv = ECARD_DRV(dev->driver);
1147 struct ecard_request req;
1148
Russell Kinge08b7542006-01-05 14:30:57 +00001149 if (dev->driver) {
1150 if (drv->shutdown)
1151 drv->shutdown(ec);
1152 ecard_release(ec);
1153 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001154
1155 /*
1156 * If this card has a loader, call the reset handler.
1157 */
1158 if (ec->loader) {
1159 req.fn = ecard_task_reset;
1160 req.ec = ec;
1161 ecard_call(&req);
1162 }
1163}
1164
1165int ecard_register_driver(struct ecard_driver *drv)
1166{
1167 drv->drv.bus = &ecard_bus_type;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001168
1169 return driver_register(&drv->drv);
1170}
1171
1172void ecard_remove_driver(struct ecard_driver *drv)
1173{
1174 driver_unregister(&drv->drv);
1175}
1176
1177static int ecard_match(struct device *_dev, struct device_driver *_drv)
1178{
1179 struct expansion_card *ec = ECARD_DEV(_dev);
1180 struct ecard_driver *drv = ECARD_DRV(_drv);
1181 int ret;
1182
1183 if (drv->id_table) {
1184 ret = ecard_match_device(drv->id_table, ec) != NULL;
1185 } else {
1186 ret = ec->cid.id == drv->id;
1187 }
1188
1189 return ret;
1190}
1191
1192struct bus_type ecard_bus_type = {
1193 .name = "ecard",
1194 .dev_attrs = ecard_dev_attrs,
1195 .match = ecard_match,
Russell Kinge08b7542006-01-05 14:30:57 +00001196 .probe = ecard_drv_probe,
1197 .remove = ecard_drv_remove,
1198 .shutdown = ecard_drv_shutdown,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001199};
1200
1201static int ecard_bus_init(void)
1202{
1203 return bus_register(&ecard_bus_type);
1204}
1205
1206postcore_initcall(ecard_bus_init);
1207
1208EXPORT_SYMBOL(ecard_readchunk);
1209EXPORT_SYMBOL(__ecard_address);
1210EXPORT_SYMBOL(ecard_register_driver);
1211EXPORT_SYMBOL(ecard_remove_driver);
1212EXPORT_SYMBOL(ecard_bus_type);