omap_hsmmc.c 56 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307
  1. /*
  2. * drivers/mmc/host/omap_hsmmc.c
  3. *
  4. * Driver for OMAP2430/3430 MMC controller.
  5. *
  6. * Copyright (C) 2007 Texas Instruments.
  7. *
  8. * Authors:
  9. * Syed Mohammed Khasim <x0khasim@ti.com>
  10. * Madhusudhan <madhu.cr@ti.com>
  11. * Mohit Jalori <mjalori@ti.com>
  12. *
  13. * This file is licensed under the terms of the GNU General Public License
  14. * version 2. This program is licensed "as is" without any warranty of any
  15. * kind, whether express or implied.
  16. */
  17. #include <linux/module.h>
  18. #include <linux/init.h>
  19. #include <linux/kernel.h>
  20. #include <linux/debugfs.h>
  21. #include <linux/seq_file.h>
  22. #include <linux/interrupt.h>
  23. #include <linux/delay.h>
  24. #include <linux/dma-mapping.h>
  25. #include <linux/platform_device.h>
  26. #include <linux/workqueue.h>
  27. #include <linux/timer.h>
  28. #include <linux/clk.h>
  29. #include <linux/mmc/host.h>
  30. #include <linux/mmc/core.h>
  31. #include <linux/mmc/mmc.h>
  32. #include <linux/io.h>
  33. #include <linux/semaphore.h>
  34. #include <linux/gpio.h>
  35. #include <linux/regulator/consumer.h>
  36. #include <linux/pm_runtime.h>
  37. #include <plat/dma.h>
  38. #include <mach/hardware.h>
  39. #include <plat/board.h>
  40. #include <plat/mmc.h>
  41. #include <plat/cpu.h>
  42. /* OMAP HSMMC Host Controller Registers */
  43. #define OMAP_HSMMC_SYSCONFIG 0x0010
  44. #define OMAP_HSMMC_SYSSTATUS 0x0014
  45. #define OMAP_HSMMC_CON 0x002C
  46. #define OMAP_HSMMC_BLK 0x0104
  47. #define OMAP_HSMMC_ARG 0x0108
  48. #define OMAP_HSMMC_CMD 0x010C
  49. #define OMAP_HSMMC_RSP10 0x0110
  50. #define OMAP_HSMMC_RSP32 0x0114
  51. #define OMAP_HSMMC_RSP54 0x0118
  52. #define OMAP_HSMMC_RSP76 0x011C
  53. #define OMAP_HSMMC_DATA 0x0120
  54. #define OMAP_HSMMC_HCTL 0x0128
  55. #define OMAP_HSMMC_SYSCTL 0x012C
  56. #define OMAP_HSMMC_STAT 0x0130
  57. #define OMAP_HSMMC_IE 0x0134
  58. #define OMAP_HSMMC_ISE 0x0138
  59. #define OMAP_HSMMC_CAPA 0x0140
  60. #define VS18 (1 << 26)
  61. #define VS30 (1 << 25)
  62. #define SDVS18 (0x5 << 9)
  63. #define SDVS30 (0x6 << 9)
  64. #define SDVS33 (0x7 << 9)
  65. #define SDVS_MASK 0x00000E00
  66. #define SDVSCLR 0xFFFFF1FF
  67. #define SDVSDET 0x00000400
  68. #define AUTOIDLE 0x1
  69. #define SDBP (1 << 8)
  70. #define DTO 0xe
  71. #define ICE 0x1
  72. #define ICS 0x2
  73. #define CEN (1 << 2)
  74. #define CLKD_MASK 0x0000FFC0
  75. #define CLKD_SHIFT 6
  76. #define DTO_MASK 0x000F0000
  77. #define DTO_SHIFT 16
  78. #define INT_EN_MASK 0x307F0033
  79. #define BWR_ENABLE (1 << 4)
  80. #define BRR_ENABLE (1 << 5)
  81. #define DTO_ENABLE (1 << 20)
  82. #define INIT_STREAM (1 << 1)
  83. #define DP_SELECT (1 << 21)
  84. #define DDIR (1 << 4)
  85. #define DMA_EN 0x1
  86. #define MSBS (1 << 5)
  87. #define BCE (1 << 1)
  88. #define FOUR_BIT (1 << 1)
  89. #define DW8 (1 << 5)
  90. #define CC 0x1
  91. #define TC 0x02
  92. #define OD 0x1
  93. #define ERR (1 << 15)
  94. #define CMD_TIMEOUT (1 << 16)
  95. #define DATA_TIMEOUT (1 << 20)
  96. #define CMD_CRC (1 << 17)
  97. #define DATA_CRC (1 << 21)
  98. #define CARD_ERR (1 << 28)
  99. #define STAT_CLEAR 0xFFFFFFFF
  100. #define INIT_STREAM_CMD 0x00000000
  101. #define DUAL_VOLT_OCR_BIT 7
  102. #define SRC (1 << 25)
  103. #define SRD (1 << 26)
  104. #define SOFTRESET (1 << 1)
  105. #define RESETDONE (1 << 0)
  106. /*
  107. * FIXME: Most likely all the data using these _DEVID defines should come
  108. * from the platform_data, or implemented in controller and slot specific
  109. * functions.
  110. */
  111. #define OMAP_MMC1_DEVID 0
  112. #define OMAP_MMC2_DEVID 1
  113. #define OMAP_MMC3_DEVID 2
  114. #define OMAP_MMC4_DEVID 3
  115. #define OMAP_MMC5_DEVID 4
  116. #define MMC_AUTOSUSPEND_DELAY 100
  117. #define MMC_TIMEOUT_MS 20
  118. #define OMAP_MMC_MASTER_CLOCK 96000000
  119. #define OMAP_MMC_MIN_CLOCK 400000
  120. #define OMAP_MMC_MAX_CLOCK 52000000
  121. #define DRIVER_NAME "omap_hsmmc"
  122. /*
  123. * One controller can have multiple slots, like on some omap boards using
  124. * omap.c controller driver. Luckily this is not currently done on any known
  125. * omap_hsmmc.c device.
  126. */
  127. #define mmc_slot(host) (host->pdata->slots[host->slot_id])
  128. /*
  129. * MMC Host controller read/write API's
  130. */
  131. #define OMAP_HSMMC_READ(base, reg) \
  132. __raw_readl((base) + OMAP_HSMMC_##reg)
  133. #define OMAP_HSMMC_WRITE(base, reg, val) \
  134. __raw_writel((val), (base) + OMAP_HSMMC_##reg)
  135. struct omap_hsmmc_next {
  136. unsigned int dma_len;
  137. s32 cookie;
  138. };
  139. struct omap_hsmmc_host {
  140. struct device *dev;
  141. struct mmc_host *mmc;
  142. struct mmc_request *mrq;
  143. struct mmc_command *cmd;
  144. struct mmc_data *data;
  145. struct clk *fclk;
  146. struct clk *dbclk;
  147. /*
  148. * vcc == configured supply
  149. * vcc_aux == optional
  150. * - MMC1, supply for DAT4..DAT7
  151. * - MMC2/MMC2, external level shifter voltage supply, for
  152. * chip (SDIO, eMMC, etc) or transceiver (MMC2 only)
  153. */
  154. struct regulator *vcc;
  155. struct regulator *vcc_aux;
  156. struct work_struct mmc_carddetect_work;
  157. void __iomem *base;
  158. resource_size_t mapbase;
  159. spinlock_t irq_lock; /* Prevent races with irq handler */
  160. unsigned int id;
  161. unsigned int dma_len;
  162. unsigned int dma_sg_idx;
  163. unsigned char bus_mode;
  164. unsigned char power_mode;
  165. u32 *buffer;
  166. u32 bytesleft;
  167. int suspended;
  168. int irq;
  169. int use_dma, dma_ch;
  170. int dma_line_tx, dma_line_rx;
  171. int slot_id;
  172. int got_dbclk;
  173. int response_busy;
  174. int context_loss;
  175. int dpm_state;
  176. int vdd;
  177. int protect_card;
  178. int reqs_blocked;
  179. int use_reg;
  180. int req_in_progress;
  181. struct omap_hsmmc_next next_data;
  182. struct omap_mmc_platform_data *pdata;
  183. };
  184. static int omap_hsmmc_card_detect(struct device *dev, int slot)
  185. {
  186. struct omap_mmc_platform_data *mmc = dev->platform_data;
  187. /* NOTE: assumes card detect signal is active-low */
  188. return !gpio_get_value_cansleep(mmc->slots[0].switch_pin);
  189. }
  190. static int omap_hsmmc_get_wp(struct device *dev, int slot)
  191. {
  192. struct omap_mmc_platform_data *mmc = dev->platform_data;
  193. /* NOTE: assumes write protect signal is active-high */
  194. return gpio_get_value_cansleep(mmc->slots[0].gpio_wp);
  195. }
  196. static int omap_hsmmc_get_cover_state(struct device *dev, int slot)
  197. {
  198. struct omap_mmc_platform_data *mmc = dev->platform_data;
  199. /* NOTE: assumes card detect signal is active-low */
  200. return !gpio_get_value_cansleep(mmc->slots[0].switch_pin);
  201. }
  202. #ifdef CONFIG_PM
  203. static int omap_hsmmc_suspend_cdirq(struct device *dev, int slot)
  204. {
  205. struct omap_mmc_platform_data *mmc = dev->platform_data;
  206. disable_irq(mmc->slots[0].card_detect_irq);
  207. return 0;
  208. }
  209. static int omap_hsmmc_resume_cdirq(struct device *dev, int slot)
  210. {
  211. struct omap_mmc_platform_data *mmc = dev->platform_data;
  212. enable_irq(mmc->slots[0].card_detect_irq);
  213. return 0;
  214. }
  215. #else
  216. #define omap_hsmmc_suspend_cdirq NULL
  217. #define omap_hsmmc_resume_cdirq NULL
  218. #endif
  219. #ifdef CONFIG_REGULATOR
  220. static int omap_hsmmc_1_set_power(struct device *dev, int slot, int power_on,
  221. int vdd)
  222. {
  223. struct omap_hsmmc_host *host =
  224. platform_get_drvdata(to_platform_device(dev));
  225. int ret;
  226. if (mmc_slot(host).before_set_reg)
  227. mmc_slot(host).before_set_reg(dev, slot, power_on, vdd);
  228. if (power_on)
  229. ret = mmc_regulator_set_ocr(host->mmc, host->vcc, vdd);
  230. else
  231. ret = mmc_regulator_set_ocr(host->mmc, host->vcc, 0);
  232. if (mmc_slot(host).after_set_reg)
  233. mmc_slot(host).after_set_reg(dev, slot, power_on, vdd);
  234. return ret;
  235. }
  236. static int omap_hsmmc_235_set_power(struct device *dev, int slot, int power_on,
  237. int vdd)
  238. {
  239. struct omap_hsmmc_host *host =
  240. platform_get_drvdata(to_platform_device(dev));
  241. int ret = 0;
  242. /*
  243. * If we don't see a Vcc regulator, assume it's a fixed
  244. * voltage always-on regulator.
  245. */
  246. if (!host->vcc)
  247. return 0;
  248. if (mmc_slot(host).before_set_reg)
  249. mmc_slot(host).before_set_reg(dev, slot, power_on, vdd);
  250. /*
  251. * Assume Vcc regulator is used only to power the card ... OMAP
  252. * VDDS is used to power the pins, optionally with a transceiver to
  253. * support cards using voltages other than VDDS (1.8V nominal). When a
  254. * transceiver is used, DAT3..7 are muxed as transceiver control pins.
  255. *
  256. * In some cases this regulator won't support enable/disable;
  257. * e.g. it's a fixed rail for a WLAN chip.
  258. *
  259. * In other cases vcc_aux switches interface power. Example, for
  260. * eMMC cards it represents VccQ. Sometimes transceivers or SDIO
  261. * chips/cards need an interface voltage rail too.
  262. */
  263. if (power_on) {
  264. ret = mmc_regulator_set_ocr(host->mmc, host->vcc, vdd);
  265. /* Enable interface voltage rail, if needed */
  266. if (ret == 0 && host->vcc_aux) {
  267. ret = regulator_enable(host->vcc_aux);
  268. if (ret < 0)
  269. ret = mmc_regulator_set_ocr(host->mmc,
  270. host->vcc, 0);
  271. }
  272. } else {
  273. /* Shut down the rail */
  274. if (host->vcc_aux)
  275. ret = regulator_disable(host->vcc_aux);
  276. if (!ret) {
  277. /* Then proceed to shut down the local regulator */
  278. ret = mmc_regulator_set_ocr(host->mmc,
  279. host->vcc, 0);
  280. }
  281. }
  282. if (mmc_slot(host).after_set_reg)
  283. mmc_slot(host).after_set_reg(dev, slot, power_on, vdd);
  284. return ret;
  285. }
  286. static int omap_hsmmc_4_set_power(struct device *dev, int slot, int power_on,
  287. int vdd)
  288. {
  289. return 0;
  290. }
  291. static int omap_hsmmc_1_set_sleep(struct device *dev, int slot, int sleep,
  292. int vdd, int cardsleep)
  293. {
  294. struct omap_hsmmc_host *host =
  295. platform_get_drvdata(to_platform_device(dev));
  296. int mode = sleep ? REGULATOR_MODE_STANDBY : REGULATOR_MODE_NORMAL;
  297. return regulator_set_mode(host->vcc, mode);
  298. }
  299. static int omap_hsmmc_235_set_sleep(struct device *dev, int slot, int sleep,
  300. int vdd, int cardsleep)
  301. {
  302. struct omap_hsmmc_host *host =
  303. platform_get_drvdata(to_platform_device(dev));
  304. int err, mode;
  305. /*
  306. * If we don't see a Vcc regulator, assume it's a fixed
  307. * voltage always-on regulator.
  308. */
  309. if (!host->vcc)
  310. return 0;
  311. mode = sleep ? REGULATOR_MODE_STANDBY : REGULATOR_MODE_NORMAL;
  312. if (!host->vcc_aux)
  313. return regulator_set_mode(host->vcc, mode);
  314. if (cardsleep) {
  315. /* VCC can be turned off if card is asleep */
  316. if (sleep)
  317. err = mmc_regulator_set_ocr(host->mmc, host->vcc, 0);
  318. else
  319. err = mmc_regulator_set_ocr(host->mmc, host->vcc, vdd);
  320. } else
  321. err = regulator_set_mode(host->vcc, mode);
  322. if (err)
  323. return err;
  324. if (!mmc_slot(host).vcc_aux_disable_is_sleep)
  325. return regulator_set_mode(host->vcc_aux, mode);
  326. if (sleep)
  327. return regulator_disable(host->vcc_aux);
  328. else
  329. return regulator_enable(host->vcc_aux);
  330. }
  331. static int omap_hsmmc_4_set_sleep(struct device *dev, int slot, int sleep,
  332. int vdd, int cardsleep)
  333. {
  334. return 0;
  335. }
  336. static int omap_hsmmc_reg_get(struct omap_hsmmc_host *host)
  337. {
  338. struct regulator *reg;
  339. int ret = 0;
  340. int ocr_value = 0;
  341. switch (host->id) {
  342. case OMAP_MMC1_DEVID:
  343. /* On-chip level shifting via PBIAS0/PBIAS1 */
  344. mmc_slot(host).set_power = omap_hsmmc_1_set_power;
  345. mmc_slot(host).set_sleep = omap_hsmmc_1_set_sleep;
  346. break;
  347. case OMAP_MMC2_DEVID:
  348. case OMAP_MMC3_DEVID:
  349. case OMAP_MMC5_DEVID:
  350. /* Off-chip level shifting, or none */
  351. mmc_slot(host).set_power = omap_hsmmc_235_set_power;
  352. mmc_slot(host).set_sleep = omap_hsmmc_235_set_sleep;
  353. break;
  354. case OMAP_MMC4_DEVID:
  355. mmc_slot(host).set_power = omap_hsmmc_4_set_power;
  356. mmc_slot(host).set_sleep = omap_hsmmc_4_set_sleep;
  357. default:
  358. pr_err("MMC%d configuration not supported!\n", host->id);
  359. return -EINVAL;
  360. }
  361. reg = regulator_get(host->dev, "vmmc");
  362. if (IS_ERR(reg)) {
  363. dev_dbg(host->dev, "vmmc regulator missing\n");
  364. /*
  365. * HACK: until fixed.c regulator is usable,
  366. * we don't require a main regulator
  367. * for MMC2 or MMC3
  368. */
  369. if (host->id == OMAP_MMC1_DEVID) {
  370. ret = PTR_ERR(reg);
  371. goto err;
  372. }
  373. } else {
  374. host->vcc = reg;
  375. ocr_value = mmc_regulator_get_ocrmask(reg);
  376. if (!mmc_slot(host).ocr_mask) {
  377. mmc_slot(host).ocr_mask = ocr_value;
  378. } else {
  379. if (!(mmc_slot(host).ocr_mask & ocr_value)) {
  380. pr_err("MMC%d ocrmask %x is not supported\n",
  381. host->id, mmc_slot(host).ocr_mask);
  382. mmc_slot(host).ocr_mask = 0;
  383. return -EINVAL;
  384. }
  385. }
  386. /* Allow an aux regulator */
  387. reg = regulator_get(host->dev, "vmmc_aux");
  388. host->vcc_aux = IS_ERR(reg) ? NULL : reg;
  389. /* For eMMC do not power off when not in sleep state */
  390. if (mmc_slot(host).no_regulator_off_init)
  391. return 0;
  392. /*
  393. * UGLY HACK: workaround regulator framework bugs.
  394. * When the bootloader leaves a supply active, it's
  395. * initialized with zero usecount ... and we can't
  396. * disable it without first enabling it. Until the
  397. * framework is fixed, we need a workaround like this
  398. * (which is safe for MMC, but not in general).
  399. */
  400. if (regulator_is_enabled(host->vcc) > 0 ||
  401. (host->vcc_aux && regulator_is_enabled(host->vcc_aux))) {
  402. int vdd = ffs(mmc_slot(host).ocr_mask) - 1;
  403. mmc_slot(host).set_power(host->dev, host->slot_id,
  404. 1, vdd);
  405. mmc_slot(host).set_power(host->dev, host->slot_id,
  406. 0, 0);
  407. }
  408. }
  409. return 0;
  410. err:
  411. mmc_slot(host).set_power = NULL;
  412. mmc_slot(host).set_sleep = NULL;
  413. return ret;
  414. }
  415. static void omap_hsmmc_reg_put(struct omap_hsmmc_host *host)
  416. {
  417. regulator_put(host->vcc);
  418. regulator_put(host->vcc_aux);
  419. mmc_slot(host).set_power = NULL;
  420. mmc_slot(host).set_sleep = NULL;
  421. }
  422. static inline int omap_hsmmc_have_reg(void)
  423. {
  424. return 1;
  425. }
  426. #else
  427. static inline int omap_hsmmc_reg_get(struct omap_hsmmc_host *host)
  428. {
  429. return -EINVAL;
  430. }
  431. static inline void omap_hsmmc_reg_put(struct omap_hsmmc_host *host)
  432. {
  433. }
  434. static inline int omap_hsmmc_have_reg(void)
  435. {
  436. return 0;
  437. }
  438. #endif
  439. static int omap_hsmmc_gpio_init(struct omap_mmc_platform_data *pdata)
  440. {
  441. int ret;
  442. if (gpio_is_valid(pdata->slots[0].switch_pin)) {
  443. if (pdata->slots[0].cover)
  444. pdata->slots[0].get_cover_state =
  445. omap_hsmmc_get_cover_state;
  446. else
  447. pdata->slots[0].card_detect = omap_hsmmc_card_detect;
  448. pdata->slots[0].card_detect_irq =
  449. gpio_to_irq(pdata->slots[0].switch_pin);
  450. ret = gpio_request(pdata->slots[0].switch_pin, "mmc_cd");
  451. if (ret)
  452. return ret;
  453. ret = gpio_direction_input(pdata->slots[0].switch_pin);
  454. if (ret)
  455. goto err_free_sp;
  456. } else
  457. pdata->slots[0].switch_pin = -EINVAL;
  458. if (gpio_is_valid(pdata->slots[0].gpio_wp)) {
  459. pdata->slots[0].get_ro = omap_hsmmc_get_wp;
  460. ret = gpio_request(pdata->slots[0].gpio_wp, "mmc_wp");
  461. if (ret)
  462. goto err_free_cd;
  463. ret = gpio_direction_input(pdata->slots[0].gpio_wp);
  464. if (ret)
  465. goto err_free_wp;
  466. } else
  467. pdata->slots[0].gpio_wp = -EINVAL;
  468. return 0;
  469. err_free_wp:
  470. gpio_free(pdata->slots[0].gpio_wp);
  471. err_free_cd:
  472. if (gpio_is_valid(pdata->slots[0].switch_pin))
  473. err_free_sp:
  474. gpio_free(pdata->slots[0].switch_pin);
  475. return ret;
  476. }
  477. static void omap_hsmmc_gpio_free(struct omap_mmc_platform_data *pdata)
  478. {
  479. if (gpio_is_valid(pdata->slots[0].gpio_wp))
  480. gpio_free(pdata->slots[0].gpio_wp);
  481. if (gpio_is_valid(pdata->slots[0].switch_pin))
  482. gpio_free(pdata->slots[0].switch_pin);
  483. }
  484. /*
  485. * Start clock to the card
  486. */
  487. static void omap_hsmmc_start_clock(struct omap_hsmmc_host *host)
  488. {
  489. OMAP_HSMMC_WRITE(host->base, SYSCTL,
  490. OMAP_HSMMC_READ(host->base, SYSCTL) | CEN);
  491. }
  492. /*
  493. * Stop clock to the card
  494. */
  495. static void omap_hsmmc_stop_clock(struct omap_hsmmc_host *host)
  496. {
  497. OMAP_HSMMC_WRITE(host->base, SYSCTL,
  498. OMAP_HSMMC_READ(host->base, SYSCTL) & ~CEN);
  499. if ((OMAP_HSMMC_READ(host->base, SYSCTL) & CEN) != 0x0)
  500. dev_dbg(mmc_dev(host->mmc), "MMC Clock is not stoped\n");
  501. }
  502. static void omap_hsmmc_enable_irq(struct omap_hsmmc_host *host,
  503. struct mmc_command *cmd)
  504. {
  505. unsigned int irq_mask;
  506. if (host->use_dma)
  507. irq_mask = INT_EN_MASK & ~(BRR_ENABLE | BWR_ENABLE);
  508. else
  509. irq_mask = INT_EN_MASK;
  510. /* Disable timeout for erases */
  511. if (cmd->opcode == MMC_ERASE)
  512. irq_mask &= ~DTO_ENABLE;
  513. OMAP_HSMMC_WRITE(host->base, STAT, STAT_CLEAR);
  514. OMAP_HSMMC_WRITE(host->base, ISE, irq_mask);
  515. OMAP_HSMMC_WRITE(host->base, IE, irq_mask);
  516. }
  517. static void omap_hsmmc_disable_irq(struct omap_hsmmc_host *host)
  518. {
  519. OMAP_HSMMC_WRITE(host->base, ISE, 0);
  520. OMAP_HSMMC_WRITE(host->base, IE, 0);
  521. OMAP_HSMMC_WRITE(host->base, STAT, STAT_CLEAR);
  522. }
  523. /* Calculate divisor for the given clock frequency */
  524. static u16 calc_divisor(struct mmc_ios *ios)
  525. {
  526. u16 dsor = 0;
  527. if (ios->clock) {
  528. dsor = DIV_ROUND_UP(OMAP_MMC_MASTER_CLOCK, ios->clock);
  529. if (dsor > 250)
  530. dsor = 250;
  531. }
  532. return dsor;
  533. }
  534. static void omap_hsmmc_set_clock(struct omap_hsmmc_host *host)
  535. {
  536. struct mmc_ios *ios = &host->mmc->ios;
  537. unsigned long regval;
  538. unsigned long timeout;
  539. dev_dbg(mmc_dev(host->mmc), "Set clock to %uHz\n", ios->clock);
  540. omap_hsmmc_stop_clock(host);
  541. regval = OMAP_HSMMC_READ(host->base, SYSCTL);
  542. regval = regval & ~(CLKD_MASK | DTO_MASK);
  543. regval = regval | (calc_divisor(ios) << 6) | (DTO << 16);
  544. OMAP_HSMMC_WRITE(host->base, SYSCTL, regval);
  545. OMAP_HSMMC_WRITE(host->base, SYSCTL,
  546. OMAP_HSMMC_READ(host->base, SYSCTL) | ICE);
  547. /* Wait till the ICS bit is set */
  548. timeout = jiffies + msecs_to_jiffies(MMC_TIMEOUT_MS);
  549. while ((OMAP_HSMMC_READ(host->base, SYSCTL) & ICS) != ICS
  550. && time_before(jiffies, timeout))
  551. cpu_relax();
  552. omap_hsmmc_start_clock(host);
  553. }
  554. static void omap_hsmmc_set_bus_width(struct omap_hsmmc_host *host)
  555. {
  556. struct mmc_ios *ios = &host->mmc->ios;
  557. u32 con;
  558. con = OMAP_HSMMC_READ(host->base, CON);
  559. switch (ios->bus_width) {
  560. case MMC_BUS_WIDTH_8:
  561. OMAP_HSMMC_WRITE(host->base, CON, con | DW8);
  562. break;
  563. case MMC_BUS_WIDTH_4:
  564. OMAP_HSMMC_WRITE(host->base, CON, con & ~DW8);
  565. OMAP_HSMMC_WRITE(host->base, HCTL,
  566. OMAP_HSMMC_READ(host->base, HCTL) | FOUR_BIT);
  567. break;
  568. case MMC_BUS_WIDTH_1:
  569. OMAP_HSMMC_WRITE(host->base, CON, con & ~DW8);
  570. OMAP_HSMMC_WRITE(host->base, HCTL,
  571. OMAP_HSMMC_READ(host->base, HCTL) & ~FOUR_BIT);
  572. break;
  573. }
  574. }
  575. static void omap_hsmmc_set_bus_mode(struct omap_hsmmc_host *host)
  576. {
  577. struct mmc_ios *ios = &host->mmc->ios;
  578. u32 con;
  579. con = OMAP_HSMMC_READ(host->base, CON);
  580. if (ios->bus_mode == MMC_BUSMODE_OPENDRAIN)
  581. OMAP_HSMMC_WRITE(host->base, CON, con | OD);
  582. else
  583. OMAP_HSMMC_WRITE(host->base, CON, con & ~OD);
  584. }
  585. #ifdef CONFIG_PM
  586. /*
  587. * Restore the MMC host context, if it was lost as result of a
  588. * power state change.
  589. */
  590. static int omap_hsmmc_context_restore(struct omap_hsmmc_host *host)
  591. {
  592. struct mmc_ios *ios = &host->mmc->ios;
  593. struct omap_mmc_platform_data *pdata = host->pdata;
  594. int context_loss = 0;
  595. u32 hctl, capa;
  596. unsigned long timeout;
  597. if (pdata->get_context_loss_count) {
  598. context_loss = pdata->get_context_loss_count(host->dev);
  599. if (context_loss < 0)
  600. return 1;
  601. }
  602. dev_dbg(mmc_dev(host->mmc), "context was %slost\n",
  603. context_loss == host->context_loss ? "not " : "");
  604. if (host->context_loss == context_loss)
  605. return 1;
  606. /* Wait for hardware reset */
  607. timeout = jiffies + msecs_to_jiffies(MMC_TIMEOUT_MS);
  608. while ((OMAP_HSMMC_READ(host->base, SYSSTATUS) & RESETDONE) != RESETDONE
  609. && time_before(jiffies, timeout))
  610. ;
  611. /* Do software reset */
  612. OMAP_HSMMC_WRITE(host->base, SYSCONFIG, SOFTRESET);
  613. timeout = jiffies + msecs_to_jiffies(MMC_TIMEOUT_MS);
  614. while ((OMAP_HSMMC_READ(host->base, SYSSTATUS) & RESETDONE) != RESETDONE
  615. && time_before(jiffies, timeout))
  616. ;
  617. OMAP_HSMMC_WRITE(host->base, SYSCONFIG,
  618. OMAP_HSMMC_READ(host->base, SYSCONFIG) | AUTOIDLE);
  619. if (host->id == OMAP_MMC1_DEVID) {
  620. if (host->power_mode != MMC_POWER_OFF &&
  621. (1 << ios->vdd) <= MMC_VDD_23_24)
  622. hctl = SDVS18;
  623. else
  624. hctl = SDVS30;
  625. capa = VS30 | VS18;
  626. } else {
  627. hctl = SDVS18;
  628. capa = VS18;
  629. }
  630. OMAP_HSMMC_WRITE(host->base, HCTL,
  631. OMAP_HSMMC_READ(host->base, HCTL) | hctl);
  632. OMAP_HSMMC_WRITE(host->base, CAPA,
  633. OMAP_HSMMC_READ(host->base, CAPA) | capa);
  634. OMAP_HSMMC_WRITE(host->base, HCTL,
  635. OMAP_HSMMC_READ(host->base, HCTL) | SDBP);
  636. timeout = jiffies + msecs_to_jiffies(MMC_TIMEOUT_MS);
  637. while ((OMAP_HSMMC_READ(host->base, HCTL) & SDBP) != SDBP
  638. && time_before(jiffies, timeout))
  639. ;
  640. omap_hsmmc_disable_irq(host);
  641. /* Do not initialize card-specific things if the power is off */
  642. if (host->power_mode == MMC_POWER_OFF)
  643. goto out;
  644. omap_hsmmc_set_bus_width(host);
  645. omap_hsmmc_set_clock(host);
  646. omap_hsmmc_set_bus_mode(host);
  647. out:
  648. host->context_loss = context_loss;
  649. dev_dbg(mmc_dev(host->mmc), "context is restored\n");
  650. return 0;
  651. }
  652. /*
  653. * Save the MMC host context (store the number of power state changes so far).
  654. */
  655. static void omap_hsmmc_context_save(struct omap_hsmmc_host *host)
  656. {
  657. struct omap_mmc_platform_data *pdata = host->pdata;
  658. int context_loss;
  659. if (pdata->get_context_loss_count) {
  660. context_loss = pdata->get_context_loss_count(host->dev);
  661. if (context_loss < 0)
  662. return;
  663. host->context_loss = context_loss;
  664. }
  665. }
  666. #else
  667. static int omap_hsmmc_context_restore(struct omap_hsmmc_host *host)
  668. {
  669. return 0;
  670. }
  671. static void omap_hsmmc_context_save(struct omap_hsmmc_host *host)
  672. {
  673. }
  674. #endif
  675. /*
  676. * Send init stream sequence to card
  677. * before sending IDLE command
  678. */
  679. static void send_init_stream(struct omap_hsmmc_host *host)
  680. {
  681. int reg = 0;
  682. unsigned long timeout;
  683. if (host->protect_card)
  684. return;
  685. disable_irq(host->irq);
  686. OMAP_HSMMC_WRITE(host->base, IE, INT_EN_MASK);
  687. OMAP_HSMMC_WRITE(host->base, CON,
  688. OMAP_HSMMC_READ(host->base, CON) | INIT_STREAM);
  689. OMAP_HSMMC_WRITE(host->base, CMD, INIT_STREAM_CMD);
  690. timeout = jiffies + msecs_to_jiffies(MMC_TIMEOUT_MS);
  691. while ((reg != CC) && time_before(jiffies, timeout))
  692. reg = OMAP_HSMMC_READ(host->base, STAT) & CC;
  693. OMAP_HSMMC_WRITE(host->base, CON,
  694. OMAP_HSMMC_READ(host->base, CON) & ~INIT_STREAM);
  695. OMAP_HSMMC_WRITE(host->base, STAT, STAT_CLEAR);
  696. OMAP_HSMMC_READ(host->base, STAT);
  697. enable_irq(host->irq);
  698. }
  699. static inline
  700. int omap_hsmmc_cover_is_closed(struct omap_hsmmc_host *host)
  701. {
  702. int r = 1;
  703. if (mmc_slot(host).get_cover_state)
  704. r = mmc_slot(host).get_cover_state(host->dev, host->slot_id);
  705. return r;
  706. }
  707. static ssize_t
  708. omap_hsmmc_show_cover_switch(struct device *dev, struct device_attribute *attr,
  709. char *buf)
  710. {
  711. struct mmc_host *mmc = container_of(dev, struct mmc_host, class_dev);
  712. struct omap_hsmmc_host *host = mmc_priv(mmc);
  713. return sprintf(buf, "%s\n",
  714. omap_hsmmc_cover_is_closed(host) ? "closed" : "open");
  715. }
  716. static DEVICE_ATTR(cover_switch, S_IRUGO, omap_hsmmc_show_cover_switch, NULL);
  717. static ssize_t
  718. omap_hsmmc_show_slot_name(struct device *dev, struct device_attribute *attr,
  719. char *buf)
  720. {
  721. struct mmc_host *mmc = container_of(dev, struct mmc_host, class_dev);
  722. struct omap_hsmmc_host *host = mmc_priv(mmc);
  723. return sprintf(buf, "%s\n", mmc_slot(host).name);
  724. }
  725. static DEVICE_ATTR(slot_name, S_IRUGO, omap_hsmmc_show_slot_name, NULL);
  726. /*
  727. * Configure the response type and send the cmd.
  728. */
  729. static void
  730. omap_hsmmc_start_command(struct omap_hsmmc_host *host, struct mmc_command *cmd,
  731. struct mmc_data *data)
  732. {
  733. int cmdreg = 0, resptype = 0, cmdtype = 0;
  734. dev_dbg(mmc_dev(host->mmc), "%s: CMD%d, argument 0x%08x\n",
  735. mmc_hostname(host->mmc), cmd->opcode, cmd->arg);
  736. host->cmd = cmd;
  737. omap_hsmmc_enable_irq(host, cmd);
  738. host->response_busy = 0;
  739. if (cmd->flags & MMC_RSP_PRESENT) {
  740. if (cmd->flags & MMC_RSP_136)
  741. resptype = 1;
  742. else if (cmd->flags & MMC_RSP_BUSY) {
  743. resptype = 3;
  744. host->response_busy = 1;
  745. } else
  746. resptype = 2;
  747. }
  748. /*
  749. * Unlike OMAP1 controller, the cmdtype does not seem to be based on
  750. * ac, bc, adtc, bcr. Only commands ending an open ended transfer need
  751. * a val of 0x3, rest 0x0.
  752. */
  753. if (cmd == host->mrq->stop)
  754. cmdtype = 0x3;
  755. cmdreg = (cmd->opcode << 24) | (resptype << 16) | (cmdtype << 22);
  756. if (data) {
  757. cmdreg |= DP_SELECT | MSBS | BCE;
  758. if (data->flags & MMC_DATA_READ)
  759. cmdreg |= DDIR;
  760. else
  761. cmdreg &= ~(DDIR);
  762. }
  763. if (host->use_dma)
  764. cmdreg |= DMA_EN;
  765. host->req_in_progress = 1;
  766. OMAP_HSMMC_WRITE(host->base, ARG, cmd->arg);
  767. OMAP_HSMMC_WRITE(host->base, CMD, cmdreg);
  768. }
  769. static int
  770. omap_hsmmc_get_dma_dir(struct omap_hsmmc_host *host, struct mmc_data *data)
  771. {
  772. if (data->flags & MMC_DATA_WRITE)
  773. return DMA_TO_DEVICE;
  774. else
  775. return DMA_FROM_DEVICE;
  776. }
  777. static void omap_hsmmc_request_done(struct omap_hsmmc_host *host, struct mmc_request *mrq)
  778. {
  779. int dma_ch;
  780. spin_lock(&host->irq_lock);
  781. host->req_in_progress = 0;
  782. dma_ch = host->dma_ch;
  783. spin_unlock(&host->irq_lock);
  784. omap_hsmmc_disable_irq(host);
  785. /* Do not complete the request if DMA is still in progress */
  786. if (mrq->data && host->use_dma && dma_ch != -1)
  787. return;
  788. host->mrq = NULL;
  789. mmc_request_done(host->mmc, mrq);
  790. }
  791. /*
  792. * Notify the transfer complete to MMC core
  793. */
  794. static void
  795. omap_hsmmc_xfer_done(struct omap_hsmmc_host *host, struct mmc_data *data)
  796. {
  797. if (!data) {
  798. struct mmc_request *mrq = host->mrq;
  799. /* TC before CC from CMD6 - don't know why, but it happens */
  800. if (host->cmd && host->cmd->opcode == 6 &&
  801. host->response_busy) {
  802. host->response_busy = 0;
  803. return;
  804. }
  805. omap_hsmmc_request_done(host, mrq);
  806. return;
  807. }
  808. host->data = NULL;
  809. if (!data->error)
  810. data->bytes_xfered += data->blocks * (data->blksz);
  811. else
  812. data->bytes_xfered = 0;
  813. if (!data->stop) {
  814. omap_hsmmc_request_done(host, data->mrq);
  815. return;
  816. }
  817. omap_hsmmc_start_command(host, data->stop, NULL);
  818. }
  819. /*
  820. * Notify the core about command completion
  821. */
  822. static void
  823. omap_hsmmc_cmd_done(struct omap_hsmmc_host *host, struct mmc_command *cmd)
  824. {
  825. host->cmd = NULL;
  826. if (cmd->flags & MMC_RSP_PRESENT) {
  827. if (cmd->flags & MMC_RSP_136) {
  828. /* response type 2 */
  829. cmd->resp[3] = OMAP_HSMMC_READ(host->base, RSP10);
  830. cmd->resp[2] = OMAP_HSMMC_READ(host->base, RSP32);
  831. cmd->resp[1] = OMAP_HSMMC_READ(host->base, RSP54);
  832. cmd->resp[0] = OMAP_HSMMC_READ(host->base, RSP76);
  833. } else {
  834. /* response types 1, 1b, 3, 4, 5, 6 */
  835. cmd->resp[0] = OMAP_HSMMC_READ(host->base, RSP10);
  836. }
  837. }
  838. if ((host->data == NULL && !host->response_busy) || cmd->error)
  839. omap_hsmmc_request_done(host, cmd->mrq);
  840. }
  841. /*
  842. * DMA clean up for command errors
  843. */
  844. static void omap_hsmmc_dma_cleanup(struct omap_hsmmc_host *host, int errno)
  845. {
  846. int dma_ch;
  847. host->data->error = errno;
  848. spin_lock(&host->irq_lock);
  849. dma_ch = host->dma_ch;
  850. host->dma_ch = -1;
  851. spin_unlock(&host->irq_lock);
  852. if (host->use_dma && dma_ch != -1) {
  853. dma_unmap_sg(mmc_dev(host->mmc), host->data->sg,
  854. host->data->sg_len,
  855. omap_hsmmc_get_dma_dir(host, host->data));
  856. omap_free_dma(dma_ch);
  857. }
  858. host->data = NULL;
  859. }
  860. /*
  861. * Readable error output
  862. */
  863. #ifdef CONFIG_MMC_DEBUG
  864. static void omap_hsmmc_dbg_report_irq(struct omap_hsmmc_host *host, u32 status)
  865. {
  866. /* --- means reserved bit without definition at documentation */
  867. static const char *omap_hsmmc_status_bits[] = {
  868. "CC" , "TC" , "BGE", "---", "BWR" , "BRR" , "---" , "---" ,
  869. "CIRQ", "OBI" , "---", "---", "---" , "---" , "---" , "ERRI",
  870. "CTO" , "CCRC", "CEB", "CIE", "DTO" , "DCRC", "DEB" , "---" ,
  871. "ACE" , "---" , "---", "---", "CERR", "BADA", "---" , "---"
  872. };
  873. char res[256];
  874. char *buf = res;
  875. int len, i;
  876. len = sprintf(buf, "MMC IRQ 0x%x :", status);
  877. buf += len;
  878. for (i = 0; i < ARRAY_SIZE(omap_hsmmc_status_bits); i++)
  879. if (status & (1 << i)) {
  880. len = sprintf(buf, " %s", omap_hsmmc_status_bits[i]);
  881. buf += len;
  882. }
  883. dev_dbg(mmc_dev(host->mmc), "%s\n", res);
  884. }
  885. #else
  886. static inline void omap_hsmmc_dbg_report_irq(struct omap_hsmmc_host *host,
  887. u32 status)
  888. {
  889. }
  890. #endif /* CONFIG_MMC_DEBUG */
  891. /*
  892. * MMC controller internal state machines reset
  893. *
  894. * Used to reset command or data internal state machines, using respectively
  895. * SRC or SRD bit of SYSCTL register
  896. * Can be called from interrupt context
  897. */
  898. static inline void omap_hsmmc_reset_controller_fsm(struct omap_hsmmc_host *host,
  899. unsigned long bit)
  900. {
  901. unsigned long i = 0;
  902. unsigned long limit = (loops_per_jiffy *
  903. msecs_to_jiffies(MMC_TIMEOUT_MS));
  904. OMAP_HSMMC_WRITE(host->base, SYSCTL,
  905. OMAP_HSMMC_READ(host->base, SYSCTL) | bit);
  906. /*
  907. * OMAP4 ES2 and greater has an updated reset logic.
  908. * Monitor a 0->1 transition first
  909. */
  910. if (mmc_slot(host).features & HSMMC_HAS_UPDATED_RESET) {
  911. while ((!(OMAP_HSMMC_READ(host->base, SYSCTL) & bit))
  912. && (i++ < limit))
  913. cpu_relax();
  914. }
  915. i = 0;
  916. while ((OMAP_HSMMC_READ(host->base, SYSCTL) & bit) &&
  917. (i++ < limit))
  918. cpu_relax();
  919. if (OMAP_HSMMC_READ(host->base, SYSCTL) & bit)
  920. dev_err(mmc_dev(host->mmc),
  921. "Timeout waiting on controller reset in %s\n",
  922. __func__);
  923. }
  924. static void omap_hsmmc_do_irq(struct omap_hsmmc_host *host, int status)
  925. {
  926. struct mmc_data *data;
  927. int end_cmd = 0, end_trans = 0;
  928. if (!host->req_in_progress) {
  929. do {
  930. OMAP_HSMMC_WRITE(host->base, STAT, status);
  931. /* Flush posted write */
  932. status = OMAP_HSMMC_READ(host->base, STAT);
  933. } while (status & INT_EN_MASK);
  934. return;
  935. }
  936. data = host->data;
  937. dev_dbg(mmc_dev(host->mmc), "IRQ Status is %x\n", status);
  938. if (status & ERR) {
  939. omap_hsmmc_dbg_report_irq(host, status);
  940. if ((status & CMD_TIMEOUT) ||
  941. (status & CMD_CRC)) {
  942. if (host->cmd) {
  943. if (status & CMD_TIMEOUT) {
  944. omap_hsmmc_reset_controller_fsm(host,
  945. SRC);
  946. host->cmd->error = -ETIMEDOUT;
  947. } else {
  948. host->cmd->error = -EILSEQ;
  949. }
  950. end_cmd = 1;
  951. }
  952. if (host->data || host->response_busy) {
  953. if (host->data)
  954. omap_hsmmc_dma_cleanup(host,
  955. -ETIMEDOUT);
  956. host->response_busy = 0;
  957. omap_hsmmc_reset_controller_fsm(host, SRD);
  958. }
  959. }
  960. if ((status & DATA_TIMEOUT) ||
  961. (status & DATA_CRC)) {
  962. if (host->data || host->response_busy) {
  963. int err = (status & DATA_TIMEOUT) ?
  964. -ETIMEDOUT : -EILSEQ;
  965. if (host->data)
  966. omap_hsmmc_dma_cleanup(host, err);
  967. else
  968. host->mrq->cmd->error = err;
  969. host->response_busy = 0;
  970. omap_hsmmc_reset_controller_fsm(host, SRD);
  971. end_trans = 1;
  972. }
  973. }
  974. if (status & CARD_ERR) {
  975. dev_dbg(mmc_dev(host->mmc),
  976. "Ignoring card err CMD%d\n", host->cmd->opcode);
  977. if (host->cmd)
  978. end_cmd = 1;
  979. if (host->data)
  980. end_trans = 1;
  981. }
  982. }
  983. OMAP_HSMMC_WRITE(host->base, STAT, status);
  984. if (end_cmd || ((status & CC) && host->cmd))
  985. omap_hsmmc_cmd_done(host, host->cmd);
  986. if ((end_trans || (status & TC)) && host->mrq)
  987. omap_hsmmc_xfer_done(host, data);
  988. }
  989. /*
  990. * MMC controller IRQ handler
  991. */
  992. static irqreturn_t omap_hsmmc_irq(int irq, void *dev_id)
  993. {
  994. struct omap_hsmmc_host *host = dev_id;
  995. int status;
  996. status = OMAP_HSMMC_READ(host->base, STAT);
  997. do {
  998. omap_hsmmc_do_irq(host, status);
  999. /* Flush posted write */
  1000. status = OMAP_HSMMC_READ(host->base, STAT);
  1001. } while (status & INT_EN_MASK);
  1002. return IRQ_HANDLED;
  1003. }
  1004. static void set_sd_bus_power(struct omap_hsmmc_host *host)
  1005. {
  1006. unsigned long i;
  1007. OMAP_HSMMC_WRITE(host->base, HCTL,
  1008. OMAP_HSMMC_READ(host->base, HCTL) | SDBP);
  1009. for (i = 0; i < loops_per_jiffy; i++) {
  1010. if (OMAP_HSMMC_READ(host->base, HCTL) & SDBP)
  1011. break;
  1012. cpu_relax();
  1013. }
  1014. }
  1015. /*
  1016. * Switch MMC interface voltage ... only relevant for MMC1.
  1017. *
  1018. * MMC2 and MMC3 use fixed 1.8V levels, and maybe a transceiver.
  1019. * The MMC2 transceiver controls are used instead of DAT4..DAT7.
  1020. * Some chips, like eMMC ones, use internal transceivers.
  1021. */
  1022. static int omap_hsmmc_switch_opcond(struct omap_hsmmc_host *host, int vdd)
  1023. {
  1024. u32 reg_val = 0;
  1025. int ret;
  1026. /* Disable the clocks */
  1027. pm_runtime_put_sync(host->dev);
  1028. if (host->got_dbclk)
  1029. clk_disable(host->dbclk);
  1030. /* Turn the power off */
  1031. ret = mmc_slot(host).set_power(host->dev, host->slot_id, 0, 0);
  1032. /* Turn the power ON with given VDD 1.8 or 3.0v */
  1033. if (!ret)
  1034. ret = mmc_slot(host).set_power(host->dev, host->slot_id, 1,
  1035. vdd);
  1036. pm_runtime_get_sync(host->dev);
  1037. if (host->got_dbclk)
  1038. clk_enable(host->dbclk);
  1039. if (ret != 0)
  1040. goto err;
  1041. OMAP_HSMMC_WRITE(host->base, HCTL,
  1042. OMAP_HSMMC_READ(host->base, HCTL) & SDVSCLR);
  1043. reg_val = OMAP_HSMMC_READ(host->base, HCTL);
  1044. /*
  1045. * If a MMC dual voltage card is detected, the set_ios fn calls
  1046. * this fn with VDD bit set for 1.8V. Upon card removal from the
  1047. * slot, omap_hsmmc_set_ios sets the VDD back to 3V on MMC_POWER_OFF.
  1048. *
  1049. * Cope with a bit of slop in the range ... per data sheets:
  1050. * - "1.8V" for vdds_mmc1/vdds_mmc1a can be up to 2.45V max,
  1051. * but recommended values are 1.71V to 1.89V
  1052. * - "3.0V" for vdds_mmc1/vdds_mmc1a can be up to 3.5V max,
  1053. * but recommended values are 2.7V to 3.3V
  1054. *
  1055. * Board setup code shouldn't permit anything very out-of-range.
  1056. * TWL4030-family VMMC1 and VSIM regulators are fine (avoiding the
  1057. * middle range) but VSIM can't power DAT4..DAT7 at more than 3V.
  1058. */
  1059. if ((1 << vdd) <= MMC_VDD_23_24)
  1060. reg_val |= SDVS18;
  1061. else
  1062. reg_val |= SDVS30;
  1063. OMAP_HSMMC_WRITE(host->base, HCTL, reg_val);
  1064. set_sd_bus_power(host);
  1065. return 0;
  1066. err:
  1067. dev_dbg(mmc_dev(host->mmc), "Unable to switch operating voltage\n");
  1068. return ret;
  1069. }
  1070. /* Protect the card while the cover is open */
  1071. static void omap_hsmmc_protect_card(struct omap_hsmmc_host *host)
  1072. {
  1073. if (!mmc_slot(host).get_cover_state)
  1074. return;
  1075. host->reqs_blocked = 0;
  1076. if (mmc_slot(host).get_cover_state(host->dev, host->slot_id)) {
  1077. if (host->protect_card) {
  1078. pr_info("%s: cover is closed, "
  1079. "card is now accessible\n",
  1080. mmc_hostname(host->mmc));
  1081. host->protect_card = 0;
  1082. }
  1083. } else {
  1084. if (!host->protect_card) {
  1085. pr_info("%s: cover is open, "
  1086. "card is now inaccessible\n",
  1087. mmc_hostname(host->mmc));
  1088. host->protect_card = 1;
  1089. }
  1090. }
  1091. }
  1092. /*
  1093. * Work Item to notify the core about card insertion/removal
  1094. */
  1095. static void omap_hsmmc_detect(struct work_struct *work)
  1096. {
  1097. struct omap_hsmmc_host *host =
  1098. container_of(work, struct omap_hsmmc_host, mmc_carddetect_work);
  1099. struct omap_mmc_slot_data *slot = &mmc_slot(host);
  1100. int carddetect;
  1101. if (host->suspended)
  1102. return;
  1103. sysfs_notify(&host->mmc->class_dev.kobj, NULL, "cover_switch");
  1104. if (slot->card_detect)
  1105. carddetect = slot->card_detect(host->dev, host->slot_id);
  1106. else {
  1107. omap_hsmmc_protect_card(host);
  1108. carddetect = -ENOSYS;
  1109. }
  1110. if (carddetect)
  1111. mmc_detect_change(host->mmc, (HZ * 200) / 1000);
  1112. else
  1113. mmc_detect_change(host->mmc, (HZ * 50) / 1000);
  1114. }
  1115. /*
  1116. * ISR for handling card insertion and removal
  1117. */
  1118. static irqreturn_t omap_hsmmc_cd_handler(int irq, void *dev_id)
  1119. {
  1120. struct omap_hsmmc_host *host = (struct omap_hsmmc_host *)dev_id;
  1121. if (host->suspended)
  1122. return IRQ_HANDLED;
  1123. schedule_work(&host->mmc_carddetect_work);
  1124. return IRQ_HANDLED;
  1125. }
  1126. static int omap_hsmmc_get_dma_sync_dev(struct omap_hsmmc_host *host,
  1127. struct mmc_data *data)
  1128. {
  1129. int sync_dev;
  1130. if (data->flags & MMC_DATA_WRITE)
  1131. sync_dev = host->dma_line_tx;
  1132. else
  1133. sync_dev = host->dma_line_rx;
  1134. return sync_dev;
  1135. }
  1136. static void omap_hsmmc_config_dma_params(struct omap_hsmmc_host *host,
  1137. struct mmc_data *data,
  1138. struct scatterlist *sgl)
  1139. {
  1140. int blksz, nblk, dma_ch;
  1141. dma_ch = host->dma_ch;
  1142. if (data->flags & MMC_DATA_WRITE) {
  1143. omap_set_dma_dest_params(dma_ch, 0, OMAP_DMA_AMODE_CONSTANT,
  1144. (host->mapbase + OMAP_HSMMC_DATA), 0, 0);
  1145. omap_set_dma_src_params(dma_ch, 0, OMAP_DMA_AMODE_POST_INC,
  1146. sg_dma_address(sgl), 0, 0);
  1147. } else {
  1148. omap_set_dma_src_params(dma_ch, 0, OMAP_DMA_AMODE_CONSTANT,
  1149. (host->mapbase + OMAP_HSMMC_DATA), 0, 0);
  1150. omap_set_dma_dest_params(dma_ch, 0, OMAP_DMA_AMODE_POST_INC,
  1151. sg_dma_address(sgl), 0, 0);
  1152. }
  1153. blksz = host->data->blksz;
  1154. nblk = sg_dma_len(sgl) / blksz;
  1155. omap_set_dma_transfer_params(dma_ch, OMAP_DMA_DATA_TYPE_S32,
  1156. blksz / 4, nblk, OMAP_DMA_SYNC_FRAME,
  1157. omap_hsmmc_get_dma_sync_dev(host, data),
  1158. !(data->flags & MMC_DATA_WRITE));
  1159. omap_start_dma(dma_ch);
  1160. }
  1161. /*
  1162. * DMA call back function
  1163. */
  1164. static void omap_hsmmc_dma_cb(int lch, u16 ch_status, void *cb_data)
  1165. {
  1166. struct omap_hsmmc_host *host = cb_data;
  1167. struct mmc_data *data;
  1168. int dma_ch, req_in_progress;
  1169. if (!(ch_status & OMAP_DMA_BLOCK_IRQ)) {
  1170. dev_warn(mmc_dev(host->mmc), "unexpected dma status %x\n",
  1171. ch_status);
  1172. return;
  1173. }
  1174. spin_lock(&host->irq_lock);
  1175. if (host->dma_ch < 0) {
  1176. spin_unlock(&host->irq_lock);
  1177. return;
  1178. }
  1179. data = host->mrq->data;
  1180. host->dma_sg_idx++;
  1181. if (host->dma_sg_idx < host->dma_len) {
  1182. /* Fire up the next transfer. */
  1183. omap_hsmmc_config_dma_params(host, data,
  1184. data->sg + host->dma_sg_idx);
  1185. spin_unlock(&host->irq_lock);
  1186. return;
  1187. }
  1188. if (!data->host_cookie)
  1189. dma_unmap_sg(mmc_dev(host->mmc), data->sg, data->sg_len,
  1190. omap_hsmmc_get_dma_dir(host, data));
  1191. req_in_progress = host->req_in_progress;
  1192. dma_ch = host->dma_ch;
  1193. host->dma_ch = -1;
  1194. spin_unlock(&host->irq_lock);
  1195. omap_free_dma(dma_ch);
  1196. /* If DMA has finished after TC, complete the request */
  1197. if (!req_in_progress) {
  1198. struct mmc_request *mrq = host->mrq;
  1199. host->mrq = NULL;
  1200. mmc_request_done(host->mmc, mrq);
  1201. }
  1202. }
  1203. static int omap_hsmmc_pre_dma_transfer(struct omap_hsmmc_host *host,
  1204. struct mmc_data *data,
  1205. struct omap_hsmmc_next *next)
  1206. {
  1207. int dma_len;
  1208. if (!next && data->host_cookie &&
  1209. data->host_cookie != host->next_data.cookie) {
  1210. pr_warning("[%s] invalid cookie: data->host_cookie %d"
  1211. " host->next_data.cookie %d\n",
  1212. __func__, data->host_cookie, host->next_data.cookie);
  1213. data->host_cookie = 0;
  1214. }
  1215. /* Check if next job is already prepared */
  1216. if (next ||
  1217. (!next && data->host_cookie != host->next_data.cookie)) {
  1218. dma_len = dma_map_sg(mmc_dev(host->mmc), data->sg,
  1219. data->sg_len,
  1220. omap_hsmmc_get_dma_dir(host, data));
  1221. } else {
  1222. dma_len = host->next_data.dma_len;
  1223. host->next_data.dma_len = 0;
  1224. }
  1225. if (dma_len == 0)
  1226. return -EINVAL;
  1227. if (next) {
  1228. next->dma_len = dma_len;
  1229. data->host_cookie = ++next->cookie < 0 ? 1 : next->cookie;
  1230. } else
  1231. host->dma_len = dma_len;
  1232. return 0;
  1233. }
  1234. /*
  1235. * Routine to configure and start DMA for the MMC card
  1236. */
  1237. static int omap_hsmmc_start_dma_transfer(struct omap_hsmmc_host *host,
  1238. struct mmc_request *req)
  1239. {
  1240. int dma_ch = 0, ret = 0, i;
  1241. struct mmc_data *data = req->data;
  1242. /* Sanity check: all the SG entries must be aligned by block size. */
  1243. for (i = 0; i < data->sg_len; i++) {
  1244. struct scatterlist *sgl;
  1245. sgl = data->sg + i;
  1246. if (sgl->length % data->blksz)
  1247. return -EINVAL;
  1248. }
  1249. if ((data->blksz % 4) != 0)
  1250. /* REVISIT: The MMC buffer increments only when MSB is written.
  1251. * Return error for blksz which is non multiple of four.
  1252. */
  1253. return -EINVAL;
  1254. BUG_ON(host->dma_ch != -1);
  1255. ret = omap_request_dma(omap_hsmmc_get_dma_sync_dev(host, data),
  1256. "MMC/SD", omap_hsmmc_dma_cb, host, &dma_ch);
  1257. if (ret != 0) {
  1258. dev_err(mmc_dev(host->mmc),
  1259. "%s: omap_request_dma() failed with %d\n",
  1260. mmc_hostname(host->mmc), ret);
  1261. return ret;
  1262. }
  1263. ret = omap_hsmmc_pre_dma_transfer(host, data, NULL);
  1264. if (ret)
  1265. return ret;
  1266. host->dma_ch = dma_ch;
  1267. host->dma_sg_idx = 0;
  1268. omap_hsmmc_config_dma_params(host, data, data->sg);
  1269. return 0;
  1270. }
  1271. static void set_data_timeout(struct omap_hsmmc_host *host,
  1272. unsigned int timeout_ns,
  1273. unsigned int timeout_clks)
  1274. {
  1275. unsigned int timeout, cycle_ns;
  1276. uint32_t reg, clkd, dto = 0;
  1277. reg = OMAP_HSMMC_READ(host->base, SYSCTL);
  1278. clkd = (reg & CLKD_MASK) >> CLKD_SHIFT;
  1279. if (clkd == 0)
  1280. clkd = 1;
  1281. cycle_ns = 1000000000 / (clk_get_rate(host->fclk) / clkd);
  1282. timeout = timeout_ns / cycle_ns;
  1283. timeout += timeout_clks;
  1284. if (timeout) {
  1285. while ((timeout & 0x80000000) == 0) {
  1286. dto += 1;
  1287. timeout <<= 1;
  1288. }
  1289. dto = 31 - dto;
  1290. timeout <<= 1;
  1291. if (timeout && dto)
  1292. dto += 1;
  1293. if (dto >= 13)
  1294. dto -= 13;
  1295. else
  1296. dto = 0;
  1297. if (dto > 14)
  1298. dto = 14;
  1299. }
  1300. reg &= ~DTO_MASK;
  1301. reg |= dto << DTO_SHIFT;
  1302. OMAP_HSMMC_WRITE(host->base, SYSCTL, reg);
  1303. }
  1304. /*
  1305. * Configure block length for MMC/SD cards and initiate the transfer.
  1306. */
  1307. static int
  1308. omap_hsmmc_prepare_data(struct omap_hsmmc_host *host, struct mmc_request *req)
  1309. {
  1310. int ret;
  1311. host->data = req->data;
  1312. if (req->data == NULL) {
  1313. OMAP_HSMMC_WRITE(host->base, BLK, 0);
  1314. /*
  1315. * Set an arbitrary 100ms data timeout for commands with
  1316. * busy signal.
  1317. */
  1318. if (req->cmd->flags & MMC_RSP_BUSY)
  1319. set_data_timeout(host, 100000000U, 0);
  1320. return 0;
  1321. }
  1322. OMAP_HSMMC_WRITE(host->base, BLK, (req->data->blksz)
  1323. | (req->data->blocks << 16));
  1324. set_data_timeout(host, req->data->timeout_ns, req->data->timeout_clks);
  1325. if (host->use_dma) {
  1326. ret = omap_hsmmc_start_dma_transfer(host, req);
  1327. if (ret != 0) {
  1328. dev_dbg(mmc_dev(host->mmc), "MMC start dma failure\n");
  1329. return ret;
  1330. }
  1331. }
  1332. return 0;
  1333. }
  1334. static void omap_hsmmc_post_req(struct mmc_host *mmc, struct mmc_request *mrq,
  1335. int err)
  1336. {
  1337. struct omap_hsmmc_host *host = mmc_priv(mmc);
  1338. struct mmc_data *data = mrq->data;
  1339. if (host->use_dma) {
  1340. dma_unmap_sg(mmc_dev(host->mmc), data->sg, data->sg_len,
  1341. omap_hsmmc_get_dma_dir(host, data));
  1342. data->host_cookie = 0;
  1343. }
  1344. }
  1345. static void omap_hsmmc_pre_req(struct mmc_host *mmc, struct mmc_request *mrq,
  1346. bool is_first_req)
  1347. {
  1348. struct omap_hsmmc_host *host = mmc_priv(mmc);
  1349. if (mrq->data->host_cookie) {
  1350. mrq->data->host_cookie = 0;
  1351. return ;
  1352. }
  1353. if (host->use_dma)
  1354. if (omap_hsmmc_pre_dma_transfer(host, mrq->data,
  1355. &host->next_data))
  1356. mrq->data->host_cookie = 0;
  1357. }
  1358. /*
  1359. * Request function. for read/write operation
  1360. */
  1361. static void omap_hsmmc_request(struct mmc_host *mmc, struct mmc_request *req)
  1362. {
  1363. struct omap_hsmmc_host *host = mmc_priv(mmc);
  1364. int err;
  1365. BUG_ON(host->req_in_progress);
  1366. BUG_ON(host->dma_ch != -1);
  1367. if (host->protect_card) {
  1368. if (host->reqs_blocked < 3) {
  1369. /*
  1370. * Ensure the controller is left in a consistent
  1371. * state by resetting the command and data state
  1372. * machines.
  1373. */
  1374. omap_hsmmc_reset_controller_fsm(host, SRD);
  1375. omap_hsmmc_reset_controller_fsm(host, SRC);
  1376. host->reqs_blocked += 1;
  1377. }
  1378. req->cmd->error = -EBADF;
  1379. if (req->data)
  1380. req->data->error = -EBADF;
  1381. req->cmd->retries = 0;
  1382. mmc_request_done(mmc, req);
  1383. return;
  1384. } else if (host->reqs_blocked)
  1385. host->reqs_blocked = 0;
  1386. WARN_ON(host->mrq != NULL);
  1387. host->mrq = req;
  1388. err = omap_hsmmc_prepare_data(host, req);
  1389. if (err) {
  1390. req->cmd->error = err;
  1391. if (req->data)
  1392. req->data->error = err;
  1393. host->mrq = NULL;
  1394. mmc_request_done(mmc, req);
  1395. return;
  1396. }
  1397. omap_hsmmc_start_command(host, req->cmd, req->data);
  1398. }
  1399. /* Routine to configure clock values. Exposed API to core */
  1400. static void omap_hsmmc_set_ios(struct mmc_host *mmc, struct mmc_ios *ios)
  1401. {
  1402. struct omap_hsmmc_host *host = mmc_priv(mmc);
  1403. int do_send_init_stream = 0;
  1404. pm_runtime_get_sync(host->dev);
  1405. if (ios->power_mode != host->power_mode) {
  1406. switch (ios->power_mode) {
  1407. case MMC_POWER_OFF:
  1408. mmc_slot(host).set_power(host->dev, host->slot_id,
  1409. 0, 0);
  1410. host->vdd = 0;
  1411. break;
  1412. case MMC_POWER_UP:
  1413. mmc_slot(host).set_power(host->dev, host->slot_id,
  1414. 1, ios->vdd);
  1415. host->vdd = ios->vdd;
  1416. break;
  1417. case MMC_POWER_ON:
  1418. do_send_init_stream = 1;
  1419. break;
  1420. }
  1421. host->power_mode = ios->power_mode;
  1422. }
  1423. /* FIXME: set registers based only on changes to ios */
  1424. omap_hsmmc_set_bus_width(host);
  1425. if (host->pdata->controller_flags & OMAP_HSMMC_SUPPORTS_DUAL_VOLT) {
  1426. /* Only MMC1 can interface at 3V without some flavor
  1427. * of external transceiver; but they all handle 1.8V.
  1428. */
  1429. if ((OMAP_HSMMC_READ(host->base, HCTL) & SDVSDET) &&
  1430. (ios->vdd == DUAL_VOLT_OCR_BIT)) {
  1431. /*
  1432. * The mmc_select_voltage fn of the core does
  1433. * not seem to set the power_mode to
  1434. * MMC_POWER_UP upon recalculating the voltage.
  1435. * vdd 1.8v.
  1436. */
  1437. if (omap_hsmmc_switch_opcond(host, ios->vdd) != 0)
  1438. dev_dbg(mmc_dev(host->mmc),
  1439. "Switch operation failed\n");
  1440. }
  1441. }
  1442. omap_hsmmc_set_clock(host);
  1443. if (do_send_init_stream)
  1444. send_init_stream(host);
  1445. omap_hsmmc_set_bus_mode(host);
  1446. pm_runtime_put_autosuspend(host->dev);
  1447. }
  1448. static int omap_hsmmc_get_cd(struct mmc_host *mmc)
  1449. {
  1450. struct omap_hsmmc_host *host = mmc_priv(mmc);
  1451. if (!mmc_slot(host).card_detect)
  1452. return -ENOSYS;
  1453. return mmc_slot(host).card_detect(host->dev, host->slot_id);
  1454. }
  1455. static int omap_hsmmc_get_ro(struct mmc_host *mmc)
  1456. {
  1457. struct omap_hsmmc_host *host = mmc_priv(mmc);
  1458. if (!mmc_slot(host).get_ro)
  1459. return -ENOSYS;
  1460. return mmc_slot(host).get_ro(host->dev, 0);
  1461. }
  1462. static void omap_hsmmc_init_card(struct mmc_host *mmc, struct mmc_card *card)
  1463. {
  1464. struct omap_hsmmc_host *host = mmc_priv(mmc);
  1465. if (mmc_slot(host).init_card)
  1466. mmc_slot(host).init_card(card);
  1467. }
  1468. static void omap_hsmmc_conf_bus_power(struct omap_hsmmc_host *host)
  1469. {
  1470. u32 hctl, capa, value;
  1471. /* Only MMC1 supports 3.0V */
  1472. if (host->pdata->controller_flags & OMAP_HSMMC_SUPPORTS_DUAL_VOLT) {
  1473. hctl = SDVS30;
  1474. capa = VS30 | VS18;
  1475. } else {
  1476. hctl = SDVS18;
  1477. capa = VS18;
  1478. }
  1479. value = OMAP_HSMMC_READ(host->base, HCTL) & ~SDVS_MASK;
  1480. OMAP_HSMMC_WRITE(host->base, HCTL, value | hctl);
  1481. value = OMAP_HSMMC_READ(host->base, CAPA);
  1482. OMAP_HSMMC_WRITE(host->base, CAPA, value | capa);
  1483. /* Set the controller to AUTO IDLE mode */
  1484. value = OMAP_HSMMC_READ(host->base, SYSCONFIG);
  1485. OMAP_HSMMC_WRITE(host->base, SYSCONFIG, value | AUTOIDLE);
  1486. /* Set SD bus power bit */
  1487. set_sd_bus_power(host);
  1488. }
  1489. static int omap_hsmmc_enable_fclk(struct mmc_host *mmc)
  1490. {
  1491. struct omap_hsmmc_host *host = mmc_priv(mmc);
  1492. pm_runtime_get_sync(host->dev);
  1493. return 0;
  1494. }
  1495. static int omap_hsmmc_disable_fclk(struct mmc_host *mmc, int lazy)
  1496. {
  1497. struct omap_hsmmc_host *host = mmc_priv(mmc);
  1498. pm_runtime_mark_last_busy(host->dev);
  1499. pm_runtime_put_autosuspend(host->dev);
  1500. return 0;
  1501. }
  1502. static const struct mmc_host_ops omap_hsmmc_ops = {
  1503. .enable = omap_hsmmc_enable_fclk,
  1504. .disable = omap_hsmmc_disable_fclk,
  1505. .post_req = omap_hsmmc_post_req,
  1506. .pre_req = omap_hsmmc_pre_req,
  1507. .request = omap_hsmmc_request,
  1508. .set_ios = omap_hsmmc_set_ios,
  1509. .get_cd = omap_hsmmc_get_cd,
  1510. .get_ro = omap_hsmmc_get_ro,
  1511. .init_card = omap_hsmmc_init_card,
  1512. /* NYET -- enable_sdio_irq */
  1513. };
  1514. #ifdef CONFIG_DEBUG_FS
  1515. static int omap_hsmmc_regs_show(struct seq_file *s, void *data)
  1516. {
  1517. struct mmc_host *mmc = s->private;
  1518. struct omap_hsmmc_host *host = mmc_priv(mmc);
  1519. int context_loss = 0;
  1520. if (host->pdata->get_context_loss_count)
  1521. context_loss = host->pdata->get_context_loss_count(host->dev);
  1522. seq_printf(s, "mmc%d:\n"
  1523. " enabled:\t%d\n"
  1524. " dpm_state:\t%d\n"
  1525. " nesting_cnt:\t%d\n"
  1526. " ctx_loss:\t%d:%d\n"
  1527. "\nregs:\n",
  1528. mmc->index, mmc->enabled ? 1 : 0,
  1529. host->dpm_state, mmc->nesting_cnt,
  1530. host->context_loss, context_loss);
  1531. if (host->suspended) {
  1532. seq_printf(s, "host suspended, can't read registers\n");
  1533. return 0;
  1534. }
  1535. pm_runtime_get_sync(host->dev);
  1536. seq_printf(s, "SYSCONFIG:\t0x%08x\n",
  1537. OMAP_HSMMC_READ(host->base, SYSCONFIG));
  1538. seq_printf(s, "CON:\t\t0x%08x\n",
  1539. OMAP_HSMMC_READ(host->base, CON));
  1540. seq_printf(s, "HCTL:\t\t0x%08x\n",
  1541. OMAP_HSMMC_READ(host->base, HCTL));
  1542. seq_printf(s, "SYSCTL:\t\t0x%08x\n",
  1543. OMAP_HSMMC_READ(host->base, SYSCTL));
  1544. seq_printf(s, "IE:\t\t0x%08x\n",
  1545. OMAP_HSMMC_READ(host->base, IE));
  1546. seq_printf(s, "ISE:\t\t0x%08x\n",
  1547. OMAP_HSMMC_READ(host->base, ISE));
  1548. seq_printf(s, "CAPA:\t\t0x%08x\n",
  1549. OMAP_HSMMC_READ(host->base, CAPA));
  1550. pm_runtime_mark_last_busy(host->dev);
  1551. pm_runtime_put_autosuspend(host->dev);
  1552. return 0;
  1553. }
  1554. static int omap_hsmmc_regs_open(struct inode *inode, struct file *file)
  1555. {
  1556. return single_open(file, omap_hsmmc_regs_show, inode->i_private);
  1557. }
  1558. static const struct file_operations mmc_regs_fops = {
  1559. .open = omap_hsmmc_regs_open,
  1560. .read = seq_read,
  1561. .llseek = seq_lseek,
  1562. .release = single_release,
  1563. };
  1564. static void omap_hsmmc_debugfs(struct mmc_host *mmc)
  1565. {
  1566. if (mmc->debugfs_root)
  1567. debugfs_create_file("regs", S_IRUSR, mmc->debugfs_root,
  1568. mmc, &mmc_regs_fops);
  1569. }
  1570. #else
  1571. static void omap_hsmmc_debugfs(struct mmc_host *mmc)
  1572. {
  1573. }
  1574. #endif
  1575. static int __init omap_hsmmc_probe(struct platform_device *pdev)
  1576. {
  1577. struct omap_mmc_platform_data *pdata = pdev->dev.platform_data;
  1578. struct mmc_host *mmc;
  1579. struct omap_hsmmc_host *host = NULL;
  1580. struct resource *res;
  1581. int ret, irq;
  1582. if (pdata == NULL) {
  1583. dev_err(&pdev->dev, "Platform Data is missing\n");
  1584. return -ENXIO;
  1585. }
  1586. if (pdata->nr_slots == 0) {
  1587. dev_err(&pdev->dev, "No Slots\n");
  1588. return -ENXIO;
  1589. }
  1590. res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
  1591. irq = platform_get_irq(pdev, 0);
  1592. if (res == NULL || irq < 0)
  1593. return -ENXIO;
  1594. res->start += pdata->reg_offset;
  1595. res->end += pdata->reg_offset;
  1596. res = request_mem_region(res->start, resource_size(res), pdev->name);
  1597. if (res == NULL)
  1598. return -EBUSY;
  1599. ret = omap_hsmmc_gpio_init(pdata);
  1600. if (ret)
  1601. goto err;
  1602. mmc = mmc_alloc_host(sizeof(struct omap_hsmmc_host), &pdev->dev);
  1603. if (!mmc) {
  1604. ret = -ENOMEM;
  1605. goto err_alloc;
  1606. }
  1607. host = mmc_priv(mmc);
  1608. host->mmc = mmc;
  1609. host->pdata = pdata;
  1610. host->dev = &pdev->dev;
  1611. host->use_dma = 1;
  1612. host->dev->dma_mask = &pdata->dma_mask;
  1613. host->dma_ch = -1;
  1614. host->irq = irq;
  1615. host->id = pdev->id;
  1616. host->slot_id = 0;
  1617. host->mapbase = res->start;
  1618. host->base = ioremap(host->mapbase, SZ_4K);
  1619. host->power_mode = MMC_POWER_OFF;
  1620. host->next_data.cookie = 1;
  1621. platform_set_drvdata(pdev, host);
  1622. INIT_WORK(&host->mmc_carddetect_work, omap_hsmmc_detect);
  1623. mmc->ops = &omap_hsmmc_ops;
  1624. /*
  1625. * If regulator_disable can only put vcc_aux to sleep then there is
  1626. * no off state.
  1627. */
  1628. if (mmc_slot(host).vcc_aux_disable_is_sleep)
  1629. mmc_slot(host).no_off = 1;
  1630. mmc->f_min = OMAP_MMC_MIN_CLOCK;
  1631. mmc->f_max = OMAP_MMC_MAX_CLOCK;
  1632. spin_lock_init(&host->irq_lock);
  1633. host->fclk = clk_get(&pdev->dev, "fck");
  1634. if (IS_ERR(host->fclk)) {
  1635. ret = PTR_ERR(host->fclk);
  1636. host->fclk = NULL;
  1637. goto err1;
  1638. }
  1639. omap_hsmmc_context_save(host);
  1640. mmc->caps |= MMC_CAP_DISABLE;
  1641. if (host->pdata->controller_flags & OMAP_HSMMC_BROKEN_MULTIBLOCK_READ) {
  1642. dev_info(&pdev->dev, "multiblock reads disabled due to 35xx erratum 2.1.1.128; MMC read performance may suffer\n");
  1643. mmc->caps2 |= MMC_CAP2_NO_MULTI_READ;
  1644. }
  1645. pm_runtime_enable(host->dev);
  1646. pm_runtime_get_sync(host->dev);
  1647. pm_runtime_set_autosuspend_delay(host->dev, MMC_AUTOSUSPEND_DELAY);
  1648. pm_runtime_use_autosuspend(host->dev);
  1649. if (cpu_is_omap2430()) {
  1650. host->dbclk = clk_get(&pdev->dev, "mmchsdb_fck");
  1651. /*
  1652. * MMC can still work without debounce clock.
  1653. */
  1654. if (IS_ERR(host->dbclk))
  1655. dev_warn(mmc_dev(host->mmc),
  1656. "Failed to get debounce clock\n");
  1657. else
  1658. host->got_dbclk = 1;
  1659. if (host->got_dbclk)
  1660. if (clk_enable(host->dbclk) != 0)
  1661. dev_dbg(mmc_dev(host->mmc), "Enabling debounce"
  1662. " clk failed\n");
  1663. }
  1664. /* Since we do only SG emulation, we can have as many segs
  1665. * as we want. */
  1666. mmc->max_segs = 1024;
  1667. mmc->max_blk_size = 512; /* Block Length at max can be 1024 */
  1668. mmc->max_blk_count = 0xFFFF; /* No. of Blocks is 16 bits */
  1669. mmc->max_req_size = mmc->max_blk_size * mmc->max_blk_count;
  1670. mmc->max_seg_size = mmc->max_req_size;
  1671. mmc->caps |= MMC_CAP_MMC_HIGHSPEED | MMC_CAP_SD_HIGHSPEED |
  1672. MMC_CAP_WAIT_WHILE_BUSY | MMC_CAP_ERASE;
  1673. mmc->caps |= mmc_slot(host).caps;
  1674. if (mmc->caps & MMC_CAP_8_BIT_DATA)
  1675. mmc->caps |= MMC_CAP_4_BIT_DATA;
  1676. if (mmc_slot(host).nonremovable)
  1677. mmc->caps |= MMC_CAP_NONREMOVABLE;
  1678. omap_hsmmc_conf_bus_power(host);
  1679. /* Select DMA lines */
  1680. switch (host->id) {
  1681. case OMAP_MMC1_DEVID:
  1682. host->dma_line_tx = OMAP24XX_DMA_MMC1_TX;
  1683. host->dma_line_rx = OMAP24XX_DMA_MMC1_RX;
  1684. break;
  1685. case OMAP_MMC2_DEVID:
  1686. host->dma_line_tx = OMAP24XX_DMA_MMC2_TX;
  1687. host->dma_line_rx = OMAP24XX_DMA_MMC2_RX;
  1688. break;
  1689. case OMAP_MMC3_DEVID:
  1690. host->dma_line_tx = OMAP34XX_DMA_MMC3_TX;
  1691. host->dma_line_rx = OMAP34XX_DMA_MMC3_RX;
  1692. break;
  1693. case OMAP_MMC4_DEVID:
  1694. host->dma_line_tx = OMAP44XX_DMA_MMC4_TX;
  1695. host->dma_line_rx = OMAP44XX_DMA_MMC4_RX;
  1696. break;
  1697. case OMAP_MMC5_DEVID:
  1698. host->dma_line_tx = OMAP44XX_DMA_MMC5_TX;
  1699. host->dma_line_rx = OMAP44XX_DMA_MMC5_RX;
  1700. break;
  1701. default:
  1702. dev_err(mmc_dev(host->mmc), "Invalid MMC id\n");
  1703. goto err_irq;
  1704. }
  1705. /* Request IRQ for MMC operations */
  1706. ret = request_irq(host->irq, omap_hsmmc_irq, 0,
  1707. mmc_hostname(mmc), host);
  1708. if (ret) {
  1709. dev_dbg(mmc_dev(host->mmc), "Unable to grab HSMMC IRQ\n");
  1710. goto err_irq;
  1711. }
  1712. if (pdata->init != NULL) {
  1713. if (pdata->init(&pdev->dev) != 0) {
  1714. dev_dbg(mmc_dev(host->mmc),
  1715. "Unable to configure MMC IRQs\n");
  1716. goto err_irq_cd_init;
  1717. }
  1718. }
  1719. if (omap_hsmmc_have_reg() && !mmc_slot(host).set_power) {
  1720. ret = omap_hsmmc_reg_get(host);
  1721. if (ret)
  1722. goto err_reg;
  1723. host->use_reg = 1;
  1724. }
  1725. mmc->ocr_avail = mmc_slot(host).ocr_mask;
  1726. /* Request IRQ for card detect */
  1727. if ((mmc_slot(host).card_detect_irq)) {
  1728. ret = request_irq(mmc_slot(host).card_detect_irq,
  1729. omap_hsmmc_cd_handler,
  1730. IRQF_TRIGGER_RISING | IRQF_TRIGGER_FALLING,
  1731. mmc_hostname(mmc), host);
  1732. if (ret) {
  1733. dev_dbg(mmc_dev(host->mmc),
  1734. "Unable to grab MMC CD IRQ\n");
  1735. goto err_irq_cd;
  1736. }
  1737. pdata->suspend = omap_hsmmc_suspend_cdirq;
  1738. pdata->resume = omap_hsmmc_resume_cdirq;
  1739. }
  1740. omap_hsmmc_disable_irq(host);
  1741. omap_hsmmc_protect_card(host);
  1742. mmc_add_host(mmc);
  1743. if (mmc_slot(host).name != NULL) {
  1744. ret = device_create_file(&mmc->class_dev, &dev_attr_slot_name);
  1745. if (ret < 0)
  1746. goto err_slot_name;
  1747. }
  1748. if (mmc_slot(host).card_detect_irq && mmc_slot(host).get_cover_state) {
  1749. ret = device_create_file(&mmc->class_dev,
  1750. &dev_attr_cover_switch);
  1751. if (ret < 0)
  1752. goto err_slot_name;
  1753. }
  1754. omap_hsmmc_debugfs(mmc);
  1755. pm_runtime_mark_last_busy(host->dev);
  1756. pm_runtime_put_autosuspend(host->dev);
  1757. return 0;
  1758. err_slot_name:
  1759. mmc_remove_host(mmc);
  1760. free_irq(mmc_slot(host).card_detect_irq, host);
  1761. err_irq_cd:
  1762. if (host->use_reg)
  1763. omap_hsmmc_reg_put(host);
  1764. err_reg:
  1765. if (host->pdata->cleanup)
  1766. host->pdata->cleanup(&pdev->dev);
  1767. err_irq_cd_init:
  1768. free_irq(host->irq, host);
  1769. err_irq:
  1770. pm_runtime_mark_last_busy(host->dev);
  1771. pm_runtime_put_autosuspend(host->dev);
  1772. clk_put(host->fclk);
  1773. if (host->got_dbclk) {
  1774. clk_disable(host->dbclk);
  1775. clk_put(host->dbclk);
  1776. }
  1777. err1:
  1778. iounmap(host->base);
  1779. platform_set_drvdata(pdev, NULL);
  1780. mmc_free_host(mmc);
  1781. err_alloc:
  1782. omap_hsmmc_gpio_free(pdata);
  1783. err:
  1784. release_mem_region(res->start, resource_size(res));
  1785. return ret;
  1786. }
  1787. static int omap_hsmmc_remove(struct platform_device *pdev)
  1788. {
  1789. struct omap_hsmmc_host *host = platform_get_drvdata(pdev);
  1790. struct resource *res;
  1791. if (host) {
  1792. pm_runtime_get_sync(host->dev);
  1793. mmc_remove_host(host->mmc);
  1794. if (host->use_reg)
  1795. omap_hsmmc_reg_put(host);
  1796. if (host->pdata->cleanup)
  1797. host->pdata->cleanup(&pdev->dev);
  1798. free_irq(host->irq, host);
  1799. if (mmc_slot(host).card_detect_irq)
  1800. free_irq(mmc_slot(host).card_detect_irq, host);
  1801. flush_work_sync(&host->mmc_carddetect_work);
  1802. pm_runtime_put_sync(host->dev);
  1803. pm_runtime_disable(host->dev);
  1804. clk_put(host->fclk);
  1805. if (host->got_dbclk) {
  1806. clk_disable(host->dbclk);
  1807. clk_put(host->dbclk);
  1808. }
  1809. mmc_free_host(host->mmc);
  1810. iounmap(host->base);
  1811. omap_hsmmc_gpio_free(pdev->dev.platform_data);
  1812. }
  1813. res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
  1814. if (res)
  1815. release_mem_region(res->start, resource_size(res));
  1816. platform_set_drvdata(pdev, NULL);
  1817. return 0;
  1818. }
  1819. #ifdef CONFIG_PM
  1820. static int omap_hsmmc_suspend(struct device *dev)
  1821. {
  1822. int ret = 0;
  1823. struct platform_device *pdev = to_platform_device(dev);
  1824. struct omap_hsmmc_host *host = platform_get_drvdata(pdev);
  1825. if (host && host->suspended)
  1826. return 0;
  1827. if (host) {
  1828. pm_runtime_get_sync(host->dev);
  1829. host->suspended = 1;
  1830. if (host->pdata->suspend) {
  1831. ret = host->pdata->suspend(&pdev->dev,
  1832. host->slot_id);
  1833. if (ret) {
  1834. dev_dbg(mmc_dev(host->mmc),
  1835. "Unable to handle MMC board"
  1836. " level suspend\n");
  1837. host->suspended = 0;
  1838. return ret;
  1839. }
  1840. }
  1841. cancel_work_sync(&host->mmc_carddetect_work);
  1842. ret = mmc_suspend_host(host->mmc);
  1843. if (ret) {
  1844. host->suspended = 0;
  1845. if (host->pdata->resume) {
  1846. ret = host->pdata->resume(&pdev->dev,
  1847. host->slot_id);
  1848. if (ret)
  1849. dev_dbg(mmc_dev(host->mmc),
  1850. "Unmask interrupt failed\n");
  1851. }
  1852. goto err;
  1853. }
  1854. if (!(host->mmc->pm_flags & MMC_PM_KEEP_POWER)) {
  1855. omap_hsmmc_disable_irq(host);
  1856. OMAP_HSMMC_WRITE(host->base, HCTL,
  1857. OMAP_HSMMC_READ(host->base, HCTL) & ~SDBP);
  1858. }
  1859. if (host->got_dbclk)
  1860. clk_disable(host->dbclk);
  1861. }
  1862. err:
  1863. pm_runtime_put_sync(host->dev);
  1864. return ret;
  1865. }
  1866. /* Routine to resume the MMC device */
  1867. static int omap_hsmmc_resume(struct device *dev)
  1868. {
  1869. int ret = 0;
  1870. struct platform_device *pdev = to_platform_device(dev);
  1871. struct omap_hsmmc_host *host = platform_get_drvdata(pdev);
  1872. if (host && !host->suspended)
  1873. return 0;
  1874. if (host) {
  1875. pm_runtime_get_sync(host->dev);
  1876. if (host->got_dbclk)
  1877. clk_enable(host->dbclk);
  1878. if (!(host->mmc->pm_flags & MMC_PM_KEEP_POWER))
  1879. omap_hsmmc_conf_bus_power(host);
  1880. if (host->pdata->resume) {
  1881. ret = host->pdata->resume(&pdev->dev, host->slot_id);
  1882. if (ret)
  1883. dev_dbg(mmc_dev(host->mmc),
  1884. "Unmask interrupt failed\n");
  1885. }
  1886. omap_hsmmc_protect_card(host);
  1887. /* Notify the core to resume the host */
  1888. ret = mmc_resume_host(host->mmc);
  1889. if (ret == 0)
  1890. host->suspended = 0;
  1891. pm_runtime_mark_last_busy(host->dev);
  1892. pm_runtime_put_autosuspend(host->dev);
  1893. }
  1894. return ret;
  1895. }
  1896. #else
  1897. #define omap_hsmmc_suspend NULL
  1898. #define omap_hsmmc_resume NULL
  1899. #endif
  1900. static int omap_hsmmc_runtime_suspend(struct device *dev)
  1901. {
  1902. struct omap_hsmmc_host *host;
  1903. host = platform_get_drvdata(to_platform_device(dev));
  1904. omap_hsmmc_context_save(host);
  1905. dev_dbg(mmc_dev(host->mmc), "disabled\n");
  1906. return 0;
  1907. }
  1908. static int omap_hsmmc_runtime_resume(struct device *dev)
  1909. {
  1910. struct omap_hsmmc_host *host;
  1911. host = platform_get_drvdata(to_platform_device(dev));
  1912. omap_hsmmc_context_restore(host);
  1913. dev_dbg(mmc_dev(host->mmc), "enabled\n");
  1914. return 0;
  1915. }
  1916. static struct dev_pm_ops omap_hsmmc_dev_pm_ops = {
  1917. .suspend = omap_hsmmc_suspend,
  1918. .resume = omap_hsmmc_resume,
  1919. .runtime_suspend = omap_hsmmc_runtime_suspend,
  1920. .runtime_resume = omap_hsmmc_runtime_resume,
  1921. };
  1922. static struct platform_driver omap_hsmmc_driver = {
  1923. .remove = omap_hsmmc_remove,
  1924. .driver = {
  1925. .name = DRIVER_NAME,
  1926. .owner = THIS_MODULE,
  1927. .pm = &omap_hsmmc_dev_pm_ops,
  1928. },
  1929. };
  1930. static int __init omap_hsmmc_init(void)
  1931. {
  1932. /* Register the MMC driver */
  1933. return platform_driver_probe(&omap_hsmmc_driver, omap_hsmmc_probe);
  1934. }
  1935. static void __exit omap_hsmmc_cleanup(void)
  1936. {
  1937. /* Unregister MMC driver */
  1938. platform_driver_unregister(&omap_hsmmc_driver);
  1939. }
  1940. module_init(omap_hsmmc_init);
  1941. module_exit(omap_hsmmc_cleanup);
  1942. MODULE_DESCRIPTION("OMAP High Speed Multimedia Card driver");
  1943. MODULE_LICENSE("GPL");
  1944. MODULE_ALIAS("platform:" DRIVER_NAME);
  1945. MODULE_AUTHOR("Texas Instruments Inc");