ibmvscsi.c 61 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112
  1. /* ------------------------------------------------------------
  2. * ibmvscsi.c
  3. * (C) Copyright IBM Corporation 1994, 2004
  4. * Authors: Colin DeVilbiss (devilbis@us.ibm.com)
  5. * Santiago Leon (santil@us.ibm.com)
  6. * Dave Boutcher (sleddog@us.ibm.com)
  7. *
  8. * This program is free software; you can redistribute it and/or modify
  9. * it under the terms of the GNU General Public License as published by
  10. * the Free Software Foundation; either version 2 of the License, or
  11. * (at your option) any later version.
  12. *
  13. * This program is distributed in the hope that it will be useful,
  14. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  15. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  16. * GNU General Public License for more details.
  17. *
  18. * You should have received a copy of the GNU General Public License
  19. * along with this program; if not, write to the Free Software
  20. * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
  21. * USA
  22. *
  23. * ------------------------------------------------------------
  24. * Emulation of a SCSI host adapter for Virtual I/O devices
  25. *
  26. * This driver supports the SCSI adapter implemented by the IBM
  27. * Power5 firmware. That SCSI adapter is not a physical adapter,
  28. * but allows Linux SCSI peripheral drivers to directly
  29. * access devices in another logical partition on the physical system.
  30. *
  31. * The virtual adapter(s) are present in the open firmware device
  32. * tree just like real adapters.
  33. *
  34. * One of the capabilities provided on these systems is the ability
  35. * to DMA between partitions. The architecture states that for VSCSI,
  36. * the server side is allowed to DMA to and from the client. The client
  37. * is never trusted to DMA to or from the server directly.
  38. *
  39. * Messages are sent between partitions on a "Command/Response Queue"
  40. * (CRQ), which is just a buffer of 16 byte entries in the receiver's
  41. * Senders cannot access the buffer directly, but send messages by
  42. * making a hypervisor call and passing in the 16 bytes. The hypervisor
  43. * puts the message in the next 16 byte space in round-robin fashion,
  44. * turns on the high order bit of the message (the valid bit), and
  45. * generates an interrupt to the receiver (if interrupts are turned on.)
  46. * The receiver just turns off the valid bit when they have copied out
  47. * the message.
  48. *
  49. * The VSCSI client builds a SCSI Remote Protocol (SRP) Information Unit
  50. * (IU) (as defined in the T10 standard available at www.t10.org), gets
  51. * a DMA address for the message, and sends it to the server as the
  52. * payload of a CRQ message. The server DMAs the SRP IU and processes it,
  53. * including doing any additional data transfers. When it is done, it
  54. * DMAs the SRP response back to the same address as the request came from,
  55. * and sends a CRQ message back to inform the client that the request has
  56. * completed.
  57. *
  58. * Note that some of the underlying infrastructure is different between
  59. * machines conforming to the "RS/6000 Platform Architecture" (RPA) and
  60. * the older iSeries hypervisor models. To support both, some low level
  61. * routines have been broken out into rpa_vscsi.c and iseries_vscsi.c.
  62. * The Makefile should pick one, not two, not zero, of these.
  63. *
  64. * TODO: This is currently pretty tied to the IBM i/pSeries hypervisor
  65. * interfaces. It would be really nice to abstract this above an RDMA
  66. * layer.
  67. */
  68. #include <linux/module.h>
  69. #include <linux/moduleparam.h>
  70. #include <linux/dma-mapping.h>
  71. #include <linux/delay.h>
  72. #include <linux/slab.h>
  73. #include <linux/of.h>
  74. #include <linux/pm.h>
  75. #include <linux/kthread.h>
  76. #include <asm/firmware.h>
  77. #include <asm/vio.h>
  78. #include <scsi/scsi.h>
  79. #include <scsi/scsi_cmnd.h>
  80. #include <scsi/scsi_host.h>
  81. #include <scsi/scsi_device.h>
  82. #include <scsi/scsi_transport_srp.h>
  83. #include "ibmvscsi.h"
  84. /* The values below are somewhat arbitrary default values, but
  85. * OS/400 will use 3 busses (disks, CDs, tapes, I think.)
  86. * Note that there are 3 bits of channel value, 6 bits of id, and
  87. * 5 bits of LUN.
  88. */
  89. static int max_id = 64;
  90. static int max_channel = 3;
  91. static int init_timeout = 300;
  92. static int login_timeout = 60;
  93. static int info_timeout = 30;
  94. static int abort_timeout = 60;
  95. static int reset_timeout = 60;
  96. static int max_requests = IBMVSCSI_MAX_REQUESTS_DEFAULT;
  97. static int max_events = IBMVSCSI_MAX_REQUESTS_DEFAULT + 2;
  98. static int fast_fail = 1;
  99. static int client_reserve = 1;
  100. static struct scsi_transport_template *ibmvscsi_transport_template;
  101. #define IBMVSCSI_VERSION "1.5.9"
  102. static struct ibmvscsi_ops *ibmvscsi_ops;
  103. MODULE_DESCRIPTION("IBM Virtual SCSI");
  104. MODULE_AUTHOR("Dave Boutcher");
  105. MODULE_LICENSE("GPL");
  106. MODULE_VERSION(IBMVSCSI_VERSION);
  107. module_param_named(max_id, max_id, int, S_IRUGO | S_IWUSR);
  108. MODULE_PARM_DESC(max_id, "Largest ID value for each channel");
  109. module_param_named(max_channel, max_channel, int, S_IRUGO | S_IWUSR);
  110. MODULE_PARM_DESC(max_channel, "Largest channel value");
  111. module_param_named(init_timeout, init_timeout, int, S_IRUGO | S_IWUSR);
  112. MODULE_PARM_DESC(init_timeout, "Initialization timeout in seconds");
  113. module_param_named(max_requests, max_requests, int, S_IRUGO);
  114. MODULE_PARM_DESC(max_requests, "Maximum requests for this adapter");
  115. module_param_named(fast_fail, fast_fail, int, S_IRUGO | S_IWUSR);
  116. MODULE_PARM_DESC(fast_fail, "Enable fast fail. [Default=1]");
  117. module_param_named(client_reserve, client_reserve, int, S_IRUGO );
  118. MODULE_PARM_DESC(client_reserve, "Attempt client managed reserve/release");
  119. /* ------------------------------------------------------------
  120. * Routines for the event pool and event structs
  121. */
  122. /**
  123. * initialize_event_pool: - Allocates and initializes the event pool for a host
  124. * @pool: event_pool to be initialized
  125. * @size: Number of events in pool
  126. * @hostdata: ibmvscsi_host_data who owns the event pool
  127. *
  128. * Returns zero on success.
  129. */
  130. static int initialize_event_pool(struct event_pool *pool,
  131. int size, struct ibmvscsi_host_data *hostdata)
  132. {
  133. int i;
  134. pool->size = size;
  135. pool->next = 0;
  136. pool->events = kcalloc(pool->size, sizeof(*pool->events), GFP_KERNEL);
  137. if (!pool->events)
  138. return -ENOMEM;
  139. pool->iu_storage =
  140. dma_alloc_coherent(hostdata->dev,
  141. pool->size * sizeof(*pool->iu_storage),
  142. &pool->iu_token, 0);
  143. if (!pool->iu_storage) {
  144. kfree(pool->events);
  145. return -ENOMEM;
  146. }
  147. for (i = 0; i < pool->size; ++i) {
  148. struct srp_event_struct *evt = &pool->events[i];
  149. memset(&evt->crq, 0x00, sizeof(evt->crq));
  150. atomic_set(&evt->free, 1);
  151. evt->crq.valid = 0x80;
  152. evt->crq.IU_length = sizeof(*evt->xfer_iu);
  153. evt->crq.IU_data_ptr = pool->iu_token +
  154. sizeof(*evt->xfer_iu) * i;
  155. evt->xfer_iu = pool->iu_storage + i;
  156. evt->hostdata = hostdata;
  157. evt->ext_list = NULL;
  158. evt->ext_list_token = 0;
  159. }
  160. return 0;
  161. }
  162. /**
  163. * release_event_pool: - Frees memory of an event pool of a host
  164. * @pool: event_pool to be released
  165. * @hostdata: ibmvscsi_host_data who owns the even pool
  166. *
  167. * Returns zero on success.
  168. */
  169. static void release_event_pool(struct event_pool *pool,
  170. struct ibmvscsi_host_data *hostdata)
  171. {
  172. int i, in_use = 0;
  173. for (i = 0; i < pool->size; ++i) {
  174. if (atomic_read(&pool->events[i].free) != 1)
  175. ++in_use;
  176. if (pool->events[i].ext_list) {
  177. dma_free_coherent(hostdata->dev,
  178. SG_ALL * sizeof(struct srp_direct_buf),
  179. pool->events[i].ext_list,
  180. pool->events[i].ext_list_token);
  181. }
  182. }
  183. if (in_use)
  184. dev_warn(hostdata->dev, "releasing event pool with %d "
  185. "events still in use?\n", in_use);
  186. kfree(pool->events);
  187. dma_free_coherent(hostdata->dev,
  188. pool->size * sizeof(*pool->iu_storage),
  189. pool->iu_storage, pool->iu_token);
  190. }
  191. /**
  192. * valid_event_struct: - Determines if event is valid.
  193. * @pool: event_pool that contains the event
  194. * @evt: srp_event_struct to be checked for validity
  195. *
  196. * Returns zero if event is invalid, one otherwise.
  197. */
  198. static int valid_event_struct(struct event_pool *pool,
  199. struct srp_event_struct *evt)
  200. {
  201. int index = evt - pool->events;
  202. if (index < 0 || index >= pool->size) /* outside of bounds */
  203. return 0;
  204. if (evt != pool->events + index) /* unaligned */
  205. return 0;
  206. return 1;
  207. }
  208. /**
  209. * ibmvscsi_free-event_struct: - Changes status of event to "free"
  210. * @pool: event_pool that contains the event
  211. * @evt: srp_event_struct to be modified
  212. *
  213. */
  214. static void free_event_struct(struct event_pool *pool,
  215. struct srp_event_struct *evt)
  216. {
  217. if (!valid_event_struct(pool, evt)) {
  218. dev_err(evt->hostdata->dev, "Freeing invalid event_struct %p "
  219. "(not in pool %p)\n", evt, pool->events);
  220. return;
  221. }
  222. if (atomic_inc_return(&evt->free) != 1) {
  223. dev_err(evt->hostdata->dev, "Freeing event_struct %p "
  224. "which is not in use!\n", evt);
  225. return;
  226. }
  227. }
  228. /**
  229. * get_evt_struct: - Gets the next free event in pool
  230. * @pool: event_pool that contains the events to be searched
  231. *
  232. * Returns the next event in "free" state, and NULL if none are free.
  233. * Note that no synchronization is done here, we assume the host_lock
  234. * will syncrhonze things.
  235. */
  236. static struct srp_event_struct *get_event_struct(struct event_pool *pool)
  237. {
  238. int i;
  239. int poolsize = pool->size;
  240. int offset = pool->next;
  241. for (i = 0; i < poolsize; i++) {
  242. offset = (offset + 1) % poolsize;
  243. if (!atomic_dec_if_positive(&pool->events[offset].free)) {
  244. pool->next = offset;
  245. return &pool->events[offset];
  246. }
  247. }
  248. printk(KERN_ERR "ibmvscsi: found no event struct in pool!\n");
  249. return NULL;
  250. }
  251. /**
  252. * init_event_struct: Initialize fields in an event struct that are always
  253. * required.
  254. * @evt: The event
  255. * @done: Routine to call when the event is responded to
  256. * @format: SRP or MAD format
  257. * @timeout: timeout value set in the CRQ
  258. */
  259. static void init_event_struct(struct srp_event_struct *evt_struct,
  260. void (*done) (struct srp_event_struct *),
  261. u8 format,
  262. int timeout)
  263. {
  264. evt_struct->cmnd = NULL;
  265. evt_struct->cmnd_done = NULL;
  266. evt_struct->sync_srp = NULL;
  267. evt_struct->crq.format = format;
  268. evt_struct->crq.timeout = timeout;
  269. evt_struct->done = done;
  270. }
  271. /* ------------------------------------------------------------
  272. * Routines for receiving SCSI responses from the hosting partition
  273. */
  274. /**
  275. * set_srp_direction: Set the fields in the srp related to data
  276. * direction and number of buffers based on the direction in
  277. * the scsi_cmnd and the number of buffers
  278. */
  279. static void set_srp_direction(struct scsi_cmnd *cmd,
  280. struct srp_cmd *srp_cmd,
  281. int numbuf)
  282. {
  283. u8 fmt;
  284. if (numbuf == 0)
  285. return;
  286. if (numbuf == 1)
  287. fmt = SRP_DATA_DESC_DIRECT;
  288. else {
  289. fmt = SRP_DATA_DESC_INDIRECT;
  290. numbuf = min(numbuf, MAX_INDIRECT_BUFS);
  291. if (cmd->sc_data_direction == DMA_TO_DEVICE)
  292. srp_cmd->data_out_desc_cnt = numbuf;
  293. else
  294. srp_cmd->data_in_desc_cnt = numbuf;
  295. }
  296. if (cmd->sc_data_direction == DMA_TO_DEVICE)
  297. srp_cmd->buf_fmt = fmt << 4;
  298. else
  299. srp_cmd->buf_fmt = fmt;
  300. }
  301. /**
  302. * unmap_cmd_data: - Unmap data pointed in srp_cmd based on the format
  303. * @cmd: srp_cmd whose additional_data member will be unmapped
  304. * @dev: device for which the memory is mapped
  305. *
  306. */
  307. static void unmap_cmd_data(struct srp_cmd *cmd,
  308. struct srp_event_struct *evt_struct,
  309. struct device *dev)
  310. {
  311. u8 out_fmt, in_fmt;
  312. out_fmt = cmd->buf_fmt >> 4;
  313. in_fmt = cmd->buf_fmt & ((1U << 4) - 1);
  314. if (out_fmt == SRP_NO_DATA_DESC && in_fmt == SRP_NO_DATA_DESC)
  315. return;
  316. if (evt_struct->cmnd)
  317. scsi_dma_unmap(evt_struct->cmnd);
  318. }
  319. static int map_sg_list(struct scsi_cmnd *cmd, int nseg,
  320. struct srp_direct_buf *md)
  321. {
  322. int i;
  323. struct scatterlist *sg;
  324. u64 total_length = 0;
  325. scsi_for_each_sg(cmd, sg, nseg, i) {
  326. struct srp_direct_buf *descr = md + i;
  327. descr->va = sg_dma_address(sg);
  328. descr->len = sg_dma_len(sg);
  329. descr->key = 0;
  330. total_length += sg_dma_len(sg);
  331. }
  332. return total_length;
  333. }
  334. /**
  335. * map_sg_data: - Maps dma for a scatterlist and initializes decriptor fields
  336. * @cmd: Scsi_Cmnd with the scatterlist
  337. * @srp_cmd: srp_cmd that contains the memory descriptor
  338. * @dev: device for which to map dma memory
  339. *
  340. * Called by map_data_for_srp_cmd() when building srp cmd from scsi cmd.
  341. * Returns 1 on success.
  342. */
  343. static int map_sg_data(struct scsi_cmnd *cmd,
  344. struct srp_event_struct *evt_struct,
  345. struct srp_cmd *srp_cmd, struct device *dev)
  346. {
  347. int sg_mapped;
  348. u64 total_length = 0;
  349. struct srp_direct_buf *data =
  350. (struct srp_direct_buf *) srp_cmd->add_data;
  351. struct srp_indirect_buf *indirect =
  352. (struct srp_indirect_buf *) data;
  353. sg_mapped = scsi_dma_map(cmd);
  354. if (!sg_mapped)
  355. return 1;
  356. else if (sg_mapped < 0)
  357. return 0;
  358. set_srp_direction(cmd, srp_cmd, sg_mapped);
  359. /* special case; we can use a single direct descriptor */
  360. if (sg_mapped == 1) {
  361. map_sg_list(cmd, sg_mapped, data);
  362. return 1;
  363. }
  364. indirect->table_desc.va = 0;
  365. indirect->table_desc.len = sg_mapped * sizeof(struct srp_direct_buf);
  366. indirect->table_desc.key = 0;
  367. if (sg_mapped <= MAX_INDIRECT_BUFS) {
  368. total_length = map_sg_list(cmd, sg_mapped,
  369. &indirect->desc_list[0]);
  370. indirect->len = total_length;
  371. return 1;
  372. }
  373. /* get indirect table */
  374. if (!evt_struct->ext_list) {
  375. evt_struct->ext_list = (struct srp_direct_buf *)
  376. dma_alloc_coherent(dev,
  377. SG_ALL * sizeof(struct srp_direct_buf),
  378. &evt_struct->ext_list_token, 0);
  379. if (!evt_struct->ext_list) {
  380. if (!firmware_has_feature(FW_FEATURE_CMO))
  381. sdev_printk(KERN_ERR, cmd->device,
  382. "Can't allocate memory "
  383. "for indirect table\n");
  384. scsi_dma_unmap(cmd);
  385. return 0;
  386. }
  387. }
  388. total_length = map_sg_list(cmd, sg_mapped, evt_struct->ext_list);
  389. indirect->len = total_length;
  390. indirect->table_desc.va = evt_struct->ext_list_token;
  391. indirect->table_desc.len = sg_mapped * sizeof(indirect->desc_list[0]);
  392. memcpy(indirect->desc_list, evt_struct->ext_list,
  393. MAX_INDIRECT_BUFS * sizeof(struct srp_direct_buf));
  394. return 1;
  395. }
  396. /**
  397. * map_data_for_srp_cmd: - Calls functions to map data for srp cmds
  398. * @cmd: struct scsi_cmnd with the memory to be mapped
  399. * @srp_cmd: srp_cmd that contains the memory descriptor
  400. * @dev: dma device for which to map dma memory
  401. *
  402. * Called by scsi_cmd_to_srp_cmd() when converting scsi cmds to srp cmds
  403. * Returns 1 on success.
  404. */
  405. static int map_data_for_srp_cmd(struct scsi_cmnd *cmd,
  406. struct srp_event_struct *evt_struct,
  407. struct srp_cmd *srp_cmd, struct device *dev)
  408. {
  409. switch (cmd->sc_data_direction) {
  410. case DMA_FROM_DEVICE:
  411. case DMA_TO_DEVICE:
  412. break;
  413. case DMA_NONE:
  414. return 1;
  415. case DMA_BIDIRECTIONAL:
  416. sdev_printk(KERN_ERR, cmd->device,
  417. "Can't map DMA_BIDIRECTIONAL to read/write\n");
  418. return 0;
  419. default:
  420. sdev_printk(KERN_ERR, cmd->device,
  421. "Unknown data direction 0x%02x; can't map!\n",
  422. cmd->sc_data_direction);
  423. return 0;
  424. }
  425. return map_sg_data(cmd, evt_struct, srp_cmd, dev);
  426. }
  427. /**
  428. * purge_requests: Our virtual adapter just shut down. purge any sent requests
  429. * @hostdata: the adapter
  430. */
  431. static void purge_requests(struct ibmvscsi_host_data *hostdata, int error_code)
  432. {
  433. struct srp_event_struct *evt;
  434. unsigned long flags;
  435. spin_lock_irqsave(hostdata->host->host_lock, flags);
  436. while (!list_empty(&hostdata->sent)) {
  437. evt = list_first_entry(&hostdata->sent, struct srp_event_struct, list);
  438. list_del(&evt->list);
  439. del_timer(&evt->timer);
  440. spin_unlock_irqrestore(hostdata->host->host_lock, flags);
  441. if (evt->cmnd) {
  442. evt->cmnd->result = (error_code << 16);
  443. unmap_cmd_data(&evt->iu.srp.cmd, evt,
  444. evt->hostdata->dev);
  445. if (evt->cmnd_done)
  446. evt->cmnd_done(evt->cmnd);
  447. } else if (evt->done)
  448. evt->done(evt);
  449. free_event_struct(&evt->hostdata->pool, evt);
  450. spin_lock_irqsave(hostdata->host->host_lock, flags);
  451. }
  452. spin_unlock_irqrestore(hostdata->host->host_lock, flags);
  453. }
  454. /**
  455. * ibmvscsi_reset_host - Reset the connection to the server
  456. * @hostdata: struct ibmvscsi_host_data to reset
  457. */
  458. static void ibmvscsi_reset_host(struct ibmvscsi_host_data *hostdata)
  459. {
  460. scsi_block_requests(hostdata->host);
  461. atomic_set(&hostdata->request_limit, 0);
  462. purge_requests(hostdata, DID_ERROR);
  463. hostdata->reset_crq = 1;
  464. wake_up(&hostdata->work_wait_q);
  465. }
  466. /**
  467. * ibmvscsi_timeout - Internal command timeout handler
  468. * @evt_struct: struct srp_event_struct that timed out
  469. *
  470. * Called when an internally generated command times out
  471. */
  472. static void ibmvscsi_timeout(struct srp_event_struct *evt_struct)
  473. {
  474. struct ibmvscsi_host_data *hostdata = evt_struct->hostdata;
  475. dev_err(hostdata->dev, "Command timed out (%x). Resetting connection\n",
  476. evt_struct->iu.srp.cmd.opcode);
  477. ibmvscsi_reset_host(hostdata);
  478. }
  479. /* ------------------------------------------------------------
  480. * Routines for sending and receiving SRPs
  481. */
  482. /**
  483. * ibmvscsi_send_srp_event: - Transforms event to u64 array and calls send_crq()
  484. * @evt_struct: evt_struct to be sent
  485. * @hostdata: ibmvscsi_host_data of host
  486. * @timeout: timeout in seconds - 0 means do not time command
  487. *
  488. * Returns the value returned from ibmvscsi_send_crq(). (Zero for success)
  489. * Note that this routine assumes that host_lock is held for synchronization
  490. */
  491. static int ibmvscsi_send_srp_event(struct srp_event_struct *evt_struct,
  492. struct ibmvscsi_host_data *hostdata,
  493. unsigned long timeout)
  494. {
  495. u64 *crq_as_u64 = (u64 *) &evt_struct->crq;
  496. int request_status = 0;
  497. int rc;
  498. int srp_req = 0;
  499. /* If we have exhausted our request limit, just fail this request,
  500. * unless it is for a reset or abort.
  501. * Note that there are rare cases involving driver generated requests
  502. * (such as task management requests) that the mid layer may think we
  503. * can handle more requests (can_queue) when we actually can't
  504. */
  505. if (evt_struct->crq.format == VIOSRP_SRP_FORMAT) {
  506. srp_req = 1;
  507. request_status =
  508. atomic_dec_if_positive(&hostdata->request_limit);
  509. /* If request limit was -1 when we started, it is now even
  510. * less than that
  511. */
  512. if (request_status < -1)
  513. goto send_error;
  514. /* Otherwise, we may have run out of requests. */
  515. /* If request limit was 0 when we started the adapter is in the
  516. * process of performing a login with the server adapter, or
  517. * we may have run out of requests.
  518. */
  519. else if (request_status == -1 &&
  520. evt_struct->iu.srp.login_req.opcode != SRP_LOGIN_REQ)
  521. goto send_busy;
  522. /* Abort and reset calls should make it through.
  523. * Nothing except abort and reset should use the last two
  524. * slots unless we had two or less to begin with.
  525. */
  526. else if (request_status < 2 &&
  527. evt_struct->iu.srp.cmd.opcode != SRP_TSK_MGMT) {
  528. /* In the case that we have less than two requests
  529. * available, check the server limit as a combination
  530. * of the request limit and the number of requests
  531. * in-flight (the size of the send list). If the
  532. * server limit is greater than 2, return busy so
  533. * that the last two are reserved for reset and abort.
  534. */
  535. int server_limit = request_status;
  536. struct srp_event_struct *tmp_evt;
  537. list_for_each_entry(tmp_evt, &hostdata->sent, list) {
  538. server_limit++;
  539. }
  540. if (server_limit > 2)
  541. goto send_busy;
  542. }
  543. }
  544. /* Copy the IU into the transfer area */
  545. *evt_struct->xfer_iu = evt_struct->iu;
  546. evt_struct->xfer_iu->srp.rsp.tag = (u64)evt_struct;
  547. /* Add this to the sent list. We need to do this
  548. * before we actually send
  549. * in case it comes back REALLY fast
  550. */
  551. list_add_tail(&evt_struct->list, &hostdata->sent);
  552. init_timer(&evt_struct->timer);
  553. if (timeout) {
  554. evt_struct->timer.data = (unsigned long) evt_struct;
  555. evt_struct->timer.expires = jiffies + (timeout * HZ);
  556. evt_struct->timer.function = (void (*)(unsigned long))ibmvscsi_timeout;
  557. add_timer(&evt_struct->timer);
  558. }
  559. if ((rc =
  560. ibmvscsi_ops->send_crq(hostdata, crq_as_u64[0], crq_as_u64[1])) != 0) {
  561. list_del(&evt_struct->list);
  562. del_timer(&evt_struct->timer);
  563. /* If send_crq returns H_CLOSED, return SCSI_MLQUEUE_HOST_BUSY.
  564. * Firmware will send a CRQ with a transport event (0xFF) to
  565. * tell this client what has happened to the transport. This
  566. * will be handled in ibmvscsi_handle_crq()
  567. */
  568. if (rc == H_CLOSED) {
  569. dev_warn(hostdata->dev, "send warning. "
  570. "Receive queue closed, will retry.\n");
  571. goto send_busy;
  572. }
  573. dev_err(hostdata->dev, "send error %d\n", rc);
  574. if (srp_req)
  575. atomic_inc(&hostdata->request_limit);
  576. goto send_error;
  577. }
  578. return 0;
  579. send_busy:
  580. unmap_cmd_data(&evt_struct->iu.srp.cmd, evt_struct, hostdata->dev);
  581. free_event_struct(&hostdata->pool, evt_struct);
  582. if (srp_req && request_status != -1)
  583. atomic_inc(&hostdata->request_limit);
  584. return SCSI_MLQUEUE_HOST_BUSY;
  585. send_error:
  586. unmap_cmd_data(&evt_struct->iu.srp.cmd, evt_struct, hostdata->dev);
  587. if (evt_struct->cmnd != NULL) {
  588. evt_struct->cmnd->result = DID_ERROR << 16;
  589. evt_struct->cmnd_done(evt_struct->cmnd);
  590. } else if (evt_struct->done)
  591. evt_struct->done(evt_struct);
  592. free_event_struct(&hostdata->pool, evt_struct);
  593. return 0;
  594. }
  595. /**
  596. * handle_cmd_rsp: - Handle responses from commands
  597. * @evt_struct: srp_event_struct to be handled
  598. *
  599. * Used as a callback by when sending scsi cmds.
  600. * Gets called by ibmvscsi_handle_crq()
  601. */
  602. static void handle_cmd_rsp(struct srp_event_struct *evt_struct)
  603. {
  604. struct srp_rsp *rsp = &evt_struct->xfer_iu->srp.rsp;
  605. struct scsi_cmnd *cmnd = evt_struct->cmnd;
  606. if (unlikely(rsp->opcode != SRP_RSP)) {
  607. if (printk_ratelimit())
  608. dev_warn(evt_struct->hostdata->dev,
  609. "bad SRP RSP type %d\n", rsp->opcode);
  610. }
  611. if (cmnd) {
  612. cmnd->result |= rsp->status;
  613. if (((cmnd->result >> 1) & 0x1f) == CHECK_CONDITION)
  614. memcpy(cmnd->sense_buffer,
  615. rsp->data,
  616. rsp->sense_data_len);
  617. unmap_cmd_data(&evt_struct->iu.srp.cmd,
  618. evt_struct,
  619. evt_struct->hostdata->dev);
  620. if (rsp->flags & SRP_RSP_FLAG_DOOVER)
  621. scsi_set_resid(cmnd, rsp->data_out_res_cnt);
  622. else if (rsp->flags & SRP_RSP_FLAG_DIOVER)
  623. scsi_set_resid(cmnd, rsp->data_in_res_cnt);
  624. }
  625. if (evt_struct->cmnd_done)
  626. evt_struct->cmnd_done(cmnd);
  627. }
  628. /**
  629. * lun_from_dev: - Returns the lun of the scsi device
  630. * @dev: struct scsi_device
  631. *
  632. */
  633. static inline u16 lun_from_dev(struct scsi_device *dev)
  634. {
  635. return (0x2 << 14) | (dev->id << 8) | (dev->channel << 5) | dev->lun;
  636. }
  637. /**
  638. * ibmvscsi_queue: - The queuecommand function of the scsi template
  639. * @cmd: struct scsi_cmnd to be executed
  640. * @done: Callback function to be called when cmd is completed
  641. */
  642. static int ibmvscsi_queuecommand(struct scsi_cmnd *cmnd,
  643. void (*done) (struct scsi_cmnd *))
  644. {
  645. struct srp_cmd *srp_cmd;
  646. struct srp_event_struct *evt_struct;
  647. struct srp_indirect_buf *indirect;
  648. struct ibmvscsi_host_data *hostdata = shost_priv(cmnd->device->host);
  649. u16 lun = lun_from_dev(cmnd->device);
  650. u8 out_fmt, in_fmt;
  651. cmnd->result = (DID_OK << 16);
  652. evt_struct = get_event_struct(&hostdata->pool);
  653. if (!evt_struct)
  654. return SCSI_MLQUEUE_HOST_BUSY;
  655. /* Set up the actual SRP IU */
  656. srp_cmd = &evt_struct->iu.srp.cmd;
  657. memset(srp_cmd, 0x00, SRP_MAX_IU_LEN);
  658. srp_cmd->opcode = SRP_CMD;
  659. memcpy(srp_cmd->cdb, cmnd->cmnd, sizeof(srp_cmd->cdb));
  660. srp_cmd->lun = ((u64) lun) << 48;
  661. if (!map_data_for_srp_cmd(cmnd, evt_struct, srp_cmd, hostdata->dev)) {
  662. if (!firmware_has_feature(FW_FEATURE_CMO))
  663. sdev_printk(KERN_ERR, cmnd->device,
  664. "couldn't convert cmd to srp_cmd\n");
  665. free_event_struct(&hostdata->pool, evt_struct);
  666. return SCSI_MLQUEUE_HOST_BUSY;
  667. }
  668. init_event_struct(evt_struct,
  669. handle_cmd_rsp,
  670. VIOSRP_SRP_FORMAT,
  671. cmnd->request->timeout/HZ);
  672. evt_struct->cmnd = cmnd;
  673. evt_struct->cmnd_done = done;
  674. /* Fix up dma address of the buffer itself */
  675. indirect = (struct srp_indirect_buf *) srp_cmd->add_data;
  676. out_fmt = srp_cmd->buf_fmt >> 4;
  677. in_fmt = srp_cmd->buf_fmt & ((1U << 4) - 1);
  678. if ((in_fmt == SRP_DATA_DESC_INDIRECT ||
  679. out_fmt == SRP_DATA_DESC_INDIRECT) &&
  680. indirect->table_desc.va == 0) {
  681. indirect->table_desc.va = evt_struct->crq.IU_data_ptr +
  682. offsetof(struct srp_cmd, add_data) +
  683. offsetof(struct srp_indirect_buf, desc_list);
  684. }
  685. return ibmvscsi_send_srp_event(evt_struct, hostdata, 0);
  686. }
  687. /* ------------------------------------------------------------
  688. * Routines for driver initialization
  689. */
  690. /**
  691. * map_persist_bufs: - Pre-map persistent data for adapter logins
  692. * @hostdata: ibmvscsi_host_data of host
  693. *
  694. * Map the capabilities and adapter info DMA buffers to avoid runtime failures.
  695. * Return 1 on error, 0 on success.
  696. */
  697. static int map_persist_bufs(struct ibmvscsi_host_data *hostdata)
  698. {
  699. hostdata->caps_addr = dma_map_single(hostdata->dev, &hostdata->caps,
  700. sizeof(hostdata->caps), DMA_BIDIRECTIONAL);
  701. if (dma_mapping_error(hostdata->dev, hostdata->caps_addr)) {
  702. dev_err(hostdata->dev, "Unable to map capabilities buffer!\n");
  703. return 1;
  704. }
  705. hostdata->adapter_info_addr = dma_map_single(hostdata->dev,
  706. &hostdata->madapter_info,
  707. sizeof(hostdata->madapter_info),
  708. DMA_BIDIRECTIONAL);
  709. if (dma_mapping_error(hostdata->dev, hostdata->adapter_info_addr)) {
  710. dev_err(hostdata->dev, "Unable to map adapter info buffer!\n");
  711. dma_unmap_single(hostdata->dev, hostdata->caps_addr,
  712. sizeof(hostdata->caps), DMA_BIDIRECTIONAL);
  713. return 1;
  714. }
  715. return 0;
  716. }
  717. /**
  718. * unmap_persist_bufs: - Unmap persistent data needed for adapter logins
  719. * @hostdata: ibmvscsi_host_data of host
  720. *
  721. * Unmap the capabilities and adapter info DMA buffers
  722. */
  723. static void unmap_persist_bufs(struct ibmvscsi_host_data *hostdata)
  724. {
  725. dma_unmap_single(hostdata->dev, hostdata->caps_addr,
  726. sizeof(hostdata->caps), DMA_BIDIRECTIONAL);
  727. dma_unmap_single(hostdata->dev, hostdata->adapter_info_addr,
  728. sizeof(hostdata->madapter_info), DMA_BIDIRECTIONAL);
  729. }
  730. /**
  731. * login_rsp: - Handle response to SRP login request
  732. * @evt_struct: srp_event_struct with the response
  733. *
  734. * Used as a "done" callback by when sending srp_login. Gets called
  735. * by ibmvscsi_handle_crq()
  736. */
  737. static void login_rsp(struct srp_event_struct *evt_struct)
  738. {
  739. struct ibmvscsi_host_data *hostdata = evt_struct->hostdata;
  740. switch (evt_struct->xfer_iu->srp.login_rsp.opcode) {
  741. case SRP_LOGIN_RSP: /* it worked! */
  742. break;
  743. case SRP_LOGIN_REJ: /* refused! */
  744. dev_info(hostdata->dev, "SRP_LOGIN_REJ reason %u\n",
  745. evt_struct->xfer_iu->srp.login_rej.reason);
  746. /* Login failed. */
  747. atomic_set(&hostdata->request_limit, -1);
  748. return;
  749. default:
  750. dev_err(hostdata->dev, "Invalid login response typecode 0x%02x!\n",
  751. evt_struct->xfer_iu->srp.login_rsp.opcode);
  752. /* Login failed. */
  753. atomic_set(&hostdata->request_limit, -1);
  754. return;
  755. }
  756. dev_info(hostdata->dev, "SRP_LOGIN succeeded\n");
  757. hostdata->client_migrated = 0;
  758. /* Now we know what the real request-limit is.
  759. * This value is set rather than added to request_limit because
  760. * request_limit could have been set to -1 by this client.
  761. */
  762. atomic_set(&hostdata->request_limit,
  763. evt_struct->xfer_iu->srp.login_rsp.req_lim_delta);
  764. /* If we had any pending I/Os, kick them */
  765. scsi_unblock_requests(hostdata->host);
  766. }
  767. /**
  768. * send_srp_login: - Sends the srp login
  769. * @hostdata: ibmvscsi_host_data of host
  770. *
  771. * Returns zero if successful.
  772. */
  773. static int send_srp_login(struct ibmvscsi_host_data *hostdata)
  774. {
  775. int rc;
  776. unsigned long flags;
  777. struct srp_login_req *login;
  778. struct srp_event_struct *evt_struct = get_event_struct(&hostdata->pool);
  779. BUG_ON(!evt_struct);
  780. init_event_struct(evt_struct, login_rsp,
  781. VIOSRP_SRP_FORMAT, login_timeout);
  782. login = &evt_struct->iu.srp.login_req;
  783. memset(login, 0, sizeof(*login));
  784. login->opcode = SRP_LOGIN_REQ;
  785. login->req_it_iu_len = sizeof(union srp_iu);
  786. login->req_buf_fmt = SRP_BUF_FORMAT_DIRECT | SRP_BUF_FORMAT_INDIRECT;
  787. spin_lock_irqsave(hostdata->host->host_lock, flags);
  788. /* Start out with a request limit of 0, since this is negotiated in
  789. * the login request we are just sending and login requests always
  790. * get sent by the driver regardless of request_limit.
  791. */
  792. atomic_set(&hostdata->request_limit, 0);
  793. rc = ibmvscsi_send_srp_event(evt_struct, hostdata, login_timeout * 2);
  794. spin_unlock_irqrestore(hostdata->host->host_lock, flags);
  795. dev_info(hostdata->dev, "sent SRP login\n");
  796. return rc;
  797. };
  798. /**
  799. * capabilities_rsp: - Handle response to MAD adapter capabilities request
  800. * @evt_struct: srp_event_struct with the response
  801. *
  802. * Used as a "done" callback by when sending adapter_info.
  803. */
  804. static void capabilities_rsp(struct srp_event_struct *evt_struct)
  805. {
  806. struct ibmvscsi_host_data *hostdata = evt_struct->hostdata;
  807. if (evt_struct->xfer_iu->mad.capabilities.common.status) {
  808. dev_err(hostdata->dev, "error 0x%X getting capabilities info\n",
  809. evt_struct->xfer_iu->mad.capabilities.common.status);
  810. } else {
  811. if (hostdata->caps.migration.common.server_support != SERVER_SUPPORTS_CAP)
  812. dev_info(hostdata->dev, "Partition migration not supported\n");
  813. if (client_reserve) {
  814. if (hostdata->caps.reserve.common.server_support ==
  815. SERVER_SUPPORTS_CAP)
  816. dev_info(hostdata->dev, "Client reserve enabled\n");
  817. else
  818. dev_info(hostdata->dev, "Client reserve not supported\n");
  819. }
  820. }
  821. send_srp_login(hostdata);
  822. }
  823. /**
  824. * send_mad_capabilities: - Sends the mad capabilities request
  825. * and stores the result so it can be retrieved with
  826. * @hostdata: ibmvscsi_host_data of host
  827. */
  828. static void send_mad_capabilities(struct ibmvscsi_host_data *hostdata)
  829. {
  830. struct viosrp_capabilities *req;
  831. struct srp_event_struct *evt_struct;
  832. unsigned long flags;
  833. struct device_node *of_node = hostdata->dev->of_node;
  834. const char *location;
  835. evt_struct = get_event_struct(&hostdata->pool);
  836. BUG_ON(!evt_struct);
  837. init_event_struct(evt_struct, capabilities_rsp,
  838. VIOSRP_MAD_FORMAT, info_timeout);
  839. req = &evt_struct->iu.mad.capabilities;
  840. memset(req, 0, sizeof(*req));
  841. hostdata->caps.flags = CAP_LIST_SUPPORTED;
  842. if (hostdata->client_migrated)
  843. hostdata->caps.flags |= CLIENT_MIGRATED;
  844. strncpy(hostdata->caps.name, dev_name(&hostdata->host->shost_gendev),
  845. sizeof(hostdata->caps.name));
  846. hostdata->caps.name[sizeof(hostdata->caps.name) - 1] = '\0';
  847. location = of_get_property(of_node, "ibm,loc-code", NULL);
  848. location = location ? location : dev_name(hostdata->dev);
  849. strncpy(hostdata->caps.loc, location, sizeof(hostdata->caps.loc));
  850. hostdata->caps.loc[sizeof(hostdata->caps.loc) - 1] = '\0';
  851. req->common.type = VIOSRP_CAPABILITIES_TYPE;
  852. req->buffer = hostdata->caps_addr;
  853. hostdata->caps.migration.common.cap_type = MIGRATION_CAPABILITIES;
  854. hostdata->caps.migration.common.length = sizeof(hostdata->caps.migration);
  855. hostdata->caps.migration.common.server_support = SERVER_SUPPORTS_CAP;
  856. hostdata->caps.migration.ecl = 1;
  857. if (client_reserve) {
  858. hostdata->caps.reserve.common.cap_type = RESERVATION_CAPABILITIES;
  859. hostdata->caps.reserve.common.length = sizeof(hostdata->caps.reserve);
  860. hostdata->caps.reserve.common.server_support = SERVER_SUPPORTS_CAP;
  861. hostdata->caps.reserve.type = CLIENT_RESERVE_SCSI_2;
  862. req->common.length = sizeof(hostdata->caps);
  863. } else
  864. req->common.length = sizeof(hostdata->caps) - sizeof(hostdata->caps.reserve);
  865. spin_lock_irqsave(hostdata->host->host_lock, flags);
  866. if (ibmvscsi_send_srp_event(evt_struct, hostdata, info_timeout * 2))
  867. dev_err(hostdata->dev, "couldn't send CAPABILITIES_REQ!\n");
  868. spin_unlock_irqrestore(hostdata->host->host_lock, flags);
  869. };
  870. /**
  871. * fast_fail_rsp: - Handle response to MAD enable fast fail
  872. * @evt_struct: srp_event_struct with the response
  873. *
  874. * Used as a "done" callback by when sending enable fast fail. Gets called
  875. * by ibmvscsi_handle_crq()
  876. */
  877. static void fast_fail_rsp(struct srp_event_struct *evt_struct)
  878. {
  879. struct ibmvscsi_host_data *hostdata = evt_struct->hostdata;
  880. u8 status = evt_struct->xfer_iu->mad.fast_fail.common.status;
  881. if (status == VIOSRP_MAD_NOT_SUPPORTED)
  882. dev_err(hostdata->dev, "fast_fail not supported in server\n");
  883. else if (status == VIOSRP_MAD_FAILED)
  884. dev_err(hostdata->dev, "fast_fail request failed\n");
  885. else if (status != VIOSRP_MAD_SUCCESS)
  886. dev_err(hostdata->dev, "error 0x%X enabling fast_fail\n", status);
  887. send_mad_capabilities(hostdata);
  888. }
  889. /**
  890. * init_host - Start host initialization
  891. * @hostdata: ibmvscsi_host_data of host
  892. *
  893. * Returns zero if successful.
  894. */
  895. static int enable_fast_fail(struct ibmvscsi_host_data *hostdata)
  896. {
  897. int rc;
  898. unsigned long flags;
  899. struct viosrp_fast_fail *fast_fail_mad;
  900. struct srp_event_struct *evt_struct;
  901. if (!fast_fail) {
  902. send_mad_capabilities(hostdata);
  903. return 0;
  904. }
  905. evt_struct = get_event_struct(&hostdata->pool);
  906. BUG_ON(!evt_struct);
  907. init_event_struct(evt_struct, fast_fail_rsp, VIOSRP_MAD_FORMAT, info_timeout);
  908. fast_fail_mad = &evt_struct->iu.mad.fast_fail;
  909. memset(fast_fail_mad, 0, sizeof(*fast_fail_mad));
  910. fast_fail_mad->common.type = VIOSRP_ENABLE_FAST_FAIL;
  911. fast_fail_mad->common.length = sizeof(*fast_fail_mad);
  912. spin_lock_irqsave(hostdata->host->host_lock, flags);
  913. rc = ibmvscsi_send_srp_event(evt_struct, hostdata, info_timeout * 2);
  914. spin_unlock_irqrestore(hostdata->host->host_lock, flags);
  915. return rc;
  916. }
  917. /**
  918. * adapter_info_rsp: - Handle response to MAD adapter info request
  919. * @evt_struct: srp_event_struct with the response
  920. *
  921. * Used as a "done" callback by when sending adapter_info. Gets called
  922. * by ibmvscsi_handle_crq()
  923. */
  924. static void adapter_info_rsp(struct srp_event_struct *evt_struct)
  925. {
  926. struct ibmvscsi_host_data *hostdata = evt_struct->hostdata;
  927. if (evt_struct->xfer_iu->mad.adapter_info.common.status) {
  928. dev_err(hostdata->dev, "error %d getting adapter info\n",
  929. evt_struct->xfer_iu->mad.adapter_info.common.status);
  930. } else {
  931. dev_info(hostdata->dev, "host srp version: %s, "
  932. "host partition %s (%d), OS %d, max io %u\n",
  933. hostdata->madapter_info.srp_version,
  934. hostdata->madapter_info.partition_name,
  935. hostdata->madapter_info.partition_number,
  936. hostdata->madapter_info.os_type,
  937. hostdata->madapter_info.port_max_txu[0]);
  938. if (hostdata->madapter_info.port_max_txu[0])
  939. hostdata->host->max_sectors =
  940. hostdata->madapter_info.port_max_txu[0] >> 9;
  941. if (hostdata->madapter_info.os_type == 3 &&
  942. strcmp(hostdata->madapter_info.srp_version, "1.6a") <= 0) {
  943. dev_err(hostdata->dev, "host (Ver. %s) doesn't support large transfers\n",
  944. hostdata->madapter_info.srp_version);
  945. dev_err(hostdata->dev, "limiting scatterlists to %d\n",
  946. MAX_INDIRECT_BUFS);
  947. hostdata->host->sg_tablesize = MAX_INDIRECT_BUFS;
  948. }
  949. if (hostdata->madapter_info.os_type == 3) {
  950. enable_fast_fail(hostdata);
  951. return;
  952. }
  953. }
  954. send_srp_login(hostdata);
  955. }
  956. /**
  957. * send_mad_adapter_info: - Sends the mad adapter info request
  958. * and stores the result so it can be retrieved with
  959. * sysfs. We COULD consider causing a failure if the
  960. * returned SRP version doesn't match ours.
  961. * @hostdata: ibmvscsi_host_data of host
  962. *
  963. * Returns zero if successful.
  964. */
  965. static void send_mad_adapter_info(struct ibmvscsi_host_data *hostdata)
  966. {
  967. struct viosrp_adapter_info *req;
  968. struct srp_event_struct *evt_struct;
  969. unsigned long flags;
  970. evt_struct = get_event_struct(&hostdata->pool);
  971. BUG_ON(!evt_struct);
  972. init_event_struct(evt_struct,
  973. adapter_info_rsp,
  974. VIOSRP_MAD_FORMAT,
  975. info_timeout);
  976. req = &evt_struct->iu.mad.adapter_info;
  977. memset(req, 0x00, sizeof(*req));
  978. req->common.type = VIOSRP_ADAPTER_INFO_TYPE;
  979. req->common.length = sizeof(hostdata->madapter_info);
  980. req->buffer = hostdata->adapter_info_addr;
  981. spin_lock_irqsave(hostdata->host->host_lock, flags);
  982. if (ibmvscsi_send_srp_event(evt_struct, hostdata, info_timeout * 2))
  983. dev_err(hostdata->dev, "couldn't send ADAPTER_INFO_REQ!\n");
  984. spin_unlock_irqrestore(hostdata->host->host_lock, flags);
  985. };
  986. /**
  987. * init_adapter: Start virtual adapter initialization sequence
  988. *
  989. */
  990. static void init_adapter(struct ibmvscsi_host_data *hostdata)
  991. {
  992. send_mad_adapter_info(hostdata);
  993. }
  994. /**
  995. * sync_completion: Signal that a synchronous command has completed
  996. * Note that after returning from this call, the evt_struct is freed.
  997. * the caller waiting on this completion shouldn't touch the evt_struct
  998. * again.
  999. */
  1000. static void sync_completion(struct srp_event_struct *evt_struct)
  1001. {
  1002. /* copy the response back */
  1003. if (evt_struct->sync_srp)
  1004. *evt_struct->sync_srp = *evt_struct->xfer_iu;
  1005. complete(&evt_struct->comp);
  1006. }
  1007. /**
  1008. * ibmvscsi_abort: Abort a command...from scsi host template
  1009. * send this over to the server and wait synchronously for the response
  1010. */
  1011. static int ibmvscsi_eh_abort_handler(struct scsi_cmnd *cmd)
  1012. {
  1013. struct ibmvscsi_host_data *hostdata = shost_priv(cmd->device->host);
  1014. struct srp_tsk_mgmt *tsk_mgmt;
  1015. struct srp_event_struct *evt;
  1016. struct srp_event_struct *tmp_evt, *found_evt;
  1017. union viosrp_iu srp_rsp;
  1018. int rsp_rc;
  1019. unsigned long flags;
  1020. u16 lun = lun_from_dev(cmd->device);
  1021. unsigned long wait_switch = 0;
  1022. /* First, find this command in our sent list so we can figure
  1023. * out the correct tag
  1024. */
  1025. spin_lock_irqsave(hostdata->host->host_lock, flags);
  1026. wait_switch = jiffies + (init_timeout * HZ);
  1027. do {
  1028. found_evt = NULL;
  1029. list_for_each_entry(tmp_evt, &hostdata->sent, list) {
  1030. if (tmp_evt->cmnd == cmd) {
  1031. found_evt = tmp_evt;
  1032. break;
  1033. }
  1034. }
  1035. if (!found_evt) {
  1036. spin_unlock_irqrestore(hostdata->host->host_lock, flags);
  1037. return SUCCESS;
  1038. }
  1039. evt = get_event_struct(&hostdata->pool);
  1040. if (evt == NULL) {
  1041. spin_unlock_irqrestore(hostdata->host->host_lock, flags);
  1042. sdev_printk(KERN_ERR, cmd->device,
  1043. "failed to allocate abort event\n");
  1044. return FAILED;
  1045. }
  1046. init_event_struct(evt,
  1047. sync_completion,
  1048. VIOSRP_SRP_FORMAT,
  1049. abort_timeout);
  1050. tsk_mgmt = &evt->iu.srp.tsk_mgmt;
  1051. /* Set up an abort SRP command */
  1052. memset(tsk_mgmt, 0x00, sizeof(*tsk_mgmt));
  1053. tsk_mgmt->opcode = SRP_TSK_MGMT;
  1054. tsk_mgmt->lun = ((u64) lun) << 48;
  1055. tsk_mgmt->tsk_mgmt_func = SRP_TSK_ABORT_TASK;
  1056. tsk_mgmt->task_tag = (u64) found_evt;
  1057. evt->sync_srp = &srp_rsp;
  1058. init_completion(&evt->comp);
  1059. rsp_rc = ibmvscsi_send_srp_event(evt, hostdata, abort_timeout * 2);
  1060. if (rsp_rc != SCSI_MLQUEUE_HOST_BUSY)
  1061. break;
  1062. spin_unlock_irqrestore(hostdata->host->host_lock, flags);
  1063. msleep(10);
  1064. spin_lock_irqsave(hostdata->host->host_lock, flags);
  1065. } while (time_before(jiffies, wait_switch));
  1066. spin_unlock_irqrestore(hostdata->host->host_lock, flags);
  1067. if (rsp_rc != 0) {
  1068. sdev_printk(KERN_ERR, cmd->device,
  1069. "failed to send abort() event. rc=%d\n", rsp_rc);
  1070. return FAILED;
  1071. }
  1072. sdev_printk(KERN_INFO, cmd->device,
  1073. "aborting command. lun 0x%llx, tag 0x%llx\n",
  1074. (((u64) lun) << 48), (u64) found_evt);
  1075. wait_for_completion(&evt->comp);
  1076. /* make sure we got a good response */
  1077. if (unlikely(srp_rsp.srp.rsp.opcode != SRP_RSP)) {
  1078. if (printk_ratelimit())
  1079. sdev_printk(KERN_WARNING, cmd->device, "abort bad SRP RSP type %d\n",
  1080. srp_rsp.srp.rsp.opcode);
  1081. return FAILED;
  1082. }
  1083. if (srp_rsp.srp.rsp.flags & SRP_RSP_FLAG_RSPVALID)
  1084. rsp_rc = *((int *)srp_rsp.srp.rsp.data);
  1085. else
  1086. rsp_rc = srp_rsp.srp.rsp.status;
  1087. if (rsp_rc) {
  1088. if (printk_ratelimit())
  1089. sdev_printk(KERN_WARNING, cmd->device,
  1090. "abort code %d for task tag 0x%llx\n",
  1091. rsp_rc, tsk_mgmt->task_tag);
  1092. return FAILED;
  1093. }
  1094. /* Because we dropped the spinlock above, it's possible
  1095. * The event is no longer in our list. Make sure it didn't
  1096. * complete while we were aborting
  1097. */
  1098. spin_lock_irqsave(hostdata->host->host_lock, flags);
  1099. found_evt = NULL;
  1100. list_for_each_entry(tmp_evt, &hostdata->sent, list) {
  1101. if (tmp_evt->cmnd == cmd) {
  1102. found_evt = tmp_evt;
  1103. break;
  1104. }
  1105. }
  1106. if (found_evt == NULL) {
  1107. spin_unlock_irqrestore(hostdata->host->host_lock, flags);
  1108. sdev_printk(KERN_INFO, cmd->device, "aborted task tag 0x%llx completed\n",
  1109. tsk_mgmt->task_tag);
  1110. return SUCCESS;
  1111. }
  1112. sdev_printk(KERN_INFO, cmd->device, "successfully aborted task tag 0x%llx\n",
  1113. tsk_mgmt->task_tag);
  1114. cmd->result = (DID_ABORT << 16);
  1115. list_del(&found_evt->list);
  1116. unmap_cmd_data(&found_evt->iu.srp.cmd, found_evt,
  1117. found_evt->hostdata->dev);
  1118. free_event_struct(&found_evt->hostdata->pool, found_evt);
  1119. spin_unlock_irqrestore(hostdata->host->host_lock, flags);
  1120. atomic_inc(&hostdata->request_limit);
  1121. return SUCCESS;
  1122. }
  1123. /**
  1124. * ibmvscsi_eh_device_reset_handler: Reset a single LUN...from scsi host
  1125. * template send this over to the server and wait synchronously for the
  1126. * response
  1127. */
  1128. static int ibmvscsi_eh_device_reset_handler(struct scsi_cmnd *cmd)
  1129. {
  1130. struct ibmvscsi_host_data *hostdata = shost_priv(cmd->device->host);
  1131. struct srp_tsk_mgmt *tsk_mgmt;
  1132. struct srp_event_struct *evt;
  1133. struct srp_event_struct *tmp_evt, *pos;
  1134. union viosrp_iu srp_rsp;
  1135. int rsp_rc;
  1136. unsigned long flags;
  1137. u16 lun = lun_from_dev(cmd->device);
  1138. unsigned long wait_switch = 0;
  1139. spin_lock_irqsave(hostdata->host->host_lock, flags);
  1140. wait_switch = jiffies + (init_timeout * HZ);
  1141. do {
  1142. evt = get_event_struct(&hostdata->pool);
  1143. if (evt == NULL) {
  1144. spin_unlock_irqrestore(hostdata->host->host_lock, flags);
  1145. sdev_printk(KERN_ERR, cmd->device,
  1146. "failed to allocate reset event\n");
  1147. return FAILED;
  1148. }
  1149. init_event_struct(evt,
  1150. sync_completion,
  1151. VIOSRP_SRP_FORMAT,
  1152. reset_timeout);
  1153. tsk_mgmt = &evt->iu.srp.tsk_mgmt;
  1154. /* Set up a lun reset SRP command */
  1155. memset(tsk_mgmt, 0x00, sizeof(*tsk_mgmt));
  1156. tsk_mgmt->opcode = SRP_TSK_MGMT;
  1157. tsk_mgmt->lun = ((u64) lun) << 48;
  1158. tsk_mgmt->tsk_mgmt_func = SRP_TSK_LUN_RESET;
  1159. evt->sync_srp = &srp_rsp;
  1160. init_completion(&evt->comp);
  1161. rsp_rc = ibmvscsi_send_srp_event(evt, hostdata, reset_timeout * 2);
  1162. if (rsp_rc != SCSI_MLQUEUE_HOST_BUSY)
  1163. break;
  1164. spin_unlock_irqrestore(hostdata->host->host_lock, flags);
  1165. msleep(10);
  1166. spin_lock_irqsave(hostdata->host->host_lock, flags);
  1167. } while (time_before(jiffies, wait_switch));
  1168. spin_unlock_irqrestore(hostdata->host->host_lock, flags);
  1169. if (rsp_rc != 0) {
  1170. sdev_printk(KERN_ERR, cmd->device,
  1171. "failed to send reset event. rc=%d\n", rsp_rc);
  1172. return FAILED;
  1173. }
  1174. sdev_printk(KERN_INFO, cmd->device, "resetting device. lun 0x%llx\n",
  1175. (((u64) lun) << 48));
  1176. wait_for_completion(&evt->comp);
  1177. /* make sure we got a good response */
  1178. if (unlikely(srp_rsp.srp.rsp.opcode != SRP_RSP)) {
  1179. if (printk_ratelimit())
  1180. sdev_printk(KERN_WARNING, cmd->device, "reset bad SRP RSP type %d\n",
  1181. srp_rsp.srp.rsp.opcode);
  1182. return FAILED;
  1183. }
  1184. if (srp_rsp.srp.rsp.flags & SRP_RSP_FLAG_RSPVALID)
  1185. rsp_rc = *((int *)srp_rsp.srp.rsp.data);
  1186. else
  1187. rsp_rc = srp_rsp.srp.rsp.status;
  1188. if (rsp_rc) {
  1189. if (printk_ratelimit())
  1190. sdev_printk(KERN_WARNING, cmd->device,
  1191. "reset code %d for task tag 0x%llx\n",
  1192. rsp_rc, tsk_mgmt->task_tag);
  1193. return FAILED;
  1194. }
  1195. /* We need to find all commands for this LUN that have not yet been
  1196. * responded to, and fail them with DID_RESET
  1197. */
  1198. spin_lock_irqsave(hostdata->host->host_lock, flags);
  1199. list_for_each_entry_safe(tmp_evt, pos, &hostdata->sent, list) {
  1200. if ((tmp_evt->cmnd) && (tmp_evt->cmnd->device == cmd->device)) {
  1201. if (tmp_evt->cmnd)
  1202. tmp_evt->cmnd->result = (DID_RESET << 16);
  1203. list_del(&tmp_evt->list);
  1204. unmap_cmd_data(&tmp_evt->iu.srp.cmd, tmp_evt,
  1205. tmp_evt->hostdata->dev);
  1206. free_event_struct(&tmp_evt->hostdata->pool,
  1207. tmp_evt);
  1208. atomic_inc(&hostdata->request_limit);
  1209. if (tmp_evt->cmnd_done)
  1210. tmp_evt->cmnd_done(tmp_evt->cmnd);
  1211. else if (tmp_evt->done)
  1212. tmp_evt->done(tmp_evt);
  1213. }
  1214. }
  1215. spin_unlock_irqrestore(hostdata->host->host_lock, flags);
  1216. return SUCCESS;
  1217. }
  1218. /**
  1219. * ibmvscsi_eh_host_reset_handler - Reset the connection to the server
  1220. * @cmd: struct scsi_cmnd having problems
  1221. */
  1222. static int ibmvscsi_eh_host_reset_handler(struct scsi_cmnd *cmd)
  1223. {
  1224. unsigned long wait_switch = 0;
  1225. struct ibmvscsi_host_data *hostdata = shost_priv(cmd->device->host);
  1226. dev_err(hostdata->dev, "Resetting connection due to error recovery\n");
  1227. ibmvscsi_reset_host(hostdata);
  1228. for (wait_switch = jiffies + (init_timeout * HZ);
  1229. time_before(jiffies, wait_switch) &&
  1230. atomic_read(&hostdata->request_limit) < 2;) {
  1231. msleep(10);
  1232. }
  1233. if (atomic_read(&hostdata->request_limit) <= 0)
  1234. return FAILED;
  1235. return SUCCESS;
  1236. }
  1237. /**
  1238. * ibmvscsi_handle_crq: - Handles and frees received events in the CRQ
  1239. * @crq: Command/Response queue
  1240. * @hostdata: ibmvscsi_host_data of host
  1241. *
  1242. */
  1243. void ibmvscsi_handle_crq(struct viosrp_crq *crq,
  1244. struct ibmvscsi_host_data *hostdata)
  1245. {
  1246. long rc;
  1247. unsigned long flags;
  1248. struct srp_event_struct *evt_struct =
  1249. (struct srp_event_struct *)crq->IU_data_ptr;
  1250. switch (crq->valid) {
  1251. case 0xC0: /* initialization */
  1252. switch (crq->format) {
  1253. case 0x01: /* Initialization message */
  1254. dev_info(hostdata->dev, "partner initialized\n");
  1255. /* Send back a response */
  1256. if ((rc = ibmvscsi_ops->send_crq(hostdata,
  1257. 0xC002000000000000LL, 0)) == 0) {
  1258. /* Now login */
  1259. init_adapter(hostdata);
  1260. } else {
  1261. dev_err(hostdata->dev, "Unable to send init rsp. rc=%ld\n", rc);
  1262. }
  1263. break;
  1264. case 0x02: /* Initialization response */
  1265. dev_info(hostdata->dev, "partner initialization complete\n");
  1266. /* Now login */
  1267. init_adapter(hostdata);
  1268. break;
  1269. default:
  1270. dev_err(hostdata->dev, "unknown crq message type: %d\n", crq->format);
  1271. }
  1272. return;
  1273. case 0xFF: /* Hypervisor telling us the connection is closed */
  1274. scsi_block_requests(hostdata->host);
  1275. atomic_set(&hostdata->request_limit, 0);
  1276. if (crq->format == 0x06) {
  1277. /* We need to re-setup the interpartition connection */
  1278. dev_info(hostdata->dev, "Re-enabling adapter!\n");
  1279. hostdata->client_migrated = 1;
  1280. hostdata->reenable_crq = 1;
  1281. purge_requests(hostdata, DID_REQUEUE);
  1282. wake_up(&hostdata->work_wait_q);
  1283. } else {
  1284. dev_err(hostdata->dev, "Virtual adapter failed rc %d!\n",
  1285. crq->format);
  1286. ibmvscsi_reset_host(hostdata);
  1287. }
  1288. return;
  1289. case 0x80: /* real payload */
  1290. break;
  1291. default:
  1292. dev_err(hostdata->dev, "got an invalid message type 0x%02x\n",
  1293. crq->valid);
  1294. return;
  1295. }
  1296. /* The only kind of payload CRQs we should get are responses to
  1297. * things we send. Make sure this response is to something we
  1298. * actually sent
  1299. */
  1300. if (!valid_event_struct(&hostdata->pool, evt_struct)) {
  1301. dev_err(hostdata->dev, "returned correlation_token 0x%p is invalid!\n",
  1302. (void *)crq->IU_data_ptr);
  1303. return;
  1304. }
  1305. if (atomic_read(&evt_struct->free)) {
  1306. dev_err(hostdata->dev, "received duplicate correlation_token 0x%p!\n",
  1307. (void *)crq->IU_data_ptr);
  1308. return;
  1309. }
  1310. if (crq->format == VIOSRP_SRP_FORMAT)
  1311. atomic_add(evt_struct->xfer_iu->srp.rsp.req_lim_delta,
  1312. &hostdata->request_limit);
  1313. del_timer(&evt_struct->timer);
  1314. if ((crq->status != VIOSRP_OK && crq->status != VIOSRP_OK2) && evt_struct->cmnd)
  1315. evt_struct->cmnd->result = DID_ERROR << 16;
  1316. if (evt_struct->done)
  1317. evt_struct->done(evt_struct);
  1318. else
  1319. dev_err(hostdata->dev, "returned done() is NULL; not running it!\n");
  1320. /*
  1321. * Lock the host_lock before messing with these structures, since we
  1322. * are running in a task context
  1323. */
  1324. spin_lock_irqsave(evt_struct->hostdata->host->host_lock, flags);
  1325. list_del(&evt_struct->list);
  1326. free_event_struct(&evt_struct->hostdata->pool, evt_struct);
  1327. spin_unlock_irqrestore(evt_struct->hostdata->host->host_lock, flags);
  1328. }
  1329. /**
  1330. * ibmvscsi_get_host_config: Send the command to the server to get host
  1331. * configuration data. The data is opaque to us.
  1332. */
  1333. static int ibmvscsi_do_host_config(struct ibmvscsi_host_data *hostdata,
  1334. unsigned char *buffer, int length)
  1335. {
  1336. struct viosrp_host_config *host_config;
  1337. struct srp_event_struct *evt_struct;
  1338. unsigned long flags;
  1339. dma_addr_t addr;
  1340. int rc;
  1341. evt_struct = get_event_struct(&hostdata->pool);
  1342. if (!evt_struct) {
  1343. dev_err(hostdata->dev, "couldn't allocate event for HOST_CONFIG!\n");
  1344. return -1;
  1345. }
  1346. init_event_struct(evt_struct,
  1347. sync_completion,
  1348. VIOSRP_MAD_FORMAT,
  1349. info_timeout);
  1350. host_config = &evt_struct->iu.mad.host_config;
  1351. /* Set up a lun reset SRP command */
  1352. memset(host_config, 0x00, sizeof(*host_config));
  1353. host_config->common.type = VIOSRP_HOST_CONFIG_TYPE;
  1354. host_config->common.length = length;
  1355. host_config->buffer = addr = dma_map_single(hostdata->dev, buffer,
  1356. length,
  1357. DMA_BIDIRECTIONAL);
  1358. if (dma_mapping_error(hostdata->dev, host_config->buffer)) {
  1359. if (!firmware_has_feature(FW_FEATURE_CMO))
  1360. dev_err(hostdata->dev,
  1361. "dma_mapping error getting host config\n");
  1362. free_event_struct(&hostdata->pool, evt_struct);
  1363. return -1;
  1364. }
  1365. init_completion(&evt_struct->comp);
  1366. spin_lock_irqsave(hostdata->host->host_lock, flags);
  1367. rc = ibmvscsi_send_srp_event(evt_struct, hostdata, info_timeout * 2);
  1368. spin_unlock_irqrestore(hostdata->host->host_lock, flags);
  1369. if (rc == 0)
  1370. wait_for_completion(&evt_struct->comp);
  1371. dma_unmap_single(hostdata->dev, addr, length, DMA_BIDIRECTIONAL);
  1372. return rc;
  1373. }
  1374. /**
  1375. * ibmvscsi_slave_configure: Set the "allow_restart" flag for each disk.
  1376. * @sdev: struct scsi_device device to configure
  1377. *
  1378. * Enable allow_restart for a device if it is a disk. Adjust the
  1379. * queue_depth here also as is required by the documentation for
  1380. * struct scsi_host_template.
  1381. */
  1382. static int ibmvscsi_slave_configure(struct scsi_device *sdev)
  1383. {
  1384. struct Scsi_Host *shost = sdev->host;
  1385. unsigned long lock_flags = 0;
  1386. spin_lock_irqsave(shost->host_lock, lock_flags);
  1387. if (sdev->type == TYPE_DISK) {
  1388. sdev->allow_restart = 1;
  1389. blk_queue_rq_timeout(sdev->request_queue, 120 * HZ);
  1390. }
  1391. scsi_adjust_queue_depth(sdev, 0, shost->cmd_per_lun);
  1392. spin_unlock_irqrestore(shost->host_lock, lock_flags);
  1393. return 0;
  1394. }
  1395. /**
  1396. * ibmvscsi_change_queue_depth - Change the device's queue depth
  1397. * @sdev: scsi device struct
  1398. * @qdepth: depth to set
  1399. * @reason: calling context
  1400. *
  1401. * Return value:
  1402. * actual depth set
  1403. **/
  1404. static int ibmvscsi_change_queue_depth(struct scsi_device *sdev, int qdepth,
  1405. int reason)
  1406. {
  1407. if (reason != SCSI_QDEPTH_DEFAULT)
  1408. return -EOPNOTSUPP;
  1409. if (qdepth > IBMVSCSI_MAX_CMDS_PER_LUN)
  1410. qdepth = IBMVSCSI_MAX_CMDS_PER_LUN;
  1411. scsi_adjust_queue_depth(sdev, 0, qdepth);
  1412. return sdev->queue_depth;
  1413. }
  1414. /* ------------------------------------------------------------
  1415. * sysfs attributes
  1416. */
  1417. static ssize_t show_host_vhost_loc(struct device *dev,
  1418. struct device_attribute *attr, char *buf)
  1419. {
  1420. struct Scsi_Host *shost = class_to_shost(dev);
  1421. struct ibmvscsi_host_data *hostdata = shost_priv(shost);
  1422. int len;
  1423. len = snprintf(buf, sizeof(hostdata->caps.loc), "%s\n",
  1424. hostdata->caps.loc);
  1425. return len;
  1426. }
  1427. static struct device_attribute ibmvscsi_host_vhost_loc = {
  1428. .attr = {
  1429. .name = "vhost_loc",
  1430. .mode = S_IRUGO,
  1431. },
  1432. .show = show_host_vhost_loc,
  1433. };
  1434. static ssize_t show_host_vhost_name(struct device *dev,
  1435. struct device_attribute *attr, char *buf)
  1436. {
  1437. struct Scsi_Host *shost = class_to_shost(dev);
  1438. struct ibmvscsi_host_data *hostdata = shost_priv(shost);
  1439. int len;
  1440. len = snprintf(buf, sizeof(hostdata->caps.name), "%s\n",
  1441. hostdata->caps.name);
  1442. return len;
  1443. }
  1444. static struct device_attribute ibmvscsi_host_vhost_name = {
  1445. .attr = {
  1446. .name = "vhost_name",
  1447. .mode = S_IRUGO,
  1448. },
  1449. .show = show_host_vhost_name,
  1450. };
  1451. static ssize_t show_host_srp_version(struct device *dev,
  1452. struct device_attribute *attr, char *buf)
  1453. {
  1454. struct Scsi_Host *shost = class_to_shost(dev);
  1455. struct ibmvscsi_host_data *hostdata = shost_priv(shost);
  1456. int len;
  1457. len = snprintf(buf, PAGE_SIZE, "%s\n",
  1458. hostdata->madapter_info.srp_version);
  1459. return len;
  1460. }
  1461. static struct device_attribute ibmvscsi_host_srp_version = {
  1462. .attr = {
  1463. .name = "srp_version",
  1464. .mode = S_IRUGO,
  1465. },
  1466. .show = show_host_srp_version,
  1467. };
  1468. static ssize_t show_host_partition_name(struct device *dev,
  1469. struct device_attribute *attr,
  1470. char *buf)
  1471. {
  1472. struct Scsi_Host *shost = class_to_shost(dev);
  1473. struct ibmvscsi_host_data *hostdata = shost_priv(shost);
  1474. int len;
  1475. len = snprintf(buf, PAGE_SIZE, "%s\n",
  1476. hostdata->madapter_info.partition_name);
  1477. return len;
  1478. }
  1479. static struct device_attribute ibmvscsi_host_partition_name = {
  1480. .attr = {
  1481. .name = "partition_name",
  1482. .mode = S_IRUGO,
  1483. },
  1484. .show = show_host_partition_name,
  1485. };
  1486. static ssize_t show_host_partition_number(struct device *dev,
  1487. struct device_attribute *attr,
  1488. char *buf)
  1489. {
  1490. struct Scsi_Host *shost = class_to_shost(dev);
  1491. struct ibmvscsi_host_data *hostdata = shost_priv(shost);
  1492. int len;
  1493. len = snprintf(buf, PAGE_SIZE, "%d\n",
  1494. hostdata->madapter_info.partition_number);
  1495. return len;
  1496. }
  1497. static struct device_attribute ibmvscsi_host_partition_number = {
  1498. .attr = {
  1499. .name = "partition_number",
  1500. .mode = S_IRUGO,
  1501. },
  1502. .show = show_host_partition_number,
  1503. };
  1504. static ssize_t show_host_mad_version(struct device *dev,
  1505. struct device_attribute *attr, char *buf)
  1506. {
  1507. struct Scsi_Host *shost = class_to_shost(dev);
  1508. struct ibmvscsi_host_data *hostdata = shost_priv(shost);
  1509. int len;
  1510. len = snprintf(buf, PAGE_SIZE, "%d\n",
  1511. hostdata->madapter_info.mad_version);
  1512. return len;
  1513. }
  1514. static struct device_attribute ibmvscsi_host_mad_version = {
  1515. .attr = {
  1516. .name = "mad_version",
  1517. .mode = S_IRUGO,
  1518. },
  1519. .show = show_host_mad_version,
  1520. };
  1521. static ssize_t show_host_os_type(struct device *dev,
  1522. struct device_attribute *attr, char *buf)
  1523. {
  1524. struct Scsi_Host *shost = class_to_shost(dev);
  1525. struct ibmvscsi_host_data *hostdata = shost_priv(shost);
  1526. int len;
  1527. len = snprintf(buf, PAGE_SIZE, "%d\n", hostdata->madapter_info.os_type);
  1528. return len;
  1529. }
  1530. static struct device_attribute ibmvscsi_host_os_type = {
  1531. .attr = {
  1532. .name = "os_type",
  1533. .mode = S_IRUGO,
  1534. },
  1535. .show = show_host_os_type,
  1536. };
  1537. static ssize_t show_host_config(struct device *dev,
  1538. struct device_attribute *attr, char *buf)
  1539. {
  1540. struct Scsi_Host *shost = class_to_shost(dev);
  1541. struct ibmvscsi_host_data *hostdata = shost_priv(shost);
  1542. /* returns null-terminated host config data */
  1543. if (ibmvscsi_do_host_config(hostdata, buf, PAGE_SIZE) == 0)
  1544. return strlen(buf);
  1545. else
  1546. return 0;
  1547. }
  1548. static struct device_attribute ibmvscsi_host_config = {
  1549. .attr = {
  1550. .name = "config",
  1551. .mode = S_IRUGO,
  1552. },
  1553. .show = show_host_config,
  1554. };
  1555. static struct device_attribute *ibmvscsi_attrs[] = {
  1556. &ibmvscsi_host_vhost_loc,
  1557. &ibmvscsi_host_vhost_name,
  1558. &ibmvscsi_host_srp_version,
  1559. &ibmvscsi_host_partition_name,
  1560. &ibmvscsi_host_partition_number,
  1561. &ibmvscsi_host_mad_version,
  1562. &ibmvscsi_host_os_type,
  1563. &ibmvscsi_host_config,
  1564. NULL
  1565. };
  1566. /* ------------------------------------------------------------
  1567. * SCSI driver registration
  1568. */
  1569. static struct scsi_host_template driver_template = {
  1570. .module = THIS_MODULE,
  1571. .name = "IBM POWER Virtual SCSI Adapter " IBMVSCSI_VERSION,
  1572. .proc_name = "ibmvscsi",
  1573. .queuecommand = ibmvscsi_queuecommand,
  1574. .eh_abort_handler = ibmvscsi_eh_abort_handler,
  1575. .eh_device_reset_handler = ibmvscsi_eh_device_reset_handler,
  1576. .eh_host_reset_handler = ibmvscsi_eh_host_reset_handler,
  1577. .slave_configure = ibmvscsi_slave_configure,
  1578. .change_queue_depth = ibmvscsi_change_queue_depth,
  1579. .cmd_per_lun = IBMVSCSI_CMDS_PER_LUN_DEFAULT,
  1580. .can_queue = IBMVSCSI_MAX_REQUESTS_DEFAULT,
  1581. .this_id = -1,
  1582. .sg_tablesize = SG_ALL,
  1583. .use_clustering = ENABLE_CLUSTERING,
  1584. .shost_attrs = ibmvscsi_attrs,
  1585. };
  1586. /**
  1587. * ibmvscsi_get_desired_dma - Calculate IO memory desired by the driver
  1588. *
  1589. * @vdev: struct vio_dev for the device whose desired IO mem is to be returned
  1590. *
  1591. * Return value:
  1592. * Number of bytes of IO data the driver will need to perform well.
  1593. */
  1594. static unsigned long ibmvscsi_get_desired_dma(struct vio_dev *vdev)
  1595. {
  1596. /* iu_storage data allocated in initialize_event_pool */
  1597. unsigned long desired_io = max_events * sizeof(union viosrp_iu);
  1598. /* add io space for sg data */
  1599. desired_io += (IBMVSCSI_MAX_SECTORS_DEFAULT * 512 *
  1600. IBMVSCSI_CMDS_PER_LUN_DEFAULT);
  1601. return desired_io;
  1602. }
  1603. static void ibmvscsi_do_work(struct ibmvscsi_host_data *hostdata)
  1604. {
  1605. int rc;
  1606. char *action = "reset";
  1607. if (hostdata->reset_crq) {
  1608. smp_rmb();
  1609. hostdata->reset_crq = 0;
  1610. rc = ibmvscsi_ops->reset_crq_queue(&hostdata->queue, hostdata);
  1611. if (!rc)
  1612. rc = ibmvscsi_ops->send_crq(hostdata, 0xC001000000000000LL, 0);
  1613. if (!rc)
  1614. rc = vio_enable_interrupts(to_vio_dev(hostdata->dev));
  1615. } else if (hostdata->reenable_crq) {
  1616. smp_rmb();
  1617. action = "enable";
  1618. rc = ibmvscsi_ops->reenable_crq_queue(&hostdata->queue, hostdata);
  1619. hostdata->reenable_crq = 0;
  1620. if (!rc)
  1621. rc = ibmvscsi_ops->send_crq(hostdata, 0xC001000000000000LL, 0);
  1622. } else
  1623. return;
  1624. if (rc) {
  1625. atomic_set(&hostdata->request_limit, -1);
  1626. dev_err(hostdata->dev, "error after %s\n", action);
  1627. }
  1628. scsi_unblock_requests(hostdata->host);
  1629. }
  1630. static int ibmvscsi_work_to_do(struct ibmvscsi_host_data *hostdata)
  1631. {
  1632. if (kthread_should_stop())
  1633. return 1;
  1634. else if (hostdata->reset_crq) {
  1635. smp_rmb();
  1636. return 1;
  1637. } else if (hostdata->reenable_crq) {
  1638. smp_rmb();
  1639. return 1;
  1640. }
  1641. return 0;
  1642. }
  1643. static int ibmvscsi_work(void *data)
  1644. {
  1645. struct ibmvscsi_host_data *hostdata = data;
  1646. int rc;
  1647. set_user_nice(current, -20);
  1648. while (1) {
  1649. rc = wait_event_interruptible(hostdata->work_wait_q,
  1650. ibmvscsi_work_to_do(hostdata));
  1651. BUG_ON(rc);
  1652. if (kthread_should_stop())
  1653. break;
  1654. ibmvscsi_do_work(hostdata);
  1655. }
  1656. return 0;
  1657. }
  1658. /**
  1659. * Called by bus code for each adapter
  1660. */
  1661. static int ibmvscsi_probe(struct vio_dev *vdev, const struct vio_device_id *id)
  1662. {
  1663. struct ibmvscsi_host_data *hostdata;
  1664. struct Scsi_Host *host;
  1665. struct device *dev = &vdev->dev;
  1666. struct srp_rport_identifiers ids;
  1667. struct srp_rport *rport;
  1668. unsigned long wait_switch = 0;
  1669. int rc;
  1670. dev_set_drvdata(&vdev->dev, NULL);
  1671. host = scsi_host_alloc(&driver_template, sizeof(*hostdata));
  1672. if (!host) {
  1673. dev_err(&vdev->dev, "couldn't allocate host data\n");
  1674. goto scsi_host_alloc_failed;
  1675. }
  1676. host->transportt = ibmvscsi_transport_template;
  1677. hostdata = shost_priv(host);
  1678. memset(hostdata, 0x00, sizeof(*hostdata));
  1679. INIT_LIST_HEAD(&hostdata->sent);
  1680. init_waitqueue_head(&hostdata->work_wait_q);
  1681. hostdata->host = host;
  1682. hostdata->dev = dev;
  1683. atomic_set(&hostdata->request_limit, -1);
  1684. hostdata->host->max_sectors = IBMVSCSI_MAX_SECTORS_DEFAULT;
  1685. if (map_persist_bufs(hostdata)) {
  1686. dev_err(&vdev->dev, "couldn't map persistent buffers\n");
  1687. goto persist_bufs_failed;
  1688. }
  1689. hostdata->work_thread = kthread_run(ibmvscsi_work, hostdata, "%s_%d",
  1690. "ibmvscsi", host->host_no);
  1691. if (IS_ERR(hostdata->work_thread)) {
  1692. dev_err(&vdev->dev, "couldn't initialize kthread. rc=%ld\n",
  1693. PTR_ERR(hostdata->work_thread));
  1694. goto init_crq_failed;
  1695. }
  1696. rc = ibmvscsi_ops->init_crq_queue(&hostdata->queue, hostdata, max_events);
  1697. if (rc != 0 && rc != H_RESOURCE) {
  1698. dev_err(&vdev->dev, "couldn't initialize crq. rc=%d\n", rc);
  1699. goto kill_kthread;
  1700. }
  1701. if (initialize_event_pool(&hostdata->pool, max_events, hostdata) != 0) {
  1702. dev_err(&vdev->dev, "couldn't initialize event pool\n");
  1703. goto init_pool_failed;
  1704. }
  1705. host->max_lun = 8;
  1706. host->max_id = max_id;
  1707. host->max_channel = max_channel;
  1708. host->max_cmd_len = 16;
  1709. if (scsi_add_host(hostdata->host, hostdata->dev))
  1710. goto add_host_failed;
  1711. /* we don't have a proper target_port_id so let's use the fake one */
  1712. memcpy(ids.port_id, hostdata->madapter_info.partition_name,
  1713. sizeof(ids.port_id));
  1714. ids.roles = SRP_RPORT_ROLE_TARGET;
  1715. rport = srp_rport_add(host, &ids);
  1716. if (IS_ERR(rport))
  1717. goto add_srp_port_failed;
  1718. /* Try to send an initialization message. Note that this is allowed
  1719. * to fail if the other end is not acive. In that case we don't
  1720. * want to scan
  1721. */
  1722. if (ibmvscsi_ops->send_crq(hostdata, 0xC001000000000000LL, 0) == 0
  1723. || rc == H_RESOURCE) {
  1724. /*
  1725. * Wait around max init_timeout secs for the adapter to finish
  1726. * initializing. When we are done initializing, we will have a
  1727. * valid request_limit. We don't want Linux scanning before
  1728. * we are ready.
  1729. */
  1730. for (wait_switch = jiffies + (init_timeout * HZ);
  1731. time_before(jiffies, wait_switch) &&
  1732. atomic_read(&hostdata->request_limit) < 2;) {
  1733. msleep(10);
  1734. }
  1735. /* if we now have a valid request_limit, initiate a scan */
  1736. if (atomic_read(&hostdata->request_limit) > 0)
  1737. scsi_scan_host(host);
  1738. }
  1739. dev_set_drvdata(&vdev->dev, hostdata);
  1740. return 0;
  1741. add_srp_port_failed:
  1742. scsi_remove_host(hostdata->host);
  1743. add_host_failed:
  1744. release_event_pool(&hostdata->pool, hostdata);
  1745. init_pool_failed:
  1746. ibmvscsi_ops->release_crq_queue(&hostdata->queue, hostdata, max_events);
  1747. kill_kthread:
  1748. kthread_stop(hostdata->work_thread);
  1749. init_crq_failed:
  1750. unmap_persist_bufs(hostdata);
  1751. persist_bufs_failed:
  1752. scsi_host_put(host);
  1753. scsi_host_alloc_failed:
  1754. return -1;
  1755. }
  1756. static int ibmvscsi_remove(struct vio_dev *vdev)
  1757. {
  1758. struct ibmvscsi_host_data *hostdata = dev_get_drvdata(&vdev->dev);
  1759. unmap_persist_bufs(hostdata);
  1760. release_event_pool(&hostdata->pool, hostdata);
  1761. ibmvscsi_ops->release_crq_queue(&hostdata->queue, hostdata,
  1762. max_events);
  1763. kthread_stop(hostdata->work_thread);
  1764. srp_remove_host(hostdata->host);
  1765. scsi_remove_host(hostdata->host);
  1766. scsi_host_put(hostdata->host);
  1767. return 0;
  1768. }
  1769. /**
  1770. * ibmvscsi_resume: Resume from suspend
  1771. * @dev: device struct
  1772. *
  1773. * We may have lost an interrupt across suspend/resume, so kick the
  1774. * interrupt handler
  1775. */
  1776. static int ibmvscsi_resume(struct device *dev)
  1777. {
  1778. struct ibmvscsi_host_data *hostdata = dev_get_drvdata(dev);
  1779. return ibmvscsi_ops->resume(hostdata);
  1780. }
  1781. /**
  1782. * ibmvscsi_device_table: Used by vio.c to match devices in the device tree we
  1783. * support.
  1784. */
  1785. static struct vio_device_id ibmvscsi_device_table[] __devinitdata = {
  1786. {"vscsi", "IBM,v-scsi"},
  1787. { "", "" }
  1788. };
  1789. MODULE_DEVICE_TABLE(vio, ibmvscsi_device_table);
  1790. static struct dev_pm_ops ibmvscsi_pm_ops = {
  1791. .resume = ibmvscsi_resume
  1792. };
  1793. static struct vio_driver ibmvscsi_driver = {
  1794. .id_table = ibmvscsi_device_table,
  1795. .probe = ibmvscsi_probe,
  1796. .remove = ibmvscsi_remove,
  1797. .get_desired_dma = ibmvscsi_get_desired_dma,
  1798. .driver = {
  1799. .name = "ibmvscsi",
  1800. .owner = THIS_MODULE,
  1801. .pm = &ibmvscsi_pm_ops,
  1802. }
  1803. };
  1804. static struct srp_function_template ibmvscsi_transport_functions = {
  1805. };
  1806. int __init ibmvscsi_module_init(void)
  1807. {
  1808. int ret;
  1809. /* Ensure we have two requests to do error recovery */
  1810. driver_template.can_queue = max_requests;
  1811. max_events = max_requests + 2;
  1812. if (firmware_has_feature(FW_FEATURE_ISERIES))
  1813. ibmvscsi_ops = &iseriesvscsi_ops;
  1814. else if (firmware_has_feature(FW_FEATURE_VIO))
  1815. ibmvscsi_ops = &rpavscsi_ops;
  1816. else
  1817. return -ENODEV;
  1818. ibmvscsi_transport_template =
  1819. srp_attach_transport(&ibmvscsi_transport_functions);
  1820. if (!ibmvscsi_transport_template)
  1821. return -ENOMEM;
  1822. ret = vio_register_driver(&ibmvscsi_driver);
  1823. if (ret)
  1824. srp_release_transport(ibmvscsi_transport_template);
  1825. return ret;
  1826. }
  1827. void __exit ibmvscsi_module_exit(void)
  1828. {
  1829. vio_unregister_driver(&ibmvscsi_driver);
  1830. srp_release_transport(ibmvscsi_transport_template);
  1831. }
  1832. module_init(ibmvscsi_module_init);
  1833. module_exit(ibmvscsi_module_exit);