omap_hsmmc.c 54 KB

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