core.c 67 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793
  1. /*
  2. * linux/drivers/mmc/core/core.c
  3. *
  4. * Copyright (C) 2003-2004 Russell King, All Rights Reserved.
  5. * SD support Copyright (C) 2004 Ian Molton, All Rights Reserved.
  6. * Copyright (C) 2005-2008 Pierre Ossman, All Rights Reserved.
  7. * MMCv4 support Copyright (C) 2006 Philip Langdale, All Rights Reserved.
  8. *
  9. * This program is free software; you can redistribute it and/or modify
  10. * it under the terms of the GNU General Public License version 2 as
  11. * published by the Free Software Foundation.
  12. */
  13. #include <linux/module.h>
  14. #include <linux/init.h>
  15. #include <linux/interrupt.h>
  16. #include <linux/completion.h>
  17. #include <linux/device.h>
  18. #include <linux/delay.h>
  19. #include <linux/pagemap.h>
  20. #include <linux/err.h>
  21. #include <linux/leds.h>
  22. #include <linux/scatterlist.h>
  23. #include <linux/log2.h>
  24. #include <linux/regulator/consumer.h>
  25. #include <linux/pm_runtime.h>
  26. #include <linux/pm_wakeup.h>
  27. #include <linux/suspend.h>
  28. #include <linux/fault-inject.h>
  29. #include <linux/random.h>
  30. #include <linux/slab.h>
  31. #include <linux/of.h>
  32. #include <linux/mmc/card.h>
  33. #include <linux/mmc/host.h>
  34. #include <linux/mmc/mmc.h>
  35. #include <linux/mmc/sd.h>
  36. #include <linux/mmc/slot-gpio.h>
  37. #include "core.h"
  38. #include "bus.h"
  39. #include "host.h"
  40. #include "sdio_bus.h"
  41. #include "pwrseq.h"
  42. #include "mmc_ops.h"
  43. #include "sd_ops.h"
  44. #include "sdio_ops.h"
  45. /* If the device is not responding */
  46. #define MMC_CORE_TIMEOUT_MS (10 * 60 * 1000) /* 10 minute timeout */
  47. /*
  48. * Background operations can take a long time, depending on the housekeeping
  49. * operations the card has to perform.
  50. */
  51. #define MMC_BKOPS_MAX_TIMEOUT (4 * 60 * 1000) /* max time to wait in ms */
  52. static struct workqueue_struct *workqueue;
  53. static const unsigned freqs[] = { 400000, 300000, 200000, 100000 };
  54. /*
  55. * Enabling software CRCs on the data blocks can be a significant (30%)
  56. * performance cost, and for other reasons may not always be desired.
  57. * So we allow it it to be disabled.
  58. */
  59. bool use_spi_crc = 1;
  60. module_param(use_spi_crc, bool, 0);
  61. /*
  62. * Internal function. Schedule delayed work in the MMC work queue.
  63. */
  64. static int mmc_schedule_delayed_work(struct delayed_work *work,
  65. unsigned long delay)
  66. {
  67. return queue_delayed_work(workqueue, work, delay);
  68. }
  69. /*
  70. * Internal function. Flush all scheduled work from the MMC work queue.
  71. */
  72. static void mmc_flush_scheduled_work(void)
  73. {
  74. flush_workqueue(workqueue);
  75. }
  76. #ifdef CONFIG_FAIL_MMC_REQUEST
  77. /*
  78. * Internal function. Inject random data errors.
  79. * If mmc_data is NULL no errors are injected.
  80. */
  81. static void mmc_should_fail_request(struct mmc_host *host,
  82. struct mmc_request *mrq)
  83. {
  84. struct mmc_command *cmd = mrq->cmd;
  85. struct mmc_data *data = mrq->data;
  86. static const int data_errors[] = {
  87. -ETIMEDOUT,
  88. -EILSEQ,
  89. -EIO,
  90. };
  91. if (!data)
  92. return;
  93. if (cmd->error || data->error ||
  94. !should_fail(&host->fail_mmc_request, data->blksz * data->blocks))
  95. return;
  96. data->error = data_errors[prandom_u32() % ARRAY_SIZE(data_errors)];
  97. data->bytes_xfered = (prandom_u32() % (data->bytes_xfered >> 9)) << 9;
  98. }
  99. #else /* CONFIG_FAIL_MMC_REQUEST */
  100. static inline void mmc_should_fail_request(struct mmc_host *host,
  101. struct mmc_request *mrq)
  102. {
  103. }
  104. #endif /* CONFIG_FAIL_MMC_REQUEST */
  105. /**
  106. * mmc_request_done - finish processing an MMC request
  107. * @host: MMC host which completed request
  108. * @mrq: MMC request which request
  109. *
  110. * MMC drivers should call this function when they have completed
  111. * their processing of a request.
  112. */
  113. void mmc_request_done(struct mmc_host *host, struct mmc_request *mrq)
  114. {
  115. struct mmc_command *cmd = mrq->cmd;
  116. int err = cmd->error;
  117. /* Flag re-tuning needed on CRC errors */
  118. if (err == -EILSEQ || (mrq->sbc && mrq->sbc->error == -EILSEQ) ||
  119. (mrq->data && mrq->data->error == -EILSEQ) ||
  120. (mrq->stop && mrq->stop->error == -EILSEQ))
  121. mmc_retune_needed(host);
  122. if (err && cmd->retries && mmc_host_is_spi(host)) {
  123. if (cmd->resp[0] & R1_SPI_ILLEGAL_COMMAND)
  124. cmd->retries = 0;
  125. }
  126. if (err && cmd->retries && !mmc_card_removed(host->card)) {
  127. /*
  128. * Request starter must handle retries - see
  129. * mmc_wait_for_req_done().
  130. */
  131. if (mrq->done)
  132. mrq->done(mrq);
  133. } else {
  134. mmc_should_fail_request(host, mrq);
  135. led_trigger_event(host->led, LED_OFF);
  136. if (mrq->sbc) {
  137. pr_debug("%s: req done <CMD%u>: %d: %08x %08x %08x %08x\n",
  138. mmc_hostname(host), mrq->sbc->opcode,
  139. mrq->sbc->error,
  140. mrq->sbc->resp[0], mrq->sbc->resp[1],
  141. mrq->sbc->resp[2], mrq->sbc->resp[3]);
  142. }
  143. pr_debug("%s: req done (CMD%u): %d: %08x %08x %08x %08x\n",
  144. mmc_hostname(host), cmd->opcode, err,
  145. cmd->resp[0], cmd->resp[1],
  146. cmd->resp[2], cmd->resp[3]);
  147. if (mrq->data) {
  148. pr_debug("%s: %d bytes transferred: %d\n",
  149. mmc_hostname(host),
  150. mrq->data->bytes_xfered, mrq->data->error);
  151. }
  152. if (mrq->stop) {
  153. pr_debug("%s: (CMD%u): %d: %08x %08x %08x %08x\n",
  154. mmc_hostname(host), mrq->stop->opcode,
  155. mrq->stop->error,
  156. mrq->stop->resp[0], mrq->stop->resp[1],
  157. mrq->stop->resp[2], mrq->stop->resp[3]);
  158. }
  159. if (mrq->done)
  160. mrq->done(mrq);
  161. mmc_host_clk_release(host);
  162. }
  163. }
  164. EXPORT_SYMBOL(mmc_request_done);
  165. static void __mmc_start_request(struct mmc_host *host, struct mmc_request *mrq)
  166. {
  167. int err;
  168. /* Assumes host controller has been runtime resumed by mmc_claim_host */
  169. err = mmc_retune(host);
  170. if (err) {
  171. mrq->cmd->error = err;
  172. mmc_request_done(host, mrq);
  173. return;
  174. }
  175. host->ops->request(host, mrq);
  176. }
  177. static int mmc_start_request(struct mmc_host *host, struct mmc_request *mrq)
  178. {
  179. #ifdef CONFIG_MMC_DEBUG
  180. unsigned int i, sz;
  181. struct scatterlist *sg;
  182. #endif
  183. mmc_retune_hold(host);
  184. if (mmc_card_removed(host->card))
  185. return -ENOMEDIUM;
  186. if (mrq->sbc) {
  187. pr_debug("<%s: starting CMD%u arg %08x flags %08x>\n",
  188. mmc_hostname(host), mrq->sbc->opcode,
  189. mrq->sbc->arg, mrq->sbc->flags);
  190. }
  191. pr_debug("%s: starting CMD%u arg %08x flags %08x\n",
  192. mmc_hostname(host), mrq->cmd->opcode,
  193. mrq->cmd->arg, mrq->cmd->flags);
  194. if (mrq->data) {
  195. pr_debug("%s: blksz %d blocks %d flags %08x "
  196. "tsac %d ms nsac %d\n",
  197. mmc_hostname(host), mrq->data->blksz,
  198. mrq->data->blocks, mrq->data->flags,
  199. mrq->data->timeout_ns / 1000000,
  200. mrq->data->timeout_clks);
  201. }
  202. if (mrq->stop) {
  203. pr_debug("%s: CMD%u arg %08x flags %08x\n",
  204. mmc_hostname(host), mrq->stop->opcode,
  205. mrq->stop->arg, mrq->stop->flags);
  206. }
  207. WARN_ON(!host->claimed);
  208. mrq->cmd->error = 0;
  209. mrq->cmd->mrq = mrq;
  210. if (mrq->sbc) {
  211. mrq->sbc->error = 0;
  212. mrq->sbc->mrq = mrq;
  213. }
  214. if (mrq->data) {
  215. BUG_ON(mrq->data->blksz > host->max_blk_size);
  216. BUG_ON(mrq->data->blocks > host->max_blk_count);
  217. BUG_ON(mrq->data->blocks * mrq->data->blksz >
  218. host->max_req_size);
  219. #ifdef CONFIG_MMC_DEBUG
  220. sz = 0;
  221. for_each_sg(mrq->data->sg, sg, mrq->data->sg_len, i)
  222. sz += sg->length;
  223. BUG_ON(sz != mrq->data->blocks * mrq->data->blksz);
  224. #endif
  225. mrq->cmd->data = mrq->data;
  226. mrq->data->error = 0;
  227. mrq->data->mrq = mrq;
  228. if (mrq->stop) {
  229. mrq->data->stop = mrq->stop;
  230. mrq->stop->error = 0;
  231. mrq->stop->mrq = mrq;
  232. }
  233. }
  234. mmc_host_clk_hold(host);
  235. led_trigger_event(host->led, LED_FULL);
  236. __mmc_start_request(host, mrq);
  237. return 0;
  238. }
  239. /**
  240. * mmc_start_bkops - start BKOPS for supported cards
  241. * @card: MMC card to start BKOPS
  242. * @form_exception: A flag to indicate if this function was
  243. * called due to an exception raised by the card
  244. *
  245. * Start background operations whenever requested.
  246. * When the urgent BKOPS bit is set in a R1 command response
  247. * then background operations should be started immediately.
  248. */
  249. void mmc_start_bkops(struct mmc_card *card, bool from_exception)
  250. {
  251. int err;
  252. int timeout;
  253. bool use_busy_signal;
  254. BUG_ON(!card);
  255. if (!card->ext_csd.man_bkops_en || mmc_card_doing_bkops(card))
  256. return;
  257. err = mmc_read_bkops_status(card);
  258. if (err) {
  259. pr_err("%s: Failed to read bkops status: %d\n",
  260. mmc_hostname(card->host), err);
  261. return;
  262. }
  263. if (!card->ext_csd.raw_bkops_status)
  264. return;
  265. if (card->ext_csd.raw_bkops_status < EXT_CSD_BKOPS_LEVEL_2 &&
  266. from_exception)
  267. return;
  268. mmc_claim_host(card->host);
  269. if (card->ext_csd.raw_bkops_status >= EXT_CSD_BKOPS_LEVEL_2) {
  270. timeout = MMC_BKOPS_MAX_TIMEOUT;
  271. use_busy_signal = true;
  272. } else {
  273. timeout = 0;
  274. use_busy_signal = false;
  275. }
  276. mmc_retune_hold(card->host);
  277. err = __mmc_switch(card, EXT_CSD_CMD_SET_NORMAL,
  278. EXT_CSD_BKOPS_START, 1, timeout,
  279. use_busy_signal, true, false);
  280. if (err) {
  281. pr_warn("%s: Error %d starting bkops\n",
  282. mmc_hostname(card->host), err);
  283. mmc_retune_release(card->host);
  284. goto out;
  285. }
  286. /*
  287. * For urgent bkops status (LEVEL_2 and more)
  288. * bkops executed synchronously, otherwise
  289. * the operation is in progress
  290. */
  291. if (!use_busy_signal)
  292. mmc_card_set_doing_bkops(card);
  293. else
  294. mmc_retune_release(card->host);
  295. out:
  296. mmc_release_host(card->host);
  297. }
  298. EXPORT_SYMBOL(mmc_start_bkops);
  299. /*
  300. * mmc_wait_data_done() - done callback for data request
  301. * @mrq: done data request
  302. *
  303. * Wakes up mmc context, passed as a callback to host controller driver
  304. */
  305. static void mmc_wait_data_done(struct mmc_request *mrq)
  306. {
  307. mrq->host->context_info.is_done_rcv = true;
  308. wake_up_interruptible(&mrq->host->context_info.wait);
  309. }
  310. static void mmc_wait_done(struct mmc_request *mrq)
  311. {
  312. complete(&mrq->completion);
  313. }
  314. /*
  315. *__mmc_start_data_req() - starts data request
  316. * @host: MMC host to start the request
  317. * @mrq: data request to start
  318. *
  319. * Sets the done callback to be called when request is completed by the card.
  320. * Starts data mmc request execution
  321. */
  322. static int __mmc_start_data_req(struct mmc_host *host, struct mmc_request *mrq)
  323. {
  324. int err;
  325. mrq->done = mmc_wait_data_done;
  326. mrq->host = host;
  327. err = mmc_start_request(host, mrq);
  328. if (err) {
  329. mrq->cmd->error = err;
  330. mmc_wait_data_done(mrq);
  331. }
  332. return err;
  333. }
  334. static int __mmc_start_req(struct mmc_host *host, struct mmc_request *mrq)
  335. {
  336. int err;
  337. init_completion(&mrq->completion);
  338. mrq->done = mmc_wait_done;
  339. err = mmc_start_request(host, mrq);
  340. if (err) {
  341. mrq->cmd->error = err;
  342. complete(&mrq->completion);
  343. }
  344. return err;
  345. }
  346. /*
  347. * mmc_wait_for_data_req_done() - wait for request completed
  348. * @host: MMC host to prepare the command.
  349. * @mrq: MMC request to wait for
  350. *
  351. * Blocks MMC context till host controller will ack end of data request
  352. * execution or new request notification arrives from the block layer.
  353. * Handles command retries.
  354. *
  355. * Returns enum mmc_blk_status after checking errors.
  356. */
  357. static int mmc_wait_for_data_req_done(struct mmc_host *host,
  358. struct mmc_request *mrq,
  359. struct mmc_async_req *next_req)
  360. {
  361. struct mmc_command *cmd;
  362. struct mmc_context_info *context_info = &host->context_info;
  363. int err;
  364. unsigned long flags;
  365. while (1) {
  366. wait_event_interruptible(context_info->wait,
  367. (context_info->is_done_rcv ||
  368. context_info->is_new_req));
  369. spin_lock_irqsave(&context_info->lock, flags);
  370. context_info->is_waiting_last_req = false;
  371. spin_unlock_irqrestore(&context_info->lock, flags);
  372. if (context_info->is_done_rcv) {
  373. context_info->is_done_rcv = false;
  374. context_info->is_new_req = false;
  375. cmd = mrq->cmd;
  376. if (!cmd->error || !cmd->retries ||
  377. mmc_card_removed(host->card)) {
  378. err = host->areq->err_check(host->card,
  379. host->areq);
  380. break; /* return err */
  381. } else {
  382. mmc_retune_recheck(host);
  383. pr_info("%s: req failed (CMD%u): %d, retrying...\n",
  384. mmc_hostname(host),
  385. cmd->opcode, cmd->error);
  386. cmd->retries--;
  387. cmd->error = 0;
  388. __mmc_start_request(host, mrq);
  389. continue; /* wait for done/new event again */
  390. }
  391. } else if (context_info->is_new_req) {
  392. context_info->is_new_req = false;
  393. if (!next_req)
  394. return MMC_BLK_NEW_REQUEST;
  395. }
  396. }
  397. mmc_retune_release(host);
  398. return err;
  399. }
  400. static void mmc_wait_for_req_done(struct mmc_host *host,
  401. struct mmc_request *mrq)
  402. {
  403. struct mmc_command *cmd;
  404. while (1) {
  405. wait_for_completion(&mrq->completion);
  406. cmd = mrq->cmd;
  407. /*
  408. * If host has timed out waiting for the sanitize
  409. * to complete, card might be still in programming state
  410. * so let's try to bring the card out of programming
  411. * state.
  412. */
  413. if (cmd->sanitize_busy && cmd->error == -ETIMEDOUT) {
  414. if (!mmc_interrupt_hpi(host->card)) {
  415. pr_warn("%s: %s: Interrupted sanitize\n",
  416. mmc_hostname(host), __func__);
  417. cmd->error = 0;
  418. break;
  419. } else {
  420. pr_err("%s: %s: Failed to interrupt sanitize\n",
  421. mmc_hostname(host), __func__);
  422. }
  423. }
  424. if (!cmd->error || !cmd->retries ||
  425. mmc_card_removed(host->card))
  426. break;
  427. mmc_retune_recheck(host);
  428. pr_debug("%s: req failed (CMD%u): %d, retrying...\n",
  429. mmc_hostname(host), cmd->opcode, cmd->error);
  430. cmd->retries--;
  431. cmd->error = 0;
  432. __mmc_start_request(host, mrq);
  433. }
  434. mmc_retune_release(host);
  435. }
  436. /**
  437. * mmc_pre_req - Prepare for a new request
  438. * @host: MMC host to prepare command
  439. * @mrq: MMC request to prepare for
  440. * @is_first_req: true if there is no previous started request
  441. * that may run in parellel to this call, otherwise false
  442. *
  443. * mmc_pre_req() is called in prior to mmc_start_req() to let
  444. * host prepare for the new request. Preparation of a request may be
  445. * performed while another request is running on the host.
  446. */
  447. static void mmc_pre_req(struct mmc_host *host, struct mmc_request *mrq,
  448. bool is_first_req)
  449. {
  450. if (host->ops->pre_req) {
  451. mmc_host_clk_hold(host);
  452. host->ops->pre_req(host, mrq, is_first_req);
  453. mmc_host_clk_release(host);
  454. }
  455. }
  456. /**
  457. * mmc_post_req - Post process a completed request
  458. * @host: MMC host to post process command
  459. * @mrq: MMC request to post process for
  460. * @err: Error, if non zero, clean up any resources made in pre_req
  461. *
  462. * Let the host post process a completed request. Post processing of
  463. * a request may be performed while another reuqest is running.
  464. */
  465. static void mmc_post_req(struct mmc_host *host, struct mmc_request *mrq,
  466. int err)
  467. {
  468. if (host->ops->post_req) {
  469. mmc_host_clk_hold(host);
  470. host->ops->post_req(host, mrq, err);
  471. mmc_host_clk_release(host);
  472. }
  473. }
  474. /**
  475. * mmc_start_req - start a non-blocking request
  476. * @host: MMC host to start command
  477. * @areq: async request to start
  478. * @error: out parameter returns 0 for success, otherwise non zero
  479. *
  480. * Start a new MMC custom command request for a host.
  481. * If there is on ongoing async request wait for completion
  482. * of that request and start the new one and return.
  483. * Does not wait for the new request to complete.
  484. *
  485. * Returns the completed request, NULL in case of none completed.
  486. * Wait for the an ongoing request (previoulsy started) to complete and
  487. * return the completed request. If there is no ongoing request, NULL
  488. * is returned without waiting. NULL is not an error condition.
  489. */
  490. struct mmc_async_req *mmc_start_req(struct mmc_host *host,
  491. struct mmc_async_req *areq, int *error)
  492. {
  493. int err = 0;
  494. int start_err = 0;
  495. struct mmc_async_req *data = host->areq;
  496. /* Prepare a new request */
  497. if (areq)
  498. mmc_pre_req(host, areq->mrq, !host->areq);
  499. if (host->areq) {
  500. err = mmc_wait_for_data_req_done(host, host->areq->mrq, areq);
  501. if (err == MMC_BLK_NEW_REQUEST) {
  502. if (error)
  503. *error = err;
  504. /*
  505. * The previous request was not completed,
  506. * nothing to return
  507. */
  508. return NULL;
  509. }
  510. /*
  511. * Check BKOPS urgency for each R1 response
  512. */
  513. if (host->card && mmc_card_mmc(host->card) &&
  514. ((mmc_resp_type(host->areq->mrq->cmd) == MMC_RSP_R1) ||
  515. (mmc_resp_type(host->areq->mrq->cmd) == MMC_RSP_R1B)) &&
  516. (host->areq->mrq->cmd->resp[0] & R1_EXCEPTION_EVENT)) {
  517. /* Cancel the prepared request */
  518. if (areq)
  519. mmc_post_req(host, areq->mrq, -EINVAL);
  520. mmc_start_bkops(host->card, true);
  521. /* prepare the request again */
  522. if (areq)
  523. mmc_pre_req(host, areq->mrq, !host->areq);
  524. }
  525. }
  526. if (!err && areq)
  527. start_err = __mmc_start_data_req(host, areq->mrq);
  528. if (host->areq)
  529. mmc_post_req(host, host->areq->mrq, 0);
  530. /* Cancel a prepared request if it was not started. */
  531. if ((err || start_err) && areq)
  532. mmc_post_req(host, areq->mrq, -EINVAL);
  533. if (err)
  534. host->areq = NULL;
  535. else
  536. host->areq = areq;
  537. if (error)
  538. *error = err;
  539. return data;
  540. }
  541. EXPORT_SYMBOL(mmc_start_req);
  542. /**
  543. * mmc_wait_for_req - start a request and wait for completion
  544. * @host: MMC host to start command
  545. * @mrq: MMC request to start
  546. *
  547. * Start a new MMC custom command request for a host, and wait
  548. * for the command to complete. Does not attempt to parse the
  549. * response.
  550. */
  551. void mmc_wait_for_req(struct mmc_host *host, struct mmc_request *mrq)
  552. {
  553. __mmc_start_req(host, mrq);
  554. mmc_wait_for_req_done(host, mrq);
  555. }
  556. EXPORT_SYMBOL(mmc_wait_for_req);
  557. /**
  558. * mmc_interrupt_hpi - Issue for High priority Interrupt
  559. * @card: the MMC card associated with the HPI transfer
  560. *
  561. * Issued High Priority Interrupt, and check for card status
  562. * until out-of prg-state.
  563. */
  564. int mmc_interrupt_hpi(struct mmc_card *card)
  565. {
  566. int err;
  567. u32 status;
  568. unsigned long prg_wait;
  569. BUG_ON(!card);
  570. if (!card->ext_csd.hpi_en) {
  571. pr_info("%s: HPI enable bit unset\n", mmc_hostname(card->host));
  572. return 1;
  573. }
  574. mmc_claim_host(card->host);
  575. err = mmc_send_status(card, &status);
  576. if (err) {
  577. pr_err("%s: Get card status fail\n", mmc_hostname(card->host));
  578. goto out;
  579. }
  580. switch (R1_CURRENT_STATE(status)) {
  581. case R1_STATE_IDLE:
  582. case R1_STATE_READY:
  583. case R1_STATE_STBY:
  584. case R1_STATE_TRAN:
  585. /*
  586. * In idle and transfer states, HPI is not needed and the caller
  587. * can issue the next intended command immediately
  588. */
  589. goto out;
  590. case R1_STATE_PRG:
  591. break;
  592. default:
  593. /* In all other states, it's illegal to issue HPI */
  594. pr_debug("%s: HPI cannot be sent. Card state=%d\n",
  595. mmc_hostname(card->host), R1_CURRENT_STATE(status));
  596. err = -EINVAL;
  597. goto out;
  598. }
  599. err = mmc_send_hpi_cmd(card, &status);
  600. if (err)
  601. goto out;
  602. prg_wait = jiffies + msecs_to_jiffies(card->ext_csd.out_of_int_time);
  603. do {
  604. err = mmc_send_status(card, &status);
  605. if (!err && R1_CURRENT_STATE(status) == R1_STATE_TRAN)
  606. break;
  607. if (time_after(jiffies, prg_wait))
  608. err = -ETIMEDOUT;
  609. } while (!err);
  610. out:
  611. mmc_release_host(card->host);
  612. return err;
  613. }
  614. EXPORT_SYMBOL(mmc_interrupt_hpi);
  615. /**
  616. * mmc_wait_for_cmd - start a command and wait for completion
  617. * @host: MMC host to start command
  618. * @cmd: MMC command to start
  619. * @retries: maximum number of retries
  620. *
  621. * Start a new MMC command for a host, and wait for the command
  622. * to complete. Return any error that occurred while the command
  623. * was executing. Do not attempt to parse the response.
  624. */
  625. int mmc_wait_for_cmd(struct mmc_host *host, struct mmc_command *cmd, int retries)
  626. {
  627. struct mmc_request mrq = {NULL};
  628. WARN_ON(!host->claimed);
  629. memset(cmd->resp, 0, sizeof(cmd->resp));
  630. cmd->retries = retries;
  631. mrq.cmd = cmd;
  632. cmd->data = NULL;
  633. mmc_wait_for_req(host, &mrq);
  634. return cmd->error;
  635. }
  636. EXPORT_SYMBOL(mmc_wait_for_cmd);
  637. /**
  638. * mmc_stop_bkops - stop ongoing BKOPS
  639. * @card: MMC card to check BKOPS
  640. *
  641. * Send HPI command to stop ongoing background operations to
  642. * allow rapid servicing of foreground operations, e.g. read/
  643. * writes. Wait until the card comes out of the programming state
  644. * to avoid errors in servicing read/write requests.
  645. */
  646. int mmc_stop_bkops(struct mmc_card *card)
  647. {
  648. int err = 0;
  649. BUG_ON(!card);
  650. err = mmc_interrupt_hpi(card);
  651. /*
  652. * If err is EINVAL, we can't issue an HPI.
  653. * It should complete the BKOPS.
  654. */
  655. if (!err || (err == -EINVAL)) {
  656. mmc_card_clr_doing_bkops(card);
  657. mmc_retune_release(card->host);
  658. err = 0;
  659. }
  660. return err;
  661. }
  662. EXPORT_SYMBOL(mmc_stop_bkops);
  663. int mmc_read_bkops_status(struct mmc_card *card)
  664. {
  665. int err;
  666. u8 *ext_csd;
  667. mmc_claim_host(card->host);
  668. err = mmc_get_ext_csd(card, &ext_csd);
  669. mmc_release_host(card->host);
  670. if (err)
  671. return err;
  672. card->ext_csd.raw_bkops_status = ext_csd[EXT_CSD_BKOPS_STATUS];
  673. card->ext_csd.raw_exception_status = ext_csd[EXT_CSD_EXP_EVENTS_STATUS];
  674. kfree(ext_csd);
  675. return 0;
  676. }
  677. EXPORT_SYMBOL(mmc_read_bkops_status);
  678. /**
  679. * mmc_set_data_timeout - set the timeout for a data command
  680. * @data: data phase for command
  681. * @card: the MMC card associated with the data transfer
  682. *
  683. * Computes the data timeout parameters according to the
  684. * correct algorithm given the card type.
  685. */
  686. void mmc_set_data_timeout(struct mmc_data *data, const struct mmc_card *card)
  687. {
  688. unsigned int mult;
  689. /*
  690. * SDIO cards only define an upper 1 s limit on access.
  691. */
  692. if (mmc_card_sdio(card)) {
  693. data->timeout_ns = 1000000000;
  694. data->timeout_clks = 0;
  695. return;
  696. }
  697. /*
  698. * SD cards use a 100 multiplier rather than 10
  699. */
  700. mult = mmc_card_sd(card) ? 100 : 10;
  701. /*
  702. * Scale up the multiplier (and therefore the timeout) by
  703. * the r2w factor for writes.
  704. */
  705. if (data->flags & MMC_DATA_WRITE)
  706. mult <<= card->csd.r2w_factor;
  707. data->timeout_ns = card->csd.tacc_ns * mult;
  708. data->timeout_clks = card->csd.tacc_clks * mult;
  709. /*
  710. * SD cards also have an upper limit on the timeout.
  711. */
  712. if (mmc_card_sd(card)) {
  713. unsigned int timeout_us, limit_us;
  714. timeout_us = data->timeout_ns / 1000;
  715. if (mmc_host_clk_rate(card->host))
  716. timeout_us += data->timeout_clks * 1000 /
  717. (mmc_host_clk_rate(card->host) / 1000);
  718. if (data->flags & MMC_DATA_WRITE)
  719. /*
  720. * The MMC spec "It is strongly recommended
  721. * for hosts to implement more than 500ms
  722. * timeout value even if the card indicates
  723. * the 250ms maximum busy length." Even the
  724. * previous value of 300ms is known to be
  725. * insufficient for some cards.
  726. */
  727. limit_us = 3000000;
  728. else
  729. limit_us = 100000;
  730. /*
  731. * SDHC cards always use these fixed values.
  732. */
  733. if (timeout_us > limit_us || mmc_card_blockaddr(card)) {
  734. data->timeout_ns = limit_us * 1000;
  735. data->timeout_clks = 0;
  736. }
  737. /* assign limit value if invalid */
  738. if (timeout_us == 0)
  739. data->timeout_ns = limit_us * 1000;
  740. }
  741. /*
  742. * Some cards require longer data read timeout than indicated in CSD.
  743. * Address this by setting the read timeout to a "reasonably high"
  744. * value. For the cards tested, 300ms has proven enough. If necessary,
  745. * this value can be increased if other problematic cards require this.
  746. */
  747. if (mmc_card_long_read_time(card) && data->flags & MMC_DATA_READ) {
  748. data->timeout_ns = 300000000;
  749. data->timeout_clks = 0;
  750. }
  751. /*
  752. * Some cards need very high timeouts if driven in SPI mode.
  753. * The worst observed timeout was 900ms after writing a
  754. * continuous stream of data until the internal logic
  755. * overflowed.
  756. */
  757. if (mmc_host_is_spi(card->host)) {
  758. if (data->flags & MMC_DATA_WRITE) {
  759. if (data->timeout_ns < 1000000000)
  760. data->timeout_ns = 1000000000; /* 1s */
  761. } else {
  762. if (data->timeout_ns < 100000000)
  763. data->timeout_ns = 100000000; /* 100ms */
  764. }
  765. }
  766. }
  767. EXPORT_SYMBOL(mmc_set_data_timeout);
  768. /**
  769. * mmc_align_data_size - pads a transfer size to a more optimal value
  770. * @card: the MMC card associated with the data transfer
  771. * @sz: original transfer size
  772. *
  773. * Pads the original data size with a number of extra bytes in
  774. * order to avoid controller bugs and/or performance hits
  775. * (e.g. some controllers revert to PIO for certain sizes).
  776. *
  777. * Returns the improved size, which might be unmodified.
  778. *
  779. * Note that this function is only relevant when issuing a
  780. * single scatter gather entry.
  781. */
  782. unsigned int mmc_align_data_size(struct mmc_card *card, unsigned int sz)
  783. {
  784. /*
  785. * FIXME: We don't have a system for the controller to tell
  786. * the core about its problems yet, so for now we just 32-bit
  787. * align the size.
  788. */
  789. sz = ((sz + 3) / 4) * 4;
  790. return sz;
  791. }
  792. EXPORT_SYMBOL(mmc_align_data_size);
  793. /**
  794. * __mmc_claim_host - exclusively claim a host
  795. * @host: mmc host to claim
  796. * @abort: whether or not the operation should be aborted
  797. *
  798. * Claim a host for a set of operations. If @abort is non null and
  799. * dereference a non-zero value then this will return prematurely with
  800. * that non-zero value without acquiring the lock. Returns zero
  801. * with the lock held otherwise.
  802. */
  803. int __mmc_claim_host(struct mmc_host *host, atomic_t *abort)
  804. {
  805. DECLARE_WAITQUEUE(wait, current);
  806. unsigned long flags;
  807. int stop;
  808. bool pm = false;
  809. might_sleep();
  810. add_wait_queue(&host->wq, &wait);
  811. spin_lock_irqsave(&host->lock, flags);
  812. while (1) {
  813. set_current_state(TASK_UNINTERRUPTIBLE);
  814. stop = abort ? atomic_read(abort) : 0;
  815. if (stop || !host->claimed || host->claimer == current)
  816. break;
  817. spin_unlock_irqrestore(&host->lock, flags);
  818. schedule();
  819. spin_lock_irqsave(&host->lock, flags);
  820. }
  821. set_current_state(TASK_RUNNING);
  822. if (!stop) {
  823. host->claimed = 1;
  824. host->claimer = current;
  825. host->claim_cnt += 1;
  826. if (host->claim_cnt == 1)
  827. pm = true;
  828. } else
  829. wake_up(&host->wq);
  830. spin_unlock_irqrestore(&host->lock, flags);
  831. remove_wait_queue(&host->wq, &wait);
  832. if (pm)
  833. pm_runtime_get_sync(mmc_dev(host));
  834. return stop;
  835. }
  836. EXPORT_SYMBOL(__mmc_claim_host);
  837. /**
  838. * mmc_release_host - release a host
  839. * @host: mmc host to release
  840. *
  841. * Release a MMC host, allowing others to claim the host
  842. * for their operations.
  843. */
  844. void mmc_release_host(struct mmc_host *host)
  845. {
  846. unsigned long flags;
  847. WARN_ON(!host->claimed);
  848. spin_lock_irqsave(&host->lock, flags);
  849. if (--host->claim_cnt) {
  850. /* Release for nested claim */
  851. spin_unlock_irqrestore(&host->lock, flags);
  852. } else {
  853. host->claimed = 0;
  854. host->claimer = NULL;
  855. spin_unlock_irqrestore(&host->lock, flags);
  856. wake_up(&host->wq);
  857. pm_runtime_mark_last_busy(mmc_dev(host));
  858. pm_runtime_put_autosuspend(mmc_dev(host));
  859. }
  860. }
  861. EXPORT_SYMBOL(mmc_release_host);
  862. /*
  863. * This is a helper function, which fetches a runtime pm reference for the
  864. * card device and also claims the host.
  865. */
  866. void mmc_get_card(struct mmc_card *card)
  867. {
  868. pm_runtime_get_sync(&card->dev);
  869. mmc_claim_host(card->host);
  870. }
  871. EXPORT_SYMBOL(mmc_get_card);
  872. /*
  873. * This is a helper function, which releases the host and drops the runtime
  874. * pm reference for the card device.
  875. */
  876. void mmc_put_card(struct mmc_card *card)
  877. {
  878. mmc_release_host(card->host);
  879. pm_runtime_mark_last_busy(&card->dev);
  880. pm_runtime_put_autosuspend(&card->dev);
  881. }
  882. EXPORT_SYMBOL(mmc_put_card);
  883. /*
  884. * Internal function that does the actual ios call to the host driver,
  885. * optionally printing some debug output.
  886. */
  887. static inline void mmc_set_ios(struct mmc_host *host)
  888. {
  889. struct mmc_ios *ios = &host->ios;
  890. pr_debug("%s: clock %uHz busmode %u powermode %u cs %u Vdd %u "
  891. "width %u timing %u\n",
  892. mmc_hostname(host), ios->clock, ios->bus_mode,
  893. ios->power_mode, ios->chip_select, ios->vdd,
  894. ios->bus_width, ios->timing);
  895. if (ios->clock > 0)
  896. mmc_set_ungated(host);
  897. host->ops->set_ios(host, ios);
  898. }
  899. /*
  900. * Control chip select pin on a host.
  901. */
  902. void mmc_set_chip_select(struct mmc_host *host, int mode)
  903. {
  904. mmc_host_clk_hold(host);
  905. host->ios.chip_select = mode;
  906. mmc_set_ios(host);
  907. mmc_host_clk_release(host);
  908. }
  909. /*
  910. * Sets the host clock to the highest possible frequency that
  911. * is below "hz".
  912. */
  913. static void __mmc_set_clock(struct mmc_host *host, unsigned int hz)
  914. {
  915. WARN_ON(hz && hz < host->f_min);
  916. if (hz > host->f_max)
  917. hz = host->f_max;
  918. host->ios.clock = hz;
  919. mmc_set_ios(host);
  920. }
  921. void mmc_set_clock(struct mmc_host *host, unsigned int hz)
  922. {
  923. mmc_host_clk_hold(host);
  924. __mmc_set_clock(host, hz);
  925. mmc_host_clk_release(host);
  926. }
  927. #ifdef CONFIG_MMC_CLKGATE
  928. /*
  929. * This gates the clock by setting it to 0 Hz.
  930. */
  931. void mmc_gate_clock(struct mmc_host *host)
  932. {
  933. unsigned long flags;
  934. spin_lock_irqsave(&host->clk_lock, flags);
  935. host->clk_old = host->ios.clock;
  936. host->ios.clock = 0;
  937. host->clk_gated = true;
  938. spin_unlock_irqrestore(&host->clk_lock, flags);
  939. mmc_set_ios(host);
  940. }
  941. /*
  942. * This restores the clock from gating by using the cached
  943. * clock value.
  944. */
  945. void mmc_ungate_clock(struct mmc_host *host)
  946. {
  947. /*
  948. * We should previously have gated the clock, so the clock shall
  949. * be 0 here! The clock may however be 0 during initialization,
  950. * when some request operations are performed before setting
  951. * the frequency. When ungate is requested in that situation
  952. * we just ignore the call.
  953. */
  954. if (host->clk_old) {
  955. BUG_ON(host->ios.clock);
  956. /* This call will also set host->clk_gated to false */
  957. __mmc_set_clock(host, host->clk_old);
  958. }
  959. }
  960. void mmc_set_ungated(struct mmc_host *host)
  961. {
  962. unsigned long flags;
  963. /*
  964. * We've been given a new frequency while the clock is gated,
  965. * so make sure we regard this as ungating it.
  966. */
  967. spin_lock_irqsave(&host->clk_lock, flags);
  968. host->clk_gated = false;
  969. spin_unlock_irqrestore(&host->clk_lock, flags);
  970. }
  971. #else
  972. void mmc_set_ungated(struct mmc_host *host)
  973. {
  974. }
  975. #endif
  976. int mmc_execute_tuning(struct mmc_card *card)
  977. {
  978. struct mmc_host *host = card->host;
  979. u32 opcode;
  980. int err;
  981. if (!host->ops->execute_tuning)
  982. return 0;
  983. if (mmc_card_mmc(card))
  984. opcode = MMC_SEND_TUNING_BLOCK_HS200;
  985. else
  986. opcode = MMC_SEND_TUNING_BLOCK;
  987. mmc_host_clk_hold(host);
  988. err = host->ops->execute_tuning(host, opcode);
  989. mmc_host_clk_release(host);
  990. if (err)
  991. pr_err("%s: tuning execution failed\n", mmc_hostname(host));
  992. else
  993. mmc_retune_enable(host);
  994. return err;
  995. }
  996. /*
  997. * Change the bus mode (open drain/push-pull) of a host.
  998. */
  999. void mmc_set_bus_mode(struct mmc_host *host, unsigned int mode)
  1000. {
  1001. mmc_host_clk_hold(host);
  1002. host->ios.bus_mode = mode;
  1003. mmc_set_ios(host);
  1004. mmc_host_clk_release(host);
  1005. }
  1006. /*
  1007. * Change data bus width of a host.
  1008. */
  1009. void mmc_set_bus_width(struct mmc_host *host, unsigned int width)
  1010. {
  1011. mmc_host_clk_hold(host);
  1012. host->ios.bus_width = width;
  1013. mmc_set_ios(host);
  1014. mmc_host_clk_release(host);
  1015. }
  1016. /*
  1017. * Set initial state after a power cycle or a hw_reset.
  1018. */
  1019. void mmc_set_initial_state(struct mmc_host *host)
  1020. {
  1021. mmc_retune_disable(host);
  1022. if (mmc_host_is_spi(host))
  1023. host->ios.chip_select = MMC_CS_HIGH;
  1024. else
  1025. host->ios.chip_select = MMC_CS_DONTCARE;
  1026. host->ios.bus_mode = MMC_BUSMODE_PUSHPULL;
  1027. host->ios.bus_width = MMC_BUS_WIDTH_1;
  1028. host->ios.timing = MMC_TIMING_LEGACY;
  1029. mmc_set_ios(host);
  1030. }
  1031. /**
  1032. * mmc_vdd_to_ocrbitnum - Convert a voltage to the OCR bit number
  1033. * @vdd: voltage (mV)
  1034. * @low_bits: prefer low bits in boundary cases
  1035. *
  1036. * This function returns the OCR bit number according to the provided @vdd
  1037. * value. If conversion is not possible a negative errno value returned.
  1038. *
  1039. * Depending on the @low_bits flag the function prefers low or high OCR bits
  1040. * on boundary voltages. For example,
  1041. * with @low_bits = true, 3300 mV translates to ilog2(MMC_VDD_32_33);
  1042. * with @low_bits = false, 3300 mV translates to ilog2(MMC_VDD_33_34);
  1043. *
  1044. * Any value in the [1951:1999] range translates to the ilog2(MMC_VDD_20_21).
  1045. */
  1046. static int mmc_vdd_to_ocrbitnum(int vdd, bool low_bits)
  1047. {
  1048. const int max_bit = ilog2(MMC_VDD_35_36);
  1049. int bit;
  1050. if (vdd < 1650 || vdd > 3600)
  1051. return -EINVAL;
  1052. if (vdd >= 1650 && vdd <= 1950)
  1053. return ilog2(MMC_VDD_165_195);
  1054. if (low_bits)
  1055. vdd -= 1;
  1056. /* Base 2000 mV, step 100 mV, bit's base 8. */
  1057. bit = (vdd - 2000) / 100 + 8;
  1058. if (bit > max_bit)
  1059. return max_bit;
  1060. return bit;
  1061. }
  1062. /**
  1063. * mmc_vddrange_to_ocrmask - Convert a voltage range to the OCR mask
  1064. * @vdd_min: minimum voltage value (mV)
  1065. * @vdd_max: maximum voltage value (mV)
  1066. *
  1067. * This function returns the OCR mask bits according to the provided @vdd_min
  1068. * and @vdd_max values. If conversion is not possible the function returns 0.
  1069. *
  1070. * Notes wrt boundary cases:
  1071. * This function sets the OCR bits for all boundary voltages, for example
  1072. * [3300:3400] range is translated to MMC_VDD_32_33 | MMC_VDD_33_34 |
  1073. * MMC_VDD_34_35 mask.
  1074. */
  1075. u32 mmc_vddrange_to_ocrmask(int vdd_min, int vdd_max)
  1076. {
  1077. u32 mask = 0;
  1078. if (vdd_max < vdd_min)
  1079. return 0;
  1080. /* Prefer high bits for the boundary vdd_max values. */
  1081. vdd_max = mmc_vdd_to_ocrbitnum(vdd_max, false);
  1082. if (vdd_max < 0)
  1083. return 0;
  1084. /* Prefer low bits for the boundary vdd_min values. */
  1085. vdd_min = mmc_vdd_to_ocrbitnum(vdd_min, true);
  1086. if (vdd_min < 0)
  1087. return 0;
  1088. /* Fill the mask, from max bit to min bit. */
  1089. while (vdd_max >= vdd_min)
  1090. mask |= 1 << vdd_max--;
  1091. return mask;
  1092. }
  1093. EXPORT_SYMBOL(mmc_vddrange_to_ocrmask);
  1094. #ifdef CONFIG_OF
  1095. /**
  1096. * mmc_of_parse_voltage - return mask of supported voltages
  1097. * @np: The device node need to be parsed.
  1098. * @mask: mask of voltages available for MMC/SD/SDIO
  1099. *
  1100. * 1. Return zero on success.
  1101. * 2. Return negative errno: voltage-range is invalid.
  1102. */
  1103. int mmc_of_parse_voltage(struct device_node *np, u32 *mask)
  1104. {
  1105. const u32 *voltage_ranges;
  1106. int num_ranges, i;
  1107. voltage_ranges = of_get_property(np, "voltage-ranges", &num_ranges);
  1108. num_ranges = num_ranges / sizeof(*voltage_ranges) / 2;
  1109. if (!voltage_ranges || !num_ranges) {
  1110. pr_info("%s: voltage-ranges unspecified\n", np->full_name);
  1111. return -EINVAL;
  1112. }
  1113. for (i = 0; i < num_ranges; i++) {
  1114. const int j = i * 2;
  1115. u32 ocr_mask;
  1116. ocr_mask = mmc_vddrange_to_ocrmask(
  1117. be32_to_cpu(voltage_ranges[j]),
  1118. be32_to_cpu(voltage_ranges[j + 1]));
  1119. if (!ocr_mask) {
  1120. pr_err("%s: voltage-range #%d is invalid\n",
  1121. np->full_name, i);
  1122. return -EINVAL;
  1123. }
  1124. *mask |= ocr_mask;
  1125. }
  1126. return 0;
  1127. }
  1128. EXPORT_SYMBOL(mmc_of_parse_voltage);
  1129. #endif /* CONFIG_OF */
  1130. static int mmc_of_get_func_num(struct device_node *node)
  1131. {
  1132. u32 reg;
  1133. int ret;
  1134. ret = of_property_read_u32(node, "reg", &reg);
  1135. if (ret < 0)
  1136. return ret;
  1137. return reg;
  1138. }
  1139. struct device_node *mmc_of_find_child_device(struct mmc_host *host,
  1140. unsigned func_num)
  1141. {
  1142. struct device_node *node;
  1143. if (!host->parent || !host->parent->of_node)
  1144. return NULL;
  1145. for_each_child_of_node(host->parent->of_node, node) {
  1146. if (mmc_of_get_func_num(node) == func_num)
  1147. return node;
  1148. }
  1149. return NULL;
  1150. }
  1151. #ifdef CONFIG_REGULATOR
  1152. /**
  1153. * mmc_regulator_get_ocrmask - return mask of supported voltages
  1154. * @supply: regulator to use
  1155. *
  1156. * This returns either a negative errno, or a mask of voltages that
  1157. * can be provided to MMC/SD/SDIO devices using the specified voltage
  1158. * regulator. This would normally be called before registering the
  1159. * MMC host adapter.
  1160. */
  1161. int mmc_regulator_get_ocrmask(struct regulator *supply)
  1162. {
  1163. int result = 0;
  1164. int count;
  1165. int i;
  1166. int vdd_uV;
  1167. int vdd_mV;
  1168. count = regulator_count_voltages(supply);
  1169. if (count < 0)
  1170. return count;
  1171. for (i = 0; i < count; i++) {
  1172. vdd_uV = regulator_list_voltage(supply, i);
  1173. if (vdd_uV <= 0)
  1174. continue;
  1175. vdd_mV = vdd_uV / 1000;
  1176. result |= mmc_vddrange_to_ocrmask(vdd_mV, vdd_mV);
  1177. }
  1178. if (!result) {
  1179. vdd_uV = regulator_get_voltage(supply);
  1180. if (vdd_uV <= 0)
  1181. return vdd_uV;
  1182. vdd_mV = vdd_uV / 1000;
  1183. result = mmc_vddrange_to_ocrmask(vdd_mV, vdd_mV);
  1184. }
  1185. return result;
  1186. }
  1187. EXPORT_SYMBOL_GPL(mmc_regulator_get_ocrmask);
  1188. /**
  1189. * mmc_regulator_set_ocr - set regulator to match host->ios voltage
  1190. * @mmc: the host to regulate
  1191. * @supply: regulator to use
  1192. * @vdd_bit: zero for power off, else a bit number (host->ios.vdd)
  1193. *
  1194. * Returns zero on success, else negative errno.
  1195. *
  1196. * MMC host drivers may use this to enable or disable a regulator using
  1197. * a particular supply voltage. This would normally be called from the
  1198. * set_ios() method.
  1199. */
  1200. int mmc_regulator_set_ocr(struct mmc_host *mmc,
  1201. struct regulator *supply,
  1202. unsigned short vdd_bit)
  1203. {
  1204. int result = 0;
  1205. int min_uV, max_uV;
  1206. if (vdd_bit) {
  1207. int tmp;
  1208. /*
  1209. * REVISIT mmc_vddrange_to_ocrmask() may have set some
  1210. * bits this regulator doesn't quite support ... don't
  1211. * be too picky, most cards and regulators are OK with
  1212. * a 0.1V range goof (it's a small error percentage).
  1213. */
  1214. tmp = vdd_bit - ilog2(MMC_VDD_165_195);
  1215. if (tmp == 0) {
  1216. min_uV = 1650 * 1000;
  1217. max_uV = 1950 * 1000;
  1218. } else {
  1219. min_uV = 1900 * 1000 + tmp * 100 * 1000;
  1220. max_uV = min_uV + 100 * 1000;
  1221. }
  1222. result = regulator_set_voltage(supply, min_uV, max_uV);
  1223. if (result == 0 && !mmc->regulator_enabled) {
  1224. result = regulator_enable(supply);
  1225. if (!result)
  1226. mmc->regulator_enabled = true;
  1227. }
  1228. } else if (mmc->regulator_enabled) {
  1229. result = regulator_disable(supply);
  1230. if (result == 0)
  1231. mmc->regulator_enabled = false;
  1232. }
  1233. if (result)
  1234. dev_err(mmc_dev(mmc),
  1235. "could not set regulator OCR (%d)\n", result);
  1236. return result;
  1237. }
  1238. EXPORT_SYMBOL_GPL(mmc_regulator_set_ocr);
  1239. #endif /* CONFIG_REGULATOR */
  1240. int mmc_regulator_get_supply(struct mmc_host *mmc)
  1241. {
  1242. struct device *dev = mmc_dev(mmc);
  1243. int ret;
  1244. mmc->supply.vmmc = devm_regulator_get_optional(dev, "vmmc");
  1245. mmc->supply.vqmmc = devm_regulator_get_optional(dev, "vqmmc");
  1246. if (IS_ERR(mmc->supply.vmmc)) {
  1247. if (PTR_ERR(mmc->supply.vmmc) == -EPROBE_DEFER)
  1248. return -EPROBE_DEFER;
  1249. dev_info(dev, "No vmmc regulator found\n");
  1250. } else {
  1251. ret = mmc_regulator_get_ocrmask(mmc->supply.vmmc);
  1252. if (ret > 0)
  1253. mmc->ocr_avail = ret;
  1254. else
  1255. dev_warn(dev, "Failed getting OCR mask: %d\n", ret);
  1256. }
  1257. if (IS_ERR(mmc->supply.vqmmc)) {
  1258. if (PTR_ERR(mmc->supply.vqmmc) == -EPROBE_DEFER)
  1259. return -EPROBE_DEFER;
  1260. dev_info(dev, "No vqmmc regulator found\n");
  1261. }
  1262. return 0;
  1263. }
  1264. EXPORT_SYMBOL_GPL(mmc_regulator_get_supply);
  1265. /*
  1266. * Mask off any voltages we don't support and select
  1267. * the lowest voltage
  1268. */
  1269. u32 mmc_select_voltage(struct mmc_host *host, u32 ocr)
  1270. {
  1271. int bit;
  1272. /*
  1273. * Sanity check the voltages that the card claims to
  1274. * support.
  1275. */
  1276. if (ocr & 0x7F) {
  1277. dev_warn(mmc_dev(host),
  1278. "card claims to support voltages below defined range\n");
  1279. ocr &= ~0x7F;
  1280. }
  1281. ocr &= host->ocr_avail;
  1282. if (!ocr) {
  1283. dev_warn(mmc_dev(host), "no support for card's volts\n");
  1284. return 0;
  1285. }
  1286. if (host->caps2 & MMC_CAP2_FULL_PWR_CYCLE) {
  1287. bit = ffs(ocr) - 1;
  1288. ocr &= 3 << bit;
  1289. mmc_power_cycle(host, ocr);
  1290. } else {
  1291. bit = fls(ocr) - 1;
  1292. ocr &= 3 << bit;
  1293. if (bit != host->ios.vdd)
  1294. dev_warn(mmc_dev(host), "exceeding card's volts\n");
  1295. }
  1296. return ocr;
  1297. }
  1298. int __mmc_set_signal_voltage(struct mmc_host *host, int signal_voltage)
  1299. {
  1300. int err = 0;
  1301. int old_signal_voltage = host->ios.signal_voltage;
  1302. host->ios.signal_voltage = signal_voltage;
  1303. if (host->ops->start_signal_voltage_switch) {
  1304. mmc_host_clk_hold(host);
  1305. err = host->ops->start_signal_voltage_switch(host, &host->ios);
  1306. mmc_host_clk_release(host);
  1307. }
  1308. if (err)
  1309. host->ios.signal_voltage = old_signal_voltage;
  1310. return err;
  1311. }
  1312. int mmc_set_signal_voltage(struct mmc_host *host, int signal_voltage, u32 ocr)
  1313. {
  1314. struct mmc_command cmd = {0};
  1315. int err = 0;
  1316. u32 clock;
  1317. BUG_ON(!host);
  1318. /*
  1319. * Send CMD11 only if the request is to switch the card to
  1320. * 1.8V signalling.
  1321. */
  1322. if (signal_voltage == MMC_SIGNAL_VOLTAGE_330)
  1323. return __mmc_set_signal_voltage(host, signal_voltage);
  1324. /*
  1325. * If we cannot switch voltages, return failure so the caller
  1326. * can continue without UHS mode
  1327. */
  1328. if (!host->ops->start_signal_voltage_switch)
  1329. return -EPERM;
  1330. if (!host->ops->card_busy)
  1331. pr_warn("%s: cannot verify signal voltage switch\n",
  1332. mmc_hostname(host));
  1333. mmc_host_clk_hold(host);
  1334. cmd.opcode = SD_SWITCH_VOLTAGE;
  1335. cmd.arg = 0;
  1336. cmd.flags = MMC_RSP_R1 | MMC_CMD_AC;
  1337. err = mmc_wait_for_cmd(host, &cmd, 0);
  1338. if (err)
  1339. goto err_command;
  1340. if (!mmc_host_is_spi(host) && (cmd.resp[0] & R1_ERROR)) {
  1341. err = -EIO;
  1342. goto err_command;
  1343. }
  1344. /*
  1345. * The card should drive cmd and dat[0:3] low immediately
  1346. * after the response of cmd11, but wait 1 ms to be sure
  1347. */
  1348. mmc_delay(1);
  1349. if (host->ops->card_busy && !host->ops->card_busy(host)) {
  1350. err = -EAGAIN;
  1351. goto power_cycle;
  1352. }
  1353. /*
  1354. * During a signal voltage level switch, the clock must be gated
  1355. * for 5 ms according to the SD spec
  1356. */
  1357. clock = host->ios.clock;
  1358. host->ios.clock = 0;
  1359. mmc_set_ios(host);
  1360. if (__mmc_set_signal_voltage(host, signal_voltage)) {
  1361. /*
  1362. * Voltages may not have been switched, but we've already
  1363. * sent CMD11, so a power cycle is required anyway
  1364. */
  1365. err = -EAGAIN;
  1366. goto power_cycle;
  1367. }
  1368. /* Keep clock gated for at least 5 ms */
  1369. mmc_delay(5);
  1370. host->ios.clock = clock;
  1371. mmc_set_ios(host);
  1372. /* Wait for at least 1 ms according to spec */
  1373. mmc_delay(1);
  1374. /*
  1375. * Failure to switch is indicated by the card holding
  1376. * dat[0:3] low
  1377. */
  1378. if (host->ops->card_busy && host->ops->card_busy(host))
  1379. err = -EAGAIN;
  1380. power_cycle:
  1381. if (err) {
  1382. pr_debug("%s: Signal voltage switch failed, "
  1383. "power cycling card\n", mmc_hostname(host));
  1384. mmc_power_cycle(host, ocr);
  1385. }
  1386. err_command:
  1387. mmc_host_clk_release(host);
  1388. return err;
  1389. }
  1390. /*
  1391. * Select timing parameters for host.
  1392. */
  1393. void mmc_set_timing(struct mmc_host *host, unsigned int timing)
  1394. {
  1395. mmc_host_clk_hold(host);
  1396. host->ios.timing = timing;
  1397. mmc_set_ios(host);
  1398. mmc_host_clk_release(host);
  1399. }
  1400. /*
  1401. * Select appropriate driver type for host.
  1402. */
  1403. void mmc_set_driver_type(struct mmc_host *host, unsigned int drv_type)
  1404. {
  1405. mmc_host_clk_hold(host);
  1406. host->ios.drv_type = drv_type;
  1407. mmc_set_ios(host);
  1408. mmc_host_clk_release(host);
  1409. }
  1410. /*
  1411. * Apply power to the MMC stack. This is a two-stage process.
  1412. * First, we enable power to the card without the clock running.
  1413. * We then wait a bit for the power to stabilise. Finally,
  1414. * enable the bus drivers and clock to the card.
  1415. *
  1416. * We must _NOT_ enable the clock prior to power stablising.
  1417. *
  1418. * If a host does all the power sequencing itself, ignore the
  1419. * initial MMC_POWER_UP stage.
  1420. */
  1421. void mmc_power_up(struct mmc_host *host, u32 ocr)
  1422. {
  1423. if (host->ios.power_mode == MMC_POWER_ON)
  1424. return;
  1425. mmc_host_clk_hold(host);
  1426. mmc_pwrseq_pre_power_on(host);
  1427. host->ios.vdd = fls(ocr) - 1;
  1428. host->ios.power_mode = MMC_POWER_UP;
  1429. /* Set initial state and call mmc_set_ios */
  1430. mmc_set_initial_state(host);
  1431. /* Try to set signal voltage to 3.3V but fall back to 1.8v or 1.2v */
  1432. if (__mmc_set_signal_voltage(host, MMC_SIGNAL_VOLTAGE_330) == 0)
  1433. dev_dbg(mmc_dev(host), "Initial signal voltage of 3.3v\n");
  1434. else if (__mmc_set_signal_voltage(host, MMC_SIGNAL_VOLTAGE_180) == 0)
  1435. dev_dbg(mmc_dev(host), "Initial signal voltage of 1.8v\n");
  1436. else if (__mmc_set_signal_voltage(host, MMC_SIGNAL_VOLTAGE_120) == 0)
  1437. dev_dbg(mmc_dev(host), "Initial signal voltage of 1.2v\n");
  1438. /*
  1439. * This delay should be sufficient to allow the power supply
  1440. * to reach the minimum voltage.
  1441. */
  1442. mmc_delay(10);
  1443. mmc_pwrseq_post_power_on(host);
  1444. host->ios.clock = host->f_init;
  1445. host->ios.power_mode = MMC_POWER_ON;
  1446. mmc_set_ios(host);
  1447. /*
  1448. * This delay must be at least 74 clock sizes, or 1 ms, or the
  1449. * time required to reach a stable voltage.
  1450. */
  1451. mmc_delay(10);
  1452. mmc_host_clk_release(host);
  1453. }
  1454. void mmc_power_off(struct mmc_host *host)
  1455. {
  1456. if (host->ios.power_mode == MMC_POWER_OFF)
  1457. return;
  1458. mmc_host_clk_hold(host);
  1459. mmc_pwrseq_power_off(host);
  1460. host->ios.clock = 0;
  1461. host->ios.vdd = 0;
  1462. host->ios.power_mode = MMC_POWER_OFF;
  1463. /* Set initial state and call mmc_set_ios */
  1464. mmc_set_initial_state(host);
  1465. /*
  1466. * Some configurations, such as the 802.11 SDIO card in the OLPC
  1467. * XO-1.5, require a short delay after poweroff before the card
  1468. * can be successfully turned on again.
  1469. */
  1470. mmc_delay(1);
  1471. mmc_host_clk_release(host);
  1472. }
  1473. void mmc_power_cycle(struct mmc_host *host, u32 ocr)
  1474. {
  1475. mmc_power_off(host);
  1476. /* Wait at least 1 ms according to SD spec */
  1477. mmc_delay(1);
  1478. mmc_power_up(host, ocr);
  1479. }
  1480. /*
  1481. * Cleanup when the last reference to the bus operator is dropped.
  1482. */
  1483. static void __mmc_release_bus(struct mmc_host *host)
  1484. {
  1485. BUG_ON(!host);
  1486. BUG_ON(host->bus_refs);
  1487. BUG_ON(!host->bus_dead);
  1488. host->bus_ops = NULL;
  1489. }
  1490. /*
  1491. * Increase reference count of bus operator
  1492. */
  1493. static inline void mmc_bus_get(struct mmc_host *host)
  1494. {
  1495. unsigned long flags;
  1496. spin_lock_irqsave(&host->lock, flags);
  1497. host->bus_refs++;
  1498. spin_unlock_irqrestore(&host->lock, flags);
  1499. }
  1500. /*
  1501. * Decrease reference count of bus operator and free it if
  1502. * it is the last reference.
  1503. */
  1504. static inline void mmc_bus_put(struct mmc_host *host)
  1505. {
  1506. unsigned long flags;
  1507. spin_lock_irqsave(&host->lock, flags);
  1508. host->bus_refs--;
  1509. if ((host->bus_refs == 0) && host->bus_ops)
  1510. __mmc_release_bus(host);
  1511. spin_unlock_irqrestore(&host->lock, flags);
  1512. }
  1513. /*
  1514. * Assign a mmc bus handler to a host. Only one bus handler may control a
  1515. * host at any given time.
  1516. */
  1517. void mmc_attach_bus(struct mmc_host *host, const struct mmc_bus_ops *ops)
  1518. {
  1519. unsigned long flags;
  1520. BUG_ON(!host);
  1521. BUG_ON(!ops);
  1522. WARN_ON(!host->claimed);
  1523. spin_lock_irqsave(&host->lock, flags);
  1524. BUG_ON(host->bus_ops);
  1525. BUG_ON(host->bus_refs);
  1526. host->bus_ops = ops;
  1527. host->bus_refs = 1;
  1528. host->bus_dead = 0;
  1529. spin_unlock_irqrestore(&host->lock, flags);
  1530. }
  1531. /*
  1532. * Remove the current bus handler from a host.
  1533. */
  1534. void mmc_detach_bus(struct mmc_host *host)
  1535. {
  1536. unsigned long flags;
  1537. BUG_ON(!host);
  1538. WARN_ON(!host->claimed);
  1539. WARN_ON(!host->bus_ops);
  1540. spin_lock_irqsave(&host->lock, flags);
  1541. host->bus_dead = 1;
  1542. spin_unlock_irqrestore(&host->lock, flags);
  1543. mmc_bus_put(host);
  1544. }
  1545. static void _mmc_detect_change(struct mmc_host *host, unsigned long delay,
  1546. bool cd_irq)
  1547. {
  1548. #ifdef CONFIG_MMC_DEBUG
  1549. unsigned long flags;
  1550. spin_lock_irqsave(&host->lock, flags);
  1551. WARN_ON(host->removed);
  1552. spin_unlock_irqrestore(&host->lock, flags);
  1553. #endif
  1554. /*
  1555. * If the device is configured as wakeup, we prevent a new sleep for
  1556. * 5 s to give provision for user space to consume the event.
  1557. */
  1558. if (cd_irq && !(host->caps & MMC_CAP_NEEDS_POLL) &&
  1559. device_can_wakeup(mmc_dev(host)))
  1560. pm_wakeup_event(mmc_dev(host), 5000);
  1561. host->detect_change = 1;
  1562. mmc_schedule_delayed_work(&host->detect, delay);
  1563. }
  1564. /**
  1565. * mmc_detect_change - process change of state on a MMC socket
  1566. * @host: host which changed state.
  1567. * @delay: optional delay to wait before detection (jiffies)
  1568. *
  1569. * MMC drivers should call this when they detect a card has been
  1570. * inserted or removed. The MMC layer will confirm that any
  1571. * present card is still functional, and initialize any newly
  1572. * inserted.
  1573. */
  1574. void mmc_detect_change(struct mmc_host *host, unsigned long delay)
  1575. {
  1576. _mmc_detect_change(host, delay, true);
  1577. }
  1578. EXPORT_SYMBOL(mmc_detect_change);
  1579. void mmc_init_erase(struct mmc_card *card)
  1580. {
  1581. unsigned int sz;
  1582. if (is_power_of_2(card->erase_size))
  1583. card->erase_shift = ffs(card->erase_size) - 1;
  1584. else
  1585. card->erase_shift = 0;
  1586. /*
  1587. * It is possible to erase an arbitrarily large area of an SD or MMC
  1588. * card. That is not desirable because it can take a long time
  1589. * (minutes) potentially delaying more important I/O, and also the
  1590. * timeout calculations become increasingly hugely over-estimated.
  1591. * Consequently, 'pref_erase' is defined as a guide to limit erases
  1592. * to that size and alignment.
  1593. *
  1594. * For SD cards that define Allocation Unit size, limit erases to one
  1595. * Allocation Unit at a time. For MMC cards that define High Capacity
  1596. * Erase Size, whether it is switched on or not, limit to that size.
  1597. * Otherwise just have a stab at a good value. For modern cards it
  1598. * will end up being 4MiB. Note that if the value is too small, it
  1599. * can end up taking longer to erase.
  1600. */
  1601. if (mmc_card_sd(card) && card->ssr.au) {
  1602. card->pref_erase = card->ssr.au;
  1603. card->erase_shift = ffs(card->ssr.au) - 1;
  1604. } else if (card->ext_csd.hc_erase_size) {
  1605. card->pref_erase = card->ext_csd.hc_erase_size;
  1606. } else if (card->erase_size) {
  1607. sz = (card->csd.capacity << (card->csd.read_blkbits - 9)) >> 11;
  1608. if (sz < 128)
  1609. card->pref_erase = 512 * 1024 / 512;
  1610. else if (sz < 512)
  1611. card->pref_erase = 1024 * 1024 / 512;
  1612. else if (sz < 1024)
  1613. card->pref_erase = 2 * 1024 * 1024 / 512;
  1614. else
  1615. card->pref_erase = 4 * 1024 * 1024 / 512;
  1616. if (card->pref_erase < card->erase_size)
  1617. card->pref_erase = card->erase_size;
  1618. else {
  1619. sz = card->pref_erase % card->erase_size;
  1620. if (sz)
  1621. card->pref_erase += card->erase_size - sz;
  1622. }
  1623. } else
  1624. card->pref_erase = 0;
  1625. }
  1626. static unsigned int mmc_mmc_erase_timeout(struct mmc_card *card,
  1627. unsigned int arg, unsigned int qty)
  1628. {
  1629. unsigned int erase_timeout;
  1630. if (arg == MMC_DISCARD_ARG ||
  1631. (arg == MMC_TRIM_ARG && card->ext_csd.rev >= 6)) {
  1632. erase_timeout = card->ext_csd.trim_timeout;
  1633. } else if (card->ext_csd.erase_group_def & 1) {
  1634. /* High Capacity Erase Group Size uses HC timeouts */
  1635. if (arg == MMC_TRIM_ARG)
  1636. erase_timeout = card->ext_csd.trim_timeout;
  1637. else
  1638. erase_timeout = card->ext_csd.hc_erase_timeout;
  1639. } else {
  1640. /* CSD Erase Group Size uses write timeout */
  1641. unsigned int mult = (10 << card->csd.r2w_factor);
  1642. unsigned int timeout_clks = card->csd.tacc_clks * mult;
  1643. unsigned int timeout_us;
  1644. /* Avoid overflow: e.g. tacc_ns=80000000 mult=1280 */
  1645. if (card->csd.tacc_ns < 1000000)
  1646. timeout_us = (card->csd.tacc_ns * mult) / 1000;
  1647. else
  1648. timeout_us = (card->csd.tacc_ns / 1000) * mult;
  1649. /*
  1650. * ios.clock is only a target. The real clock rate might be
  1651. * less but not that much less, so fudge it by multiplying by 2.
  1652. */
  1653. timeout_clks <<= 1;
  1654. timeout_us += (timeout_clks * 1000) /
  1655. (mmc_host_clk_rate(card->host) / 1000);
  1656. erase_timeout = timeout_us / 1000;
  1657. /*
  1658. * Theoretically, the calculation could underflow so round up
  1659. * to 1ms in that case.
  1660. */
  1661. if (!erase_timeout)
  1662. erase_timeout = 1;
  1663. }
  1664. /* Multiplier for secure operations */
  1665. if (arg & MMC_SECURE_ARGS) {
  1666. if (arg == MMC_SECURE_ERASE_ARG)
  1667. erase_timeout *= card->ext_csd.sec_erase_mult;
  1668. else
  1669. erase_timeout *= card->ext_csd.sec_trim_mult;
  1670. }
  1671. erase_timeout *= qty;
  1672. /*
  1673. * Ensure at least a 1 second timeout for SPI as per
  1674. * 'mmc_set_data_timeout()'
  1675. */
  1676. if (mmc_host_is_spi(card->host) && erase_timeout < 1000)
  1677. erase_timeout = 1000;
  1678. return erase_timeout;
  1679. }
  1680. static unsigned int mmc_sd_erase_timeout(struct mmc_card *card,
  1681. unsigned int arg,
  1682. unsigned int qty)
  1683. {
  1684. unsigned int erase_timeout;
  1685. if (card->ssr.erase_timeout) {
  1686. /* Erase timeout specified in SD Status Register (SSR) */
  1687. erase_timeout = card->ssr.erase_timeout * qty +
  1688. card->ssr.erase_offset;
  1689. } else {
  1690. /*
  1691. * Erase timeout not specified in SD Status Register (SSR) so
  1692. * use 250ms per write block.
  1693. */
  1694. erase_timeout = 250 * qty;
  1695. }
  1696. /* Must not be less than 1 second */
  1697. if (erase_timeout < 1000)
  1698. erase_timeout = 1000;
  1699. return erase_timeout;
  1700. }
  1701. static unsigned int mmc_erase_timeout(struct mmc_card *card,
  1702. unsigned int arg,
  1703. unsigned int qty)
  1704. {
  1705. if (mmc_card_sd(card))
  1706. return mmc_sd_erase_timeout(card, arg, qty);
  1707. else
  1708. return mmc_mmc_erase_timeout(card, arg, qty);
  1709. }
  1710. static int mmc_do_erase(struct mmc_card *card, unsigned int from,
  1711. unsigned int to, unsigned int arg)
  1712. {
  1713. struct mmc_command cmd = {0};
  1714. unsigned int qty = 0;
  1715. unsigned long timeout;
  1716. int err;
  1717. mmc_retune_hold(card->host);
  1718. /*
  1719. * qty is used to calculate the erase timeout which depends on how many
  1720. * erase groups (or allocation units in SD terminology) are affected.
  1721. * We count erasing part of an erase group as one erase group.
  1722. * For SD, the allocation units are always a power of 2. For MMC, the
  1723. * erase group size is almost certainly also power of 2, but it does not
  1724. * seem to insist on that in the JEDEC standard, so we fall back to
  1725. * division in that case. SD may not specify an allocation unit size,
  1726. * in which case the timeout is based on the number of write blocks.
  1727. *
  1728. * Note that the timeout for secure trim 2 will only be correct if the
  1729. * number of erase groups specified is the same as the total of all
  1730. * preceding secure trim 1 commands. Since the power may have been
  1731. * lost since the secure trim 1 commands occurred, it is generally
  1732. * impossible to calculate the secure trim 2 timeout correctly.
  1733. */
  1734. if (card->erase_shift)
  1735. qty += ((to >> card->erase_shift) -
  1736. (from >> card->erase_shift)) + 1;
  1737. else if (mmc_card_sd(card))
  1738. qty += to - from + 1;
  1739. else
  1740. qty += ((to / card->erase_size) -
  1741. (from / card->erase_size)) + 1;
  1742. if (!mmc_card_blockaddr(card)) {
  1743. from <<= 9;
  1744. to <<= 9;
  1745. }
  1746. if (mmc_card_sd(card))
  1747. cmd.opcode = SD_ERASE_WR_BLK_START;
  1748. else
  1749. cmd.opcode = MMC_ERASE_GROUP_START;
  1750. cmd.arg = from;
  1751. cmd.flags = MMC_RSP_SPI_R1 | MMC_RSP_R1 | MMC_CMD_AC;
  1752. err = mmc_wait_for_cmd(card->host, &cmd, 0);
  1753. if (err) {
  1754. pr_err("mmc_erase: group start error %d, "
  1755. "status %#x\n", err, cmd.resp[0]);
  1756. err = -EIO;
  1757. goto out;
  1758. }
  1759. memset(&cmd, 0, sizeof(struct mmc_command));
  1760. if (mmc_card_sd(card))
  1761. cmd.opcode = SD_ERASE_WR_BLK_END;
  1762. else
  1763. cmd.opcode = MMC_ERASE_GROUP_END;
  1764. cmd.arg = to;
  1765. cmd.flags = MMC_RSP_SPI_R1 | MMC_RSP_R1 | MMC_CMD_AC;
  1766. err = mmc_wait_for_cmd(card->host, &cmd, 0);
  1767. if (err) {
  1768. pr_err("mmc_erase: group end error %d, status %#x\n",
  1769. err, cmd.resp[0]);
  1770. err = -EIO;
  1771. goto out;
  1772. }
  1773. memset(&cmd, 0, sizeof(struct mmc_command));
  1774. cmd.opcode = MMC_ERASE;
  1775. cmd.arg = arg;
  1776. cmd.flags = MMC_RSP_SPI_R1B | MMC_RSP_R1B | MMC_CMD_AC;
  1777. cmd.busy_timeout = mmc_erase_timeout(card, arg, qty);
  1778. err = mmc_wait_for_cmd(card->host, &cmd, 0);
  1779. if (err) {
  1780. pr_err("mmc_erase: erase error %d, status %#x\n",
  1781. err, cmd.resp[0]);
  1782. err = -EIO;
  1783. goto out;
  1784. }
  1785. if (mmc_host_is_spi(card->host))
  1786. goto out;
  1787. timeout = jiffies + msecs_to_jiffies(MMC_CORE_TIMEOUT_MS);
  1788. do {
  1789. memset(&cmd, 0, sizeof(struct mmc_command));
  1790. cmd.opcode = MMC_SEND_STATUS;
  1791. cmd.arg = card->rca << 16;
  1792. cmd.flags = MMC_RSP_R1 | MMC_CMD_AC;
  1793. /* Do not retry else we can't see errors */
  1794. err = mmc_wait_for_cmd(card->host, &cmd, 0);
  1795. if (err || (cmd.resp[0] & 0xFDF92000)) {
  1796. pr_err("error %d requesting status %#x\n",
  1797. err, cmd.resp[0]);
  1798. err = -EIO;
  1799. goto out;
  1800. }
  1801. /* Timeout if the device never becomes ready for data and
  1802. * never leaves the program state.
  1803. */
  1804. if (time_after(jiffies, timeout)) {
  1805. pr_err("%s: Card stuck in programming state! %s\n",
  1806. mmc_hostname(card->host), __func__);
  1807. err = -EIO;
  1808. goto out;
  1809. }
  1810. } while (!(cmd.resp[0] & R1_READY_FOR_DATA) ||
  1811. (R1_CURRENT_STATE(cmd.resp[0]) == R1_STATE_PRG));
  1812. out:
  1813. mmc_retune_release(card->host);
  1814. return err;
  1815. }
  1816. /**
  1817. * mmc_erase - erase sectors.
  1818. * @card: card to erase
  1819. * @from: first sector to erase
  1820. * @nr: number of sectors to erase
  1821. * @arg: erase command argument (SD supports only %MMC_ERASE_ARG)
  1822. *
  1823. * Caller must claim host before calling this function.
  1824. */
  1825. int mmc_erase(struct mmc_card *card, unsigned int from, unsigned int nr,
  1826. unsigned int arg)
  1827. {
  1828. unsigned int rem, to = from + nr;
  1829. if (!(card->host->caps & MMC_CAP_ERASE) ||
  1830. !(card->csd.cmdclass & CCC_ERASE))
  1831. return -EOPNOTSUPP;
  1832. if (!card->erase_size)
  1833. return -EOPNOTSUPP;
  1834. if (mmc_card_sd(card) && arg != MMC_ERASE_ARG)
  1835. return -EOPNOTSUPP;
  1836. if ((arg & MMC_SECURE_ARGS) &&
  1837. !(card->ext_csd.sec_feature_support & EXT_CSD_SEC_ER_EN))
  1838. return -EOPNOTSUPP;
  1839. if ((arg & MMC_TRIM_ARGS) &&
  1840. !(card->ext_csd.sec_feature_support & EXT_CSD_SEC_GB_CL_EN))
  1841. return -EOPNOTSUPP;
  1842. if (arg == MMC_SECURE_ERASE_ARG) {
  1843. if (from % card->erase_size || nr % card->erase_size)
  1844. return -EINVAL;
  1845. }
  1846. if (arg == MMC_ERASE_ARG) {
  1847. rem = from % card->erase_size;
  1848. if (rem) {
  1849. rem = card->erase_size - rem;
  1850. from += rem;
  1851. if (nr > rem)
  1852. nr -= rem;
  1853. else
  1854. return 0;
  1855. }
  1856. rem = nr % card->erase_size;
  1857. if (rem)
  1858. nr -= rem;
  1859. }
  1860. if (nr == 0)
  1861. return 0;
  1862. to = from + nr;
  1863. if (to <= from)
  1864. return -EINVAL;
  1865. /* 'from' and 'to' are inclusive */
  1866. to -= 1;
  1867. return mmc_do_erase(card, from, to, arg);
  1868. }
  1869. EXPORT_SYMBOL(mmc_erase);
  1870. int mmc_can_erase(struct mmc_card *card)
  1871. {
  1872. if ((card->host->caps & MMC_CAP_ERASE) &&
  1873. (card->csd.cmdclass & CCC_ERASE) && card->erase_size)
  1874. return 1;
  1875. return 0;
  1876. }
  1877. EXPORT_SYMBOL(mmc_can_erase);
  1878. int mmc_can_trim(struct mmc_card *card)
  1879. {
  1880. if (card->ext_csd.sec_feature_support & EXT_CSD_SEC_GB_CL_EN)
  1881. return 1;
  1882. return 0;
  1883. }
  1884. EXPORT_SYMBOL(mmc_can_trim);
  1885. int mmc_can_discard(struct mmc_card *card)
  1886. {
  1887. /*
  1888. * As there's no way to detect the discard support bit at v4.5
  1889. * use the s/w feature support filed.
  1890. */
  1891. if (card->ext_csd.feature_support & MMC_DISCARD_FEATURE)
  1892. return 1;
  1893. return 0;
  1894. }
  1895. EXPORT_SYMBOL(mmc_can_discard);
  1896. int mmc_can_sanitize(struct mmc_card *card)
  1897. {
  1898. if (!mmc_can_trim(card) && !mmc_can_erase(card))
  1899. return 0;
  1900. if (card->ext_csd.sec_feature_support & EXT_CSD_SEC_SANITIZE)
  1901. return 1;
  1902. return 0;
  1903. }
  1904. EXPORT_SYMBOL(mmc_can_sanitize);
  1905. int mmc_can_secure_erase_trim(struct mmc_card *card)
  1906. {
  1907. if ((card->ext_csd.sec_feature_support & EXT_CSD_SEC_ER_EN) &&
  1908. !(card->quirks & MMC_QUIRK_SEC_ERASE_TRIM_BROKEN))
  1909. return 1;
  1910. return 0;
  1911. }
  1912. EXPORT_SYMBOL(mmc_can_secure_erase_trim);
  1913. int mmc_erase_group_aligned(struct mmc_card *card, unsigned int from,
  1914. unsigned int nr)
  1915. {
  1916. if (!card->erase_size)
  1917. return 0;
  1918. if (from % card->erase_size || nr % card->erase_size)
  1919. return 0;
  1920. return 1;
  1921. }
  1922. EXPORT_SYMBOL(mmc_erase_group_aligned);
  1923. static unsigned int mmc_do_calc_max_discard(struct mmc_card *card,
  1924. unsigned int arg)
  1925. {
  1926. struct mmc_host *host = card->host;
  1927. unsigned int max_discard, x, y, qty = 0, max_qty, timeout;
  1928. unsigned int last_timeout = 0;
  1929. if (card->erase_shift)
  1930. max_qty = UINT_MAX >> card->erase_shift;
  1931. else if (mmc_card_sd(card))
  1932. max_qty = UINT_MAX;
  1933. else
  1934. max_qty = UINT_MAX / card->erase_size;
  1935. /* Find the largest qty with an OK timeout */
  1936. do {
  1937. y = 0;
  1938. for (x = 1; x && x <= max_qty && max_qty - x >= qty; x <<= 1) {
  1939. timeout = mmc_erase_timeout(card, arg, qty + x);
  1940. if (timeout > host->max_busy_timeout)
  1941. break;
  1942. if (timeout < last_timeout)
  1943. break;
  1944. last_timeout = timeout;
  1945. y = x;
  1946. }
  1947. qty += y;
  1948. } while (y);
  1949. if (!qty)
  1950. return 0;
  1951. if (qty == 1)
  1952. return 1;
  1953. /* Convert qty to sectors */
  1954. if (card->erase_shift)
  1955. max_discard = --qty << card->erase_shift;
  1956. else if (mmc_card_sd(card))
  1957. max_discard = qty;
  1958. else
  1959. max_discard = --qty * card->erase_size;
  1960. return max_discard;
  1961. }
  1962. unsigned int mmc_calc_max_discard(struct mmc_card *card)
  1963. {
  1964. struct mmc_host *host = card->host;
  1965. unsigned int max_discard, max_trim;
  1966. if (!host->max_busy_timeout)
  1967. return UINT_MAX;
  1968. /*
  1969. * Without erase_group_def set, MMC erase timeout depends on clock
  1970. * frequence which can change. In that case, the best choice is
  1971. * just the preferred erase size.
  1972. */
  1973. if (mmc_card_mmc(card) && !(card->ext_csd.erase_group_def & 1))
  1974. return card->pref_erase;
  1975. max_discard = mmc_do_calc_max_discard(card, MMC_ERASE_ARG);
  1976. if (mmc_can_trim(card)) {
  1977. max_trim = mmc_do_calc_max_discard(card, MMC_TRIM_ARG);
  1978. if (max_trim < max_discard)
  1979. max_discard = max_trim;
  1980. } else if (max_discard < card->erase_size) {
  1981. max_discard = 0;
  1982. }
  1983. pr_debug("%s: calculated max. discard sectors %u for timeout %u ms\n",
  1984. mmc_hostname(host), max_discard, host->max_busy_timeout);
  1985. return max_discard;
  1986. }
  1987. EXPORT_SYMBOL(mmc_calc_max_discard);
  1988. int mmc_set_blocklen(struct mmc_card *card, unsigned int blocklen)
  1989. {
  1990. struct mmc_command cmd = {0};
  1991. if (mmc_card_blockaddr(card) || mmc_card_ddr52(card))
  1992. return 0;
  1993. cmd.opcode = MMC_SET_BLOCKLEN;
  1994. cmd.arg = blocklen;
  1995. cmd.flags = MMC_RSP_SPI_R1 | MMC_RSP_R1 | MMC_CMD_AC;
  1996. return mmc_wait_for_cmd(card->host, &cmd, 5);
  1997. }
  1998. EXPORT_SYMBOL(mmc_set_blocklen);
  1999. int mmc_set_blockcount(struct mmc_card *card, unsigned int blockcount,
  2000. bool is_rel_write)
  2001. {
  2002. struct mmc_command cmd = {0};
  2003. cmd.opcode = MMC_SET_BLOCK_COUNT;
  2004. cmd.arg = blockcount & 0x0000FFFF;
  2005. if (is_rel_write)
  2006. cmd.arg |= 1 << 31;
  2007. cmd.flags = MMC_RSP_SPI_R1 | MMC_RSP_R1 | MMC_CMD_AC;
  2008. return mmc_wait_for_cmd(card->host, &cmd, 5);
  2009. }
  2010. EXPORT_SYMBOL(mmc_set_blockcount);
  2011. static void mmc_hw_reset_for_init(struct mmc_host *host)
  2012. {
  2013. if (!(host->caps & MMC_CAP_HW_RESET) || !host->ops->hw_reset)
  2014. return;
  2015. mmc_host_clk_hold(host);
  2016. host->ops->hw_reset(host);
  2017. mmc_host_clk_release(host);
  2018. }
  2019. int mmc_hw_reset(struct mmc_host *host)
  2020. {
  2021. int ret;
  2022. if (!host->card)
  2023. return -EINVAL;
  2024. mmc_bus_get(host);
  2025. if (!host->bus_ops || host->bus_dead || !host->bus_ops->reset) {
  2026. mmc_bus_put(host);
  2027. return -EOPNOTSUPP;
  2028. }
  2029. ret = host->bus_ops->reset(host);
  2030. mmc_bus_put(host);
  2031. pr_warn("%s: tried to reset card\n", mmc_hostname(host));
  2032. return ret;
  2033. }
  2034. EXPORT_SYMBOL(mmc_hw_reset);
  2035. static int mmc_rescan_try_freq(struct mmc_host *host, unsigned freq)
  2036. {
  2037. host->f_init = freq;
  2038. #ifdef CONFIG_MMC_DEBUG
  2039. pr_info("%s: %s: trying to init card at %u Hz\n",
  2040. mmc_hostname(host), __func__, host->f_init);
  2041. #endif
  2042. mmc_power_up(host, host->ocr_avail);
  2043. /*
  2044. * Some eMMCs (with VCCQ always on) may not be reset after power up, so
  2045. * do a hardware reset if possible.
  2046. */
  2047. mmc_hw_reset_for_init(host);
  2048. /*
  2049. * sdio_reset sends CMD52 to reset card. Since we do not know
  2050. * if the card is being re-initialized, just send it. CMD52
  2051. * should be ignored by SD/eMMC cards.
  2052. */
  2053. sdio_reset(host);
  2054. mmc_go_idle(host);
  2055. mmc_send_if_cond(host, host->ocr_avail);
  2056. /* Order's important: probe SDIO, then SD, then MMC */
  2057. if (!mmc_attach_sdio(host))
  2058. return 0;
  2059. if (!mmc_attach_sd(host))
  2060. return 0;
  2061. if (!mmc_attach_mmc(host))
  2062. return 0;
  2063. mmc_power_off(host);
  2064. return -EIO;
  2065. }
  2066. int _mmc_detect_card_removed(struct mmc_host *host)
  2067. {
  2068. int ret;
  2069. if (host->caps & MMC_CAP_NONREMOVABLE)
  2070. return 0;
  2071. if (!host->card || mmc_card_removed(host->card))
  2072. return 1;
  2073. ret = host->bus_ops->alive(host);
  2074. /*
  2075. * Card detect status and alive check may be out of sync if card is
  2076. * removed slowly, when card detect switch changes while card/slot
  2077. * pads are still contacted in hardware (refer to "SD Card Mechanical
  2078. * Addendum, Appendix C: Card Detection Switch"). So reschedule a
  2079. * detect work 200ms later for this case.
  2080. */
  2081. if (!ret && host->ops->get_cd && !host->ops->get_cd(host)) {
  2082. mmc_detect_change(host, msecs_to_jiffies(200));
  2083. pr_debug("%s: card removed too slowly\n", mmc_hostname(host));
  2084. }
  2085. if (ret) {
  2086. mmc_card_set_removed(host->card);
  2087. pr_debug("%s: card remove detected\n", mmc_hostname(host));
  2088. }
  2089. return ret;
  2090. }
  2091. int mmc_detect_card_removed(struct mmc_host *host)
  2092. {
  2093. struct mmc_card *card = host->card;
  2094. int ret;
  2095. WARN_ON(!host->claimed);
  2096. if (!card)
  2097. return 1;
  2098. ret = mmc_card_removed(card);
  2099. /*
  2100. * The card will be considered unchanged unless we have been asked to
  2101. * detect a change or host requires polling to provide card detection.
  2102. */
  2103. if (!host->detect_change && !(host->caps & MMC_CAP_NEEDS_POLL))
  2104. return ret;
  2105. host->detect_change = 0;
  2106. if (!ret) {
  2107. ret = _mmc_detect_card_removed(host);
  2108. if (ret && (host->caps & MMC_CAP_NEEDS_POLL)) {
  2109. /*
  2110. * Schedule a detect work as soon as possible to let a
  2111. * rescan handle the card removal.
  2112. */
  2113. cancel_delayed_work(&host->detect);
  2114. _mmc_detect_change(host, 0, false);
  2115. }
  2116. }
  2117. return ret;
  2118. }
  2119. EXPORT_SYMBOL(mmc_detect_card_removed);
  2120. void mmc_rescan(struct work_struct *work)
  2121. {
  2122. struct mmc_host *host =
  2123. container_of(work, struct mmc_host, detect.work);
  2124. int i;
  2125. if (host->trigger_card_event && host->ops->card_event) {
  2126. host->ops->card_event(host);
  2127. host->trigger_card_event = false;
  2128. }
  2129. if (host->rescan_disable)
  2130. return;
  2131. /* If there is a non-removable card registered, only scan once */
  2132. if ((host->caps & MMC_CAP_NONREMOVABLE) && host->rescan_entered)
  2133. return;
  2134. host->rescan_entered = 1;
  2135. mmc_bus_get(host);
  2136. /*
  2137. * if there is a _removable_ card registered, check whether it is
  2138. * still present
  2139. */
  2140. if (host->bus_ops && !host->bus_dead
  2141. && !(host->caps & MMC_CAP_NONREMOVABLE))
  2142. host->bus_ops->detect(host);
  2143. host->detect_change = 0;
  2144. /*
  2145. * Let mmc_bus_put() free the bus/bus_ops if we've found that
  2146. * the card is no longer present.
  2147. */
  2148. mmc_bus_put(host);
  2149. mmc_bus_get(host);
  2150. /* if there still is a card present, stop here */
  2151. if (host->bus_ops != NULL) {
  2152. mmc_bus_put(host);
  2153. goto out;
  2154. }
  2155. /*
  2156. * Only we can add a new handler, so it's safe to
  2157. * release the lock here.
  2158. */
  2159. mmc_bus_put(host);
  2160. if (!(host->caps & MMC_CAP_NONREMOVABLE) && host->ops->get_cd &&
  2161. host->ops->get_cd(host) == 0) {
  2162. mmc_claim_host(host);
  2163. mmc_power_off(host);
  2164. mmc_release_host(host);
  2165. goto out;
  2166. }
  2167. mmc_claim_host(host);
  2168. for (i = 0; i < ARRAY_SIZE(freqs); i++) {
  2169. if (!mmc_rescan_try_freq(host, max(freqs[i], host->f_min)))
  2170. break;
  2171. if (freqs[i] <= host->f_min)
  2172. break;
  2173. }
  2174. mmc_release_host(host);
  2175. out:
  2176. if (host->caps & MMC_CAP_NEEDS_POLL)
  2177. mmc_schedule_delayed_work(&host->detect, HZ);
  2178. }
  2179. void mmc_start_host(struct mmc_host *host)
  2180. {
  2181. host->f_init = max(freqs[0], host->f_min);
  2182. host->rescan_disable = 0;
  2183. host->ios.power_mode = MMC_POWER_UNDEFINED;
  2184. if (host->caps2 & MMC_CAP2_NO_PRESCAN_POWERUP)
  2185. mmc_power_off(host);
  2186. else
  2187. mmc_power_up(host, host->ocr_avail);
  2188. mmc_gpiod_request_cd_irq(host);
  2189. _mmc_detect_change(host, 0, false);
  2190. }
  2191. void mmc_stop_host(struct mmc_host *host)
  2192. {
  2193. #ifdef CONFIG_MMC_DEBUG
  2194. unsigned long flags;
  2195. spin_lock_irqsave(&host->lock, flags);
  2196. host->removed = 1;
  2197. spin_unlock_irqrestore(&host->lock, flags);
  2198. #endif
  2199. if (host->slot.cd_irq >= 0)
  2200. disable_irq(host->slot.cd_irq);
  2201. host->rescan_disable = 1;
  2202. cancel_delayed_work_sync(&host->detect);
  2203. mmc_flush_scheduled_work();
  2204. /* clear pm flags now and let card drivers set them as needed */
  2205. host->pm_flags = 0;
  2206. mmc_bus_get(host);
  2207. if (host->bus_ops && !host->bus_dead) {
  2208. /* Calling bus_ops->remove() with a claimed host can deadlock */
  2209. host->bus_ops->remove(host);
  2210. mmc_claim_host(host);
  2211. mmc_detach_bus(host);
  2212. mmc_power_off(host);
  2213. mmc_release_host(host);
  2214. mmc_bus_put(host);
  2215. return;
  2216. }
  2217. mmc_bus_put(host);
  2218. BUG_ON(host->card);
  2219. mmc_power_off(host);
  2220. }
  2221. int mmc_power_save_host(struct mmc_host *host)
  2222. {
  2223. int ret = 0;
  2224. #ifdef CONFIG_MMC_DEBUG
  2225. pr_info("%s: %s: powering down\n", mmc_hostname(host), __func__);
  2226. #endif
  2227. mmc_bus_get(host);
  2228. if (!host->bus_ops || host->bus_dead) {
  2229. mmc_bus_put(host);
  2230. return -EINVAL;
  2231. }
  2232. if (host->bus_ops->power_save)
  2233. ret = host->bus_ops->power_save(host);
  2234. mmc_bus_put(host);
  2235. mmc_power_off(host);
  2236. return ret;
  2237. }
  2238. EXPORT_SYMBOL(mmc_power_save_host);
  2239. int mmc_power_restore_host(struct mmc_host *host)
  2240. {
  2241. int ret;
  2242. #ifdef CONFIG_MMC_DEBUG
  2243. pr_info("%s: %s: powering up\n", mmc_hostname(host), __func__);
  2244. #endif
  2245. mmc_bus_get(host);
  2246. if (!host->bus_ops || host->bus_dead) {
  2247. mmc_bus_put(host);
  2248. return -EINVAL;
  2249. }
  2250. mmc_power_up(host, host->card->ocr);
  2251. ret = host->bus_ops->power_restore(host);
  2252. mmc_bus_put(host);
  2253. return ret;
  2254. }
  2255. EXPORT_SYMBOL(mmc_power_restore_host);
  2256. /*
  2257. * Flush the cache to the non-volatile storage.
  2258. */
  2259. int mmc_flush_cache(struct mmc_card *card)
  2260. {
  2261. int err = 0;
  2262. if (mmc_card_mmc(card) &&
  2263. (card->ext_csd.cache_size > 0) &&
  2264. (card->ext_csd.cache_ctrl & 1)) {
  2265. err = mmc_switch(card, EXT_CSD_CMD_SET_NORMAL,
  2266. EXT_CSD_FLUSH_CACHE, 1, 0);
  2267. if (err)
  2268. pr_err("%s: cache flush error %d\n",
  2269. mmc_hostname(card->host), err);
  2270. }
  2271. return err;
  2272. }
  2273. EXPORT_SYMBOL(mmc_flush_cache);
  2274. #ifdef CONFIG_PM
  2275. /* Do the card removal on suspend if card is assumed removeable
  2276. * Do that in pm notifier while userspace isn't yet frozen, so we will be able
  2277. to sync the card.
  2278. */
  2279. int mmc_pm_notify(struct notifier_block *notify_block,
  2280. unsigned long mode, void *unused)
  2281. {
  2282. struct mmc_host *host = container_of(
  2283. notify_block, struct mmc_host, pm_notify);
  2284. unsigned long flags;
  2285. int err = 0;
  2286. switch (mode) {
  2287. case PM_HIBERNATION_PREPARE:
  2288. case PM_SUSPEND_PREPARE:
  2289. case PM_RESTORE_PREPARE:
  2290. spin_lock_irqsave(&host->lock, flags);
  2291. host->rescan_disable = 1;
  2292. spin_unlock_irqrestore(&host->lock, flags);
  2293. cancel_delayed_work_sync(&host->detect);
  2294. if (!host->bus_ops)
  2295. break;
  2296. /* Validate prerequisites for suspend */
  2297. if (host->bus_ops->pre_suspend)
  2298. err = host->bus_ops->pre_suspend(host);
  2299. if (!err)
  2300. break;
  2301. /* Calling bus_ops->remove() with a claimed host can deadlock */
  2302. host->bus_ops->remove(host);
  2303. mmc_claim_host(host);
  2304. mmc_detach_bus(host);
  2305. mmc_power_off(host);
  2306. mmc_release_host(host);
  2307. host->pm_flags = 0;
  2308. break;
  2309. case PM_POST_SUSPEND:
  2310. case PM_POST_HIBERNATION:
  2311. case PM_POST_RESTORE:
  2312. spin_lock_irqsave(&host->lock, flags);
  2313. host->rescan_disable = 0;
  2314. spin_unlock_irqrestore(&host->lock, flags);
  2315. _mmc_detect_change(host, 0, false);
  2316. }
  2317. return 0;
  2318. }
  2319. #endif
  2320. /**
  2321. * mmc_init_context_info() - init synchronization context
  2322. * @host: mmc host
  2323. *
  2324. * Init struct context_info needed to implement asynchronous
  2325. * request mechanism, used by mmc core, host driver and mmc requests
  2326. * supplier.
  2327. */
  2328. void mmc_init_context_info(struct mmc_host *host)
  2329. {
  2330. spin_lock_init(&host->context_info.lock);
  2331. host->context_info.is_new_req = false;
  2332. host->context_info.is_done_rcv = false;
  2333. host->context_info.is_waiting_last_req = false;
  2334. init_waitqueue_head(&host->context_info.wait);
  2335. }
  2336. static int __init mmc_init(void)
  2337. {
  2338. int ret;
  2339. workqueue = alloc_ordered_workqueue("kmmcd", 0);
  2340. if (!workqueue)
  2341. return -ENOMEM;
  2342. ret = mmc_register_bus();
  2343. if (ret)
  2344. goto destroy_workqueue;
  2345. ret = mmc_register_host_class();
  2346. if (ret)
  2347. goto unregister_bus;
  2348. ret = sdio_register_bus();
  2349. if (ret)
  2350. goto unregister_host_class;
  2351. return 0;
  2352. unregister_host_class:
  2353. mmc_unregister_host_class();
  2354. unregister_bus:
  2355. mmc_unregister_bus();
  2356. destroy_workqueue:
  2357. destroy_workqueue(workqueue);
  2358. return ret;
  2359. }
  2360. static void __exit mmc_exit(void)
  2361. {
  2362. sdio_unregister_bus();
  2363. mmc_unregister_host_class();
  2364. mmc_unregister_bus();
  2365. destroy_workqueue(workqueue);
  2366. }
  2367. subsys_initcall(mmc_init);
  2368. module_exit(mmc_exit);
  2369. MODULE_LICENSE("GPL");