diff options
Diffstat (limited to 'drivers/firewire/core-device.c')
| -rw-r--r-- | drivers/firewire/core-device.c | 104 |
1 files changed, 41 insertions, 63 deletions
diff --git a/drivers/firewire/core-device.c b/drivers/firewire/core-device.c index 5db0518c66da..4b8523f00dce 100644 --- a/drivers/firewire/core-device.c +++ b/drivers/firewire/core-device.c | |||
| @@ -33,6 +33,7 @@ | |||
| 33 | #include <linux/module.h> | 33 | #include <linux/module.h> |
| 34 | #include <linux/mutex.h> | 34 | #include <linux/mutex.h> |
| 35 | #include <linux/rwsem.h> | 35 | #include <linux/rwsem.h> |
| 36 | #include <linux/slab.h> | ||
| 36 | #include <linux/spinlock.h> | 37 | #include <linux/spinlock.h> |
| 37 | #include <linux/string.h> | 38 | #include <linux/string.h> |
| 38 | #include <linux/workqueue.h> | 39 | #include <linux/workqueue.h> |
| @@ -126,97 +127,74 @@ int fw_csr_string(const u32 *directory, int key, char *buf, size_t size) | |||
| 126 | } | 127 | } |
| 127 | EXPORT_SYMBOL(fw_csr_string); | 128 | EXPORT_SYMBOL(fw_csr_string); |
| 128 | 129 | ||
| 129 | static bool is_fw_unit(struct device *dev); | 130 | static void get_ids(const u32 *directory, int *id) |
| 130 | |||
| 131 | static int match_unit_directory(const u32 *directory, u32 match_flags, | ||
| 132 | const struct ieee1394_device_id *id) | ||
| 133 | { | 131 | { |
| 134 | struct fw_csr_iterator ci; | 132 | struct fw_csr_iterator ci; |
| 135 | int key, value, match; | 133 | int key, value; |
| 136 | 134 | ||
| 137 | match = 0; | ||
| 138 | fw_csr_iterator_init(&ci, directory); | 135 | fw_csr_iterator_init(&ci, directory); |
| 139 | while (fw_csr_iterator_next(&ci, &key, &value)) { | 136 | while (fw_csr_iterator_next(&ci, &key, &value)) { |
| 140 | if (key == CSR_VENDOR && value == id->vendor_id) | 137 | switch (key) { |
| 141 | match |= IEEE1394_MATCH_VENDOR_ID; | 138 | case CSR_VENDOR: id[0] = value; break; |
| 142 | if (key == CSR_MODEL && value == id->model_id) | 139 | case CSR_MODEL: id[1] = value; break; |
| 143 | match |= IEEE1394_MATCH_MODEL_ID; | 140 | case CSR_SPECIFIER_ID: id[2] = value; break; |
| 144 | if (key == CSR_SPECIFIER_ID && value == id->specifier_id) | 141 | case CSR_VERSION: id[3] = value; break; |
| 145 | match |= IEEE1394_MATCH_SPECIFIER_ID; | 142 | } |
| 146 | if (key == CSR_VERSION && value == id->version) | ||
| 147 | match |= IEEE1394_MATCH_VERSION; | ||
| 148 | } | 143 | } |
| 144 | } | ||
| 145 | |||
| 146 | static void get_modalias_ids(struct fw_unit *unit, int *id) | ||
| 147 | { | ||
| 148 | get_ids(&fw_parent_device(unit)->config_rom[5], id); | ||
| 149 | get_ids(unit->directory, id); | ||
| 150 | } | ||
| 151 | |||
| 152 | static bool match_ids(const struct ieee1394_device_id *id_table, int *id) | ||
| 153 | { | ||
| 154 | int match = 0; | ||
| 155 | |||
| 156 | if (id[0] == id_table->vendor_id) | ||
| 157 | match |= IEEE1394_MATCH_VENDOR_ID; | ||
| 158 | if (id[1] == id_table->model_id) | ||
| 159 | match |= IEEE1394_MATCH_MODEL_ID; | ||
| 160 | if (id[2] == id_table->specifier_id) | ||
| 161 | match |= IEEE1394_MATCH_SPECIFIER_ID; | ||
| 162 | if (id[3] == id_table->version) | ||
| 163 | match |= IEEE1394_MATCH_VERSION; | ||
| 149 | 164 | ||
| 150 | return (match & match_flags) == match_flags; | 165 | return (match & id_table->match_flags) == id_table->match_flags; |
| 151 | } | 166 | } |
| 152 | 167 | ||
| 168 | static bool is_fw_unit(struct device *dev); | ||
| 169 | |||
| 153 | static int fw_unit_match(struct device *dev, struct device_driver *drv) | 170 | static int fw_unit_match(struct device *dev, struct device_driver *drv) |
| 154 | { | 171 | { |
| 155 | struct fw_unit *unit = fw_unit(dev); | 172 | const struct ieee1394_device_id *id_table = |
| 156 | struct fw_device *device; | 173 | container_of(drv, struct fw_driver, driver)->id_table; |
| 157 | const struct ieee1394_device_id *id; | 174 | int id[] = {0, 0, 0, 0}; |
| 158 | 175 | ||
| 159 | /* We only allow binding to fw_units. */ | 176 | /* We only allow binding to fw_units. */ |
| 160 | if (!is_fw_unit(dev)) | 177 | if (!is_fw_unit(dev)) |
| 161 | return 0; | 178 | return 0; |
| 162 | 179 | ||
| 163 | device = fw_parent_device(unit); | 180 | get_modalias_ids(fw_unit(dev), id); |
| 164 | id = container_of(drv, struct fw_driver, driver)->id_table; | ||
| 165 | 181 | ||
| 166 | for (; id->match_flags != 0; id++) { | 182 | for (; id_table->match_flags != 0; id_table++) |
| 167 | if (match_unit_directory(unit->directory, id->match_flags, id)) | 183 | if (match_ids(id_table, id)) |
| 168 | return 1; | 184 | return 1; |
| 169 | 185 | ||
| 170 | /* Also check vendor ID in the root directory. */ | ||
| 171 | if ((id->match_flags & IEEE1394_MATCH_VENDOR_ID) && | ||
| 172 | match_unit_directory(&device->config_rom[5], | ||
| 173 | IEEE1394_MATCH_VENDOR_ID, id) && | ||
| 174 | match_unit_directory(unit->directory, id->match_flags | ||
| 175 | & ~IEEE1394_MATCH_VENDOR_ID, id)) | ||
| 176 | return 1; | ||
| 177 | } | ||
| 178 | |||
| 179 | return 0; | 186 | return 0; |
| 180 | } | 187 | } |
| 181 | 188 | ||
| 182 | static int get_modalias(struct fw_unit *unit, char *buffer, size_t buffer_size) | 189 | static int get_modalias(struct fw_unit *unit, char *buffer, size_t buffer_size) |
| 183 | { | 190 | { |
| 184 | struct fw_device *device = fw_parent_device(unit); | 191 | int id[] = {0, 0, 0, 0}; |
| 185 | struct fw_csr_iterator ci; | ||
| 186 | 192 | ||
| 187 | int key, value; | 193 | get_modalias_ids(unit, id); |
| 188 | int vendor = 0; | ||
| 189 | int model = 0; | ||
| 190 | int specifier_id = 0; | ||
| 191 | int version = 0; | ||
| 192 | |||
| 193 | fw_csr_iterator_init(&ci, &device->config_rom[5]); | ||
| 194 | while (fw_csr_iterator_next(&ci, &key, &value)) { | ||
| 195 | switch (key) { | ||
| 196 | case CSR_VENDOR: | ||
| 197 | vendor = value; | ||
| 198 | break; | ||
| 199 | case CSR_MODEL: | ||
| 200 | model = value; | ||
| 201 | break; | ||
| 202 | } | ||
| 203 | } | ||
| 204 | |||
| 205 | fw_csr_iterator_init(&ci, unit->directory); | ||
| 206 | while (fw_csr_iterator_next(&ci, &key, &value)) { | ||
| 207 | switch (key) { | ||
| 208 | case CSR_SPECIFIER_ID: | ||
| 209 | specifier_id = value; | ||
| 210 | break; | ||
| 211 | case CSR_VERSION: | ||
| 212 | version = value; | ||
| 213 | break; | ||
| 214 | } | ||
| 215 | } | ||
| 216 | 194 | ||
| 217 | return snprintf(buffer, buffer_size, | 195 | return snprintf(buffer, buffer_size, |
| 218 | "ieee1394:ven%08Xmo%08Xsp%08Xver%08X", | 196 | "ieee1394:ven%08Xmo%08Xsp%08Xver%08X", |
| 219 | vendor, model, specifier_id, version); | 197 | id[0], id[1], id[2], id[3]); |
| 220 | } | 198 | } |
| 221 | 199 | ||
| 222 | static int fw_unit_uevent(struct device *dev, struct kobj_uevent_env *env) | 200 | static int fw_unit_uevent(struct device *dev, struct kobj_uevent_env *env) |
