diff options
| author | Linus Torvalds <torvalds@linux-foundation.org> | 2008-04-18 11:39:24 -0400 |
|---|---|---|
| committer | Linus Torvalds <torvalds@linux-foundation.org> | 2008-04-18 11:39:24 -0400 |
| commit | 188da98800893691e47eea9335a234378e32aceb (patch) | |
| tree | 57dbf491d23676e011b4946ec1867a6d55a02eef /drivers/ide/ide-generic.c | |
| parent | 07fe944e87d79f8d7e1b090913fe9f2ace78f41d (diff) | |
| parent | 273b8385e5817a4765f82257004c5ec661a6a5b2 (diff) | |
Merge git://git.kernel.org/pub/scm/linux/kernel/git/bart/ide-2.6
* git://git.kernel.org/pub/scm/linux/kernel/git/bart/ide-2.6: (58 commits)
ide: remove ide_init_default_irq() macro
ide: move default IDE ports setup to ide_generic host driver
ide: remove obsoleted "idex=noprobe" kernel parameter (take 2)
ide: remove needless hwif->irq check from ide_hwif_configure()
ide: init hwif->{io_ports,irq} explicitly in legacy VLB host drivers
ide: limit legacy VLB host drivers to alpha, x86 and mips
cmd640: init hwif->{io_ports,irq} explicitly
cmd640: cleanup setup_device_ptrs()
ide: add ide-4drives host driver (take 3)
ide: remove ppc ifdef from init_ide_data()
ide: remove ide_default_io_ctl() macro
ide: remove CONFIG_IDE_ARCH_OBSOLETE_INIT
ide: add CONFIG_IDE_ARCH_OBSOLETE_DEFAULTS (take 2)
ppc/pmac: remove no longer needed IDE quirk
ppc: don't include <linux/ide.h>
ppc: remove ppc_ide_md
ppc/pplus: remove ppc_ide_md.ide_init_hwif hook
ppc/sandpoint: remove ppc_ide_md hooks
ppc/lopec: remove ppc_ide_md hooks
ppc/mpc8xx: remove ppc_ide_md hooks
...
Diffstat (limited to 'drivers/ide/ide-generic.c')
| -rw-r--r-- | drivers/ide/ide-generic.c | 89 |
1 files changed, 86 insertions, 3 deletions
diff --git a/drivers/ide/ide-generic.c b/drivers/ide/ide-generic.c index 9ebec08eefd9..25fda0a3263f 100644 --- a/drivers/ide/ide-generic.c +++ b/drivers/ide/ide-generic.c | |||
| @@ -1,17 +1,89 @@ | |||
| 1 | /* | 1 | /* |
| 2 | * generic/default IDE host driver | 2 | * generic/default IDE host driver |
| 3 | * | 3 | * |
| 4 | * Copyright (C) 2004 Bartlomiej Zolnierkiewicz | 4 | * Copyright (C) 2004, 2008 Bartlomiej Zolnierkiewicz |
| 5 | * This code was split off from ide.c. See it for original copyrights. | 5 | * This code was split off from ide.c. See it for original copyrights. |
| 6 | * | 6 | * |
| 7 | * May be copied or modified under the terms of the GNU General Public License. | 7 | * May be copied or modified under the terms of the GNU General Public License. |
| 8 | */ | 8 | */ |
| 9 | 9 | ||
| 10 | /* | ||
| 11 | * For special cases new interfaces may be added using sysfs, i.e. | ||
| 12 | * | ||
| 13 | * echo -n "0x168:0x36e:10" > /sys/class/ide_generic/add | ||
| 14 | * | ||
| 15 | * will add an interface using I/O ports 0x168-0x16f/0x36e and IRQ 10. | ||
| 16 | */ | ||
| 17 | |||
| 10 | #include <linux/kernel.h> | 18 | #include <linux/kernel.h> |
| 11 | #include <linux/init.h> | 19 | #include <linux/init.h> |
| 12 | #include <linux/module.h> | 20 | #include <linux/module.h> |
| 13 | #include <linux/ide.h> | 21 | #include <linux/ide.h> |
| 14 | 22 | ||
| 23 | #define DRV_NAME "ide_generic" | ||
| 24 | |||
| 25 | static ssize_t store_add(struct class *cls, const char *buf, size_t n) | ||
| 26 | { | ||
| 27 | ide_hwif_t *hwif; | ||
| 28 | unsigned int base, ctl; | ||
| 29 | int irq; | ||
| 30 | hw_regs_t hw; | ||
| 31 | u8 idx[] = { 0xff, 0xff, 0xff, 0xff }; | ||
| 32 | |||
| 33 | if (sscanf(buf, "%x:%x:%d", &base, &ctl, &irq) != 3) | ||
| 34 | return -EINVAL; | ||
| 35 | |||
| 36 | hwif = ide_find_port(base); | ||
| 37 | if (hwif == NULL) | ||
| 38 | return -ENOENT; | ||
| 39 | |||
| 40 | memset(&hw, 0, sizeof(hw)); | ||
| 41 | ide_std_init_ports(&hw, base, ctl); | ||
| 42 | hw.irq = irq; | ||
| 43 | hw.chipset = ide_generic; | ||
| 44 | |||
| 45 | ide_init_port_hw(hwif, &hw); | ||
| 46 | |||
| 47 | idx[0] = hwif->index; | ||
| 48 | |||
| 49 | ide_device_add(idx, NULL); | ||
| 50 | |||
| 51 | return n; | ||
| 52 | }; | ||
| 53 | |||
| 54 | static struct class_attribute ide_generic_class_attrs[] = { | ||
| 55 | __ATTR(add, S_IWUSR, NULL, store_add), | ||
| 56 | __ATTR_NULL | ||
| 57 | }; | ||
| 58 | |||
| 59 | static void ide_generic_class_release(struct class *cls) | ||
| 60 | { | ||
| 61 | kfree(cls); | ||
| 62 | } | ||
| 63 | |||
| 64 | static int __init ide_generic_sysfs_init(void) | ||
| 65 | { | ||
| 66 | struct class *cls; | ||
| 67 | int rc; | ||
| 68 | |||
| 69 | cls = kzalloc(sizeof(*cls), GFP_KERNEL); | ||
| 70 | if (!cls) | ||
| 71 | return -ENOMEM; | ||
| 72 | |||
| 73 | cls->name = DRV_NAME; | ||
| 74 | cls->owner = THIS_MODULE; | ||
| 75 | cls->class_release = ide_generic_class_release; | ||
| 76 | cls->class_attrs = ide_generic_class_attrs; | ||
| 77 | |||
| 78 | rc = class_register(cls); | ||
| 79 | if (rc) { | ||
| 80 | kfree(cls); | ||
| 81 | return rc; | ||
| 82 | } | ||
| 83 | |||
| 84 | return 0; | ||
| 85 | } | ||
| 86 | |||
| 15 | static int __init ide_generic_init(void) | 87 | static int __init ide_generic_init(void) |
| 16 | { | 88 | { |
| 17 | u8 idx[MAX_HWIFS]; | 89 | u8 idx[MAX_HWIFS]; |
| @@ -19,15 +91,26 @@ static int __init ide_generic_init(void) | |||
| 19 | 91 | ||
| 20 | for (i = 0; i < MAX_HWIFS; i++) { | 92 | for (i = 0; i < MAX_HWIFS; i++) { |
| 21 | ide_hwif_t *hwif = &ide_hwifs[i]; | 93 | ide_hwif_t *hwif = &ide_hwifs[i]; |
| 94 | unsigned long io_addr = ide_default_io_base(i); | ||
| 95 | hw_regs_t hw; | ||
| 96 | |||
| 97 | if (hwif->chipset == ide_unknown && io_addr) { | ||
| 98 | memset(&hw, 0, sizeof(hw)); | ||
| 99 | ide_std_init_ports(&hw, io_addr, io_addr + 0x206); | ||
| 100 | hw.irq = ide_default_irq(io_addr); | ||
| 101 | ide_init_port_hw(hwif, &hw); | ||
| 22 | 102 | ||
| 23 | if (hwif->io_ports[IDE_DATA_OFFSET] && !hwif->present) | ||
| 24 | idx[i] = i; | 103 | idx[i] = i; |
| 25 | else | 104 | } else |
| 26 | idx[i] = 0xff; | 105 | idx[i] = 0xff; |
| 27 | } | 106 | } |
| 28 | 107 | ||
| 29 | ide_device_add_all(idx, NULL); | 108 | ide_device_add_all(idx, NULL); |
| 30 | 109 | ||
| 110 | if (ide_generic_sysfs_init()) | ||
| 111 | printk(KERN_ERR DRV_NAME ": failed to create ide_generic " | ||
| 112 | "class\n"); | ||
| 113 | |||
| 31 | return 0; | 114 | return 0; |
| 32 | } | 115 | } |
| 33 | 116 | ||
