1
2
3
4
5
6
7
8
9
10
11
12
13#include <linux/init.h>
14#include <linux/module.h>
15#include <linux/zorro.h>
16
17
18
19
20
21
22
23
24
25
26
27
28
29const struct zorro_device_id *
30zorro_match_device(const struct zorro_device_id *ids,
31 const struct zorro_dev *z)
32{
33 while (ids->id) {
34 if (ids->id == ZORRO_WILDCARD || ids->id == z->id)
35 return ids;
36 ids++;
37 }
38 return NULL;
39}
40EXPORT_SYMBOL(zorro_match_device);
41
42
43static int zorro_device_probe(struct device *dev)
44{
45 int error = 0;
46 struct zorro_driver *drv = to_zorro_driver(dev->driver);
47 struct zorro_dev *z = to_zorro_dev(dev);
48
49 if (!z->driver && drv->probe) {
50 const struct zorro_device_id *id;
51
52 id = zorro_match_device(drv->id_table, z);
53 if (id)
54 error = drv->probe(z, id);
55 if (error >= 0) {
56 z->driver = drv;
57 error = 0;
58 }
59 }
60 return error;
61}
62
63
64static int zorro_device_remove(struct device *dev)
65{
66 struct zorro_dev *z = to_zorro_dev(dev);
67 struct zorro_driver *drv = to_zorro_driver(dev->driver);
68
69 if (drv) {
70 if (drv->remove)
71 drv->remove(z);
72 z->driver = NULL;
73 }
74 return 0;
75}
76
77
78
79
80
81
82
83
84
85
86int zorro_register_driver(struct zorro_driver *drv)
87{
88
89 drv->driver.name = drv->name;
90 drv->driver.bus = &zorro_bus_type;
91
92
93 return driver_register(&drv->driver);
94}
95EXPORT_SYMBOL(zorro_register_driver);
96
97
98
99
100
101
102
103
104
105
106
107
108void zorro_unregister_driver(struct zorro_driver *drv)
109{
110 driver_unregister(&drv->driver);
111}
112EXPORT_SYMBOL(zorro_unregister_driver);
113
114
115
116
117
118
119
120
121
122
123
124
125
126static int zorro_bus_match(struct device *dev, struct device_driver *drv)
127{
128 struct zorro_dev *z = to_zorro_dev(dev);
129 struct zorro_driver *zorro_drv = to_zorro_driver(drv);
130 const struct zorro_device_id *ids = zorro_drv->id_table;
131
132 if (!ids)
133 return 0;
134
135 while (ids->id) {
136 if (ids->id == ZORRO_WILDCARD || ids->id == z->id)
137 return 1;
138 ids++;
139 }
140 return 0;
141}
142
143static int zorro_uevent(struct device *dev, struct kobj_uevent_env *env)
144{
145 struct zorro_dev *z;
146
147 if (!dev)
148 return -ENODEV;
149
150 z = to_zorro_dev(dev);
151 if (!z)
152 return -ENODEV;
153
154 if (add_uevent_var(env, "ZORRO_ID=%08X", z->id) ||
155 add_uevent_var(env, "ZORRO_SLOT_NAME=%s", dev_name(dev)) ||
156 add_uevent_var(env, "ZORRO_SLOT_ADDR=%04X", z->slotaddr) ||
157 add_uevent_var(env, "MODALIAS=" ZORRO_DEVICE_MODALIAS_FMT, z->id))
158 return -ENOMEM;
159
160 return 0;
161}
162
163struct bus_type zorro_bus_type = {
164 .name = "zorro",
165 .match = zorro_bus_match,
166 .uevent = zorro_uevent,
167 .probe = zorro_device_probe,
168 .remove = zorro_device_remove,
169};
170EXPORT_SYMBOL(zorro_bus_type);
171
172
173static int __init zorro_driver_init(void)
174{
175 return bus_register(&zorro_bus_type);
176}
177
178postcore_initcall(zorro_driver_init);
179
180