core-device.c 33 KB

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