Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | /* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2 | * Copyright (c) 1996-2002 Russell King. |
| 3 | */ |
| 4 | |
| 5 | #include <linux/module.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6 | #include <linux/blkdev.h> |
| 7 | #include <linux/errno.h> |
| 8 | #include <linux/ide.h> |
| 9 | #include <linux/init.h> |
| 10 | |
| 11 | #include <asm/ecard.h> |
| 12 | |
Al Viro | 1137fb6 | 2008-10-26 05:40:26 +0000 | [diff] [blame] | 13 | static const struct ide_port_info rapide_port_info = { |
Bartlomiej Zolnierkiewicz | 9a5ae1f | 2008-07-16 20:33:42 +0200 | [diff] [blame] | 14 | .host_flags = IDE_HFLAG_MMIO | IDE_HFLAG_NO_DMA, |
Bartlomiej Zolnierkiewicz | 29e52cf | 2009-05-17 19:12:22 +0200 | [diff] [blame] | 15 | .chipset = ide_generic, |
Bartlomiej Zolnierkiewicz | 9a5ae1f | 2008-07-16 20:33:42 +0200 | [diff] [blame] | 16 | }; |
| 17 | |
Bartlomiej Zolnierkiewicz | 9f36d31 | 2009-05-17 19:12:25 +0200 | [diff] [blame] | 18 | static void rapide_setup_ports(struct ide_hw *hw, void __iomem *base, |
Bartlomiej Zolnierkiewicz | 57c802e | 2008-01-26 20:13:05 +0100 | [diff] [blame] | 19 | void __iomem *ctrl, unsigned int sz, int irq) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 20 | { |
| 21 | unsigned long port = (unsigned long)base; |
Bartlomiej Zolnierkiewicz | baa8f3e | 2007-10-20 00:32:31 +0200 | [diff] [blame] | 22 | int i; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 23 | |
Bartlomiej Zolnierkiewicz | 4c3032d | 2008-04-27 15:38:32 +0200 | [diff] [blame] | 24 | for (i = 0; i <= 7; i++) { |
| 25 | hw->io_ports_array[i] = port; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 26 | port += sz; |
| 27 | } |
Bartlomiej Zolnierkiewicz | 4c3032d | 2008-04-27 15:38:32 +0200 | [diff] [blame] | 28 | hw->io_ports.ctl_addr = (unsigned long)ctrl; |
Bartlomiej Zolnierkiewicz | 57c802e | 2008-01-26 20:13:05 +0100 | [diff] [blame] | 29 | hw->irq = irq; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 30 | } |
| 31 | |
| 32 | static int __devinit |
| 33 | rapide_probe(struct expansion_card *ec, const struct ecard_id *id) |
| 34 | { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 35 | void __iomem *base; |
Bartlomiej Zolnierkiewicz | 48c3c10 | 2008-07-23 19:55:57 +0200 | [diff] [blame] | 36 | struct ide_host *host; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 37 | int ret; |
Bartlomiej Zolnierkiewicz | 9f36d31 | 2009-05-17 19:12:25 +0200 | [diff] [blame] | 38 | struct ide_hw hw, *hws[] = { &hw }; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 39 | |
| 40 | ret = ecard_request_resources(ec); |
| 41 | if (ret) |
| 42 | goto out; |
| 43 | |
Russell King | 10bdaaa | 2007-05-10 18:40:51 +0100 | [diff] [blame] | 44 | base = ecardm_iomap(ec, ECARD_RES_MEMC, 0, 0); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 45 | if (!base) { |
| 46 | ret = -ENOMEM; |
| 47 | goto release; |
| 48 | } |
| 49 | |
Bartlomiej Zolnierkiewicz | 47bc7e7 | 2008-07-16 20:33:44 +0200 | [diff] [blame] | 50 | memset(&hw, 0, sizeof(hw)); |
| 51 | rapide_setup_ports(&hw, base, base + 0x818, 1 << 6, ec->irq); |
Bartlomiej Zolnierkiewicz | 47bc7e7 | 2008-07-16 20:33:44 +0200 | [diff] [blame] | 52 | hw.dev = &ec->dev; |
| 53 | |
Bartlomiej Zolnierkiewicz | dca3983 | 2009-05-17 19:12:24 +0200 | [diff] [blame] | 54 | ret = ide_host_add(&rapide_port_info, hws, 1, &host); |
Bartlomiej Zolnierkiewicz | 6f904d0 | 2008-07-23 19:55:57 +0200 | [diff] [blame] | 55 | if (ret) |
Bartlomiej Zolnierkiewicz | 47bc7e7 | 2008-07-16 20:33:44 +0200 | [diff] [blame] | 56 | goto release; |
Bartlomiej Zolnierkiewicz | 47bc7e7 | 2008-07-16 20:33:44 +0200 | [diff] [blame] | 57 | |
Bartlomiej Zolnierkiewicz | 48c3c10 | 2008-07-23 19:55:57 +0200 | [diff] [blame] | 58 | ecard_set_drvdata(ec, host); |
Bartlomiej Zolnierkiewicz | 47bc7e7 | 2008-07-16 20:33:44 +0200 | [diff] [blame] | 59 | goto out; |
| 60 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 61 | release: |
| 62 | ecard_release_resources(ec); |
| 63 | out: |
| 64 | return ret; |
| 65 | } |
| 66 | |
| 67 | static void __devexit rapide_remove(struct expansion_card *ec) |
| 68 | { |
Bartlomiej Zolnierkiewicz | 48c3c10 | 2008-07-23 19:55:57 +0200 | [diff] [blame] | 69 | struct ide_host *host = ecard_get_drvdata(ec); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 70 | |
| 71 | ecard_set_drvdata(ec, NULL); |
| 72 | |
Bartlomiej Zolnierkiewicz | 48c3c10 | 2008-07-23 19:55:57 +0200 | [diff] [blame] | 73 | ide_host_remove(host); |
Bartlomiej Zolnierkiewicz | fadd11c | 2008-02-01 23:09:33 +0100 | [diff] [blame] | 74 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 75 | ecard_release_resources(ec); |
| 76 | } |
| 77 | |
| 78 | static struct ecard_id rapide_ids[] = { |
| 79 | { MANU_YELLOWSTONE, PROD_YELLOWSTONE_RAPIDE32 }, |
| 80 | { 0xffff, 0xffff } |
| 81 | }; |
| 82 | |
| 83 | static struct ecard_driver rapide_driver = { |
| 84 | .probe = rapide_probe, |
| 85 | .remove = __devexit_p(rapide_remove), |
| 86 | .id_table = rapide_ids, |
| 87 | .drv = { |
| 88 | .name = "rapide", |
| 89 | }, |
| 90 | }; |
| 91 | |
| 92 | static int __init rapide_init(void) |
| 93 | { |
| 94 | return ecard_register_driver(&rapide_driver); |
| 95 | } |
| 96 | |
Bartlomiej Zolnierkiewicz | 37c5ef5 | 2008-07-24 22:53:27 +0200 | [diff] [blame] | 97 | static void __exit rapide_exit(void) |
| 98 | { |
Al Viro | 1137fb6 | 2008-10-26 05:40:26 +0000 | [diff] [blame] | 99 | ecard_remove_driver(&rapide_driver); |
Bartlomiej Zolnierkiewicz | 37c5ef5 | 2008-07-24 22:53:27 +0200 | [diff] [blame] | 100 | } |
| 101 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 102 | MODULE_LICENSE("GPL"); |
| 103 | MODULE_DESCRIPTION("Yellowstone RAPIDE driver"); |
| 104 | |
| 105 | module_init(rapide_init); |
Bartlomiej Zolnierkiewicz | 37c5ef5 | 2008-07-24 22:53:27 +0200 | [diff] [blame] | 106 | module_exit(rapide_exit); |