Kristian Høgsberg | c781c06 | 2007-05-07 20:33:32 -0400 | [diff] [blame] | 1 | /* |
| 2 | * Device probing and sysfs code. |
Kristian Høgsberg | 19a15b9 | 2006-12-19 19:58:31 -0500 | [diff] [blame] | 3 | * |
| 4 | * Copyright (C) 2005-2006 Kristian Hoegsberg <krh@bitplanet.net> |
| 5 | * |
| 6 | * This program is free software; you can redistribute it and/or modify |
| 7 | * it under the terms of the GNU General Public License as published by |
| 8 | * the Free Software Foundation; either version 2 of the License, or |
| 9 | * (at your option) any later version. |
| 10 | * |
| 11 | * This program is distributed in the hope that it will be useful, |
| 12 | * but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 13 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| 14 | * GNU General Public License for more details. |
| 15 | * |
| 16 | * You should have received a copy of the GNU General Public License |
| 17 | * along with this program; if not, write to the Free Software Foundation, |
| 18 | * Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. |
| 19 | */ |
| 20 | |
Stefan Richter | d54423c | 2010-02-18 01:50:31 +0100 | [diff] [blame^] | 21 | #include <linux/bug.h> |
Stefan Richter | 41f321c | 2009-01-17 22:45:54 +0100 | [diff] [blame] | 22 | #include <linux/ctype.h> |
Kristian Høgsberg | 19a15b9 | 2006-12-19 19:58:31 -0500 | [diff] [blame] | 23 | #include <linux/delay.h> |
Stefan Richter | 41f321c | 2009-01-17 22:45:54 +0100 | [diff] [blame] | 24 | #include <linux/device.h> |
| 25 | #include <linux/errno.h> |
Stefan Richter | 77c9a5d | 2009-06-05 16:26:18 +0200 | [diff] [blame] | 26 | #include <linux/firewire.h> |
| 27 | #include <linux/firewire-constants.h> |
Kristian Høgsberg | a3aca3d | 2007-03-07 12:12:44 -0500 | [diff] [blame] | 28 | #include <linux/idr.h> |
Stefan Richter | 3d36a0d | 2009-01-17 22:45:54 +0100 | [diff] [blame] | 29 | #include <linux/jiffies.h> |
Stefan Richter | 41f321c | 2009-01-17 22:45:54 +0100 | [diff] [blame] | 30 | #include <linux/kobject.h> |
| 31 | #include <linux/list.h> |
Stefan Richter | b3b2988 | 2009-02-15 23:12:34 +0100 | [diff] [blame] | 32 | #include <linux/mod_devicetable.h> |
Stefan Richter | e8ca970 | 2009-06-04 21:09:38 +0200 | [diff] [blame] | 33 | #include <linux/module.h> |
Stefan Richter | d67cfb9 | 2008-10-05 10:37:11 +0200 | [diff] [blame] | 34 | #include <linux/mutex.h> |
Matthew Wilcox | 6188e10 | 2008-04-18 22:21:05 -0400 | [diff] [blame] | 35 | #include <linux/rwsem.h> |
| 36 | #include <linux/semaphore.h> |
Jay Fenlason | cf417e54 | 2008-10-03 11:19:09 -0400 | [diff] [blame] | 37 | #include <linux/spinlock.h> |
Stefan Richter | 41f321c | 2009-01-17 22:45:54 +0100 | [diff] [blame] | 38 | #include <linux/string.h> |
| 39 | #include <linux/workqueue.h> |
| 40 | |
Stefan Richter | e8ca970 | 2009-06-04 21:09:38 +0200 | [diff] [blame] | 41 | #include <asm/atomic.h> |
| 42 | #include <asm/byteorder.h> |
Stefan Richter | b5d2a5e | 2008-01-25 18:57:41 +0100 | [diff] [blame] | 43 | #include <asm/system.h> |
Stefan Richter | 41f321c | 2009-01-17 22:45:54 +0100 | [diff] [blame] | 44 | |
Stefan Richter | 77c9a5d | 2009-06-05 16:26:18 +0200 | [diff] [blame] | 45 | #include "core.h" |
Kristian Høgsberg | 19a15b9 | 2006-12-19 19:58:31 -0500 | [diff] [blame] | 46 | |
Stefan Richter | 13b302d | 2009-12-26 01:44:10 +0100 | [diff] [blame] | 47 | void fw_csr_iterator_init(struct fw_csr_iterator *ci, const u32 *p) |
Kristian Høgsberg | 19a15b9 | 2006-12-19 19:58:31 -0500 | [diff] [blame] | 48 | { |
| 49 | ci->p = p + 1; |
| 50 | ci->end = ci->p + (p[0] >> 16); |
| 51 | } |
Kristian Høgsberg | 19a15b9 | 2006-12-19 19:58:31 -0500 | [diff] [blame] | 52 | EXPORT_SYMBOL(fw_csr_iterator_init); |
| 53 | |
| 54 | int fw_csr_iterator_next(struct fw_csr_iterator *ci, int *key, int *value) |
| 55 | { |
| 56 | *key = *ci->p >> 24; |
| 57 | *value = *ci->p & 0xffffff; |
| 58 | |
| 59 | return ci->p++ < ci->end; |
| 60 | } |
Kristian Høgsberg | 19a15b9 | 2006-12-19 19:58:31 -0500 | [diff] [blame] | 61 | EXPORT_SYMBOL(fw_csr_iterator_next); |
| 62 | |
Stefan Richter | 13b302d | 2009-12-26 01:44:10 +0100 | [diff] [blame] | 63 | static const u32 *search_leaf(const u32 *directory, int search_key) |
Clemens Ladisch | 1f8fef7 | 2009-12-24 11:59:57 +0100 | [diff] [blame] | 64 | { |
| 65 | struct fw_csr_iterator ci; |
| 66 | int last_key = 0, key, value; |
| 67 | |
| 68 | fw_csr_iterator_init(&ci, directory); |
| 69 | while (fw_csr_iterator_next(&ci, &key, &value)) { |
| 70 | if (last_key == search_key && |
| 71 | key == (CSR_DESCRIPTOR | CSR_LEAF)) |
| 72 | return ci.p - 1 + value; |
Stefan Richter | 3c2c58c | 2009-12-26 01:43:21 +0100 | [diff] [blame] | 73 | |
Clemens Ladisch | 1f8fef7 | 2009-12-24 11:59:57 +0100 | [diff] [blame] | 74 | last_key = key; |
| 75 | } |
Stefan Richter | 3c2c58c | 2009-12-26 01:43:21 +0100 | [diff] [blame] | 76 | |
Clemens Ladisch | 1f8fef7 | 2009-12-24 11:59:57 +0100 | [diff] [blame] | 77 | return NULL; |
| 78 | } |
| 79 | |
Stefan Richter | 13b302d | 2009-12-26 01:44:10 +0100 | [diff] [blame] | 80 | static int textual_leaf_to_string(const u32 *block, char *buf, size_t size) |
Clemens Ladisch | 1f8fef7 | 2009-12-24 11:59:57 +0100 | [diff] [blame] | 81 | { |
Stefan Richter | 3c2c58c | 2009-12-26 01:43:21 +0100 | [diff] [blame] | 82 | unsigned int quadlets, i; |
| 83 | char c; |
Clemens Ladisch | 1f8fef7 | 2009-12-24 11:59:57 +0100 | [diff] [blame] | 84 | |
| 85 | if (!size || !buf) |
| 86 | return -EINVAL; |
| 87 | |
Stefan Richter | 3c2c58c | 2009-12-26 01:43:21 +0100 | [diff] [blame] | 88 | quadlets = min(block[0] >> 16, 256U); |
Clemens Ladisch | 1f8fef7 | 2009-12-24 11:59:57 +0100 | [diff] [blame] | 89 | if (quadlets < 2) |
| 90 | return -ENODATA; |
| 91 | |
| 92 | if (block[1] != 0 || block[2] != 0) |
| 93 | /* unknown language/character set */ |
| 94 | return -ENODATA; |
| 95 | |
| 96 | block += 3; |
| 97 | quadlets -= 2; |
Stefan Richter | 3c2c58c | 2009-12-26 01:43:21 +0100 | [diff] [blame] | 98 | for (i = 0; i < quadlets * 4 && i < size - 1; i++) { |
| 99 | c = block[i / 4] >> (24 - 8 * (i % 4)); |
Clemens Ladisch | 1f8fef7 | 2009-12-24 11:59:57 +0100 | [diff] [blame] | 100 | if (c == '\0') |
| 101 | break; |
Stefan Richter | 3c2c58c | 2009-12-26 01:43:21 +0100 | [diff] [blame] | 102 | buf[i] = c; |
Clemens Ladisch | 1f8fef7 | 2009-12-24 11:59:57 +0100 | [diff] [blame] | 103 | } |
Stefan Richter | 3c2c58c | 2009-12-26 01:43:21 +0100 | [diff] [blame] | 104 | buf[i] = '\0'; |
| 105 | |
| 106 | return i; |
Clemens Ladisch | 1f8fef7 | 2009-12-24 11:59:57 +0100 | [diff] [blame] | 107 | } |
| 108 | |
| 109 | /** |
| 110 | * fw_csr_string - reads a string from the configuration ROM |
Stefan Richter | 3c2c58c | 2009-12-26 01:43:21 +0100 | [diff] [blame] | 111 | * @directory: e.g. root directory or unit directory |
Clemens Ladisch | 1f8fef7 | 2009-12-24 11:59:57 +0100 | [diff] [blame] | 112 | * @key: the key of the preceding directory entry |
| 113 | * @buf: where to put the string |
| 114 | * @size: size of @buf, in bytes |
| 115 | * |
Stefan Richter | 3c2c58c | 2009-12-26 01:43:21 +0100 | [diff] [blame] | 116 | * The string is taken from a minimal ASCII text descriptor leaf after |
| 117 | * the immediate entry with @key. The string is zero-terminated. |
| 118 | * Returns strlen(buf) or a negative error code. |
Clemens Ladisch | 1f8fef7 | 2009-12-24 11:59:57 +0100 | [diff] [blame] | 119 | */ |
Stefan Richter | 13b302d | 2009-12-26 01:44:10 +0100 | [diff] [blame] | 120 | int fw_csr_string(const u32 *directory, int key, char *buf, size_t size) |
Clemens Ladisch | 1f8fef7 | 2009-12-24 11:59:57 +0100 | [diff] [blame] | 121 | { |
Stefan Richter | 13b302d | 2009-12-26 01:44:10 +0100 | [diff] [blame] | 122 | const u32 *leaf = search_leaf(directory, key); |
Clemens Ladisch | 1f8fef7 | 2009-12-24 11:59:57 +0100 | [diff] [blame] | 123 | if (!leaf) |
| 124 | return -ENOENT; |
Stefan Richter | 3c2c58c | 2009-12-26 01:43:21 +0100 | [diff] [blame] | 125 | |
Clemens Ladisch | 1f8fef7 | 2009-12-24 11:59:57 +0100 | [diff] [blame] | 126 | return textual_leaf_to_string(leaf, buf, size); |
| 127 | } |
| 128 | EXPORT_SYMBOL(fw_csr_string); |
| 129 | |
Stefan Richter | 099d541 | 2009-06-06 18:37:25 +0200 | [diff] [blame] | 130 | static bool is_fw_unit(struct device *dev); |
Kristian Høgsberg | 19a15b9 | 2006-12-19 19:58:31 -0500 | [diff] [blame] | 131 | |
Stefan Richter | 13b302d | 2009-12-26 01:44:10 +0100 | [diff] [blame] | 132 | static int match_unit_directory(const u32 *directory, u32 match_flags, |
Stefan Richter | b3b2988 | 2009-02-15 23:12:34 +0100 | [diff] [blame] | 133 | const struct ieee1394_device_id *id) |
Kristian Høgsberg | 19a15b9 | 2006-12-19 19:58:31 -0500 | [diff] [blame] | 134 | { |
| 135 | struct fw_csr_iterator ci; |
| 136 | int key, value, match; |
| 137 | |
| 138 | match = 0; |
| 139 | fw_csr_iterator_init(&ci, directory); |
| 140 | while (fw_csr_iterator_next(&ci, &key, &value)) { |
Stefan Richter | b3b2988 | 2009-02-15 23:12:34 +0100 | [diff] [blame] | 141 | if (key == CSR_VENDOR && value == id->vendor_id) |
| 142 | match |= IEEE1394_MATCH_VENDOR_ID; |
| 143 | if (key == CSR_MODEL && value == id->model_id) |
| 144 | match |= IEEE1394_MATCH_MODEL_ID; |
Kristian Høgsberg | 19a15b9 | 2006-12-19 19:58:31 -0500 | [diff] [blame] | 145 | if (key == CSR_SPECIFIER_ID && value == id->specifier_id) |
Stefan Richter | b3b2988 | 2009-02-15 23:12:34 +0100 | [diff] [blame] | 146 | match |= IEEE1394_MATCH_SPECIFIER_ID; |
Kristian Høgsberg | 19a15b9 | 2006-12-19 19:58:31 -0500 | [diff] [blame] | 147 | if (key == CSR_VERSION && value == id->version) |
Stefan Richter | b3b2988 | 2009-02-15 23:12:34 +0100 | [diff] [blame] | 148 | match |= IEEE1394_MATCH_VERSION; |
Kristian Høgsberg | 19a15b9 | 2006-12-19 19:58:31 -0500 | [diff] [blame] | 149 | } |
| 150 | |
Stefan Richter | e41f8d7 | 2009-02-16 00:22:05 +0100 | [diff] [blame] | 151 | return (match & match_flags) == match_flags; |
Kristian Høgsberg | 19a15b9 | 2006-12-19 19:58:31 -0500 | [diff] [blame] | 152 | } |
| 153 | |
| 154 | static int fw_unit_match(struct device *dev, struct device_driver *drv) |
| 155 | { |
| 156 | struct fw_unit *unit = fw_unit(dev); |
Stefan Richter | e41f8d7 | 2009-02-16 00:22:05 +0100 | [diff] [blame] | 157 | struct fw_device *device; |
| 158 | const struct ieee1394_device_id *id; |
Kristian Høgsberg | 19a15b9 | 2006-12-19 19:58:31 -0500 | [diff] [blame] | 159 | |
| 160 | /* We only allow binding to fw_units. */ |
| 161 | if (!is_fw_unit(dev)) |
| 162 | return 0; |
| 163 | |
Stefan Richter | e5110d0 | 2009-06-06 18:35:27 +0200 | [diff] [blame] | 164 | device = fw_parent_device(unit); |
Stefan Richter | 77c9a5d | 2009-06-05 16:26:18 +0200 | [diff] [blame] | 165 | id = container_of(drv, struct fw_driver, driver)->id_table; |
Stefan Richter | e41f8d7 | 2009-02-16 00:22:05 +0100 | [diff] [blame] | 166 | |
Stefan Richter | 77c9a5d | 2009-06-05 16:26:18 +0200 | [diff] [blame] | 167 | for (; id->match_flags != 0; id++) { |
Stefan Richter | e41f8d7 | 2009-02-16 00:22:05 +0100 | [diff] [blame] | 168 | if (match_unit_directory(unit->directory, id->match_flags, id)) |
| 169 | return 1; |
| 170 | |
| 171 | /* Also check vendor ID in the root directory. */ |
| 172 | if ((id->match_flags & IEEE1394_MATCH_VENDOR_ID) && |
| 173 | match_unit_directory(&device->config_rom[5], |
| 174 | IEEE1394_MATCH_VENDOR_ID, id) && |
| 175 | match_unit_directory(unit->directory, id->match_flags |
| 176 | & ~IEEE1394_MATCH_VENDOR_ID, id)) |
Kristian Høgsberg | 19a15b9 | 2006-12-19 19:58:31 -0500 | [diff] [blame] | 177 | return 1; |
| 178 | } |
| 179 | |
| 180 | return 0; |
| 181 | } |
| 182 | |
| 183 | static int get_modalias(struct fw_unit *unit, char *buffer, size_t buffer_size) |
| 184 | { |
Stefan Richter | e5110d0 | 2009-06-06 18:35:27 +0200 | [diff] [blame] | 185 | struct fw_device *device = fw_parent_device(unit); |
Kristian Høgsberg | 19a15b9 | 2006-12-19 19:58:31 -0500 | [diff] [blame] | 186 | struct fw_csr_iterator ci; |
| 187 | |
| 188 | int key, value; |
| 189 | int vendor = 0; |
| 190 | int model = 0; |
| 191 | int specifier_id = 0; |
| 192 | int version = 0; |
| 193 | |
| 194 | fw_csr_iterator_init(&ci, &device->config_rom[5]); |
| 195 | while (fw_csr_iterator_next(&ci, &key, &value)) { |
| 196 | switch (key) { |
| 197 | case CSR_VENDOR: |
| 198 | vendor = value; |
| 199 | break; |
| 200 | case CSR_MODEL: |
| 201 | model = value; |
| 202 | break; |
| 203 | } |
| 204 | } |
| 205 | |
| 206 | fw_csr_iterator_init(&ci, unit->directory); |
| 207 | while (fw_csr_iterator_next(&ci, &key, &value)) { |
| 208 | switch (key) { |
| 209 | case CSR_SPECIFIER_ID: |
| 210 | specifier_id = value; |
| 211 | break; |
| 212 | case CSR_VERSION: |
| 213 | version = value; |
| 214 | break; |
| 215 | } |
| 216 | } |
| 217 | |
| 218 | return snprintf(buffer, buffer_size, |
| 219 | "ieee1394:ven%08Xmo%08Xsp%08Xver%08X", |
| 220 | vendor, model, specifier_id, version); |
| 221 | } |
| 222 | |
Stefan Richter | 53dca51 | 2008-12-14 21:47:04 +0100 | [diff] [blame] | 223 | static int fw_unit_uevent(struct device *dev, struct kobj_uevent_env *env) |
Kristian Høgsberg | 19a15b9 | 2006-12-19 19:58:31 -0500 | [diff] [blame] | 224 | { |
| 225 | struct fw_unit *unit = fw_unit(dev); |
| 226 | char modalias[64]; |
Kristian Høgsberg | 19a15b9 | 2006-12-19 19:58:31 -0500 | [diff] [blame] | 227 | |
Kristian Høgsberg | 2d826cc | 2007-05-09 19:23:14 -0400 | [diff] [blame] | 228 | get_modalias(unit, modalias, sizeof(modalias)); |
Kristian Høgsberg | 19a15b9 | 2006-12-19 19:58:31 -0500 | [diff] [blame] | 229 | |
Kay Sievers | 7eff2e7 | 2007-08-14 15:15:12 +0200 | [diff] [blame] | 230 | if (add_uevent_var(env, "MODALIAS=%s", modalias)) |
Kristian Høgsberg | 19a15b9 | 2006-12-19 19:58:31 -0500 | [diff] [blame] | 231 | return -ENOMEM; |
| 232 | |
Kristian Høgsberg | 19a15b9 | 2006-12-19 19:58:31 -0500 | [diff] [blame] | 233 | return 0; |
| 234 | } |
| 235 | |
| 236 | struct bus_type fw_bus_type = { |
Kristian Høgsberg | 362c2c8 | 2007-02-06 14:49:37 -0500 | [diff] [blame] | 237 | .name = "firewire", |
Kristian Høgsberg | 19a15b9 | 2006-12-19 19:58:31 -0500 | [diff] [blame] | 238 | .match = fw_unit_match, |
Kristian Høgsberg | 19a15b9 | 2006-12-19 19:58:31 -0500 | [diff] [blame] | 239 | }; |
Kristian Høgsberg | 19a15b9 | 2006-12-19 19:58:31 -0500 | [diff] [blame] | 240 | EXPORT_SYMBOL(fw_bus_type); |
| 241 | |
Kristian Høgsberg | 19a15b9 | 2006-12-19 19:58:31 -0500 | [diff] [blame] | 242 | int fw_device_enable_phys_dma(struct fw_device *device) |
| 243 | { |
Stefan Richter | b5d2a5e | 2008-01-25 18:57:41 +0100 | [diff] [blame] | 244 | int generation = device->generation; |
| 245 | |
| 246 | /* device->node_id, accessed below, must not be older than generation */ |
| 247 | smp_rmb(); |
| 248 | |
Kristian Høgsberg | 19a15b9 | 2006-12-19 19:58:31 -0500 | [diff] [blame] | 249 | return device->card->driver->enable_phys_dma(device->card, |
| 250 | device->node_id, |
Stefan Richter | b5d2a5e | 2008-01-25 18:57:41 +0100 | [diff] [blame] | 251 | generation); |
Kristian Høgsberg | 19a15b9 | 2006-12-19 19:58:31 -0500 | [diff] [blame] | 252 | } |
Kristian Høgsberg | 19a15b9 | 2006-12-19 19:58:31 -0500 | [diff] [blame] | 253 | EXPORT_SYMBOL(fw_device_enable_phys_dma); |
| 254 | |
Kristian Høgsberg | 7feb9cc | 2007-03-21 10:55:19 -0400 | [diff] [blame] | 255 | struct config_rom_attribute { |
| 256 | struct device_attribute attr; |
| 257 | u32 key; |
| 258 | }; |
| 259 | |
Stefan Richter | 53dca51 | 2008-12-14 21:47:04 +0100 | [diff] [blame] | 260 | static ssize_t show_immediate(struct device *dev, |
| 261 | struct device_attribute *dattr, char *buf) |
Kristian Høgsberg | 7feb9cc | 2007-03-21 10:55:19 -0400 | [diff] [blame] | 262 | { |
| 263 | struct config_rom_attribute *attr = |
| 264 | container_of(dattr, struct config_rom_attribute, attr); |
| 265 | struct fw_csr_iterator ci; |
Stefan Richter | 13b302d | 2009-12-26 01:44:10 +0100 | [diff] [blame] | 266 | const u32 *dir; |
Stefan Richter | c9755e1 | 2008-03-24 20:54:28 +0100 | [diff] [blame] | 267 | int key, value, ret = -ENOENT; |
| 268 | |
| 269 | down_read(&fw_device_rwsem); |
Kristian Høgsberg | 7feb9cc | 2007-03-21 10:55:19 -0400 | [diff] [blame] | 270 | |
| 271 | if (is_fw_unit(dev)) |
| 272 | dir = fw_unit(dev)->directory; |
| 273 | else |
| 274 | dir = fw_device(dev)->config_rom + 5; |
| 275 | |
| 276 | fw_csr_iterator_init(&ci, dir); |
| 277 | while (fw_csr_iterator_next(&ci, &key, &value)) |
Stefan Richter | c9755e1 | 2008-03-24 20:54:28 +0100 | [diff] [blame] | 278 | if (attr->key == key) { |
| 279 | ret = snprintf(buf, buf ? PAGE_SIZE : 0, |
| 280 | "0x%06x\n", value); |
| 281 | break; |
| 282 | } |
Kristian Høgsberg | 7feb9cc | 2007-03-21 10:55:19 -0400 | [diff] [blame] | 283 | |
Stefan Richter | c9755e1 | 2008-03-24 20:54:28 +0100 | [diff] [blame] | 284 | up_read(&fw_device_rwsem); |
| 285 | |
| 286 | return ret; |
Kristian Høgsberg | 7feb9cc | 2007-03-21 10:55:19 -0400 | [diff] [blame] | 287 | } |
| 288 | |
| 289 | #define IMMEDIATE_ATTR(name, key) \ |
| 290 | { __ATTR(name, S_IRUGO, show_immediate, NULL), key } |
| 291 | |
Stefan Richter | 53dca51 | 2008-12-14 21:47:04 +0100 | [diff] [blame] | 292 | static ssize_t show_text_leaf(struct device *dev, |
| 293 | struct device_attribute *dattr, char *buf) |
Kristian Høgsberg | 7feb9cc | 2007-03-21 10:55:19 -0400 | [diff] [blame] | 294 | { |
| 295 | struct config_rom_attribute *attr = |
| 296 | container_of(dattr, struct config_rom_attribute, attr); |
Stefan Richter | 13b302d | 2009-12-26 01:44:10 +0100 | [diff] [blame] | 297 | const u32 *dir; |
Clemens Ladisch | 1f8fef7 | 2009-12-24 11:59:57 +0100 | [diff] [blame] | 298 | size_t bufsize; |
| 299 | char dummy_buf[2]; |
| 300 | int ret; |
Kristian Høgsberg | 7feb9cc | 2007-03-21 10:55:19 -0400 | [diff] [blame] | 301 | |
Stefan Richter | c9755e1 | 2008-03-24 20:54:28 +0100 | [diff] [blame] | 302 | down_read(&fw_device_rwsem); |
| 303 | |
Kristian Høgsberg | 7feb9cc | 2007-03-21 10:55:19 -0400 | [diff] [blame] | 304 | if (is_fw_unit(dev)) |
| 305 | dir = fw_unit(dev)->directory; |
| 306 | else |
| 307 | dir = fw_device(dev)->config_rom + 5; |
| 308 | |
Clemens Ladisch | 1f8fef7 | 2009-12-24 11:59:57 +0100 | [diff] [blame] | 309 | if (buf) { |
| 310 | bufsize = PAGE_SIZE - 1; |
| 311 | } else { |
| 312 | buf = dummy_buf; |
| 313 | bufsize = 1; |
Kristian Høgsberg | 7feb9cc | 2007-03-21 10:55:19 -0400 | [diff] [blame] | 314 | } |
| 315 | |
Clemens Ladisch | 1f8fef7 | 2009-12-24 11:59:57 +0100 | [diff] [blame] | 316 | ret = fw_csr_string(dir, attr->key, buf, bufsize); |
Kristian Høgsberg | 7feb9cc | 2007-03-21 10:55:19 -0400 | [diff] [blame] | 317 | |
Clemens Ladisch | 1f8fef7 | 2009-12-24 11:59:57 +0100 | [diff] [blame] | 318 | if (ret >= 0) { |
| 319 | /* Strip trailing whitespace and add newline. */ |
| 320 | while (ret > 0 && isspace(buf[ret - 1])) |
| 321 | ret--; |
| 322 | strcpy(buf + ret, "\n"); |
| 323 | ret++; |
Stefan Richter | c9755e1 | 2008-03-24 20:54:28 +0100 | [diff] [blame] | 324 | } |
Kristian Høgsberg | 7feb9cc | 2007-03-21 10:55:19 -0400 | [diff] [blame] | 325 | |
Stefan Richter | c9755e1 | 2008-03-24 20:54:28 +0100 | [diff] [blame] | 326 | up_read(&fw_device_rwsem); |
Kristian Høgsberg | 7feb9cc | 2007-03-21 10:55:19 -0400 | [diff] [blame] | 327 | |
Stefan Richter | c9755e1 | 2008-03-24 20:54:28 +0100 | [diff] [blame] | 328 | return ret; |
Kristian Høgsberg | 7feb9cc | 2007-03-21 10:55:19 -0400 | [diff] [blame] | 329 | } |
| 330 | |
| 331 | #define TEXT_LEAF_ATTR(name, key) \ |
| 332 | { __ATTR(name, S_IRUGO, show_text_leaf, NULL), key } |
| 333 | |
| 334 | static struct config_rom_attribute config_rom_attributes[] = { |
| 335 | IMMEDIATE_ATTR(vendor, CSR_VENDOR), |
| 336 | IMMEDIATE_ATTR(hardware_version, CSR_HARDWARE_VERSION), |
| 337 | IMMEDIATE_ATTR(specifier_id, CSR_SPECIFIER_ID), |
| 338 | IMMEDIATE_ATTR(version, CSR_VERSION), |
| 339 | IMMEDIATE_ATTR(model, CSR_MODEL), |
| 340 | TEXT_LEAF_ATTR(vendor_name, CSR_VENDOR), |
| 341 | TEXT_LEAF_ATTR(model_name, CSR_MODEL), |
| 342 | TEXT_LEAF_ATTR(hardware_version_name, CSR_HARDWARE_VERSION), |
| 343 | }; |
| 344 | |
Stefan Richter | 53dca51 | 2008-12-14 21:47:04 +0100 | [diff] [blame] | 345 | static void init_fw_attribute_group(struct device *dev, |
| 346 | struct device_attribute *attrs, |
| 347 | struct fw_attribute_group *group) |
Kristian Høgsberg | 7feb9cc | 2007-03-21 10:55:19 -0400 | [diff] [blame] | 348 | { |
| 349 | struct device_attribute *attr; |
Kristian Høgsberg | 6f2e53d | 2007-03-27 19:35:13 -0400 | [diff] [blame] | 350 | int i, j; |
| 351 | |
| 352 | for (j = 0; attrs[j].attr.name != NULL; j++) |
| 353 | group->attrs[j] = &attrs[j].attr; |
Kristian Høgsberg | 7feb9cc | 2007-03-21 10:55:19 -0400 | [diff] [blame] | 354 | |
| 355 | for (i = 0; i < ARRAY_SIZE(config_rom_attributes); i++) { |
| 356 | attr = &config_rom_attributes[i].attr; |
| 357 | if (attr->show(dev, attr, NULL) < 0) |
| 358 | continue; |
Kristian Høgsberg | 6f2e53d | 2007-03-27 19:35:13 -0400 | [diff] [blame] | 359 | group->attrs[j++] = &attr->attr; |
Kristian Høgsberg | 7feb9cc | 2007-03-21 10:55:19 -0400 | [diff] [blame] | 360 | } |
| 361 | |
Stefan Richter | e5333db | 2009-05-22 23:16:27 +0200 | [diff] [blame] | 362 | group->attrs[j] = NULL; |
Kristian Høgsberg | 6f2e53d | 2007-03-27 19:35:13 -0400 | [diff] [blame] | 363 | group->groups[0] = &group->group; |
| 364 | group->groups[1] = NULL; |
| 365 | group->group.attrs = group->attrs; |
David Brownell | a4dbd67 | 2009-06-24 10:06:31 -0700 | [diff] [blame] | 366 | dev->groups = (const struct attribute_group **) group->groups; |
Kristian Høgsberg | 7feb9cc | 2007-03-21 10:55:19 -0400 | [diff] [blame] | 367 | } |
| 368 | |
Stefan Richter | 53dca51 | 2008-12-14 21:47:04 +0100 | [diff] [blame] | 369 | static ssize_t modalias_show(struct device *dev, |
| 370 | struct device_attribute *attr, char *buf) |
Kristian Høgsberg | 19a15b9 | 2006-12-19 19:58:31 -0500 | [diff] [blame] | 371 | { |
| 372 | struct fw_unit *unit = fw_unit(dev); |
| 373 | int length; |
| 374 | |
| 375 | length = get_modalias(unit, buf, PAGE_SIZE); |
| 376 | strcpy(buf + length, "\n"); |
| 377 | |
| 378 | return length + 1; |
| 379 | } |
| 380 | |
Stefan Richter | 53dca51 | 2008-12-14 21:47:04 +0100 | [diff] [blame] | 381 | static ssize_t rom_index_show(struct device *dev, |
| 382 | struct device_attribute *attr, char *buf) |
Kristian Høgsberg | 048961e | 2007-03-07 12:12:46 -0500 | [diff] [blame] | 383 | { |
| 384 | struct fw_device *device = fw_device(dev->parent); |
| 385 | struct fw_unit *unit = fw_unit(dev); |
| 386 | |
| 387 | return snprintf(buf, PAGE_SIZE, "%d\n", |
Stefan Richter | d84702a | 2007-03-20 19:42:15 +0100 | [diff] [blame] | 388 | (int)(unit->directory - device->config_rom)); |
Kristian Høgsberg | 048961e | 2007-03-07 12:12:46 -0500 | [diff] [blame] | 389 | } |
| 390 | |
Kristian Høgsberg | 21351db | 2007-03-20 20:58:33 -0400 | [diff] [blame] | 391 | static struct device_attribute fw_unit_attributes[] = { |
| 392 | __ATTR_RO(modalias), |
| 393 | __ATTR_RO(rom_index), |
| 394 | __ATTR_NULL, |
| 395 | }; |
| 396 | |
Stefan Richter | 53dca51 | 2008-12-14 21:47:04 +0100 | [diff] [blame] | 397 | static ssize_t config_rom_show(struct device *dev, |
| 398 | struct device_attribute *attr, char *buf) |
Kristian Høgsberg | 21351db | 2007-03-20 20:58:33 -0400 | [diff] [blame] | 399 | { |
| 400 | struct fw_device *device = fw_device(dev); |
Stefan Richter | c9755e1 | 2008-03-24 20:54:28 +0100 | [diff] [blame] | 401 | size_t length; |
Kristian Høgsberg | 21351db | 2007-03-20 20:58:33 -0400 | [diff] [blame] | 402 | |
Stefan Richter | c9755e1 | 2008-03-24 20:54:28 +0100 | [diff] [blame] | 403 | down_read(&fw_device_rwsem); |
| 404 | length = device->config_rom_length * 4; |
| 405 | memcpy(buf, device->config_rom, length); |
| 406 | up_read(&fw_device_rwsem); |
Kristian Høgsberg | 21351db | 2007-03-20 20:58:33 -0400 | [diff] [blame] | 407 | |
Stefan Richter | c9755e1 | 2008-03-24 20:54:28 +0100 | [diff] [blame] | 408 | return length; |
Kristian Høgsberg | 21351db | 2007-03-20 20:58:33 -0400 | [diff] [blame] | 409 | } |
| 410 | |
Stefan Richter | 53dca51 | 2008-12-14 21:47:04 +0100 | [diff] [blame] | 411 | static ssize_t guid_show(struct device *dev, |
| 412 | struct device_attribute *attr, char *buf) |
Kristian Høgsberg | bbd1494 | 2007-03-20 20:58:35 -0400 | [diff] [blame] | 413 | { |
| 414 | struct fw_device *device = fw_device(dev); |
Stefan Richter | c9755e1 | 2008-03-24 20:54:28 +0100 | [diff] [blame] | 415 | int ret; |
Kristian Høgsberg | bbd1494 | 2007-03-20 20:58:35 -0400 | [diff] [blame] | 416 | |
Stefan Richter | c9755e1 | 2008-03-24 20:54:28 +0100 | [diff] [blame] | 417 | down_read(&fw_device_rwsem); |
| 418 | ret = snprintf(buf, PAGE_SIZE, "0x%08x%08x\n", |
| 419 | device->config_rom[3], device->config_rom[4]); |
| 420 | up_read(&fw_device_rwsem); |
| 421 | |
| 422 | return ret; |
Kristian Høgsberg | bbd1494 | 2007-03-20 20:58:35 -0400 | [diff] [blame] | 423 | } |
| 424 | |
Stefan Richter | 13b302d | 2009-12-26 01:44:10 +0100 | [diff] [blame] | 425 | static int units_sprintf(char *buf, const u32 *directory) |
Stefan Richter | 0210b66 | 2009-05-23 00:03:29 +0200 | [diff] [blame] | 426 | { |
| 427 | struct fw_csr_iterator ci; |
| 428 | int key, value; |
| 429 | int specifier_id = 0; |
| 430 | int version = 0; |
| 431 | |
| 432 | fw_csr_iterator_init(&ci, directory); |
| 433 | while (fw_csr_iterator_next(&ci, &key, &value)) { |
| 434 | switch (key) { |
| 435 | case CSR_SPECIFIER_ID: |
| 436 | specifier_id = value; |
| 437 | break; |
| 438 | case CSR_VERSION: |
| 439 | version = value; |
| 440 | break; |
| 441 | } |
| 442 | } |
| 443 | |
| 444 | return sprintf(buf, "0x%06x:0x%06x ", specifier_id, version); |
| 445 | } |
| 446 | |
| 447 | static ssize_t units_show(struct device *dev, |
| 448 | struct device_attribute *attr, char *buf) |
| 449 | { |
| 450 | struct fw_device *device = fw_device(dev); |
| 451 | struct fw_csr_iterator ci; |
| 452 | int key, value, i = 0; |
| 453 | |
| 454 | down_read(&fw_device_rwsem); |
| 455 | fw_csr_iterator_init(&ci, &device->config_rom[5]); |
| 456 | while (fw_csr_iterator_next(&ci, &key, &value)) { |
| 457 | if (key != (CSR_UNIT | CSR_DIRECTORY)) |
| 458 | continue; |
| 459 | i += units_sprintf(&buf[i], ci.p + value - 1); |
| 460 | if (i >= PAGE_SIZE - (8 + 1 + 8 + 1)) |
| 461 | break; |
| 462 | } |
| 463 | up_read(&fw_device_rwsem); |
| 464 | |
| 465 | if (i) |
| 466 | buf[i - 1] = '\n'; |
| 467 | |
| 468 | return i; |
| 469 | } |
| 470 | |
Kristian Høgsberg | 21351db | 2007-03-20 20:58:33 -0400 | [diff] [blame] | 471 | static struct device_attribute fw_device_attributes[] = { |
| 472 | __ATTR_RO(config_rom), |
Kristian Høgsberg | bbd1494 | 2007-03-20 20:58:35 -0400 | [diff] [blame] | 473 | __ATTR_RO(guid), |
Stefan Richter | 0210b66 | 2009-05-23 00:03:29 +0200 | [diff] [blame] | 474 | __ATTR_RO(units), |
Kristian Høgsberg | 21351db | 2007-03-20 20:58:33 -0400 | [diff] [blame] | 475 | __ATTR_NULL, |
Kristian Høgsberg | 048961e | 2007-03-07 12:12:46 -0500 | [diff] [blame] | 476 | }; |
| 477 | |
Stefan Richter | 53dca51 | 2008-12-14 21:47:04 +0100 | [diff] [blame] | 478 | static int read_rom(struct fw_device *device, |
| 479 | int generation, int index, u32 *data) |
Kristian Høgsberg | 19a15b9 | 2006-12-19 19:58:31 -0500 | [diff] [blame] | 480 | { |
Jay Fenlason | 1e119fa | 2008-07-20 14:20:53 +0200 | [diff] [blame] | 481 | int rcode; |
Stefan Richter | b5d2a5e | 2008-01-25 18:57:41 +0100 | [diff] [blame] | 482 | |
| 483 | /* device->node_id, accessed below, must not be older than generation */ |
| 484 | smp_rmb(); |
Kristian Høgsberg | 19a15b9 | 2006-12-19 19:58:31 -0500 | [diff] [blame] | 485 | |
Jay Fenlason | 1e119fa | 2008-07-20 14:20:53 +0200 | [diff] [blame] | 486 | rcode = fw_run_transaction(device->card, TCODE_READ_QUADLET_REQUEST, |
Stefan Richter | b5d2a5e | 2008-01-25 18:57:41 +0100 | [diff] [blame] | 487 | device->node_id, generation, device->max_speed, |
Jay Fenlason | 1e119fa | 2008-07-20 14:20:53 +0200 | [diff] [blame] | 488 | (CSR_REGISTER_BASE | CSR_CONFIG_ROM) + index * 4, |
| 489 | data, 4); |
| 490 | be32_to_cpus(data); |
Kristian Høgsberg | 19a15b9 | 2006-12-19 19:58:31 -0500 | [diff] [blame] | 491 | |
Jay Fenlason | 1e119fa | 2008-07-20 14:20:53 +0200 | [diff] [blame] | 492 | return rcode; |
Kristian Høgsberg | 19a15b9 | 2006-12-19 19:58:31 -0500 | [diff] [blame] | 493 | } |
| 494 | |
Stefan Richter | 1dadff7 | 2008-03-02 19:35:42 +0100 | [diff] [blame] | 495 | #define READ_BIB_ROM_SIZE 256 |
| 496 | #define READ_BIB_STACK_SIZE 16 |
| 497 | |
Stefan Richter | f8d2dc3 | 2008-01-25 17:53:49 +0100 | [diff] [blame] | 498 | /* |
| 499 | * Read the bus info block, perform a speed probe, and read all of the rest of |
| 500 | * the config ROM. We do all this with a cached bus generation. If the bus |
| 501 | * generation changes under us, read_bus_info_block will fail and get retried. |
| 502 | * It's better to start all over in this case because the node from which we |
| 503 | * are reading the ROM may have changed the ROM during the reset. |
| 504 | */ |
| 505 | static int read_bus_info_block(struct fw_device *device, int generation) |
Kristian Høgsberg | 19a15b9 | 2006-12-19 19:58:31 -0500 | [diff] [blame] | 506 | { |
Stefan Richter | 13b302d | 2009-12-26 01:44:10 +0100 | [diff] [blame] | 507 | const u32 *old_rom, *new_rom; |
| 508 | u32 *rom, *stack; |
Stefan Richter | 1dadff7 | 2008-03-02 19:35:42 +0100 | [diff] [blame] | 509 | u32 sp, key; |
| 510 | int i, end, length, ret = -1; |
| 511 | |
| 512 | rom = kmalloc(sizeof(*rom) * READ_BIB_ROM_SIZE + |
| 513 | sizeof(*stack) * READ_BIB_STACK_SIZE, GFP_KERNEL); |
| 514 | if (rom == NULL) |
| 515 | return -ENOMEM; |
| 516 | |
| 517 | stack = &rom[READ_BIB_ROM_SIZE]; |
Kristian Høgsberg | 19a15b9 | 2006-12-19 19:58:31 -0500 | [diff] [blame] | 518 | |
Stefan Richter | f139749 | 2007-06-10 21:31:36 +0200 | [diff] [blame] | 519 | device->max_speed = SCODE_100; |
| 520 | |
Kristian Høgsberg | 19a15b9 | 2006-12-19 19:58:31 -0500 | [diff] [blame] | 521 | /* First read the bus info block. */ |
| 522 | for (i = 0; i < 5; i++) { |
Stefan Richter | f8d2dc3 | 2008-01-25 17:53:49 +0100 | [diff] [blame] | 523 | if (read_rom(device, generation, i, &rom[i]) != RCODE_COMPLETE) |
Stefan Richter | 1dadff7 | 2008-03-02 19:35:42 +0100 | [diff] [blame] | 524 | goto out; |
Kristian Høgsberg | c781c06 | 2007-05-07 20:33:32 -0400 | [diff] [blame] | 525 | /* |
| 526 | * As per IEEE1212 7.2, during power-up, devices can |
Kristian Høgsberg | 19a15b9 | 2006-12-19 19:58:31 -0500 | [diff] [blame] | 527 | * reply with a 0 for the first quadlet of the config |
| 528 | * rom to indicate that they are booting (for example, |
| 529 | * if the firmware is on the disk of a external |
| 530 | * harddisk). In that case we just fail, and the |
Kristian Høgsberg | c781c06 | 2007-05-07 20:33:32 -0400 | [diff] [blame] | 531 | * retry mechanism will try again later. |
| 532 | */ |
Kristian Høgsberg | 19a15b9 | 2006-12-19 19:58:31 -0500 | [diff] [blame] | 533 | if (i == 0 && rom[i] == 0) |
Stefan Richter | 1dadff7 | 2008-03-02 19:35:42 +0100 | [diff] [blame] | 534 | goto out; |
Kristian Høgsberg | 19a15b9 | 2006-12-19 19:58:31 -0500 | [diff] [blame] | 535 | } |
| 536 | |
Stefan Richter | f139749 | 2007-06-10 21:31:36 +0200 | [diff] [blame] | 537 | device->max_speed = device->node->max_speed; |
| 538 | |
| 539 | /* |
| 540 | * Determine the speed of |
| 541 | * - devices with link speed less than PHY speed, |
| 542 | * - devices with 1394b PHY (unless only connected to 1394a PHYs), |
| 543 | * - all devices if there are 1394b repeaters. |
| 544 | * Note, we cannot use the bus info block's link_spd as starting point |
| 545 | * because some buggy firmwares set it lower than necessary and because |
| 546 | * 1394-1995 nodes do not have the field. |
| 547 | */ |
| 548 | if ((rom[2] & 0x7) < device->max_speed || |
| 549 | device->max_speed == SCODE_BETA || |
| 550 | device->card->beta_repeaters_present) { |
| 551 | u32 dummy; |
| 552 | |
| 553 | /* for S1600 and S3200 */ |
| 554 | if (device->max_speed == SCODE_BETA) |
| 555 | device->max_speed = device->card->link_speed; |
| 556 | |
| 557 | while (device->max_speed > SCODE_100) { |
Stefan Richter | f8d2dc3 | 2008-01-25 17:53:49 +0100 | [diff] [blame] | 558 | if (read_rom(device, generation, 0, &dummy) == |
| 559 | RCODE_COMPLETE) |
Stefan Richter | f139749 | 2007-06-10 21:31:36 +0200 | [diff] [blame] | 560 | break; |
| 561 | device->max_speed--; |
| 562 | } |
| 563 | } |
| 564 | |
Kristian Høgsberg | c781c06 | 2007-05-07 20:33:32 -0400 | [diff] [blame] | 565 | /* |
| 566 | * Now parse the config rom. The config rom is a recursive |
Kristian Høgsberg | 19a15b9 | 2006-12-19 19:58:31 -0500 | [diff] [blame] | 567 | * directory structure so we parse it using a stack of |
| 568 | * references to the blocks that make up the structure. We |
| 569 | * push a reference to the root directory on the stack to |
Kristian Høgsberg | c781c06 | 2007-05-07 20:33:32 -0400 | [diff] [blame] | 570 | * start things off. |
| 571 | */ |
Kristian Høgsberg | 19a15b9 | 2006-12-19 19:58:31 -0500 | [diff] [blame] | 572 | length = i; |
| 573 | sp = 0; |
| 574 | stack[sp++] = 0xc0000005; |
| 575 | while (sp > 0) { |
Kristian Høgsberg | c781c06 | 2007-05-07 20:33:32 -0400 | [diff] [blame] | 576 | /* |
| 577 | * Pop the next block reference of the stack. The |
Kristian Høgsberg | 19a15b9 | 2006-12-19 19:58:31 -0500 | [diff] [blame] | 578 | * lower 24 bits is the offset into the config rom, |
| 579 | * the upper 8 bits are the type of the reference the |
Kristian Høgsberg | c781c06 | 2007-05-07 20:33:32 -0400 | [diff] [blame] | 580 | * block. |
| 581 | */ |
Kristian Høgsberg | 19a15b9 | 2006-12-19 19:58:31 -0500 | [diff] [blame] | 582 | key = stack[--sp]; |
| 583 | i = key & 0xffffff; |
Stefan Richter | d54423c | 2010-02-18 01:50:31 +0100 | [diff] [blame^] | 584 | if (WARN_ON(i >= READ_BIB_ROM_SIZE)) |
Stefan Richter | 1dadff7 | 2008-03-02 19:35:42 +0100 | [diff] [blame] | 585 | goto out; |
Kristian Høgsberg | 19a15b9 | 2006-12-19 19:58:31 -0500 | [diff] [blame] | 586 | |
| 587 | /* Read header quadlet for the block to get the length. */ |
Stefan Richter | f8d2dc3 | 2008-01-25 17:53:49 +0100 | [diff] [blame] | 588 | if (read_rom(device, generation, i, &rom[i]) != RCODE_COMPLETE) |
Stefan Richter | 1dadff7 | 2008-03-02 19:35:42 +0100 | [diff] [blame] | 589 | goto out; |
Kristian Høgsberg | 19a15b9 | 2006-12-19 19:58:31 -0500 | [diff] [blame] | 590 | end = i + (rom[i] >> 16) + 1; |
| 591 | i++; |
Stefan Richter | 1dadff7 | 2008-03-02 19:35:42 +0100 | [diff] [blame] | 592 | if (end > READ_BIB_ROM_SIZE) |
Kristian Høgsberg | c781c06 | 2007-05-07 20:33:32 -0400 | [diff] [blame] | 593 | /* |
| 594 | * This block extends outside standard config |
Kristian Høgsberg | 19a15b9 | 2006-12-19 19:58:31 -0500 | [diff] [blame] | 595 | * area (and the array we're reading it |
| 596 | * into). That's broken, so ignore this |
Kristian Høgsberg | c781c06 | 2007-05-07 20:33:32 -0400 | [diff] [blame] | 597 | * device. |
| 598 | */ |
Stefan Richter | 1dadff7 | 2008-03-02 19:35:42 +0100 | [diff] [blame] | 599 | goto out; |
Kristian Høgsberg | 19a15b9 | 2006-12-19 19:58:31 -0500 | [diff] [blame] | 600 | |
Kristian Høgsberg | c781c06 | 2007-05-07 20:33:32 -0400 | [diff] [blame] | 601 | /* |
| 602 | * Now read in the block. If this is a directory |
Kristian Høgsberg | 19a15b9 | 2006-12-19 19:58:31 -0500 | [diff] [blame] | 603 | * block, check the entries as we read them to see if |
Kristian Høgsberg | c781c06 | 2007-05-07 20:33:32 -0400 | [diff] [blame] | 604 | * it references another block, and push it in that case. |
| 605 | */ |
Stefan Richter | d54423c | 2010-02-18 01:50:31 +0100 | [diff] [blame^] | 606 | for (; i < end; i++) { |
Stefan Richter | f8d2dc3 | 2008-01-25 17:53:49 +0100 | [diff] [blame] | 607 | if (read_rom(device, generation, i, &rom[i]) != |
| 608 | RCODE_COMPLETE) |
Stefan Richter | 1dadff7 | 2008-03-02 19:35:42 +0100 | [diff] [blame] | 609 | goto out; |
Stefan Richter | d54423c | 2010-02-18 01:50:31 +0100 | [diff] [blame^] | 610 | |
| 611 | if ((key >> 30) != 3 || (rom[i] >> 30) < 2 || |
| 612 | sp >= READ_BIB_STACK_SIZE) |
| 613 | continue; |
| 614 | /* |
| 615 | * Offset points outside the ROM. May be a firmware |
| 616 | * bug or an Extended ROM entry (IEEE 1212-2001 clause |
| 617 | * 7.7.18). Simply overwrite this pointer here by a |
| 618 | * fake immediate entry so that later iterators over |
| 619 | * the ROM don't have to check offsets all the time. |
| 620 | */ |
| 621 | if (i + (rom[i] & 0xffffff) >= READ_BIB_ROM_SIZE) { |
| 622 | fw_error("skipped unsupported ROM entry %x at %llx\n", |
| 623 | rom[i], |
| 624 | i * 4 | CSR_REGISTER_BASE | CSR_CONFIG_ROM); |
| 625 | rom[i] = 0; |
| 626 | continue; |
| 627 | } |
| 628 | stack[sp++] = i + rom[i]; |
Kristian Høgsberg | 19a15b9 | 2006-12-19 19:58:31 -0500 | [diff] [blame] | 629 | } |
| 630 | if (length < i) |
| 631 | length = i; |
| 632 | } |
| 633 | |
Stefan Richter | c9755e1 | 2008-03-24 20:54:28 +0100 | [diff] [blame] | 634 | old_rom = device->config_rom; |
| 635 | new_rom = kmemdup(rom, length * 4, GFP_KERNEL); |
| 636 | if (new_rom == NULL) |
Stefan Richter | 1dadff7 | 2008-03-02 19:35:42 +0100 | [diff] [blame] | 637 | goto out; |
Stefan Richter | c9755e1 | 2008-03-24 20:54:28 +0100 | [diff] [blame] | 638 | |
| 639 | down_write(&fw_device_rwsem); |
| 640 | device->config_rom = new_rom; |
Kristian Høgsberg | 19a15b9 | 2006-12-19 19:58:31 -0500 | [diff] [blame] | 641 | device->config_rom_length = length; |
Stefan Richter | c9755e1 | 2008-03-24 20:54:28 +0100 | [diff] [blame] | 642 | up_write(&fw_device_rwsem); |
| 643 | |
| 644 | kfree(old_rom); |
Stefan Richter | 1dadff7 | 2008-03-02 19:35:42 +0100 | [diff] [blame] | 645 | ret = 0; |
Stefan Richter | 837ec78 | 2009-06-09 23:56:55 +0200 | [diff] [blame] | 646 | device->max_rec = rom[2] >> 12 & 0xf; |
| 647 | device->cmc = rom[2] >> 30 & 1; |
| 648 | device->irmc = rom[2] >> 31 & 1; |
Stefan Richter | 1dadff7 | 2008-03-02 19:35:42 +0100 | [diff] [blame] | 649 | out: |
| 650 | kfree(rom); |
Kristian Høgsberg | 19a15b9 | 2006-12-19 19:58:31 -0500 | [diff] [blame] | 651 | |
Stefan Richter | 1dadff7 | 2008-03-02 19:35:42 +0100 | [diff] [blame] | 652 | return ret; |
Kristian Høgsberg | 19a15b9 | 2006-12-19 19:58:31 -0500 | [diff] [blame] | 653 | } |
| 654 | |
| 655 | static void fw_unit_release(struct device *dev) |
| 656 | { |
| 657 | struct fw_unit *unit = fw_unit(dev); |
| 658 | |
| 659 | kfree(unit); |
| 660 | } |
| 661 | |
Kristian Høgsberg | 21351db | 2007-03-20 20:58:33 -0400 | [diff] [blame] | 662 | static struct device_type fw_unit_type = { |
Kristian Høgsberg | 21351db | 2007-03-20 20:58:33 -0400 | [diff] [blame] | 663 | .uevent = fw_unit_uevent, |
| 664 | .release = fw_unit_release, |
| 665 | }; |
| 666 | |
Stefan Richter | 099d541 | 2009-06-06 18:37:25 +0200 | [diff] [blame] | 667 | static bool is_fw_unit(struct device *dev) |
Kristian Høgsberg | 19a15b9 | 2006-12-19 19:58:31 -0500 | [diff] [blame] | 668 | { |
Kristian Høgsberg | 21351db | 2007-03-20 20:58:33 -0400 | [diff] [blame] | 669 | return dev->type == &fw_unit_type; |
Kristian Høgsberg | 19a15b9 | 2006-12-19 19:58:31 -0500 | [diff] [blame] | 670 | } |
| 671 | |
| 672 | static void create_units(struct fw_device *device) |
| 673 | { |
| 674 | struct fw_csr_iterator ci; |
| 675 | struct fw_unit *unit; |
| 676 | int key, value, i; |
| 677 | |
| 678 | i = 0; |
| 679 | fw_csr_iterator_init(&ci, &device->config_rom[5]); |
| 680 | while (fw_csr_iterator_next(&ci, &key, &value)) { |
| 681 | if (key != (CSR_UNIT | CSR_DIRECTORY)) |
| 682 | continue; |
| 683 | |
Kristian Høgsberg | c781c06 | 2007-05-07 20:33:32 -0400 | [diff] [blame] | 684 | /* |
| 685 | * Get the address of the unit directory and try to |
| 686 | * match the drivers id_tables against it. |
| 687 | */ |
Kristian Høgsberg | 2d826cc | 2007-05-09 19:23:14 -0400 | [diff] [blame] | 688 | unit = kzalloc(sizeof(*unit), GFP_KERNEL); |
Kristian Høgsberg | 19a15b9 | 2006-12-19 19:58:31 -0500 | [diff] [blame] | 689 | if (unit == NULL) { |
| 690 | fw_error("failed to allocate memory for unit\n"); |
| 691 | continue; |
| 692 | } |
| 693 | |
| 694 | unit->directory = ci.p + value - 1; |
| 695 | unit->device.bus = &fw_bus_type; |
Kristian Høgsberg | 21351db | 2007-03-20 20:58:33 -0400 | [diff] [blame] | 696 | unit->device.type = &fw_unit_type; |
Kristian Høgsberg | 19a15b9 | 2006-12-19 19:58:31 -0500 | [diff] [blame] | 697 | unit->device.parent = &device->device; |
Kay Sievers | a1f6481 | 2008-10-30 01:41:56 +0100 | [diff] [blame] | 698 | dev_set_name(&unit->device, "%s.%d", dev_name(&device->device), i++); |
Kristian Høgsberg | 19a15b9 | 2006-12-19 19:58:31 -0500 | [diff] [blame] | 699 | |
Stefan Richter | e5333db | 2009-05-22 23:16:27 +0200 | [diff] [blame] | 700 | BUILD_BUG_ON(ARRAY_SIZE(unit->attribute_group.attrs) < |
| 701 | ARRAY_SIZE(fw_unit_attributes) + |
| 702 | ARRAY_SIZE(config_rom_attributes)); |
Kristian Høgsberg | 6f2e53d | 2007-03-27 19:35:13 -0400 | [diff] [blame] | 703 | init_fw_attribute_group(&unit->device, |
| 704 | fw_unit_attributes, |
| 705 | &unit->attribute_group); |
Stefan Richter | e5333db | 2009-05-22 23:16:27 +0200 | [diff] [blame] | 706 | |
Kristian Høgsberg | 7feb9cc | 2007-03-21 10:55:19 -0400 | [diff] [blame] | 707 | if (device_register(&unit->device) < 0) |
| 708 | goto skip_unit; |
| 709 | |
Kristian Høgsberg | 7feb9cc | 2007-03-21 10:55:19 -0400 | [diff] [blame] | 710 | continue; |
| 711 | |
Kristian Høgsberg | 7feb9cc | 2007-03-21 10:55:19 -0400 | [diff] [blame] | 712 | skip_unit: |
| 713 | kfree(unit); |
Kristian Høgsberg | 19a15b9 | 2006-12-19 19:58:31 -0500 | [diff] [blame] | 714 | } |
| 715 | } |
| 716 | |
| 717 | static int shutdown_unit(struct device *device, void *data) |
| 718 | { |
Kristian Høgsberg | 21351db | 2007-03-20 20:58:33 -0400 | [diff] [blame] | 719 | device_unregister(device); |
Kristian Høgsberg | 19a15b9 | 2006-12-19 19:58:31 -0500 | [diff] [blame] | 720 | |
| 721 | return 0; |
| 722 | } |
| 723 | |
Stefan Richter | c9755e1 | 2008-03-24 20:54:28 +0100 | [diff] [blame] | 724 | /* |
| 725 | * fw_device_rwsem acts as dual purpose mutex: |
| 726 | * - serializes accesses to fw_device_idr, |
| 727 | * - serializes accesses to fw_device.config_rom/.config_rom_length and |
| 728 | * fw_unit.directory, unless those accesses happen at safe occasions |
| 729 | */ |
| 730 | DECLARE_RWSEM(fw_device_rwsem); |
| 731 | |
Stefan Richter | d6053e0 | 2008-11-24 20:40:00 +0100 | [diff] [blame] | 732 | DEFINE_IDR(fw_device_idr); |
Kristian Høgsberg | a3aca3d | 2007-03-07 12:12:44 -0500 | [diff] [blame] | 733 | int fw_cdev_major; |
| 734 | |
Stefan Richter | 96b1906 | 2008-02-02 15:01:09 +0100 | [diff] [blame] | 735 | struct fw_device *fw_device_get_by_devt(dev_t devt) |
Kristian Høgsberg | a3aca3d | 2007-03-07 12:12:44 -0500 | [diff] [blame] | 736 | { |
| 737 | struct fw_device *device; |
| 738 | |
Stefan Richter | c9755e1 | 2008-03-24 20:54:28 +0100 | [diff] [blame] | 739 | down_read(&fw_device_rwsem); |
Kristian Høgsberg | a3aca3d | 2007-03-07 12:12:44 -0500 | [diff] [blame] | 740 | device = idr_find(&fw_device_idr, MINOR(devt)); |
Stefan Richter | 96b1906 | 2008-02-02 15:01:09 +0100 | [diff] [blame] | 741 | if (device) |
| 742 | fw_device_get(device); |
Stefan Richter | c9755e1 | 2008-03-24 20:54:28 +0100 | [diff] [blame] | 743 | up_read(&fw_device_rwsem); |
Kristian Høgsberg | a3aca3d | 2007-03-07 12:12:44 -0500 | [diff] [blame] | 744 | |
| 745 | return device; |
| 746 | } |
| 747 | |
Kristian Høgsberg | c781c06 | 2007-05-07 20:33:32 -0400 | [diff] [blame] | 748 | /* |
| 749 | * These defines control the retry behavior for reading the config |
Kristian Høgsberg | 19a15b9 | 2006-12-19 19:58:31 -0500 | [diff] [blame] | 750 | * rom. It shouldn't be necessary to tweak these; if the device |
| 751 | * doesn't respond to a config rom read within 10 seconds, it's not |
| 752 | * going to respond at all. As for the initial delay, a lot of |
| 753 | * devices will be able to respond within half a second after bus |
| 754 | * reset. On the other hand, it's not really worth being more |
| 755 | * aggressive than that, since it scales pretty well; if 10 devices |
Kristian Høgsberg | c781c06 | 2007-05-07 20:33:32 -0400 | [diff] [blame] | 756 | * are plugged in, they're all getting read within one second. |
| 757 | */ |
Kristian Høgsberg | 19a15b9 | 2006-12-19 19:58:31 -0500 | [diff] [blame] | 758 | |
Kristian Høgsberg | c5dfd0a | 2007-03-27 01:43:43 -0400 | [diff] [blame] | 759 | #define MAX_RETRIES 10 |
| 760 | #define RETRY_DELAY (3 * HZ) |
Kristian Høgsberg | 19a15b9 | 2006-12-19 19:58:31 -0500 | [diff] [blame] | 761 | #define INITIAL_DELAY (HZ / 2) |
Stefan Richter | 3d36a0d | 2009-01-17 22:45:54 +0100 | [diff] [blame] | 762 | #define SHUTDOWN_DELAY (2 * HZ) |
| 763 | |
| 764 | static void fw_device_shutdown(struct work_struct *work) |
| 765 | { |
| 766 | struct fw_device *device = |
| 767 | container_of(work, struct fw_device, work.work); |
| 768 | int minor = MINOR(device->device.devt); |
| 769 | |
Stefan Richter | e747a5c | 2009-01-24 20:35:38 +0100 | [diff] [blame] | 770 | if (time_is_after_jiffies(device->card->reset_jiffies + SHUTDOWN_DELAY) |
| 771 | && !list_empty(&device->card->link)) { |
Stefan Richter | 3d36a0d | 2009-01-17 22:45:54 +0100 | [diff] [blame] | 772 | schedule_delayed_work(&device->work, SHUTDOWN_DELAY); |
| 773 | return; |
| 774 | } |
| 775 | |
| 776 | if (atomic_cmpxchg(&device->state, |
| 777 | FW_DEVICE_GONE, |
| 778 | FW_DEVICE_SHUTDOWN) != FW_DEVICE_GONE) |
| 779 | return; |
| 780 | |
| 781 | fw_device_cdev_remove(device); |
| 782 | device_for_each_child(&device->device, NULL, shutdown_unit); |
| 783 | device_unregister(&device->device); |
| 784 | |
| 785 | down_write(&fw_device_rwsem); |
| 786 | idr_remove(&fw_device_idr, minor); |
| 787 | up_write(&fw_device_rwsem); |
| 788 | |
| 789 | fw_device_put(device); |
| 790 | } |
| 791 | |
Stefan Richter | aed8089 | 2009-01-17 22:45:54 +0100 | [diff] [blame] | 792 | static void fw_device_release(struct device *dev) |
| 793 | { |
| 794 | struct fw_device *device = fw_device(dev); |
| 795 | struct fw_card *card = device->card; |
| 796 | unsigned long flags; |
| 797 | |
| 798 | /* |
| 799 | * Take the card lock so we don't set this to NULL while a |
| 800 | * FW_NODE_UPDATED callback is being handled or while the |
| 801 | * bus manager work looks at this node. |
| 802 | */ |
| 803 | spin_lock_irqsave(&card->lock, flags); |
| 804 | device->node->data = NULL; |
| 805 | spin_unlock_irqrestore(&card->lock, flags); |
| 806 | |
| 807 | fw_node_put(device->node); |
| 808 | kfree(device->config_rom); |
| 809 | kfree(device); |
| 810 | fw_card_put(card); |
| 811 | } |
| 812 | |
Stefan Richter | 3d36a0d | 2009-01-17 22:45:54 +0100 | [diff] [blame] | 813 | static struct device_type fw_device_type = { |
Stefan Richter | aed8089 | 2009-01-17 22:45:54 +0100 | [diff] [blame] | 814 | .release = fw_device_release, |
Stefan Richter | 3d36a0d | 2009-01-17 22:45:54 +0100 | [diff] [blame] | 815 | }; |
| 816 | |
Stefan Richter | 099d541 | 2009-06-06 18:37:25 +0200 | [diff] [blame] | 817 | static bool is_fw_device(struct device *dev) |
| 818 | { |
| 819 | return dev->type == &fw_device_type; |
| 820 | } |
| 821 | |
Stefan Richter | aed8089 | 2009-01-17 22:45:54 +0100 | [diff] [blame] | 822 | static int update_unit(struct device *dev, void *data) |
| 823 | { |
| 824 | struct fw_unit *unit = fw_unit(dev); |
| 825 | struct fw_driver *driver = (struct fw_driver *)dev->driver; |
| 826 | |
| 827 | if (is_fw_unit(dev) && driver != NULL && driver->update != NULL) { |
| 828 | down(&dev->sem); |
| 829 | driver->update(unit); |
| 830 | up(&dev->sem); |
| 831 | } |
| 832 | |
| 833 | return 0; |
| 834 | } |
| 835 | |
| 836 | static void fw_device_update(struct work_struct *work) |
| 837 | { |
| 838 | struct fw_device *device = |
| 839 | container_of(work, struct fw_device, work.work); |
| 840 | |
| 841 | fw_device_cdev_update(device); |
| 842 | device_for_each_child(&device->device, NULL, update_unit); |
| 843 | } |
Stefan Richter | 3d36a0d | 2009-01-17 22:45:54 +0100 | [diff] [blame] | 844 | |
| 845 | /* |
| 846 | * If a device was pending for deletion because its node went away but its |
| 847 | * bus info block and root directory header matches that of a newly discovered |
| 848 | * device, revive the existing fw_device. |
| 849 | * The newly allocated fw_device becomes obsolete instead. |
| 850 | */ |
| 851 | static int lookup_existing_device(struct device *dev, void *data) |
| 852 | { |
| 853 | struct fw_device *old = fw_device(dev); |
| 854 | struct fw_device *new = data; |
| 855 | struct fw_card *card = new->card; |
| 856 | int match = 0; |
| 857 | |
Stefan Richter | 099d541 | 2009-06-06 18:37:25 +0200 | [diff] [blame] | 858 | if (!is_fw_device(dev)) |
| 859 | return 0; |
| 860 | |
Stefan Richter | 3d36a0d | 2009-01-17 22:45:54 +0100 | [diff] [blame] | 861 | down_read(&fw_device_rwsem); /* serialize config_rom access */ |
| 862 | spin_lock_irq(&card->lock); /* serialize node access */ |
| 863 | |
| 864 | if (memcmp(old->config_rom, new->config_rom, 6 * 4) == 0 && |
| 865 | atomic_cmpxchg(&old->state, |
| 866 | FW_DEVICE_GONE, |
| 867 | FW_DEVICE_RUNNING) == FW_DEVICE_GONE) { |
| 868 | struct fw_node *current_node = new->node; |
| 869 | struct fw_node *obsolete_node = old->node; |
| 870 | |
| 871 | new->node = obsolete_node; |
| 872 | new->node->data = new; |
| 873 | old->node = current_node; |
| 874 | old->node->data = old; |
| 875 | |
| 876 | old->max_speed = new->max_speed; |
| 877 | old->node_id = current_node->node_id; |
| 878 | smp_wmb(); /* update node_id before generation */ |
| 879 | old->generation = card->generation; |
| 880 | old->config_rom_retries = 0; |
| 881 | fw_notify("rediscovered device %s\n", dev_name(dev)); |
| 882 | |
| 883 | PREPARE_DELAYED_WORK(&old->work, fw_device_update); |
| 884 | schedule_delayed_work(&old->work, 0); |
| 885 | |
| 886 | if (current_node == card->root_node) |
| 887 | fw_schedule_bm_work(card, 0); |
| 888 | |
| 889 | match = 1; |
| 890 | } |
| 891 | |
| 892 | spin_unlock_irq(&card->lock); |
| 893 | up_read(&fw_device_rwsem); |
| 894 | |
| 895 | return match; |
| 896 | } |
Kristian Høgsberg | 19a15b9 | 2006-12-19 19:58:31 -0500 | [diff] [blame] | 897 | |
Stefan Richter | 7889b60 | 2009-03-10 21:09:28 +0100 | [diff] [blame] | 898 | enum { BC_UNKNOWN = 0, BC_UNIMPLEMENTED, BC_IMPLEMENTED, }; |
| 899 | |
Stefan Richter | 099d541 | 2009-06-06 18:37:25 +0200 | [diff] [blame] | 900 | static void set_broadcast_channel(struct fw_device *device, int generation) |
Stefan Richter | 7889b60 | 2009-03-10 21:09:28 +0100 | [diff] [blame] | 901 | { |
| 902 | struct fw_card *card = device->card; |
| 903 | __be32 data; |
| 904 | int rcode; |
| 905 | |
| 906 | if (!card->broadcast_channel_allocated) |
| 907 | return; |
| 908 | |
Stefan Richter | 837ec78 | 2009-06-09 23:56:55 +0200 | [diff] [blame] | 909 | /* |
| 910 | * The Broadcast_Channel Valid bit is required by nodes which want to |
| 911 | * transmit on this channel. Such transmissions are practically |
| 912 | * exclusive to IP over 1394 (RFC 2734). IP capable nodes are required |
| 913 | * to be IRM capable and have a max_rec of 8 or more. We use this fact |
| 914 | * to narrow down to which nodes we send Broadcast_Channel updates. |
| 915 | */ |
| 916 | if (!device->irmc || device->max_rec < 8) |
| 917 | return; |
| 918 | |
| 919 | /* |
| 920 | * Some 1394-1995 nodes crash if this 1394a-2000 register is written. |
| 921 | * Perform a read test first. |
| 922 | */ |
Stefan Richter | 7889b60 | 2009-03-10 21:09:28 +0100 | [diff] [blame] | 923 | if (device->bc_implemented == BC_UNKNOWN) { |
| 924 | rcode = fw_run_transaction(card, TCODE_READ_QUADLET_REQUEST, |
| 925 | device->node_id, generation, device->max_speed, |
| 926 | CSR_REGISTER_BASE + CSR_BROADCAST_CHANNEL, |
| 927 | &data, 4); |
| 928 | switch (rcode) { |
| 929 | case RCODE_COMPLETE: |
| 930 | if (data & cpu_to_be32(1 << 31)) { |
| 931 | device->bc_implemented = BC_IMPLEMENTED; |
| 932 | break; |
| 933 | } |
| 934 | /* else fall through to case address error */ |
| 935 | case RCODE_ADDRESS_ERROR: |
| 936 | device->bc_implemented = BC_UNIMPLEMENTED; |
| 937 | } |
| 938 | } |
| 939 | |
| 940 | if (device->bc_implemented == BC_IMPLEMENTED) { |
| 941 | data = cpu_to_be32(BROADCAST_CHANNEL_INITIAL | |
| 942 | BROADCAST_CHANNEL_VALID); |
| 943 | fw_run_transaction(card, TCODE_WRITE_QUADLET_REQUEST, |
| 944 | device->node_id, generation, device->max_speed, |
| 945 | CSR_REGISTER_BASE + CSR_BROADCAST_CHANNEL, |
| 946 | &data, 4); |
| 947 | } |
| 948 | } |
| 949 | |
Stefan Richter | 099d541 | 2009-06-06 18:37:25 +0200 | [diff] [blame] | 950 | int fw_device_set_broadcast_channel(struct device *dev, void *gen) |
| 951 | { |
| 952 | if (is_fw_device(dev)) |
| 953 | set_broadcast_channel(fw_device(dev), (long)gen); |
| 954 | |
| 955 | return 0; |
| 956 | } |
| 957 | |
Kristian Høgsberg | 19a15b9 | 2006-12-19 19:58:31 -0500 | [diff] [blame] | 958 | static void fw_device_init(struct work_struct *work) |
| 959 | { |
Kristian Høgsberg | 19a15b9 | 2006-12-19 19:58:31 -0500 | [diff] [blame] | 960 | struct fw_device *device = |
| 961 | container_of(work, struct fw_device, work.work); |
Stefan Richter | 3d36a0d | 2009-01-17 22:45:54 +0100 | [diff] [blame] | 962 | struct device *revived_dev; |
Stefan Richter | e1eff7a | 2009-02-03 17:55:19 +0100 | [diff] [blame] | 963 | int minor, ret; |
Kristian Høgsberg | 19a15b9 | 2006-12-19 19:58:31 -0500 | [diff] [blame] | 964 | |
Kristian Høgsberg | c781c06 | 2007-05-07 20:33:32 -0400 | [diff] [blame] | 965 | /* |
| 966 | * All failure paths here set node->data to NULL, so that we |
Kristian Høgsberg | 19a15b9 | 2006-12-19 19:58:31 -0500 | [diff] [blame] | 967 | * don't try to do device_for_each_child() on a kfree()'d |
Kristian Høgsberg | c781c06 | 2007-05-07 20:33:32 -0400 | [diff] [blame] | 968 | * device. |
| 969 | */ |
Kristian Høgsberg | 19a15b9 | 2006-12-19 19:58:31 -0500 | [diff] [blame] | 970 | |
Stefan Richter | f8d2dc3 | 2008-01-25 17:53:49 +0100 | [diff] [blame] | 971 | if (read_bus_info_block(device, device->generation) < 0) { |
Stefan Richter | 855c603 | 2008-02-27 22:14:27 +0100 | [diff] [blame] | 972 | if (device->config_rom_retries < MAX_RETRIES && |
| 973 | atomic_read(&device->state) == FW_DEVICE_INITIALIZING) { |
Kristian Høgsberg | 19a15b9 | 2006-12-19 19:58:31 -0500 | [diff] [blame] | 974 | device->config_rom_retries++; |
| 975 | schedule_delayed_work(&device->work, RETRY_DELAY); |
| 976 | } else { |
Stefan Richter | 907293d | 2007-01-23 21:11:43 +0100 | [diff] [blame] | 977 | fw_notify("giving up on config rom for node id %x\n", |
Kristian Høgsberg | 19a15b9 | 2006-12-19 19:58:31 -0500 | [diff] [blame] | 978 | device->node_id); |
Kristian Høgsberg | 931c483 | 2007-01-26 00:38:45 -0500 | [diff] [blame] | 979 | if (device->node == device->card->root_node) |
Jay Fenlason | 0fa1986f | 2008-11-29 17:44:57 +0100 | [diff] [blame] | 980 | fw_schedule_bm_work(device->card, 0); |
Kristian Høgsberg | 19a15b9 | 2006-12-19 19:58:31 -0500 | [diff] [blame] | 981 | fw_device_release(&device->device); |
| 982 | } |
| 983 | return; |
| 984 | } |
| 985 | |
Stefan Richter | 3d36a0d | 2009-01-17 22:45:54 +0100 | [diff] [blame] | 986 | revived_dev = device_find_child(device->card->device, |
| 987 | device, lookup_existing_device); |
| 988 | if (revived_dev) { |
| 989 | put_device(revived_dev); |
| 990 | fw_device_release(&device->device); |
| 991 | |
| 992 | return; |
| 993 | } |
| 994 | |
Stefan Richter | 6230582 | 2009-01-09 20:49:37 +0100 | [diff] [blame] | 995 | device_initialize(&device->device); |
Stefan Richter | 96b1906 | 2008-02-02 15:01:09 +0100 | [diff] [blame] | 996 | |
| 997 | fw_device_get(device); |
Stefan Richter | c9755e1 | 2008-03-24 20:54:28 +0100 | [diff] [blame] | 998 | down_write(&fw_device_rwsem); |
Stefan Richter | e1eff7a | 2009-02-03 17:55:19 +0100 | [diff] [blame] | 999 | ret = idr_pre_get(&fw_device_idr, GFP_KERNEL) ? |
Stefan Richter | 6230582 | 2009-01-09 20:49:37 +0100 | [diff] [blame] | 1000 | idr_get_new(&fw_device_idr, device, &minor) : |
| 1001 | -ENOMEM; |
Stefan Richter | c9755e1 | 2008-03-24 20:54:28 +0100 | [diff] [blame] | 1002 | up_write(&fw_device_rwsem); |
Stefan Richter | 96b1906 | 2008-02-02 15:01:09 +0100 | [diff] [blame] | 1003 | |
Stefan Richter | e1eff7a | 2009-02-03 17:55:19 +0100 | [diff] [blame] | 1004 | if (ret < 0) |
Kristian Høgsberg | a3aca3d | 2007-03-07 12:12:44 -0500 | [diff] [blame] | 1005 | goto error; |
| 1006 | |
Kristian Høgsberg | 19a15b9 | 2006-12-19 19:58:31 -0500 | [diff] [blame] | 1007 | device->device.bus = &fw_bus_type; |
Kristian Høgsberg | 21351db | 2007-03-20 20:58:33 -0400 | [diff] [blame] | 1008 | device->device.type = &fw_device_type; |
Kristian Høgsberg | 19a15b9 | 2006-12-19 19:58:31 -0500 | [diff] [blame] | 1009 | device->device.parent = device->card->device; |
Kristian Høgsberg | a3aca3d | 2007-03-07 12:12:44 -0500 | [diff] [blame] | 1010 | device->device.devt = MKDEV(fw_cdev_major, minor); |
Kay Sievers | a1f6481 | 2008-10-30 01:41:56 +0100 | [diff] [blame] | 1011 | dev_set_name(&device->device, "fw%d", minor); |
Kristian Høgsberg | 19a15b9 | 2006-12-19 19:58:31 -0500 | [diff] [blame] | 1012 | |
Stefan Richter | e5333db | 2009-05-22 23:16:27 +0200 | [diff] [blame] | 1013 | BUILD_BUG_ON(ARRAY_SIZE(device->attribute_group.attrs) < |
| 1014 | ARRAY_SIZE(fw_device_attributes) + |
| 1015 | ARRAY_SIZE(config_rom_attributes)); |
Kristian Høgsberg | 6f2e53d | 2007-03-27 19:35:13 -0400 | [diff] [blame] | 1016 | init_fw_attribute_group(&device->device, |
| 1017 | fw_device_attributes, |
| 1018 | &device->attribute_group); |
Stefan Richter | e5333db | 2009-05-22 23:16:27 +0200 | [diff] [blame] | 1019 | |
Kristian Høgsberg | 19a15b9 | 2006-12-19 19:58:31 -0500 | [diff] [blame] | 1020 | if (device_add(&device->device)) { |
| 1021 | fw_error("Failed to add device.\n"); |
Kristian Høgsberg | a3aca3d | 2007-03-07 12:12:44 -0500 | [diff] [blame] | 1022 | goto error_with_cdev; |
Kristian Høgsberg | 19a15b9 | 2006-12-19 19:58:31 -0500 | [diff] [blame] | 1023 | } |
| 1024 | |
Kristian Høgsberg | 19a15b9 | 2006-12-19 19:58:31 -0500 | [diff] [blame] | 1025 | create_units(device); |
| 1026 | |
Kristian Høgsberg | c781c06 | 2007-05-07 20:33:32 -0400 | [diff] [blame] | 1027 | /* |
| 1028 | * Transition the device to running state. If it got pulled |
Kristian Høgsberg | 19a15b9 | 2006-12-19 19:58:31 -0500 | [diff] [blame] | 1029 | * out from under us while we did the intialization work, we |
| 1030 | * have to shut down the device again here. Normally, though, |
| 1031 | * fw_node_event will be responsible for shutting it down when |
| 1032 | * necessary. We have to use the atomic cmpxchg here to avoid |
| 1033 | * racing with the FW_NODE_DESTROYED case in |
Kristian Høgsberg | c781c06 | 2007-05-07 20:33:32 -0400 | [diff] [blame] | 1034 | * fw_node_event(). |
| 1035 | */ |
Stefan Richter | 641f879 | 2007-01-27 10:34:55 +0100 | [diff] [blame] | 1036 | if (atomic_cmpxchg(&device->state, |
Stefan Richter | 3d36a0d | 2009-01-17 22:45:54 +0100 | [diff] [blame] | 1037 | FW_DEVICE_INITIALIZING, |
| 1038 | FW_DEVICE_RUNNING) == FW_DEVICE_GONE) { |
| 1039 | PREPARE_DELAYED_WORK(&device->work, fw_device_shutdown); |
| 1040 | schedule_delayed_work(&device->work, SHUTDOWN_DELAY); |
Stefan Richter | fa6e697 | 2008-02-03 23:03:00 +0100 | [diff] [blame] | 1041 | } else { |
| 1042 | if (device->config_rom_retries) |
| 1043 | fw_notify("created device %s: GUID %08x%08x, S%d00, " |
| 1044 | "%d config ROM retries\n", |
Kay Sievers | a1f6481 | 2008-10-30 01:41:56 +0100 | [diff] [blame] | 1045 | dev_name(&device->device), |
Stefan Richter | fa6e697 | 2008-02-03 23:03:00 +0100 | [diff] [blame] | 1046 | device->config_rom[3], device->config_rom[4], |
| 1047 | 1 << device->max_speed, |
| 1048 | device->config_rom_retries); |
| 1049 | else |
| 1050 | fw_notify("created device %s: GUID %08x%08x, S%d00\n", |
Kay Sievers | a1f6481 | 2008-10-30 01:41:56 +0100 | [diff] [blame] | 1051 | dev_name(&device->device), |
Stefan Richter | fa6e697 | 2008-02-03 23:03:00 +0100 | [diff] [blame] | 1052 | device->config_rom[3], device->config_rom[4], |
| 1053 | 1 << device->max_speed); |
Stefan Richter | c9755e1 | 2008-03-24 20:54:28 +0100 | [diff] [blame] | 1054 | device->config_rom_retries = 0; |
Stefan Richter | 7889b60 | 2009-03-10 21:09:28 +0100 | [diff] [blame] | 1055 | |
Stefan Richter | 099d541 | 2009-06-06 18:37:25 +0200 | [diff] [blame] | 1056 | set_broadcast_channel(device, device->generation); |
Stefan Richter | fa6e697 | 2008-02-03 23:03:00 +0100 | [diff] [blame] | 1057 | } |
Kristian Høgsberg | 19a15b9 | 2006-12-19 19:58:31 -0500 | [diff] [blame] | 1058 | |
Kristian Høgsberg | c781c06 | 2007-05-07 20:33:32 -0400 | [diff] [blame] | 1059 | /* |
| 1060 | * Reschedule the IRM work if we just finished reading the |
Kristian Høgsberg | 19a15b9 | 2006-12-19 19:58:31 -0500 | [diff] [blame] | 1061 | * root node config rom. If this races with a bus reset we |
| 1062 | * just end up running the IRM work a couple of extra times - |
Kristian Høgsberg | c781c06 | 2007-05-07 20:33:32 -0400 | [diff] [blame] | 1063 | * pretty harmless. |
| 1064 | */ |
Kristian Høgsberg | 19a15b9 | 2006-12-19 19:58:31 -0500 | [diff] [blame] | 1065 | if (device->node == device->card->root_node) |
Jay Fenlason | 0fa1986f | 2008-11-29 17:44:57 +0100 | [diff] [blame] | 1066 | fw_schedule_bm_work(device->card, 0); |
Kristian Høgsberg | 19a15b9 | 2006-12-19 19:58:31 -0500 | [diff] [blame] | 1067 | |
| 1068 | return; |
| 1069 | |
Kristian Høgsberg | a3aca3d | 2007-03-07 12:12:44 -0500 | [diff] [blame] | 1070 | error_with_cdev: |
Stefan Richter | c9755e1 | 2008-03-24 20:54:28 +0100 | [diff] [blame] | 1071 | down_write(&fw_device_rwsem); |
Kristian Høgsberg | a3aca3d | 2007-03-07 12:12:44 -0500 | [diff] [blame] | 1072 | idr_remove(&fw_device_idr, minor); |
Stefan Richter | c9755e1 | 2008-03-24 20:54:28 +0100 | [diff] [blame] | 1073 | up_write(&fw_device_rwsem); |
Stefan Richter | 373b2ed | 2007-03-04 14:45:18 +0100 | [diff] [blame] | 1074 | error: |
Stefan Richter | 96b1906 | 2008-02-02 15:01:09 +0100 | [diff] [blame] | 1075 | fw_device_put(device); /* fw_device_idr's reference */ |
| 1076 | |
| 1077 | put_device(&device->device); /* our reference */ |
Kristian Høgsberg | 19a15b9 | 2006-12-19 19:58:31 -0500 | [diff] [blame] | 1078 | } |
| 1079 | |
Stefan Richter | c9755e1 | 2008-03-24 20:54:28 +0100 | [diff] [blame] | 1080 | enum { |
| 1081 | REREAD_BIB_ERROR, |
| 1082 | REREAD_BIB_GONE, |
| 1083 | REREAD_BIB_UNCHANGED, |
| 1084 | REREAD_BIB_CHANGED, |
| 1085 | }; |
| 1086 | |
| 1087 | /* Reread and compare bus info block and header of root directory */ |
| 1088 | static int reread_bus_info_block(struct fw_device *device, int generation) |
| 1089 | { |
| 1090 | u32 q; |
| 1091 | int i; |
| 1092 | |
| 1093 | for (i = 0; i < 6; i++) { |
| 1094 | if (read_rom(device, generation, i, &q) != RCODE_COMPLETE) |
| 1095 | return REREAD_BIB_ERROR; |
| 1096 | |
| 1097 | if (i == 0 && q == 0) |
| 1098 | return REREAD_BIB_GONE; |
| 1099 | |
Stefan Richter | d01b017 | 2009-01-17 22:45:54 +0100 | [diff] [blame] | 1100 | if (q != device->config_rom[i]) |
Stefan Richter | c9755e1 | 2008-03-24 20:54:28 +0100 | [diff] [blame] | 1101 | return REREAD_BIB_CHANGED; |
| 1102 | } |
| 1103 | |
| 1104 | return REREAD_BIB_UNCHANGED; |
| 1105 | } |
| 1106 | |
| 1107 | static void fw_device_refresh(struct work_struct *work) |
| 1108 | { |
| 1109 | struct fw_device *device = |
| 1110 | container_of(work, struct fw_device, work.work); |
| 1111 | struct fw_card *card = device->card; |
| 1112 | int node_id = device->node_id; |
| 1113 | |
| 1114 | switch (reread_bus_info_block(device, device->generation)) { |
| 1115 | case REREAD_BIB_ERROR: |
| 1116 | if (device->config_rom_retries < MAX_RETRIES / 2 && |
| 1117 | atomic_read(&device->state) == FW_DEVICE_INITIALIZING) { |
| 1118 | device->config_rom_retries++; |
| 1119 | schedule_delayed_work(&device->work, RETRY_DELAY / 2); |
| 1120 | |
| 1121 | return; |
| 1122 | } |
| 1123 | goto give_up; |
| 1124 | |
| 1125 | case REREAD_BIB_GONE: |
| 1126 | goto gone; |
| 1127 | |
| 1128 | case REREAD_BIB_UNCHANGED: |
| 1129 | if (atomic_cmpxchg(&device->state, |
Stefan Richter | 3d36a0d | 2009-01-17 22:45:54 +0100 | [diff] [blame] | 1130 | FW_DEVICE_INITIALIZING, |
| 1131 | FW_DEVICE_RUNNING) == FW_DEVICE_GONE) |
Stefan Richter | c9755e1 | 2008-03-24 20:54:28 +0100 | [diff] [blame] | 1132 | goto gone; |
| 1133 | |
| 1134 | fw_device_update(work); |
| 1135 | device->config_rom_retries = 0; |
| 1136 | goto out; |
| 1137 | |
| 1138 | case REREAD_BIB_CHANGED: |
| 1139 | break; |
| 1140 | } |
| 1141 | |
| 1142 | /* |
| 1143 | * Something changed. We keep things simple and don't investigate |
| 1144 | * further. We just destroy all previous units and create new ones. |
| 1145 | */ |
| 1146 | device_for_each_child(&device->device, NULL, shutdown_unit); |
| 1147 | |
| 1148 | if (read_bus_info_block(device, device->generation) < 0) { |
| 1149 | if (device->config_rom_retries < MAX_RETRIES && |
| 1150 | atomic_read(&device->state) == FW_DEVICE_INITIALIZING) { |
| 1151 | device->config_rom_retries++; |
| 1152 | schedule_delayed_work(&device->work, RETRY_DELAY); |
| 1153 | |
| 1154 | return; |
| 1155 | } |
| 1156 | goto give_up; |
| 1157 | } |
| 1158 | |
| 1159 | create_units(device); |
| 1160 | |
Stefan Richter | 0210b66 | 2009-05-23 00:03:29 +0200 | [diff] [blame] | 1161 | /* Userspace may want to re-read attributes. */ |
| 1162 | kobject_uevent(&device->device.kobj, KOBJ_CHANGE); |
| 1163 | |
Stefan Richter | c9755e1 | 2008-03-24 20:54:28 +0100 | [diff] [blame] | 1164 | if (atomic_cmpxchg(&device->state, |
Stefan Richter | 3d36a0d | 2009-01-17 22:45:54 +0100 | [diff] [blame] | 1165 | FW_DEVICE_INITIALIZING, |
| 1166 | FW_DEVICE_RUNNING) == FW_DEVICE_GONE) |
Stefan Richter | c9755e1 | 2008-03-24 20:54:28 +0100 | [diff] [blame] | 1167 | goto gone; |
| 1168 | |
Kay Sievers | a1f6481 | 2008-10-30 01:41:56 +0100 | [diff] [blame] | 1169 | fw_notify("refreshed device %s\n", dev_name(&device->device)); |
Stefan Richter | c9755e1 | 2008-03-24 20:54:28 +0100 | [diff] [blame] | 1170 | device->config_rom_retries = 0; |
| 1171 | goto out; |
| 1172 | |
| 1173 | give_up: |
Kay Sievers | a1f6481 | 2008-10-30 01:41:56 +0100 | [diff] [blame] | 1174 | fw_notify("giving up on refresh of device %s\n", dev_name(&device->device)); |
Stefan Richter | c9755e1 | 2008-03-24 20:54:28 +0100 | [diff] [blame] | 1175 | gone: |
Stefan Richter | 3d36a0d | 2009-01-17 22:45:54 +0100 | [diff] [blame] | 1176 | atomic_set(&device->state, FW_DEVICE_GONE); |
| 1177 | PREPARE_DELAYED_WORK(&device->work, fw_device_shutdown); |
| 1178 | schedule_delayed_work(&device->work, SHUTDOWN_DELAY); |
Stefan Richter | c9755e1 | 2008-03-24 20:54:28 +0100 | [diff] [blame] | 1179 | out: |
| 1180 | if (node_id == card->root_node->node_id) |
Jay Fenlason | 0fa1986f | 2008-11-29 17:44:57 +0100 | [diff] [blame] | 1181 | fw_schedule_bm_work(card, 0); |
Stefan Richter | c9755e1 | 2008-03-24 20:54:28 +0100 | [diff] [blame] | 1182 | } |
| 1183 | |
Kristian Høgsberg | 19a15b9 | 2006-12-19 19:58:31 -0500 | [diff] [blame] | 1184 | void fw_node_event(struct fw_card *card, struct fw_node *node, int event) |
| 1185 | { |
| 1186 | struct fw_device *device; |
| 1187 | |
Kristian Høgsberg | 19a15b9 | 2006-12-19 19:58:31 -0500 | [diff] [blame] | 1188 | switch (event) { |
| 1189 | case FW_NODE_CREATED: |
| 1190 | case FW_NODE_LINK_ON: |
| 1191 | if (!node->link_on) |
| 1192 | break; |
Stefan Richter | c9755e1 | 2008-03-24 20:54:28 +0100 | [diff] [blame] | 1193 | create: |
Kristian Høgsberg | 19a15b9 | 2006-12-19 19:58:31 -0500 | [diff] [blame] | 1194 | device = kzalloc(sizeof(*device), GFP_ATOMIC); |
| 1195 | if (device == NULL) |
| 1196 | break; |
| 1197 | |
Kristian Høgsberg | c781c06 | 2007-05-07 20:33:32 -0400 | [diff] [blame] | 1198 | /* |
| 1199 | * Do minimal intialization of the device here, the |
Stefan Richter | 6230582 | 2009-01-09 20:49:37 +0100 | [diff] [blame] | 1200 | * rest will happen in fw_device_init(). |
| 1201 | * |
| 1202 | * Attention: A lot of things, even fw_device_get(), |
| 1203 | * cannot be done before fw_device_init() finished! |
| 1204 | * You can basically just check device->state and |
| 1205 | * schedule work until then, but only while holding |
| 1206 | * card->lock. |
Kristian Høgsberg | c781c06 | 2007-05-07 20:33:32 -0400 | [diff] [blame] | 1207 | */ |
Stefan Richter | 641f879 | 2007-01-27 10:34:55 +0100 | [diff] [blame] | 1208 | atomic_set(&device->state, FW_DEVICE_INITIALIZING); |
Stefan Richter | 459f792 | 2008-05-24 16:50:22 +0200 | [diff] [blame] | 1209 | device->card = fw_card_get(card); |
Kristian Høgsberg | 19a15b9 | 2006-12-19 19:58:31 -0500 | [diff] [blame] | 1210 | device->node = fw_node_get(node); |
| 1211 | device->node_id = node->node_id; |
| 1212 | device->generation = card->generation; |
Stefan Richter | 9236889 | 2009-05-13 21:42:14 +0200 | [diff] [blame] | 1213 | device->is_local = node == card->local_node; |
Stefan Richter | d67cfb9 | 2008-10-05 10:37:11 +0200 | [diff] [blame] | 1214 | mutex_init(&device->client_list_mutex); |
Kristian Høgsberg | 97bd9ef | 2007-03-07 12:12:41 -0500 | [diff] [blame] | 1215 | INIT_LIST_HEAD(&device->client_list); |
Kristian Høgsberg | 19a15b9 | 2006-12-19 19:58:31 -0500 | [diff] [blame] | 1216 | |
Kristian Høgsberg | c781c06 | 2007-05-07 20:33:32 -0400 | [diff] [blame] | 1217 | /* |
| 1218 | * Set the node data to point back to this device so |
Kristian Høgsberg | 19a15b9 | 2006-12-19 19:58:31 -0500 | [diff] [blame] | 1219 | * FW_NODE_UPDATED callbacks can update the node_id |
Kristian Høgsberg | c781c06 | 2007-05-07 20:33:32 -0400 | [diff] [blame] | 1220 | * and generation for the device. |
| 1221 | */ |
Kristian Høgsberg | 19a15b9 | 2006-12-19 19:58:31 -0500 | [diff] [blame] | 1222 | node->data = device; |
| 1223 | |
Kristian Høgsberg | c781c06 | 2007-05-07 20:33:32 -0400 | [diff] [blame] | 1224 | /* |
| 1225 | * Many devices are slow to respond after bus resets, |
Kristian Høgsberg | 19a15b9 | 2006-12-19 19:58:31 -0500 | [diff] [blame] | 1226 | * especially if they are bus powered and go through |
| 1227 | * power-up after getting plugged in. We schedule the |
Kristian Høgsberg | c781c06 | 2007-05-07 20:33:32 -0400 | [diff] [blame] | 1228 | * first config rom scan half a second after bus reset. |
| 1229 | */ |
Kristian Høgsberg | 19a15b9 | 2006-12-19 19:58:31 -0500 | [diff] [blame] | 1230 | INIT_DELAYED_WORK(&device->work, fw_device_init); |
| 1231 | schedule_delayed_work(&device->work, INITIAL_DELAY); |
| 1232 | break; |
| 1233 | |
Stefan Richter | c9755e1 | 2008-03-24 20:54:28 +0100 | [diff] [blame] | 1234 | case FW_NODE_INITIATED_RESET: |
| 1235 | device = node->data; |
| 1236 | if (device == NULL) |
| 1237 | goto create; |
| 1238 | |
| 1239 | device->node_id = node->node_id; |
| 1240 | smp_wmb(); /* update node_id before generation */ |
| 1241 | device->generation = card->generation; |
| 1242 | if (atomic_cmpxchg(&device->state, |
| 1243 | FW_DEVICE_RUNNING, |
| 1244 | FW_DEVICE_INITIALIZING) == FW_DEVICE_RUNNING) { |
| 1245 | PREPARE_DELAYED_WORK(&device->work, fw_device_refresh); |
| 1246 | schedule_delayed_work(&device->work, |
Stefan Richter | 9236889 | 2009-05-13 21:42:14 +0200 | [diff] [blame] | 1247 | device->is_local ? 0 : INITIAL_DELAY); |
Stefan Richter | c9755e1 | 2008-03-24 20:54:28 +0100 | [diff] [blame] | 1248 | } |
| 1249 | break; |
| 1250 | |
Kristian Høgsberg | 19a15b9 | 2006-12-19 19:58:31 -0500 | [diff] [blame] | 1251 | case FW_NODE_UPDATED: |
| 1252 | if (!node->link_on || node->data == NULL) |
| 1253 | break; |
| 1254 | |
| 1255 | device = node->data; |
| 1256 | device->node_id = node->node_id; |
Stefan Richter | b5d2a5e | 2008-01-25 18:57:41 +0100 | [diff] [blame] | 1257 | smp_wmb(); /* update node_id before generation */ |
Kristian Høgsberg | 19a15b9 | 2006-12-19 19:58:31 -0500 | [diff] [blame] | 1258 | device->generation = card->generation; |
Kristian Høgsberg | 5f48047 | 2007-03-07 12:12:39 -0500 | [diff] [blame] | 1259 | if (atomic_read(&device->state) == FW_DEVICE_RUNNING) { |
| 1260 | PREPARE_DELAYED_WORK(&device->work, fw_device_update); |
| 1261 | schedule_delayed_work(&device->work, 0); |
| 1262 | } |
Kristian Høgsberg | 19a15b9 | 2006-12-19 19:58:31 -0500 | [diff] [blame] | 1263 | break; |
| 1264 | |
| 1265 | case FW_NODE_DESTROYED: |
| 1266 | case FW_NODE_LINK_OFF: |
| 1267 | if (!node->data) |
| 1268 | break; |
| 1269 | |
Kristian Høgsberg | c781c06 | 2007-05-07 20:33:32 -0400 | [diff] [blame] | 1270 | /* |
| 1271 | * Destroy the device associated with the node. There |
Kristian Høgsberg | 19a15b9 | 2006-12-19 19:58:31 -0500 | [diff] [blame] | 1272 | * are two cases here: either the device is fully |
| 1273 | * initialized (FW_DEVICE_RUNNING) or we're in the |
| 1274 | * process of reading its config rom |
| 1275 | * (FW_DEVICE_INITIALIZING). If it is fully |
| 1276 | * initialized we can reuse device->work to schedule a |
| 1277 | * full fw_device_shutdown(). If not, there's work |
| 1278 | * scheduled to read it's config rom, and we just put |
| 1279 | * the device in shutdown state to have that code fail |
Kristian Høgsberg | c781c06 | 2007-05-07 20:33:32 -0400 | [diff] [blame] | 1280 | * to create the device. |
| 1281 | */ |
Kristian Høgsberg | 19a15b9 | 2006-12-19 19:58:31 -0500 | [diff] [blame] | 1282 | device = node->data; |
Stefan Richter | 641f879 | 2007-01-27 10:34:55 +0100 | [diff] [blame] | 1283 | if (atomic_xchg(&device->state, |
Stefan Richter | 3d36a0d | 2009-01-17 22:45:54 +0100 | [diff] [blame] | 1284 | FW_DEVICE_GONE) == FW_DEVICE_RUNNING) { |
Kristian Høgsberg | 5f48047 | 2007-03-07 12:12:39 -0500 | [diff] [blame] | 1285 | PREPARE_DELAYED_WORK(&device->work, fw_device_shutdown); |
Stefan Richter | e747a5c | 2009-01-24 20:35:38 +0100 | [diff] [blame] | 1286 | schedule_delayed_work(&device->work, |
| 1287 | list_empty(&card->link) ? 0 : SHUTDOWN_DELAY); |
Kristian Høgsberg | 19a15b9 | 2006-12-19 19:58:31 -0500 | [diff] [blame] | 1288 | } |
| 1289 | break; |
| 1290 | } |
| 1291 | } |