core-device.c 33 KB

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