blob: e8818362eb46e4bffac4fafcda0b9758a63261d1 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * generic/default IDE host driver
3 *
Bartlomiej Zolnierkiewiczf0298512008-04-18 00:46:23 +02004 * Copyright (C) 2004, 2008 Bartlomiej Zolnierkiewicz
Linus Torvalds1da177e2005-04-16 15:20:36 -07005 * This code was split off from ide.c. See it for original copyrights.
6 *
7 * May be copied or modified under the terms of the GNU General Public License.
8 */
9
Bartlomiej Zolnierkiewiczf0298512008-04-18 00:46:23 +020010/*
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
Linus Torvalds1da177e2005-04-16 15:20:36 -070018#include <linux/kernel.h>
19#include <linux/init.h>
20#include <linux/module.h>
21#include <linux/ide.h>
22
Bartlomiej Zolnierkiewiczf0298512008-04-18 00:46:23 +020023#define DRV_NAME "ide_generic"
24
Bartlomiej Zolnierkiewicz0cbccbc2008-06-15 21:00:24 +020025static int probe_mask = 0x03;
26module_param(probe_mask, int, 0);
27MODULE_PARM_DESC(probe_mask, "probe mask for legacy ISA IDE ports");
28
Bartlomiej Zolnierkiewiczf0298512008-04-18 00:46:23 +020029static ssize_t store_add(struct class *cls, const char *buf, size_t n)
30{
Bartlomiej Zolnierkiewicz48c3c102008-07-23 19:55:57 +020031 struct ide_host *host;
Bartlomiej Zolnierkiewiczf0298512008-04-18 00:46:23 +020032 unsigned int base, ctl;
33 int irq;
Bartlomiej Zolnierkiewiczc97c6ac2008-07-23 19:55:50 +020034 hw_regs_t hw, *hws[] = { &hw, NULL, NULL, NULL };
Bartlomiej Zolnierkiewiczf0298512008-04-18 00:46:23 +020035
36 if (sscanf(buf, "%x:%x:%d", &base, &ctl, &irq) != 3)
37 return -EINVAL;
38
Bartlomiej Zolnierkiewiczf0298512008-04-18 00:46:23 +020039 memset(&hw, 0, sizeof(hw));
40 ide_std_init_ports(&hw, base, ctl);
41 hw.irq = irq;
42 hw.chipset = ide_generic;
43
Bartlomiej Zolnierkiewicz48c3c102008-07-23 19:55:57 +020044 host = ide_host_alloc(NULL, hws);
45 if (host == NULL)
46 return -ENOENT;
Bartlomiej Zolnierkiewiczf0298512008-04-18 00:46:23 +020047
Bartlomiej Zolnierkiewicz48c3c102008-07-23 19:55:57 +020048 ide_host_register(host, NULL, hws);
Bartlomiej Zolnierkiewiczf0298512008-04-18 00:46:23 +020049
50 return n;
51};
52
53static struct class_attribute ide_generic_class_attrs[] = {
54 __ATTR(add, S_IWUSR, NULL, store_add),
55 __ATTR_NULL
56};
57
58static void ide_generic_class_release(struct class *cls)
59{
60 kfree(cls);
61}
62
63static int __init ide_generic_sysfs_init(void)
64{
65 struct class *cls;
66 int rc;
67
68 cls = kzalloc(sizeof(*cls), GFP_KERNEL);
69 if (!cls)
70 return -ENOMEM;
71
72 cls->name = DRV_NAME;
73 cls->owner = THIS_MODULE;
74 cls->class_release = ide_generic_class_release;
75 cls->class_attrs = ide_generic_class_attrs;
76
77 rc = class_register(cls);
78 if (rc) {
79 kfree(cls);
80 return rc;
81 }
82
83 return 0;
84}
85
Linus Torvalds1da177e2005-04-16 15:20:36 -070086static int __init ide_generic_init(void)
87{
Bartlomiej Zolnierkiewiczc97c6ac2008-07-23 19:55:50 +020088 hw_regs_t hw[MAX_HWIFS], *hws[MAX_HWIFS];
Bartlomiej Zolnierkiewicz48c3c102008-07-23 19:55:57 +020089 struct ide_host *host;
Bartlomiej Zolnierkiewicz151575e2008-01-26 20:13:05 +010090 int i;
91
Bartlomiej Zolnierkiewicz0cbccbc2008-06-15 21:00:24 +020092 printk(KERN_INFO DRV_NAME ": please use \"probe_mask=0x3f\" module "
93 "parameter for probing all legacy ISA IDE ports\n");
94
Bartlomiej Zolnierkiewiczb2a53bc2008-02-06 02:57:48 +010095 for (i = 0; i < MAX_HWIFS; i++) {
Bartlomiej Zolnierkiewicz486c92e2008-04-18 00:46:35 +020096 unsigned long io_addr = ide_default_io_base(i);
Bartlomiej Zolnierkiewiczb2a53bc2008-02-06 02:57:48 +010097
Bartlomiej Zolnierkiewiczc97c6ac2008-07-23 19:55:50 +020098 hws[i] = NULL;
Bartlomiej Zolnierkiewicz16649492008-04-26 22:25:17 +020099
Bartlomiej Zolnierkiewicz0cbccbc2008-06-15 21:00:24 +0200100 if ((probe_mask & (1 << i)) && io_addr) {
Bartlomiej Zolnierkiewicz16649492008-04-26 22:25:17 +0200101 if (!request_region(io_addr, 8, DRV_NAME)) {
102 printk(KERN_ERR "%s: I/O resource 0x%lX-0x%lX "
103 "not free.\n",
104 DRV_NAME, io_addr, io_addr + 7);
105 continue;
106 }
107
108 if (!request_region(io_addr + 0x206, 1, DRV_NAME)) {
109 printk(KERN_ERR "%s: I/O resource 0x%lX "
110 "not free.\n",
111 DRV_NAME, io_addr + 0x206);
112 release_region(io_addr, 8);
113 continue;
114 }
115
Bartlomiej Zolnierkiewiczc97c6ac2008-07-23 19:55:50 +0200116 memset(&hw[i], 0, sizeof(hw[i]));
117 ide_std_init_ports(&hw[i], io_addr, io_addr + 0x206);
118 hw[i].irq = ide_default_irq(io_addr);
119 hw[i].chipset = ide_generic;
120
121 hws[i] = &hw[i];
Bartlomiej Zolnierkiewicz16649492008-04-26 22:25:17 +0200122 }
Bartlomiej Zolnierkiewiczb2a53bc2008-02-06 02:57:48 +0100123 }
Bartlomiej Zolnierkiewicz151575e2008-01-26 20:13:05 +0100124
Bartlomiej Zolnierkiewicz48c3c102008-07-23 19:55:57 +0200125 host = ide_host_alloc_all(NULL, hws);
126 if (host)
127 ide_host_register(host, NULL, hws);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700128
Bartlomiej Zolnierkiewiczf0298512008-04-18 00:46:23 +0200129 if (ide_generic_sysfs_init())
130 printk(KERN_ERR DRV_NAME ": failed to create ide_generic "
131 "class\n");
132
Linus Torvalds1da177e2005-04-16 15:20:36 -0700133 return 0;
134}
135
136module_init(ide_generic_init);
137
138MODULE_LICENSE("GPL");