scsi_transport_sas.c 51 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935
  1. /*
  2. * Copyright (C) 2005-2006 Dell Inc.
  3. * Released under GPL v2.
  4. *
  5. * Serial Attached SCSI (SAS) transport class.
  6. *
  7. * The SAS transport class contains common code to deal with SAS HBAs,
  8. * an aproximated representation of SAS topologies in the driver model,
  9. * and various sysfs attributes to expose these topologies and management
  10. * interfaces to userspace.
  11. *
  12. * In addition to the basic SCSI core objects this transport class
  13. * introduces two additional intermediate objects: The SAS PHY
  14. * as represented by struct sas_phy defines an "outgoing" PHY on
  15. * a SAS HBA or Expander, and the SAS remote PHY represented by
  16. * struct sas_rphy defines an "incoming" PHY on a SAS Expander or
  17. * end device. Note that this is purely a software concept, the
  18. * underlying hardware for a PHY and a remote PHY is the exactly
  19. * the same.
  20. *
  21. * There is no concept of a SAS port in this code, users can see
  22. * what PHYs form a wide port based on the port_identifier attribute,
  23. * which is the same for all PHYs in a port.
  24. */
  25. #include <linux/init.h>
  26. #include <linux/module.h>
  27. #include <linux/jiffies.h>
  28. #include <linux/err.h>
  29. #include <linux/slab.h>
  30. #include <linux/string.h>
  31. #include <linux/blkdev.h>
  32. #include <linux/bsg.h>
  33. #include <scsi/scsi.h>
  34. #include <scsi/scsi_cmnd.h>
  35. #include <scsi/scsi_request.h>
  36. #include <scsi/scsi_device.h>
  37. #include <scsi/scsi_host.h>
  38. #include <scsi/scsi_transport.h>
  39. #include <scsi/scsi_transport_sas.h>
  40. #include "scsi_sas_internal.h"
  41. struct sas_host_attrs {
  42. struct list_head rphy_list;
  43. struct mutex lock;
  44. struct request_queue *q;
  45. u32 next_target_id;
  46. u32 next_expander_id;
  47. int next_port_id;
  48. };
  49. #define to_sas_host_attrs(host) ((struct sas_host_attrs *)(host)->shost_data)
  50. /*
  51. * Hack to allow attributes of the same name in different objects.
  52. */
  53. #define SAS_DEVICE_ATTR(_prefix,_name,_mode,_show,_store) \
  54. struct device_attribute dev_attr_##_prefix##_##_name = \
  55. __ATTR(_name,_mode,_show,_store)
  56. /*
  57. * Pretty printing helpers
  58. */
  59. #define sas_bitfield_name_match(title, table) \
  60. static ssize_t \
  61. get_sas_##title##_names(u32 table_key, char *buf) \
  62. { \
  63. char *prefix = ""; \
  64. ssize_t len = 0; \
  65. int i; \
  66. \
  67. for (i = 0; i < ARRAY_SIZE(table); i++) { \
  68. if (table[i].value & table_key) { \
  69. len += sprintf(buf + len, "%s%s", \
  70. prefix, table[i].name); \
  71. prefix = ", "; \
  72. } \
  73. } \
  74. len += sprintf(buf + len, "\n"); \
  75. return len; \
  76. }
  77. #define sas_bitfield_name_set(title, table) \
  78. static ssize_t \
  79. set_sas_##title##_names(u32 *table_key, const char *buf) \
  80. { \
  81. ssize_t len = 0; \
  82. int i; \
  83. \
  84. for (i = 0; i < ARRAY_SIZE(table); i++) { \
  85. len = strlen(table[i].name); \
  86. if (strncmp(buf, table[i].name, len) == 0 && \
  87. (buf[len] == '\n' || buf[len] == '\0')) { \
  88. *table_key = table[i].value; \
  89. return 0; \
  90. } \
  91. } \
  92. return -EINVAL; \
  93. }
  94. #define sas_bitfield_name_search(title, table) \
  95. static ssize_t \
  96. get_sas_##title##_names(u32 table_key, char *buf) \
  97. { \
  98. ssize_t len = 0; \
  99. int i; \
  100. \
  101. for (i = 0; i < ARRAY_SIZE(table); i++) { \
  102. if (table[i].value == table_key) { \
  103. len += sprintf(buf + len, "%s", \
  104. table[i].name); \
  105. break; \
  106. } \
  107. } \
  108. len += sprintf(buf + len, "\n"); \
  109. return len; \
  110. }
  111. static struct {
  112. u32 value;
  113. char *name;
  114. } sas_device_type_names[] = {
  115. { SAS_PHY_UNUSED, "unused" },
  116. { SAS_END_DEVICE, "end device" },
  117. { SAS_EDGE_EXPANDER_DEVICE, "edge expander" },
  118. { SAS_FANOUT_EXPANDER_DEVICE, "fanout expander" },
  119. };
  120. sas_bitfield_name_search(device_type, sas_device_type_names)
  121. static struct {
  122. u32 value;
  123. char *name;
  124. } sas_protocol_names[] = {
  125. { SAS_PROTOCOL_SATA, "sata" },
  126. { SAS_PROTOCOL_SMP, "smp" },
  127. { SAS_PROTOCOL_STP, "stp" },
  128. { SAS_PROTOCOL_SSP, "ssp" },
  129. };
  130. sas_bitfield_name_match(protocol, sas_protocol_names)
  131. static struct {
  132. u32 value;
  133. char *name;
  134. } sas_linkspeed_names[] = {
  135. { SAS_LINK_RATE_UNKNOWN, "Unknown" },
  136. { SAS_PHY_DISABLED, "Phy disabled" },
  137. { SAS_LINK_RATE_FAILED, "Link Rate failed" },
  138. { SAS_SATA_SPINUP_HOLD, "Spin-up hold" },
  139. { SAS_LINK_RATE_1_5_GBPS, "1.5 Gbit" },
  140. { SAS_LINK_RATE_3_0_GBPS, "3.0 Gbit" },
  141. { SAS_LINK_RATE_6_0_GBPS, "6.0 Gbit" },
  142. { SAS_LINK_RATE_12_0_GBPS, "12.0 Gbit" },
  143. };
  144. sas_bitfield_name_search(linkspeed, sas_linkspeed_names)
  145. sas_bitfield_name_set(linkspeed, sas_linkspeed_names)
  146. static struct sas_end_device *sas_sdev_to_rdev(struct scsi_device *sdev)
  147. {
  148. struct sas_rphy *rphy = target_to_rphy(sdev->sdev_target);
  149. struct sas_end_device *rdev;
  150. BUG_ON(rphy->identify.device_type != SAS_END_DEVICE);
  151. rdev = rphy_to_end_device(rphy);
  152. return rdev;
  153. }
  154. static int sas_smp_dispatch(struct bsg_job *job)
  155. {
  156. struct Scsi_Host *shost = dev_to_shost(job->dev);
  157. struct sas_rphy *rphy = NULL;
  158. if (!scsi_is_host_device(job->dev))
  159. rphy = dev_to_rphy(job->dev);
  160. if (!job->reply_payload.payload_len) {
  161. dev_warn(job->dev, "space for a smp response is missing\n");
  162. bsg_job_done(job, -EINVAL, 0);
  163. return 0;
  164. }
  165. to_sas_internal(shost->transportt)->f->smp_handler(job, shost, rphy);
  166. return 0;
  167. }
  168. static int sas_bsg_initialize(struct Scsi_Host *shost, struct sas_rphy *rphy)
  169. {
  170. struct request_queue *q;
  171. if (!to_sas_internal(shost->transportt)->f->smp_handler) {
  172. printk("%s can't handle SMP requests\n", shost->hostt->name);
  173. return 0;
  174. }
  175. if (rphy) {
  176. q = bsg_setup_queue(&rphy->dev, dev_name(&rphy->dev),
  177. sas_smp_dispatch, 0);
  178. if (IS_ERR(q))
  179. return PTR_ERR(q);
  180. rphy->q = q;
  181. } else {
  182. char name[20];
  183. snprintf(name, sizeof(name), "sas_host%d", shost->host_no);
  184. q = bsg_setup_queue(&shost->shost_gendev, name,
  185. sas_smp_dispatch, 0);
  186. if (IS_ERR(q))
  187. return PTR_ERR(q);
  188. to_sas_host_attrs(shost)->q = q;
  189. }
  190. blk_queue_flag_set(QUEUE_FLAG_BIDI, q);
  191. return 0;
  192. }
  193. /*
  194. * SAS host attributes
  195. */
  196. static int sas_host_setup(struct transport_container *tc, struct device *dev,
  197. struct device *cdev)
  198. {
  199. struct Scsi_Host *shost = dev_to_shost(dev);
  200. struct sas_host_attrs *sas_host = to_sas_host_attrs(shost);
  201. INIT_LIST_HEAD(&sas_host->rphy_list);
  202. mutex_init(&sas_host->lock);
  203. sas_host->next_target_id = 0;
  204. sas_host->next_expander_id = 0;
  205. sas_host->next_port_id = 0;
  206. if (sas_bsg_initialize(shost, NULL))
  207. dev_printk(KERN_ERR, dev, "fail to a bsg device %d\n",
  208. shost->host_no);
  209. return 0;
  210. }
  211. static int sas_host_remove(struct transport_container *tc, struct device *dev,
  212. struct device *cdev)
  213. {
  214. struct Scsi_Host *shost = dev_to_shost(dev);
  215. struct request_queue *q = to_sas_host_attrs(shost)->q;
  216. if (q) {
  217. bsg_unregister_queue(q);
  218. blk_cleanup_queue(q);
  219. }
  220. return 0;
  221. }
  222. static DECLARE_TRANSPORT_CLASS(sas_host_class,
  223. "sas_host", sas_host_setup, sas_host_remove, NULL);
  224. static int sas_host_match(struct attribute_container *cont,
  225. struct device *dev)
  226. {
  227. struct Scsi_Host *shost;
  228. struct sas_internal *i;
  229. if (!scsi_is_host_device(dev))
  230. return 0;
  231. shost = dev_to_shost(dev);
  232. if (!shost->transportt)
  233. return 0;
  234. if (shost->transportt->host_attrs.ac.class !=
  235. &sas_host_class.class)
  236. return 0;
  237. i = to_sas_internal(shost->transportt);
  238. return &i->t.host_attrs.ac == cont;
  239. }
  240. static int do_sas_phy_delete(struct device *dev, void *data)
  241. {
  242. int pass = (int)(unsigned long)data;
  243. if (pass == 0 && scsi_is_sas_port(dev))
  244. sas_port_delete(dev_to_sas_port(dev));
  245. else if (pass == 1 && scsi_is_sas_phy(dev))
  246. sas_phy_delete(dev_to_phy(dev));
  247. return 0;
  248. }
  249. /**
  250. * sas_remove_children - tear down a devices SAS data structures
  251. * @dev: device belonging to the sas object
  252. *
  253. * Removes all SAS PHYs and remote PHYs for a given object
  254. */
  255. void sas_remove_children(struct device *dev)
  256. {
  257. device_for_each_child(dev, (void *)0, do_sas_phy_delete);
  258. device_for_each_child(dev, (void *)1, do_sas_phy_delete);
  259. }
  260. EXPORT_SYMBOL(sas_remove_children);
  261. /**
  262. * sas_remove_host - tear down a Scsi_Host's SAS data structures
  263. * @shost: Scsi Host that is torn down
  264. *
  265. * Removes all SAS PHYs and remote PHYs for a given Scsi_Host and remove the
  266. * Scsi_Host as well.
  267. *
  268. * Note: Do not call scsi_remove_host() on the Scsi_Host any more, as it is
  269. * already removed.
  270. */
  271. void sas_remove_host(struct Scsi_Host *shost)
  272. {
  273. sas_remove_children(&shost->shost_gendev);
  274. scsi_remove_host(shost);
  275. }
  276. EXPORT_SYMBOL(sas_remove_host);
  277. /**
  278. * sas_get_address - return the SAS address of the device
  279. * @sdev: scsi device
  280. *
  281. * Returns the SAS address of the scsi device
  282. */
  283. u64 sas_get_address(struct scsi_device *sdev)
  284. {
  285. struct sas_end_device *rdev = sas_sdev_to_rdev(sdev);
  286. return rdev->rphy.identify.sas_address;
  287. }
  288. EXPORT_SYMBOL(sas_get_address);
  289. /**
  290. * sas_tlr_supported - checking TLR bit in vpd 0x90
  291. * @sdev: scsi device struct
  292. *
  293. * Check Transport Layer Retries are supported or not.
  294. * If vpd page 0x90 is present, TRL is supported.
  295. *
  296. */
  297. unsigned int
  298. sas_tlr_supported(struct scsi_device *sdev)
  299. {
  300. const int vpd_len = 32;
  301. struct sas_end_device *rdev = sas_sdev_to_rdev(sdev);
  302. char *buffer = kzalloc(vpd_len, GFP_KERNEL);
  303. int ret = 0;
  304. if (!buffer)
  305. goto out;
  306. if (scsi_get_vpd_page(sdev, 0x90, buffer, vpd_len))
  307. goto out;
  308. /*
  309. * Magic numbers: the VPD Protocol page (0x90)
  310. * has a 4 byte header and then one entry per device port
  311. * the TLR bit is at offset 8 on each port entry
  312. * if we take the first port, that's at total offset 12
  313. */
  314. ret = buffer[12] & 0x01;
  315. out:
  316. kfree(buffer);
  317. rdev->tlr_supported = ret;
  318. return ret;
  319. }
  320. EXPORT_SYMBOL_GPL(sas_tlr_supported);
  321. /**
  322. * sas_disable_tlr - setting TLR flags
  323. * @sdev: scsi device struct
  324. *
  325. * Seting tlr_enabled flag to 0.
  326. *
  327. */
  328. void
  329. sas_disable_tlr(struct scsi_device *sdev)
  330. {
  331. struct sas_end_device *rdev = sas_sdev_to_rdev(sdev);
  332. rdev->tlr_enabled = 0;
  333. }
  334. EXPORT_SYMBOL_GPL(sas_disable_tlr);
  335. /**
  336. * sas_enable_tlr - setting TLR flags
  337. * @sdev: scsi device struct
  338. *
  339. * Seting tlr_enabled flag 1.
  340. *
  341. */
  342. void sas_enable_tlr(struct scsi_device *sdev)
  343. {
  344. unsigned int tlr_supported = 0;
  345. tlr_supported = sas_tlr_supported(sdev);
  346. if (tlr_supported) {
  347. struct sas_end_device *rdev = sas_sdev_to_rdev(sdev);
  348. rdev->tlr_enabled = 1;
  349. }
  350. return;
  351. }
  352. EXPORT_SYMBOL_GPL(sas_enable_tlr);
  353. unsigned int sas_is_tlr_enabled(struct scsi_device *sdev)
  354. {
  355. struct sas_end_device *rdev = sas_sdev_to_rdev(sdev);
  356. return rdev->tlr_enabled;
  357. }
  358. EXPORT_SYMBOL_GPL(sas_is_tlr_enabled);
  359. /*
  360. * SAS Phy attributes
  361. */
  362. #define sas_phy_show_simple(field, name, format_string, cast) \
  363. static ssize_t \
  364. show_sas_phy_##name(struct device *dev, \
  365. struct device_attribute *attr, char *buf) \
  366. { \
  367. struct sas_phy *phy = transport_class_to_phy(dev); \
  368. \
  369. return snprintf(buf, 20, format_string, cast phy->field); \
  370. }
  371. #define sas_phy_simple_attr(field, name, format_string, type) \
  372. sas_phy_show_simple(field, name, format_string, (type)) \
  373. static DEVICE_ATTR(name, S_IRUGO, show_sas_phy_##name, NULL)
  374. #define sas_phy_show_protocol(field, name) \
  375. static ssize_t \
  376. show_sas_phy_##name(struct device *dev, \
  377. struct device_attribute *attr, char *buf) \
  378. { \
  379. struct sas_phy *phy = transport_class_to_phy(dev); \
  380. \
  381. if (!phy->field) \
  382. return snprintf(buf, 20, "none\n"); \
  383. return get_sas_protocol_names(phy->field, buf); \
  384. }
  385. #define sas_phy_protocol_attr(field, name) \
  386. sas_phy_show_protocol(field, name) \
  387. static DEVICE_ATTR(name, S_IRUGO, show_sas_phy_##name, NULL)
  388. #define sas_phy_show_linkspeed(field) \
  389. static ssize_t \
  390. show_sas_phy_##field(struct device *dev, \
  391. struct device_attribute *attr, char *buf) \
  392. { \
  393. struct sas_phy *phy = transport_class_to_phy(dev); \
  394. \
  395. return get_sas_linkspeed_names(phy->field, buf); \
  396. }
  397. /* Fudge to tell if we're minimum or maximum */
  398. #define sas_phy_store_linkspeed(field) \
  399. static ssize_t \
  400. store_sas_phy_##field(struct device *dev, \
  401. struct device_attribute *attr, \
  402. const char *buf, size_t count) \
  403. { \
  404. struct sas_phy *phy = transport_class_to_phy(dev); \
  405. struct Scsi_Host *shost = dev_to_shost(phy->dev.parent); \
  406. struct sas_internal *i = to_sas_internal(shost->transportt); \
  407. u32 value; \
  408. struct sas_phy_linkrates rates = {0}; \
  409. int error; \
  410. \
  411. error = set_sas_linkspeed_names(&value, buf); \
  412. if (error) \
  413. return error; \
  414. rates.field = value; \
  415. error = i->f->set_phy_speed(phy, &rates); \
  416. \
  417. return error ? error : count; \
  418. }
  419. #define sas_phy_linkspeed_rw_attr(field) \
  420. sas_phy_show_linkspeed(field) \
  421. sas_phy_store_linkspeed(field) \
  422. static DEVICE_ATTR(field, S_IRUGO, show_sas_phy_##field, \
  423. store_sas_phy_##field)
  424. #define sas_phy_linkspeed_attr(field) \
  425. sas_phy_show_linkspeed(field) \
  426. static DEVICE_ATTR(field, S_IRUGO, show_sas_phy_##field, NULL)
  427. #define sas_phy_show_linkerror(field) \
  428. static ssize_t \
  429. show_sas_phy_##field(struct device *dev, \
  430. struct device_attribute *attr, char *buf) \
  431. { \
  432. struct sas_phy *phy = transport_class_to_phy(dev); \
  433. struct Scsi_Host *shost = dev_to_shost(phy->dev.parent); \
  434. struct sas_internal *i = to_sas_internal(shost->transportt); \
  435. int error; \
  436. \
  437. error = i->f->get_linkerrors ? i->f->get_linkerrors(phy) : 0; \
  438. if (error) \
  439. return error; \
  440. return snprintf(buf, 20, "%u\n", phy->field); \
  441. }
  442. #define sas_phy_linkerror_attr(field) \
  443. sas_phy_show_linkerror(field) \
  444. static DEVICE_ATTR(field, S_IRUGO, show_sas_phy_##field, NULL)
  445. static ssize_t
  446. show_sas_device_type(struct device *dev,
  447. struct device_attribute *attr, char *buf)
  448. {
  449. struct sas_phy *phy = transport_class_to_phy(dev);
  450. if (!phy->identify.device_type)
  451. return snprintf(buf, 20, "none\n");
  452. return get_sas_device_type_names(phy->identify.device_type, buf);
  453. }
  454. static DEVICE_ATTR(device_type, S_IRUGO, show_sas_device_type, NULL);
  455. static ssize_t do_sas_phy_enable(struct device *dev,
  456. size_t count, int enable)
  457. {
  458. struct sas_phy *phy = transport_class_to_phy(dev);
  459. struct Scsi_Host *shost = dev_to_shost(phy->dev.parent);
  460. struct sas_internal *i = to_sas_internal(shost->transportt);
  461. int error;
  462. error = i->f->phy_enable(phy, enable);
  463. if (error)
  464. return error;
  465. phy->enabled = enable;
  466. return count;
  467. };
  468. static ssize_t
  469. store_sas_phy_enable(struct device *dev, struct device_attribute *attr,
  470. const char *buf, size_t count)
  471. {
  472. if (count < 1)
  473. return -EINVAL;
  474. switch (buf[0]) {
  475. case '0':
  476. do_sas_phy_enable(dev, count, 0);
  477. break;
  478. case '1':
  479. do_sas_phy_enable(dev, count, 1);
  480. break;
  481. default:
  482. return -EINVAL;
  483. }
  484. return count;
  485. }
  486. static ssize_t
  487. show_sas_phy_enable(struct device *dev, struct device_attribute *attr,
  488. char *buf)
  489. {
  490. struct sas_phy *phy = transport_class_to_phy(dev);
  491. return snprintf(buf, 20, "%d", phy->enabled);
  492. }
  493. static DEVICE_ATTR(enable, S_IRUGO | S_IWUSR, show_sas_phy_enable,
  494. store_sas_phy_enable);
  495. static ssize_t
  496. do_sas_phy_reset(struct device *dev, size_t count, int hard_reset)
  497. {
  498. struct sas_phy *phy = transport_class_to_phy(dev);
  499. struct Scsi_Host *shost = dev_to_shost(phy->dev.parent);
  500. struct sas_internal *i = to_sas_internal(shost->transportt);
  501. int error;
  502. error = i->f->phy_reset(phy, hard_reset);
  503. if (error)
  504. return error;
  505. phy->enabled = 1;
  506. return count;
  507. };
  508. static ssize_t
  509. store_sas_link_reset(struct device *dev, struct device_attribute *attr,
  510. const char *buf, size_t count)
  511. {
  512. return do_sas_phy_reset(dev, count, 0);
  513. }
  514. static DEVICE_ATTR(link_reset, S_IWUSR, NULL, store_sas_link_reset);
  515. static ssize_t
  516. store_sas_hard_reset(struct device *dev, struct device_attribute *attr,
  517. const char *buf, size_t count)
  518. {
  519. return do_sas_phy_reset(dev, count, 1);
  520. }
  521. static DEVICE_ATTR(hard_reset, S_IWUSR, NULL, store_sas_hard_reset);
  522. sas_phy_protocol_attr(identify.initiator_port_protocols,
  523. initiator_port_protocols);
  524. sas_phy_protocol_attr(identify.target_port_protocols,
  525. target_port_protocols);
  526. sas_phy_simple_attr(identify.sas_address, sas_address, "0x%016llx\n",
  527. unsigned long long);
  528. sas_phy_simple_attr(identify.phy_identifier, phy_identifier, "%d\n", u8);
  529. //sas_phy_simple_attr(port_identifier, port_identifier, "%d\n", int);
  530. sas_phy_linkspeed_attr(negotiated_linkrate);
  531. sas_phy_linkspeed_attr(minimum_linkrate_hw);
  532. sas_phy_linkspeed_rw_attr(minimum_linkrate);
  533. sas_phy_linkspeed_attr(maximum_linkrate_hw);
  534. sas_phy_linkspeed_rw_attr(maximum_linkrate);
  535. sas_phy_linkerror_attr(invalid_dword_count);
  536. sas_phy_linkerror_attr(running_disparity_error_count);
  537. sas_phy_linkerror_attr(loss_of_dword_sync_count);
  538. sas_phy_linkerror_attr(phy_reset_problem_count);
  539. static int sas_phy_setup(struct transport_container *tc, struct device *dev,
  540. struct device *cdev)
  541. {
  542. struct sas_phy *phy = dev_to_phy(dev);
  543. struct Scsi_Host *shost = dev_to_shost(phy->dev.parent);
  544. struct sas_internal *i = to_sas_internal(shost->transportt);
  545. if (i->f->phy_setup)
  546. i->f->phy_setup(phy);
  547. return 0;
  548. }
  549. static DECLARE_TRANSPORT_CLASS(sas_phy_class,
  550. "sas_phy", sas_phy_setup, NULL, NULL);
  551. static int sas_phy_match(struct attribute_container *cont, struct device *dev)
  552. {
  553. struct Scsi_Host *shost;
  554. struct sas_internal *i;
  555. if (!scsi_is_sas_phy(dev))
  556. return 0;
  557. shost = dev_to_shost(dev->parent);
  558. if (!shost->transportt)
  559. return 0;
  560. if (shost->transportt->host_attrs.ac.class !=
  561. &sas_host_class.class)
  562. return 0;
  563. i = to_sas_internal(shost->transportt);
  564. return &i->phy_attr_cont.ac == cont;
  565. }
  566. static void sas_phy_release(struct device *dev)
  567. {
  568. struct sas_phy *phy = dev_to_phy(dev);
  569. struct Scsi_Host *shost = dev_to_shost(phy->dev.parent);
  570. struct sas_internal *i = to_sas_internal(shost->transportt);
  571. if (i->f->phy_release)
  572. i->f->phy_release(phy);
  573. put_device(dev->parent);
  574. kfree(phy);
  575. }
  576. /**
  577. * sas_phy_alloc - allocates and initialize a SAS PHY structure
  578. * @parent: Parent device
  579. * @number: Phy index
  580. *
  581. * Allocates an SAS PHY structure. It will be added in the device tree
  582. * below the device specified by @parent, which has to be either a Scsi_Host
  583. * or sas_rphy.
  584. *
  585. * Returns:
  586. * SAS PHY allocated or %NULL if the allocation failed.
  587. */
  588. struct sas_phy *sas_phy_alloc(struct device *parent, int number)
  589. {
  590. struct Scsi_Host *shost = dev_to_shost(parent);
  591. struct sas_phy *phy;
  592. phy = kzalloc(sizeof(*phy), GFP_KERNEL);
  593. if (!phy)
  594. return NULL;
  595. phy->number = number;
  596. phy->enabled = 1;
  597. device_initialize(&phy->dev);
  598. phy->dev.parent = get_device(parent);
  599. phy->dev.release = sas_phy_release;
  600. INIT_LIST_HEAD(&phy->port_siblings);
  601. if (scsi_is_sas_expander_device(parent)) {
  602. struct sas_rphy *rphy = dev_to_rphy(parent);
  603. dev_set_name(&phy->dev, "phy-%d:%d:%d", shost->host_no,
  604. rphy->scsi_target_id, number);
  605. } else
  606. dev_set_name(&phy->dev, "phy-%d:%d", shost->host_no, number);
  607. transport_setup_device(&phy->dev);
  608. return phy;
  609. }
  610. EXPORT_SYMBOL(sas_phy_alloc);
  611. /**
  612. * sas_phy_add - add a SAS PHY to the device hierarchy
  613. * @phy: The PHY to be added
  614. *
  615. * Publishes a SAS PHY to the rest of the system.
  616. */
  617. int sas_phy_add(struct sas_phy *phy)
  618. {
  619. int error;
  620. error = device_add(&phy->dev);
  621. if (!error) {
  622. transport_add_device(&phy->dev);
  623. transport_configure_device(&phy->dev);
  624. }
  625. return error;
  626. }
  627. EXPORT_SYMBOL(sas_phy_add);
  628. /**
  629. * sas_phy_free - free a SAS PHY
  630. * @phy: SAS PHY to free
  631. *
  632. * Frees the specified SAS PHY.
  633. *
  634. * Note:
  635. * This function must only be called on a PHY that has not
  636. * successfully been added using sas_phy_add().
  637. */
  638. void sas_phy_free(struct sas_phy *phy)
  639. {
  640. transport_destroy_device(&phy->dev);
  641. put_device(&phy->dev);
  642. }
  643. EXPORT_SYMBOL(sas_phy_free);
  644. /**
  645. * sas_phy_delete - remove SAS PHY
  646. * @phy: SAS PHY to remove
  647. *
  648. * Removes the specified SAS PHY. If the SAS PHY has an
  649. * associated remote PHY it is removed before.
  650. */
  651. void
  652. sas_phy_delete(struct sas_phy *phy)
  653. {
  654. struct device *dev = &phy->dev;
  655. /* this happens if the phy is still part of a port when deleted */
  656. BUG_ON(!list_empty(&phy->port_siblings));
  657. transport_remove_device(dev);
  658. device_del(dev);
  659. transport_destroy_device(dev);
  660. put_device(dev);
  661. }
  662. EXPORT_SYMBOL(sas_phy_delete);
  663. /**
  664. * scsi_is_sas_phy - check if a struct device represents a SAS PHY
  665. * @dev: device to check
  666. *
  667. * Returns:
  668. * %1 if the device represents a SAS PHY, %0 else
  669. */
  670. int scsi_is_sas_phy(const struct device *dev)
  671. {
  672. return dev->release == sas_phy_release;
  673. }
  674. EXPORT_SYMBOL(scsi_is_sas_phy);
  675. /*
  676. * SAS Port attributes
  677. */
  678. #define sas_port_show_simple(field, name, format_string, cast) \
  679. static ssize_t \
  680. show_sas_port_##name(struct device *dev, \
  681. struct device_attribute *attr, char *buf) \
  682. { \
  683. struct sas_port *port = transport_class_to_sas_port(dev); \
  684. \
  685. return snprintf(buf, 20, format_string, cast port->field); \
  686. }
  687. #define sas_port_simple_attr(field, name, format_string, type) \
  688. sas_port_show_simple(field, name, format_string, (type)) \
  689. static DEVICE_ATTR(name, S_IRUGO, show_sas_port_##name, NULL)
  690. sas_port_simple_attr(num_phys, num_phys, "%d\n", int);
  691. static DECLARE_TRANSPORT_CLASS(sas_port_class,
  692. "sas_port", NULL, NULL, NULL);
  693. static int sas_port_match(struct attribute_container *cont, struct device *dev)
  694. {
  695. struct Scsi_Host *shost;
  696. struct sas_internal *i;
  697. if (!scsi_is_sas_port(dev))
  698. return 0;
  699. shost = dev_to_shost(dev->parent);
  700. if (!shost->transportt)
  701. return 0;
  702. if (shost->transportt->host_attrs.ac.class !=
  703. &sas_host_class.class)
  704. return 0;
  705. i = to_sas_internal(shost->transportt);
  706. return &i->port_attr_cont.ac == cont;
  707. }
  708. static void sas_port_release(struct device *dev)
  709. {
  710. struct sas_port *port = dev_to_sas_port(dev);
  711. BUG_ON(!list_empty(&port->phy_list));
  712. put_device(dev->parent);
  713. kfree(port);
  714. }
  715. static void sas_port_create_link(struct sas_port *port,
  716. struct sas_phy *phy)
  717. {
  718. int res;
  719. res = sysfs_create_link(&port->dev.kobj, &phy->dev.kobj,
  720. dev_name(&phy->dev));
  721. if (res)
  722. goto err;
  723. res = sysfs_create_link(&phy->dev.kobj, &port->dev.kobj, "port");
  724. if (res)
  725. goto err;
  726. return;
  727. err:
  728. printk(KERN_ERR "%s: Cannot create port links, err=%d\n",
  729. __func__, res);
  730. }
  731. static void sas_port_delete_link(struct sas_port *port,
  732. struct sas_phy *phy)
  733. {
  734. sysfs_remove_link(&port->dev.kobj, dev_name(&phy->dev));
  735. sysfs_remove_link(&phy->dev.kobj, "port");
  736. }
  737. /** sas_port_alloc - allocate and initialize a SAS port structure
  738. *
  739. * @parent: parent device
  740. * @port_id: port number
  741. *
  742. * Allocates a SAS port structure. It will be added to the device tree
  743. * below the device specified by @parent which must be either a Scsi_Host
  744. * or a sas_expander_device.
  745. *
  746. * Returns %NULL on error
  747. */
  748. struct sas_port *sas_port_alloc(struct device *parent, int port_id)
  749. {
  750. struct Scsi_Host *shost = dev_to_shost(parent);
  751. struct sas_port *port;
  752. port = kzalloc(sizeof(*port), GFP_KERNEL);
  753. if (!port)
  754. return NULL;
  755. port->port_identifier = port_id;
  756. device_initialize(&port->dev);
  757. port->dev.parent = get_device(parent);
  758. port->dev.release = sas_port_release;
  759. mutex_init(&port->phy_list_mutex);
  760. INIT_LIST_HEAD(&port->phy_list);
  761. if (scsi_is_sas_expander_device(parent)) {
  762. struct sas_rphy *rphy = dev_to_rphy(parent);
  763. dev_set_name(&port->dev, "port-%d:%d:%d", shost->host_no,
  764. rphy->scsi_target_id, port->port_identifier);
  765. } else
  766. dev_set_name(&port->dev, "port-%d:%d", shost->host_no,
  767. port->port_identifier);
  768. transport_setup_device(&port->dev);
  769. return port;
  770. }
  771. EXPORT_SYMBOL(sas_port_alloc);
  772. /** sas_port_alloc_num - allocate and initialize a SAS port structure
  773. *
  774. * @parent: parent device
  775. *
  776. * Allocates a SAS port structure and a number to go with it. This
  777. * interface is really for adapters where the port number has no
  778. * meansing, so the sas class should manage them. It will be added to
  779. * the device tree below the device specified by @parent which must be
  780. * either a Scsi_Host or a sas_expander_device.
  781. *
  782. * Returns %NULL on error
  783. */
  784. struct sas_port *sas_port_alloc_num(struct device *parent)
  785. {
  786. int index;
  787. struct Scsi_Host *shost = dev_to_shost(parent);
  788. struct sas_host_attrs *sas_host = to_sas_host_attrs(shost);
  789. /* FIXME: use idr for this eventually */
  790. mutex_lock(&sas_host->lock);
  791. if (scsi_is_sas_expander_device(parent)) {
  792. struct sas_rphy *rphy = dev_to_rphy(parent);
  793. struct sas_expander_device *exp = rphy_to_expander_device(rphy);
  794. index = exp->next_port_id++;
  795. } else
  796. index = sas_host->next_port_id++;
  797. mutex_unlock(&sas_host->lock);
  798. return sas_port_alloc(parent, index);
  799. }
  800. EXPORT_SYMBOL(sas_port_alloc_num);
  801. /**
  802. * sas_port_add - add a SAS port to the device hierarchy
  803. * @port: port to be added
  804. *
  805. * publishes a port to the rest of the system
  806. */
  807. int sas_port_add(struct sas_port *port)
  808. {
  809. int error;
  810. /* No phys should be added until this is made visible */
  811. BUG_ON(!list_empty(&port->phy_list));
  812. error = device_add(&port->dev);
  813. if (error)
  814. return error;
  815. transport_add_device(&port->dev);
  816. transport_configure_device(&port->dev);
  817. return 0;
  818. }
  819. EXPORT_SYMBOL(sas_port_add);
  820. /**
  821. * sas_port_free - free a SAS PORT
  822. * @port: SAS PORT to free
  823. *
  824. * Frees the specified SAS PORT.
  825. *
  826. * Note:
  827. * This function must only be called on a PORT that has not
  828. * successfully been added using sas_port_add().
  829. */
  830. void sas_port_free(struct sas_port *port)
  831. {
  832. transport_destroy_device(&port->dev);
  833. put_device(&port->dev);
  834. }
  835. EXPORT_SYMBOL(sas_port_free);
  836. /**
  837. * sas_port_delete - remove SAS PORT
  838. * @port: SAS PORT to remove
  839. *
  840. * Removes the specified SAS PORT. If the SAS PORT has an
  841. * associated phys, unlink them from the port as well.
  842. */
  843. void sas_port_delete(struct sas_port *port)
  844. {
  845. struct device *dev = &port->dev;
  846. struct sas_phy *phy, *tmp_phy;
  847. if (port->rphy) {
  848. sas_rphy_delete(port->rphy);
  849. port->rphy = NULL;
  850. }
  851. mutex_lock(&port->phy_list_mutex);
  852. list_for_each_entry_safe(phy, tmp_phy, &port->phy_list,
  853. port_siblings) {
  854. sas_port_delete_link(port, phy);
  855. list_del_init(&phy->port_siblings);
  856. }
  857. mutex_unlock(&port->phy_list_mutex);
  858. if (port->is_backlink) {
  859. struct device *parent = port->dev.parent;
  860. sysfs_remove_link(&port->dev.kobj, dev_name(parent));
  861. port->is_backlink = 0;
  862. }
  863. transport_remove_device(dev);
  864. device_del(dev);
  865. transport_destroy_device(dev);
  866. put_device(dev);
  867. }
  868. EXPORT_SYMBOL(sas_port_delete);
  869. /**
  870. * scsi_is_sas_port - check if a struct device represents a SAS port
  871. * @dev: device to check
  872. *
  873. * Returns:
  874. * %1 if the device represents a SAS Port, %0 else
  875. */
  876. int scsi_is_sas_port(const struct device *dev)
  877. {
  878. return dev->release == sas_port_release;
  879. }
  880. EXPORT_SYMBOL(scsi_is_sas_port);
  881. /**
  882. * sas_port_get_phy - try to take a reference on a port member
  883. * @port: port to check
  884. */
  885. struct sas_phy *sas_port_get_phy(struct sas_port *port)
  886. {
  887. struct sas_phy *phy;
  888. mutex_lock(&port->phy_list_mutex);
  889. if (list_empty(&port->phy_list))
  890. phy = NULL;
  891. else {
  892. struct list_head *ent = port->phy_list.next;
  893. phy = list_entry(ent, typeof(*phy), port_siblings);
  894. get_device(&phy->dev);
  895. }
  896. mutex_unlock(&port->phy_list_mutex);
  897. return phy;
  898. }
  899. EXPORT_SYMBOL(sas_port_get_phy);
  900. /**
  901. * sas_port_add_phy - add another phy to a port to form a wide port
  902. * @port: port to add the phy to
  903. * @phy: phy to add
  904. *
  905. * When a port is initially created, it is empty (has no phys). All
  906. * ports must have at least one phy to operated, and all wide ports
  907. * must have at least two. The current code makes no difference
  908. * between ports and wide ports, but the only object that can be
  909. * connected to a remote device is a port, so ports must be formed on
  910. * all devices with phys if they're connected to anything.
  911. */
  912. void sas_port_add_phy(struct sas_port *port, struct sas_phy *phy)
  913. {
  914. mutex_lock(&port->phy_list_mutex);
  915. if (unlikely(!list_empty(&phy->port_siblings))) {
  916. /* make sure we're already on this port */
  917. struct sas_phy *tmp;
  918. list_for_each_entry(tmp, &port->phy_list, port_siblings)
  919. if (tmp == phy)
  920. break;
  921. /* If this trips, you added a phy that was already
  922. * part of a different port */
  923. if (unlikely(tmp != phy)) {
  924. dev_printk(KERN_ERR, &port->dev, "trying to add phy %s fails: it's already part of another port\n",
  925. dev_name(&phy->dev));
  926. BUG();
  927. }
  928. } else {
  929. sas_port_create_link(port, phy);
  930. list_add_tail(&phy->port_siblings, &port->phy_list);
  931. port->num_phys++;
  932. }
  933. mutex_unlock(&port->phy_list_mutex);
  934. }
  935. EXPORT_SYMBOL(sas_port_add_phy);
  936. /**
  937. * sas_port_delete_phy - remove a phy from a port or wide port
  938. * @port: port to remove the phy from
  939. * @phy: phy to remove
  940. *
  941. * This operation is used for tearing down ports again. It must be
  942. * done to every port or wide port before calling sas_port_delete.
  943. */
  944. void sas_port_delete_phy(struct sas_port *port, struct sas_phy *phy)
  945. {
  946. mutex_lock(&port->phy_list_mutex);
  947. sas_port_delete_link(port, phy);
  948. list_del_init(&phy->port_siblings);
  949. port->num_phys--;
  950. mutex_unlock(&port->phy_list_mutex);
  951. }
  952. EXPORT_SYMBOL(sas_port_delete_phy);
  953. void sas_port_mark_backlink(struct sas_port *port)
  954. {
  955. int res;
  956. struct device *parent = port->dev.parent->parent->parent;
  957. if (port->is_backlink)
  958. return;
  959. port->is_backlink = 1;
  960. res = sysfs_create_link(&port->dev.kobj, &parent->kobj,
  961. dev_name(parent));
  962. if (res)
  963. goto err;
  964. return;
  965. err:
  966. printk(KERN_ERR "%s: Cannot create port backlink, err=%d\n",
  967. __func__, res);
  968. }
  969. EXPORT_SYMBOL(sas_port_mark_backlink);
  970. /*
  971. * SAS remote PHY attributes.
  972. */
  973. #define sas_rphy_show_simple(field, name, format_string, cast) \
  974. static ssize_t \
  975. show_sas_rphy_##name(struct device *dev, \
  976. struct device_attribute *attr, char *buf) \
  977. { \
  978. struct sas_rphy *rphy = transport_class_to_rphy(dev); \
  979. \
  980. return snprintf(buf, 20, format_string, cast rphy->field); \
  981. }
  982. #define sas_rphy_simple_attr(field, name, format_string, type) \
  983. sas_rphy_show_simple(field, name, format_string, (type)) \
  984. static SAS_DEVICE_ATTR(rphy, name, S_IRUGO, \
  985. show_sas_rphy_##name, NULL)
  986. #define sas_rphy_show_protocol(field, name) \
  987. static ssize_t \
  988. show_sas_rphy_##name(struct device *dev, \
  989. struct device_attribute *attr, char *buf) \
  990. { \
  991. struct sas_rphy *rphy = transport_class_to_rphy(dev); \
  992. \
  993. if (!rphy->field) \
  994. return snprintf(buf, 20, "none\n"); \
  995. return get_sas_protocol_names(rphy->field, buf); \
  996. }
  997. #define sas_rphy_protocol_attr(field, name) \
  998. sas_rphy_show_protocol(field, name) \
  999. static SAS_DEVICE_ATTR(rphy, name, S_IRUGO, \
  1000. show_sas_rphy_##name, NULL)
  1001. static ssize_t
  1002. show_sas_rphy_device_type(struct device *dev,
  1003. struct device_attribute *attr, char *buf)
  1004. {
  1005. struct sas_rphy *rphy = transport_class_to_rphy(dev);
  1006. if (!rphy->identify.device_type)
  1007. return snprintf(buf, 20, "none\n");
  1008. return get_sas_device_type_names(
  1009. rphy->identify.device_type, buf);
  1010. }
  1011. static SAS_DEVICE_ATTR(rphy, device_type, S_IRUGO,
  1012. show_sas_rphy_device_type, NULL);
  1013. static ssize_t
  1014. show_sas_rphy_enclosure_identifier(struct device *dev,
  1015. struct device_attribute *attr, char *buf)
  1016. {
  1017. struct sas_rphy *rphy = transport_class_to_rphy(dev);
  1018. struct sas_phy *phy = dev_to_phy(rphy->dev.parent);
  1019. struct Scsi_Host *shost = dev_to_shost(phy->dev.parent);
  1020. struct sas_internal *i = to_sas_internal(shost->transportt);
  1021. u64 identifier;
  1022. int error;
  1023. error = i->f->get_enclosure_identifier(rphy, &identifier);
  1024. if (error)
  1025. return error;
  1026. return sprintf(buf, "0x%llx\n", (unsigned long long)identifier);
  1027. }
  1028. static SAS_DEVICE_ATTR(rphy, enclosure_identifier, S_IRUGO,
  1029. show_sas_rphy_enclosure_identifier, NULL);
  1030. static ssize_t
  1031. show_sas_rphy_bay_identifier(struct device *dev,
  1032. struct device_attribute *attr, char *buf)
  1033. {
  1034. struct sas_rphy *rphy = transport_class_to_rphy(dev);
  1035. struct sas_phy *phy = dev_to_phy(rphy->dev.parent);
  1036. struct Scsi_Host *shost = dev_to_shost(phy->dev.parent);
  1037. struct sas_internal *i = to_sas_internal(shost->transportt);
  1038. int val;
  1039. val = i->f->get_bay_identifier(rphy);
  1040. if (val < 0)
  1041. return val;
  1042. return sprintf(buf, "%d\n", val);
  1043. }
  1044. static SAS_DEVICE_ATTR(rphy, bay_identifier, S_IRUGO,
  1045. show_sas_rphy_bay_identifier, NULL);
  1046. sas_rphy_protocol_attr(identify.initiator_port_protocols,
  1047. initiator_port_protocols);
  1048. sas_rphy_protocol_attr(identify.target_port_protocols, target_port_protocols);
  1049. sas_rphy_simple_attr(identify.sas_address, sas_address, "0x%016llx\n",
  1050. unsigned long long);
  1051. sas_rphy_simple_attr(identify.phy_identifier, phy_identifier, "%d\n", u8);
  1052. sas_rphy_simple_attr(scsi_target_id, scsi_target_id, "%d\n", u32);
  1053. /* only need 8 bytes of data plus header (4 or 8) */
  1054. #define BUF_SIZE 64
  1055. int sas_read_port_mode_page(struct scsi_device *sdev)
  1056. {
  1057. char *buffer = kzalloc(BUF_SIZE, GFP_KERNEL), *msdata;
  1058. struct sas_end_device *rdev = sas_sdev_to_rdev(sdev);
  1059. struct scsi_mode_data mode_data;
  1060. int res, error;
  1061. if (!buffer)
  1062. return -ENOMEM;
  1063. res = scsi_mode_sense(sdev, 1, 0x19, buffer, BUF_SIZE, 30*HZ, 3,
  1064. &mode_data, NULL);
  1065. error = -EINVAL;
  1066. if (!scsi_status_is_good(res))
  1067. goto out;
  1068. msdata = buffer + mode_data.header_length +
  1069. mode_data.block_descriptor_length;
  1070. if (msdata - buffer > BUF_SIZE - 8)
  1071. goto out;
  1072. error = 0;
  1073. rdev->ready_led_meaning = msdata[2] & 0x10 ? 1 : 0;
  1074. rdev->I_T_nexus_loss_timeout = (msdata[4] << 8) + msdata[5];
  1075. rdev->initiator_response_timeout = (msdata[6] << 8) + msdata[7];
  1076. out:
  1077. kfree(buffer);
  1078. return error;
  1079. }
  1080. EXPORT_SYMBOL(sas_read_port_mode_page);
  1081. static DECLARE_TRANSPORT_CLASS(sas_end_dev_class,
  1082. "sas_end_device", NULL, NULL, NULL);
  1083. #define sas_end_dev_show_simple(field, name, format_string, cast) \
  1084. static ssize_t \
  1085. show_sas_end_dev_##name(struct device *dev, \
  1086. struct device_attribute *attr, char *buf) \
  1087. { \
  1088. struct sas_rphy *rphy = transport_class_to_rphy(dev); \
  1089. struct sas_end_device *rdev = rphy_to_end_device(rphy); \
  1090. \
  1091. return snprintf(buf, 20, format_string, cast rdev->field); \
  1092. }
  1093. #define sas_end_dev_simple_attr(field, name, format_string, type) \
  1094. sas_end_dev_show_simple(field, name, format_string, (type)) \
  1095. static SAS_DEVICE_ATTR(end_dev, name, S_IRUGO, \
  1096. show_sas_end_dev_##name, NULL)
  1097. sas_end_dev_simple_attr(ready_led_meaning, ready_led_meaning, "%d\n", int);
  1098. sas_end_dev_simple_attr(I_T_nexus_loss_timeout, I_T_nexus_loss_timeout,
  1099. "%d\n", int);
  1100. sas_end_dev_simple_attr(initiator_response_timeout, initiator_response_timeout,
  1101. "%d\n", int);
  1102. sas_end_dev_simple_attr(tlr_supported, tlr_supported,
  1103. "%d\n", int);
  1104. sas_end_dev_simple_attr(tlr_enabled, tlr_enabled,
  1105. "%d\n", int);
  1106. static DECLARE_TRANSPORT_CLASS(sas_expander_class,
  1107. "sas_expander", NULL, NULL, NULL);
  1108. #define sas_expander_show_simple(field, name, format_string, cast) \
  1109. static ssize_t \
  1110. show_sas_expander_##name(struct device *dev, \
  1111. struct device_attribute *attr, char *buf) \
  1112. { \
  1113. struct sas_rphy *rphy = transport_class_to_rphy(dev); \
  1114. struct sas_expander_device *edev = rphy_to_expander_device(rphy); \
  1115. \
  1116. return snprintf(buf, 20, format_string, cast edev->field); \
  1117. }
  1118. #define sas_expander_simple_attr(field, name, format_string, type) \
  1119. sas_expander_show_simple(field, name, format_string, (type)) \
  1120. static SAS_DEVICE_ATTR(expander, name, S_IRUGO, \
  1121. show_sas_expander_##name, NULL)
  1122. sas_expander_simple_attr(vendor_id, vendor_id, "%s\n", char *);
  1123. sas_expander_simple_attr(product_id, product_id, "%s\n", char *);
  1124. sas_expander_simple_attr(product_rev, product_rev, "%s\n", char *);
  1125. sas_expander_simple_attr(component_vendor_id, component_vendor_id,
  1126. "%s\n", char *);
  1127. sas_expander_simple_attr(component_id, component_id, "%u\n", unsigned int);
  1128. sas_expander_simple_attr(component_revision_id, component_revision_id, "%u\n",
  1129. unsigned int);
  1130. sas_expander_simple_attr(level, level, "%d\n", int);
  1131. static DECLARE_TRANSPORT_CLASS(sas_rphy_class,
  1132. "sas_device", NULL, NULL, NULL);
  1133. static int sas_rphy_match(struct attribute_container *cont, struct device *dev)
  1134. {
  1135. struct Scsi_Host *shost;
  1136. struct sas_internal *i;
  1137. if (!scsi_is_sas_rphy(dev))
  1138. return 0;
  1139. shost = dev_to_shost(dev->parent->parent);
  1140. if (!shost->transportt)
  1141. return 0;
  1142. if (shost->transportt->host_attrs.ac.class !=
  1143. &sas_host_class.class)
  1144. return 0;
  1145. i = to_sas_internal(shost->transportt);
  1146. return &i->rphy_attr_cont.ac == cont;
  1147. }
  1148. static int sas_end_dev_match(struct attribute_container *cont,
  1149. struct device *dev)
  1150. {
  1151. struct Scsi_Host *shost;
  1152. struct sas_internal *i;
  1153. struct sas_rphy *rphy;
  1154. if (!scsi_is_sas_rphy(dev))
  1155. return 0;
  1156. shost = dev_to_shost(dev->parent->parent);
  1157. rphy = dev_to_rphy(dev);
  1158. if (!shost->transportt)
  1159. return 0;
  1160. if (shost->transportt->host_attrs.ac.class !=
  1161. &sas_host_class.class)
  1162. return 0;
  1163. i = to_sas_internal(shost->transportt);
  1164. return &i->end_dev_attr_cont.ac == cont &&
  1165. rphy->identify.device_type == SAS_END_DEVICE;
  1166. }
  1167. static int sas_expander_match(struct attribute_container *cont,
  1168. struct device *dev)
  1169. {
  1170. struct Scsi_Host *shost;
  1171. struct sas_internal *i;
  1172. struct sas_rphy *rphy;
  1173. if (!scsi_is_sas_rphy(dev))
  1174. return 0;
  1175. shost = dev_to_shost(dev->parent->parent);
  1176. rphy = dev_to_rphy(dev);
  1177. if (!shost->transportt)
  1178. return 0;
  1179. if (shost->transportt->host_attrs.ac.class !=
  1180. &sas_host_class.class)
  1181. return 0;
  1182. i = to_sas_internal(shost->transportt);
  1183. return &i->expander_attr_cont.ac == cont &&
  1184. (rphy->identify.device_type == SAS_EDGE_EXPANDER_DEVICE ||
  1185. rphy->identify.device_type == SAS_FANOUT_EXPANDER_DEVICE);
  1186. }
  1187. static void sas_expander_release(struct device *dev)
  1188. {
  1189. struct sas_rphy *rphy = dev_to_rphy(dev);
  1190. struct sas_expander_device *edev = rphy_to_expander_device(rphy);
  1191. if (rphy->q)
  1192. blk_cleanup_queue(rphy->q);
  1193. put_device(dev->parent);
  1194. kfree(edev);
  1195. }
  1196. static void sas_end_device_release(struct device *dev)
  1197. {
  1198. struct sas_rphy *rphy = dev_to_rphy(dev);
  1199. struct sas_end_device *edev = rphy_to_end_device(rphy);
  1200. if (rphy->q)
  1201. blk_cleanup_queue(rphy->q);
  1202. put_device(dev->parent);
  1203. kfree(edev);
  1204. }
  1205. /**
  1206. * sas_rphy_initialize - common rphy initialization
  1207. * @rphy: rphy to initialise
  1208. *
  1209. * Used by both sas_end_device_alloc() and sas_expander_alloc() to
  1210. * initialise the common rphy component of each.
  1211. */
  1212. static void sas_rphy_initialize(struct sas_rphy *rphy)
  1213. {
  1214. INIT_LIST_HEAD(&rphy->list);
  1215. }
  1216. /**
  1217. * sas_end_device_alloc - allocate an rphy for an end device
  1218. * @parent: which port
  1219. *
  1220. * Allocates an SAS remote PHY structure, connected to @parent.
  1221. *
  1222. * Returns:
  1223. * SAS PHY allocated or %NULL if the allocation failed.
  1224. */
  1225. struct sas_rphy *sas_end_device_alloc(struct sas_port *parent)
  1226. {
  1227. struct Scsi_Host *shost = dev_to_shost(&parent->dev);
  1228. struct sas_end_device *rdev;
  1229. rdev = kzalloc(sizeof(*rdev), GFP_KERNEL);
  1230. if (!rdev) {
  1231. return NULL;
  1232. }
  1233. device_initialize(&rdev->rphy.dev);
  1234. rdev->rphy.dev.parent = get_device(&parent->dev);
  1235. rdev->rphy.dev.release = sas_end_device_release;
  1236. if (scsi_is_sas_expander_device(parent->dev.parent)) {
  1237. struct sas_rphy *rphy = dev_to_rphy(parent->dev.parent);
  1238. dev_set_name(&rdev->rphy.dev, "end_device-%d:%d:%d",
  1239. shost->host_no, rphy->scsi_target_id,
  1240. parent->port_identifier);
  1241. } else
  1242. dev_set_name(&rdev->rphy.dev, "end_device-%d:%d",
  1243. shost->host_no, parent->port_identifier);
  1244. rdev->rphy.identify.device_type = SAS_END_DEVICE;
  1245. sas_rphy_initialize(&rdev->rphy);
  1246. transport_setup_device(&rdev->rphy.dev);
  1247. return &rdev->rphy;
  1248. }
  1249. EXPORT_SYMBOL(sas_end_device_alloc);
  1250. /**
  1251. * sas_expander_alloc - allocate an rphy for an end device
  1252. * @parent: which port
  1253. * @type: SAS_EDGE_EXPANDER_DEVICE or SAS_FANOUT_EXPANDER_DEVICE
  1254. *
  1255. * Allocates an SAS remote PHY structure, connected to @parent.
  1256. *
  1257. * Returns:
  1258. * SAS PHY allocated or %NULL if the allocation failed.
  1259. */
  1260. struct sas_rphy *sas_expander_alloc(struct sas_port *parent,
  1261. enum sas_device_type type)
  1262. {
  1263. struct Scsi_Host *shost = dev_to_shost(&parent->dev);
  1264. struct sas_expander_device *rdev;
  1265. struct sas_host_attrs *sas_host = to_sas_host_attrs(shost);
  1266. BUG_ON(type != SAS_EDGE_EXPANDER_DEVICE &&
  1267. type != SAS_FANOUT_EXPANDER_DEVICE);
  1268. rdev = kzalloc(sizeof(*rdev), GFP_KERNEL);
  1269. if (!rdev) {
  1270. return NULL;
  1271. }
  1272. device_initialize(&rdev->rphy.dev);
  1273. rdev->rphy.dev.parent = get_device(&parent->dev);
  1274. rdev->rphy.dev.release = sas_expander_release;
  1275. mutex_lock(&sas_host->lock);
  1276. rdev->rphy.scsi_target_id = sas_host->next_expander_id++;
  1277. mutex_unlock(&sas_host->lock);
  1278. dev_set_name(&rdev->rphy.dev, "expander-%d:%d",
  1279. shost->host_no, rdev->rphy.scsi_target_id);
  1280. rdev->rphy.identify.device_type = type;
  1281. sas_rphy_initialize(&rdev->rphy);
  1282. transport_setup_device(&rdev->rphy.dev);
  1283. return &rdev->rphy;
  1284. }
  1285. EXPORT_SYMBOL(sas_expander_alloc);
  1286. /**
  1287. * sas_rphy_add - add a SAS remote PHY to the device hierarchy
  1288. * @rphy: The remote PHY to be added
  1289. *
  1290. * Publishes a SAS remote PHY to the rest of the system.
  1291. */
  1292. int sas_rphy_add(struct sas_rphy *rphy)
  1293. {
  1294. struct sas_port *parent = dev_to_sas_port(rphy->dev.parent);
  1295. struct Scsi_Host *shost = dev_to_shost(parent->dev.parent);
  1296. struct sas_host_attrs *sas_host = to_sas_host_attrs(shost);
  1297. struct sas_identify *identify = &rphy->identify;
  1298. int error;
  1299. if (parent->rphy)
  1300. return -ENXIO;
  1301. parent->rphy = rphy;
  1302. error = device_add(&rphy->dev);
  1303. if (error)
  1304. return error;
  1305. transport_add_device(&rphy->dev);
  1306. transport_configure_device(&rphy->dev);
  1307. if (sas_bsg_initialize(shost, rphy))
  1308. printk("fail to a bsg device %s\n", dev_name(&rphy->dev));
  1309. mutex_lock(&sas_host->lock);
  1310. list_add_tail(&rphy->list, &sas_host->rphy_list);
  1311. if (identify->device_type == SAS_END_DEVICE &&
  1312. (identify->target_port_protocols &
  1313. (SAS_PROTOCOL_SSP|SAS_PROTOCOL_STP|SAS_PROTOCOL_SATA)))
  1314. rphy->scsi_target_id = sas_host->next_target_id++;
  1315. else if (identify->device_type == SAS_END_DEVICE)
  1316. rphy->scsi_target_id = -1;
  1317. mutex_unlock(&sas_host->lock);
  1318. if (identify->device_type == SAS_END_DEVICE &&
  1319. rphy->scsi_target_id != -1) {
  1320. int lun;
  1321. if (identify->target_port_protocols & SAS_PROTOCOL_SSP)
  1322. lun = SCAN_WILD_CARD;
  1323. else
  1324. lun = 0;
  1325. scsi_scan_target(&rphy->dev, 0, rphy->scsi_target_id, lun,
  1326. SCSI_SCAN_INITIAL);
  1327. }
  1328. return 0;
  1329. }
  1330. EXPORT_SYMBOL(sas_rphy_add);
  1331. /**
  1332. * sas_rphy_free - free a SAS remote PHY
  1333. * @rphy: SAS remote PHY to free
  1334. *
  1335. * Frees the specified SAS remote PHY.
  1336. *
  1337. * Note:
  1338. * This function must only be called on a remote
  1339. * PHY that has not successfully been added using
  1340. * sas_rphy_add() (or has been sas_rphy_remove()'d)
  1341. */
  1342. void sas_rphy_free(struct sas_rphy *rphy)
  1343. {
  1344. struct device *dev = &rphy->dev;
  1345. struct Scsi_Host *shost = dev_to_shost(rphy->dev.parent->parent);
  1346. struct sas_host_attrs *sas_host = to_sas_host_attrs(shost);
  1347. mutex_lock(&sas_host->lock);
  1348. list_del(&rphy->list);
  1349. mutex_unlock(&sas_host->lock);
  1350. transport_destroy_device(dev);
  1351. put_device(dev);
  1352. }
  1353. EXPORT_SYMBOL(sas_rphy_free);
  1354. /**
  1355. * sas_rphy_delete - remove and free SAS remote PHY
  1356. * @rphy: SAS remote PHY to remove and free
  1357. *
  1358. * Removes the specified SAS remote PHY and frees it.
  1359. */
  1360. void
  1361. sas_rphy_delete(struct sas_rphy *rphy)
  1362. {
  1363. sas_rphy_remove(rphy);
  1364. sas_rphy_free(rphy);
  1365. }
  1366. EXPORT_SYMBOL(sas_rphy_delete);
  1367. /**
  1368. * sas_rphy_unlink - unlink SAS remote PHY
  1369. * @rphy: SAS remote phy to unlink from its parent port
  1370. *
  1371. * Removes port reference to an rphy
  1372. */
  1373. void sas_rphy_unlink(struct sas_rphy *rphy)
  1374. {
  1375. struct sas_port *parent = dev_to_sas_port(rphy->dev.parent);
  1376. parent->rphy = NULL;
  1377. }
  1378. EXPORT_SYMBOL(sas_rphy_unlink);
  1379. /**
  1380. * sas_rphy_remove - remove SAS remote PHY
  1381. * @rphy: SAS remote phy to remove
  1382. *
  1383. * Removes the specified SAS remote PHY.
  1384. */
  1385. void
  1386. sas_rphy_remove(struct sas_rphy *rphy)
  1387. {
  1388. struct device *dev = &rphy->dev;
  1389. switch (rphy->identify.device_type) {
  1390. case SAS_END_DEVICE:
  1391. scsi_remove_target(dev);
  1392. break;
  1393. case SAS_EDGE_EXPANDER_DEVICE:
  1394. case SAS_FANOUT_EXPANDER_DEVICE:
  1395. sas_remove_children(dev);
  1396. break;
  1397. default:
  1398. break;
  1399. }
  1400. sas_rphy_unlink(rphy);
  1401. if (rphy->q)
  1402. bsg_unregister_queue(rphy->q);
  1403. transport_remove_device(dev);
  1404. device_del(dev);
  1405. }
  1406. EXPORT_SYMBOL(sas_rphy_remove);
  1407. /**
  1408. * scsi_is_sas_rphy - check if a struct device represents a SAS remote PHY
  1409. * @dev: device to check
  1410. *
  1411. * Returns:
  1412. * %1 if the device represents a SAS remote PHY, %0 else
  1413. */
  1414. int scsi_is_sas_rphy(const struct device *dev)
  1415. {
  1416. return dev->release == sas_end_device_release ||
  1417. dev->release == sas_expander_release;
  1418. }
  1419. EXPORT_SYMBOL(scsi_is_sas_rphy);
  1420. /*
  1421. * SCSI scan helper
  1422. */
  1423. static int sas_user_scan(struct Scsi_Host *shost, uint channel,
  1424. uint id, u64 lun)
  1425. {
  1426. struct sas_host_attrs *sas_host = to_sas_host_attrs(shost);
  1427. struct sas_rphy *rphy;
  1428. mutex_lock(&sas_host->lock);
  1429. list_for_each_entry(rphy, &sas_host->rphy_list, list) {
  1430. if (rphy->identify.device_type != SAS_END_DEVICE ||
  1431. rphy->scsi_target_id == -1)
  1432. continue;
  1433. if ((channel == SCAN_WILD_CARD || channel == 0) &&
  1434. (id == SCAN_WILD_CARD || id == rphy->scsi_target_id)) {
  1435. scsi_scan_target(&rphy->dev, 0, rphy->scsi_target_id,
  1436. lun, SCSI_SCAN_MANUAL);
  1437. }
  1438. }
  1439. mutex_unlock(&sas_host->lock);
  1440. return 0;
  1441. }
  1442. /*
  1443. * Setup / Teardown code
  1444. */
  1445. #define SETUP_TEMPLATE(attrb, field, perm, test) \
  1446. i->private_##attrb[count] = dev_attr_##field; \
  1447. i->private_##attrb[count].attr.mode = perm; \
  1448. i->attrb[count] = &i->private_##attrb[count]; \
  1449. if (test) \
  1450. count++
  1451. #define SETUP_TEMPLATE_RW(attrb, field, perm, test, ro_test, ro_perm) \
  1452. i->private_##attrb[count] = dev_attr_##field; \
  1453. i->private_##attrb[count].attr.mode = perm; \
  1454. if (ro_test) { \
  1455. i->private_##attrb[count].attr.mode = ro_perm; \
  1456. i->private_##attrb[count].store = NULL; \
  1457. } \
  1458. i->attrb[count] = &i->private_##attrb[count]; \
  1459. if (test) \
  1460. count++
  1461. #define SETUP_RPORT_ATTRIBUTE(field) \
  1462. SETUP_TEMPLATE(rphy_attrs, field, S_IRUGO, 1)
  1463. #define SETUP_OPTIONAL_RPORT_ATTRIBUTE(field, func) \
  1464. SETUP_TEMPLATE(rphy_attrs, field, S_IRUGO, i->f->func)
  1465. #define SETUP_PHY_ATTRIBUTE(field) \
  1466. SETUP_TEMPLATE(phy_attrs, field, S_IRUGO, 1)
  1467. #define SETUP_PHY_ATTRIBUTE_RW(field) \
  1468. SETUP_TEMPLATE_RW(phy_attrs, field, S_IRUGO | S_IWUSR, 1, \
  1469. !i->f->set_phy_speed, S_IRUGO)
  1470. #define SETUP_OPTIONAL_PHY_ATTRIBUTE_RW(field, func) \
  1471. SETUP_TEMPLATE_RW(phy_attrs, field, S_IRUGO | S_IWUSR, 1, \
  1472. !i->f->func, S_IRUGO)
  1473. #define SETUP_PORT_ATTRIBUTE(field) \
  1474. SETUP_TEMPLATE(port_attrs, field, S_IRUGO, 1)
  1475. #define SETUP_OPTIONAL_PHY_ATTRIBUTE(field, func) \
  1476. SETUP_TEMPLATE(phy_attrs, field, S_IRUGO, i->f->func)
  1477. #define SETUP_PHY_ATTRIBUTE_WRONLY(field) \
  1478. SETUP_TEMPLATE(phy_attrs, field, S_IWUSR, 1)
  1479. #define SETUP_OPTIONAL_PHY_ATTRIBUTE_WRONLY(field, func) \
  1480. SETUP_TEMPLATE(phy_attrs, field, S_IWUSR, i->f->func)
  1481. #define SETUP_END_DEV_ATTRIBUTE(field) \
  1482. SETUP_TEMPLATE(end_dev_attrs, field, S_IRUGO, 1)
  1483. #define SETUP_EXPANDER_ATTRIBUTE(field) \
  1484. SETUP_TEMPLATE(expander_attrs, expander_##field, S_IRUGO, 1)
  1485. /**
  1486. * sas_attach_transport - instantiate SAS transport template
  1487. * @ft: SAS transport class function template
  1488. */
  1489. struct scsi_transport_template *
  1490. sas_attach_transport(struct sas_function_template *ft)
  1491. {
  1492. struct sas_internal *i;
  1493. int count;
  1494. i = kzalloc(sizeof(struct sas_internal), GFP_KERNEL);
  1495. if (!i)
  1496. return NULL;
  1497. i->t.user_scan = sas_user_scan;
  1498. i->t.host_attrs.ac.attrs = &i->host_attrs[0];
  1499. i->t.host_attrs.ac.class = &sas_host_class.class;
  1500. i->t.host_attrs.ac.match = sas_host_match;
  1501. transport_container_register(&i->t.host_attrs);
  1502. i->t.host_size = sizeof(struct sas_host_attrs);
  1503. i->phy_attr_cont.ac.class = &sas_phy_class.class;
  1504. i->phy_attr_cont.ac.attrs = &i->phy_attrs[0];
  1505. i->phy_attr_cont.ac.match = sas_phy_match;
  1506. transport_container_register(&i->phy_attr_cont);
  1507. i->port_attr_cont.ac.class = &sas_port_class.class;
  1508. i->port_attr_cont.ac.attrs = &i->port_attrs[0];
  1509. i->port_attr_cont.ac.match = sas_port_match;
  1510. transport_container_register(&i->port_attr_cont);
  1511. i->rphy_attr_cont.ac.class = &sas_rphy_class.class;
  1512. i->rphy_attr_cont.ac.attrs = &i->rphy_attrs[0];
  1513. i->rphy_attr_cont.ac.match = sas_rphy_match;
  1514. transport_container_register(&i->rphy_attr_cont);
  1515. i->end_dev_attr_cont.ac.class = &sas_end_dev_class.class;
  1516. i->end_dev_attr_cont.ac.attrs = &i->end_dev_attrs[0];
  1517. i->end_dev_attr_cont.ac.match = sas_end_dev_match;
  1518. transport_container_register(&i->end_dev_attr_cont);
  1519. i->expander_attr_cont.ac.class = &sas_expander_class.class;
  1520. i->expander_attr_cont.ac.attrs = &i->expander_attrs[0];
  1521. i->expander_attr_cont.ac.match = sas_expander_match;
  1522. transport_container_register(&i->expander_attr_cont);
  1523. i->f = ft;
  1524. count = 0;
  1525. SETUP_PHY_ATTRIBUTE(initiator_port_protocols);
  1526. SETUP_PHY_ATTRIBUTE(target_port_protocols);
  1527. SETUP_PHY_ATTRIBUTE(device_type);
  1528. SETUP_PHY_ATTRIBUTE(sas_address);
  1529. SETUP_PHY_ATTRIBUTE(phy_identifier);
  1530. //SETUP_PHY_ATTRIBUTE(port_identifier);
  1531. SETUP_PHY_ATTRIBUTE(negotiated_linkrate);
  1532. SETUP_PHY_ATTRIBUTE(minimum_linkrate_hw);
  1533. SETUP_PHY_ATTRIBUTE_RW(minimum_linkrate);
  1534. SETUP_PHY_ATTRIBUTE(maximum_linkrate_hw);
  1535. SETUP_PHY_ATTRIBUTE_RW(maximum_linkrate);
  1536. SETUP_PHY_ATTRIBUTE(invalid_dword_count);
  1537. SETUP_PHY_ATTRIBUTE(running_disparity_error_count);
  1538. SETUP_PHY_ATTRIBUTE(loss_of_dword_sync_count);
  1539. SETUP_PHY_ATTRIBUTE(phy_reset_problem_count);
  1540. SETUP_OPTIONAL_PHY_ATTRIBUTE_WRONLY(link_reset, phy_reset);
  1541. SETUP_OPTIONAL_PHY_ATTRIBUTE_WRONLY(hard_reset, phy_reset);
  1542. SETUP_OPTIONAL_PHY_ATTRIBUTE_RW(enable, phy_enable);
  1543. i->phy_attrs[count] = NULL;
  1544. count = 0;
  1545. SETUP_PORT_ATTRIBUTE(num_phys);
  1546. i->port_attrs[count] = NULL;
  1547. count = 0;
  1548. SETUP_RPORT_ATTRIBUTE(rphy_initiator_port_protocols);
  1549. SETUP_RPORT_ATTRIBUTE(rphy_target_port_protocols);
  1550. SETUP_RPORT_ATTRIBUTE(rphy_device_type);
  1551. SETUP_RPORT_ATTRIBUTE(rphy_sas_address);
  1552. SETUP_RPORT_ATTRIBUTE(rphy_phy_identifier);
  1553. SETUP_RPORT_ATTRIBUTE(rphy_scsi_target_id);
  1554. SETUP_OPTIONAL_RPORT_ATTRIBUTE(rphy_enclosure_identifier,
  1555. get_enclosure_identifier);
  1556. SETUP_OPTIONAL_RPORT_ATTRIBUTE(rphy_bay_identifier,
  1557. get_bay_identifier);
  1558. i->rphy_attrs[count] = NULL;
  1559. count = 0;
  1560. SETUP_END_DEV_ATTRIBUTE(end_dev_ready_led_meaning);
  1561. SETUP_END_DEV_ATTRIBUTE(end_dev_I_T_nexus_loss_timeout);
  1562. SETUP_END_DEV_ATTRIBUTE(end_dev_initiator_response_timeout);
  1563. SETUP_END_DEV_ATTRIBUTE(end_dev_tlr_supported);
  1564. SETUP_END_DEV_ATTRIBUTE(end_dev_tlr_enabled);
  1565. i->end_dev_attrs[count] = NULL;
  1566. count = 0;
  1567. SETUP_EXPANDER_ATTRIBUTE(vendor_id);
  1568. SETUP_EXPANDER_ATTRIBUTE(product_id);
  1569. SETUP_EXPANDER_ATTRIBUTE(product_rev);
  1570. SETUP_EXPANDER_ATTRIBUTE(component_vendor_id);
  1571. SETUP_EXPANDER_ATTRIBUTE(component_id);
  1572. SETUP_EXPANDER_ATTRIBUTE(component_revision_id);
  1573. SETUP_EXPANDER_ATTRIBUTE(level);
  1574. i->expander_attrs[count] = NULL;
  1575. return &i->t;
  1576. }
  1577. EXPORT_SYMBOL(sas_attach_transport);
  1578. /**
  1579. * sas_release_transport - release SAS transport template instance
  1580. * @t: transport template instance
  1581. */
  1582. void sas_release_transport(struct scsi_transport_template *t)
  1583. {
  1584. struct sas_internal *i = to_sas_internal(t);
  1585. transport_container_unregister(&i->t.host_attrs);
  1586. transport_container_unregister(&i->phy_attr_cont);
  1587. transport_container_unregister(&i->port_attr_cont);
  1588. transport_container_unregister(&i->rphy_attr_cont);
  1589. transport_container_unregister(&i->end_dev_attr_cont);
  1590. transport_container_unregister(&i->expander_attr_cont);
  1591. kfree(i);
  1592. }
  1593. EXPORT_SYMBOL(sas_release_transport);
  1594. static __init int sas_transport_init(void)
  1595. {
  1596. int error;
  1597. error = transport_class_register(&sas_host_class);
  1598. if (error)
  1599. goto out;
  1600. error = transport_class_register(&sas_phy_class);
  1601. if (error)
  1602. goto out_unregister_transport;
  1603. error = transport_class_register(&sas_port_class);
  1604. if (error)
  1605. goto out_unregister_phy;
  1606. error = transport_class_register(&sas_rphy_class);
  1607. if (error)
  1608. goto out_unregister_port;
  1609. error = transport_class_register(&sas_end_dev_class);
  1610. if (error)
  1611. goto out_unregister_rphy;
  1612. error = transport_class_register(&sas_expander_class);
  1613. if (error)
  1614. goto out_unregister_end_dev;
  1615. return 0;
  1616. out_unregister_end_dev:
  1617. transport_class_unregister(&sas_end_dev_class);
  1618. out_unregister_rphy:
  1619. transport_class_unregister(&sas_rphy_class);
  1620. out_unregister_port:
  1621. transport_class_unregister(&sas_port_class);
  1622. out_unregister_phy:
  1623. transport_class_unregister(&sas_phy_class);
  1624. out_unregister_transport:
  1625. transport_class_unregister(&sas_host_class);
  1626. out:
  1627. return error;
  1628. }
  1629. static void __exit sas_transport_exit(void)
  1630. {
  1631. transport_class_unregister(&sas_host_class);
  1632. transport_class_unregister(&sas_phy_class);
  1633. transport_class_unregister(&sas_port_class);
  1634. transport_class_unregister(&sas_rphy_class);
  1635. transport_class_unregister(&sas_end_dev_class);
  1636. transport_class_unregister(&sas_expander_class);
  1637. }
  1638. MODULE_AUTHOR("Christoph Hellwig");
  1639. MODULE_DESCRIPTION("SAS Transport Attributes");
  1640. MODULE_LICENSE("GPL");
  1641. module_init(sas_transport_init);
  1642. module_exit(sas_transport_exit);