omap_hsmmc.c 55 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298
  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. regulator_enable(host->vcc);
  402. regulator_disable(host->vcc);
  403. }
  404. if (host->vcc_aux) {
  405. if (regulator_is_enabled(reg) > 0) {
  406. regulator_enable(reg);
  407. regulator_disable(reg);
  408. }
  409. }
  410. }
  411. return 0;
  412. err:
  413. mmc_slot(host).set_power = NULL;
  414. mmc_slot(host).set_sleep = NULL;
  415. return ret;
  416. }
  417. static void omap_hsmmc_reg_put(struct omap_hsmmc_host *host)
  418. {
  419. regulator_put(host->vcc);
  420. regulator_put(host->vcc_aux);
  421. mmc_slot(host).set_power = NULL;
  422. mmc_slot(host).set_sleep = NULL;
  423. }
  424. static inline int omap_hsmmc_have_reg(void)
  425. {
  426. return 1;
  427. }
  428. #else
  429. static inline int omap_hsmmc_reg_get(struct omap_hsmmc_host *host)
  430. {
  431. return -EINVAL;
  432. }
  433. static inline void omap_hsmmc_reg_put(struct omap_hsmmc_host *host)
  434. {
  435. }
  436. static inline int omap_hsmmc_have_reg(void)
  437. {
  438. return 0;
  439. }
  440. #endif
  441. static int omap_hsmmc_gpio_init(struct omap_mmc_platform_data *pdata)
  442. {
  443. int ret;
  444. if (gpio_is_valid(pdata->slots[0].switch_pin)) {
  445. if (pdata->slots[0].cover)
  446. pdata->slots[0].get_cover_state =
  447. omap_hsmmc_get_cover_state;
  448. else
  449. pdata->slots[0].card_detect = omap_hsmmc_card_detect;
  450. pdata->slots[0].card_detect_irq =
  451. gpio_to_irq(pdata->slots[0].switch_pin);
  452. ret = gpio_request(pdata->slots[0].switch_pin, "mmc_cd");
  453. if (ret)
  454. return ret;
  455. ret = gpio_direction_input(pdata->slots[0].switch_pin);
  456. if (ret)
  457. goto err_free_sp;
  458. } else
  459. pdata->slots[0].switch_pin = -EINVAL;
  460. if (gpio_is_valid(pdata->slots[0].gpio_wp)) {
  461. pdata->slots[0].get_ro = omap_hsmmc_get_wp;
  462. ret = gpio_request(pdata->slots[0].gpio_wp, "mmc_wp");
  463. if (ret)
  464. goto err_free_cd;
  465. ret = gpio_direction_input(pdata->slots[0].gpio_wp);
  466. if (ret)
  467. goto err_free_wp;
  468. } else
  469. pdata->slots[0].gpio_wp = -EINVAL;
  470. return 0;
  471. err_free_wp:
  472. gpio_free(pdata->slots[0].gpio_wp);
  473. err_free_cd:
  474. if (gpio_is_valid(pdata->slots[0].switch_pin))
  475. err_free_sp:
  476. gpio_free(pdata->slots[0].switch_pin);
  477. return ret;
  478. }
  479. static void omap_hsmmc_gpio_free(struct omap_mmc_platform_data *pdata)
  480. {
  481. if (gpio_is_valid(pdata->slots[0].gpio_wp))
  482. gpio_free(pdata->slots[0].gpio_wp);
  483. if (gpio_is_valid(pdata->slots[0].switch_pin))
  484. gpio_free(pdata->slots[0].switch_pin);
  485. }
  486. /*
  487. * Start clock to the card
  488. */
  489. static void omap_hsmmc_start_clock(struct omap_hsmmc_host *host)
  490. {
  491. OMAP_HSMMC_WRITE(host->base, SYSCTL,
  492. OMAP_HSMMC_READ(host->base, SYSCTL) | CEN);
  493. }
  494. /*
  495. * Stop clock to the card
  496. */
  497. static void omap_hsmmc_stop_clock(struct omap_hsmmc_host *host)
  498. {
  499. OMAP_HSMMC_WRITE(host->base, SYSCTL,
  500. OMAP_HSMMC_READ(host->base, SYSCTL) & ~CEN);
  501. if ((OMAP_HSMMC_READ(host->base, SYSCTL) & CEN) != 0x0)
  502. dev_dbg(mmc_dev(host->mmc), "MMC Clock is not stoped\n");
  503. }
  504. static void omap_hsmmc_enable_irq(struct omap_hsmmc_host *host,
  505. struct mmc_command *cmd)
  506. {
  507. unsigned int irq_mask;
  508. if (host->use_dma)
  509. irq_mask = INT_EN_MASK & ~(BRR_ENABLE | BWR_ENABLE);
  510. else
  511. irq_mask = INT_EN_MASK;
  512. /* Disable timeout for erases */
  513. if (cmd->opcode == MMC_ERASE)
  514. irq_mask &= ~DTO_ENABLE;
  515. OMAP_HSMMC_WRITE(host->base, STAT, STAT_CLEAR);
  516. OMAP_HSMMC_WRITE(host->base, ISE, irq_mask);
  517. OMAP_HSMMC_WRITE(host->base, IE, irq_mask);
  518. }
  519. static void omap_hsmmc_disable_irq(struct omap_hsmmc_host *host)
  520. {
  521. OMAP_HSMMC_WRITE(host->base, ISE, 0);
  522. OMAP_HSMMC_WRITE(host->base, IE, 0);
  523. OMAP_HSMMC_WRITE(host->base, STAT, STAT_CLEAR);
  524. }
  525. /* Calculate divisor for the given clock frequency */
  526. static u16 calc_divisor(struct mmc_ios *ios)
  527. {
  528. u16 dsor = 0;
  529. if (ios->clock) {
  530. dsor = DIV_ROUND_UP(OMAP_MMC_MASTER_CLOCK, ios->clock);
  531. if (dsor > 250)
  532. dsor = 250;
  533. }
  534. return dsor;
  535. }
  536. static void omap_hsmmc_set_clock(struct omap_hsmmc_host *host)
  537. {
  538. struct mmc_ios *ios = &host->mmc->ios;
  539. unsigned long regval;
  540. unsigned long timeout;
  541. dev_dbg(mmc_dev(host->mmc), "Set clock to %uHz\n", ios->clock);
  542. omap_hsmmc_stop_clock(host);
  543. regval = OMAP_HSMMC_READ(host->base, SYSCTL);
  544. regval = regval & ~(CLKD_MASK | DTO_MASK);
  545. regval = regval | (calc_divisor(ios) << 6) | (DTO << 16);
  546. OMAP_HSMMC_WRITE(host->base, SYSCTL, regval);
  547. OMAP_HSMMC_WRITE(host->base, SYSCTL,
  548. OMAP_HSMMC_READ(host->base, SYSCTL) | ICE);
  549. /* Wait till the ICS bit is set */
  550. timeout = jiffies + msecs_to_jiffies(MMC_TIMEOUT_MS);
  551. while ((OMAP_HSMMC_READ(host->base, SYSCTL) & ICS) != ICS
  552. && time_before(jiffies, timeout))
  553. cpu_relax();
  554. omap_hsmmc_start_clock(host);
  555. }
  556. static void omap_hsmmc_set_bus_width(struct omap_hsmmc_host *host)
  557. {
  558. struct mmc_ios *ios = &host->mmc->ios;
  559. u32 con;
  560. con = OMAP_HSMMC_READ(host->base, CON);
  561. switch (ios->bus_width) {
  562. case MMC_BUS_WIDTH_8:
  563. OMAP_HSMMC_WRITE(host->base, CON, con | DW8);
  564. break;
  565. case MMC_BUS_WIDTH_4:
  566. OMAP_HSMMC_WRITE(host->base, CON, con & ~DW8);
  567. OMAP_HSMMC_WRITE(host->base, HCTL,
  568. OMAP_HSMMC_READ(host->base, HCTL) | FOUR_BIT);
  569. break;
  570. case MMC_BUS_WIDTH_1:
  571. OMAP_HSMMC_WRITE(host->base, CON, con & ~DW8);
  572. OMAP_HSMMC_WRITE(host->base, HCTL,
  573. OMAP_HSMMC_READ(host->base, HCTL) & ~FOUR_BIT);
  574. break;
  575. }
  576. }
  577. static void omap_hsmmc_set_bus_mode(struct omap_hsmmc_host *host)
  578. {
  579. struct mmc_ios *ios = &host->mmc->ios;
  580. u32 con;
  581. con = OMAP_HSMMC_READ(host->base, CON);
  582. if (ios->bus_mode == MMC_BUSMODE_OPENDRAIN)
  583. OMAP_HSMMC_WRITE(host->base, CON, con | OD);
  584. else
  585. OMAP_HSMMC_WRITE(host->base, CON, con & ~OD);
  586. }
  587. #ifdef CONFIG_PM
  588. /*
  589. * Restore the MMC host context, if it was lost as result of a
  590. * power state change.
  591. */
  592. static int omap_hsmmc_context_restore(struct omap_hsmmc_host *host)
  593. {
  594. struct mmc_ios *ios = &host->mmc->ios;
  595. struct omap_mmc_platform_data *pdata = host->pdata;
  596. int context_loss = 0;
  597. u32 hctl, capa;
  598. unsigned long timeout;
  599. if (pdata->get_context_loss_count) {
  600. context_loss = pdata->get_context_loss_count(host->dev);
  601. if (context_loss < 0)
  602. return 1;
  603. }
  604. dev_dbg(mmc_dev(host->mmc), "context was %slost\n",
  605. context_loss == host->context_loss ? "not " : "");
  606. if (host->context_loss == context_loss)
  607. return 1;
  608. /* Wait for hardware reset */
  609. timeout = jiffies + msecs_to_jiffies(MMC_TIMEOUT_MS);
  610. while ((OMAP_HSMMC_READ(host->base, SYSSTATUS) & RESETDONE) != RESETDONE
  611. && time_before(jiffies, timeout))
  612. ;
  613. /* Do software reset */
  614. OMAP_HSMMC_WRITE(host->base, SYSCONFIG, SOFTRESET);
  615. timeout = jiffies + msecs_to_jiffies(MMC_TIMEOUT_MS);
  616. while ((OMAP_HSMMC_READ(host->base, SYSSTATUS) & RESETDONE) != RESETDONE
  617. && time_before(jiffies, timeout))
  618. ;
  619. OMAP_HSMMC_WRITE(host->base, SYSCONFIG,
  620. OMAP_HSMMC_READ(host->base, SYSCONFIG) | AUTOIDLE);
  621. if (host->id == OMAP_MMC1_DEVID) {
  622. if (host->power_mode != MMC_POWER_OFF &&
  623. (1 << ios->vdd) <= MMC_VDD_23_24)
  624. hctl = SDVS18;
  625. else
  626. hctl = SDVS30;
  627. capa = VS30 | VS18;
  628. } else {
  629. hctl = SDVS18;
  630. capa = VS18;
  631. }
  632. OMAP_HSMMC_WRITE(host->base, HCTL,
  633. OMAP_HSMMC_READ(host->base, HCTL) | hctl);
  634. OMAP_HSMMC_WRITE(host->base, CAPA,
  635. OMAP_HSMMC_READ(host->base, CAPA) | capa);
  636. OMAP_HSMMC_WRITE(host->base, HCTL,
  637. OMAP_HSMMC_READ(host->base, HCTL) | SDBP);
  638. timeout = jiffies + msecs_to_jiffies(MMC_TIMEOUT_MS);
  639. while ((OMAP_HSMMC_READ(host->base, HCTL) & SDBP) != SDBP
  640. && time_before(jiffies, timeout))
  641. ;
  642. omap_hsmmc_disable_irq(host);
  643. /* Do not initialize card-specific things if the power is off */
  644. if (host->power_mode == MMC_POWER_OFF)
  645. goto out;
  646. omap_hsmmc_set_bus_width(host);
  647. omap_hsmmc_set_clock(host);
  648. omap_hsmmc_set_bus_mode(host);
  649. out:
  650. host->context_loss = context_loss;
  651. dev_dbg(mmc_dev(host->mmc), "context is restored\n");
  652. return 0;
  653. }
  654. /*
  655. * Save the MMC host context (store the number of power state changes so far).
  656. */
  657. static void omap_hsmmc_context_save(struct omap_hsmmc_host *host)
  658. {
  659. struct omap_mmc_platform_data *pdata = host->pdata;
  660. int context_loss;
  661. if (pdata->get_context_loss_count) {
  662. context_loss = pdata->get_context_loss_count(host->dev);
  663. if (context_loss < 0)
  664. return;
  665. host->context_loss = context_loss;
  666. }
  667. }
  668. #else
  669. static int omap_hsmmc_context_restore(struct omap_hsmmc_host *host)
  670. {
  671. return 0;
  672. }
  673. static void omap_hsmmc_context_save(struct omap_hsmmc_host *host)
  674. {
  675. }
  676. #endif
  677. /*
  678. * Send init stream sequence to card
  679. * before sending IDLE command
  680. */
  681. static void send_init_stream(struct omap_hsmmc_host *host)
  682. {
  683. int reg = 0;
  684. unsigned long timeout;
  685. if (host->protect_card)
  686. return;
  687. disable_irq(host->irq);
  688. OMAP_HSMMC_WRITE(host->base, IE, INT_EN_MASK);
  689. OMAP_HSMMC_WRITE(host->base, CON,
  690. OMAP_HSMMC_READ(host->base, CON) | INIT_STREAM);
  691. OMAP_HSMMC_WRITE(host->base, CMD, INIT_STREAM_CMD);
  692. timeout = jiffies + msecs_to_jiffies(MMC_TIMEOUT_MS);
  693. while ((reg != CC) && time_before(jiffies, timeout))
  694. reg = OMAP_HSMMC_READ(host->base, STAT) & CC;
  695. OMAP_HSMMC_WRITE(host->base, CON,
  696. OMAP_HSMMC_READ(host->base, CON) & ~INIT_STREAM);
  697. OMAP_HSMMC_WRITE(host->base, STAT, STAT_CLEAR);
  698. OMAP_HSMMC_READ(host->base, STAT);
  699. enable_irq(host->irq);
  700. }
  701. static inline
  702. int omap_hsmmc_cover_is_closed(struct omap_hsmmc_host *host)
  703. {
  704. int r = 1;
  705. if (mmc_slot(host).get_cover_state)
  706. r = mmc_slot(host).get_cover_state(host->dev, host->slot_id);
  707. return r;
  708. }
  709. static ssize_t
  710. omap_hsmmc_show_cover_switch(struct device *dev, struct device_attribute *attr,
  711. char *buf)
  712. {
  713. struct mmc_host *mmc = container_of(dev, struct mmc_host, class_dev);
  714. struct omap_hsmmc_host *host = mmc_priv(mmc);
  715. return sprintf(buf, "%s\n",
  716. omap_hsmmc_cover_is_closed(host) ? "closed" : "open");
  717. }
  718. static DEVICE_ATTR(cover_switch, S_IRUGO, omap_hsmmc_show_cover_switch, NULL);
  719. static ssize_t
  720. omap_hsmmc_show_slot_name(struct device *dev, struct device_attribute *attr,
  721. char *buf)
  722. {
  723. struct mmc_host *mmc = container_of(dev, struct mmc_host, class_dev);
  724. struct omap_hsmmc_host *host = mmc_priv(mmc);
  725. return sprintf(buf, "%s\n", mmc_slot(host).name);
  726. }
  727. static DEVICE_ATTR(slot_name, S_IRUGO, omap_hsmmc_show_slot_name, NULL);
  728. /*
  729. * Configure the response type and send the cmd.
  730. */
  731. static void
  732. omap_hsmmc_start_command(struct omap_hsmmc_host *host, struct mmc_command *cmd,
  733. struct mmc_data *data)
  734. {
  735. int cmdreg = 0, resptype = 0, cmdtype = 0;
  736. dev_dbg(mmc_dev(host->mmc), "%s: CMD%d, argument 0x%08x\n",
  737. mmc_hostname(host->mmc), cmd->opcode, cmd->arg);
  738. host->cmd = cmd;
  739. omap_hsmmc_enable_irq(host, cmd);
  740. host->response_busy = 0;
  741. if (cmd->flags & MMC_RSP_PRESENT) {
  742. if (cmd->flags & MMC_RSP_136)
  743. resptype = 1;
  744. else if (cmd->flags & MMC_RSP_BUSY) {
  745. resptype = 3;
  746. host->response_busy = 1;
  747. } else
  748. resptype = 2;
  749. }
  750. /*
  751. * Unlike OMAP1 controller, the cmdtype does not seem to be based on
  752. * ac, bc, adtc, bcr. Only commands ending an open ended transfer need
  753. * a val of 0x3, rest 0x0.
  754. */
  755. if (cmd == host->mrq->stop)
  756. cmdtype = 0x3;
  757. cmdreg = (cmd->opcode << 24) | (resptype << 16) | (cmdtype << 22);
  758. if (data) {
  759. cmdreg |= DP_SELECT | MSBS | BCE;
  760. if (data->flags & MMC_DATA_READ)
  761. cmdreg |= DDIR;
  762. else
  763. cmdreg &= ~(DDIR);
  764. }
  765. if (host->use_dma)
  766. cmdreg |= DMA_EN;
  767. host->req_in_progress = 1;
  768. OMAP_HSMMC_WRITE(host->base, ARG, cmd->arg);
  769. OMAP_HSMMC_WRITE(host->base, CMD, cmdreg);
  770. }
  771. static int
  772. omap_hsmmc_get_dma_dir(struct omap_hsmmc_host *host, struct mmc_data *data)
  773. {
  774. if (data->flags & MMC_DATA_WRITE)
  775. return DMA_TO_DEVICE;
  776. else
  777. return DMA_FROM_DEVICE;
  778. }
  779. static void omap_hsmmc_request_done(struct omap_hsmmc_host *host, struct mmc_request *mrq)
  780. {
  781. int dma_ch;
  782. spin_lock(&host->irq_lock);
  783. host->req_in_progress = 0;
  784. dma_ch = host->dma_ch;
  785. spin_unlock(&host->irq_lock);
  786. omap_hsmmc_disable_irq(host);
  787. /* Do not complete the request if DMA is still in progress */
  788. if (mrq->data && host->use_dma && dma_ch != -1)
  789. return;
  790. host->mrq = NULL;
  791. mmc_request_done(host->mmc, mrq);
  792. }
  793. /*
  794. * Notify the transfer complete to MMC core
  795. */
  796. static void
  797. omap_hsmmc_xfer_done(struct omap_hsmmc_host *host, struct mmc_data *data)
  798. {
  799. if (!data) {
  800. struct mmc_request *mrq = host->mrq;
  801. /* TC before CC from CMD6 - don't know why, but it happens */
  802. if (host->cmd && host->cmd->opcode == 6 &&
  803. host->response_busy) {
  804. host->response_busy = 0;
  805. return;
  806. }
  807. omap_hsmmc_request_done(host, mrq);
  808. return;
  809. }
  810. host->data = NULL;
  811. if (!data->error)
  812. data->bytes_xfered += data->blocks * (data->blksz);
  813. else
  814. data->bytes_xfered = 0;
  815. if (!data->stop) {
  816. omap_hsmmc_request_done(host, data->mrq);
  817. return;
  818. }
  819. omap_hsmmc_start_command(host, data->stop, NULL);
  820. }
  821. /*
  822. * Notify the core about command completion
  823. */
  824. static void
  825. omap_hsmmc_cmd_done(struct omap_hsmmc_host *host, struct mmc_command *cmd)
  826. {
  827. host->cmd = NULL;
  828. if (cmd->flags & MMC_RSP_PRESENT) {
  829. if (cmd->flags & MMC_RSP_136) {
  830. /* response type 2 */
  831. cmd->resp[3] = OMAP_HSMMC_READ(host->base, RSP10);
  832. cmd->resp[2] = OMAP_HSMMC_READ(host->base, RSP32);
  833. cmd->resp[1] = OMAP_HSMMC_READ(host->base, RSP54);
  834. cmd->resp[0] = OMAP_HSMMC_READ(host->base, RSP76);
  835. } else {
  836. /* response types 1, 1b, 3, 4, 5, 6 */
  837. cmd->resp[0] = OMAP_HSMMC_READ(host->base, RSP10);
  838. }
  839. }
  840. if ((host->data == NULL && !host->response_busy) || cmd->error)
  841. omap_hsmmc_request_done(host, cmd->mrq);
  842. }
  843. /*
  844. * DMA clean up for command errors
  845. */
  846. static void omap_hsmmc_dma_cleanup(struct omap_hsmmc_host *host, int errno)
  847. {
  848. int dma_ch;
  849. host->data->error = errno;
  850. spin_lock(&host->irq_lock);
  851. dma_ch = host->dma_ch;
  852. host->dma_ch = -1;
  853. spin_unlock(&host->irq_lock);
  854. if (host->use_dma && dma_ch != -1) {
  855. dma_unmap_sg(mmc_dev(host->mmc), host->data->sg,
  856. host->data->sg_len,
  857. omap_hsmmc_get_dma_dir(host, host->data));
  858. omap_free_dma(dma_ch);
  859. }
  860. host->data = NULL;
  861. }
  862. /*
  863. * Readable error output
  864. */
  865. #ifdef CONFIG_MMC_DEBUG
  866. static void omap_hsmmc_dbg_report_irq(struct omap_hsmmc_host *host, u32 status)
  867. {
  868. /* --- means reserved bit without definition at documentation */
  869. static const char *omap_hsmmc_status_bits[] = {
  870. "CC" , "TC" , "BGE", "---", "BWR" , "BRR" , "---" , "---" ,
  871. "CIRQ", "OBI" , "---", "---", "---" , "---" , "---" , "ERRI",
  872. "CTO" , "CCRC", "CEB", "CIE", "DTO" , "DCRC", "DEB" , "---" ,
  873. "ACE" , "---" , "---", "---", "CERR", "BADA", "---" , "---"
  874. };
  875. char res[256];
  876. char *buf = res;
  877. int len, i;
  878. len = sprintf(buf, "MMC IRQ 0x%x :", status);
  879. buf += len;
  880. for (i = 0; i < ARRAY_SIZE(omap_hsmmc_status_bits); i++)
  881. if (status & (1 << i)) {
  882. len = sprintf(buf, " %s", omap_hsmmc_status_bits[i]);
  883. buf += len;
  884. }
  885. dev_dbg(mmc_dev(host->mmc), "%s\n", res);
  886. }
  887. #else
  888. static inline void omap_hsmmc_dbg_report_irq(struct omap_hsmmc_host *host,
  889. u32 status)
  890. {
  891. }
  892. #endif /* CONFIG_MMC_DEBUG */
  893. /*
  894. * MMC controller internal state machines reset
  895. *
  896. * Used to reset command or data internal state machines, using respectively
  897. * SRC or SRD bit of SYSCTL register
  898. * Can be called from interrupt context
  899. */
  900. static inline void omap_hsmmc_reset_controller_fsm(struct omap_hsmmc_host *host,
  901. unsigned long bit)
  902. {
  903. unsigned long i = 0;
  904. unsigned long limit = (loops_per_jiffy *
  905. msecs_to_jiffies(MMC_TIMEOUT_MS));
  906. OMAP_HSMMC_WRITE(host->base, SYSCTL,
  907. OMAP_HSMMC_READ(host->base, SYSCTL) | bit);
  908. /*
  909. * OMAP4 ES2 and greater has an updated reset logic.
  910. * Monitor a 0->1 transition first
  911. */
  912. if (mmc_slot(host).features & HSMMC_HAS_UPDATED_RESET) {
  913. while ((!(OMAP_HSMMC_READ(host->base, SYSCTL) & bit))
  914. && (i++ < limit))
  915. cpu_relax();
  916. }
  917. i = 0;
  918. while ((OMAP_HSMMC_READ(host->base, SYSCTL) & bit) &&
  919. (i++ < limit))
  920. cpu_relax();
  921. if (OMAP_HSMMC_READ(host->base, SYSCTL) & bit)
  922. dev_err(mmc_dev(host->mmc),
  923. "Timeout waiting on controller reset in %s\n",
  924. __func__);
  925. }
  926. static void omap_hsmmc_do_irq(struct omap_hsmmc_host *host, int status)
  927. {
  928. struct mmc_data *data;
  929. int end_cmd = 0, end_trans = 0;
  930. if (!host->req_in_progress) {
  931. do {
  932. OMAP_HSMMC_WRITE(host->base, STAT, status);
  933. /* Flush posted write */
  934. status = OMAP_HSMMC_READ(host->base, STAT);
  935. } while (status & INT_EN_MASK);
  936. return;
  937. }
  938. data = host->data;
  939. dev_dbg(mmc_dev(host->mmc), "IRQ Status is %x\n", status);
  940. if (status & ERR) {
  941. omap_hsmmc_dbg_report_irq(host, status);
  942. if ((status & CMD_TIMEOUT) ||
  943. (status & CMD_CRC)) {
  944. if (host->cmd) {
  945. if (status & CMD_TIMEOUT) {
  946. omap_hsmmc_reset_controller_fsm(host,
  947. SRC);
  948. host->cmd->error = -ETIMEDOUT;
  949. } else {
  950. host->cmd->error = -EILSEQ;
  951. }
  952. end_cmd = 1;
  953. }
  954. if (host->data || host->response_busy) {
  955. if (host->data)
  956. omap_hsmmc_dma_cleanup(host,
  957. -ETIMEDOUT);
  958. host->response_busy = 0;
  959. omap_hsmmc_reset_controller_fsm(host, SRD);
  960. }
  961. }
  962. if ((status & DATA_TIMEOUT) ||
  963. (status & DATA_CRC)) {
  964. if (host->data || host->response_busy) {
  965. int err = (status & DATA_TIMEOUT) ?
  966. -ETIMEDOUT : -EILSEQ;
  967. if (host->data)
  968. omap_hsmmc_dma_cleanup(host, err);
  969. else
  970. host->mrq->cmd->error = err;
  971. host->response_busy = 0;
  972. omap_hsmmc_reset_controller_fsm(host, SRD);
  973. end_trans = 1;
  974. }
  975. }
  976. if (status & CARD_ERR) {
  977. dev_dbg(mmc_dev(host->mmc),
  978. "Ignoring card err CMD%d\n", host->cmd->opcode);
  979. if (host->cmd)
  980. end_cmd = 1;
  981. if (host->data)
  982. end_trans = 1;
  983. }
  984. }
  985. OMAP_HSMMC_WRITE(host->base, STAT, status);
  986. if (end_cmd || ((status & CC) && host->cmd))
  987. omap_hsmmc_cmd_done(host, host->cmd);
  988. if ((end_trans || (status & TC)) && host->mrq)
  989. omap_hsmmc_xfer_done(host, data);
  990. }
  991. /*
  992. * MMC controller IRQ handler
  993. */
  994. static irqreturn_t omap_hsmmc_irq(int irq, void *dev_id)
  995. {
  996. struct omap_hsmmc_host *host = dev_id;
  997. int status;
  998. status = OMAP_HSMMC_READ(host->base, STAT);
  999. do {
  1000. omap_hsmmc_do_irq(host, status);
  1001. /* Flush posted write */
  1002. status = OMAP_HSMMC_READ(host->base, STAT);
  1003. } while (status & INT_EN_MASK);
  1004. return IRQ_HANDLED;
  1005. }
  1006. static void set_sd_bus_power(struct omap_hsmmc_host *host)
  1007. {
  1008. unsigned long i;
  1009. OMAP_HSMMC_WRITE(host->base, HCTL,
  1010. OMAP_HSMMC_READ(host->base, HCTL) | SDBP);
  1011. for (i = 0; i < loops_per_jiffy; i++) {
  1012. if (OMAP_HSMMC_READ(host->base, HCTL) & SDBP)
  1013. break;
  1014. cpu_relax();
  1015. }
  1016. }
  1017. /*
  1018. * Switch MMC interface voltage ... only relevant for MMC1.
  1019. *
  1020. * MMC2 and MMC3 use fixed 1.8V levels, and maybe a transceiver.
  1021. * The MMC2 transceiver controls are used instead of DAT4..DAT7.
  1022. * Some chips, like eMMC ones, use internal transceivers.
  1023. */
  1024. static int omap_hsmmc_switch_opcond(struct omap_hsmmc_host *host, int vdd)
  1025. {
  1026. u32 reg_val = 0;
  1027. int ret;
  1028. /* Disable the clocks */
  1029. pm_runtime_put_sync(host->dev);
  1030. if (host->got_dbclk)
  1031. clk_disable(host->dbclk);
  1032. /* Turn the power off */
  1033. ret = mmc_slot(host).set_power(host->dev, host->slot_id, 0, 0);
  1034. /* Turn the power ON with given VDD 1.8 or 3.0v */
  1035. if (!ret)
  1036. ret = mmc_slot(host).set_power(host->dev, host->slot_id, 1,
  1037. vdd);
  1038. pm_runtime_get_sync(host->dev);
  1039. if (host->got_dbclk)
  1040. clk_enable(host->dbclk);
  1041. if (ret != 0)
  1042. goto err;
  1043. OMAP_HSMMC_WRITE(host->base, HCTL,
  1044. OMAP_HSMMC_READ(host->base, HCTL) & SDVSCLR);
  1045. reg_val = OMAP_HSMMC_READ(host->base, HCTL);
  1046. /*
  1047. * If a MMC dual voltage card is detected, the set_ios fn calls
  1048. * this fn with VDD bit set for 1.8V. Upon card removal from the
  1049. * slot, omap_hsmmc_set_ios sets the VDD back to 3V on MMC_POWER_OFF.
  1050. *
  1051. * Cope with a bit of slop in the range ... per data sheets:
  1052. * - "1.8V" for vdds_mmc1/vdds_mmc1a can be up to 2.45V max,
  1053. * but recommended values are 1.71V to 1.89V
  1054. * - "3.0V" for vdds_mmc1/vdds_mmc1a can be up to 3.5V max,
  1055. * but recommended values are 2.7V to 3.3V
  1056. *
  1057. * Board setup code shouldn't permit anything very out-of-range.
  1058. * TWL4030-family VMMC1 and VSIM regulators are fine (avoiding the
  1059. * middle range) but VSIM can't power DAT4..DAT7 at more than 3V.
  1060. */
  1061. if ((1 << vdd) <= MMC_VDD_23_24)
  1062. reg_val |= SDVS18;
  1063. else
  1064. reg_val |= SDVS30;
  1065. OMAP_HSMMC_WRITE(host->base, HCTL, reg_val);
  1066. set_sd_bus_power(host);
  1067. return 0;
  1068. err:
  1069. dev_dbg(mmc_dev(host->mmc), "Unable to switch operating voltage\n");
  1070. return ret;
  1071. }
  1072. /* Protect the card while the cover is open */
  1073. static void omap_hsmmc_protect_card(struct omap_hsmmc_host *host)
  1074. {
  1075. if (!mmc_slot(host).get_cover_state)
  1076. return;
  1077. host->reqs_blocked = 0;
  1078. if (mmc_slot(host).get_cover_state(host->dev, host->slot_id)) {
  1079. if (host->protect_card) {
  1080. printk(KERN_INFO "%s: cover is closed, "
  1081. "card is now accessible\n",
  1082. mmc_hostname(host->mmc));
  1083. host->protect_card = 0;
  1084. }
  1085. } else {
  1086. if (!host->protect_card) {
  1087. printk(KERN_INFO "%s: cover is open, "
  1088. "card is now inaccessible\n",
  1089. mmc_hostname(host->mmc));
  1090. host->protect_card = 1;
  1091. }
  1092. }
  1093. }
  1094. /*
  1095. * Work Item to notify the core about card insertion/removal
  1096. */
  1097. static void omap_hsmmc_detect(struct work_struct *work)
  1098. {
  1099. struct omap_hsmmc_host *host =
  1100. container_of(work, struct omap_hsmmc_host, mmc_carddetect_work);
  1101. struct omap_mmc_slot_data *slot = &mmc_slot(host);
  1102. int carddetect;
  1103. if (host->suspended)
  1104. return;
  1105. sysfs_notify(&host->mmc->class_dev.kobj, NULL, "cover_switch");
  1106. if (slot->card_detect)
  1107. carddetect = slot->card_detect(host->dev, host->slot_id);
  1108. else {
  1109. omap_hsmmc_protect_card(host);
  1110. carddetect = -ENOSYS;
  1111. }
  1112. if (carddetect)
  1113. mmc_detect_change(host->mmc, (HZ * 200) / 1000);
  1114. else
  1115. mmc_detect_change(host->mmc, (HZ * 50) / 1000);
  1116. }
  1117. /*
  1118. * ISR for handling card insertion and removal
  1119. */
  1120. static irqreturn_t omap_hsmmc_cd_handler(int irq, void *dev_id)
  1121. {
  1122. struct omap_hsmmc_host *host = (struct omap_hsmmc_host *)dev_id;
  1123. if (host->suspended)
  1124. return IRQ_HANDLED;
  1125. schedule_work(&host->mmc_carddetect_work);
  1126. return IRQ_HANDLED;
  1127. }
  1128. static int omap_hsmmc_get_dma_sync_dev(struct omap_hsmmc_host *host,
  1129. struct mmc_data *data)
  1130. {
  1131. int sync_dev;
  1132. if (data->flags & MMC_DATA_WRITE)
  1133. sync_dev = host->dma_line_tx;
  1134. else
  1135. sync_dev = host->dma_line_rx;
  1136. return sync_dev;
  1137. }
  1138. static void omap_hsmmc_config_dma_params(struct omap_hsmmc_host *host,
  1139. struct mmc_data *data,
  1140. struct scatterlist *sgl)
  1141. {
  1142. int blksz, nblk, dma_ch;
  1143. dma_ch = host->dma_ch;
  1144. if (data->flags & MMC_DATA_WRITE) {
  1145. omap_set_dma_dest_params(dma_ch, 0, OMAP_DMA_AMODE_CONSTANT,
  1146. (host->mapbase + OMAP_HSMMC_DATA), 0, 0);
  1147. omap_set_dma_src_params(dma_ch, 0, OMAP_DMA_AMODE_POST_INC,
  1148. sg_dma_address(sgl), 0, 0);
  1149. } else {
  1150. omap_set_dma_src_params(dma_ch, 0, OMAP_DMA_AMODE_CONSTANT,
  1151. (host->mapbase + OMAP_HSMMC_DATA), 0, 0);
  1152. omap_set_dma_dest_params(dma_ch, 0, OMAP_DMA_AMODE_POST_INC,
  1153. sg_dma_address(sgl), 0, 0);
  1154. }
  1155. blksz = host->data->blksz;
  1156. nblk = sg_dma_len(sgl) / blksz;
  1157. omap_set_dma_transfer_params(dma_ch, OMAP_DMA_DATA_TYPE_S32,
  1158. blksz / 4, nblk, OMAP_DMA_SYNC_FRAME,
  1159. omap_hsmmc_get_dma_sync_dev(host, data),
  1160. !(data->flags & MMC_DATA_WRITE));
  1161. omap_start_dma(dma_ch);
  1162. }
  1163. /*
  1164. * DMA call back function
  1165. */
  1166. static void omap_hsmmc_dma_cb(int lch, u16 ch_status, void *cb_data)
  1167. {
  1168. struct omap_hsmmc_host *host = cb_data;
  1169. struct mmc_data *data;
  1170. int dma_ch, req_in_progress;
  1171. if (!(ch_status & OMAP_DMA_BLOCK_IRQ)) {
  1172. dev_warn(mmc_dev(host->mmc), "unexpected dma status %x\n",
  1173. ch_status);
  1174. return;
  1175. }
  1176. spin_lock(&host->irq_lock);
  1177. if (host->dma_ch < 0) {
  1178. spin_unlock(&host->irq_lock);
  1179. return;
  1180. }
  1181. data = host->mrq->data;
  1182. host->dma_sg_idx++;
  1183. if (host->dma_sg_idx < host->dma_len) {
  1184. /* Fire up the next transfer. */
  1185. omap_hsmmc_config_dma_params(host, data,
  1186. data->sg + host->dma_sg_idx);
  1187. spin_unlock(&host->irq_lock);
  1188. return;
  1189. }
  1190. if (!data->host_cookie)
  1191. dma_unmap_sg(mmc_dev(host->mmc), data->sg, data->sg_len,
  1192. omap_hsmmc_get_dma_dir(host, data));
  1193. req_in_progress = host->req_in_progress;
  1194. dma_ch = host->dma_ch;
  1195. host->dma_ch = -1;
  1196. spin_unlock(&host->irq_lock);
  1197. omap_free_dma(dma_ch);
  1198. /* If DMA has finished after TC, complete the request */
  1199. if (!req_in_progress) {
  1200. struct mmc_request *mrq = host->mrq;
  1201. host->mrq = NULL;
  1202. mmc_request_done(host->mmc, mrq);
  1203. }
  1204. }
  1205. static int omap_hsmmc_pre_dma_transfer(struct omap_hsmmc_host *host,
  1206. struct mmc_data *data,
  1207. struct omap_hsmmc_next *next)
  1208. {
  1209. int dma_len;
  1210. if (!next && data->host_cookie &&
  1211. data->host_cookie != host->next_data.cookie) {
  1212. printk(KERN_WARNING "[%s] invalid cookie: data->host_cookie %d"
  1213. " host->next_data.cookie %d\n",
  1214. __func__, data->host_cookie, host->next_data.cookie);
  1215. data->host_cookie = 0;
  1216. }
  1217. /* Check if next job is already prepared */
  1218. if (next ||
  1219. (!next && data->host_cookie != host->next_data.cookie)) {
  1220. dma_len = dma_map_sg(mmc_dev(host->mmc), data->sg,
  1221. data->sg_len,
  1222. omap_hsmmc_get_dma_dir(host, data));
  1223. } else {
  1224. dma_len = host->next_data.dma_len;
  1225. host->next_data.dma_len = 0;
  1226. }
  1227. if (dma_len == 0)
  1228. return -EINVAL;
  1229. if (next) {
  1230. next->dma_len = dma_len;
  1231. data->host_cookie = ++next->cookie < 0 ? 1 : next->cookie;
  1232. } else
  1233. host->dma_len = dma_len;
  1234. return 0;
  1235. }
  1236. /*
  1237. * Routine to configure and start DMA for the MMC card
  1238. */
  1239. static int omap_hsmmc_start_dma_transfer(struct omap_hsmmc_host *host,
  1240. struct mmc_request *req)
  1241. {
  1242. int dma_ch = 0, ret = 0, i;
  1243. struct mmc_data *data = req->data;
  1244. /* Sanity check: all the SG entries must be aligned by block size. */
  1245. for (i = 0; i < data->sg_len; i++) {
  1246. struct scatterlist *sgl;
  1247. sgl = data->sg + i;
  1248. if (sgl->length % data->blksz)
  1249. return -EINVAL;
  1250. }
  1251. if ((data->blksz % 4) != 0)
  1252. /* REVISIT: The MMC buffer increments only when MSB is written.
  1253. * Return error for blksz which is non multiple of four.
  1254. */
  1255. return -EINVAL;
  1256. BUG_ON(host->dma_ch != -1);
  1257. ret = omap_request_dma(omap_hsmmc_get_dma_sync_dev(host, data),
  1258. "MMC/SD", omap_hsmmc_dma_cb, host, &dma_ch);
  1259. if (ret != 0) {
  1260. dev_err(mmc_dev(host->mmc),
  1261. "%s: omap_request_dma() failed with %d\n",
  1262. mmc_hostname(host->mmc), ret);
  1263. return ret;
  1264. }
  1265. ret = omap_hsmmc_pre_dma_transfer(host, data, NULL);
  1266. if (ret)
  1267. return ret;
  1268. host->dma_ch = dma_ch;
  1269. host->dma_sg_idx = 0;
  1270. omap_hsmmc_config_dma_params(host, data, data->sg);
  1271. return 0;
  1272. }
  1273. static void set_data_timeout(struct omap_hsmmc_host *host,
  1274. unsigned int timeout_ns,
  1275. unsigned int timeout_clks)
  1276. {
  1277. unsigned int timeout, cycle_ns;
  1278. uint32_t reg, clkd, dto = 0;
  1279. reg = OMAP_HSMMC_READ(host->base, SYSCTL);
  1280. clkd = (reg & CLKD_MASK) >> CLKD_SHIFT;
  1281. if (clkd == 0)
  1282. clkd = 1;
  1283. cycle_ns = 1000000000 / (clk_get_rate(host->fclk) / clkd);
  1284. timeout = timeout_ns / cycle_ns;
  1285. timeout += timeout_clks;
  1286. if (timeout) {
  1287. while ((timeout & 0x80000000) == 0) {
  1288. dto += 1;
  1289. timeout <<= 1;
  1290. }
  1291. dto = 31 - dto;
  1292. timeout <<= 1;
  1293. if (timeout && dto)
  1294. dto += 1;
  1295. if (dto >= 13)
  1296. dto -= 13;
  1297. else
  1298. dto = 0;
  1299. if (dto > 14)
  1300. dto = 14;
  1301. }
  1302. reg &= ~DTO_MASK;
  1303. reg |= dto << DTO_SHIFT;
  1304. OMAP_HSMMC_WRITE(host->base, SYSCTL, reg);
  1305. }
  1306. /*
  1307. * Configure block length for MMC/SD cards and initiate the transfer.
  1308. */
  1309. static int
  1310. omap_hsmmc_prepare_data(struct omap_hsmmc_host *host, struct mmc_request *req)
  1311. {
  1312. int ret;
  1313. host->data = req->data;
  1314. if (req->data == NULL) {
  1315. OMAP_HSMMC_WRITE(host->base, BLK, 0);
  1316. /*
  1317. * Set an arbitrary 100ms data timeout for commands with
  1318. * busy signal.
  1319. */
  1320. if (req->cmd->flags & MMC_RSP_BUSY)
  1321. set_data_timeout(host, 100000000U, 0);
  1322. return 0;
  1323. }
  1324. OMAP_HSMMC_WRITE(host->base, BLK, (req->data->blksz)
  1325. | (req->data->blocks << 16));
  1326. set_data_timeout(host, req->data->timeout_ns, req->data->timeout_clks);
  1327. if (host->use_dma) {
  1328. ret = omap_hsmmc_start_dma_transfer(host, req);
  1329. if (ret != 0) {
  1330. dev_dbg(mmc_dev(host->mmc), "MMC start dma failure\n");
  1331. return ret;
  1332. }
  1333. }
  1334. return 0;
  1335. }
  1336. static void omap_hsmmc_post_req(struct mmc_host *mmc, struct mmc_request *mrq,
  1337. int err)
  1338. {
  1339. struct omap_hsmmc_host *host = mmc_priv(mmc);
  1340. struct mmc_data *data = mrq->data;
  1341. if (host->use_dma) {
  1342. dma_unmap_sg(mmc_dev(host->mmc), data->sg, data->sg_len,
  1343. omap_hsmmc_get_dma_dir(host, data));
  1344. data->host_cookie = 0;
  1345. }
  1346. }
  1347. static void omap_hsmmc_pre_req(struct mmc_host *mmc, struct mmc_request *mrq,
  1348. bool is_first_req)
  1349. {
  1350. struct omap_hsmmc_host *host = mmc_priv(mmc);
  1351. if (mrq->data->host_cookie) {
  1352. mrq->data->host_cookie = 0;
  1353. return ;
  1354. }
  1355. if (host->use_dma)
  1356. if (omap_hsmmc_pre_dma_transfer(host, mrq->data,
  1357. &host->next_data))
  1358. mrq->data->host_cookie = 0;
  1359. }
  1360. /*
  1361. * Request function. for read/write operation
  1362. */
  1363. static void omap_hsmmc_request(struct mmc_host *mmc, struct mmc_request *req)
  1364. {
  1365. struct omap_hsmmc_host *host = mmc_priv(mmc);
  1366. int err;
  1367. BUG_ON(host->req_in_progress);
  1368. BUG_ON(host->dma_ch != -1);
  1369. if (host->protect_card) {
  1370. if (host->reqs_blocked < 3) {
  1371. /*
  1372. * Ensure the controller is left in a consistent
  1373. * state by resetting the command and data state
  1374. * machines.
  1375. */
  1376. omap_hsmmc_reset_controller_fsm(host, SRD);
  1377. omap_hsmmc_reset_controller_fsm(host, SRC);
  1378. host->reqs_blocked += 1;
  1379. }
  1380. req->cmd->error = -EBADF;
  1381. if (req->data)
  1382. req->data->error = -EBADF;
  1383. req->cmd->retries = 0;
  1384. mmc_request_done(mmc, req);
  1385. return;
  1386. } else if (host->reqs_blocked)
  1387. host->reqs_blocked = 0;
  1388. WARN_ON(host->mrq != NULL);
  1389. host->mrq = req;
  1390. err = omap_hsmmc_prepare_data(host, req);
  1391. if (err) {
  1392. req->cmd->error = err;
  1393. if (req->data)
  1394. req->data->error = err;
  1395. host->mrq = NULL;
  1396. mmc_request_done(mmc, req);
  1397. return;
  1398. }
  1399. omap_hsmmc_start_command(host, req->cmd, req->data);
  1400. }
  1401. /* Routine to configure clock values. Exposed API to core */
  1402. static void omap_hsmmc_set_ios(struct mmc_host *mmc, struct mmc_ios *ios)
  1403. {
  1404. struct omap_hsmmc_host *host = mmc_priv(mmc);
  1405. int do_send_init_stream = 0;
  1406. pm_runtime_get_sync(host->dev);
  1407. if (ios->power_mode != host->power_mode) {
  1408. switch (ios->power_mode) {
  1409. case MMC_POWER_OFF:
  1410. mmc_slot(host).set_power(host->dev, host->slot_id,
  1411. 0, 0);
  1412. host->vdd = 0;
  1413. break;
  1414. case MMC_POWER_UP:
  1415. mmc_slot(host).set_power(host->dev, host->slot_id,
  1416. 1, ios->vdd);
  1417. host->vdd = ios->vdd;
  1418. break;
  1419. case MMC_POWER_ON:
  1420. do_send_init_stream = 1;
  1421. break;
  1422. }
  1423. host->power_mode = ios->power_mode;
  1424. }
  1425. /* FIXME: set registers based only on changes to ios */
  1426. omap_hsmmc_set_bus_width(host);
  1427. if (host->pdata->controller_flags & OMAP_HSMMC_SUPPORTS_DUAL_VOLT) {
  1428. /* Only MMC1 can interface at 3V without some flavor
  1429. * of external transceiver; but they all handle 1.8V.
  1430. */
  1431. if ((OMAP_HSMMC_READ(host->base, HCTL) & SDVSDET) &&
  1432. (ios->vdd == DUAL_VOLT_OCR_BIT)) {
  1433. /*
  1434. * The mmc_select_voltage fn of the core does
  1435. * not seem to set the power_mode to
  1436. * MMC_POWER_UP upon recalculating the voltage.
  1437. * vdd 1.8v.
  1438. */
  1439. if (omap_hsmmc_switch_opcond(host, ios->vdd) != 0)
  1440. dev_dbg(mmc_dev(host->mmc),
  1441. "Switch operation failed\n");
  1442. }
  1443. }
  1444. omap_hsmmc_set_clock(host);
  1445. if (do_send_init_stream)
  1446. send_init_stream(host);
  1447. omap_hsmmc_set_bus_mode(host);
  1448. pm_runtime_put_autosuspend(host->dev);
  1449. }
  1450. static int omap_hsmmc_get_cd(struct mmc_host *mmc)
  1451. {
  1452. struct omap_hsmmc_host *host = mmc_priv(mmc);
  1453. if (!mmc_slot(host).card_detect)
  1454. return -ENOSYS;
  1455. return mmc_slot(host).card_detect(host->dev, host->slot_id);
  1456. }
  1457. static int omap_hsmmc_get_ro(struct mmc_host *mmc)
  1458. {
  1459. struct omap_hsmmc_host *host = mmc_priv(mmc);
  1460. if (!mmc_slot(host).get_ro)
  1461. return -ENOSYS;
  1462. return mmc_slot(host).get_ro(host->dev, 0);
  1463. }
  1464. static void omap_hsmmc_init_card(struct mmc_host *mmc, struct mmc_card *card)
  1465. {
  1466. struct omap_hsmmc_host *host = mmc_priv(mmc);
  1467. if (mmc_slot(host).init_card)
  1468. mmc_slot(host).init_card(card);
  1469. }
  1470. static void omap_hsmmc_conf_bus_power(struct omap_hsmmc_host *host)
  1471. {
  1472. u32 hctl, capa, value;
  1473. /* Only MMC1 supports 3.0V */
  1474. if (host->pdata->controller_flags & OMAP_HSMMC_SUPPORTS_DUAL_VOLT) {
  1475. hctl = SDVS30;
  1476. capa = VS30 | VS18;
  1477. } else {
  1478. hctl = SDVS18;
  1479. capa = VS18;
  1480. }
  1481. value = OMAP_HSMMC_READ(host->base, HCTL) & ~SDVS_MASK;
  1482. OMAP_HSMMC_WRITE(host->base, HCTL, value | hctl);
  1483. value = OMAP_HSMMC_READ(host->base, CAPA);
  1484. OMAP_HSMMC_WRITE(host->base, CAPA, value | capa);
  1485. /* Set the controller to AUTO IDLE mode */
  1486. value = OMAP_HSMMC_READ(host->base, SYSCONFIG);
  1487. OMAP_HSMMC_WRITE(host->base, SYSCONFIG, value | AUTOIDLE);
  1488. /* Set SD bus power bit */
  1489. set_sd_bus_power(host);
  1490. }
  1491. static int omap_hsmmc_enable_fclk(struct mmc_host *mmc)
  1492. {
  1493. struct omap_hsmmc_host *host = mmc_priv(mmc);
  1494. pm_runtime_get_sync(host->dev);
  1495. return 0;
  1496. }
  1497. static int omap_hsmmc_disable_fclk(struct mmc_host *mmc, int lazy)
  1498. {
  1499. struct omap_hsmmc_host *host = mmc_priv(mmc);
  1500. pm_runtime_mark_last_busy(host->dev);
  1501. pm_runtime_put_autosuspend(host->dev);
  1502. return 0;
  1503. }
  1504. static const struct mmc_host_ops omap_hsmmc_ops = {
  1505. .enable = omap_hsmmc_enable_fclk,
  1506. .disable = omap_hsmmc_disable_fclk,
  1507. .post_req = omap_hsmmc_post_req,
  1508. .pre_req = omap_hsmmc_pre_req,
  1509. .request = omap_hsmmc_request,
  1510. .set_ios = omap_hsmmc_set_ios,
  1511. .get_cd = omap_hsmmc_get_cd,
  1512. .get_ro = omap_hsmmc_get_ro,
  1513. .init_card = omap_hsmmc_init_card,
  1514. /* NYET -- enable_sdio_irq */
  1515. };
  1516. #ifdef CONFIG_DEBUG_FS
  1517. static int omap_hsmmc_regs_show(struct seq_file *s, void *data)
  1518. {
  1519. struct mmc_host *mmc = s->private;
  1520. struct omap_hsmmc_host *host = mmc_priv(mmc);
  1521. int context_loss = 0;
  1522. if (host->pdata->get_context_loss_count)
  1523. context_loss = host->pdata->get_context_loss_count(host->dev);
  1524. seq_printf(s, "mmc%d:\n"
  1525. " enabled:\t%d\n"
  1526. " dpm_state:\t%d\n"
  1527. " nesting_cnt:\t%d\n"
  1528. " ctx_loss:\t%d:%d\n"
  1529. "\nregs:\n",
  1530. mmc->index, mmc->enabled ? 1 : 0,
  1531. host->dpm_state, mmc->nesting_cnt,
  1532. host->context_loss, context_loss);
  1533. if (host->suspended) {
  1534. seq_printf(s, "host suspended, can't read registers\n");
  1535. return 0;
  1536. }
  1537. pm_runtime_get_sync(host->dev);
  1538. seq_printf(s, "SYSCONFIG:\t0x%08x\n",
  1539. OMAP_HSMMC_READ(host->base, SYSCONFIG));
  1540. seq_printf(s, "CON:\t\t0x%08x\n",
  1541. OMAP_HSMMC_READ(host->base, CON));
  1542. seq_printf(s, "HCTL:\t\t0x%08x\n",
  1543. OMAP_HSMMC_READ(host->base, HCTL));
  1544. seq_printf(s, "SYSCTL:\t\t0x%08x\n",
  1545. OMAP_HSMMC_READ(host->base, SYSCTL));
  1546. seq_printf(s, "IE:\t\t0x%08x\n",
  1547. OMAP_HSMMC_READ(host->base, IE));
  1548. seq_printf(s, "ISE:\t\t0x%08x\n",
  1549. OMAP_HSMMC_READ(host->base, ISE));
  1550. seq_printf(s, "CAPA:\t\t0x%08x\n",
  1551. OMAP_HSMMC_READ(host->base, CAPA));
  1552. pm_runtime_mark_last_busy(host->dev);
  1553. pm_runtime_put_autosuspend(host->dev);
  1554. return 0;
  1555. }
  1556. static int omap_hsmmc_regs_open(struct inode *inode, struct file *file)
  1557. {
  1558. return single_open(file, omap_hsmmc_regs_show, inode->i_private);
  1559. }
  1560. static const struct file_operations mmc_regs_fops = {
  1561. .open = omap_hsmmc_regs_open,
  1562. .read = seq_read,
  1563. .llseek = seq_lseek,
  1564. .release = single_release,
  1565. };
  1566. static void omap_hsmmc_debugfs(struct mmc_host *mmc)
  1567. {
  1568. if (mmc->debugfs_root)
  1569. debugfs_create_file("regs", S_IRUSR, mmc->debugfs_root,
  1570. mmc, &mmc_regs_fops);
  1571. }
  1572. #else
  1573. static void omap_hsmmc_debugfs(struct mmc_host *mmc)
  1574. {
  1575. }
  1576. #endif
  1577. static int __init omap_hsmmc_probe(struct platform_device *pdev)
  1578. {
  1579. struct omap_mmc_platform_data *pdata = pdev->dev.platform_data;
  1580. struct mmc_host *mmc;
  1581. struct omap_hsmmc_host *host = NULL;
  1582. struct resource *res;
  1583. int ret, irq;
  1584. if (pdata == NULL) {
  1585. dev_err(&pdev->dev, "Platform Data is missing\n");
  1586. return -ENXIO;
  1587. }
  1588. if (pdata->nr_slots == 0) {
  1589. dev_err(&pdev->dev, "No Slots\n");
  1590. return -ENXIO;
  1591. }
  1592. res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
  1593. irq = platform_get_irq(pdev, 0);
  1594. if (res == NULL || irq < 0)
  1595. return -ENXIO;
  1596. res->start += pdata->reg_offset;
  1597. res->end += pdata->reg_offset;
  1598. res = request_mem_region(res->start, resource_size(res), pdev->name);
  1599. if (res == NULL)
  1600. return -EBUSY;
  1601. ret = omap_hsmmc_gpio_init(pdata);
  1602. if (ret)
  1603. goto err;
  1604. mmc = mmc_alloc_host(sizeof(struct omap_hsmmc_host), &pdev->dev);
  1605. if (!mmc) {
  1606. ret = -ENOMEM;
  1607. goto err_alloc;
  1608. }
  1609. host = mmc_priv(mmc);
  1610. host->mmc = mmc;
  1611. host->pdata = pdata;
  1612. host->dev = &pdev->dev;
  1613. host->use_dma = 1;
  1614. host->dev->dma_mask = &pdata->dma_mask;
  1615. host->dma_ch = -1;
  1616. host->irq = irq;
  1617. host->id = pdev->id;
  1618. host->slot_id = 0;
  1619. host->mapbase = res->start;
  1620. host->base = ioremap(host->mapbase, SZ_4K);
  1621. host->power_mode = MMC_POWER_OFF;
  1622. host->next_data.cookie = 1;
  1623. platform_set_drvdata(pdev, host);
  1624. INIT_WORK(&host->mmc_carddetect_work, omap_hsmmc_detect);
  1625. mmc->ops = &omap_hsmmc_ops;
  1626. /*
  1627. * If regulator_disable can only put vcc_aux to sleep then there is
  1628. * no off state.
  1629. */
  1630. if (mmc_slot(host).vcc_aux_disable_is_sleep)
  1631. mmc_slot(host).no_off = 1;
  1632. mmc->f_min = OMAP_MMC_MIN_CLOCK;
  1633. mmc->f_max = OMAP_MMC_MAX_CLOCK;
  1634. spin_lock_init(&host->irq_lock);
  1635. host->fclk = clk_get(&pdev->dev, "fck");
  1636. if (IS_ERR(host->fclk)) {
  1637. ret = PTR_ERR(host->fclk);
  1638. host->fclk = NULL;
  1639. goto err1;
  1640. }
  1641. omap_hsmmc_context_save(host);
  1642. mmc->caps |= MMC_CAP_DISABLE;
  1643. pm_runtime_enable(host->dev);
  1644. pm_runtime_get_sync(host->dev);
  1645. pm_runtime_set_autosuspend_delay(host->dev, MMC_AUTOSUSPEND_DELAY);
  1646. pm_runtime_use_autosuspend(host->dev);
  1647. if (cpu_is_omap2430()) {
  1648. host->dbclk = clk_get(&pdev->dev, "mmchsdb_fck");
  1649. /*
  1650. * MMC can still work without debounce clock.
  1651. */
  1652. if (IS_ERR(host->dbclk))
  1653. dev_warn(mmc_dev(host->mmc),
  1654. "Failed to get debounce clock\n");
  1655. else
  1656. host->got_dbclk = 1;
  1657. if (host->got_dbclk)
  1658. if (clk_enable(host->dbclk) != 0)
  1659. dev_dbg(mmc_dev(host->mmc), "Enabling debounce"
  1660. " clk failed\n");
  1661. }
  1662. /* Since we do only SG emulation, we can have as many segs
  1663. * as we want. */
  1664. mmc->max_segs = 1024;
  1665. mmc->max_blk_size = 512; /* Block Length at max can be 1024 */
  1666. mmc->max_blk_count = 0xFFFF; /* No. of Blocks is 16 bits */
  1667. mmc->max_req_size = mmc->max_blk_size * mmc->max_blk_count;
  1668. mmc->max_seg_size = mmc->max_req_size;
  1669. mmc->caps |= MMC_CAP_MMC_HIGHSPEED | MMC_CAP_SD_HIGHSPEED |
  1670. MMC_CAP_WAIT_WHILE_BUSY | MMC_CAP_ERASE;
  1671. mmc->caps |= mmc_slot(host).caps;
  1672. if (mmc->caps & MMC_CAP_8_BIT_DATA)
  1673. mmc->caps |= MMC_CAP_4_BIT_DATA;
  1674. if (mmc_slot(host).nonremovable)
  1675. mmc->caps |= MMC_CAP_NONREMOVABLE;
  1676. omap_hsmmc_conf_bus_power(host);
  1677. /* Select DMA lines */
  1678. switch (host->id) {
  1679. case OMAP_MMC1_DEVID:
  1680. host->dma_line_tx = OMAP24XX_DMA_MMC1_TX;
  1681. host->dma_line_rx = OMAP24XX_DMA_MMC1_RX;
  1682. break;
  1683. case OMAP_MMC2_DEVID:
  1684. host->dma_line_tx = OMAP24XX_DMA_MMC2_TX;
  1685. host->dma_line_rx = OMAP24XX_DMA_MMC2_RX;
  1686. break;
  1687. case OMAP_MMC3_DEVID:
  1688. host->dma_line_tx = OMAP34XX_DMA_MMC3_TX;
  1689. host->dma_line_rx = OMAP34XX_DMA_MMC3_RX;
  1690. break;
  1691. case OMAP_MMC4_DEVID:
  1692. host->dma_line_tx = OMAP44XX_DMA_MMC4_TX;
  1693. host->dma_line_rx = OMAP44XX_DMA_MMC4_RX;
  1694. break;
  1695. case OMAP_MMC5_DEVID:
  1696. host->dma_line_tx = OMAP44XX_DMA_MMC5_TX;
  1697. host->dma_line_rx = OMAP44XX_DMA_MMC5_RX;
  1698. break;
  1699. default:
  1700. dev_err(mmc_dev(host->mmc), "Invalid MMC id\n");
  1701. goto err_irq;
  1702. }
  1703. /* Request IRQ for MMC operations */
  1704. ret = request_irq(host->irq, omap_hsmmc_irq, 0,
  1705. mmc_hostname(mmc), host);
  1706. if (ret) {
  1707. dev_dbg(mmc_dev(host->mmc), "Unable to grab HSMMC IRQ\n");
  1708. goto err_irq;
  1709. }
  1710. if (pdata->init != NULL) {
  1711. if (pdata->init(&pdev->dev) != 0) {
  1712. dev_dbg(mmc_dev(host->mmc),
  1713. "Unable to configure MMC IRQs\n");
  1714. goto err_irq_cd_init;
  1715. }
  1716. }
  1717. if (omap_hsmmc_have_reg() && !mmc_slot(host).set_power) {
  1718. ret = omap_hsmmc_reg_get(host);
  1719. if (ret)
  1720. goto err_reg;
  1721. host->use_reg = 1;
  1722. }
  1723. mmc->ocr_avail = mmc_slot(host).ocr_mask;
  1724. /* Request IRQ for card detect */
  1725. if ((mmc_slot(host).card_detect_irq)) {
  1726. ret = request_irq(mmc_slot(host).card_detect_irq,
  1727. omap_hsmmc_cd_handler,
  1728. IRQF_TRIGGER_RISING | IRQF_TRIGGER_FALLING,
  1729. mmc_hostname(mmc), host);
  1730. if (ret) {
  1731. dev_dbg(mmc_dev(host->mmc),
  1732. "Unable to grab MMC CD IRQ\n");
  1733. goto err_irq_cd;
  1734. }
  1735. pdata->suspend = omap_hsmmc_suspend_cdirq;
  1736. pdata->resume = omap_hsmmc_resume_cdirq;
  1737. }
  1738. omap_hsmmc_disable_irq(host);
  1739. omap_hsmmc_protect_card(host);
  1740. mmc_add_host(mmc);
  1741. if (mmc_slot(host).name != NULL) {
  1742. ret = device_create_file(&mmc->class_dev, &dev_attr_slot_name);
  1743. if (ret < 0)
  1744. goto err_slot_name;
  1745. }
  1746. if (mmc_slot(host).card_detect_irq && mmc_slot(host).get_cover_state) {
  1747. ret = device_create_file(&mmc->class_dev,
  1748. &dev_attr_cover_switch);
  1749. if (ret < 0)
  1750. goto err_slot_name;
  1751. }
  1752. omap_hsmmc_debugfs(mmc);
  1753. pm_runtime_mark_last_busy(host->dev);
  1754. pm_runtime_put_autosuspend(host->dev);
  1755. return 0;
  1756. err_slot_name:
  1757. mmc_remove_host(mmc);
  1758. free_irq(mmc_slot(host).card_detect_irq, host);
  1759. err_irq_cd:
  1760. if (host->use_reg)
  1761. omap_hsmmc_reg_put(host);
  1762. err_reg:
  1763. if (host->pdata->cleanup)
  1764. host->pdata->cleanup(&pdev->dev);
  1765. err_irq_cd_init:
  1766. free_irq(host->irq, host);
  1767. err_irq:
  1768. pm_runtime_mark_last_busy(host->dev);
  1769. pm_runtime_put_autosuspend(host->dev);
  1770. clk_put(host->fclk);
  1771. if (host->got_dbclk) {
  1772. clk_disable(host->dbclk);
  1773. clk_put(host->dbclk);
  1774. }
  1775. err1:
  1776. iounmap(host->base);
  1777. platform_set_drvdata(pdev, NULL);
  1778. mmc_free_host(mmc);
  1779. err_alloc:
  1780. omap_hsmmc_gpio_free(pdata);
  1781. err:
  1782. release_mem_region(res->start, resource_size(res));
  1783. return ret;
  1784. }
  1785. static int omap_hsmmc_remove(struct platform_device *pdev)
  1786. {
  1787. struct omap_hsmmc_host *host = platform_get_drvdata(pdev);
  1788. struct resource *res;
  1789. if (host) {
  1790. pm_runtime_get_sync(host->dev);
  1791. mmc_remove_host(host->mmc);
  1792. if (host->use_reg)
  1793. omap_hsmmc_reg_put(host);
  1794. if (host->pdata->cleanup)
  1795. host->pdata->cleanup(&pdev->dev);
  1796. free_irq(host->irq, host);
  1797. if (mmc_slot(host).card_detect_irq)
  1798. free_irq(mmc_slot(host).card_detect_irq, host);
  1799. flush_work_sync(&host->mmc_carddetect_work);
  1800. pm_runtime_put_sync(host->dev);
  1801. pm_runtime_disable(host->dev);
  1802. clk_put(host->fclk);
  1803. if (host->got_dbclk) {
  1804. clk_disable(host->dbclk);
  1805. clk_put(host->dbclk);
  1806. }
  1807. mmc_free_host(host->mmc);
  1808. iounmap(host->base);
  1809. omap_hsmmc_gpio_free(pdev->dev.platform_data);
  1810. }
  1811. res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
  1812. if (res)
  1813. release_mem_region(res->start, resource_size(res));
  1814. platform_set_drvdata(pdev, NULL);
  1815. return 0;
  1816. }
  1817. #ifdef CONFIG_PM
  1818. static int omap_hsmmc_suspend(struct device *dev)
  1819. {
  1820. int ret = 0;
  1821. struct platform_device *pdev = to_platform_device(dev);
  1822. struct omap_hsmmc_host *host = platform_get_drvdata(pdev);
  1823. if (host && host->suspended)
  1824. return 0;
  1825. if (host) {
  1826. pm_runtime_get_sync(host->dev);
  1827. host->suspended = 1;
  1828. if (host->pdata->suspend) {
  1829. ret = host->pdata->suspend(&pdev->dev,
  1830. host->slot_id);
  1831. if (ret) {
  1832. dev_dbg(mmc_dev(host->mmc),
  1833. "Unable to handle MMC board"
  1834. " level suspend\n");
  1835. host->suspended = 0;
  1836. return ret;
  1837. }
  1838. }
  1839. cancel_work_sync(&host->mmc_carddetect_work);
  1840. ret = mmc_suspend_host(host->mmc);
  1841. if (ret == 0) {
  1842. omap_hsmmc_disable_irq(host);
  1843. OMAP_HSMMC_WRITE(host->base, HCTL,
  1844. OMAP_HSMMC_READ(host->base, HCTL) & ~SDBP);
  1845. if (host->got_dbclk)
  1846. clk_disable(host->dbclk);
  1847. } else {
  1848. host->suspended = 0;
  1849. if (host->pdata->resume) {
  1850. ret = host->pdata->resume(&pdev->dev,
  1851. host->slot_id);
  1852. if (ret)
  1853. dev_dbg(mmc_dev(host->mmc),
  1854. "Unmask interrupt failed\n");
  1855. }
  1856. }
  1857. pm_runtime_put_sync(host->dev);
  1858. }
  1859. return ret;
  1860. }
  1861. /* Routine to resume the MMC device */
  1862. static int omap_hsmmc_resume(struct device *dev)
  1863. {
  1864. int ret = 0;
  1865. struct platform_device *pdev = to_platform_device(dev);
  1866. struct omap_hsmmc_host *host = platform_get_drvdata(pdev);
  1867. if (host && !host->suspended)
  1868. return 0;
  1869. if (host) {
  1870. pm_runtime_get_sync(host->dev);
  1871. if (host->got_dbclk)
  1872. clk_enable(host->dbclk);
  1873. omap_hsmmc_conf_bus_power(host);
  1874. if (host->pdata->resume) {
  1875. ret = host->pdata->resume(&pdev->dev, host->slot_id);
  1876. if (ret)
  1877. dev_dbg(mmc_dev(host->mmc),
  1878. "Unmask interrupt failed\n");
  1879. }
  1880. omap_hsmmc_protect_card(host);
  1881. /* Notify the core to resume the host */
  1882. ret = mmc_resume_host(host->mmc);
  1883. if (ret == 0)
  1884. host->suspended = 0;
  1885. pm_runtime_mark_last_busy(host->dev);
  1886. pm_runtime_put_autosuspend(host->dev);
  1887. }
  1888. return ret;
  1889. }
  1890. #else
  1891. #define omap_hsmmc_suspend NULL
  1892. #define omap_hsmmc_resume NULL
  1893. #endif
  1894. static int omap_hsmmc_runtime_suspend(struct device *dev)
  1895. {
  1896. struct omap_hsmmc_host *host;
  1897. host = platform_get_drvdata(to_platform_device(dev));
  1898. omap_hsmmc_context_save(host);
  1899. dev_dbg(mmc_dev(host->mmc), "disabled\n");
  1900. return 0;
  1901. }
  1902. static int omap_hsmmc_runtime_resume(struct device *dev)
  1903. {
  1904. struct omap_hsmmc_host *host;
  1905. host = platform_get_drvdata(to_platform_device(dev));
  1906. omap_hsmmc_context_restore(host);
  1907. dev_dbg(mmc_dev(host->mmc), "enabled\n");
  1908. return 0;
  1909. }
  1910. static struct dev_pm_ops omap_hsmmc_dev_pm_ops = {
  1911. .suspend = omap_hsmmc_suspend,
  1912. .resume = omap_hsmmc_resume,
  1913. .runtime_suspend = omap_hsmmc_runtime_suspend,
  1914. .runtime_resume = omap_hsmmc_runtime_resume,
  1915. };
  1916. static struct platform_driver omap_hsmmc_driver = {
  1917. .remove = omap_hsmmc_remove,
  1918. .driver = {
  1919. .name = DRIVER_NAME,
  1920. .owner = THIS_MODULE,
  1921. .pm = &omap_hsmmc_dev_pm_ops,
  1922. },
  1923. };
  1924. static int __init omap_hsmmc_init(void)
  1925. {
  1926. /* Register the MMC driver */
  1927. return platform_driver_probe(&omap_hsmmc_driver, omap_hsmmc_probe);
  1928. }
  1929. static void __exit omap_hsmmc_cleanup(void)
  1930. {
  1931. /* Unregister MMC driver */
  1932. platform_driver_unregister(&omap_hsmmc_driver);
  1933. }
  1934. module_init(omap_hsmmc_init);
  1935. module_exit(omap_hsmmc_cleanup);
  1936. MODULE_DESCRIPTION("OMAP High Speed Multimedia Card driver");
  1937. MODULE_LICENSE("GPL");
  1938. MODULE_ALIAS("platform:" DRIVER_NAME);
  1939. MODULE_AUTHOR("Texas Instruments Inc");