pmac.c 59 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205
  1. /*
  2. * linux/drivers/ide/ide-pmac.c
  3. *
  4. * Support for IDE interfaces on PowerMacs.
  5. * These IDE interfaces are memory-mapped and have a DBDMA channel
  6. * for doing DMA.
  7. *
  8. * Copyright (C) 1998-2003 Paul Mackerras & Ben. Herrenschmidt
  9. *
  10. * This program is free software; you can redistribute it and/or
  11. * modify it under the terms of the GNU General Public License
  12. * as published by the Free Software Foundation; either version
  13. * 2 of the License, or (at your option) any later version.
  14. *
  15. * Some code taken from drivers/ide/ide-dma.c:
  16. *
  17. * Copyright (c) 1995-1998 Mark Lord
  18. *
  19. * TODO: - Use pre-calculated (kauai) timing tables all the time and
  20. * get rid of the "rounded" tables used previously, so we have the
  21. * same table format for all controllers and can then just have one
  22. * big table
  23. *
  24. */
  25. #include <linux/config.h>
  26. #include <linux/types.h>
  27. #include <linux/kernel.h>
  28. #include <linux/sched.h>
  29. #include <linux/init.h>
  30. #include <linux/delay.h>
  31. #include <linux/ide.h>
  32. #include <linux/notifier.h>
  33. #include <linux/reboot.h>
  34. #include <linux/pci.h>
  35. #include <linux/adb.h>
  36. #include <linux/pmu.h>
  37. #include <linux/scatterlist.h>
  38. #include <asm/prom.h>
  39. #include <asm/io.h>
  40. #include <asm/dbdma.h>
  41. #include <asm/ide.h>
  42. #include <asm/pci-bridge.h>
  43. #include <asm/machdep.h>
  44. #include <asm/pmac_feature.h>
  45. #include <asm/sections.h>
  46. #include <asm/irq.h>
  47. #ifndef CONFIG_PPC64
  48. #include <asm/mediabay.h>
  49. #endif
  50. #include "ide-timing.h"
  51. #undef IDE_PMAC_DEBUG
  52. #define DMA_WAIT_TIMEOUT 50
  53. typedef struct pmac_ide_hwif {
  54. unsigned long regbase;
  55. int irq;
  56. int kind;
  57. int aapl_bus_id;
  58. unsigned cable_80 : 1;
  59. unsigned mediabay : 1;
  60. unsigned broken_dma : 1;
  61. unsigned broken_dma_warn : 1;
  62. struct device_node* node;
  63. struct macio_dev *mdev;
  64. u32 timings[4];
  65. volatile u32 __iomem * *kauai_fcr;
  66. #ifdef CONFIG_BLK_DEV_IDEDMA_PMAC
  67. /* Those fields are duplicating what is in hwif. We currently
  68. * can't use the hwif ones because of some assumptions that are
  69. * beeing done by the generic code about the kind of dma controller
  70. * and format of the dma table. This will have to be fixed though.
  71. */
  72. volatile struct dbdma_regs __iomem * dma_regs;
  73. struct dbdma_cmd* dma_table_cpu;
  74. #endif
  75. } pmac_ide_hwif_t;
  76. static pmac_ide_hwif_t pmac_ide[MAX_HWIFS] __pmacdata;
  77. static int pmac_ide_count;
  78. enum {
  79. controller_ohare, /* OHare based */
  80. controller_heathrow, /* Heathrow/Paddington */
  81. controller_kl_ata3, /* KeyLargo ATA-3 */
  82. controller_kl_ata4, /* KeyLargo ATA-4 */
  83. controller_un_ata6, /* UniNorth2 ATA-6 */
  84. controller_k2_ata6, /* K2 ATA-6 */
  85. controller_sh_ata6, /* Shasta ATA-6 */
  86. };
  87. static const char* model_name[] = {
  88. "OHare ATA", /* OHare based */
  89. "Heathrow ATA", /* Heathrow/Paddington */
  90. "KeyLargo ATA-3", /* KeyLargo ATA-3 (MDMA only) */
  91. "KeyLargo ATA-4", /* KeyLargo ATA-4 (UDMA/66) */
  92. "UniNorth ATA-6", /* UniNorth2 ATA-6 (UDMA/100) */
  93. "K2 ATA-6", /* K2 ATA-6 (UDMA/100) */
  94. "Shasta ATA-6", /* Shasta ATA-6 (UDMA/133) */
  95. };
  96. /*
  97. * Extra registers, both 32-bit little-endian
  98. */
  99. #define IDE_TIMING_CONFIG 0x200
  100. #define IDE_INTERRUPT 0x300
  101. /* Kauai (U2) ATA has different register setup */
  102. #define IDE_KAUAI_PIO_CONFIG 0x200
  103. #define IDE_KAUAI_ULTRA_CONFIG 0x210
  104. #define IDE_KAUAI_POLL_CONFIG 0x220
  105. /*
  106. * Timing configuration register definitions
  107. */
  108. /* Number of IDE_SYSCLK_NS ticks, argument is in nanoseconds */
  109. #define SYSCLK_TICKS(t) (((t) + IDE_SYSCLK_NS - 1) / IDE_SYSCLK_NS)
  110. #define SYSCLK_TICKS_66(t) (((t) + IDE_SYSCLK_66_NS - 1) / IDE_SYSCLK_66_NS)
  111. #define IDE_SYSCLK_NS 30 /* 33Mhz cell */
  112. #define IDE_SYSCLK_66_NS 15 /* 66Mhz cell */
  113. /* 133Mhz cell, found in shasta.
  114. * See comments about 100 Mhz Uninorth 2...
  115. * Note that PIO_MASK and MDMA_MASK seem to overlap
  116. */
  117. #define TR_133_PIOREG_PIO_MASK 0xff000fff
  118. #define TR_133_PIOREG_MDMA_MASK 0x00fff800
  119. #define TR_133_UDMAREG_UDMA_MASK 0x0003ffff
  120. #define TR_133_UDMAREG_UDMA_EN 0x00000001
  121. /* 100Mhz cell, found in Uninorth 2. I don't have much infos about
  122. * this one yet, it appears as a pci device (106b/0033) on uninorth
  123. * internal PCI bus and it's clock is controlled like gem or fw. It
  124. * appears to be an evolution of keylargo ATA4 with a timing register
  125. * extended to 2 32bits registers and a similar DBDMA channel. Other
  126. * registers seem to exist but I can't tell much about them.
  127. *
  128. * So far, I'm using pre-calculated tables for this extracted from
  129. * the values used by the MacOS X driver.
  130. *
  131. * The "PIO" register controls PIO and MDMA timings, the "ULTRA"
  132. * register controls the UDMA timings. At least, it seems bit 0
  133. * of this one enables UDMA vs. MDMA, and bits 4..7 are the
  134. * cycle time in units of 10ns. Bits 8..15 are used by I don't
  135. * know their meaning yet
  136. */
  137. #define TR_100_PIOREG_PIO_MASK 0xff000fff
  138. #define TR_100_PIOREG_MDMA_MASK 0x00fff000
  139. #define TR_100_UDMAREG_UDMA_MASK 0x0000ffff
  140. #define TR_100_UDMAREG_UDMA_EN 0x00000001
  141. /* 66Mhz cell, found in KeyLargo. Can do ultra mode 0 to 2 on
  142. * 40 connector cable and to 4 on 80 connector one.
  143. * Clock unit is 15ns (66Mhz)
  144. *
  145. * 3 Values can be programmed:
  146. * - Write data setup, which appears to match the cycle time. They
  147. * also call it DIOW setup.
  148. * - Ready to pause time (from spec)
  149. * - Address setup. That one is weird. I don't see where exactly
  150. * it fits in UDMA cycles, I got it's name from an obscure piece
  151. * of commented out code in Darwin. They leave it to 0, we do as
  152. * well, despite a comment that would lead to think it has a
  153. * min value of 45ns.
  154. * Apple also add 60ns to the write data setup (or cycle time ?) on
  155. * reads.
  156. */
  157. #define TR_66_UDMA_MASK 0xfff00000
  158. #define TR_66_UDMA_EN 0x00100000 /* Enable Ultra mode for DMA */
  159. #define TR_66_UDMA_ADDRSETUP_MASK 0xe0000000 /* Address setup */
  160. #define TR_66_UDMA_ADDRSETUP_SHIFT 29
  161. #define TR_66_UDMA_RDY2PAUS_MASK 0x1e000000 /* Ready 2 pause time */
  162. #define TR_66_UDMA_RDY2PAUS_SHIFT 25
  163. #define TR_66_UDMA_WRDATASETUP_MASK 0x01e00000 /* Write data setup time */
  164. #define TR_66_UDMA_WRDATASETUP_SHIFT 21
  165. #define TR_66_MDMA_MASK 0x000ffc00
  166. #define TR_66_MDMA_RECOVERY_MASK 0x000f8000
  167. #define TR_66_MDMA_RECOVERY_SHIFT 15
  168. #define TR_66_MDMA_ACCESS_MASK 0x00007c00
  169. #define TR_66_MDMA_ACCESS_SHIFT 10
  170. #define TR_66_PIO_MASK 0x000003ff
  171. #define TR_66_PIO_RECOVERY_MASK 0x000003e0
  172. #define TR_66_PIO_RECOVERY_SHIFT 5
  173. #define TR_66_PIO_ACCESS_MASK 0x0000001f
  174. #define TR_66_PIO_ACCESS_SHIFT 0
  175. /* 33Mhz cell, found in OHare, Heathrow (& Paddington) and KeyLargo
  176. * Can do pio & mdma modes, clock unit is 30ns (33Mhz)
  177. *
  178. * The access time and recovery time can be programmed. Some older
  179. * Darwin code base limit OHare to 150ns cycle time. I decided to do
  180. * the same here fore safety against broken old hardware ;)
  181. * The HalfTick bit, when set, adds half a clock (15ns) to the access
  182. * time and removes one from recovery. It's not supported on KeyLargo
  183. * implementation afaik. The E bit appears to be set for PIO mode 0 and
  184. * is used to reach long timings used in this mode.
  185. */
  186. #define TR_33_MDMA_MASK 0x003ff800
  187. #define TR_33_MDMA_RECOVERY_MASK 0x001f0000
  188. #define TR_33_MDMA_RECOVERY_SHIFT 16
  189. #define TR_33_MDMA_ACCESS_MASK 0x0000f800
  190. #define TR_33_MDMA_ACCESS_SHIFT 11
  191. #define TR_33_MDMA_HALFTICK 0x00200000
  192. #define TR_33_PIO_MASK 0x000007ff
  193. #define TR_33_PIO_E 0x00000400
  194. #define TR_33_PIO_RECOVERY_MASK 0x000003e0
  195. #define TR_33_PIO_RECOVERY_SHIFT 5
  196. #define TR_33_PIO_ACCESS_MASK 0x0000001f
  197. #define TR_33_PIO_ACCESS_SHIFT 0
  198. /*
  199. * Interrupt register definitions
  200. */
  201. #define IDE_INTR_DMA 0x80000000
  202. #define IDE_INTR_DEVICE 0x40000000
  203. /*
  204. * FCR Register on Kauai. Not sure what bit 0x4 is ...
  205. */
  206. #define KAUAI_FCR_UATA_MAGIC 0x00000004
  207. #define KAUAI_FCR_UATA_RESET_N 0x00000002
  208. #define KAUAI_FCR_UATA_ENABLE 0x00000001
  209. #ifdef CONFIG_BLK_DEV_IDEDMA_PMAC
  210. /* Rounded Multiword DMA timings
  211. *
  212. * I gave up finding a generic formula for all controller
  213. * types and instead, built tables based on timing values
  214. * used by Apple in Darwin's implementation.
  215. */
  216. struct mdma_timings_t {
  217. int accessTime;
  218. int recoveryTime;
  219. int cycleTime;
  220. };
  221. struct mdma_timings_t mdma_timings_33[] __pmacdata =
  222. {
  223. { 240, 240, 480 },
  224. { 180, 180, 360 },
  225. { 135, 135, 270 },
  226. { 120, 120, 240 },
  227. { 105, 105, 210 },
  228. { 90, 90, 180 },
  229. { 75, 75, 150 },
  230. { 75, 45, 120 },
  231. { 0, 0, 0 }
  232. };
  233. struct mdma_timings_t mdma_timings_33k[] __pmacdata =
  234. {
  235. { 240, 240, 480 },
  236. { 180, 180, 360 },
  237. { 150, 150, 300 },
  238. { 120, 120, 240 },
  239. { 90, 120, 210 },
  240. { 90, 90, 180 },
  241. { 90, 60, 150 },
  242. { 90, 30, 120 },
  243. { 0, 0, 0 }
  244. };
  245. struct mdma_timings_t mdma_timings_66[] __pmacdata =
  246. {
  247. { 240, 240, 480 },
  248. { 180, 180, 360 },
  249. { 135, 135, 270 },
  250. { 120, 120, 240 },
  251. { 105, 105, 210 },
  252. { 90, 90, 180 },
  253. { 90, 75, 165 },
  254. { 75, 45, 120 },
  255. { 0, 0, 0 }
  256. };
  257. /* KeyLargo ATA-4 Ultra DMA timings (rounded) */
  258. struct {
  259. int addrSetup; /* ??? */
  260. int rdy2pause;
  261. int wrDataSetup;
  262. } kl66_udma_timings[] __pmacdata =
  263. {
  264. { 0, 180, 120 }, /* Mode 0 */
  265. { 0, 150, 90 }, /* 1 */
  266. { 0, 120, 60 }, /* 2 */
  267. { 0, 90, 45 }, /* 3 */
  268. { 0, 90, 30 } /* 4 */
  269. };
  270. /* UniNorth 2 ATA/100 timings */
  271. struct kauai_timing {
  272. int cycle_time;
  273. u32 timing_reg;
  274. };
  275. static struct kauai_timing kauai_pio_timings[] __pmacdata =
  276. {
  277. { 930 , 0x08000fff },
  278. { 600 , 0x08000a92 },
  279. { 383 , 0x0800060f },
  280. { 360 , 0x08000492 },
  281. { 330 , 0x0800048f },
  282. { 300 , 0x080003cf },
  283. { 270 , 0x080003cc },
  284. { 240 , 0x0800038b },
  285. { 239 , 0x0800030c },
  286. { 180 , 0x05000249 },
  287. { 120 , 0x04000148 }
  288. };
  289. static struct kauai_timing kauai_mdma_timings[] __pmacdata =
  290. {
  291. { 1260 , 0x00fff000 },
  292. { 480 , 0x00618000 },
  293. { 360 , 0x00492000 },
  294. { 270 , 0x0038e000 },
  295. { 240 , 0x0030c000 },
  296. { 210 , 0x002cb000 },
  297. { 180 , 0x00249000 },
  298. { 150 , 0x00209000 },
  299. { 120 , 0x00148000 },
  300. { 0 , 0 },
  301. };
  302. static struct kauai_timing kauai_udma_timings[] __pmacdata =
  303. {
  304. { 120 , 0x000070c0 },
  305. { 90 , 0x00005d80 },
  306. { 60 , 0x00004a60 },
  307. { 45 , 0x00003a50 },
  308. { 30 , 0x00002a30 },
  309. { 20 , 0x00002921 },
  310. { 0 , 0 },
  311. };
  312. static struct kauai_timing shasta_pio_timings[] __pmacdata =
  313. {
  314. { 930 , 0x08000fff },
  315. { 600 , 0x0A000c97 },
  316. { 383 , 0x07000712 },
  317. { 360 , 0x040003cd },
  318. { 330 , 0x040003cd },
  319. { 300 , 0x040003cd },
  320. { 270 , 0x040003cd },
  321. { 240 , 0x040003cd },
  322. { 239 , 0x040003cd },
  323. { 180 , 0x0400028b },
  324. { 120 , 0x0400010a }
  325. };
  326. static struct kauai_timing shasta_mdma_timings[] __pmacdata =
  327. {
  328. { 1260 , 0x00fff000 },
  329. { 480 , 0x00820800 },
  330. { 360 , 0x00820800 },
  331. { 270 , 0x00820800 },
  332. { 240 , 0x00820800 },
  333. { 210 , 0x00820800 },
  334. { 180 , 0x00820800 },
  335. { 150 , 0x0028b000 },
  336. { 120 , 0x001ca000 },
  337. { 0 , 0 },
  338. };
  339. static struct kauai_timing shasta_udma133_timings[] __pmacdata =
  340. {
  341. { 120 , 0x00035901, },
  342. { 90 , 0x000348b1, },
  343. { 60 , 0x00033881, },
  344. { 45 , 0x00033861, },
  345. { 30 , 0x00033841, },
  346. { 20 , 0x00033031, },
  347. { 15 , 0x00033021, },
  348. { 0 , 0 },
  349. };
  350. static inline u32
  351. kauai_lookup_timing(struct kauai_timing* table, int cycle_time)
  352. {
  353. int i;
  354. for (i=0; table[i].cycle_time; i++)
  355. if (cycle_time > table[i+1].cycle_time)
  356. return table[i].timing_reg;
  357. return 0;
  358. }
  359. /* allow up to 256 DBDMA commands per xfer */
  360. #define MAX_DCMDS 256
  361. /*
  362. * Wait 1s for disk to answer on IDE bus after a hard reset
  363. * of the device (via GPIO/FCR).
  364. *
  365. * Some devices seem to "pollute" the bus even after dropping
  366. * the BSY bit (typically some combo drives slave on the UDMA
  367. * bus) after a hard reset. Since we hard reset all drives on
  368. * KeyLargo ATA66, we have to keep that delay around. I may end
  369. * up not hard resetting anymore on these and keep the delay only
  370. * for older interfaces instead (we have to reset when coming
  371. * from MacOS...) --BenH.
  372. */
  373. #define IDE_WAKEUP_DELAY (1*HZ)
  374. static void pmac_ide_setup_dma(pmac_ide_hwif_t *pmif, ide_hwif_t *hwif);
  375. static int pmac_ide_build_dmatable(ide_drive_t *drive, struct request *rq);
  376. static int pmac_ide_tune_chipset(ide_drive_t *drive, u8 speed);
  377. static void pmac_ide_tuneproc(ide_drive_t *drive, u8 pio);
  378. static void pmac_ide_selectproc(ide_drive_t *drive);
  379. static void pmac_ide_kauai_selectproc(ide_drive_t *drive);
  380. #endif /* CONFIG_BLK_DEV_IDEDMA_PMAC */
  381. /*
  382. * Below is the code for blinking the laptop LED along with hard
  383. * disk activity.
  384. */
  385. #ifdef CONFIG_BLK_DEV_IDE_PMAC_BLINK
  386. /* Set to 50ms minimum led-on time (also used to limit frequency
  387. * of requests sent to the PMU
  388. */
  389. #define PMU_HD_BLINK_TIME (HZ/50)
  390. static struct adb_request pmu_blink_on, pmu_blink_off;
  391. static spinlock_t pmu_blink_lock;
  392. static unsigned long pmu_blink_stoptime;
  393. static int pmu_blink_ledstate;
  394. static struct timer_list pmu_blink_timer;
  395. static int pmu_ide_blink_enabled;
  396. static void
  397. pmu_hd_blink_timeout(unsigned long data)
  398. {
  399. unsigned long flags;
  400. spin_lock_irqsave(&pmu_blink_lock, flags);
  401. /* We may have been triggered again in a racy way, check
  402. * that we really want to switch it off
  403. */
  404. if (time_after(pmu_blink_stoptime, jiffies))
  405. goto done;
  406. /* Previous req. not complete, try 100ms more */
  407. if (pmu_blink_off.complete == 0)
  408. mod_timer(&pmu_blink_timer, jiffies + PMU_HD_BLINK_TIME);
  409. else if (pmu_blink_ledstate) {
  410. pmu_request(&pmu_blink_off, NULL, 4, 0xee, 4, 0, 0);
  411. pmu_blink_ledstate = 0;
  412. }
  413. done:
  414. spin_unlock_irqrestore(&pmu_blink_lock, flags);
  415. }
  416. static void
  417. pmu_hd_kick_blink(void *data, int rw)
  418. {
  419. unsigned long flags;
  420. pmu_blink_stoptime = jiffies + PMU_HD_BLINK_TIME;
  421. wmb();
  422. mod_timer(&pmu_blink_timer, pmu_blink_stoptime);
  423. /* Fast path when LED is already ON */
  424. if (pmu_blink_ledstate == 1)
  425. return;
  426. spin_lock_irqsave(&pmu_blink_lock, flags);
  427. if (pmu_blink_on.complete && !pmu_blink_ledstate) {
  428. pmu_request(&pmu_blink_on, NULL, 4, 0xee, 4, 0, 1);
  429. pmu_blink_ledstate = 1;
  430. }
  431. spin_unlock_irqrestore(&pmu_blink_lock, flags);
  432. }
  433. static int
  434. pmu_hd_blink_init(void)
  435. {
  436. struct device_node *dt;
  437. const char *model;
  438. /* Currently, I only enable this feature on KeyLargo based laptops,
  439. * older laptops may support it (at least heathrow/paddington) but
  440. * I don't feel like loading those venerable old machines with so
  441. * much additional interrupt & PMU activity...
  442. */
  443. if (pmu_get_model() != PMU_KEYLARGO_BASED)
  444. return 0;
  445. dt = find_devices("device-tree");
  446. if (dt == NULL)
  447. return 0;
  448. model = (const char *)get_property(dt, "model", NULL);
  449. if (model == NULL)
  450. return 0;
  451. if (strncmp(model, "PowerBook", strlen("PowerBook")) != 0 &&
  452. strncmp(model, "iBook", strlen("iBook")) != 0)
  453. return 0;
  454. pmu_blink_on.complete = 1;
  455. pmu_blink_off.complete = 1;
  456. spin_lock_init(&pmu_blink_lock);
  457. init_timer(&pmu_blink_timer);
  458. pmu_blink_timer.function = pmu_hd_blink_timeout;
  459. return 1;
  460. }
  461. #endif /* CONFIG_BLK_DEV_IDE_PMAC_BLINK */
  462. /*
  463. * N.B. this can't be an initfunc, because the media-bay task can
  464. * call ide_[un]register at any time.
  465. */
  466. void __pmac
  467. pmac_ide_init_hwif_ports(hw_regs_t *hw,
  468. unsigned long data_port, unsigned long ctrl_port,
  469. int *irq)
  470. {
  471. int i, ix;
  472. if (data_port == 0)
  473. return;
  474. for (ix = 0; ix < MAX_HWIFS; ++ix)
  475. if (data_port == pmac_ide[ix].regbase)
  476. break;
  477. if (ix >= MAX_HWIFS) {
  478. /* Probably a PCI interface... */
  479. for (i = IDE_DATA_OFFSET; i <= IDE_STATUS_OFFSET; ++i)
  480. hw->io_ports[i] = data_port + i - IDE_DATA_OFFSET;
  481. hw->io_ports[IDE_CONTROL_OFFSET] = ctrl_port;
  482. return;
  483. }
  484. for (i = 0; i < 8; ++i)
  485. hw->io_ports[i] = data_port + i * 0x10;
  486. hw->io_ports[8] = data_port + 0x160;
  487. if (irq != NULL)
  488. *irq = pmac_ide[ix].irq;
  489. }
  490. #define PMAC_IDE_REG(x) ((void __iomem *)(IDE_DATA_REG+(x)))
  491. /*
  492. * Apply the timings of the proper unit (master/slave) to the shared
  493. * timing register when selecting that unit. This version is for
  494. * ASICs with a single timing register
  495. */
  496. static void __pmac
  497. pmac_ide_selectproc(ide_drive_t *drive)
  498. {
  499. pmac_ide_hwif_t* pmif = (pmac_ide_hwif_t *)HWIF(drive)->hwif_data;
  500. if (pmif == NULL)
  501. return;
  502. if (drive->select.b.unit & 0x01)
  503. writel(pmif->timings[1], PMAC_IDE_REG(IDE_TIMING_CONFIG));
  504. else
  505. writel(pmif->timings[0], PMAC_IDE_REG(IDE_TIMING_CONFIG));
  506. (void)readl(PMAC_IDE_REG(IDE_TIMING_CONFIG));
  507. }
  508. /*
  509. * Apply the timings of the proper unit (master/slave) to the shared
  510. * timing register when selecting that unit. This version is for
  511. * ASICs with a dual timing register (Kauai)
  512. */
  513. static void __pmac
  514. pmac_ide_kauai_selectproc(ide_drive_t *drive)
  515. {
  516. pmac_ide_hwif_t* pmif = (pmac_ide_hwif_t *)HWIF(drive)->hwif_data;
  517. if (pmif == NULL)
  518. return;
  519. if (drive->select.b.unit & 0x01) {
  520. writel(pmif->timings[1], PMAC_IDE_REG(IDE_KAUAI_PIO_CONFIG));
  521. writel(pmif->timings[3], PMAC_IDE_REG(IDE_KAUAI_ULTRA_CONFIG));
  522. } else {
  523. writel(pmif->timings[0], PMAC_IDE_REG(IDE_KAUAI_PIO_CONFIG));
  524. writel(pmif->timings[2], PMAC_IDE_REG(IDE_KAUAI_ULTRA_CONFIG));
  525. }
  526. (void)readl(PMAC_IDE_REG(IDE_KAUAI_PIO_CONFIG));
  527. }
  528. /*
  529. * Force an update of controller timing values for a given drive
  530. */
  531. static void __pmac
  532. pmac_ide_do_update_timings(ide_drive_t *drive)
  533. {
  534. pmac_ide_hwif_t* pmif = (pmac_ide_hwif_t *)HWIF(drive)->hwif_data;
  535. if (pmif == NULL)
  536. return;
  537. if (pmif->kind == controller_sh_ata6 ||
  538. pmif->kind == controller_un_ata6 ||
  539. pmif->kind == controller_k2_ata6)
  540. pmac_ide_kauai_selectproc(drive);
  541. else
  542. pmac_ide_selectproc(drive);
  543. }
  544. static void
  545. pmac_outbsync(ide_drive_t *drive, u8 value, unsigned long port)
  546. {
  547. u32 tmp;
  548. writeb(value, (void __iomem *) port);
  549. tmp = readl(PMAC_IDE_REG(IDE_TIMING_CONFIG));
  550. }
  551. /*
  552. * Send the SET_FEATURE IDE command to the drive and update drive->id with
  553. * the new state. We currently don't use the generic routine as it used to
  554. * cause various trouble, especially with older mediabays.
  555. * This code is sometimes triggering a spurrious interrupt though, I need
  556. * to sort that out sooner or later and see if I can finally get the
  557. * common version to work properly in all cases
  558. */
  559. static int __pmac
  560. pmac_ide_do_setfeature(ide_drive_t *drive, u8 command)
  561. {
  562. ide_hwif_t *hwif = HWIF(drive);
  563. int result = 1;
  564. disable_irq_nosync(hwif->irq);
  565. udelay(1);
  566. SELECT_DRIVE(drive);
  567. SELECT_MASK(drive, 0);
  568. udelay(1);
  569. /* Get rid of pending error state */
  570. (void) hwif->INB(IDE_STATUS_REG);
  571. /* Timeout bumped for some powerbooks */
  572. if (wait_for_ready(drive, 2000)) {
  573. /* Timeout bumped for some powerbooks */
  574. printk(KERN_ERR "%s: pmac_ide_do_setfeature disk not ready "
  575. "before SET_FEATURE!\n", drive->name);
  576. goto out;
  577. }
  578. udelay(10);
  579. hwif->OUTB(drive->ctl | 2, IDE_CONTROL_REG);
  580. hwif->OUTB(command, IDE_NSECTOR_REG);
  581. hwif->OUTB(SETFEATURES_XFER, IDE_FEATURE_REG);
  582. hwif->OUTBSYNC(drive, WIN_SETFEATURES, IDE_COMMAND_REG);
  583. udelay(1);
  584. /* Timeout bumped for some powerbooks */
  585. result = wait_for_ready(drive, 2000);
  586. hwif->OUTB(drive->ctl, IDE_CONTROL_REG);
  587. if (result)
  588. printk(KERN_ERR "%s: pmac_ide_do_setfeature disk not ready "
  589. "after SET_FEATURE !\n", drive->name);
  590. out:
  591. SELECT_MASK(drive, 0);
  592. if (result == 0) {
  593. drive->id->dma_ultra &= ~0xFF00;
  594. drive->id->dma_mword &= ~0x0F00;
  595. drive->id->dma_1word &= ~0x0F00;
  596. switch(command) {
  597. case XFER_UDMA_7:
  598. drive->id->dma_ultra |= 0x8080; break;
  599. case XFER_UDMA_6:
  600. drive->id->dma_ultra |= 0x4040; break;
  601. case XFER_UDMA_5:
  602. drive->id->dma_ultra |= 0x2020; break;
  603. case XFER_UDMA_4:
  604. drive->id->dma_ultra |= 0x1010; break;
  605. case XFER_UDMA_3:
  606. drive->id->dma_ultra |= 0x0808; break;
  607. case XFER_UDMA_2:
  608. drive->id->dma_ultra |= 0x0404; break;
  609. case XFER_UDMA_1:
  610. drive->id->dma_ultra |= 0x0202; break;
  611. case XFER_UDMA_0:
  612. drive->id->dma_ultra |= 0x0101; break;
  613. case XFER_MW_DMA_2:
  614. drive->id->dma_mword |= 0x0404; break;
  615. case XFER_MW_DMA_1:
  616. drive->id->dma_mword |= 0x0202; break;
  617. case XFER_MW_DMA_0:
  618. drive->id->dma_mword |= 0x0101; break;
  619. case XFER_SW_DMA_2:
  620. drive->id->dma_1word |= 0x0404; break;
  621. case XFER_SW_DMA_1:
  622. drive->id->dma_1word |= 0x0202; break;
  623. case XFER_SW_DMA_0:
  624. drive->id->dma_1word |= 0x0101; break;
  625. default: break;
  626. }
  627. }
  628. enable_irq(hwif->irq);
  629. return result;
  630. }
  631. /*
  632. * Old tuning functions (called on hdparm -p), sets up drive PIO timings
  633. */
  634. static void __pmac
  635. pmac_ide_tuneproc(ide_drive_t *drive, u8 pio)
  636. {
  637. ide_pio_data_t d;
  638. u32 *timings;
  639. unsigned accessTicks, recTicks;
  640. unsigned accessTime, recTime;
  641. pmac_ide_hwif_t* pmif = (pmac_ide_hwif_t *)HWIF(drive)->hwif_data;
  642. if (pmif == NULL)
  643. return;
  644. /* which drive is it ? */
  645. timings = &pmif->timings[drive->select.b.unit & 0x01];
  646. pio = ide_get_best_pio_mode(drive, pio, 4, &d);
  647. switch (pmif->kind) {
  648. case controller_sh_ata6: {
  649. /* 133Mhz cell */
  650. u32 tr = kauai_lookup_timing(shasta_pio_timings, d.cycle_time);
  651. if (tr == 0)
  652. return;
  653. *timings = ((*timings) & ~TR_133_PIOREG_PIO_MASK) | tr;
  654. break;
  655. }
  656. case controller_un_ata6:
  657. case controller_k2_ata6: {
  658. /* 100Mhz cell */
  659. u32 tr = kauai_lookup_timing(kauai_pio_timings, d.cycle_time);
  660. if (tr == 0)
  661. return;
  662. *timings = ((*timings) & ~TR_100_PIOREG_PIO_MASK) | tr;
  663. break;
  664. }
  665. case controller_kl_ata4:
  666. /* 66Mhz cell */
  667. recTime = d.cycle_time - ide_pio_timings[pio].active_time
  668. - ide_pio_timings[pio].setup_time;
  669. recTime = max(recTime, 150U);
  670. accessTime = ide_pio_timings[pio].active_time;
  671. accessTime = max(accessTime, 150U);
  672. accessTicks = SYSCLK_TICKS_66(accessTime);
  673. accessTicks = min(accessTicks, 0x1fU);
  674. recTicks = SYSCLK_TICKS_66(recTime);
  675. recTicks = min(recTicks, 0x1fU);
  676. *timings = ((*timings) & ~TR_66_PIO_MASK) |
  677. (accessTicks << TR_66_PIO_ACCESS_SHIFT) |
  678. (recTicks << TR_66_PIO_RECOVERY_SHIFT);
  679. break;
  680. default: {
  681. /* 33Mhz cell */
  682. int ebit = 0;
  683. recTime = d.cycle_time - ide_pio_timings[pio].active_time
  684. - ide_pio_timings[pio].setup_time;
  685. recTime = max(recTime, 150U);
  686. accessTime = ide_pio_timings[pio].active_time;
  687. accessTime = max(accessTime, 150U);
  688. accessTicks = SYSCLK_TICKS(accessTime);
  689. accessTicks = min(accessTicks, 0x1fU);
  690. accessTicks = max(accessTicks, 4U);
  691. recTicks = SYSCLK_TICKS(recTime);
  692. recTicks = min(recTicks, 0x1fU);
  693. recTicks = max(recTicks, 5U) - 4;
  694. if (recTicks > 9) {
  695. recTicks--; /* guess, but it's only for PIO0, so... */
  696. ebit = 1;
  697. }
  698. *timings = ((*timings) & ~TR_33_PIO_MASK) |
  699. (accessTicks << TR_33_PIO_ACCESS_SHIFT) |
  700. (recTicks << TR_33_PIO_RECOVERY_SHIFT);
  701. if (ebit)
  702. *timings |= TR_33_PIO_E;
  703. break;
  704. }
  705. }
  706. #ifdef IDE_PMAC_DEBUG
  707. printk(KERN_ERR "%s: Set PIO timing for mode %d, reg: 0x%08x\n",
  708. drive->name, pio, *timings);
  709. #endif
  710. if (drive->select.all == HWIF(drive)->INB(IDE_SELECT_REG))
  711. pmac_ide_do_update_timings(drive);
  712. }
  713. #ifdef CONFIG_BLK_DEV_IDEDMA_PMAC
  714. /*
  715. * Calculate KeyLargo ATA/66 UDMA timings
  716. */
  717. static int __pmac
  718. set_timings_udma_ata4(u32 *timings, u8 speed)
  719. {
  720. unsigned rdyToPauseTicks, wrDataSetupTicks, addrTicks;
  721. if (speed > XFER_UDMA_4)
  722. return 1;
  723. rdyToPauseTicks = SYSCLK_TICKS_66(kl66_udma_timings[speed & 0xf].rdy2pause);
  724. wrDataSetupTicks = SYSCLK_TICKS_66(kl66_udma_timings[speed & 0xf].wrDataSetup);
  725. addrTicks = SYSCLK_TICKS_66(kl66_udma_timings[speed & 0xf].addrSetup);
  726. *timings = ((*timings) & ~(TR_66_UDMA_MASK | TR_66_MDMA_MASK)) |
  727. (wrDataSetupTicks << TR_66_UDMA_WRDATASETUP_SHIFT) |
  728. (rdyToPauseTicks << TR_66_UDMA_RDY2PAUS_SHIFT) |
  729. (addrTicks <<TR_66_UDMA_ADDRSETUP_SHIFT) |
  730. TR_66_UDMA_EN;
  731. #ifdef IDE_PMAC_DEBUG
  732. printk(KERN_ERR "ide_pmac: Set UDMA timing for mode %d, reg: 0x%08x\n",
  733. speed & 0xf, *timings);
  734. #endif
  735. return 0;
  736. }
  737. /*
  738. * Calculate Kauai ATA/100 UDMA timings
  739. */
  740. static int __pmac
  741. set_timings_udma_ata6(u32 *pio_timings, u32 *ultra_timings, u8 speed)
  742. {
  743. struct ide_timing *t = ide_timing_find_mode(speed);
  744. u32 tr;
  745. if (speed > XFER_UDMA_5 || t == NULL)
  746. return 1;
  747. tr = kauai_lookup_timing(kauai_udma_timings, (int)t->udma);
  748. if (tr == 0)
  749. return 1;
  750. *ultra_timings = ((*ultra_timings) & ~TR_100_UDMAREG_UDMA_MASK) | tr;
  751. *ultra_timings = (*ultra_timings) | TR_100_UDMAREG_UDMA_EN;
  752. return 0;
  753. }
  754. /*
  755. * Calculate Shasta ATA/133 UDMA timings
  756. */
  757. static int __pmac
  758. set_timings_udma_shasta(u32 *pio_timings, u32 *ultra_timings, u8 speed)
  759. {
  760. struct ide_timing *t = ide_timing_find_mode(speed);
  761. u32 tr;
  762. if (speed > XFER_UDMA_6 || t == NULL)
  763. return 1;
  764. tr = kauai_lookup_timing(shasta_udma133_timings, (int)t->udma);
  765. if (tr == 0)
  766. return 1;
  767. *ultra_timings = ((*ultra_timings) & ~TR_133_UDMAREG_UDMA_MASK) | tr;
  768. *ultra_timings = (*ultra_timings) | TR_133_UDMAREG_UDMA_EN;
  769. return 0;
  770. }
  771. /*
  772. * Calculate MDMA timings for all cells
  773. */
  774. static int __pmac
  775. set_timings_mdma(ide_drive_t *drive, int intf_type, u32 *timings, u32 *timings2,
  776. u8 speed, int drive_cycle_time)
  777. {
  778. int cycleTime, accessTime = 0, recTime = 0;
  779. unsigned accessTicks, recTicks;
  780. struct mdma_timings_t* tm = NULL;
  781. int i;
  782. /* Get default cycle time for mode */
  783. switch(speed & 0xf) {
  784. case 0: cycleTime = 480; break;
  785. case 1: cycleTime = 150; break;
  786. case 2: cycleTime = 120; break;
  787. default:
  788. return 1;
  789. }
  790. /* Adjust for drive */
  791. if (drive_cycle_time && drive_cycle_time > cycleTime)
  792. cycleTime = drive_cycle_time;
  793. /* OHare limits according to some old Apple sources */
  794. if ((intf_type == controller_ohare) && (cycleTime < 150))
  795. cycleTime = 150;
  796. /* Get the proper timing array for this controller */
  797. switch(intf_type) {
  798. case controller_sh_ata6:
  799. case controller_un_ata6:
  800. case controller_k2_ata6:
  801. break;
  802. case controller_kl_ata4:
  803. tm = mdma_timings_66;
  804. break;
  805. case controller_kl_ata3:
  806. tm = mdma_timings_33k;
  807. break;
  808. default:
  809. tm = mdma_timings_33;
  810. break;
  811. }
  812. if (tm != NULL) {
  813. /* Lookup matching access & recovery times */
  814. i = -1;
  815. for (;;) {
  816. if (tm[i+1].cycleTime < cycleTime)
  817. break;
  818. i++;
  819. }
  820. if (i < 0)
  821. return 1;
  822. cycleTime = tm[i].cycleTime;
  823. accessTime = tm[i].accessTime;
  824. recTime = tm[i].recoveryTime;
  825. #ifdef IDE_PMAC_DEBUG
  826. printk(KERN_ERR "%s: MDMA, cycleTime: %d, accessTime: %d, recTime: %d\n",
  827. drive->name, cycleTime, accessTime, recTime);
  828. #endif
  829. }
  830. switch(intf_type) {
  831. case controller_sh_ata6: {
  832. /* 133Mhz cell */
  833. u32 tr = kauai_lookup_timing(shasta_mdma_timings, cycleTime);
  834. if (tr == 0)
  835. return 1;
  836. *timings = ((*timings) & ~TR_133_PIOREG_MDMA_MASK) | tr;
  837. *timings2 = (*timings2) & ~TR_133_UDMAREG_UDMA_EN;
  838. }
  839. case controller_un_ata6:
  840. case controller_k2_ata6: {
  841. /* 100Mhz cell */
  842. u32 tr = kauai_lookup_timing(kauai_mdma_timings, cycleTime);
  843. if (tr == 0)
  844. return 1;
  845. *timings = ((*timings) & ~TR_100_PIOREG_MDMA_MASK) | tr;
  846. *timings2 = (*timings2) & ~TR_100_UDMAREG_UDMA_EN;
  847. }
  848. break;
  849. case controller_kl_ata4:
  850. /* 66Mhz cell */
  851. accessTicks = SYSCLK_TICKS_66(accessTime);
  852. accessTicks = min(accessTicks, 0x1fU);
  853. accessTicks = max(accessTicks, 0x1U);
  854. recTicks = SYSCLK_TICKS_66(recTime);
  855. recTicks = min(recTicks, 0x1fU);
  856. recTicks = max(recTicks, 0x3U);
  857. /* Clear out mdma bits and disable udma */
  858. *timings = ((*timings) & ~(TR_66_MDMA_MASK | TR_66_UDMA_MASK)) |
  859. (accessTicks << TR_66_MDMA_ACCESS_SHIFT) |
  860. (recTicks << TR_66_MDMA_RECOVERY_SHIFT);
  861. break;
  862. case controller_kl_ata3:
  863. /* 33Mhz cell on KeyLargo */
  864. accessTicks = SYSCLK_TICKS(accessTime);
  865. accessTicks = max(accessTicks, 1U);
  866. accessTicks = min(accessTicks, 0x1fU);
  867. accessTime = accessTicks * IDE_SYSCLK_NS;
  868. recTicks = SYSCLK_TICKS(recTime);
  869. recTicks = max(recTicks, 1U);
  870. recTicks = min(recTicks, 0x1fU);
  871. *timings = ((*timings) & ~TR_33_MDMA_MASK) |
  872. (accessTicks << TR_33_MDMA_ACCESS_SHIFT) |
  873. (recTicks << TR_33_MDMA_RECOVERY_SHIFT);
  874. break;
  875. default: {
  876. /* 33Mhz cell on others */
  877. int halfTick = 0;
  878. int origAccessTime = accessTime;
  879. int origRecTime = recTime;
  880. accessTicks = SYSCLK_TICKS(accessTime);
  881. accessTicks = max(accessTicks, 1U);
  882. accessTicks = min(accessTicks, 0x1fU);
  883. accessTime = accessTicks * IDE_SYSCLK_NS;
  884. recTicks = SYSCLK_TICKS(recTime);
  885. recTicks = max(recTicks, 2U) - 1;
  886. recTicks = min(recTicks, 0x1fU);
  887. recTime = (recTicks + 1) * IDE_SYSCLK_NS;
  888. if ((accessTicks > 1) &&
  889. ((accessTime - IDE_SYSCLK_NS/2) >= origAccessTime) &&
  890. ((recTime - IDE_SYSCLK_NS/2) >= origRecTime)) {
  891. halfTick = 1;
  892. accessTicks--;
  893. }
  894. *timings = ((*timings) & ~TR_33_MDMA_MASK) |
  895. (accessTicks << TR_33_MDMA_ACCESS_SHIFT) |
  896. (recTicks << TR_33_MDMA_RECOVERY_SHIFT);
  897. if (halfTick)
  898. *timings |= TR_33_MDMA_HALFTICK;
  899. }
  900. }
  901. #ifdef IDE_PMAC_DEBUG
  902. printk(KERN_ERR "%s: Set MDMA timing for mode %d, reg: 0x%08x\n",
  903. drive->name, speed & 0xf, *timings);
  904. #endif
  905. return 0;
  906. }
  907. #endif /* #ifdef CONFIG_BLK_DEV_IDEDMA_PMAC */
  908. /*
  909. * Speedproc. This function is called by the core to set any of the standard
  910. * timing (PIO, MDMA or UDMA) to both the drive and the controller.
  911. * You may notice we don't use this function on normal "dma check" operation,
  912. * our dedicated function is more precise as it uses the drive provided
  913. * cycle time value. We should probably fix this one to deal with that too...
  914. */
  915. static int __pmac
  916. pmac_ide_tune_chipset (ide_drive_t *drive, byte speed)
  917. {
  918. int unit = (drive->select.b.unit & 0x01);
  919. int ret = 0;
  920. pmac_ide_hwif_t* pmif = (pmac_ide_hwif_t *)HWIF(drive)->hwif_data;
  921. u32 *timings, *timings2;
  922. if (pmif == NULL)
  923. return 1;
  924. timings = &pmif->timings[unit];
  925. timings2 = &pmif->timings[unit+2];
  926. switch(speed) {
  927. #ifdef CONFIG_BLK_DEV_IDEDMA_PMAC
  928. case XFER_UDMA_6:
  929. if (pmif->kind != controller_sh_ata6)
  930. return 1;
  931. case XFER_UDMA_5:
  932. if (pmif->kind != controller_un_ata6 &&
  933. pmif->kind != controller_k2_ata6 &&
  934. pmif->kind != controller_sh_ata6)
  935. return 1;
  936. case XFER_UDMA_4:
  937. case XFER_UDMA_3:
  938. if (HWIF(drive)->udma_four == 0)
  939. return 1;
  940. case XFER_UDMA_2:
  941. case XFER_UDMA_1:
  942. case XFER_UDMA_0:
  943. if (pmif->kind == controller_kl_ata4)
  944. ret = set_timings_udma_ata4(timings, speed);
  945. else if (pmif->kind == controller_un_ata6
  946. || pmif->kind == controller_k2_ata6)
  947. ret = set_timings_udma_ata6(timings, timings2, speed);
  948. else if (pmif->kind == controller_sh_ata6)
  949. ret = set_timings_udma_shasta(timings, timings2, speed);
  950. else
  951. ret = 1;
  952. break;
  953. case XFER_MW_DMA_2:
  954. case XFER_MW_DMA_1:
  955. case XFER_MW_DMA_0:
  956. ret = set_timings_mdma(drive, pmif->kind, timings, timings2, speed, 0);
  957. break;
  958. case XFER_SW_DMA_2:
  959. case XFER_SW_DMA_1:
  960. case XFER_SW_DMA_0:
  961. return 1;
  962. #endif /* CONFIG_BLK_DEV_IDEDMA_PMAC */
  963. case XFER_PIO_4:
  964. case XFER_PIO_3:
  965. case XFER_PIO_2:
  966. case XFER_PIO_1:
  967. case XFER_PIO_0:
  968. pmac_ide_tuneproc(drive, speed & 0x07);
  969. break;
  970. default:
  971. ret = 1;
  972. }
  973. if (ret)
  974. return ret;
  975. ret = pmac_ide_do_setfeature(drive, speed);
  976. if (ret)
  977. return ret;
  978. pmac_ide_do_update_timings(drive);
  979. drive->current_speed = speed;
  980. return 0;
  981. }
  982. /*
  983. * Blast some well known "safe" values to the timing registers at init or
  984. * wakeup from sleep time, before we do real calculation
  985. */
  986. static void __pmac
  987. sanitize_timings(pmac_ide_hwif_t *pmif)
  988. {
  989. unsigned int value, value2 = 0;
  990. switch(pmif->kind) {
  991. case controller_sh_ata6:
  992. value = 0x0a820c97;
  993. value2 = 0x00033031;
  994. break;
  995. case controller_un_ata6:
  996. case controller_k2_ata6:
  997. value = 0x08618a92;
  998. value2 = 0x00002921;
  999. break;
  1000. case controller_kl_ata4:
  1001. value = 0x0008438c;
  1002. break;
  1003. case controller_kl_ata3:
  1004. value = 0x00084526;
  1005. break;
  1006. case controller_heathrow:
  1007. case controller_ohare:
  1008. default:
  1009. value = 0x00074526;
  1010. break;
  1011. }
  1012. pmif->timings[0] = pmif->timings[1] = value;
  1013. pmif->timings[2] = pmif->timings[3] = value2;
  1014. }
  1015. unsigned long __pmac
  1016. pmac_ide_get_base(int index)
  1017. {
  1018. return pmac_ide[index].regbase;
  1019. }
  1020. int __pmac
  1021. pmac_ide_check_base(unsigned long base)
  1022. {
  1023. int ix;
  1024. for (ix = 0; ix < MAX_HWIFS; ++ix)
  1025. if (base == pmac_ide[ix].regbase)
  1026. return ix;
  1027. return -1;
  1028. }
  1029. int __pmac
  1030. pmac_ide_get_irq(unsigned long base)
  1031. {
  1032. int ix;
  1033. for (ix = 0; ix < MAX_HWIFS; ++ix)
  1034. if (base == pmac_ide[ix].regbase)
  1035. return pmac_ide[ix].irq;
  1036. return 0;
  1037. }
  1038. static int ide_majors[] __pmacdata = { 3, 22, 33, 34, 56, 57 };
  1039. dev_t __init
  1040. pmac_find_ide_boot(char *bootdevice, int n)
  1041. {
  1042. int i;
  1043. /*
  1044. * Look through the list of IDE interfaces for this one.
  1045. */
  1046. for (i = 0; i < pmac_ide_count; ++i) {
  1047. char *name;
  1048. if (!pmac_ide[i].node || !pmac_ide[i].node->full_name)
  1049. continue;
  1050. name = pmac_ide[i].node->full_name;
  1051. if (memcmp(name, bootdevice, n) == 0 && name[n] == 0) {
  1052. /* XXX should cope with the 2nd drive as well... */
  1053. return MKDEV(ide_majors[i], 0);
  1054. }
  1055. }
  1056. return 0;
  1057. }
  1058. /* Suspend call back, should be called after the child devices
  1059. * have actually been suspended
  1060. */
  1061. static int
  1062. pmac_ide_do_suspend(ide_hwif_t *hwif)
  1063. {
  1064. pmac_ide_hwif_t *pmif = (pmac_ide_hwif_t *)hwif->hwif_data;
  1065. /* We clear the timings */
  1066. pmif->timings[0] = 0;
  1067. pmif->timings[1] = 0;
  1068. #ifdef CONFIG_BLK_DEV_IDE_PMAC_BLINK
  1069. /* Note: This code will be called for every hwif, thus we'll
  1070. * try several time to stop the LED blinker timer, but that
  1071. * should be harmless
  1072. */
  1073. if (pmu_ide_blink_enabled) {
  1074. unsigned long flags;
  1075. /* Make sure we don't hit the PMU blink */
  1076. spin_lock_irqsave(&pmu_blink_lock, flags);
  1077. if (pmu_blink_ledstate)
  1078. del_timer(&pmu_blink_timer);
  1079. pmu_blink_ledstate = 0;
  1080. spin_unlock_irqrestore(&pmu_blink_lock, flags);
  1081. }
  1082. #endif /* CONFIG_BLK_DEV_IDE_PMAC_BLINK */
  1083. disable_irq(pmif->irq);
  1084. /* The media bay will handle itself just fine */
  1085. if (pmif->mediabay)
  1086. return 0;
  1087. /* Kauai has bus control FCRs directly here */
  1088. if (pmif->kauai_fcr) {
  1089. u32 fcr = readl(pmif->kauai_fcr);
  1090. fcr &= ~(KAUAI_FCR_UATA_RESET_N | KAUAI_FCR_UATA_ENABLE);
  1091. writel(fcr, pmif->kauai_fcr);
  1092. }
  1093. /* Disable the bus on older machines and the cell on kauai */
  1094. ppc_md.feature_call(PMAC_FTR_IDE_ENABLE, pmif->node, pmif->aapl_bus_id,
  1095. 0);
  1096. return 0;
  1097. }
  1098. /* Resume call back, should be called before the child devices
  1099. * are resumed
  1100. */
  1101. static int
  1102. pmac_ide_do_resume(ide_hwif_t *hwif)
  1103. {
  1104. pmac_ide_hwif_t *pmif = (pmac_ide_hwif_t *)hwif->hwif_data;
  1105. /* Hard reset & re-enable controller (do we really need to reset ? -BenH) */
  1106. if (!pmif->mediabay) {
  1107. ppc_md.feature_call(PMAC_FTR_IDE_RESET, pmif->node, pmif->aapl_bus_id, 1);
  1108. ppc_md.feature_call(PMAC_FTR_IDE_ENABLE, pmif->node, pmif->aapl_bus_id, 1);
  1109. msleep(10);
  1110. ppc_md.feature_call(PMAC_FTR_IDE_RESET, pmif->node, pmif->aapl_bus_id, 0);
  1111. /* Kauai has it different */
  1112. if (pmif->kauai_fcr) {
  1113. u32 fcr = readl(pmif->kauai_fcr);
  1114. fcr |= KAUAI_FCR_UATA_RESET_N | KAUAI_FCR_UATA_ENABLE;
  1115. writel(fcr, pmif->kauai_fcr);
  1116. }
  1117. msleep(jiffies_to_msecs(IDE_WAKEUP_DELAY));
  1118. }
  1119. /* Sanitize drive timings */
  1120. sanitize_timings(pmif);
  1121. enable_irq(pmif->irq);
  1122. return 0;
  1123. }
  1124. /*
  1125. * Setup, register & probe an IDE channel driven by this driver, this is
  1126. * called by one of the 2 probe functions (macio or PCI). Note that a channel
  1127. * that ends up beeing free of any device is not kept around by this driver
  1128. * (it is kept in 2.4). This introduce an interface numbering change on some
  1129. * rare machines unfortunately, but it's better this way.
  1130. */
  1131. static int
  1132. pmac_ide_setup_device(pmac_ide_hwif_t *pmif, ide_hwif_t *hwif)
  1133. {
  1134. struct device_node *np = pmif->node;
  1135. int *bidp, i;
  1136. pmif->cable_80 = 0;
  1137. pmif->broken_dma = pmif->broken_dma_warn = 0;
  1138. if (device_is_compatible(np, "shasta-ata"))
  1139. pmif->kind = controller_sh_ata6;
  1140. else if (device_is_compatible(np, "kauai-ata"))
  1141. pmif->kind = controller_un_ata6;
  1142. else if (device_is_compatible(np, "K2-UATA"))
  1143. pmif->kind = controller_k2_ata6;
  1144. else if (device_is_compatible(np, "keylargo-ata")) {
  1145. if (strcmp(np->name, "ata-4") == 0)
  1146. pmif->kind = controller_kl_ata4;
  1147. else
  1148. pmif->kind = controller_kl_ata3;
  1149. } else if (device_is_compatible(np, "heathrow-ata"))
  1150. pmif->kind = controller_heathrow;
  1151. else {
  1152. pmif->kind = controller_ohare;
  1153. pmif->broken_dma = 1;
  1154. }
  1155. bidp = (int *)get_property(np, "AAPL,bus-id", NULL);
  1156. pmif->aapl_bus_id = bidp ? *bidp : 0;
  1157. /* Get cable type from device-tree */
  1158. if (pmif->kind == controller_kl_ata4 || pmif->kind == controller_un_ata6
  1159. || pmif->kind == controller_k2_ata6
  1160. || pmif->kind == controller_sh_ata6) {
  1161. char* cable = get_property(np, "cable-type", NULL);
  1162. if (cable && !strncmp(cable, "80-", 3))
  1163. pmif->cable_80 = 1;
  1164. }
  1165. /* G5's seem to have incorrect cable type in device-tree. Let's assume
  1166. * they have a 80 conductor cable, this seem to be always the case unless
  1167. * the user mucked around
  1168. */
  1169. if (device_is_compatible(np, "K2-UATA") ||
  1170. device_is_compatible(np, "shasta-ata"))
  1171. pmif->cable_80 = 1;
  1172. /* On Kauai-type controllers, we make sure the FCR is correct */
  1173. if (pmif->kauai_fcr)
  1174. writel(KAUAI_FCR_UATA_MAGIC |
  1175. KAUAI_FCR_UATA_RESET_N |
  1176. KAUAI_FCR_UATA_ENABLE, pmif->kauai_fcr);
  1177. pmif->mediabay = 0;
  1178. /* Make sure we have sane timings */
  1179. sanitize_timings(pmif);
  1180. #ifndef CONFIG_PPC64
  1181. /* XXX FIXME: Media bay stuff need re-organizing */
  1182. if (np->parent && np->parent->name
  1183. && strcasecmp(np->parent->name, "media-bay") == 0) {
  1184. #ifdef CONFIG_PMAC_MEDIABAY
  1185. media_bay_set_ide_infos(np->parent, pmif->regbase, pmif->irq, hwif->index);
  1186. #endif /* CONFIG_PMAC_MEDIABAY */
  1187. pmif->mediabay = 1;
  1188. if (!bidp)
  1189. pmif->aapl_bus_id = 1;
  1190. } else if (pmif->kind == controller_ohare) {
  1191. /* The code below is having trouble on some ohare machines
  1192. * (timing related ?). Until I can put my hand on one of these
  1193. * units, I keep the old way
  1194. */
  1195. ppc_md.feature_call(PMAC_FTR_IDE_ENABLE, np, 0, 1);
  1196. } else
  1197. #endif
  1198. {
  1199. /* This is necessary to enable IDE when net-booting */
  1200. ppc_md.feature_call(PMAC_FTR_IDE_RESET, np, pmif->aapl_bus_id, 1);
  1201. ppc_md.feature_call(PMAC_FTR_IDE_ENABLE, np, pmif->aapl_bus_id, 1);
  1202. msleep(10);
  1203. ppc_md.feature_call(PMAC_FTR_IDE_RESET, np, pmif->aapl_bus_id, 0);
  1204. msleep(jiffies_to_msecs(IDE_WAKEUP_DELAY));
  1205. }
  1206. /* Setup MMIO ops */
  1207. default_hwif_mmiops(hwif);
  1208. hwif->OUTBSYNC = pmac_outbsync;
  1209. /* Tell common code _not_ to mess with resources */
  1210. hwif->mmio = 2;
  1211. hwif->hwif_data = pmif;
  1212. pmac_ide_init_hwif_ports(&hwif->hw, pmif->regbase, 0, &hwif->irq);
  1213. memcpy(hwif->io_ports, hwif->hw.io_ports, sizeof(hwif->io_ports));
  1214. hwif->chipset = ide_pmac;
  1215. hwif->noprobe = !hwif->io_ports[IDE_DATA_OFFSET] || pmif->mediabay;
  1216. hwif->hold = pmif->mediabay;
  1217. hwif->udma_four = pmif->cable_80;
  1218. hwif->drives[0].unmask = 1;
  1219. hwif->drives[1].unmask = 1;
  1220. hwif->tuneproc = pmac_ide_tuneproc;
  1221. if (pmif->kind == controller_un_ata6
  1222. || pmif->kind == controller_k2_ata6
  1223. || pmif->kind == controller_sh_ata6)
  1224. hwif->selectproc = pmac_ide_kauai_selectproc;
  1225. else
  1226. hwif->selectproc = pmac_ide_selectproc;
  1227. hwif->speedproc = pmac_ide_tune_chipset;
  1228. #ifdef CONFIG_BLK_DEV_IDE_PMAC_BLINK
  1229. pmu_ide_blink_enabled = pmu_hd_blink_init();
  1230. if (pmu_ide_blink_enabled)
  1231. hwif->led_act = pmu_hd_kick_blink;
  1232. #endif
  1233. printk(KERN_INFO "ide%d: Found Apple %s controller, bus ID %d%s, irq %d\n",
  1234. hwif->index, model_name[pmif->kind], pmif->aapl_bus_id,
  1235. pmif->mediabay ? " (mediabay)" : "", hwif->irq);
  1236. #ifdef CONFIG_PMAC_MEDIABAY
  1237. if (pmif->mediabay && check_media_bay_by_base(pmif->regbase, MB_CD) == 0)
  1238. hwif->noprobe = 0;
  1239. #endif /* CONFIG_PMAC_MEDIABAY */
  1240. hwif->sg_max_nents = MAX_DCMDS;
  1241. #ifdef CONFIG_BLK_DEV_IDEDMA_PMAC
  1242. /* has a DBDMA controller channel */
  1243. if (pmif->dma_regs)
  1244. pmac_ide_setup_dma(pmif, hwif);
  1245. #endif /* CONFIG_BLK_DEV_IDEDMA_PMAC */
  1246. /* We probe the hwif now */
  1247. probe_hwif_init(hwif);
  1248. /* The code IDE code will have set hwif->present if we have devices attached,
  1249. * if we don't, the discard the interface except if we are on a media bay slot
  1250. */
  1251. if (!hwif->present && !pmif->mediabay) {
  1252. printk(KERN_INFO "ide%d: Bus empty, interface released.\n",
  1253. hwif->index);
  1254. default_hwif_iops(hwif);
  1255. for (i = IDE_DATA_OFFSET; i <= IDE_CONTROL_OFFSET; ++i)
  1256. hwif->io_ports[i] = 0;
  1257. hwif->chipset = ide_unknown;
  1258. hwif->noprobe = 1;
  1259. return -ENODEV;
  1260. }
  1261. return 0;
  1262. }
  1263. /*
  1264. * Attach to a macio probed interface
  1265. */
  1266. static int __devinit
  1267. pmac_ide_macio_attach(struct macio_dev *mdev, const struct of_device_id *match)
  1268. {
  1269. void __iomem *base;
  1270. unsigned long regbase;
  1271. int irq;
  1272. ide_hwif_t *hwif;
  1273. pmac_ide_hwif_t *pmif;
  1274. int i, rc;
  1275. i = 0;
  1276. while (i < MAX_HWIFS && (ide_hwifs[i].io_ports[IDE_DATA_OFFSET] != 0
  1277. || pmac_ide[i].node != NULL))
  1278. ++i;
  1279. if (i >= MAX_HWIFS) {
  1280. printk(KERN_ERR "ide-pmac: MacIO interface attach with no slot\n");
  1281. printk(KERN_ERR " %s\n", mdev->ofdev.node->full_name);
  1282. return -ENODEV;
  1283. }
  1284. pmif = &pmac_ide[i];
  1285. hwif = &ide_hwifs[i];
  1286. if (mdev->ofdev.node->n_addrs == 0) {
  1287. printk(KERN_WARNING "ide%d: no address for %s\n",
  1288. i, mdev->ofdev.node->full_name);
  1289. return -ENXIO;
  1290. }
  1291. /* Request memory resource for IO ports */
  1292. if (macio_request_resource(mdev, 0, "ide-pmac (ports)")) {
  1293. printk(KERN_ERR "ide%d: can't request mmio resource !\n", i);
  1294. return -EBUSY;
  1295. }
  1296. /* XXX This is bogus. Should be fixed in the registry by checking
  1297. * the kind of host interrupt controller, a bit like gatwick
  1298. * fixes in irq.c. That works well enough for the single case
  1299. * where that happens though...
  1300. */
  1301. if (macio_irq_count(mdev) == 0) {
  1302. printk(KERN_WARNING "ide%d: no intrs for device %s, using 13\n",
  1303. i, mdev->ofdev.node->full_name);
  1304. irq = 13;
  1305. } else
  1306. irq = macio_irq(mdev, 0);
  1307. base = ioremap(macio_resource_start(mdev, 0), 0x400);
  1308. regbase = (unsigned long) base;
  1309. hwif->pci_dev = mdev->bus->pdev;
  1310. hwif->gendev.parent = &mdev->ofdev.dev;
  1311. pmif->mdev = mdev;
  1312. pmif->node = mdev->ofdev.node;
  1313. pmif->regbase = regbase;
  1314. pmif->irq = irq;
  1315. pmif->kauai_fcr = NULL;
  1316. #ifdef CONFIG_BLK_DEV_IDEDMA_PMAC
  1317. if (macio_resource_count(mdev) >= 2) {
  1318. if (macio_request_resource(mdev, 1, "ide-pmac (dma)"))
  1319. printk(KERN_WARNING "ide%d: can't request DMA resource !\n", i);
  1320. else
  1321. pmif->dma_regs = ioremap(macio_resource_start(mdev, 1), 0x1000);
  1322. } else
  1323. pmif->dma_regs = NULL;
  1324. #endif /* CONFIG_BLK_DEV_IDEDMA_PMAC */
  1325. dev_set_drvdata(&mdev->ofdev.dev, hwif);
  1326. rc = pmac_ide_setup_device(pmif, hwif);
  1327. if (rc != 0) {
  1328. /* The inteface is released to the common IDE layer */
  1329. dev_set_drvdata(&mdev->ofdev.dev, NULL);
  1330. iounmap(base);
  1331. if (pmif->dma_regs)
  1332. iounmap(pmif->dma_regs);
  1333. memset(pmif, 0, sizeof(*pmif));
  1334. macio_release_resource(mdev, 0);
  1335. if (pmif->dma_regs)
  1336. macio_release_resource(mdev, 1);
  1337. }
  1338. return rc;
  1339. }
  1340. static int
  1341. pmac_ide_macio_suspend(struct macio_dev *mdev, pm_message_t state)
  1342. {
  1343. ide_hwif_t *hwif = (ide_hwif_t *)dev_get_drvdata(&mdev->ofdev.dev);
  1344. int rc = 0;
  1345. if (state.event != mdev->ofdev.dev.power.power_state.event && state.event >= PM_EVENT_SUSPEND) {
  1346. rc = pmac_ide_do_suspend(hwif);
  1347. if (rc == 0)
  1348. mdev->ofdev.dev.power.power_state = state;
  1349. }
  1350. return rc;
  1351. }
  1352. static int
  1353. pmac_ide_macio_resume(struct macio_dev *mdev)
  1354. {
  1355. ide_hwif_t *hwif = (ide_hwif_t *)dev_get_drvdata(&mdev->ofdev.dev);
  1356. int rc = 0;
  1357. if (mdev->ofdev.dev.power.power_state.event != PM_EVENT_ON) {
  1358. rc = pmac_ide_do_resume(hwif);
  1359. if (rc == 0)
  1360. mdev->ofdev.dev.power.power_state = PMSG_ON;
  1361. }
  1362. return rc;
  1363. }
  1364. /*
  1365. * Attach to a PCI probed interface
  1366. */
  1367. static int __devinit
  1368. pmac_ide_pci_attach(struct pci_dev *pdev, const struct pci_device_id *id)
  1369. {
  1370. ide_hwif_t *hwif;
  1371. struct device_node *np;
  1372. pmac_ide_hwif_t *pmif;
  1373. void __iomem *base;
  1374. unsigned long rbase, rlen;
  1375. int i, rc;
  1376. np = pci_device_to_OF_node(pdev);
  1377. if (np == NULL) {
  1378. printk(KERN_ERR "ide-pmac: cannot find MacIO node for Kauai ATA interface\n");
  1379. return -ENODEV;
  1380. }
  1381. i = 0;
  1382. while (i < MAX_HWIFS && (ide_hwifs[i].io_ports[IDE_DATA_OFFSET] != 0
  1383. || pmac_ide[i].node != NULL))
  1384. ++i;
  1385. if (i >= MAX_HWIFS) {
  1386. printk(KERN_ERR "ide-pmac: PCI interface attach with no slot\n");
  1387. printk(KERN_ERR " %s\n", np->full_name);
  1388. return -ENODEV;
  1389. }
  1390. pmif = &pmac_ide[i];
  1391. hwif = &ide_hwifs[i];
  1392. if (pci_enable_device(pdev)) {
  1393. printk(KERN_WARNING "ide%i: Can't enable PCI device for %s\n",
  1394. i, np->full_name);
  1395. return -ENXIO;
  1396. }
  1397. pci_set_master(pdev);
  1398. if (pci_request_regions(pdev, "Kauai ATA")) {
  1399. printk(KERN_ERR "ide%d: Cannot obtain PCI resources for %s\n",
  1400. i, np->full_name);
  1401. return -ENXIO;
  1402. }
  1403. hwif->pci_dev = pdev;
  1404. hwif->gendev.parent = &pdev->dev;
  1405. pmif->mdev = NULL;
  1406. pmif->node = np;
  1407. rbase = pci_resource_start(pdev, 0);
  1408. rlen = pci_resource_len(pdev, 0);
  1409. base = ioremap(rbase, rlen);
  1410. pmif->regbase = (unsigned long) base + 0x2000;
  1411. #ifdef CONFIG_BLK_DEV_IDEDMA_PMAC
  1412. pmif->dma_regs = base + 0x1000;
  1413. #endif /* CONFIG_BLK_DEV_IDEDMA_PMAC */
  1414. pmif->kauai_fcr = base;
  1415. pmif->irq = pdev->irq;
  1416. pci_set_drvdata(pdev, hwif);
  1417. rc = pmac_ide_setup_device(pmif, hwif);
  1418. if (rc != 0) {
  1419. /* The inteface is released to the common IDE layer */
  1420. pci_set_drvdata(pdev, NULL);
  1421. iounmap(base);
  1422. memset(pmif, 0, sizeof(*pmif));
  1423. pci_release_regions(pdev);
  1424. }
  1425. return rc;
  1426. }
  1427. static int
  1428. pmac_ide_pci_suspend(struct pci_dev *pdev, pm_message_t state)
  1429. {
  1430. ide_hwif_t *hwif = (ide_hwif_t *)pci_get_drvdata(pdev);
  1431. int rc = 0;
  1432. if (state.event != pdev->dev.power.power_state.event && state.event >= 2) {
  1433. rc = pmac_ide_do_suspend(hwif);
  1434. if (rc == 0)
  1435. pdev->dev.power.power_state = state;
  1436. }
  1437. return rc;
  1438. }
  1439. static int
  1440. pmac_ide_pci_resume(struct pci_dev *pdev)
  1441. {
  1442. ide_hwif_t *hwif = (ide_hwif_t *)pci_get_drvdata(pdev);
  1443. int rc = 0;
  1444. if (pdev->dev.power.power_state.event != PM_EVENT_ON) {
  1445. rc = pmac_ide_do_resume(hwif);
  1446. if (rc == 0)
  1447. pdev->dev.power.power_state = PMSG_ON;
  1448. }
  1449. return rc;
  1450. }
  1451. static struct of_device_id pmac_ide_macio_match[] =
  1452. {
  1453. {
  1454. .name = "IDE",
  1455. },
  1456. {
  1457. .name = "ATA",
  1458. },
  1459. {
  1460. .type = "ide",
  1461. },
  1462. {
  1463. .type = "ata",
  1464. },
  1465. {},
  1466. };
  1467. static struct macio_driver pmac_ide_macio_driver =
  1468. {
  1469. .name = "ide-pmac",
  1470. .match_table = pmac_ide_macio_match,
  1471. .probe = pmac_ide_macio_attach,
  1472. .suspend = pmac_ide_macio_suspend,
  1473. .resume = pmac_ide_macio_resume,
  1474. };
  1475. static struct pci_device_id pmac_ide_pci_match[] = {
  1476. { PCI_VENDOR_ID_APPLE, PCI_DEVICE_ID_APPLE_UNI_N_ATA, PCI_ANY_ID, PCI_ANY_ID, 0, 0, 0},
  1477. { PCI_VENDOR_ID_APPLE, PCI_DEVICE_ID_APPLE_IPID_ATA100, PCI_ANY_ID, PCI_ANY_ID, 0, 0, 0},
  1478. { PCI_VENDOR_ID_APPLE, PCI_DEVICE_ID_APPLE_K2_ATA100, PCI_ANY_ID, PCI_ANY_ID, 0, 0, 0},
  1479. { PCI_VENDOR_ID_APPLE, PCI_DEVICE_ID_APPLE_SH_ATA,
  1480. PCI_ANY_ID, PCI_ANY_ID, 0, 0, 0},
  1481. };
  1482. static struct pci_driver pmac_ide_pci_driver = {
  1483. .name = "ide-pmac",
  1484. .id_table = pmac_ide_pci_match,
  1485. .probe = pmac_ide_pci_attach,
  1486. .suspend = pmac_ide_pci_suspend,
  1487. .resume = pmac_ide_pci_resume,
  1488. };
  1489. MODULE_DEVICE_TABLE(pci, pmac_ide_pci_match);
  1490. void __init
  1491. pmac_ide_probe(void)
  1492. {
  1493. if (_machine != _MACH_Pmac)
  1494. return;
  1495. #ifdef CONFIG_BLK_DEV_IDE_PMAC_ATA100FIRST
  1496. pci_register_driver(&pmac_ide_pci_driver);
  1497. macio_register_driver(&pmac_ide_macio_driver);
  1498. #else
  1499. macio_register_driver(&pmac_ide_macio_driver);
  1500. pci_register_driver(&pmac_ide_pci_driver);
  1501. #endif
  1502. }
  1503. #ifdef CONFIG_BLK_DEV_IDEDMA_PMAC
  1504. /*
  1505. * pmac_ide_build_dmatable builds the DBDMA command list
  1506. * for a transfer and sets the DBDMA channel to point to it.
  1507. */
  1508. static int __pmac
  1509. pmac_ide_build_dmatable(ide_drive_t *drive, struct request *rq)
  1510. {
  1511. struct dbdma_cmd *table;
  1512. int i, count = 0;
  1513. ide_hwif_t *hwif = HWIF(drive);
  1514. pmac_ide_hwif_t* pmif = (pmac_ide_hwif_t *)hwif->hwif_data;
  1515. volatile struct dbdma_regs __iomem *dma = pmif->dma_regs;
  1516. struct scatterlist *sg;
  1517. int wr = (rq_data_dir(rq) == WRITE);
  1518. /* DMA table is already aligned */
  1519. table = (struct dbdma_cmd *) pmif->dma_table_cpu;
  1520. /* Make sure DMA controller is stopped (necessary ?) */
  1521. writel((RUN|PAUSE|FLUSH|WAKE|DEAD) << 16, &dma->control);
  1522. while (readl(&dma->status) & RUN)
  1523. udelay(1);
  1524. hwif->sg_nents = i = ide_build_sglist(drive, rq);
  1525. if (!i)
  1526. return 0;
  1527. /* Build DBDMA commands list */
  1528. sg = hwif->sg_table;
  1529. while (i && sg_dma_len(sg)) {
  1530. u32 cur_addr;
  1531. u32 cur_len;
  1532. cur_addr = sg_dma_address(sg);
  1533. cur_len = sg_dma_len(sg);
  1534. if (pmif->broken_dma && cur_addr & (L1_CACHE_BYTES - 1)) {
  1535. if (pmif->broken_dma_warn == 0) {
  1536. printk(KERN_WARNING "%s: DMA on non aligned address,"
  1537. "switching to PIO on Ohare chipset\n", drive->name);
  1538. pmif->broken_dma_warn = 1;
  1539. }
  1540. goto use_pio_instead;
  1541. }
  1542. while (cur_len) {
  1543. unsigned int tc = (cur_len < 0xfe00)? cur_len: 0xfe00;
  1544. if (count++ >= MAX_DCMDS) {
  1545. printk(KERN_WARNING "%s: DMA table too small\n",
  1546. drive->name);
  1547. goto use_pio_instead;
  1548. }
  1549. st_le16(&table->command, wr? OUTPUT_MORE: INPUT_MORE);
  1550. st_le16(&table->req_count, tc);
  1551. st_le32(&table->phy_addr, cur_addr);
  1552. table->cmd_dep = 0;
  1553. table->xfer_status = 0;
  1554. table->res_count = 0;
  1555. cur_addr += tc;
  1556. cur_len -= tc;
  1557. ++table;
  1558. }
  1559. sg++;
  1560. i--;
  1561. }
  1562. /* convert the last command to an input/output last command */
  1563. if (count) {
  1564. st_le16(&table[-1].command, wr? OUTPUT_LAST: INPUT_LAST);
  1565. /* add the stop command to the end of the list */
  1566. memset(table, 0, sizeof(struct dbdma_cmd));
  1567. st_le16(&table->command, DBDMA_STOP);
  1568. mb();
  1569. writel(hwif->dmatable_dma, &dma->cmdptr);
  1570. return 1;
  1571. }
  1572. printk(KERN_DEBUG "%s: empty DMA table?\n", drive->name);
  1573. use_pio_instead:
  1574. pci_unmap_sg(hwif->pci_dev,
  1575. hwif->sg_table,
  1576. hwif->sg_nents,
  1577. hwif->sg_dma_direction);
  1578. return 0; /* revert to PIO for this request */
  1579. }
  1580. /* Teardown mappings after DMA has completed. */
  1581. static void __pmac
  1582. pmac_ide_destroy_dmatable (ide_drive_t *drive)
  1583. {
  1584. ide_hwif_t *hwif = drive->hwif;
  1585. struct pci_dev *dev = HWIF(drive)->pci_dev;
  1586. struct scatterlist *sg = hwif->sg_table;
  1587. int nents = hwif->sg_nents;
  1588. if (nents) {
  1589. pci_unmap_sg(dev, sg, nents, hwif->sg_dma_direction);
  1590. hwif->sg_nents = 0;
  1591. }
  1592. }
  1593. /*
  1594. * Pick up best MDMA timing for the drive and apply it
  1595. */
  1596. static int __pmac
  1597. pmac_ide_mdma_enable(ide_drive_t *drive, u16 mode)
  1598. {
  1599. ide_hwif_t *hwif = HWIF(drive);
  1600. pmac_ide_hwif_t* pmif = (pmac_ide_hwif_t *)hwif->hwif_data;
  1601. int drive_cycle_time;
  1602. struct hd_driveid *id = drive->id;
  1603. u32 *timings, *timings2;
  1604. u32 timing_local[2];
  1605. int ret;
  1606. /* which drive is it ? */
  1607. timings = &pmif->timings[drive->select.b.unit & 0x01];
  1608. timings2 = &pmif->timings[(drive->select.b.unit & 0x01) + 2];
  1609. /* Check if drive provide explicit cycle time */
  1610. if ((id->field_valid & 2) && (id->eide_dma_time))
  1611. drive_cycle_time = id->eide_dma_time;
  1612. else
  1613. drive_cycle_time = 0;
  1614. /* Copy timings to local image */
  1615. timing_local[0] = *timings;
  1616. timing_local[1] = *timings2;
  1617. /* Calculate controller timings */
  1618. ret = set_timings_mdma( drive, pmif->kind,
  1619. &timing_local[0],
  1620. &timing_local[1],
  1621. mode,
  1622. drive_cycle_time);
  1623. if (ret)
  1624. return 0;
  1625. /* Set feature on drive */
  1626. printk(KERN_INFO "%s: Enabling MultiWord DMA %d\n", drive->name, mode & 0xf);
  1627. ret = pmac_ide_do_setfeature(drive, mode);
  1628. if (ret) {
  1629. printk(KERN_WARNING "%s: Failed !\n", drive->name);
  1630. return 0;
  1631. }
  1632. /* Apply timings to controller */
  1633. *timings = timing_local[0];
  1634. *timings2 = timing_local[1];
  1635. /* Set speed info in drive */
  1636. drive->current_speed = mode;
  1637. if (!drive->init_speed)
  1638. drive->init_speed = mode;
  1639. return 1;
  1640. }
  1641. /*
  1642. * Pick up best UDMA timing for the drive and apply it
  1643. */
  1644. static int __pmac
  1645. pmac_ide_udma_enable(ide_drive_t *drive, u16 mode)
  1646. {
  1647. ide_hwif_t *hwif = HWIF(drive);
  1648. pmac_ide_hwif_t* pmif = (pmac_ide_hwif_t *)hwif->hwif_data;
  1649. u32 *timings, *timings2;
  1650. u32 timing_local[2];
  1651. int ret;
  1652. /* which drive is it ? */
  1653. timings = &pmif->timings[drive->select.b.unit & 0x01];
  1654. timings2 = &pmif->timings[(drive->select.b.unit & 0x01) + 2];
  1655. /* Copy timings to local image */
  1656. timing_local[0] = *timings;
  1657. timing_local[1] = *timings2;
  1658. /* Calculate timings for interface */
  1659. if (pmif->kind == controller_un_ata6
  1660. || pmif->kind == controller_k2_ata6)
  1661. ret = set_timings_udma_ata6( &timing_local[0],
  1662. &timing_local[1],
  1663. mode);
  1664. else if (pmif->kind == controller_sh_ata6)
  1665. ret = set_timings_udma_shasta( &timing_local[0],
  1666. &timing_local[1],
  1667. mode);
  1668. else
  1669. ret = set_timings_udma_ata4(&timing_local[0], mode);
  1670. if (ret)
  1671. return 0;
  1672. /* Set feature on drive */
  1673. printk(KERN_INFO "%s: Enabling Ultra DMA %d\n", drive->name, mode & 0x0f);
  1674. ret = pmac_ide_do_setfeature(drive, mode);
  1675. if (ret) {
  1676. printk(KERN_WARNING "%s: Failed !\n", drive->name);
  1677. return 0;
  1678. }
  1679. /* Apply timings to controller */
  1680. *timings = timing_local[0];
  1681. *timings2 = timing_local[1];
  1682. /* Set speed info in drive */
  1683. drive->current_speed = mode;
  1684. if (!drive->init_speed)
  1685. drive->init_speed = mode;
  1686. return 1;
  1687. }
  1688. /*
  1689. * Check what is the best DMA timing setting for the drive and
  1690. * call appropriate functions to apply it.
  1691. */
  1692. static int __pmac
  1693. pmac_ide_dma_check(ide_drive_t *drive)
  1694. {
  1695. struct hd_driveid *id = drive->id;
  1696. ide_hwif_t *hwif = HWIF(drive);
  1697. pmac_ide_hwif_t* pmif = (pmac_ide_hwif_t *)hwif->hwif_data;
  1698. int enable = 1;
  1699. int map;
  1700. drive->using_dma = 0;
  1701. if (drive->media == ide_floppy)
  1702. enable = 0;
  1703. if (((id->capability & 1) == 0) && !__ide_dma_good_drive(drive))
  1704. enable = 0;
  1705. if (__ide_dma_bad_drive(drive))
  1706. enable = 0;
  1707. if (enable) {
  1708. short mode;
  1709. map = XFER_MWDMA;
  1710. if (pmif->kind == controller_kl_ata4
  1711. || pmif->kind == controller_un_ata6
  1712. || pmif->kind == controller_k2_ata6
  1713. || pmif->kind == controller_sh_ata6) {
  1714. map |= XFER_UDMA;
  1715. if (pmif->cable_80) {
  1716. map |= XFER_UDMA_66;
  1717. if (pmif->kind == controller_un_ata6 ||
  1718. pmif->kind == controller_k2_ata6 ||
  1719. pmif->kind == controller_sh_ata6)
  1720. map |= XFER_UDMA_100;
  1721. if (pmif->kind == controller_sh_ata6)
  1722. map |= XFER_UDMA_133;
  1723. }
  1724. }
  1725. mode = ide_find_best_mode(drive, map);
  1726. if (mode & XFER_UDMA)
  1727. drive->using_dma = pmac_ide_udma_enable(drive, mode);
  1728. else if (mode & XFER_MWDMA)
  1729. drive->using_dma = pmac_ide_mdma_enable(drive, mode);
  1730. hwif->OUTB(0, IDE_CONTROL_REG);
  1731. /* Apply settings to controller */
  1732. pmac_ide_do_update_timings(drive);
  1733. }
  1734. return 0;
  1735. }
  1736. /*
  1737. * Prepare a DMA transfer. We build the DMA table, adjust the timings for
  1738. * a read on KeyLargo ATA/66 and mark us as waiting for DMA completion
  1739. */
  1740. static int __pmac
  1741. pmac_ide_dma_setup(ide_drive_t *drive)
  1742. {
  1743. ide_hwif_t *hwif = HWIF(drive);
  1744. pmac_ide_hwif_t* pmif = (pmac_ide_hwif_t *)hwif->hwif_data;
  1745. struct request *rq = HWGROUP(drive)->rq;
  1746. u8 unit = (drive->select.b.unit & 0x01);
  1747. u8 ata4;
  1748. if (pmif == NULL)
  1749. return 1;
  1750. ata4 = (pmif->kind == controller_kl_ata4);
  1751. if (!pmac_ide_build_dmatable(drive, rq)) {
  1752. ide_map_sg(drive, rq);
  1753. return 1;
  1754. }
  1755. /* Apple adds 60ns to wrDataSetup on reads */
  1756. if (ata4 && (pmif->timings[unit] & TR_66_UDMA_EN)) {
  1757. writel(pmif->timings[unit] + (!rq_data_dir(rq) ? 0x00800000UL : 0),
  1758. PMAC_IDE_REG(IDE_TIMING_CONFIG));
  1759. (void)readl(PMAC_IDE_REG(IDE_TIMING_CONFIG));
  1760. }
  1761. drive->waiting_for_dma = 1;
  1762. return 0;
  1763. }
  1764. static void __pmac
  1765. pmac_ide_dma_exec_cmd(ide_drive_t *drive, u8 command)
  1766. {
  1767. /* issue cmd to drive */
  1768. ide_execute_command(drive, command, &ide_dma_intr, 2*WAIT_CMD, NULL);
  1769. }
  1770. /*
  1771. * Kick the DMA controller into life after the DMA command has been issued
  1772. * to the drive.
  1773. */
  1774. static void __pmac
  1775. pmac_ide_dma_start(ide_drive_t *drive)
  1776. {
  1777. pmac_ide_hwif_t* pmif = (pmac_ide_hwif_t *)HWIF(drive)->hwif_data;
  1778. volatile struct dbdma_regs __iomem *dma;
  1779. dma = pmif->dma_regs;
  1780. writel((RUN << 16) | RUN, &dma->control);
  1781. /* Make sure it gets to the controller right now */
  1782. (void)readl(&dma->control);
  1783. }
  1784. /*
  1785. * After a DMA transfer, make sure the controller is stopped
  1786. */
  1787. static int __pmac
  1788. pmac_ide_dma_end (ide_drive_t *drive)
  1789. {
  1790. pmac_ide_hwif_t* pmif = (pmac_ide_hwif_t *)HWIF(drive)->hwif_data;
  1791. volatile struct dbdma_regs __iomem *dma;
  1792. u32 dstat;
  1793. if (pmif == NULL)
  1794. return 0;
  1795. dma = pmif->dma_regs;
  1796. drive->waiting_for_dma = 0;
  1797. dstat = readl(&dma->status);
  1798. writel(((RUN|WAKE|DEAD) << 16), &dma->control);
  1799. pmac_ide_destroy_dmatable(drive);
  1800. /* verify good dma status. we don't check for ACTIVE beeing 0. We should...
  1801. * in theory, but with ATAPI decices doing buffer underruns, that would
  1802. * cause us to disable DMA, which isn't what we want
  1803. */
  1804. return (dstat & (RUN|DEAD)) != RUN;
  1805. }
  1806. /*
  1807. * Check out that the interrupt we got was for us. We can't always know this
  1808. * for sure with those Apple interfaces (well, we could on the recent ones but
  1809. * that's not implemented yet), on the other hand, we don't have shared interrupts
  1810. * so it's not really a problem
  1811. */
  1812. static int __pmac
  1813. pmac_ide_dma_test_irq (ide_drive_t *drive)
  1814. {
  1815. pmac_ide_hwif_t* pmif = (pmac_ide_hwif_t *)HWIF(drive)->hwif_data;
  1816. volatile struct dbdma_regs __iomem *dma;
  1817. unsigned long status, timeout;
  1818. if (pmif == NULL)
  1819. return 0;
  1820. dma = pmif->dma_regs;
  1821. /* We have to things to deal with here:
  1822. *
  1823. * - The dbdma won't stop if the command was started
  1824. * but completed with an error without transferring all
  1825. * datas. This happens when bad blocks are met during
  1826. * a multi-block transfer.
  1827. *
  1828. * - The dbdma fifo hasn't yet finished flushing to
  1829. * to system memory when the disk interrupt occurs.
  1830. *
  1831. */
  1832. /* If ACTIVE is cleared, the STOP command have passed and
  1833. * transfer is complete.
  1834. */
  1835. status = readl(&dma->status);
  1836. if (!(status & ACTIVE))
  1837. return 1;
  1838. if (!drive->waiting_for_dma)
  1839. printk(KERN_WARNING "ide%d, ide_dma_test_irq \
  1840. called while not waiting\n", HWIF(drive)->index);
  1841. /* If dbdma didn't execute the STOP command yet, the
  1842. * active bit is still set. We consider that we aren't
  1843. * sharing interrupts (which is hopefully the case with
  1844. * those controllers) and so we just try to flush the
  1845. * channel for pending data in the fifo
  1846. */
  1847. udelay(1);
  1848. writel((FLUSH << 16) | FLUSH, &dma->control);
  1849. timeout = 0;
  1850. for (;;) {
  1851. udelay(1);
  1852. status = readl(&dma->status);
  1853. if ((status & FLUSH) == 0)
  1854. break;
  1855. if (++timeout > 100) {
  1856. printk(KERN_WARNING "ide%d, ide_dma_test_irq \
  1857. timeout flushing channel\n", HWIF(drive)->index);
  1858. break;
  1859. }
  1860. }
  1861. return 1;
  1862. }
  1863. static int __pmac
  1864. pmac_ide_dma_host_off (ide_drive_t *drive)
  1865. {
  1866. return 0;
  1867. }
  1868. static int __pmac
  1869. pmac_ide_dma_host_on (ide_drive_t *drive)
  1870. {
  1871. return 0;
  1872. }
  1873. static int __pmac
  1874. pmac_ide_dma_lostirq (ide_drive_t *drive)
  1875. {
  1876. pmac_ide_hwif_t* pmif = (pmac_ide_hwif_t *)HWIF(drive)->hwif_data;
  1877. volatile struct dbdma_regs __iomem *dma;
  1878. unsigned long status;
  1879. if (pmif == NULL)
  1880. return 0;
  1881. dma = pmif->dma_regs;
  1882. status = readl(&dma->status);
  1883. printk(KERN_ERR "ide-pmac lost interrupt, dma status: %lx\n", status);
  1884. return 0;
  1885. }
  1886. /*
  1887. * Allocate the data structures needed for using DMA with an interface
  1888. * and fill the proper list of functions pointers
  1889. */
  1890. static void __init
  1891. pmac_ide_setup_dma(pmac_ide_hwif_t *pmif, ide_hwif_t *hwif)
  1892. {
  1893. /* We won't need pci_dev if we switch to generic consistent
  1894. * DMA routines ...
  1895. */
  1896. if (hwif->pci_dev == NULL)
  1897. return;
  1898. /*
  1899. * Allocate space for the DBDMA commands.
  1900. * The +2 is +1 for the stop command and +1 to allow for
  1901. * aligning the start address to a multiple of 16 bytes.
  1902. */
  1903. pmif->dma_table_cpu = (struct dbdma_cmd*)pci_alloc_consistent(
  1904. hwif->pci_dev,
  1905. (MAX_DCMDS + 2) * sizeof(struct dbdma_cmd),
  1906. &hwif->dmatable_dma);
  1907. if (pmif->dma_table_cpu == NULL) {
  1908. printk(KERN_ERR "%s: unable to allocate DMA command list\n",
  1909. hwif->name);
  1910. return;
  1911. }
  1912. hwif->ide_dma_off_quietly = &__ide_dma_off_quietly;
  1913. hwif->ide_dma_on = &__ide_dma_on;
  1914. hwif->ide_dma_check = &pmac_ide_dma_check;
  1915. hwif->dma_setup = &pmac_ide_dma_setup;
  1916. hwif->dma_exec_cmd = &pmac_ide_dma_exec_cmd;
  1917. hwif->dma_start = &pmac_ide_dma_start;
  1918. hwif->ide_dma_end = &pmac_ide_dma_end;
  1919. hwif->ide_dma_test_irq = &pmac_ide_dma_test_irq;
  1920. hwif->ide_dma_host_off = &pmac_ide_dma_host_off;
  1921. hwif->ide_dma_host_on = &pmac_ide_dma_host_on;
  1922. hwif->ide_dma_timeout = &__ide_dma_timeout;
  1923. hwif->ide_dma_lostirq = &pmac_ide_dma_lostirq;
  1924. hwif->atapi_dma = 1;
  1925. switch(pmif->kind) {
  1926. case controller_sh_ata6:
  1927. hwif->ultra_mask = pmif->cable_80 ? 0x7f : 0x07;
  1928. hwif->mwdma_mask = 0x07;
  1929. hwif->swdma_mask = 0x00;
  1930. break;
  1931. case controller_un_ata6:
  1932. case controller_k2_ata6:
  1933. hwif->ultra_mask = pmif->cable_80 ? 0x3f : 0x07;
  1934. hwif->mwdma_mask = 0x07;
  1935. hwif->swdma_mask = 0x00;
  1936. break;
  1937. case controller_kl_ata4:
  1938. hwif->ultra_mask = pmif->cable_80 ? 0x1f : 0x07;
  1939. hwif->mwdma_mask = 0x07;
  1940. hwif->swdma_mask = 0x00;
  1941. break;
  1942. default:
  1943. hwif->ultra_mask = 0x00;
  1944. hwif->mwdma_mask = 0x07;
  1945. hwif->swdma_mask = 0x00;
  1946. break;
  1947. }
  1948. }
  1949. #endif /* CONFIG_BLK_DEV_IDEDMA_PMAC */