sata_mv.c 120 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425
  1. /*
  2. * sata_mv.c - Marvell SATA support
  3. *
  4. * Copyright 2008-2009: Marvell Corporation, all rights reserved.
  5. * Copyright 2005: EMC Corporation, all rights reserved.
  6. * Copyright 2005 Red Hat, Inc. All rights reserved.
  7. *
  8. * Originally written by Brett Russ.
  9. * Extensive overhaul and enhancement by Mark Lord <mlord@pobox.com>.
  10. *
  11. * Please ALWAYS copy linux-ide@vger.kernel.org on emails.
  12. *
  13. * This program is free software; you can redistribute it and/or modify
  14. * it under the terms of the GNU General Public License as published by
  15. * the Free Software Foundation; version 2 of the License.
  16. *
  17. * This program is distributed in the hope that it will be useful,
  18. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  19. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  20. * GNU General Public License for more details.
  21. *
  22. * You should have received a copy of the GNU General Public License
  23. * along with this program; if not, write to the Free Software
  24. * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
  25. *
  26. */
  27. /*
  28. * sata_mv TODO list:
  29. *
  30. * --> Develop a low-power-consumption strategy, and implement it.
  31. *
  32. * --> Add sysfs attributes for per-chip / per-HC IRQ coalescing thresholds.
  33. *
  34. * --> [Experiment, Marvell value added] Is it possible to use target
  35. * mode to cross-connect two Linux boxes with Marvell cards? If so,
  36. * creating LibATA target mode support would be very interesting.
  37. *
  38. * Target mode, for those without docs, is the ability to directly
  39. * connect two SATA ports.
  40. */
  41. /*
  42. * 80x1-B2 errata PCI#11:
  43. *
  44. * Users of the 6041/6081 Rev.B2 chips (current is C0)
  45. * should be careful to insert those cards only onto PCI-X bus #0,
  46. * and only in device slots 0..7, not higher. The chips may not
  47. * work correctly otherwise (note: this is a pretty rare condition).
  48. */
  49. #include <linux/kernel.h>
  50. #include <linux/module.h>
  51. #include <linux/pci.h>
  52. #include <linux/init.h>
  53. #include <linux/blkdev.h>
  54. #include <linux/delay.h>
  55. #include <linux/interrupt.h>
  56. #include <linux/dmapool.h>
  57. #include <linux/dma-mapping.h>
  58. #include <linux/device.h>
  59. #include <linux/clk.h>
  60. #include <linux/platform_device.h>
  61. #include <linux/ata_platform.h>
  62. #include <linux/mbus.h>
  63. #include <linux/bitops.h>
  64. #include <linux/gfp.h>
  65. #include <scsi/scsi_host.h>
  66. #include <scsi/scsi_cmnd.h>
  67. #include <scsi/scsi_device.h>
  68. #include <linux/libata.h>
  69. #define DRV_NAME "sata_mv"
  70. #define DRV_VERSION "1.28"
  71. /*
  72. * module options
  73. */
  74. static int msi;
  75. #ifdef CONFIG_PCI
  76. module_param(msi, int, S_IRUGO);
  77. MODULE_PARM_DESC(msi, "Enable use of PCI MSI (0=off, 1=on)");
  78. #endif
  79. static int irq_coalescing_io_count;
  80. module_param(irq_coalescing_io_count, int, S_IRUGO);
  81. MODULE_PARM_DESC(irq_coalescing_io_count,
  82. "IRQ coalescing I/O count threshold (0..255)");
  83. static int irq_coalescing_usecs;
  84. module_param(irq_coalescing_usecs, int, S_IRUGO);
  85. MODULE_PARM_DESC(irq_coalescing_usecs,
  86. "IRQ coalescing time threshold in usecs");
  87. enum {
  88. /* BAR's are enumerated in terms of pci_resource_start() terms */
  89. MV_PRIMARY_BAR = 0, /* offset 0x10: memory space */
  90. MV_IO_BAR = 2, /* offset 0x18: IO space */
  91. MV_MISC_BAR = 3, /* offset 0x1c: FLASH, NVRAM, SRAM */
  92. MV_MAJOR_REG_AREA_SZ = 0x10000, /* 64KB */
  93. MV_MINOR_REG_AREA_SZ = 0x2000, /* 8KB */
  94. /* For use with both IRQ coalescing methods ("all ports" or "per-HC" */
  95. COAL_CLOCKS_PER_USEC = 150, /* for calculating COAL_TIMEs */
  96. MAX_COAL_TIME_THRESHOLD = ((1 << 24) - 1), /* internal clocks count */
  97. MAX_COAL_IO_COUNT = 255, /* completed I/O count */
  98. MV_PCI_REG_BASE = 0,
  99. /*
  100. * Per-chip ("all ports") interrupt coalescing feature.
  101. * This is only for GEN_II / GEN_IIE hardware.
  102. *
  103. * Coalescing defers the interrupt until either the IO_THRESHOLD
  104. * (count of completed I/Os) is met, or the TIME_THRESHOLD is met.
  105. */
  106. COAL_REG_BASE = 0x18000,
  107. IRQ_COAL_CAUSE = (COAL_REG_BASE + 0x08),
  108. ALL_PORTS_COAL_IRQ = (1 << 4), /* all ports irq event */
  109. IRQ_COAL_IO_THRESHOLD = (COAL_REG_BASE + 0xcc),
  110. IRQ_COAL_TIME_THRESHOLD = (COAL_REG_BASE + 0xd0),
  111. /*
  112. * Registers for the (unused here) transaction coalescing feature:
  113. */
  114. TRAN_COAL_CAUSE_LO = (COAL_REG_BASE + 0x88),
  115. TRAN_COAL_CAUSE_HI = (COAL_REG_BASE + 0x8c),
  116. SATAHC0_REG_BASE = 0x20000,
  117. FLASH_CTL = 0x1046c,
  118. GPIO_PORT_CTL = 0x104f0,
  119. RESET_CFG = 0x180d8,
  120. MV_PCI_REG_SZ = MV_MAJOR_REG_AREA_SZ,
  121. MV_SATAHC_REG_SZ = MV_MAJOR_REG_AREA_SZ,
  122. MV_SATAHC_ARBTR_REG_SZ = MV_MINOR_REG_AREA_SZ, /* arbiter */
  123. MV_PORT_REG_SZ = MV_MINOR_REG_AREA_SZ,
  124. MV_MAX_Q_DEPTH = 32,
  125. MV_MAX_Q_DEPTH_MASK = MV_MAX_Q_DEPTH - 1,
  126. /* CRQB needs alignment on a 1KB boundary. Size == 1KB
  127. * CRPB needs alignment on a 256B boundary. Size == 256B
  128. * ePRD (SG) entries need alignment on a 16B boundary. Size == 16B
  129. */
  130. MV_CRQB_Q_SZ = (32 * MV_MAX_Q_DEPTH),
  131. MV_CRPB_Q_SZ = (8 * MV_MAX_Q_DEPTH),
  132. MV_MAX_SG_CT = 256,
  133. MV_SG_TBL_SZ = (16 * MV_MAX_SG_CT),
  134. /* Determine hc from 0-7 port: hc = port >> MV_PORT_HC_SHIFT */
  135. MV_PORT_HC_SHIFT = 2,
  136. MV_PORTS_PER_HC = (1 << MV_PORT_HC_SHIFT), /* 4 */
  137. /* Determine hc port from 0-7 port: hardport = port & MV_PORT_MASK */
  138. MV_PORT_MASK = (MV_PORTS_PER_HC - 1), /* 3 */
  139. /* Host Flags */
  140. MV_FLAG_DUAL_HC = (1 << 30), /* two SATA Host Controllers */
  141. MV_COMMON_FLAGS = ATA_FLAG_SATA | ATA_FLAG_NO_LEGACY |
  142. ATA_FLAG_MMIO | ATA_FLAG_PIO_POLLING,
  143. MV_GEN_I_FLAGS = MV_COMMON_FLAGS | ATA_FLAG_NO_ATAPI,
  144. MV_GEN_II_FLAGS = MV_COMMON_FLAGS | ATA_FLAG_NCQ |
  145. ATA_FLAG_PMP | ATA_FLAG_ACPI_SATA,
  146. MV_GEN_IIE_FLAGS = MV_GEN_II_FLAGS | ATA_FLAG_AN,
  147. CRQB_FLAG_READ = (1 << 0),
  148. CRQB_TAG_SHIFT = 1,
  149. CRQB_IOID_SHIFT = 6, /* CRQB Gen-II/IIE IO Id shift */
  150. CRQB_PMP_SHIFT = 12, /* CRQB Gen-II/IIE PMP shift */
  151. CRQB_HOSTQ_SHIFT = 17, /* CRQB Gen-II/IIE HostQueTag shift */
  152. CRQB_CMD_ADDR_SHIFT = 8,
  153. CRQB_CMD_CS = (0x2 << 11),
  154. CRQB_CMD_LAST = (1 << 15),
  155. CRPB_FLAG_STATUS_SHIFT = 8,
  156. CRPB_IOID_SHIFT_6 = 5, /* CRPB Gen-II IO Id shift */
  157. CRPB_IOID_SHIFT_7 = 7, /* CRPB Gen-IIE IO Id shift */
  158. EPRD_FLAG_END_OF_TBL = (1 << 31),
  159. /* PCI interface registers */
  160. MV_PCI_COMMAND = 0xc00,
  161. MV_PCI_COMMAND_MWRCOM = (1 << 4), /* PCI Master Write Combining */
  162. MV_PCI_COMMAND_MRDTRIG = (1 << 7), /* PCI Master Read Trigger */
  163. PCI_MAIN_CMD_STS = 0xd30,
  164. STOP_PCI_MASTER = (1 << 2),
  165. PCI_MASTER_EMPTY = (1 << 3),
  166. GLOB_SFT_RST = (1 << 4),
  167. MV_PCI_MODE = 0xd00,
  168. MV_PCI_MODE_MASK = 0x30,
  169. MV_PCI_EXP_ROM_BAR_CTL = 0xd2c,
  170. MV_PCI_DISC_TIMER = 0xd04,
  171. MV_PCI_MSI_TRIGGER = 0xc38,
  172. MV_PCI_SERR_MASK = 0xc28,
  173. MV_PCI_XBAR_TMOUT = 0x1d04,
  174. MV_PCI_ERR_LOW_ADDRESS = 0x1d40,
  175. MV_PCI_ERR_HIGH_ADDRESS = 0x1d44,
  176. MV_PCI_ERR_ATTRIBUTE = 0x1d48,
  177. MV_PCI_ERR_COMMAND = 0x1d50,
  178. PCI_IRQ_CAUSE = 0x1d58,
  179. PCI_IRQ_MASK = 0x1d5c,
  180. PCI_UNMASK_ALL_IRQS = 0x7fffff, /* bits 22-0 */
  181. PCIE_IRQ_CAUSE = 0x1900,
  182. PCIE_IRQ_MASK = 0x1910,
  183. PCIE_UNMASK_ALL_IRQS = 0x40a, /* assorted bits */
  184. /* Host Controller Main Interrupt Cause/Mask registers (1 per-chip) */
  185. PCI_HC_MAIN_IRQ_CAUSE = 0x1d60,
  186. PCI_HC_MAIN_IRQ_MASK = 0x1d64,
  187. SOC_HC_MAIN_IRQ_CAUSE = 0x20020,
  188. SOC_HC_MAIN_IRQ_MASK = 0x20024,
  189. ERR_IRQ = (1 << 0), /* shift by (2 * port #) */
  190. DONE_IRQ = (1 << 1), /* shift by (2 * port #) */
  191. HC0_IRQ_PEND = 0x1ff, /* bits 0-8 = HC0's ports */
  192. HC_SHIFT = 9, /* bits 9-17 = HC1's ports */
  193. DONE_IRQ_0_3 = 0x000000aa, /* DONE_IRQ ports 0,1,2,3 */
  194. DONE_IRQ_4_7 = (DONE_IRQ_0_3 << HC_SHIFT), /* 4,5,6,7 */
  195. PCI_ERR = (1 << 18),
  196. TRAN_COAL_LO_DONE = (1 << 19), /* transaction coalescing */
  197. TRAN_COAL_HI_DONE = (1 << 20), /* transaction coalescing */
  198. PORTS_0_3_COAL_DONE = (1 << 8), /* HC0 IRQ coalescing */
  199. PORTS_4_7_COAL_DONE = (1 << 17), /* HC1 IRQ coalescing */
  200. ALL_PORTS_COAL_DONE = (1 << 21), /* GEN_II(E) IRQ coalescing */
  201. GPIO_INT = (1 << 22),
  202. SELF_INT = (1 << 23),
  203. TWSI_INT = (1 << 24),
  204. HC_MAIN_RSVD = (0x7f << 25), /* bits 31-25 */
  205. HC_MAIN_RSVD_5 = (0x1fff << 19), /* bits 31-19 */
  206. HC_MAIN_RSVD_SOC = (0x3fffffb << 6), /* bits 31-9, 7-6 */
  207. /* SATAHC registers */
  208. HC_CFG = 0x00,
  209. HC_IRQ_CAUSE = 0x14,
  210. DMA_IRQ = (1 << 0), /* shift by port # */
  211. HC_COAL_IRQ = (1 << 4), /* IRQ coalescing */
  212. DEV_IRQ = (1 << 8), /* shift by port # */
  213. /*
  214. * Per-HC (Host-Controller) interrupt coalescing feature.
  215. * This is present on all chip generations.
  216. *
  217. * Coalescing defers the interrupt until either the IO_THRESHOLD
  218. * (count of completed I/Os) is met, or the TIME_THRESHOLD is met.
  219. */
  220. HC_IRQ_COAL_IO_THRESHOLD = 0x000c,
  221. HC_IRQ_COAL_TIME_THRESHOLD = 0x0010,
  222. SOC_LED_CTRL = 0x2c,
  223. SOC_LED_CTRL_BLINK = (1 << 0), /* Active LED blink */
  224. SOC_LED_CTRL_ACT_PRESENCE = (1 << 2), /* Multiplex dev presence */
  225. /* with dev activity LED */
  226. /* Shadow block registers */
  227. SHD_BLK = 0x100,
  228. SHD_CTL_AST = 0x20, /* ofs from SHD_BLK */
  229. /* SATA registers */
  230. SATA_STATUS = 0x300, /* ctrl, err regs follow status */
  231. SATA_ACTIVE = 0x350,
  232. FIS_IRQ_CAUSE = 0x364,
  233. FIS_IRQ_CAUSE_AN = (1 << 9), /* async notification */
  234. LTMODE = 0x30c, /* requires read-after-write */
  235. LTMODE_BIT8 = (1 << 8), /* unknown, but necessary */
  236. PHY_MODE2 = 0x330,
  237. PHY_MODE3 = 0x310,
  238. PHY_MODE4 = 0x314, /* requires read-after-write */
  239. PHY_MODE4_CFG_MASK = 0x00000003, /* phy internal config field */
  240. PHY_MODE4_CFG_VALUE = 0x00000001, /* phy internal config field */
  241. PHY_MODE4_RSVD_ZEROS = 0x5de3fffa, /* Gen2e always write zeros */
  242. PHY_MODE4_RSVD_ONES = 0x00000005, /* Gen2e always write ones */
  243. SATA_IFCTL = 0x344,
  244. SATA_TESTCTL = 0x348,
  245. SATA_IFSTAT = 0x34c,
  246. VENDOR_UNIQUE_FIS = 0x35c,
  247. FISCFG = 0x360,
  248. FISCFG_WAIT_DEV_ERR = (1 << 8), /* wait for host on DevErr */
  249. FISCFG_SINGLE_SYNC = (1 << 16), /* SYNC on DMA activation */
  250. PHY_MODE9_GEN2 = 0x398,
  251. PHY_MODE9_GEN1 = 0x39c,
  252. PHYCFG_OFS = 0x3a0, /* only in 65n devices */
  253. MV5_PHY_MODE = 0x74,
  254. MV5_LTMODE = 0x30,
  255. MV5_PHY_CTL = 0x0C,
  256. SATA_IFCFG = 0x050,
  257. MV_M2_PREAMP_MASK = 0x7e0,
  258. /* Port registers */
  259. EDMA_CFG = 0,
  260. EDMA_CFG_Q_DEPTH = 0x1f, /* max device queue depth */
  261. EDMA_CFG_NCQ = (1 << 5), /* for R/W FPDMA queued */
  262. EDMA_CFG_NCQ_GO_ON_ERR = (1 << 14), /* continue on error */
  263. EDMA_CFG_RD_BRST_EXT = (1 << 11), /* read burst 512B */
  264. EDMA_CFG_WR_BUFF_LEN = (1 << 13), /* write buffer 512B */
  265. EDMA_CFG_EDMA_FBS = (1 << 16), /* EDMA FIS-Based Switching */
  266. EDMA_CFG_FBS = (1 << 26), /* FIS-Based Switching */
  267. EDMA_ERR_IRQ_CAUSE = 0x8,
  268. EDMA_ERR_IRQ_MASK = 0xc,
  269. EDMA_ERR_D_PAR = (1 << 0), /* UDMA data parity err */
  270. EDMA_ERR_PRD_PAR = (1 << 1), /* UDMA PRD parity err */
  271. EDMA_ERR_DEV = (1 << 2), /* device error */
  272. EDMA_ERR_DEV_DCON = (1 << 3), /* device disconnect */
  273. EDMA_ERR_DEV_CON = (1 << 4), /* device connected */
  274. EDMA_ERR_SERR = (1 << 5), /* SError bits [WBDST] raised */
  275. EDMA_ERR_SELF_DIS = (1 << 7), /* Gen II/IIE self-disable */
  276. EDMA_ERR_SELF_DIS_5 = (1 << 8), /* Gen I self-disable */
  277. EDMA_ERR_BIST_ASYNC = (1 << 8), /* BIST FIS or Async Notify */
  278. EDMA_ERR_TRANS_IRQ_7 = (1 << 8), /* Gen IIE transprt layer irq */
  279. EDMA_ERR_CRQB_PAR = (1 << 9), /* CRQB parity error */
  280. EDMA_ERR_CRPB_PAR = (1 << 10), /* CRPB parity error */
  281. EDMA_ERR_INTRL_PAR = (1 << 11), /* internal parity error */
  282. EDMA_ERR_IORDY = (1 << 12), /* IORdy timeout */
  283. EDMA_ERR_LNK_CTRL_RX = (0xf << 13), /* link ctrl rx error */
  284. EDMA_ERR_LNK_CTRL_RX_0 = (1 << 13), /* transient: CRC err */
  285. EDMA_ERR_LNK_CTRL_RX_1 = (1 << 14), /* transient: FIFO err */
  286. EDMA_ERR_LNK_CTRL_RX_2 = (1 << 15), /* fatal: caught SYNC */
  287. EDMA_ERR_LNK_CTRL_RX_3 = (1 << 16), /* transient: FIS rx err */
  288. EDMA_ERR_LNK_DATA_RX = (0xf << 17), /* link data rx error */
  289. EDMA_ERR_LNK_CTRL_TX = (0x1f << 21), /* link ctrl tx error */
  290. EDMA_ERR_LNK_CTRL_TX_0 = (1 << 21), /* transient: CRC err */
  291. EDMA_ERR_LNK_CTRL_TX_1 = (1 << 22), /* transient: FIFO err */
  292. EDMA_ERR_LNK_CTRL_TX_2 = (1 << 23), /* transient: caught SYNC */
  293. EDMA_ERR_LNK_CTRL_TX_3 = (1 << 24), /* transient: caught DMAT */
  294. EDMA_ERR_LNK_CTRL_TX_4 = (1 << 25), /* transient: FIS collision */
  295. EDMA_ERR_LNK_DATA_TX = (0x1f << 26), /* link data tx error */
  296. EDMA_ERR_TRANS_PROTO = (1 << 31), /* transport protocol error */
  297. EDMA_ERR_OVERRUN_5 = (1 << 5),
  298. EDMA_ERR_UNDERRUN_5 = (1 << 6),
  299. EDMA_ERR_IRQ_TRANSIENT = EDMA_ERR_LNK_CTRL_RX_0 |
  300. EDMA_ERR_LNK_CTRL_RX_1 |
  301. EDMA_ERR_LNK_CTRL_RX_3 |
  302. EDMA_ERR_LNK_CTRL_TX,
  303. EDMA_EH_FREEZE = EDMA_ERR_D_PAR |
  304. EDMA_ERR_PRD_PAR |
  305. EDMA_ERR_DEV_DCON |
  306. EDMA_ERR_DEV_CON |
  307. EDMA_ERR_SERR |
  308. EDMA_ERR_SELF_DIS |
  309. EDMA_ERR_CRQB_PAR |
  310. EDMA_ERR_CRPB_PAR |
  311. EDMA_ERR_INTRL_PAR |
  312. EDMA_ERR_IORDY |
  313. EDMA_ERR_LNK_CTRL_RX_2 |
  314. EDMA_ERR_LNK_DATA_RX |
  315. EDMA_ERR_LNK_DATA_TX |
  316. EDMA_ERR_TRANS_PROTO,
  317. EDMA_EH_FREEZE_5 = EDMA_ERR_D_PAR |
  318. EDMA_ERR_PRD_PAR |
  319. EDMA_ERR_DEV_DCON |
  320. EDMA_ERR_DEV_CON |
  321. EDMA_ERR_OVERRUN_5 |
  322. EDMA_ERR_UNDERRUN_5 |
  323. EDMA_ERR_SELF_DIS_5 |
  324. EDMA_ERR_CRQB_PAR |
  325. EDMA_ERR_CRPB_PAR |
  326. EDMA_ERR_INTRL_PAR |
  327. EDMA_ERR_IORDY,
  328. EDMA_REQ_Q_BASE_HI = 0x10,
  329. EDMA_REQ_Q_IN_PTR = 0x14, /* also contains BASE_LO */
  330. EDMA_REQ_Q_OUT_PTR = 0x18,
  331. EDMA_REQ_Q_PTR_SHIFT = 5,
  332. EDMA_RSP_Q_BASE_HI = 0x1c,
  333. EDMA_RSP_Q_IN_PTR = 0x20,
  334. EDMA_RSP_Q_OUT_PTR = 0x24, /* also contains BASE_LO */
  335. EDMA_RSP_Q_PTR_SHIFT = 3,
  336. EDMA_CMD = 0x28, /* EDMA command register */
  337. EDMA_EN = (1 << 0), /* enable EDMA */
  338. EDMA_DS = (1 << 1), /* disable EDMA; self-negated */
  339. EDMA_RESET = (1 << 2), /* reset eng/trans/link/phy */
  340. EDMA_STATUS = 0x30, /* EDMA engine status */
  341. EDMA_STATUS_CACHE_EMPTY = (1 << 6), /* GenIIe command cache empty */
  342. EDMA_STATUS_IDLE = (1 << 7), /* GenIIe EDMA enabled/idle */
  343. EDMA_IORDY_TMOUT = 0x34,
  344. EDMA_ARB_CFG = 0x38,
  345. EDMA_HALTCOND = 0x60, /* GenIIe halt conditions */
  346. EDMA_UNKNOWN_RSVD = 0x6C, /* GenIIe unknown/reserved */
  347. BMDMA_CMD = 0x224, /* bmdma command register */
  348. BMDMA_STATUS = 0x228, /* bmdma status register */
  349. BMDMA_PRD_LOW = 0x22c, /* bmdma PRD addr 31:0 */
  350. BMDMA_PRD_HIGH = 0x230, /* bmdma PRD addr 63:32 */
  351. /* Host private flags (hp_flags) */
  352. MV_HP_FLAG_MSI = (1 << 0),
  353. MV_HP_ERRATA_50XXB0 = (1 << 1),
  354. MV_HP_ERRATA_50XXB2 = (1 << 2),
  355. MV_HP_ERRATA_60X1B2 = (1 << 3),
  356. MV_HP_ERRATA_60X1C0 = (1 << 4),
  357. MV_HP_GEN_I = (1 << 6), /* Generation I: 50xx */
  358. MV_HP_GEN_II = (1 << 7), /* Generation II: 60xx */
  359. MV_HP_GEN_IIE = (1 << 8), /* Generation IIE: 6042/7042 */
  360. MV_HP_PCIE = (1 << 9), /* PCIe bus/regs: 7042 */
  361. MV_HP_CUT_THROUGH = (1 << 10), /* can use EDMA cut-through */
  362. MV_HP_FLAG_SOC = (1 << 11), /* SystemOnChip, no PCI */
  363. MV_HP_QUIRK_LED_BLINK_EN = (1 << 12), /* is led blinking enabled? */
  364. /* Port private flags (pp_flags) */
  365. MV_PP_FLAG_EDMA_EN = (1 << 0), /* is EDMA engine enabled? */
  366. MV_PP_FLAG_NCQ_EN = (1 << 1), /* is EDMA set up for NCQ? */
  367. MV_PP_FLAG_FBS_EN = (1 << 2), /* is EDMA set up for FBS? */
  368. MV_PP_FLAG_DELAYED_EH = (1 << 3), /* delayed dev err handling */
  369. MV_PP_FLAG_FAKE_ATA_BUSY = (1 << 4), /* ignore initial ATA_DRDY */
  370. };
  371. #define IS_GEN_I(hpriv) ((hpriv)->hp_flags & MV_HP_GEN_I)
  372. #define IS_GEN_II(hpriv) ((hpriv)->hp_flags & MV_HP_GEN_II)
  373. #define IS_GEN_IIE(hpriv) ((hpriv)->hp_flags & MV_HP_GEN_IIE)
  374. #define IS_PCIE(hpriv) ((hpriv)->hp_flags & MV_HP_PCIE)
  375. #define IS_SOC(hpriv) ((hpriv)->hp_flags & MV_HP_FLAG_SOC)
  376. #define WINDOW_CTRL(i) (0x20030 + ((i) << 4))
  377. #define WINDOW_BASE(i) (0x20034 + ((i) << 4))
  378. enum {
  379. /* DMA boundary 0xffff is required by the s/g splitting
  380. * we need on /length/ in mv_fill-sg().
  381. */
  382. MV_DMA_BOUNDARY = 0xffffU,
  383. /* mask of register bits containing lower 32 bits
  384. * of EDMA request queue DMA address
  385. */
  386. EDMA_REQ_Q_BASE_LO_MASK = 0xfffffc00U,
  387. /* ditto, for response queue */
  388. EDMA_RSP_Q_BASE_LO_MASK = 0xffffff00U,
  389. };
  390. enum chip_type {
  391. chip_504x,
  392. chip_508x,
  393. chip_5080,
  394. chip_604x,
  395. chip_608x,
  396. chip_6042,
  397. chip_7042,
  398. chip_soc,
  399. };
  400. /* Command ReQuest Block: 32B */
  401. struct mv_crqb {
  402. __le32 sg_addr;
  403. __le32 sg_addr_hi;
  404. __le16 ctrl_flags;
  405. __le16 ata_cmd[11];
  406. };
  407. struct mv_crqb_iie {
  408. __le32 addr;
  409. __le32 addr_hi;
  410. __le32 flags;
  411. __le32 len;
  412. __le32 ata_cmd[4];
  413. };
  414. /* Command ResPonse Block: 8B */
  415. struct mv_crpb {
  416. __le16 id;
  417. __le16 flags;
  418. __le32 tmstmp;
  419. };
  420. /* EDMA Physical Region Descriptor (ePRD); A.K.A. SG */
  421. struct mv_sg {
  422. __le32 addr;
  423. __le32 flags_size;
  424. __le32 addr_hi;
  425. __le32 reserved;
  426. };
  427. /*
  428. * We keep a local cache of a few frequently accessed port
  429. * registers here, to avoid having to read them (very slow)
  430. * when switching between EDMA and non-EDMA modes.
  431. */
  432. struct mv_cached_regs {
  433. u32 fiscfg;
  434. u32 ltmode;
  435. u32 haltcond;
  436. u32 unknown_rsvd;
  437. };
  438. struct mv_port_priv {
  439. struct mv_crqb *crqb;
  440. dma_addr_t crqb_dma;
  441. struct mv_crpb *crpb;
  442. dma_addr_t crpb_dma;
  443. struct mv_sg *sg_tbl[MV_MAX_Q_DEPTH];
  444. dma_addr_t sg_tbl_dma[MV_MAX_Q_DEPTH];
  445. unsigned int req_idx;
  446. unsigned int resp_idx;
  447. u32 pp_flags;
  448. struct mv_cached_regs cached;
  449. unsigned int delayed_eh_pmp_map;
  450. };
  451. struct mv_port_signal {
  452. u32 amps;
  453. u32 pre;
  454. };
  455. struct mv_host_priv {
  456. u32 hp_flags;
  457. unsigned int board_idx;
  458. u32 main_irq_mask;
  459. struct mv_port_signal signal[8];
  460. const struct mv_hw_ops *ops;
  461. int n_ports;
  462. void __iomem *base;
  463. void __iomem *main_irq_cause_addr;
  464. void __iomem *main_irq_mask_addr;
  465. u32 irq_cause_offset;
  466. u32 irq_mask_offset;
  467. u32 unmask_all_irqs;
  468. #if defined(CONFIG_HAVE_CLK)
  469. struct clk *clk;
  470. #endif
  471. /*
  472. * These consistent DMA memory pools give us guaranteed
  473. * alignment for hardware-accessed data structures,
  474. * and less memory waste in accomplishing the alignment.
  475. */
  476. struct dma_pool *crqb_pool;
  477. struct dma_pool *crpb_pool;
  478. struct dma_pool *sg_tbl_pool;
  479. };
  480. struct mv_hw_ops {
  481. void (*phy_errata)(struct mv_host_priv *hpriv, void __iomem *mmio,
  482. unsigned int port);
  483. void (*enable_leds)(struct mv_host_priv *hpriv, void __iomem *mmio);
  484. void (*read_preamp)(struct mv_host_priv *hpriv, int idx,
  485. void __iomem *mmio);
  486. int (*reset_hc)(struct mv_host_priv *hpriv, void __iomem *mmio,
  487. unsigned int n_hc);
  488. void (*reset_flash)(struct mv_host_priv *hpriv, void __iomem *mmio);
  489. void (*reset_bus)(struct ata_host *host, void __iomem *mmio);
  490. };
  491. static int mv_scr_read(struct ata_link *link, unsigned int sc_reg_in, u32 *val);
  492. static int mv_scr_write(struct ata_link *link, unsigned int sc_reg_in, u32 val);
  493. static int mv5_scr_read(struct ata_link *link, unsigned int sc_reg_in, u32 *val);
  494. static int mv5_scr_write(struct ata_link *link, unsigned int sc_reg_in, u32 val);
  495. static int mv_port_start(struct ata_port *ap);
  496. static void mv_port_stop(struct ata_port *ap);
  497. static int mv_qc_defer(struct ata_queued_cmd *qc);
  498. static void mv_qc_prep(struct ata_queued_cmd *qc);
  499. static void mv_qc_prep_iie(struct ata_queued_cmd *qc);
  500. static unsigned int mv_qc_issue(struct ata_queued_cmd *qc);
  501. static int mv_hardreset(struct ata_link *link, unsigned int *class,
  502. unsigned long deadline);
  503. static void mv_eh_freeze(struct ata_port *ap);
  504. static void mv_eh_thaw(struct ata_port *ap);
  505. static void mv6_dev_config(struct ata_device *dev);
  506. static void mv5_phy_errata(struct mv_host_priv *hpriv, void __iomem *mmio,
  507. unsigned int port);
  508. static void mv5_enable_leds(struct mv_host_priv *hpriv, void __iomem *mmio);
  509. static void mv5_read_preamp(struct mv_host_priv *hpriv, int idx,
  510. void __iomem *mmio);
  511. static int mv5_reset_hc(struct mv_host_priv *hpriv, void __iomem *mmio,
  512. unsigned int n_hc);
  513. static void mv5_reset_flash(struct mv_host_priv *hpriv, void __iomem *mmio);
  514. static void mv5_reset_bus(struct ata_host *host, void __iomem *mmio);
  515. static void mv6_phy_errata(struct mv_host_priv *hpriv, void __iomem *mmio,
  516. unsigned int port);
  517. static void mv6_enable_leds(struct mv_host_priv *hpriv, void __iomem *mmio);
  518. static void mv6_read_preamp(struct mv_host_priv *hpriv, int idx,
  519. void __iomem *mmio);
  520. static int mv6_reset_hc(struct mv_host_priv *hpriv, void __iomem *mmio,
  521. unsigned int n_hc);
  522. static void mv6_reset_flash(struct mv_host_priv *hpriv, void __iomem *mmio);
  523. static void mv_soc_enable_leds(struct mv_host_priv *hpriv,
  524. void __iomem *mmio);
  525. static void mv_soc_read_preamp(struct mv_host_priv *hpriv, int idx,
  526. void __iomem *mmio);
  527. static int mv_soc_reset_hc(struct mv_host_priv *hpriv,
  528. void __iomem *mmio, unsigned int n_hc);
  529. static void mv_soc_reset_flash(struct mv_host_priv *hpriv,
  530. void __iomem *mmio);
  531. static void mv_soc_reset_bus(struct ata_host *host, void __iomem *mmio);
  532. static void mv_soc_65n_phy_errata(struct mv_host_priv *hpriv,
  533. void __iomem *mmio, unsigned int port);
  534. static void mv_reset_pci_bus(struct ata_host *host, void __iomem *mmio);
  535. static void mv_reset_channel(struct mv_host_priv *hpriv, void __iomem *mmio,
  536. unsigned int port_no);
  537. static int mv_stop_edma(struct ata_port *ap);
  538. static int mv_stop_edma_engine(void __iomem *port_mmio);
  539. static void mv_edma_cfg(struct ata_port *ap, int want_ncq, int want_edma);
  540. static void mv_pmp_select(struct ata_port *ap, int pmp);
  541. static int mv_pmp_hardreset(struct ata_link *link, unsigned int *class,
  542. unsigned long deadline);
  543. static int mv_softreset(struct ata_link *link, unsigned int *class,
  544. unsigned long deadline);
  545. static void mv_pmp_error_handler(struct ata_port *ap);
  546. static void mv_process_crpb_entries(struct ata_port *ap,
  547. struct mv_port_priv *pp);
  548. static void mv_sff_irq_clear(struct ata_port *ap);
  549. static int mv_check_atapi_dma(struct ata_queued_cmd *qc);
  550. static void mv_bmdma_setup(struct ata_queued_cmd *qc);
  551. static void mv_bmdma_start(struct ata_queued_cmd *qc);
  552. static void mv_bmdma_stop(struct ata_queued_cmd *qc);
  553. static u8 mv_bmdma_status(struct ata_port *ap);
  554. static u8 mv_sff_check_status(struct ata_port *ap);
  555. /* .sg_tablesize is (MV_MAX_SG_CT / 2) in the structures below
  556. * because we have to allow room for worst case splitting of
  557. * PRDs for 64K boundaries in mv_fill_sg().
  558. */
  559. static struct scsi_host_template mv5_sht = {
  560. ATA_BASE_SHT(DRV_NAME),
  561. .sg_tablesize = MV_MAX_SG_CT / 2,
  562. .dma_boundary = MV_DMA_BOUNDARY,
  563. };
  564. static struct scsi_host_template mv6_sht = {
  565. ATA_NCQ_SHT(DRV_NAME),
  566. .can_queue = MV_MAX_Q_DEPTH - 1,
  567. .sg_tablesize = MV_MAX_SG_CT / 2,
  568. .dma_boundary = MV_DMA_BOUNDARY,
  569. };
  570. static struct ata_port_operations mv5_ops = {
  571. .inherits = &ata_sff_port_ops,
  572. .lost_interrupt = ATA_OP_NULL,
  573. .qc_defer = mv_qc_defer,
  574. .qc_prep = mv_qc_prep,
  575. .qc_issue = mv_qc_issue,
  576. .freeze = mv_eh_freeze,
  577. .thaw = mv_eh_thaw,
  578. .hardreset = mv_hardreset,
  579. .scr_read = mv5_scr_read,
  580. .scr_write = mv5_scr_write,
  581. .port_start = mv_port_start,
  582. .port_stop = mv_port_stop,
  583. };
  584. static struct ata_port_operations mv6_ops = {
  585. .inherits = &ata_bmdma_port_ops,
  586. .lost_interrupt = ATA_OP_NULL,
  587. .qc_defer = mv_qc_defer,
  588. .qc_prep = mv_qc_prep,
  589. .qc_issue = mv_qc_issue,
  590. .dev_config = mv6_dev_config,
  591. .freeze = mv_eh_freeze,
  592. .thaw = mv_eh_thaw,
  593. .hardreset = mv_hardreset,
  594. .softreset = mv_softreset,
  595. .pmp_hardreset = mv_pmp_hardreset,
  596. .pmp_softreset = mv_softreset,
  597. .error_handler = mv_pmp_error_handler,
  598. .scr_read = mv_scr_read,
  599. .scr_write = mv_scr_write,
  600. .sff_check_status = mv_sff_check_status,
  601. .sff_irq_clear = mv_sff_irq_clear,
  602. .check_atapi_dma = mv_check_atapi_dma,
  603. .bmdma_setup = mv_bmdma_setup,
  604. .bmdma_start = mv_bmdma_start,
  605. .bmdma_stop = mv_bmdma_stop,
  606. .bmdma_status = mv_bmdma_status,
  607. .port_start = mv_port_start,
  608. .port_stop = mv_port_stop,
  609. };
  610. static struct ata_port_operations mv_iie_ops = {
  611. .inherits = &mv6_ops,
  612. .dev_config = ATA_OP_NULL,
  613. .qc_prep = mv_qc_prep_iie,
  614. };
  615. static const struct ata_port_info mv_port_info[] = {
  616. { /* chip_504x */
  617. .flags = MV_GEN_I_FLAGS,
  618. .pio_mask = ATA_PIO4,
  619. .udma_mask = ATA_UDMA6,
  620. .port_ops = &mv5_ops,
  621. },
  622. { /* chip_508x */
  623. .flags = MV_GEN_I_FLAGS | MV_FLAG_DUAL_HC,
  624. .pio_mask = ATA_PIO4,
  625. .udma_mask = ATA_UDMA6,
  626. .port_ops = &mv5_ops,
  627. },
  628. { /* chip_5080 */
  629. .flags = MV_GEN_I_FLAGS | MV_FLAG_DUAL_HC,
  630. .pio_mask = ATA_PIO4,
  631. .udma_mask = ATA_UDMA6,
  632. .port_ops = &mv5_ops,
  633. },
  634. { /* chip_604x */
  635. .flags = MV_GEN_II_FLAGS,
  636. .pio_mask = ATA_PIO4,
  637. .udma_mask = ATA_UDMA6,
  638. .port_ops = &mv6_ops,
  639. },
  640. { /* chip_608x */
  641. .flags = MV_GEN_II_FLAGS | MV_FLAG_DUAL_HC,
  642. .pio_mask = ATA_PIO4,
  643. .udma_mask = ATA_UDMA6,
  644. .port_ops = &mv6_ops,
  645. },
  646. { /* chip_6042 */
  647. .flags = MV_GEN_IIE_FLAGS,
  648. .pio_mask = ATA_PIO4,
  649. .udma_mask = ATA_UDMA6,
  650. .port_ops = &mv_iie_ops,
  651. },
  652. { /* chip_7042 */
  653. .flags = MV_GEN_IIE_FLAGS,
  654. .pio_mask = ATA_PIO4,
  655. .udma_mask = ATA_UDMA6,
  656. .port_ops = &mv_iie_ops,
  657. },
  658. { /* chip_soc */
  659. .flags = MV_GEN_IIE_FLAGS,
  660. .pio_mask = ATA_PIO4,
  661. .udma_mask = ATA_UDMA6,
  662. .port_ops = &mv_iie_ops,
  663. },
  664. };
  665. static const struct pci_device_id mv_pci_tbl[] = {
  666. { PCI_VDEVICE(MARVELL, 0x5040), chip_504x },
  667. { PCI_VDEVICE(MARVELL, 0x5041), chip_504x },
  668. { PCI_VDEVICE(MARVELL, 0x5080), chip_5080 },
  669. { PCI_VDEVICE(MARVELL, 0x5081), chip_508x },
  670. /* RocketRAID 1720/174x have different identifiers */
  671. { PCI_VDEVICE(TTI, 0x1720), chip_6042 },
  672. { PCI_VDEVICE(TTI, 0x1740), chip_6042 },
  673. { PCI_VDEVICE(TTI, 0x1742), chip_6042 },
  674. { PCI_VDEVICE(MARVELL, 0x6040), chip_604x },
  675. { PCI_VDEVICE(MARVELL, 0x6041), chip_604x },
  676. { PCI_VDEVICE(MARVELL, 0x6042), chip_6042 },
  677. { PCI_VDEVICE(MARVELL, 0x6080), chip_608x },
  678. { PCI_VDEVICE(MARVELL, 0x6081), chip_608x },
  679. { PCI_VDEVICE(ADAPTEC2, 0x0241), chip_604x },
  680. /* Adaptec 1430SA */
  681. { PCI_VDEVICE(ADAPTEC2, 0x0243), chip_7042 },
  682. /* Marvell 7042 support */
  683. { PCI_VDEVICE(MARVELL, 0x7042), chip_7042 },
  684. /* Highpoint RocketRAID PCIe series */
  685. { PCI_VDEVICE(TTI, 0x2300), chip_7042 },
  686. { PCI_VDEVICE(TTI, 0x2310), chip_7042 },
  687. { } /* terminate list */
  688. };
  689. static const struct mv_hw_ops mv5xxx_ops = {
  690. .phy_errata = mv5_phy_errata,
  691. .enable_leds = mv5_enable_leds,
  692. .read_preamp = mv5_read_preamp,
  693. .reset_hc = mv5_reset_hc,
  694. .reset_flash = mv5_reset_flash,
  695. .reset_bus = mv5_reset_bus,
  696. };
  697. static const struct mv_hw_ops mv6xxx_ops = {
  698. .phy_errata = mv6_phy_errata,
  699. .enable_leds = mv6_enable_leds,
  700. .read_preamp = mv6_read_preamp,
  701. .reset_hc = mv6_reset_hc,
  702. .reset_flash = mv6_reset_flash,
  703. .reset_bus = mv_reset_pci_bus,
  704. };
  705. static const struct mv_hw_ops mv_soc_ops = {
  706. .phy_errata = mv6_phy_errata,
  707. .enable_leds = mv_soc_enable_leds,
  708. .read_preamp = mv_soc_read_preamp,
  709. .reset_hc = mv_soc_reset_hc,
  710. .reset_flash = mv_soc_reset_flash,
  711. .reset_bus = mv_soc_reset_bus,
  712. };
  713. static const struct mv_hw_ops mv_soc_65n_ops = {
  714. .phy_errata = mv_soc_65n_phy_errata,
  715. .enable_leds = mv_soc_enable_leds,
  716. .reset_hc = mv_soc_reset_hc,
  717. .reset_flash = mv_soc_reset_flash,
  718. .reset_bus = mv_soc_reset_bus,
  719. };
  720. /*
  721. * Functions
  722. */
  723. static inline void writelfl(unsigned long data, void __iomem *addr)
  724. {
  725. writel(data, addr);
  726. (void) readl(addr); /* flush to avoid PCI posted write */
  727. }
  728. static inline unsigned int mv_hc_from_port(unsigned int port)
  729. {
  730. return port >> MV_PORT_HC_SHIFT;
  731. }
  732. static inline unsigned int mv_hardport_from_port(unsigned int port)
  733. {
  734. return port & MV_PORT_MASK;
  735. }
  736. /*
  737. * Consolidate some rather tricky bit shift calculations.
  738. * This is hot-path stuff, so not a function.
  739. * Simple code, with two return values, so macro rather than inline.
  740. *
  741. * port is the sole input, in range 0..7.
  742. * shift is one output, for use with main_irq_cause / main_irq_mask registers.
  743. * hardport is the other output, in range 0..3.
  744. *
  745. * Note that port and hardport may be the same variable in some cases.
  746. */
  747. #define MV_PORT_TO_SHIFT_AND_HARDPORT(port, shift, hardport) \
  748. { \
  749. shift = mv_hc_from_port(port) * HC_SHIFT; \
  750. hardport = mv_hardport_from_port(port); \
  751. shift += hardport * 2; \
  752. }
  753. static inline void __iomem *mv_hc_base(void __iomem *base, unsigned int hc)
  754. {
  755. return (base + SATAHC0_REG_BASE + (hc * MV_SATAHC_REG_SZ));
  756. }
  757. static inline void __iomem *mv_hc_base_from_port(void __iomem *base,
  758. unsigned int port)
  759. {
  760. return mv_hc_base(base, mv_hc_from_port(port));
  761. }
  762. static inline void __iomem *mv_port_base(void __iomem *base, unsigned int port)
  763. {
  764. return mv_hc_base_from_port(base, port) +
  765. MV_SATAHC_ARBTR_REG_SZ +
  766. (mv_hardport_from_port(port) * MV_PORT_REG_SZ);
  767. }
  768. static void __iomem *mv5_phy_base(void __iomem *mmio, unsigned int port)
  769. {
  770. void __iomem *hc_mmio = mv_hc_base_from_port(mmio, port);
  771. unsigned long ofs = (mv_hardport_from_port(port) + 1) * 0x100UL;
  772. return hc_mmio + ofs;
  773. }
  774. static inline void __iomem *mv_host_base(struct ata_host *host)
  775. {
  776. struct mv_host_priv *hpriv = host->private_data;
  777. return hpriv->base;
  778. }
  779. static inline void __iomem *mv_ap_base(struct ata_port *ap)
  780. {
  781. return mv_port_base(mv_host_base(ap->host), ap->port_no);
  782. }
  783. static inline int mv_get_hc_count(unsigned long port_flags)
  784. {
  785. return ((port_flags & MV_FLAG_DUAL_HC) ? 2 : 1);
  786. }
  787. /**
  788. * mv_save_cached_regs - (re-)initialize cached port registers
  789. * @ap: the port whose registers we are caching
  790. *
  791. * Initialize the local cache of port registers,
  792. * so that reading them over and over again can
  793. * be avoided on the hotter paths of this driver.
  794. * This saves a few microseconds each time we switch
  795. * to/from EDMA mode to perform (eg.) a drive cache flush.
  796. */
  797. static void mv_save_cached_regs(struct ata_port *ap)
  798. {
  799. void __iomem *port_mmio = mv_ap_base(ap);
  800. struct mv_port_priv *pp = ap->private_data;
  801. pp->cached.fiscfg = readl(port_mmio + FISCFG);
  802. pp->cached.ltmode = readl(port_mmio + LTMODE);
  803. pp->cached.haltcond = readl(port_mmio + EDMA_HALTCOND);
  804. pp->cached.unknown_rsvd = readl(port_mmio + EDMA_UNKNOWN_RSVD);
  805. }
  806. /**
  807. * mv_write_cached_reg - write to a cached port register
  808. * @addr: hardware address of the register
  809. * @old: pointer to cached value of the register
  810. * @new: new value for the register
  811. *
  812. * Write a new value to a cached register,
  813. * but only if the value is different from before.
  814. */
  815. static inline void mv_write_cached_reg(void __iomem *addr, u32 *old, u32 new)
  816. {
  817. if (new != *old) {
  818. unsigned long laddr;
  819. *old = new;
  820. /*
  821. * Workaround for 88SX60x1-B2 FEr SATA#13:
  822. * Read-after-write is needed to prevent generating 64-bit
  823. * write cycles on the PCI bus for SATA interface registers
  824. * at offsets ending in 0x4 or 0xc.
  825. *
  826. * Looks like a lot of fuss, but it avoids an unnecessary
  827. * +1 usec read-after-write delay for unaffected registers.
  828. */
  829. laddr = (long)addr & 0xffff;
  830. if (laddr >= 0x300 && laddr <= 0x33c) {
  831. laddr &= 0x000f;
  832. if (laddr == 0x4 || laddr == 0xc) {
  833. writelfl(new, addr); /* read after write */
  834. return;
  835. }
  836. }
  837. writel(new, addr); /* unaffected by the errata */
  838. }
  839. }
  840. static void mv_set_edma_ptrs(void __iomem *port_mmio,
  841. struct mv_host_priv *hpriv,
  842. struct mv_port_priv *pp)
  843. {
  844. u32 index;
  845. /*
  846. * initialize request queue
  847. */
  848. pp->req_idx &= MV_MAX_Q_DEPTH_MASK; /* paranoia */
  849. index = pp->req_idx << EDMA_REQ_Q_PTR_SHIFT;
  850. WARN_ON(pp->crqb_dma & 0x3ff);
  851. writel((pp->crqb_dma >> 16) >> 16, port_mmio + EDMA_REQ_Q_BASE_HI);
  852. writelfl((pp->crqb_dma & EDMA_REQ_Q_BASE_LO_MASK) | index,
  853. port_mmio + EDMA_REQ_Q_IN_PTR);
  854. writelfl(index, port_mmio + EDMA_REQ_Q_OUT_PTR);
  855. /*
  856. * initialize response queue
  857. */
  858. pp->resp_idx &= MV_MAX_Q_DEPTH_MASK; /* paranoia */
  859. index = pp->resp_idx << EDMA_RSP_Q_PTR_SHIFT;
  860. WARN_ON(pp->crpb_dma & 0xff);
  861. writel((pp->crpb_dma >> 16) >> 16, port_mmio + EDMA_RSP_Q_BASE_HI);
  862. writelfl(index, port_mmio + EDMA_RSP_Q_IN_PTR);
  863. writelfl((pp->crpb_dma & EDMA_RSP_Q_BASE_LO_MASK) | index,
  864. port_mmio + EDMA_RSP_Q_OUT_PTR);
  865. }
  866. static void mv_write_main_irq_mask(u32 mask, struct mv_host_priv *hpriv)
  867. {
  868. /*
  869. * When writing to the main_irq_mask in hardware,
  870. * we must ensure exclusivity between the interrupt coalescing bits
  871. * and the corresponding individual port DONE_IRQ bits.
  872. *
  873. * Note that this register is really an "IRQ enable" register,
  874. * not an "IRQ mask" register as Marvell's naming might suggest.
  875. */
  876. if (mask & (ALL_PORTS_COAL_DONE | PORTS_0_3_COAL_DONE))
  877. mask &= ~DONE_IRQ_0_3;
  878. if (mask & (ALL_PORTS_COAL_DONE | PORTS_4_7_COAL_DONE))
  879. mask &= ~DONE_IRQ_4_7;
  880. writelfl(mask, hpriv->main_irq_mask_addr);
  881. }
  882. static void mv_set_main_irq_mask(struct ata_host *host,
  883. u32 disable_bits, u32 enable_bits)
  884. {
  885. struct mv_host_priv *hpriv = host->private_data;
  886. u32 old_mask, new_mask;
  887. old_mask = hpriv->main_irq_mask;
  888. new_mask = (old_mask & ~disable_bits) | enable_bits;
  889. if (new_mask != old_mask) {
  890. hpriv->main_irq_mask = new_mask;
  891. mv_write_main_irq_mask(new_mask, hpriv);
  892. }
  893. }
  894. static void mv_enable_port_irqs(struct ata_port *ap,
  895. unsigned int port_bits)
  896. {
  897. unsigned int shift, hardport, port = ap->port_no;
  898. u32 disable_bits, enable_bits;
  899. MV_PORT_TO_SHIFT_AND_HARDPORT(port, shift, hardport);
  900. disable_bits = (DONE_IRQ | ERR_IRQ) << shift;
  901. enable_bits = port_bits << shift;
  902. mv_set_main_irq_mask(ap->host, disable_bits, enable_bits);
  903. }
  904. static void mv_clear_and_enable_port_irqs(struct ata_port *ap,
  905. void __iomem *port_mmio,
  906. unsigned int port_irqs)
  907. {
  908. struct mv_host_priv *hpriv = ap->host->private_data;
  909. int hardport = mv_hardport_from_port(ap->port_no);
  910. void __iomem *hc_mmio = mv_hc_base_from_port(
  911. mv_host_base(ap->host), ap->port_no);
  912. u32 hc_irq_cause;
  913. /* clear EDMA event indicators, if any */
  914. writelfl(0, port_mmio + EDMA_ERR_IRQ_CAUSE);
  915. /* clear pending irq events */
  916. hc_irq_cause = ~((DEV_IRQ | DMA_IRQ) << hardport);
  917. writelfl(hc_irq_cause, hc_mmio + HC_IRQ_CAUSE);
  918. /* clear FIS IRQ Cause */
  919. if (IS_GEN_IIE(hpriv))
  920. writelfl(0, port_mmio + FIS_IRQ_CAUSE);
  921. mv_enable_port_irqs(ap, port_irqs);
  922. }
  923. static void mv_set_irq_coalescing(struct ata_host *host,
  924. unsigned int count, unsigned int usecs)
  925. {
  926. struct mv_host_priv *hpriv = host->private_data;
  927. void __iomem *mmio = hpriv->base, *hc_mmio;
  928. u32 coal_enable = 0;
  929. unsigned long flags;
  930. unsigned int clks, is_dual_hc = hpriv->n_ports > MV_PORTS_PER_HC;
  931. const u32 coal_disable = PORTS_0_3_COAL_DONE | PORTS_4_7_COAL_DONE |
  932. ALL_PORTS_COAL_DONE;
  933. /* Disable IRQ coalescing if either threshold is zero */
  934. if (!usecs || !count) {
  935. clks = count = 0;
  936. } else {
  937. /* Respect maximum limits of the hardware */
  938. clks = usecs * COAL_CLOCKS_PER_USEC;
  939. if (clks > MAX_COAL_TIME_THRESHOLD)
  940. clks = MAX_COAL_TIME_THRESHOLD;
  941. if (count > MAX_COAL_IO_COUNT)
  942. count = MAX_COAL_IO_COUNT;
  943. }
  944. spin_lock_irqsave(&host->lock, flags);
  945. mv_set_main_irq_mask(host, coal_disable, 0);
  946. if (is_dual_hc && !IS_GEN_I(hpriv)) {
  947. /*
  948. * GEN_II/GEN_IIE with dual host controllers:
  949. * one set of global thresholds for the entire chip.
  950. */
  951. writel(clks, mmio + IRQ_COAL_TIME_THRESHOLD);
  952. writel(count, mmio + IRQ_COAL_IO_THRESHOLD);
  953. /* clear leftover coal IRQ bit */
  954. writel(~ALL_PORTS_COAL_IRQ, mmio + IRQ_COAL_CAUSE);
  955. if (count)
  956. coal_enable = ALL_PORTS_COAL_DONE;
  957. clks = count = 0; /* force clearing of regular regs below */
  958. }
  959. /*
  960. * All chips: independent thresholds for each HC on the chip.
  961. */
  962. hc_mmio = mv_hc_base_from_port(mmio, 0);
  963. writel(clks, hc_mmio + HC_IRQ_COAL_TIME_THRESHOLD);
  964. writel(count, hc_mmio + HC_IRQ_COAL_IO_THRESHOLD);
  965. writel(~HC_COAL_IRQ, hc_mmio + HC_IRQ_CAUSE);
  966. if (count)
  967. coal_enable |= PORTS_0_3_COAL_DONE;
  968. if (is_dual_hc) {
  969. hc_mmio = mv_hc_base_from_port(mmio, MV_PORTS_PER_HC);
  970. writel(clks, hc_mmio + HC_IRQ_COAL_TIME_THRESHOLD);
  971. writel(count, hc_mmio + HC_IRQ_COAL_IO_THRESHOLD);
  972. writel(~HC_COAL_IRQ, hc_mmio + HC_IRQ_CAUSE);
  973. if (count)
  974. coal_enable |= PORTS_4_7_COAL_DONE;
  975. }
  976. mv_set_main_irq_mask(host, 0, coal_enable);
  977. spin_unlock_irqrestore(&host->lock, flags);
  978. }
  979. /**
  980. * mv_start_edma - Enable eDMA engine
  981. * @base: port base address
  982. * @pp: port private data
  983. *
  984. * Verify the local cache of the eDMA state is accurate with a
  985. * WARN_ON.
  986. *
  987. * LOCKING:
  988. * Inherited from caller.
  989. */
  990. static void mv_start_edma(struct ata_port *ap, void __iomem *port_mmio,
  991. struct mv_port_priv *pp, u8 protocol)
  992. {
  993. int want_ncq = (protocol == ATA_PROT_NCQ);
  994. if (pp->pp_flags & MV_PP_FLAG_EDMA_EN) {
  995. int using_ncq = ((pp->pp_flags & MV_PP_FLAG_NCQ_EN) != 0);
  996. if (want_ncq != using_ncq)
  997. mv_stop_edma(ap);
  998. }
  999. if (!(pp->pp_flags & MV_PP_FLAG_EDMA_EN)) {
  1000. struct mv_host_priv *hpriv = ap->host->private_data;
  1001. mv_edma_cfg(ap, want_ncq, 1);
  1002. mv_set_edma_ptrs(port_mmio, hpriv, pp);
  1003. mv_clear_and_enable_port_irqs(ap, port_mmio, DONE_IRQ|ERR_IRQ);
  1004. writelfl(EDMA_EN, port_mmio + EDMA_CMD);
  1005. pp->pp_flags |= MV_PP_FLAG_EDMA_EN;
  1006. }
  1007. }
  1008. static void mv_wait_for_edma_empty_idle(struct ata_port *ap)
  1009. {
  1010. void __iomem *port_mmio = mv_ap_base(ap);
  1011. const u32 empty_idle = (EDMA_STATUS_CACHE_EMPTY | EDMA_STATUS_IDLE);
  1012. const int per_loop = 5, timeout = (15 * 1000 / per_loop);
  1013. int i;
  1014. /*
  1015. * Wait for the EDMA engine to finish transactions in progress.
  1016. * No idea what a good "timeout" value might be, but measurements
  1017. * indicate that it often requires hundreds of microseconds
  1018. * with two drives in-use. So we use the 15msec value above
  1019. * as a rough guess at what even more drives might require.
  1020. */
  1021. for (i = 0; i < timeout; ++i) {
  1022. u32 edma_stat = readl(port_mmio + EDMA_STATUS);
  1023. if ((edma_stat & empty_idle) == empty_idle)
  1024. break;
  1025. udelay(per_loop);
  1026. }
  1027. /* ata_port_printk(ap, KERN_INFO, "%s: %u+ usecs\n", __func__, i); */
  1028. }
  1029. /**
  1030. * mv_stop_edma_engine - Disable eDMA engine
  1031. * @port_mmio: io base address
  1032. *
  1033. * LOCKING:
  1034. * Inherited from caller.
  1035. */
  1036. static int mv_stop_edma_engine(void __iomem *port_mmio)
  1037. {
  1038. int i;
  1039. /* Disable eDMA. The disable bit auto clears. */
  1040. writelfl(EDMA_DS, port_mmio + EDMA_CMD);
  1041. /* Wait for the chip to confirm eDMA is off. */
  1042. for (i = 10000; i > 0; i--) {
  1043. u32 reg = readl(port_mmio + EDMA_CMD);
  1044. if (!(reg & EDMA_EN))
  1045. return 0;
  1046. udelay(10);
  1047. }
  1048. return -EIO;
  1049. }
  1050. static int mv_stop_edma(struct ata_port *ap)
  1051. {
  1052. void __iomem *port_mmio = mv_ap_base(ap);
  1053. struct mv_port_priv *pp = ap->private_data;
  1054. int err = 0;
  1055. if (!(pp->pp_flags & MV_PP_FLAG_EDMA_EN))
  1056. return 0;
  1057. pp->pp_flags &= ~MV_PP_FLAG_EDMA_EN;
  1058. mv_wait_for_edma_empty_idle(ap);
  1059. if (mv_stop_edma_engine(port_mmio)) {
  1060. ata_port_printk(ap, KERN_ERR, "Unable to stop eDMA\n");
  1061. err = -EIO;
  1062. }
  1063. mv_edma_cfg(ap, 0, 0);
  1064. return err;
  1065. }
  1066. #ifdef ATA_DEBUG
  1067. static void mv_dump_mem(void __iomem *start, unsigned bytes)
  1068. {
  1069. int b, w;
  1070. for (b = 0; b < bytes; ) {
  1071. DPRINTK("%p: ", start + b);
  1072. for (w = 0; b < bytes && w < 4; w++) {
  1073. printk("%08x ", readl(start + b));
  1074. b += sizeof(u32);
  1075. }
  1076. printk("\n");
  1077. }
  1078. }
  1079. #endif
  1080. static void mv_dump_pci_cfg(struct pci_dev *pdev, unsigned bytes)
  1081. {
  1082. #ifdef ATA_DEBUG
  1083. int b, w;
  1084. u32 dw;
  1085. for (b = 0; b < bytes; ) {
  1086. DPRINTK("%02x: ", b);
  1087. for (w = 0; b < bytes && w < 4; w++) {
  1088. (void) pci_read_config_dword(pdev, b, &dw);
  1089. printk("%08x ", dw);
  1090. b += sizeof(u32);
  1091. }
  1092. printk("\n");
  1093. }
  1094. #endif
  1095. }
  1096. static void mv_dump_all_regs(void __iomem *mmio_base, int port,
  1097. struct pci_dev *pdev)
  1098. {
  1099. #ifdef ATA_DEBUG
  1100. void __iomem *hc_base = mv_hc_base(mmio_base,
  1101. port >> MV_PORT_HC_SHIFT);
  1102. void __iomem *port_base;
  1103. int start_port, num_ports, p, start_hc, num_hcs, hc;
  1104. if (0 > port) {
  1105. start_hc = start_port = 0;
  1106. num_ports = 8; /* shld be benign for 4 port devs */
  1107. num_hcs = 2;
  1108. } else {
  1109. start_hc = port >> MV_PORT_HC_SHIFT;
  1110. start_port = port;
  1111. num_ports = num_hcs = 1;
  1112. }
  1113. DPRINTK("All registers for port(s) %u-%u:\n", start_port,
  1114. num_ports > 1 ? num_ports - 1 : start_port);
  1115. if (NULL != pdev) {
  1116. DPRINTK("PCI config space regs:\n");
  1117. mv_dump_pci_cfg(pdev, 0x68);
  1118. }
  1119. DPRINTK("PCI regs:\n");
  1120. mv_dump_mem(mmio_base+0xc00, 0x3c);
  1121. mv_dump_mem(mmio_base+0xd00, 0x34);
  1122. mv_dump_mem(mmio_base+0xf00, 0x4);
  1123. mv_dump_mem(mmio_base+0x1d00, 0x6c);
  1124. for (hc = start_hc; hc < start_hc + num_hcs; hc++) {
  1125. hc_base = mv_hc_base(mmio_base, hc);
  1126. DPRINTK("HC regs (HC %i):\n", hc);
  1127. mv_dump_mem(hc_base, 0x1c);
  1128. }
  1129. for (p = start_port; p < start_port + num_ports; p++) {
  1130. port_base = mv_port_base(mmio_base, p);
  1131. DPRINTK("EDMA regs (port %i):\n", p);
  1132. mv_dump_mem(port_base, 0x54);
  1133. DPRINTK("SATA regs (port %i):\n", p);
  1134. mv_dump_mem(port_base+0x300, 0x60);
  1135. }
  1136. #endif
  1137. }
  1138. static unsigned int mv_scr_offset(unsigned int sc_reg_in)
  1139. {
  1140. unsigned int ofs;
  1141. switch (sc_reg_in) {
  1142. case SCR_STATUS:
  1143. case SCR_CONTROL:
  1144. case SCR_ERROR:
  1145. ofs = SATA_STATUS + (sc_reg_in * sizeof(u32));
  1146. break;
  1147. case SCR_ACTIVE:
  1148. ofs = SATA_ACTIVE; /* active is not with the others */
  1149. break;
  1150. default:
  1151. ofs = 0xffffffffU;
  1152. break;
  1153. }
  1154. return ofs;
  1155. }
  1156. static int mv_scr_read(struct ata_link *link, unsigned int sc_reg_in, u32 *val)
  1157. {
  1158. unsigned int ofs = mv_scr_offset(sc_reg_in);
  1159. if (ofs != 0xffffffffU) {
  1160. *val = readl(mv_ap_base(link->ap) + ofs);
  1161. return 0;
  1162. } else
  1163. return -EINVAL;
  1164. }
  1165. static int mv_scr_write(struct ata_link *link, unsigned int sc_reg_in, u32 val)
  1166. {
  1167. unsigned int ofs = mv_scr_offset(sc_reg_in);
  1168. if (ofs != 0xffffffffU) {
  1169. void __iomem *addr = mv_ap_base(link->ap) + ofs;
  1170. if (sc_reg_in == SCR_CONTROL) {
  1171. /*
  1172. * Workaround for 88SX60x1 FEr SATA#26:
  1173. *
  1174. * COMRESETs have to take care not to accidently
  1175. * put the drive to sleep when writing SCR_CONTROL.
  1176. * Setting bits 12..15 prevents this problem.
  1177. *
  1178. * So if we see an outbound COMMRESET, set those bits.
  1179. * Ditto for the followup write that clears the reset.
  1180. *
  1181. * The proprietary driver does this for
  1182. * all chip versions, and so do we.
  1183. */
  1184. if ((val & 0xf) == 1 || (readl(addr) & 0xf) == 1)
  1185. val |= 0xf000;
  1186. }
  1187. writelfl(val, addr);
  1188. return 0;
  1189. } else
  1190. return -EINVAL;
  1191. }
  1192. static void mv6_dev_config(struct ata_device *adev)
  1193. {
  1194. /*
  1195. * Deal with Gen-II ("mv6") hardware quirks/restrictions:
  1196. *
  1197. * Gen-II does not support NCQ over a port multiplier
  1198. * (no FIS-based switching).
  1199. */
  1200. if (adev->flags & ATA_DFLAG_NCQ) {
  1201. if (sata_pmp_attached(adev->link->ap)) {
  1202. adev->flags &= ~ATA_DFLAG_NCQ;
  1203. ata_dev_printk(adev, KERN_INFO,
  1204. "NCQ disabled for command-based switching\n");
  1205. }
  1206. }
  1207. }
  1208. static int mv_qc_defer(struct ata_queued_cmd *qc)
  1209. {
  1210. struct ata_link *link = qc->dev->link;
  1211. struct ata_port *ap = link->ap;
  1212. struct mv_port_priv *pp = ap->private_data;
  1213. /*
  1214. * Don't allow new commands if we're in a delayed EH state
  1215. * for NCQ and/or FIS-based switching.
  1216. */
  1217. if (pp->pp_flags & MV_PP_FLAG_DELAYED_EH)
  1218. return ATA_DEFER_PORT;
  1219. /* PIO commands need exclusive link: no other commands [DMA or PIO]
  1220. * can run concurrently.
  1221. * set excl_link when we want to send a PIO command in DMA mode
  1222. * or a non-NCQ command in NCQ mode.
  1223. * When we receive a command from that link, and there are no
  1224. * outstanding commands, mark a flag to clear excl_link and let
  1225. * the command go through.
  1226. */
  1227. if (unlikely(ap->excl_link)) {
  1228. if (link == ap->excl_link) {
  1229. if (ap->nr_active_links)
  1230. return ATA_DEFER_PORT;
  1231. qc->flags |= ATA_QCFLAG_CLEAR_EXCL;
  1232. return 0;
  1233. } else
  1234. return ATA_DEFER_PORT;
  1235. }
  1236. /*
  1237. * If the port is completely idle, then allow the new qc.
  1238. */
  1239. if (ap->nr_active_links == 0)
  1240. return 0;
  1241. /*
  1242. * The port is operating in host queuing mode (EDMA) with NCQ
  1243. * enabled, allow multiple NCQ commands. EDMA also allows
  1244. * queueing multiple DMA commands but libata core currently
  1245. * doesn't allow it.
  1246. */
  1247. if ((pp->pp_flags & MV_PP_FLAG_EDMA_EN) &&
  1248. (pp->pp_flags & MV_PP_FLAG_NCQ_EN)) {
  1249. if (ata_is_ncq(qc->tf.protocol))
  1250. return 0;
  1251. else {
  1252. ap->excl_link = link;
  1253. return ATA_DEFER_PORT;
  1254. }
  1255. }
  1256. return ATA_DEFER_PORT;
  1257. }
  1258. static void mv_config_fbs(struct ata_port *ap, int want_ncq, int want_fbs)
  1259. {
  1260. struct mv_port_priv *pp = ap->private_data;
  1261. void __iomem *port_mmio;
  1262. u32 fiscfg, *old_fiscfg = &pp->cached.fiscfg;
  1263. u32 ltmode, *old_ltmode = &pp->cached.ltmode;
  1264. u32 haltcond, *old_haltcond = &pp->cached.haltcond;
  1265. ltmode = *old_ltmode & ~LTMODE_BIT8;
  1266. haltcond = *old_haltcond | EDMA_ERR_DEV;
  1267. if (want_fbs) {
  1268. fiscfg = *old_fiscfg | FISCFG_SINGLE_SYNC;
  1269. ltmode = *old_ltmode | LTMODE_BIT8;
  1270. if (want_ncq)
  1271. haltcond &= ~EDMA_ERR_DEV;
  1272. else
  1273. fiscfg |= FISCFG_WAIT_DEV_ERR;
  1274. } else {
  1275. fiscfg = *old_fiscfg & ~(FISCFG_SINGLE_SYNC | FISCFG_WAIT_DEV_ERR);
  1276. }
  1277. port_mmio = mv_ap_base(ap);
  1278. mv_write_cached_reg(port_mmio + FISCFG, old_fiscfg, fiscfg);
  1279. mv_write_cached_reg(port_mmio + LTMODE, old_ltmode, ltmode);
  1280. mv_write_cached_reg(port_mmio + EDMA_HALTCOND, old_haltcond, haltcond);
  1281. }
  1282. static void mv_60x1_errata_sata25(struct ata_port *ap, int want_ncq)
  1283. {
  1284. struct mv_host_priv *hpriv = ap->host->private_data;
  1285. u32 old, new;
  1286. /* workaround for 88SX60x1 FEr SATA#25 (part 1) */
  1287. old = readl(hpriv->base + GPIO_PORT_CTL);
  1288. if (want_ncq)
  1289. new = old | (1 << 22);
  1290. else
  1291. new = old & ~(1 << 22);
  1292. if (new != old)
  1293. writel(new, hpriv->base + GPIO_PORT_CTL);
  1294. }
  1295. /**
  1296. * mv_bmdma_enable - set a magic bit on GEN_IIE to allow bmdma
  1297. * @ap: Port being initialized
  1298. *
  1299. * There are two DMA modes on these chips: basic DMA, and EDMA.
  1300. *
  1301. * Bit-0 of the "EDMA RESERVED" register enables/disables use
  1302. * of basic DMA on the GEN_IIE versions of the chips.
  1303. *
  1304. * This bit survives EDMA resets, and must be set for basic DMA
  1305. * to function, and should be cleared when EDMA is active.
  1306. */
  1307. static void mv_bmdma_enable_iie(struct ata_port *ap, int enable_bmdma)
  1308. {
  1309. struct mv_port_priv *pp = ap->private_data;
  1310. u32 new, *old = &pp->cached.unknown_rsvd;
  1311. if (enable_bmdma)
  1312. new = *old | 1;
  1313. else
  1314. new = *old & ~1;
  1315. mv_write_cached_reg(mv_ap_base(ap) + EDMA_UNKNOWN_RSVD, old, new);
  1316. }
  1317. /*
  1318. * SOC chips have an issue whereby the HDD LEDs don't always blink
  1319. * during I/O when NCQ is enabled. Enabling a special "LED blink" mode
  1320. * of the SOC takes care of it, generating a steady blink rate when
  1321. * any drive on the chip is active.
  1322. *
  1323. * Unfortunately, the blink mode is a global hardware setting for the SOC,
  1324. * so we must use it whenever at least one port on the SOC has NCQ enabled.
  1325. *
  1326. * We turn "LED blink" off when NCQ is not in use anywhere, because the normal
  1327. * LED operation works then, and provides better (more accurate) feedback.
  1328. *
  1329. * Note that this code assumes that an SOC never has more than one HC onboard.
  1330. */
  1331. static void mv_soc_led_blink_enable(struct ata_port *ap)
  1332. {
  1333. struct ata_host *host = ap->host;
  1334. struct mv_host_priv *hpriv = host->private_data;
  1335. void __iomem *hc_mmio;
  1336. u32 led_ctrl;
  1337. if (hpriv->hp_flags & MV_HP_QUIRK_LED_BLINK_EN)
  1338. return;
  1339. hpriv->hp_flags |= MV_HP_QUIRK_LED_BLINK_EN;
  1340. hc_mmio = mv_hc_base_from_port(mv_host_base(host), ap->port_no);
  1341. led_ctrl = readl(hc_mmio + SOC_LED_CTRL);
  1342. writel(led_ctrl | SOC_LED_CTRL_BLINK, hc_mmio + SOC_LED_CTRL);
  1343. }
  1344. static void mv_soc_led_blink_disable(struct ata_port *ap)
  1345. {
  1346. struct ata_host *host = ap->host;
  1347. struct mv_host_priv *hpriv = host->private_data;
  1348. void __iomem *hc_mmio;
  1349. u32 led_ctrl;
  1350. unsigned int port;
  1351. if (!(hpriv->hp_flags & MV_HP_QUIRK_LED_BLINK_EN))
  1352. return;
  1353. /* disable led-blink only if no ports are using NCQ */
  1354. for (port = 0; port < hpriv->n_ports; port++) {
  1355. struct ata_port *this_ap = host->ports[port];
  1356. struct mv_port_priv *pp = this_ap->private_data;
  1357. if (pp->pp_flags & MV_PP_FLAG_NCQ_EN)
  1358. return;
  1359. }
  1360. hpriv->hp_flags &= ~MV_HP_QUIRK_LED_BLINK_EN;
  1361. hc_mmio = mv_hc_base_from_port(mv_host_base(host), ap->port_no);
  1362. led_ctrl = readl(hc_mmio + SOC_LED_CTRL);
  1363. writel(led_ctrl & ~SOC_LED_CTRL_BLINK, hc_mmio + SOC_LED_CTRL);
  1364. }
  1365. static void mv_edma_cfg(struct ata_port *ap, int want_ncq, int want_edma)
  1366. {
  1367. u32 cfg;
  1368. struct mv_port_priv *pp = ap->private_data;
  1369. struct mv_host_priv *hpriv = ap->host->private_data;
  1370. void __iomem *port_mmio = mv_ap_base(ap);
  1371. /* set up non-NCQ EDMA configuration */
  1372. cfg = EDMA_CFG_Q_DEPTH; /* always 0x1f for *all* chips */
  1373. pp->pp_flags &=
  1374. ~(MV_PP_FLAG_FBS_EN | MV_PP_FLAG_NCQ_EN | MV_PP_FLAG_FAKE_ATA_BUSY);
  1375. if (IS_GEN_I(hpriv))
  1376. cfg |= (1 << 8); /* enab config burst size mask */
  1377. else if (IS_GEN_II(hpriv)) {
  1378. cfg |= EDMA_CFG_RD_BRST_EXT | EDMA_CFG_WR_BUFF_LEN;
  1379. mv_60x1_errata_sata25(ap, want_ncq);
  1380. } else if (IS_GEN_IIE(hpriv)) {
  1381. int want_fbs = sata_pmp_attached(ap);
  1382. /*
  1383. * Possible future enhancement:
  1384. *
  1385. * The chip can use FBS with non-NCQ, if we allow it,
  1386. * But first we need to have the error handling in place
  1387. * for this mode (datasheet section 7.3.15.4.2.3).
  1388. * So disallow non-NCQ FBS for now.
  1389. */
  1390. want_fbs &= want_ncq;
  1391. mv_config_fbs(ap, want_ncq, want_fbs);
  1392. if (want_fbs) {
  1393. pp->pp_flags |= MV_PP_FLAG_FBS_EN;
  1394. cfg |= EDMA_CFG_EDMA_FBS; /* FIS-based switching */
  1395. }
  1396. cfg |= (1 << 23); /* do not mask PM field in rx'd FIS */
  1397. if (want_edma) {
  1398. cfg |= (1 << 22); /* enab 4-entry host queue cache */
  1399. if (!IS_SOC(hpriv))
  1400. cfg |= (1 << 18); /* enab early completion */
  1401. }
  1402. if (hpriv->hp_flags & MV_HP_CUT_THROUGH)
  1403. cfg |= (1 << 17); /* enab cut-thru (dis stor&forwrd) */
  1404. mv_bmdma_enable_iie(ap, !want_edma);
  1405. if (IS_SOC(hpriv)) {
  1406. if (want_ncq)
  1407. mv_soc_led_blink_enable(ap);
  1408. else
  1409. mv_soc_led_blink_disable(ap);
  1410. }
  1411. }
  1412. if (want_ncq) {
  1413. cfg |= EDMA_CFG_NCQ;
  1414. pp->pp_flags |= MV_PP_FLAG_NCQ_EN;
  1415. }
  1416. writelfl(cfg, port_mmio + EDMA_CFG);
  1417. }
  1418. static void mv_port_free_dma_mem(struct ata_port *ap)
  1419. {
  1420. struct mv_host_priv *hpriv = ap->host->private_data;
  1421. struct mv_port_priv *pp = ap->private_data;
  1422. int tag;
  1423. if (pp->crqb) {
  1424. dma_pool_free(hpriv->crqb_pool, pp->crqb, pp->crqb_dma);
  1425. pp->crqb = NULL;
  1426. }
  1427. if (pp->crpb) {
  1428. dma_pool_free(hpriv->crpb_pool, pp->crpb, pp->crpb_dma);
  1429. pp->crpb = NULL;
  1430. }
  1431. /*
  1432. * For GEN_I, there's no NCQ, so we have only a single sg_tbl.
  1433. * For later hardware, we have one unique sg_tbl per NCQ tag.
  1434. */
  1435. for (tag = 0; tag < MV_MAX_Q_DEPTH; ++tag) {
  1436. if (pp->sg_tbl[tag]) {
  1437. if (tag == 0 || !IS_GEN_I(hpriv))
  1438. dma_pool_free(hpriv->sg_tbl_pool,
  1439. pp->sg_tbl[tag],
  1440. pp->sg_tbl_dma[tag]);
  1441. pp->sg_tbl[tag] = NULL;
  1442. }
  1443. }
  1444. }
  1445. /**
  1446. * mv_port_start - Port specific init/start routine.
  1447. * @ap: ATA channel to manipulate
  1448. *
  1449. * Allocate and point to DMA memory, init port private memory,
  1450. * zero indices.
  1451. *
  1452. * LOCKING:
  1453. * Inherited from caller.
  1454. */
  1455. static int mv_port_start(struct ata_port *ap)
  1456. {
  1457. struct device *dev = ap->host->dev;
  1458. struct mv_host_priv *hpriv = ap->host->private_data;
  1459. struct mv_port_priv *pp;
  1460. unsigned long flags;
  1461. int tag;
  1462. pp = devm_kzalloc(dev, sizeof(*pp), GFP_KERNEL);
  1463. if (!pp)
  1464. return -ENOMEM;
  1465. ap->private_data = pp;
  1466. pp->crqb = dma_pool_alloc(hpriv->crqb_pool, GFP_KERNEL, &pp->crqb_dma);
  1467. if (!pp->crqb)
  1468. return -ENOMEM;
  1469. memset(pp->crqb, 0, MV_CRQB_Q_SZ);
  1470. pp->crpb = dma_pool_alloc(hpriv->crpb_pool, GFP_KERNEL, &pp->crpb_dma);
  1471. if (!pp->crpb)
  1472. goto out_port_free_dma_mem;
  1473. memset(pp->crpb, 0, MV_CRPB_Q_SZ);
  1474. /* 6041/6081 Rev. "C0" (and newer) are okay with async notify */
  1475. if (hpriv->hp_flags & MV_HP_ERRATA_60X1C0)
  1476. ap->flags |= ATA_FLAG_AN;
  1477. /*
  1478. * For GEN_I, there's no NCQ, so we only allocate a single sg_tbl.
  1479. * For later hardware, we need one unique sg_tbl per NCQ tag.
  1480. */
  1481. for (tag = 0; tag < MV_MAX_Q_DEPTH; ++tag) {
  1482. if (tag == 0 || !IS_GEN_I(hpriv)) {
  1483. pp->sg_tbl[tag] = dma_pool_alloc(hpriv->sg_tbl_pool,
  1484. GFP_KERNEL, &pp->sg_tbl_dma[tag]);
  1485. if (!pp->sg_tbl[tag])
  1486. goto out_port_free_dma_mem;
  1487. } else {
  1488. pp->sg_tbl[tag] = pp->sg_tbl[0];
  1489. pp->sg_tbl_dma[tag] = pp->sg_tbl_dma[0];
  1490. }
  1491. }
  1492. spin_lock_irqsave(ap->lock, flags);
  1493. mv_save_cached_regs(ap);
  1494. mv_edma_cfg(ap, 0, 0);
  1495. spin_unlock_irqrestore(ap->lock, flags);
  1496. return 0;
  1497. out_port_free_dma_mem:
  1498. mv_port_free_dma_mem(ap);
  1499. return -ENOMEM;
  1500. }
  1501. /**
  1502. * mv_port_stop - Port specific cleanup/stop routine.
  1503. * @ap: ATA channel to manipulate
  1504. *
  1505. * Stop DMA, cleanup port memory.
  1506. *
  1507. * LOCKING:
  1508. * This routine uses the host lock to protect the DMA stop.
  1509. */
  1510. static void mv_port_stop(struct ata_port *ap)
  1511. {
  1512. unsigned long flags;
  1513. spin_lock_irqsave(ap->lock, flags);
  1514. mv_stop_edma(ap);
  1515. mv_enable_port_irqs(ap, 0);
  1516. spin_unlock_irqrestore(ap->lock, flags);
  1517. mv_port_free_dma_mem(ap);
  1518. }
  1519. /**
  1520. * mv_fill_sg - Fill out the Marvell ePRD (scatter gather) entries
  1521. * @qc: queued command whose SG list to source from
  1522. *
  1523. * Populate the SG list and mark the last entry.
  1524. *
  1525. * LOCKING:
  1526. * Inherited from caller.
  1527. */
  1528. static void mv_fill_sg(struct ata_queued_cmd *qc)
  1529. {
  1530. struct mv_port_priv *pp = qc->ap->private_data;
  1531. struct scatterlist *sg;
  1532. struct mv_sg *mv_sg, *last_sg = NULL;
  1533. unsigned int si;
  1534. mv_sg = pp->sg_tbl[qc->tag];
  1535. for_each_sg(qc->sg, sg, qc->n_elem, si) {
  1536. dma_addr_t addr = sg_dma_address(sg);
  1537. u32 sg_len = sg_dma_len(sg);
  1538. while (sg_len) {
  1539. u32 offset = addr & 0xffff;
  1540. u32 len = sg_len;
  1541. if (offset + len > 0x10000)
  1542. len = 0x10000 - offset;
  1543. mv_sg->addr = cpu_to_le32(addr & 0xffffffff);
  1544. mv_sg->addr_hi = cpu_to_le32((addr >> 16) >> 16);
  1545. mv_sg->flags_size = cpu_to_le32(len & 0xffff);
  1546. mv_sg->reserved = 0;
  1547. sg_len -= len;
  1548. addr += len;
  1549. last_sg = mv_sg;
  1550. mv_sg++;
  1551. }
  1552. }
  1553. if (likely(last_sg))
  1554. last_sg->flags_size |= cpu_to_le32(EPRD_FLAG_END_OF_TBL);
  1555. mb(); /* ensure data structure is visible to the chipset */
  1556. }
  1557. static void mv_crqb_pack_cmd(__le16 *cmdw, u8 data, u8 addr, unsigned last)
  1558. {
  1559. u16 tmp = data | (addr << CRQB_CMD_ADDR_SHIFT) | CRQB_CMD_CS |
  1560. (last ? CRQB_CMD_LAST : 0);
  1561. *cmdw = cpu_to_le16(tmp);
  1562. }
  1563. /**
  1564. * mv_sff_irq_clear - Clear hardware interrupt after DMA.
  1565. * @ap: Port associated with this ATA transaction.
  1566. *
  1567. * We need this only for ATAPI bmdma transactions,
  1568. * as otherwise we experience spurious interrupts
  1569. * after libata-sff handles the bmdma interrupts.
  1570. */
  1571. static void mv_sff_irq_clear(struct ata_port *ap)
  1572. {
  1573. mv_clear_and_enable_port_irqs(ap, mv_ap_base(ap), ERR_IRQ);
  1574. }
  1575. /**
  1576. * mv_check_atapi_dma - Filter ATAPI cmds which are unsuitable for DMA.
  1577. * @qc: queued command to check for chipset/DMA compatibility.
  1578. *
  1579. * The bmdma engines cannot handle speculative data sizes
  1580. * (bytecount under/over flow). So only allow DMA for
  1581. * data transfer commands with known data sizes.
  1582. *
  1583. * LOCKING:
  1584. * Inherited from caller.
  1585. */
  1586. static int mv_check_atapi_dma(struct ata_queued_cmd *qc)
  1587. {
  1588. struct scsi_cmnd *scmd = qc->scsicmd;
  1589. if (scmd) {
  1590. switch (scmd->cmnd[0]) {
  1591. case READ_6:
  1592. case READ_10:
  1593. case READ_12:
  1594. case WRITE_6:
  1595. case WRITE_10:
  1596. case WRITE_12:
  1597. case GPCMD_READ_CD:
  1598. case GPCMD_SEND_DVD_STRUCTURE:
  1599. case GPCMD_SEND_CUE_SHEET:
  1600. return 0; /* DMA is safe */
  1601. }
  1602. }
  1603. return -EOPNOTSUPP; /* use PIO instead */
  1604. }
  1605. /**
  1606. * mv_bmdma_setup - Set up BMDMA transaction
  1607. * @qc: queued command to prepare DMA for.
  1608. *
  1609. * LOCKING:
  1610. * Inherited from caller.
  1611. */
  1612. static void mv_bmdma_setup(struct ata_queued_cmd *qc)
  1613. {
  1614. struct ata_port *ap = qc->ap;
  1615. void __iomem *port_mmio = mv_ap_base(ap);
  1616. struct mv_port_priv *pp = ap->private_data;
  1617. mv_fill_sg(qc);
  1618. /* clear all DMA cmd bits */
  1619. writel(0, port_mmio + BMDMA_CMD);
  1620. /* load PRD table addr. */
  1621. writel((pp->sg_tbl_dma[qc->tag] >> 16) >> 16,
  1622. port_mmio + BMDMA_PRD_HIGH);
  1623. writelfl(pp->sg_tbl_dma[qc->tag],
  1624. port_mmio + BMDMA_PRD_LOW);
  1625. /* issue r/w command */
  1626. ap->ops->sff_exec_command(ap, &qc->tf);
  1627. }
  1628. /**
  1629. * mv_bmdma_start - Start a BMDMA transaction
  1630. * @qc: queued command to start DMA on.
  1631. *
  1632. * LOCKING:
  1633. * Inherited from caller.
  1634. */
  1635. static void mv_bmdma_start(struct ata_queued_cmd *qc)
  1636. {
  1637. struct ata_port *ap = qc->ap;
  1638. void __iomem *port_mmio = mv_ap_base(ap);
  1639. unsigned int rw = (qc->tf.flags & ATA_TFLAG_WRITE);
  1640. u32 cmd = (rw ? 0 : ATA_DMA_WR) | ATA_DMA_START;
  1641. /* start host DMA transaction */
  1642. writelfl(cmd, port_mmio + BMDMA_CMD);
  1643. }
  1644. /**
  1645. * mv_bmdma_stop - Stop BMDMA transfer
  1646. * @qc: queued command to stop DMA on.
  1647. *
  1648. * Clears the ATA_DMA_START flag in the bmdma control register
  1649. *
  1650. * LOCKING:
  1651. * Inherited from caller.
  1652. */
  1653. static void mv_bmdma_stop_ap(struct ata_port *ap)
  1654. {
  1655. void __iomem *port_mmio = mv_ap_base(ap);
  1656. u32 cmd;
  1657. /* clear start/stop bit */
  1658. cmd = readl(port_mmio + BMDMA_CMD);
  1659. if (cmd & ATA_DMA_START) {
  1660. cmd &= ~ATA_DMA_START;
  1661. writelfl(cmd, port_mmio + BMDMA_CMD);
  1662. /* one-PIO-cycle guaranteed wait, per spec, for HDMA1:0 transition */
  1663. ata_sff_dma_pause(ap);
  1664. }
  1665. }
  1666. static void mv_bmdma_stop(struct ata_queued_cmd *qc)
  1667. {
  1668. mv_bmdma_stop_ap(qc->ap);
  1669. }
  1670. /**
  1671. * mv_bmdma_status - Read BMDMA status
  1672. * @ap: port for which to retrieve DMA status.
  1673. *
  1674. * Read and return equivalent of the sff BMDMA status register.
  1675. *
  1676. * LOCKING:
  1677. * Inherited from caller.
  1678. */
  1679. static u8 mv_bmdma_status(struct ata_port *ap)
  1680. {
  1681. void __iomem *port_mmio = mv_ap_base(ap);
  1682. u32 reg, status;
  1683. /*
  1684. * Other bits are valid only if ATA_DMA_ACTIVE==0,
  1685. * and the ATA_DMA_INTR bit doesn't exist.
  1686. */
  1687. reg = readl(port_mmio + BMDMA_STATUS);
  1688. if (reg & ATA_DMA_ACTIVE)
  1689. status = ATA_DMA_ACTIVE;
  1690. else if (reg & ATA_DMA_ERR)
  1691. status = (reg & ATA_DMA_ERR) | ATA_DMA_INTR;
  1692. else {
  1693. /*
  1694. * Just because DMA_ACTIVE is 0 (DMA completed),
  1695. * this does _not_ mean the device is "done".
  1696. * So we should not yet be signalling ATA_DMA_INTR
  1697. * in some cases. Eg. DSM/TRIM, and perhaps others.
  1698. */
  1699. mv_bmdma_stop_ap(ap);
  1700. if (ioread8(ap->ioaddr.altstatus_addr) & ATA_BUSY)
  1701. status = 0;
  1702. else
  1703. status = ATA_DMA_INTR;
  1704. }
  1705. return status;
  1706. }
  1707. static void mv_rw_multi_errata_sata24(struct ata_queued_cmd *qc)
  1708. {
  1709. struct ata_taskfile *tf = &qc->tf;
  1710. /*
  1711. * Workaround for 88SX60x1 FEr SATA#24.
  1712. *
  1713. * Chip may corrupt WRITEs if multi_count >= 4kB.
  1714. * Note that READs are unaffected.
  1715. *
  1716. * It's not clear if this errata really means "4K bytes",
  1717. * or if it always happens for multi_count > 7
  1718. * regardless of device sector_size.
  1719. *
  1720. * So, for safety, any write with multi_count > 7
  1721. * gets converted here into a regular PIO write instead:
  1722. */
  1723. if ((tf->flags & ATA_TFLAG_WRITE) && is_multi_taskfile(tf)) {
  1724. if (qc->dev->multi_count > 7) {
  1725. switch (tf->command) {
  1726. case ATA_CMD_WRITE_MULTI:
  1727. tf->command = ATA_CMD_PIO_WRITE;
  1728. break;
  1729. case ATA_CMD_WRITE_MULTI_FUA_EXT:
  1730. tf->flags &= ~ATA_TFLAG_FUA; /* ugh */
  1731. /* fall through */
  1732. case ATA_CMD_WRITE_MULTI_EXT:
  1733. tf->command = ATA_CMD_PIO_WRITE_EXT;
  1734. break;
  1735. }
  1736. }
  1737. }
  1738. }
  1739. /**
  1740. * mv_qc_prep - Host specific command preparation.
  1741. * @qc: queued command to prepare
  1742. *
  1743. * This routine simply redirects to the general purpose routine
  1744. * if command is not DMA. Else, it handles prep of the CRQB
  1745. * (command request block), does some sanity checking, and calls
  1746. * the SG load routine.
  1747. *
  1748. * LOCKING:
  1749. * Inherited from caller.
  1750. */
  1751. static void mv_qc_prep(struct ata_queued_cmd *qc)
  1752. {
  1753. struct ata_port *ap = qc->ap;
  1754. struct mv_port_priv *pp = ap->private_data;
  1755. __le16 *cw;
  1756. struct ata_taskfile *tf = &qc->tf;
  1757. u16 flags = 0;
  1758. unsigned in_index;
  1759. switch (tf->protocol) {
  1760. case ATA_PROT_DMA:
  1761. if (tf->command == ATA_CMD_DSM)
  1762. return;
  1763. /* fall-thru */
  1764. case ATA_PROT_NCQ:
  1765. break; /* continue below */
  1766. case ATA_PROT_PIO:
  1767. mv_rw_multi_errata_sata24(qc);
  1768. return;
  1769. default:
  1770. return;
  1771. }
  1772. /* Fill in command request block
  1773. */
  1774. if (!(tf->flags & ATA_TFLAG_WRITE))
  1775. flags |= CRQB_FLAG_READ;
  1776. WARN_ON(MV_MAX_Q_DEPTH <= qc->tag);
  1777. flags |= qc->tag << CRQB_TAG_SHIFT;
  1778. flags |= (qc->dev->link->pmp & 0xf) << CRQB_PMP_SHIFT;
  1779. /* get current queue index from software */
  1780. in_index = pp->req_idx;
  1781. pp->crqb[in_index].sg_addr =
  1782. cpu_to_le32(pp->sg_tbl_dma[qc->tag] & 0xffffffff);
  1783. pp->crqb[in_index].sg_addr_hi =
  1784. cpu_to_le32((pp->sg_tbl_dma[qc->tag] >> 16) >> 16);
  1785. pp->crqb[in_index].ctrl_flags = cpu_to_le16(flags);
  1786. cw = &pp->crqb[in_index].ata_cmd[0];
  1787. /* Sadly, the CRQB cannot accomodate all registers--there are
  1788. * only 11 bytes...so we must pick and choose required
  1789. * registers based on the command. So, we drop feature and
  1790. * hob_feature for [RW] DMA commands, but they are needed for
  1791. * NCQ. NCQ will drop hob_nsect, which is not needed there
  1792. * (nsect is used only for the tag; feat/hob_feat hold true nsect).
  1793. */
  1794. switch (tf->command) {
  1795. case ATA_CMD_READ:
  1796. case ATA_CMD_READ_EXT:
  1797. case ATA_CMD_WRITE:
  1798. case ATA_CMD_WRITE_EXT:
  1799. case ATA_CMD_WRITE_FUA_EXT:
  1800. mv_crqb_pack_cmd(cw++, tf->hob_nsect, ATA_REG_NSECT, 0);
  1801. break;
  1802. case ATA_CMD_FPDMA_READ:
  1803. case ATA_CMD_FPDMA_WRITE:
  1804. mv_crqb_pack_cmd(cw++, tf->hob_feature, ATA_REG_FEATURE, 0);
  1805. mv_crqb_pack_cmd(cw++, tf->feature, ATA_REG_FEATURE, 0);
  1806. break;
  1807. default:
  1808. /* The only other commands EDMA supports in non-queued and
  1809. * non-NCQ mode are: [RW] STREAM DMA and W DMA FUA EXT, none
  1810. * of which are defined/used by Linux. If we get here, this
  1811. * driver needs work.
  1812. *
  1813. * FIXME: modify libata to give qc_prep a return value and
  1814. * return error here.
  1815. */
  1816. BUG_ON(tf->command);
  1817. break;
  1818. }
  1819. mv_crqb_pack_cmd(cw++, tf->nsect, ATA_REG_NSECT, 0);
  1820. mv_crqb_pack_cmd(cw++, tf->hob_lbal, ATA_REG_LBAL, 0);
  1821. mv_crqb_pack_cmd(cw++, tf->lbal, ATA_REG_LBAL, 0);
  1822. mv_crqb_pack_cmd(cw++, tf->hob_lbam, ATA_REG_LBAM, 0);
  1823. mv_crqb_pack_cmd(cw++, tf->lbam, ATA_REG_LBAM, 0);
  1824. mv_crqb_pack_cmd(cw++, tf->hob_lbah, ATA_REG_LBAH, 0);
  1825. mv_crqb_pack_cmd(cw++, tf->lbah, ATA_REG_LBAH, 0);
  1826. mv_crqb_pack_cmd(cw++, tf->device, ATA_REG_DEVICE, 0);
  1827. mv_crqb_pack_cmd(cw++, tf->command, ATA_REG_CMD, 1); /* last */
  1828. if (!(qc->flags & ATA_QCFLAG_DMAMAP))
  1829. return;
  1830. mv_fill_sg(qc);
  1831. }
  1832. /**
  1833. * mv_qc_prep_iie - Host specific command preparation.
  1834. * @qc: queued command to prepare
  1835. *
  1836. * This routine simply redirects to the general purpose routine
  1837. * if command is not DMA. Else, it handles prep of the CRQB
  1838. * (command request block), does some sanity checking, and calls
  1839. * the SG load routine.
  1840. *
  1841. * LOCKING:
  1842. * Inherited from caller.
  1843. */
  1844. static void mv_qc_prep_iie(struct ata_queued_cmd *qc)
  1845. {
  1846. struct ata_port *ap = qc->ap;
  1847. struct mv_port_priv *pp = ap->private_data;
  1848. struct mv_crqb_iie *crqb;
  1849. struct ata_taskfile *tf = &qc->tf;
  1850. unsigned in_index;
  1851. u32 flags = 0;
  1852. if ((tf->protocol != ATA_PROT_DMA) &&
  1853. (tf->protocol != ATA_PROT_NCQ))
  1854. return;
  1855. if (tf->command == ATA_CMD_DSM)
  1856. return; /* use bmdma for this */
  1857. /* Fill in Gen IIE command request block */
  1858. if (!(tf->flags & ATA_TFLAG_WRITE))
  1859. flags |= CRQB_FLAG_READ;
  1860. WARN_ON(MV_MAX_Q_DEPTH <= qc->tag);
  1861. flags |= qc->tag << CRQB_TAG_SHIFT;
  1862. flags |= qc->tag << CRQB_HOSTQ_SHIFT;
  1863. flags |= (qc->dev->link->pmp & 0xf) << CRQB_PMP_SHIFT;
  1864. /* get current queue index from software */
  1865. in_index = pp->req_idx;
  1866. crqb = (struct mv_crqb_iie *) &pp->crqb[in_index];
  1867. crqb->addr = cpu_to_le32(pp->sg_tbl_dma[qc->tag] & 0xffffffff);
  1868. crqb->addr_hi = cpu_to_le32((pp->sg_tbl_dma[qc->tag] >> 16) >> 16);
  1869. crqb->flags = cpu_to_le32(flags);
  1870. crqb->ata_cmd[0] = cpu_to_le32(
  1871. (tf->command << 16) |
  1872. (tf->feature << 24)
  1873. );
  1874. crqb->ata_cmd[1] = cpu_to_le32(
  1875. (tf->lbal << 0) |
  1876. (tf->lbam << 8) |
  1877. (tf->lbah << 16) |
  1878. (tf->device << 24)
  1879. );
  1880. crqb->ata_cmd[2] = cpu_to_le32(
  1881. (tf->hob_lbal << 0) |
  1882. (tf->hob_lbam << 8) |
  1883. (tf->hob_lbah << 16) |
  1884. (tf->hob_feature << 24)
  1885. );
  1886. crqb->ata_cmd[3] = cpu_to_le32(
  1887. (tf->nsect << 0) |
  1888. (tf->hob_nsect << 8)
  1889. );
  1890. if (!(qc->flags & ATA_QCFLAG_DMAMAP))
  1891. return;
  1892. mv_fill_sg(qc);
  1893. }
  1894. /**
  1895. * mv_sff_check_status - fetch device status, if valid
  1896. * @ap: ATA port to fetch status from
  1897. *
  1898. * When using command issue via mv_qc_issue_fis(),
  1899. * the initial ATA_BUSY state does not show up in the
  1900. * ATA status (shadow) register. This can confuse libata!
  1901. *
  1902. * So we have a hook here to fake ATA_BUSY for that situation,
  1903. * until the first time a BUSY, DRQ, or ERR bit is seen.
  1904. *
  1905. * The rest of the time, it simply returns the ATA status register.
  1906. */
  1907. static u8 mv_sff_check_status(struct ata_port *ap)
  1908. {
  1909. u8 stat = ioread8(ap->ioaddr.status_addr);
  1910. struct mv_port_priv *pp = ap->private_data;
  1911. if (pp->pp_flags & MV_PP_FLAG_FAKE_ATA_BUSY) {
  1912. if (stat & (ATA_BUSY | ATA_DRQ | ATA_ERR))
  1913. pp->pp_flags &= ~MV_PP_FLAG_FAKE_ATA_BUSY;
  1914. else
  1915. stat = ATA_BUSY;
  1916. }
  1917. return stat;
  1918. }
  1919. /**
  1920. * mv_send_fis - Send a FIS, using the "Vendor-Unique FIS" register
  1921. * @fis: fis to be sent
  1922. * @nwords: number of 32-bit words in the fis
  1923. */
  1924. static unsigned int mv_send_fis(struct ata_port *ap, u32 *fis, int nwords)
  1925. {
  1926. void __iomem *port_mmio = mv_ap_base(ap);
  1927. u32 ifctl, old_ifctl, ifstat;
  1928. int i, timeout = 200, final_word = nwords - 1;
  1929. /* Initiate FIS transmission mode */
  1930. old_ifctl = readl(port_mmio + SATA_IFCTL);
  1931. ifctl = 0x100 | (old_ifctl & 0xf);
  1932. writelfl(ifctl, port_mmio + SATA_IFCTL);
  1933. /* Send all words of the FIS except for the final word */
  1934. for (i = 0; i < final_word; ++i)
  1935. writel(fis[i], port_mmio + VENDOR_UNIQUE_FIS);
  1936. /* Flag end-of-transmission, and then send the final word */
  1937. writelfl(ifctl | 0x200, port_mmio + SATA_IFCTL);
  1938. writelfl(fis[final_word], port_mmio + VENDOR_UNIQUE_FIS);
  1939. /*
  1940. * Wait for FIS transmission to complete.
  1941. * This typically takes just a single iteration.
  1942. */
  1943. do {
  1944. ifstat = readl(port_mmio + SATA_IFSTAT);
  1945. } while (!(ifstat & 0x1000) && --timeout);
  1946. /* Restore original port configuration */
  1947. writelfl(old_ifctl, port_mmio + SATA_IFCTL);
  1948. /* See if it worked */
  1949. if ((ifstat & 0x3000) != 0x1000) {
  1950. ata_port_printk(ap, KERN_WARNING,
  1951. "%s transmission error, ifstat=%08x\n",
  1952. __func__, ifstat);
  1953. return AC_ERR_OTHER;
  1954. }
  1955. return 0;
  1956. }
  1957. /**
  1958. * mv_qc_issue_fis - Issue a command directly as a FIS
  1959. * @qc: queued command to start
  1960. *
  1961. * Note that the ATA shadow registers are not updated
  1962. * after command issue, so the device will appear "READY"
  1963. * if polled, even while it is BUSY processing the command.
  1964. *
  1965. * So we use a status hook to fake ATA_BUSY until the drive changes state.
  1966. *
  1967. * Note: we don't get updated shadow regs on *completion*
  1968. * of non-data commands. So avoid sending them via this function,
  1969. * as they will appear to have completed immediately.
  1970. *
  1971. * GEN_IIE has special registers that we could get the result tf from,
  1972. * but earlier chipsets do not. For now, we ignore those registers.
  1973. */
  1974. static unsigned int mv_qc_issue_fis(struct ata_queued_cmd *qc)
  1975. {
  1976. struct ata_port *ap = qc->ap;
  1977. struct mv_port_priv *pp = ap->private_data;
  1978. struct ata_link *link = qc->dev->link;
  1979. u32 fis[5];
  1980. int err = 0;
  1981. ata_tf_to_fis(&qc->tf, link->pmp, 1, (void *)fis);
  1982. err = mv_send_fis(ap, fis, ARRAY_SIZE(fis));
  1983. if (err)
  1984. return err;
  1985. switch (qc->tf.protocol) {
  1986. case ATAPI_PROT_PIO:
  1987. pp->pp_flags |= MV_PP_FLAG_FAKE_ATA_BUSY;
  1988. /* fall through */
  1989. case ATAPI_PROT_NODATA:
  1990. ap->hsm_task_state = HSM_ST_FIRST;
  1991. break;
  1992. case ATA_PROT_PIO:
  1993. pp->pp_flags |= MV_PP_FLAG_FAKE_ATA_BUSY;
  1994. if (qc->tf.flags & ATA_TFLAG_WRITE)
  1995. ap->hsm_task_state = HSM_ST_FIRST;
  1996. else
  1997. ap->hsm_task_state = HSM_ST;
  1998. break;
  1999. default:
  2000. ap->hsm_task_state = HSM_ST_LAST;
  2001. break;
  2002. }
  2003. if (qc->tf.flags & ATA_TFLAG_POLLING)
  2004. ata_sff_queue_pio_task(link, 0);
  2005. return 0;
  2006. }
  2007. /**
  2008. * mv_qc_issue - Initiate a command to the host
  2009. * @qc: queued command to start
  2010. *
  2011. * This routine simply redirects to the general purpose routine
  2012. * if command is not DMA. Else, it sanity checks our local
  2013. * caches of the request producer/consumer indices then enables
  2014. * DMA and bumps the request producer index.
  2015. *
  2016. * LOCKING:
  2017. * Inherited from caller.
  2018. */
  2019. static unsigned int mv_qc_issue(struct ata_queued_cmd *qc)
  2020. {
  2021. static int limit_warnings = 10;
  2022. struct ata_port *ap = qc->ap;
  2023. void __iomem *port_mmio = mv_ap_base(ap);
  2024. struct mv_port_priv *pp = ap->private_data;
  2025. u32 in_index;
  2026. unsigned int port_irqs;
  2027. pp->pp_flags &= ~MV_PP_FLAG_FAKE_ATA_BUSY; /* paranoia */
  2028. switch (qc->tf.protocol) {
  2029. case ATA_PROT_DMA:
  2030. if (qc->tf.command == ATA_CMD_DSM) {
  2031. if (!ap->ops->bmdma_setup) /* no bmdma on GEN_I */
  2032. return AC_ERR_OTHER;
  2033. break; /* use bmdma for this */
  2034. }
  2035. /* fall thru */
  2036. case ATA_PROT_NCQ:
  2037. mv_start_edma(ap, port_mmio, pp, qc->tf.protocol);
  2038. pp->req_idx = (pp->req_idx + 1) & MV_MAX_Q_DEPTH_MASK;
  2039. in_index = pp->req_idx << EDMA_REQ_Q_PTR_SHIFT;
  2040. /* Write the request in pointer to kick the EDMA to life */
  2041. writelfl((pp->crqb_dma & EDMA_REQ_Q_BASE_LO_MASK) | in_index,
  2042. port_mmio + EDMA_REQ_Q_IN_PTR);
  2043. return 0;
  2044. case ATA_PROT_PIO:
  2045. /*
  2046. * Errata SATA#16, SATA#24: warn if multiple DRQs expected.
  2047. *
  2048. * Someday, we might implement special polling workarounds
  2049. * for these, but it all seems rather unnecessary since we
  2050. * normally use only DMA for commands which transfer more
  2051. * than a single block of data.
  2052. *
  2053. * Much of the time, this could just work regardless.
  2054. * So for now, just log the incident, and allow the attempt.
  2055. */
  2056. if (limit_warnings > 0 && (qc->nbytes / qc->sect_size) > 1) {
  2057. --limit_warnings;
  2058. ata_link_printk(qc->dev->link, KERN_WARNING, DRV_NAME
  2059. ": attempting PIO w/multiple DRQ: "
  2060. "this may fail due to h/w errata\n");
  2061. }
  2062. /* drop through */
  2063. case ATA_PROT_NODATA:
  2064. case ATAPI_PROT_PIO:
  2065. case ATAPI_PROT_NODATA:
  2066. if (ap->flags & ATA_FLAG_PIO_POLLING)
  2067. qc->tf.flags |= ATA_TFLAG_POLLING;
  2068. break;
  2069. }
  2070. if (qc->tf.flags & ATA_TFLAG_POLLING)
  2071. port_irqs = ERR_IRQ; /* mask device interrupt when polling */
  2072. else
  2073. port_irqs = ERR_IRQ | DONE_IRQ; /* unmask all interrupts */
  2074. /*
  2075. * We're about to send a non-EDMA capable command to the
  2076. * port. Turn off EDMA so there won't be problems accessing
  2077. * shadow block, etc registers.
  2078. */
  2079. mv_stop_edma(ap);
  2080. mv_clear_and_enable_port_irqs(ap, mv_ap_base(ap), port_irqs);
  2081. mv_pmp_select(ap, qc->dev->link->pmp);
  2082. if (qc->tf.command == ATA_CMD_READ_LOG_EXT) {
  2083. struct mv_host_priv *hpriv = ap->host->private_data;
  2084. /*
  2085. * Workaround for 88SX60x1 FEr SATA#25 (part 2).
  2086. *
  2087. * After any NCQ error, the READ_LOG_EXT command
  2088. * from libata-eh *must* use mv_qc_issue_fis().
  2089. * Otherwise it might fail, due to chip errata.
  2090. *
  2091. * Rather than special-case it, we'll just *always*
  2092. * use this method here for READ_LOG_EXT, making for
  2093. * easier testing.
  2094. */
  2095. if (IS_GEN_II(hpriv))
  2096. return mv_qc_issue_fis(qc);
  2097. }
  2098. return ata_bmdma_qc_issue(qc);
  2099. }
  2100. static struct ata_queued_cmd *mv_get_active_qc(struct ata_port *ap)
  2101. {
  2102. struct mv_port_priv *pp = ap->private_data;
  2103. struct ata_queued_cmd *qc;
  2104. if (pp->pp_flags & MV_PP_FLAG_NCQ_EN)
  2105. return NULL;
  2106. qc = ata_qc_from_tag(ap, ap->link.active_tag);
  2107. if (qc && !(qc->tf.flags & ATA_TFLAG_POLLING))
  2108. return qc;
  2109. return NULL;
  2110. }
  2111. static void mv_pmp_error_handler(struct ata_port *ap)
  2112. {
  2113. unsigned int pmp, pmp_map;
  2114. struct mv_port_priv *pp = ap->private_data;
  2115. if (pp->pp_flags & MV_PP_FLAG_DELAYED_EH) {
  2116. /*
  2117. * Perform NCQ error analysis on failed PMPs
  2118. * before we freeze the port entirely.
  2119. *
  2120. * The failed PMPs are marked earlier by mv_pmp_eh_prep().
  2121. */
  2122. pmp_map = pp->delayed_eh_pmp_map;
  2123. pp->pp_flags &= ~MV_PP_FLAG_DELAYED_EH;
  2124. for (pmp = 0; pmp_map != 0; pmp++) {
  2125. unsigned int this_pmp = (1 << pmp);
  2126. if (pmp_map & this_pmp) {
  2127. struct ata_link *link = &ap->pmp_link[pmp];
  2128. pmp_map &= ~this_pmp;
  2129. ata_eh_analyze_ncq_error(link);
  2130. }
  2131. }
  2132. ata_port_freeze(ap);
  2133. }
  2134. sata_pmp_error_handler(ap);
  2135. }
  2136. static unsigned int mv_get_err_pmp_map(struct ata_port *ap)
  2137. {
  2138. void __iomem *port_mmio = mv_ap_base(ap);
  2139. return readl(port_mmio + SATA_TESTCTL) >> 16;
  2140. }
  2141. static void mv_pmp_eh_prep(struct ata_port *ap, unsigned int pmp_map)
  2142. {
  2143. struct ata_eh_info *ehi;
  2144. unsigned int pmp;
  2145. /*
  2146. * Initialize EH info for PMPs which saw device errors
  2147. */
  2148. ehi = &ap->link.eh_info;
  2149. for (pmp = 0; pmp_map != 0; pmp++) {
  2150. unsigned int this_pmp = (1 << pmp);
  2151. if (pmp_map & this_pmp) {
  2152. struct ata_link *link = &ap->pmp_link[pmp];
  2153. pmp_map &= ~this_pmp;
  2154. ehi = &link->eh_info;
  2155. ata_ehi_clear_desc(ehi);
  2156. ata_ehi_push_desc(ehi, "dev err");
  2157. ehi->err_mask |= AC_ERR_DEV;
  2158. ehi->action |= ATA_EH_RESET;
  2159. ata_link_abort(link);
  2160. }
  2161. }
  2162. }
  2163. static int mv_req_q_empty(struct ata_port *ap)
  2164. {
  2165. void __iomem *port_mmio = mv_ap_base(ap);
  2166. u32 in_ptr, out_ptr;
  2167. in_ptr = (readl(port_mmio + EDMA_REQ_Q_IN_PTR)
  2168. >> EDMA_REQ_Q_PTR_SHIFT) & MV_MAX_Q_DEPTH_MASK;
  2169. out_ptr = (readl(port_mmio + EDMA_REQ_Q_OUT_PTR)
  2170. >> EDMA_REQ_Q_PTR_SHIFT) & MV_MAX_Q_DEPTH_MASK;
  2171. return (in_ptr == out_ptr); /* 1 == queue_is_empty */
  2172. }
  2173. static int mv_handle_fbs_ncq_dev_err(struct ata_port *ap)
  2174. {
  2175. struct mv_port_priv *pp = ap->private_data;
  2176. int failed_links;
  2177. unsigned int old_map, new_map;
  2178. /*
  2179. * Device error during FBS+NCQ operation:
  2180. *
  2181. * Set a port flag to prevent further I/O being enqueued.
  2182. * Leave the EDMA running to drain outstanding commands from this port.
  2183. * Perform the post-mortem/EH only when all responses are complete.
  2184. * Follow recovery sequence from 6042/7042 datasheet (7.3.15.4.2.2).
  2185. */
  2186. if (!(pp->pp_flags & MV_PP_FLAG_DELAYED_EH)) {
  2187. pp->pp_flags |= MV_PP_FLAG_DELAYED_EH;
  2188. pp->delayed_eh_pmp_map = 0;
  2189. }
  2190. old_map = pp->delayed_eh_pmp_map;
  2191. new_map = old_map | mv_get_err_pmp_map(ap);
  2192. if (old_map != new_map) {
  2193. pp->delayed_eh_pmp_map = new_map;
  2194. mv_pmp_eh_prep(ap, new_map & ~old_map);
  2195. }
  2196. failed_links = hweight16(new_map);
  2197. ata_port_printk(ap, KERN_INFO, "%s: pmp_map=%04x qc_map=%04x "
  2198. "failed_links=%d nr_active_links=%d\n",
  2199. __func__, pp->delayed_eh_pmp_map,
  2200. ap->qc_active, failed_links,
  2201. ap->nr_active_links);
  2202. if (ap->nr_active_links <= failed_links && mv_req_q_empty(ap)) {
  2203. mv_process_crpb_entries(ap, pp);
  2204. mv_stop_edma(ap);
  2205. mv_eh_freeze(ap);
  2206. ata_port_printk(ap, KERN_INFO, "%s: done\n", __func__);
  2207. return 1; /* handled */
  2208. }
  2209. ata_port_printk(ap, KERN_INFO, "%s: waiting\n", __func__);
  2210. return 1; /* handled */
  2211. }
  2212. static int mv_handle_fbs_non_ncq_dev_err(struct ata_port *ap)
  2213. {
  2214. /*
  2215. * Possible future enhancement:
  2216. *
  2217. * FBS+non-NCQ operation is not yet implemented.
  2218. * See related notes in mv_edma_cfg().
  2219. *
  2220. * Device error during FBS+non-NCQ operation:
  2221. *
  2222. * We need to snapshot the shadow registers for each failed command.
  2223. * Follow recovery sequence from 6042/7042 datasheet (7.3.15.4.2.3).
  2224. */
  2225. return 0; /* not handled */
  2226. }
  2227. static int mv_handle_dev_err(struct ata_port *ap, u32 edma_err_cause)
  2228. {
  2229. struct mv_port_priv *pp = ap->private_data;
  2230. if (!(pp->pp_flags & MV_PP_FLAG_EDMA_EN))
  2231. return 0; /* EDMA was not active: not handled */
  2232. if (!(pp->pp_flags & MV_PP_FLAG_FBS_EN))
  2233. return 0; /* FBS was not active: not handled */
  2234. if (!(edma_err_cause & EDMA_ERR_DEV))
  2235. return 0; /* non DEV error: not handled */
  2236. edma_err_cause &= ~EDMA_ERR_IRQ_TRANSIENT;
  2237. if (edma_err_cause & ~(EDMA_ERR_DEV | EDMA_ERR_SELF_DIS))
  2238. return 0; /* other problems: not handled */
  2239. if (pp->pp_flags & MV_PP_FLAG_NCQ_EN) {
  2240. /*
  2241. * EDMA should NOT have self-disabled for this case.
  2242. * If it did, then something is wrong elsewhere,
  2243. * and we cannot handle it here.
  2244. */
  2245. if (edma_err_cause & EDMA_ERR_SELF_DIS) {
  2246. ata_port_printk(ap, KERN_WARNING,
  2247. "%s: err_cause=0x%x pp_flags=0x%x\n",
  2248. __func__, edma_err_cause, pp->pp_flags);
  2249. return 0; /* not handled */
  2250. }
  2251. return mv_handle_fbs_ncq_dev_err(ap);
  2252. } else {
  2253. /*
  2254. * EDMA should have self-disabled for this case.
  2255. * If it did not, then something is wrong elsewhere,
  2256. * and we cannot handle it here.
  2257. */
  2258. if (!(edma_err_cause & EDMA_ERR_SELF_DIS)) {
  2259. ata_port_printk(ap, KERN_WARNING,
  2260. "%s: err_cause=0x%x pp_flags=0x%x\n",
  2261. __func__, edma_err_cause, pp->pp_flags);
  2262. return 0; /* not handled */
  2263. }
  2264. return mv_handle_fbs_non_ncq_dev_err(ap);
  2265. }
  2266. return 0; /* not handled */
  2267. }
  2268. static void mv_unexpected_intr(struct ata_port *ap, int edma_was_enabled)
  2269. {
  2270. struct ata_eh_info *ehi = &ap->link.eh_info;
  2271. char *when = "idle";
  2272. ata_ehi_clear_desc(ehi);
  2273. if (edma_was_enabled) {
  2274. when = "EDMA enabled";
  2275. } else {
  2276. struct ata_queued_cmd *qc = ata_qc_from_tag(ap, ap->link.active_tag);
  2277. if (qc && (qc->tf.flags & ATA_TFLAG_POLLING))
  2278. when = "polling";
  2279. }
  2280. ata_ehi_push_desc(ehi, "unexpected device interrupt while %s", when);
  2281. ehi->err_mask |= AC_ERR_OTHER;
  2282. ehi->action |= ATA_EH_RESET;
  2283. ata_port_freeze(ap);
  2284. }
  2285. /**
  2286. * mv_err_intr - Handle error interrupts on the port
  2287. * @ap: ATA channel to manipulate
  2288. *
  2289. * Most cases require a full reset of the chip's state machine,
  2290. * which also performs a COMRESET.
  2291. * Also, if the port disabled DMA, update our cached copy to match.
  2292. *
  2293. * LOCKING:
  2294. * Inherited from caller.
  2295. */
  2296. static void mv_err_intr(struct ata_port *ap)
  2297. {
  2298. void __iomem *port_mmio = mv_ap_base(ap);
  2299. u32 edma_err_cause, eh_freeze_mask, serr = 0;
  2300. u32 fis_cause = 0;
  2301. struct mv_port_priv *pp = ap->private_data;
  2302. struct mv_host_priv *hpriv = ap->host->private_data;
  2303. unsigned int action = 0, err_mask = 0;
  2304. struct ata_eh_info *ehi = &ap->link.eh_info;
  2305. struct ata_queued_cmd *qc;
  2306. int abort = 0;
  2307. /*
  2308. * Read and clear the SError and err_cause bits.
  2309. * For GenIIe, if EDMA_ERR_TRANS_IRQ_7 is set, we also must read/clear
  2310. * the FIS_IRQ_CAUSE register before clearing edma_err_cause.
  2311. */
  2312. sata_scr_read(&ap->link, SCR_ERROR, &serr);
  2313. sata_scr_write_flush(&ap->link, SCR_ERROR, serr);
  2314. edma_err_cause = readl(port_mmio + EDMA_ERR_IRQ_CAUSE);
  2315. if (IS_GEN_IIE(hpriv) && (edma_err_cause & EDMA_ERR_TRANS_IRQ_7)) {
  2316. fis_cause = readl(port_mmio + FIS_IRQ_CAUSE);
  2317. writelfl(~fis_cause, port_mmio + FIS_IRQ_CAUSE);
  2318. }
  2319. writelfl(~edma_err_cause, port_mmio + EDMA_ERR_IRQ_CAUSE);
  2320. if (edma_err_cause & EDMA_ERR_DEV) {
  2321. /*
  2322. * Device errors during FIS-based switching operation
  2323. * require special handling.
  2324. */
  2325. if (mv_handle_dev_err(ap, edma_err_cause))
  2326. return;
  2327. }
  2328. qc = mv_get_active_qc(ap);
  2329. ata_ehi_clear_desc(ehi);
  2330. ata_ehi_push_desc(ehi, "edma_err_cause=%08x pp_flags=%08x",
  2331. edma_err_cause, pp->pp_flags);
  2332. if (IS_GEN_IIE(hpriv) && (edma_err_cause & EDMA_ERR_TRANS_IRQ_7)) {
  2333. ata_ehi_push_desc(ehi, "fis_cause=%08x", fis_cause);
  2334. if (fis_cause & FIS_IRQ_CAUSE_AN) {
  2335. u32 ec = edma_err_cause &
  2336. ~(EDMA_ERR_TRANS_IRQ_7 | EDMA_ERR_IRQ_TRANSIENT);
  2337. sata_async_notification(ap);
  2338. if (!ec)
  2339. return; /* Just an AN; no need for the nukes */
  2340. ata_ehi_push_desc(ehi, "SDB notify");
  2341. }
  2342. }
  2343. /*
  2344. * All generations share these EDMA error cause bits:
  2345. */
  2346. if (edma_err_cause & EDMA_ERR_DEV) {
  2347. err_mask |= AC_ERR_DEV;
  2348. action |= ATA_EH_RESET;
  2349. ata_ehi_push_desc(ehi, "dev error");
  2350. }
  2351. if (edma_err_cause & (EDMA_ERR_D_PAR | EDMA_ERR_PRD_PAR |
  2352. EDMA_ERR_CRQB_PAR | EDMA_ERR_CRPB_PAR |
  2353. EDMA_ERR_INTRL_PAR)) {
  2354. err_mask |= AC_ERR_ATA_BUS;
  2355. action |= ATA_EH_RESET;
  2356. ata_ehi_push_desc(ehi, "parity error");
  2357. }
  2358. if (edma_err_cause & (EDMA_ERR_DEV_DCON | EDMA_ERR_DEV_CON)) {
  2359. ata_ehi_hotplugged(ehi);
  2360. ata_ehi_push_desc(ehi, edma_err_cause & EDMA_ERR_DEV_DCON ?
  2361. "dev disconnect" : "dev connect");
  2362. action |= ATA_EH_RESET;
  2363. }
  2364. /*
  2365. * Gen-I has a different SELF_DIS bit,
  2366. * different FREEZE bits, and no SERR bit:
  2367. */
  2368. if (IS_GEN_I(hpriv)) {
  2369. eh_freeze_mask = EDMA_EH_FREEZE_5;
  2370. if (edma_err_cause & EDMA_ERR_SELF_DIS_5) {
  2371. pp->pp_flags &= ~MV_PP_FLAG_EDMA_EN;
  2372. ata_ehi_push_desc(ehi, "EDMA self-disable");
  2373. }
  2374. } else {
  2375. eh_freeze_mask = EDMA_EH_FREEZE;
  2376. if (edma_err_cause & EDMA_ERR_SELF_DIS) {
  2377. pp->pp_flags &= ~MV_PP_FLAG_EDMA_EN;
  2378. ata_ehi_push_desc(ehi, "EDMA self-disable");
  2379. }
  2380. if (edma_err_cause & EDMA_ERR_SERR) {
  2381. ata_ehi_push_desc(ehi, "SError=%08x", serr);
  2382. err_mask |= AC_ERR_ATA_BUS;
  2383. action |= ATA_EH_RESET;
  2384. }
  2385. }
  2386. if (!err_mask) {
  2387. err_mask = AC_ERR_OTHER;
  2388. action |= ATA_EH_RESET;
  2389. }
  2390. ehi->serror |= serr;
  2391. ehi->action |= action;
  2392. if (qc)
  2393. qc->err_mask |= err_mask;
  2394. else
  2395. ehi->err_mask |= err_mask;
  2396. if (err_mask == AC_ERR_DEV) {
  2397. /*
  2398. * Cannot do ata_port_freeze() here,
  2399. * because it would kill PIO access,
  2400. * which is needed for further diagnosis.
  2401. */
  2402. mv_eh_freeze(ap);
  2403. abort = 1;
  2404. } else if (edma_err_cause & eh_freeze_mask) {
  2405. /*
  2406. * Note to self: ata_port_freeze() calls ata_port_abort()
  2407. */
  2408. ata_port_freeze(ap);
  2409. } else {
  2410. abort = 1;
  2411. }
  2412. if (abort) {
  2413. if (qc)
  2414. ata_link_abort(qc->dev->link);
  2415. else
  2416. ata_port_abort(ap);
  2417. }
  2418. }
  2419. static void mv_process_crpb_response(struct ata_port *ap,
  2420. struct mv_crpb *response, unsigned int tag, int ncq_enabled)
  2421. {
  2422. u8 ata_status;
  2423. u16 edma_status = le16_to_cpu(response->flags);
  2424. struct ata_queued_cmd *qc = ata_qc_from_tag(ap, tag);
  2425. if (unlikely(!qc)) {
  2426. ata_port_printk(ap, KERN_ERR, "%s: no qc for tag=%d\n",
  2427. __func__, tag);
  2428. return;
  2429. }
  2430. /*
  2431. * edma_status from a response queue entry:
  2432. * LSB is from EDMA_ERR_IRQ_CAUSE (non-NCQ only).
  2433. * MSB is saved ATA status from command completion.
  2434. */
  2435. if (!ncq_enabled) {
  2436. u8 err_cause = edma_status & 0xff & ~EDMA_ERR_DEV;
  2437. if (err_cause) {
  2438. /*
  2439. * Error will be seen/handled by
  2440. * mv_err_intr(). So do nothing at all here.
  2441. */
  2442. return;
  2443. }
  2444. }
  2445. ata_status = edma_status >> CRPB_FLAG_STATUS_SHIFT;
  2446. if (!ac_err_mask(ata_status))
  2447. ata_qc_complete(qc);
  2448. /* else: leave it for mv_err_intr() */
  2449. }
  2450. static void mv_process_crpb_entries(struct ata_port *ap, struct mv_port_priv *pp)
  2451. {
  2452. void __iomem *port_mmio = mv_ap_base(ap);
  2453. struct mv_host_priv *hpriv = ap->host->private_data;
  2454. u32 in_index;
  2455. bool work_done = false;
  2456. int ncq_enabled = (pp->pp_flags & MV_PP_FLAG_NCQ_EN);
  2457. /* Get the hardware queue position index */
  2458. in_index = (readl(port_mmio + EDMA_RSP_Q_IN_PTR)
  2459. >> EDMA_RSP_Q_PTR_SHIFT) & MV_MAX_Q_DEPTH_MASK;
  2460. /* Process new responses from since the last time we looked */
  2461. while (in_index != pp->resp_idx) {
  2462. unsigned int tag;
  2463. struct mv_crpb *response = &pp->crpb[pp->resp_idx];
  2464. pp->resp_idx = (pp->resp_idx + 1) & MV_MAX_Q_DEPTH_MASK;
  2465. if (IS_GEN_I(hpriv)) {
  2466. /* 50xx: no NCQ, only one command active at a time */
  2467. tag = ap->link.active_tag;
  2468. } else {
  2469. /* Gen II/IIE: get command tag from CRPB entry */
  2470. tag = le16_to_cpu(response->id) & 0x1f;
  2471. }
  2472. mv_process_crpb_response(ap, response, tag, ncq_enabled);
  2473. work_done = true;
  2474. }
  2475. /* Update the software queue position index in hardware */
  2476. if (work_done)
  2477. writelfl((pp->crpb_dma & EDMA_RSP_Q_BASE_LO_MASK) |
  2478. (pp->resp_idx << EDMA_RSP_Q_PTR_SHIFT),
  2479. port_mmio + EDMA_RSP_Q_OUT_PTR);
  2480. }
  2481. static void mv_port_intr(struct ata_port *ap, u32 port_cause)
  2482. {
  2483. struct mv_port_priv *pp;
  2484. int edma_was_enabled;
  2485. /*
  2486. * Grab a snapshot of the EDMA_EN flag setting,
  2487. * so that we have a consistent view for this port,
  2488. * even if something we call of our routines changes it.
  2489. */
  2490. pp = ap->private_data;
  2491. edma_was_enabled = (pp->pp_flags & MV_PP_FLAG_EDMA_EN);
  2492. /*
  2493. * Process completed CRPB response(s) before other events.
  2494. */
  2495. if (edma_was_enabled && (port_cause & DONE_IRQ)) {
  2496. mv_process_crpb_entries(ap, pp);
  2497. if (pp->pp_flags & MV_PP_FLAG_DELAYED_EH)
  2498. mv_handle_fbs_ncq_dev_err(ap);
  2499. }
  2500. /*
  2501. * Handle chip-reported errors, or continue on to handle PIO.
  2502. */
  2503. if (unlikely(port_cause & ERR_IRQ)) {
  2504. mv_err_intr(ap);
  2505. } else if (!edma_was_enabled) {
  2506. struct ata_queued_cmd *qc = mv_get_active_qc(ap);
  2507. if (qc)
  2508. ata_bmdma_port_intr(ap, qc);
  2509. else
  2510. mv_unexpected_intr(ap, edma_was_enabled);
  2511. }
  2512. }
  2513. /**
  2514. * mv_host_intr - Handle all interrupts on the given host controller
  2515. * @host: host specific structure
  2516. * @main_irq_cause: Main interrupt cause register for the chip.
  2517. *
  2518. * LOCKING:
  2519. * Inherited from caller.
  2520. */
  2521. static int mv_host_intr(struct ata_host *host, u32 main_irq_cause)
  2522. {
  2523. struct mv_host_priv *hpriv = host->private_data;
  2524. void __iomem *mmio = hpriv->base, *hc_mmio;
  2525. unsigned int handled = 0, port;
  2526. /* If asserted, clear the "all ports" IRQ coalescing bit */
  2527. if (main_irq_cause & ALL_PORTS_COAL_DONE)
  2528. writel(~ALL_PORTS_COAL_IRQ, mmio + IRQ_COAL_CAUSE);
  2529. for (port = 0; port < hpriv->n_ports; port++) {
  2530. struct ata_port *ap = host->ports[port];
  2531. unsigned int p, shift, hardport, port_cause;
  2532. MV_PORT_TO_SHIFT_AND_HARDPORT(port, shift, hardport);
  2533. /*
  2534. * Each hc within the host has its own hc_irq_cause register,
  2535. * where the interrupting ports bits get ack'd.
  2536. */
  2537. if (hardport == 0) { /* first port on this hc ? */
  2538. u32 hc_cause = (main_irq_cause >> shift) & HC0_IRQ_PEND;
  2539. u32 port_mask, ack_irqs;
  2540. /*
  2541. * Skip this entire hc if nothing pending for any ports
  2542. */
  2543. if (!hc_cause) {
  2544. port += MV_PORTS_PER_HC - 1;
  2545. continue;
  2546. }
  2547. /*
  2548. * We don't need/want to read the hc_irq_cause register,
  2549. * because doing so hurts performance, and
  2550. * main_irq_cause already gives us everything we need.
  2551. *
  2552. * But we do have to *write* to the hc_irq_cause to ack
  2553. * the ports that we are handling this time through.
  2554. *
  2555. * This requires that we create a bitmap for those
  2556. * ports which interrupted us, and use that bitmap
  2557. * to ack (only) those ports via hc_irq_cause.
  2558. */
  2559. ack_irqs = 0;
  2560. if (hc_cause & PORTS_0_3_COAL_DONE)
  2561. ack_irqs = HC_COAL_IRQ;
  2562. for (p = 0; p < MV_PORTS_PER_HC; ++p) {
  2563. if ((port + p) >= hpriv->n_ports)
  2564. break;
  2565. port_mask = (DONE_IRQ | ERR_IRQ) << (p * 2);
  2566. if (hc_cause & port_mask)
  2567. ack_irqs |= (DMA_IRQ | DEV_IRQ) << p;
  2568. }
  2569. hc_mmio = mv_hc_base_from_port(mmio, port);
  2570. writelfl(~ack_irqs, hc_mmio + HC_IRQ_CAUSE);
  2571. handled = 1;
  2572. }
  2573. /*
  2574. * Handle interrupts signalled for this port:
  2575. */
  2576. port_cause = (main_irq_cause >> shift) & (DONE_IRQ | ERR_IRQ);
  2577. if (port_cause)
  2578. mv_port_intr(ap, port_cause);
  2579. }
  2580. return handled;
  2581. }
  2582. static int mv_pci_error(struct ata_host *host, void __iomem *mmio)
  2583. {
  2584. struct mv_host_priv *hpriv = host->private_data;
  2585. struct ata_port *ap;
  2586. struct ata_queued_cmd *qc;
  2587. struct ata_eh_info *ehi;
  2588. unsigned int i, err_mask, printed = 0;
  2589. u32 err_cause;
  2590. err_cause = readl(mmio + hpriv->irq_cause_offset);
  2591. dev_printk(KERN_ERR, host->dev, "PCI ERROR; PCI IRQ cause=0x%08x\n",
  2592. err_cause);
  2593. DPRINTK("All regs @ PCI error\n");
  2594. mv_dump_all_regs(mmio, -1, to_pci_dev(host->dev));
  2595. writelfl(0, mmio + hpriv->irq_cause_offset);
  2596. for (i = 0; i < host->n_ports; i++) {
  2597. ap = host->ports[i];
  2598. if (!ata_link_offline(&ap->link)) {
  2599. ehi = &ap->link.eh_info;
  2600. ata_ehi_clear_desc(ehi);
  2601. if (!printed++)
  2602. ata_ehi_push_desc(ehi,
  2603. "PCI err cause 0x%08x", err_cause);
  2604. err_mask = AC_ERR_HOST_BUS;
  2605. ehi->action = ATA_EH_RESET;
  2606. qc = ata_qc_from_tag(ap, ap->link.active_tag);
  2607. if (qc)
  2608. qc->err_mask |= err_mask;
  2609. else
  2610. ehi->err_mask |= err_mask;
  2611. ata_port_freeze(ap);
  2612. }
  2613. }
  2614. return 1; /* handled */
  2615. }
  2616. /**
  2617. * mv_interrupt - Main interrupt event handler
  2618. * @irq: unused
  2619. * @dev_instance: private data; in this case the host structure
  2620. *
  2621. * Read the read only register to determine if any host
  2622. * controllers have pending interrupts. If so, call lower level
  2623. * routine to handle. Also check for PCI errors which are only
  2624. * reported here.
  2625. *
  2626. * LOCKING:
  2627. * This routine holds the host lock while processing pending
  2628. * interrupts.
  2629. */
  2630. static irqreturn_t mv_interrupt(int irq, void *dev_instance)
  2631. {
  2632. struct ata_host *host = dev_instance;
  2633. struct mv_host_priv *hpriv = host->private_data;
  2634. unsigned int handled = 0;
  2635. int using_msi = hpriv->hp_flags & MV_HP_FLAG_MSI;
  2636. u32 main_irq_cause, pending_irqs;
  2637. spin_lock(&host->lock);
  2638. /* for MSI: block new interrupts while in here */
  2639. if (using_msi)
  2640. mv_write_main_irq_mask(0, hpriv);
  2641. main_irq_cause = readl(hpriv->main_irq_cause_addr);
  2642. pending_irqs = main_irq_cause & hpriv->main_irq_mask;
  2643. /*
  2644. * Deal with cases where we either have nothing pending, or have read
  2645. * a bogus register value which can indicate HW removal or PCI fault.
  2646. */
  2647. if (pending_irqs && main_irq_cause != 0xffffffffU) {
  2648. if (unlikely((pending_irqs & PCI_ERR) && !IS_SOC(hpriv)))
  2649. handled = mv_pci_error(host, hpriv->base);
  2650. else
  2651. handled = mv_host_intr(host, pending_irqs);
  2652. }
  2653. /* for MSI: unmask; interrupt cause bits will retrigger now */
  2654. if (using_msi)
  2655. mv_write_main_irq_mask(hpriv->main_irq_mask, hpriv);
  2656. spin_unlock(&host->lock);
  2657. return IRQ_RETVAL(handled);
  2658. }
  2659. static unsigned int mv5_scr_offset(unsigned int sc_reg_in)
  2660. {
  2661. unsigned int ofs;
  2662. switch (sc_reg_in) {
  2663. case SCR_STATUS:
  2664. case SCR_ERROR:
  2665. case SCR_CONTROL:
  2666. ofs = sc_reg_in * sizeof(u32);
  2667. break;
  2668. default:
  2669. ofs = 0xffffffffU;
  2670. break;
  2671. }
  2672. return ofs;
  2673. }
  2674. static int mv5_scr_read(struct ata_link *link, unsigned int sc_reg_in, u32 *val)
  2675. {
  2676. struct mv_host_priv *hpriv = link->ap->host->private_data;
  2677. void __iomem *mmio = hpriv->base;
  2678. void __iomem *addr = mv5_phy_base(mmio, link->ap->port_no);
  2679. unsigned int ofs = mv5_scr_offset(sc_reg_in);
  2680. if (ofs != 0xffffffffU) {
  2681. *val = readl(addr + ofs);
  2682. return 0;
  2683. } else
  2684. return -EINVAL;
  2685. }
  2686. static int mv5_scr_write(struct ata_link *link, unsigned int sc_reg_in, u32 val)
  2687. {
  2688. struct mv_host_priv *hpriv = link->ap->host->private_data;
  2689. void __iomem *mmio = hpriv->base;
  2690. void __iomem *addr = mv5_phy_base(mmio, link->ap->port_no);
  2691. unsigned int ofs = mv5_scr_offset(sc_reg_in);
  2692. if (ofs != 0xffffffffU) {
  2693. writelfl(val, addr + ofs);
  2694. return 0;
  2695. } else
  2696. return -EINVAL;
  2697. }
  2698. static void mv5_reset_bus(struct ata_host *host, void __iomem *mmio)
  2699. {
  2700. struct pci_dev *pdev = to_pci_dev(host->dev);
  2701. int early_5080;
  2702. early_5080 = (pdev->device == 0x5080) && (pdev->revision == 0);
  2703. if (!early_5080) {
  2704. u32 tmp = readl(mmio + MV_PCI_EXP_ROM_BAR_CTL);
  2705. tmp |= (1 << 0);
  2706. writel(tmp, mmio + MV_PCI_EXP_ROM_BAR_CTL);
  2707. }
  2708. mv_reset_pci_bus(host, mmio);
  2709. }
  2710. static void mv5_reset_flash(struct mv_host_priv *hpriv, void __iomem *mmio)
  2711. {
  2712. writel(0x0fcfffff, mmio + FLASH_CTL);
  2713. }
  2714. static void mv5_read_preamp(struct mv_host_priv *hpriv, int idx,
  2715. void __iomem *mmio)
  2716. {
  2717. void __iomem *phy_mmio = mv5_phy_base(mmio, idx);
  2718. u32 tmp;
  2719. tmp = readl(phy_mmio + MV5_PHY_MODE);
  2720. hpriv->signal[idx].pre = tmp & 0x1800; /* bits 12:11 */
  2721. hpriv->signal[idx].amps = tmp & 0xe0; /* bits 7:5 */
  2722. }
  2723. static void mv5_enable_leds(struct mv_host_priv *hpriv, void __iomem *mmio)
  2724. {
  2725. u32 tmp;
  2726. writel(0, mmio + GPIO_PORT_CTL);
  2727. /* FIXME: handle MV_HP_ERRATA_50XXB2 errata */
  2728. tmp = readl(mmio + MV_PCI_EXP_ROM_BAR_CTL);
  2729. tmp |= ~(1 << 0);
  2730. writel(tmp, mmio + MV_PCI_EXP_ROM_BAR_CTL);
  2731. }
  2732. static void mv5_phy_errata(struct mv_host_priv *hpriv, void __iomem *mmio,
  2733. unsigned int port)
  2734. {
  2735. void __iomem *phy_mmio = mv5_phy_base(mmio, port);
  2736. const u32 mask = (1<<12) | (1<<11) | (1<<7) | (1<<6) | (1<<5);
  2737. u32 tmp;
  2738. int fix_apm_sq = (hpriv->hp_flags & MV_HP_ERRATA_50XXB0);
  2739. if (fix_apm_sq) {
  2740. tmp = readl(phy_mmio + MV5_LTMODE);
  2741. tmp |= (1 << 19);
  2742. writel(tmp, phy_mmio + MV5_LTMODE);
  2743. tmp = readl(phy_mmio + MV5_PHY_CTL);
  2744. tmp &= ~0x3;
  2745. tmp |= 0x1;
  2746. writel(tmp, phy_mmio + MV5_PHY_CTL);
  2747. }
  2748. tmp = readl(phy_mmio + MV5_PHY_MODE);
  2749. tmp &= ~mask;
  2750. tmp |= hpriv->signal[port].pre;
  2751. tmp |= hpriv->signal[port].amps;
  2752. writel(tmp, phy_mmio + MV5_PHY_MODE);
  2753. }
  2754. #undef ZERO
  2755. #define ZERO(reg) writel(0, port_mmio + (reg))
  2756. static void mv5_reset_hc_port(struct mv_host_priv *hpriv, void __iomem *mmio,
  2757. unsigned int port)
  2758. {
  2759. void __iomem *port_mmio = mv_port_base(mmio, port);
  2760. mv_reset_channel(hpriv, mmio, port);
  2761. ZERO(0x028); /* command */
  2762. writel(0x11f, port_mmio + EDMA_CFG);
  2763. ZERO(0x004); /* timer */
  2764. ZERO(0x008); /* irq err cause */
  2765. ZERO(0x00c); /* irq err mask */
  2766. ZERO(0x010); /* rq bah */
  2767. ZERO(0x014); /* rq inp */
  2768. ZERO(0x018); /* rq outp */
  2769. ZERO(0x01c); /* respq bah */
  2770. ZERO(0x024); /* respq outp */
  2771. ZERO(0x020); /* respq inp */
  2772. ZERO(0x02c); /* test control */
  2773. writel(0xbc, port_mmio + EDMA_IORDY_TMOUT);
  2774. }
  2775. #undef ZERO
  2776. #define ZERO(reg) writel(0, hc_mmio + (reg))
  2777. static void mv5_reset_one_hc(struct mv_host_priv *hpriv, void __iomem *mmio,
  2778. unsigned int hc)
  2779. {
  2780. void __iomem *hc_mmio = mv_hc_base(mmio, hc);
  2781. u32 tmp;
  2782. ZERO(0x00c);
  2783. ZERO(0x010);
  2784. ZERO(0x014);
  2785. ZERO(0x018);
  2786. tmp = readl(hc_mmio + 0x20);
  2787. tmp &= 0x1c1c1c1c;
  2788. tmp |= 0x03030303;
  2789. writel(tmp, hc_mmio + 0x20);
  2790. }
  2791. #undef ZERO
  2792. static int mv5_reset_hc(struct mv_host_priv *hpriv, void __iomem *mmio,
  2793. unsigned int n_hc)
  2794. {
  2795. unsigned int hc, port;
  2796. for (hc = 0; hc < n_hc; hc++) {
  2797. for (port = 0; port < MV_PORTS_PER_HC; port++)
  2798. mv5_reset_hc_port(hpriv, mmio,
  2799. (hc * MV_PORTS_PER_HC) + port);
  2800. mv5_reset_one_hc(hpriv, mmio, hc);
  2801. }
  2802. return 0;
  2803. }
  2804. #undef ZERO
  2805. #define ZERO(reg) writel(0, mmio + (reg))
  2806. static void mv_reset_pci_bus(struct ata_host *host, void __iomem *mmio)
  2807. {
  2808. struct mv_host_priv *hpriv = host->private_data;
  2809. u32 tmp;
  2810. tmp = readl(mmio + MV_PCI_MODE);
  2811. tmp &= 0xff00ffff;
  2812. writel(tmp, mmio + MV_PCI_MODE);
  2813. ZERO(MV_PCI_DISC_TIMER);
  2814. ZERO(MV_PCI_MSI_TRIGGER);
  2815. writel(0x000100ff, mmio + MV_PCI_XBAR_TMOUT);
  2816. ZERO(MV_PCI_SERR_MASK);
  2817. ZERO(hpriv->irq_cause_offset);
  2818. ZERO(hpriv->irq_mask_offset);
  2819. ZERO(MV_PCI_ERR_LOW_ADDRESS);
  2820. ZERO(MV_PCI_ERR_HIGH_ADDRESS);
  2821. ZERO(MV_PCI_ERR_ATTRIBUTE);
  2822. ZERO(MV_PCI_ERR_COMMAND);
  2823. }
  2824. #undef ZERO
  2825. static void mv6_reset_flash(struct mv_host_priv *hpriv, void __iomem *mmio)
  2826. {
  2827. u32 tmp;
  2828. mv5_reset_flash(hpriv, mmio);
  2829. tmp = readl(mmio + GPIO_PORT_CTL);
  2830. tmp &= 0x3;
  2831. tmp |= (1 << 5) | (1 << 6);
  2832. writel(tmp, mmio + GPIO_PORT_CTL);
  2833. }
  2834. /**
  2835. * mv6_reset_hc - Perform the 6xxx global soft reset
  2836. * @mmio: base address of the HBA
  2837. *
  2838. * This routine only applies to 6xxx parts.
  2839. *
  2840. * LOCKING:
  2841. * Inherited from caller.
  2842. */
  2843. static int mv6_reset_hc(struct mv_host_priv *hpriv, void __iomem *mmio,
  2844. unsigned int n_hc)
  2845. {
  2846. void __iomem *reg = mmio + PCI_MAIN_CMD_STS;
  2847. int i, rc = 0;
  2848. u32 t;
  2849. /* Following procedure defined in PCI "main command and status
  2850. * register" table.
  2851. */
  2852. t = readl(reg);
  2853. writel(t | STOP_PCI_MASTER, reg);
  2854. for (i = 0; i < 1000; i++) {
  2855. udelay(1);
  2856. t = readl(reg);
  2857. if (PCI_MASTER_EMPTY & t)
  2858. break;
  2859. }
  2860. if (!(PCI_MASTER_EMPTY & t)) {
  2861. printk(KERN_ERR DRV_NAME ": PCI master won't flush\n");
  2862. rc = 1;
  2863. goto done;
  2864. }
  2865. /* set reset */
  2866. i = 5;
  2867. do {
  2868. writel(t | GLOB_SFT_RST, reg);
  2869. t = readl(reg);
  2870. udelay(1);
  2871. } while (!(GLOB_SFT_RST & t) && (i-- > 0));
  2872. if (!(GLOB_SFT_RST & t)) {
  2873. printk(KERN_ERR DRV_NAME ": can't set global reset\n");
  2874. rc = 1;
  2875. goto done;
  2876. }
  2877. /* clear reset and *reenable the PCI master* (not mentioned in spec) */
  2878. i = 5;
  2879. do {
  2880. writel(t & ~(GLOB_SFT_RST | STOP_PCI_MASTER), reg);
  2881. t = readl(reg);
  2882. udelay(1);
  2883. } while ((GLOB_SFT_RST & t) && (i-- > 0));
  2884. if (GLOB_SFT_RST & t) {
  2885. printk(KERN_ERR DRV_NAME ": can't clear global reset\n");
  2886. rc = 1;
  2887. }
  2888. done:
  2889. return rc;
  2890. }
  2891. static void mv6_read_preamp(struct mv_host_priv *hpriv, int idx,
  2892. void __iomem *mmio)
  2893. {
  2894. void __iomem *port_mmio;
  2895. u32 tmp;
  2896. tmp = readl(mmio + RESET_CFG);
  2897. if ((tmp & (1 << 0)) == 0) {
  2898. hpriv->signal[idx].amps = 0x7 << 8;
  2899. hpriv->signal[idx].pre = 0x1 << 5;
  2900. return;
  2901. }
  2902. port_mmio = mv_port_base(mmio, idx);
  2903. tmp = readl(port_mmio + PHY_MODE2);
  2904. hpriv->signal[idx].amps = tmp & 0x700; /* bits 10:8 */
  2905. hpriv->signal[idx].pre = tmp & 0xe0; /* bits 7:5 */
  2906. }
  2907. static void mv6_enable_leds(struct mv_host_priv *hpriv, void __iomem *mmio)
  2908. {
  2909. writel(0x00000060, mmio + GPIO_PORT_CTL);
  2910. }
  2911. static void mv6_phy_errata(struct mv_host_priv *hpriv, void __iomem *mmio,
  2912. unsigned int port)
  2913. {
  2914. void __iomem *port_mmio = mv_port_base(mmio, port);
  2915. u32 hp_flags = hpriv->hp_flags;
  2916. int fix_phy_mode2 =
  2917. hp_flags & (MV_HP_ERRATA_60X1B2 | MV_HP_ERRATA_60X1C0);
  2918. int fix_phy_mode4 =
  2919. hp_flags & (MV_HP_ERRATA_60X1B2 | MV_HP_ERRATA_60X1C0);
  2920. u32 m2, m3;
  2921. if (fix_phy_mode2) {
  2922. m2 = readl(port_mmio + PHY_MODE2);
  2923. m2 &= ~(1 << 16);
  2924. m2 |= (1 << 31);
  2925. writel(m2, port_mmio + PHY_MODE2);
  2926. udelay(200);
  2927. m2 = readl(port_mmio + PHY_MODE2);
  2928. m2 &= ~((1 << 16) | (1 << 31));
  2929. writel(m2, port_mmio + PHY_MODE2);
  2930. udelay(200);
  2931. }
  2932. /*
  2933. * Gen-II/IIe PHY_MODE3 errata RM#2:
  2934. * Achieves better receiver noise performance than the h/w default:
  2935. */
  2936. m3 = readl(port_mmio + PHY_MODE3);
  2937. m3 = (m3 & 0x1f) | (0x5555601 << 5);
  2938. /* Guideline 88F5182 (GL# SATA-S11) */
  2939. if (IS_SOC(hpriv))
  2940. m3 &= ~0x1c;
  2941. if (fix_phy_mode4) {
  2942. u32 m4 = readl(port_mmio + PHY_MODE4);
  2943. /*
  2944. * Enforce reserved-bit restrictions on GenIIe devices only.
  2945. * For earlier chipsets, force only the internal config field
  2946. * (workaround for errata FEr SATA#10 part 1).
  2947. */
  2948. if (IS_GEN_IIE(hpriv))
  2949. m4 = (m4 & ~PHY_MODE4_RSVD_ZEROS) | PHY_MODE4_RSVD_ONES;
  2950. else
  2951. m4 = (m4 & ~PHY_MODE4_CFG_MASK) | PHY_MODE4_CFG_VALUE;
  2952. writel(m4, port_mmio + PHY_MODE4);
  2953. }
  2954. /*
  2955. * Workaround for 60x1-B2 errata SATA#13:
  2956. * Any write to PHY_MODE4 (above) may corrupt PHY_MODE3,
  2957. * so we must always rewrite PHY_MODE3 after PHY_MODE4.
  2958. * Or ensure we use writelfl() when writing PHY_MODE4.
  2959. */
  2960. writel(m3, port_mmio + PHY_MODE3);
  2961. /* Revert values of pre-emphasis and signal amps to the saved ones */
  2962. m2 = readl(port_mmio + PHY_MODE2);
  2963. m2 &= ~MV_M2_PREAMP_MASK;
  2964. m2 |= hpriv->signal[port].amps;
  2965. m2 |= hpriv->signal[port].pre;
  2966. m2 &= ~(1 << 16);
  2967. /* according to mvSata 3.6.1, some IIE values are fixed */
  2968. if (IS_GEN_IIE(hpriv)) {
  2969. m2 &= ~0xC30FF01F;
  2970. m2 |= 0x0000900F;
  2971. }
  2972. writel(m2, port_mmio + PHY_MODE2);
  2973. }
  2974. /* TODO: use the generic LED interface to configure the SATA Presence */
  2975. /* & Acitivy LEDs on the board */
  2976. static void mv_soc_enable_leds(struct mv_host_priv *hpriv,
  2977. void __iomem *mmio)
  2978. {
  2979. return;
  2980. }
  2981. static void mv_soc_read_preamp(struct mv_host_priv *hpriv, int idx,
  2982. void __iomem *mmio)
  2983. {
  2984. void __iomem *port_mmio;
  2985. u32 tmp;
  2986. port_mmio = mv_port_base(mmio, idx);
  2987. tmp = readl(port_mmio + PHY_MODE2);
  2988. hpriv->signal[idx].amps = tmp & 0x700; /* bits 10:8 */
  2989. hpriv->signal[idx].pre = tmp & 0xe0; /* bits 7:5 */
  2990. }
  2991. #undef ZERO
  2992. #define ZERO(reg) writel(0, port_mmio + (reg))
  2993. static void mv_soc_reset_hc_port(struct mv_host_priv *hpriv,
  2994. void __iomem *mmio, unsigned int port)
  2995. {
  2996. void __iomem *port_mmio = mv_port_base(mmio, port);
  2997. mv_reset_channel(hpriv, mmio, port);
  2998. ZERO(0x028); /* command */
  2999. writel(0x101f, port_mmio + EDMA_CFG);
  3000. ZERO(0x004); /* timer */
  3001. ZERO(0x008); /* irq err cause */
  3002. ZERO(0x00c); /* irq err mask */
  3003. ZERO(0x010); /* rq bah */
  3004. ZERO(0x014); /* rq inp */
  3005. ZERO(0x018); /* rq outp */
  3006. ZERO(0x01c); /* respq bah */
  3007. ZERO(0x024); /* respq outp */
  3008. ZERO(0x020); /* respq inp */
  3009. ZERO(0x02c); /* test control */
  3010. writel(0x800, port_mmio + EDMA_IORDY_TMOUT);
  3011. }
  3012. #undef ZERO
  3013. #define ZERO(reg) writel(0, hc_mmio + (reg))
  3014. static void mv_soc_reset_one_hc(struct mv_host_priv *hpriv,
  3015. void __iomem *mmio)
  3016. {
  3017. void __iomem *hc_mmio = mv_hc_base(mmio, 0);
  3018. ZERO(0x00c);
  3019. ZERO(0x010);
  3020. ZERO(0x014);
  3021. }
  3022. #undef ZERO
  3023. static int mv_soc_reset_hc(struct mv_host_priv *hpriv,
  3024. void __iomem *mmio, unsigned int n_hc)
  3025. {
  3026. unsigned int port;
  3027. for (port = 0; port < hpriv->n_ports; port++)
  3028. mv_soc_reset_hc_port(hpriv, mmio, port);
  3029. mv_soc_reset_one_hc(hpriv, mmio);
  3030. return 0;
  3031. }
  3032. static void mv_soc_reset_flash(struct mv_host_priv *hpriv,
  3033. void __iomem *mmio)
  3034. {
  3035. return;
  3036. }
  3037. static void mv_soc_reset_bus(struct ata_host *host, void __iomem *mmio)
  3038. {
  3039. return;
  3040. }
  3041. static void mv_soc_65n_phy_errata(struct mv_host_priv *hpriv,
  3042. void __iomem *mmio, unsigned int port)
  3043. {
  3044. void __iomem *port_mmio = mv_port_base(mmio, port);
  3045. u32 reg;
  3046. reg = readl(port_mmio + PHY_MODE3);
  3047. reg &= ~(0x3 << 27); /* SELMUPF (bits 28:27) to 1 */
  3048. reg |= (0x1 << 27);
  3049. reg &= ~(0x3 << 29); /* SELMUPI (bits 30:29) to 1 */
  3050. reg |= (0x1 << 29);
  3051. writel(reg, port_mmio + PHY_MODE3);
  3052. reg = readl(port_mmio + PHY_MODE4);
  3053. reg &= ~0x1; /* SATU_OD8 (bit 0) to 0, reserved bit 16 must be set */
  3054. reg |= (0x1 << 16);
  3055. writel(reg, port_mmio + PHY_MODE4);
  3056. reg = readl(port_mmio + PHY_MODE9_GEN2);
  3057. reg &= ~0xf; /* TXAMP[3:0] (bits 3:0) to 8 */
  3058. reg |= 0x8;
  3059. reg &= ~(0x1 << 14); /* TXAMP[4] (bit 14) to 0 */
  3060. writel(reg, port_mmio + PHY_MODE9_GEN2);
  3061. reg = readl(port_mmio + PHY_MODE9_GEN1);
  3062. reg &= ~0xf; /* TXAMP[3:0] (bits 3:0) to 8 */
  3063. reg |= 0x8;
  3064. reg &= ~(0x1 << 14); /* TXAMP[4] (bit 14) to 0 */
  3065. writel(reg, port_mmio + PHY_MODE9_GEN1);
  3066. }
  3067. /**
  3068. * soc_is_65 - check if the soc is 65 nano device
  3069. *
  3070. * Detect the type of the SoC, this is done by reading the PHYCFG_OFS
  3071. * register, this register should contain non-zero value and it exists only
  3072. * in the 65 nano devices, when reading it from older devices we get 0.
  3073. */
  3074. static bool soc_is_65n(struct mv_host_priv *hpriv)
  3075. {
  3076. void __iomem *port0_mmio = mv_port_base(hpriv->base, 0);
  3077. if (readl(port0_mmio + PHYCFG_OFS))
  3078. return true;
  3079. return false;
  3080. }
  3081. static void mv_setup_ifcfg(void __iomem *port_mmio, int want_gen2i)
  3082. {
  3083. u32 ifcfg = readl(port_mmio + SATA_IFCFG);
  3084. ifcfg = (ifcfg & 0xf7f) | 0x9b1000; /* from chip spec */
  3085. if (want_gen2i)
  3086. ifcfg |= (1 << 7); /* enable gen2i speed */
  3087. writelfl(ifcfg, port_mmio + SATA_IFCFG);
  3088. }
  3089. static void mv_reset_channel(struct mv_host_priv *hpriv, void __iomem *mmio,
  3090. unsigned int port_no)
  3091. {
  3092. void __iomem *port_mmio = mv_port_base(mmio, port_no);
  3093. /*
  3094. * The datasheet warns against setting EDMA_RESET when EDMA is active
  3095. * (but doesn't say what the problem might be). So we first try
  3096. * to disable the EDMA engine before doing the EDMA_RESET operation.
  3097. */
  3098. mv_stop_edma_engine(port_mmio);
  3099. writelfl(EDMA_RESET, port_mmio + EDMA_CMD);
  3100. if (!IS_GEN_I(hpriv)) {
  3101. /* Enable 3.0gb/s link speed: this survives EDMA_RESET */
  3102. mv_setup_ifcfg(port_mmio, 1);
  3103. }
  3104. /*
  3105. * Strobing EDMA_RESET here causes a hard reset of the SATA transport,
  3106. * link, and physical layers. It resets all SATA interface registers
  3107. * (except for SATA_IFCFG), and issues a COMRESET to the dev.
  3108. */
  3109. writelfl(EDMA_RESET, port_mmio + EDMA_CMD);
  3110. udelay(25); /* allow reset propagation */
  3111. writelfl(0, port_mmio + EDMA_CMD);
  3112. hpriv->ops->phy_errata(hpriv, mmio, port_no);
  3113. if (IS_GEN_I(hpriv))
  3114. mdelay(1);
  3115. }
  3116. static void mv_pmp_select(struct ata_port *ap, int pmp)
  3117. {
  3118. if (sata_pmp_supported(ap)) {
  3119. void __iomem *port_mmio = mv_ap_base(ap);
  3120. u32 reg = readl(port_mmio + SATA_IFCTL);
  3121. int old = reg & 0xf;
  3122. if (old != pmp) {
  3123. reg = (reg & ~0xf) | pmp;
  3124. writelfl(reg, port_mmio + SATA_IFCTL);
  3125. }
  3126. }
  3127. }
  3128. static int mv_pmp_hardreset(struct ata_link *link, unsigned int *class,
  3129. unsigned long deadline)
  3130. {
  3131. mv_pmp_select(link->ap, sata_srst_pmp(link));
  3132. return sata_std_hardreset(link, class, deadline);
  3133. }
  3134. static int mv_softreset(struct ata_link *link, unsigned int *class,
  3135. unsigned long deadline)
  3136. {
  3137. mv_pmp_select(link->ap, sata_srst_pmp(link));
  3138. return ata_sff_softreset(link, class, deadline);
  3139. }
  3140. static int mv_hardreset(struct ata_link *link, unsigned int *class,
  3141. unsigned long deadline)
  3142. {
  3143. struct ata_port *ap = link->ap;
  3144. struct mv_host_priv *hpriv = ap->host->private_data;
  3145. struct mv_port_priv *pp = ap->private_data;
  3146. void __iomem *mmio = hpriv->base;
  3147. int rc, attempts = 0, extra = 0;
  3148. u32 sstatus;
  3149. bool online;
  3150. mv_reset_channel(hpriv, mmio, ap->port_no);
  3151. pp->pp_flags &= ~MV_PP_FLAG_EDMA_EN;
  3152. pp->pp_flags &=
  3153. ~(MV_PP_FLAG_FBS_EN | MV_PP_FLAG_NCQ_EN | MV_PP_FLAG_FAKE_ATA_BUSY);
  3154. /* Workaround for errata FEr SATA#10 (part 2) */
  3155. do {
  3156. const unsigned long *timing =
  3157. sata_ehc_deb_timing(&link->eh_context);
  3158. rc = sata_link_hardreset(link, timing, deadline + extra,
  3159. &online, NULL);
  3160. rc = online ? -EAGAIN : rc;
  3161. if (rc)
  3162. return rc;
  3163. sata_scr_read(link, SCR_STATUS, &sstatus);
  3164. if (!IS_GEN_I(hpriv) && ++attempts >= 5 && sstatus == 0x121) {
  3165. /* Force 1.5gb/s link speed and try again */
  3166. mv_setup_ifcfg(mv_ap_base(ap), 0);
  3167. if (time_after(jiffies + HZ, deadline))
  3168. extra = HZ; /* only extend it once, max */
  3169. }
  3170. } while (sstatus != 0x0 && sstatus != 0x113 && sstatus != 0x123);
  3171. mv_save_cached_regs(ap);
  3172. mv_edma_cfg(ap, 0, 0);
  3173. return rc;
  3174. }
  3175. static void mv_eh_freeze(struct ata_port *ap)
  3176. {
  3177. mv_stop_edma(ap);
  3178. mv_enable_port_irqs(ap, 0);
  3179. }
  3180. static void mv_eh_thaw(struct ata_port *ap)
  3181. {
  3182. struct mv_host_priv *hpriv = ap->host->private_data;
  3183. unsigned int port = ap->port_no;
  3184. unsigned int hardport = mv_hardport_from_port(port);
  3185. void __iomem *hc_mmio = mv_hc_base_from_port(hpriv->base, port);
  3186. void __iomem *port_mmio = mv_ap_base(ap);
  3187. u32 hc_irq_cause;
  3188. /* clear EDMA errors on this port */
  3189. writel(0, port_mmio + EDMA_ERR_IRQ_CAUSE);
  3190. /* clear pending irq events */
  3191. hc_irq_cause = ~((DEV_IRQ | DMA_IRQ) << hardport);
  3192. writelfl(hc_irq_cause, hc_mmio + HC_IRQ_CAUSE);
  3193. mv_enable_port_irqs(ap, ERR_IRQ);
  3194. }
  3195. /**
  3196. * mv_port_init - Perform some early initialization on a single port.
  3197. * @port: libata data structure storing shadow register addresses
  3198. * @port_mmio: base address of the port
  3199. *
  3200. * Initialize shadow register mmio addresses, clear outstanding
  3201. * interrupts on the port, and unmask interrupts for the future
  3202. * start of the port.
  3203. *
  3204. * LOCKING:
  3205. * Inherited from caller.
  3206. */
  3207. static void mv_port_init(struct ata_ioports *port, void __iomem *port_mmio)
  3208. {
  3209. void __iomem *serr, *shd_base = port_mmio + SHD_BLK;
  3210. /* PIO related setup
  3211. */
  3212. port->data_addr = shd_base + (sizeof(u32) * ATA_REG_DATA);
  3213. port->error_addr =
  3214. port->feature_addr = shd_base + (sizeof(u32) * ATA_REG_ERR);
  3215. port->nsect_addr = shd_base + (sizeof(u32) * ATA_REG_NSECT);
  3216. port->lbal_addr = shd_base + (sizeof(u32) * ATA_REG_LBAL);
  3217. port->lbam_addr = shd_base + (sizeof(u32) * ATA_REG_LBAM);
  3218. port->lbah_addr = shd_base + (sizeof(u32) * ATA_REG_LBAH);
  3219. port->device_addr = shd_base + (sizeof(u32) * ATA_REG_DEVICE);
  3220. port->status_addr =
  3221. port->command_addr = shd_base + (sizeof(u32) * ATA_REG_STATUS);
  3222. /* special case: control/altstatus doesn't have ATA_REG_ address */
  3223. port->altstatus_addr = port->ctl_addr = shd_base + SHD_CTL_AST;
  3224. /* Clear any currently outstanding port interrupt conditions */
  3225. serr = port_mmio + mv_scr_offset(SCR_ERROR);
  3226. writelfl(readl(serr), serr);
  3227. writelfl(0, port_mmio + EDMA_ERR_IRQ_CAUSE);
  3228. /* unmask all non-transient EDMA error interrupts */
  3229. writelfl(~EDMA_ERR_IRQ_TRANSIENT, port_mmio + EDMA_ERR_IRQ_MASK);
  3230. VPRINTK("EDMA cfg=0x%08x EDMA IRQ err cause/mask=0x%08x/0x%08x\n",
  3231. readl(port_mmio + EDMA_CFG),
  3232. readl(port_mmio + EDMA_ERR_IRQ_CAUSE),
  3233. readl(port_mmio + EDMA_ERR_IRQ_MASK));
  3234. }
  3235. static unsigned int mv_in_pcix_mode(struct ata_host *host)
  3236. {
  3237. struct mv_host_priv *hpriv = host->private_data;
  3238. void __iomem *mmio = hpriv->base;
  3239. u32 reg;
  3240. if (IS_SOC(hpriv) || !IS_PCIE(hpriv))
  3241. return 0; /* not PCI-X capable */
  3242. reg = readl(mmio + MV_PCI_MODE);
  3243. if ((reg & MV_PCI_MODE_MASK) == 0)
  3244. return 0; /* conventional PCI mode */
  3245. return 1; /* chip is in PCI-X mode */
  3246. }
  3247. static int mv_pci_cut_through_okay(struct ata_host *host)
  3248. {
  3249. struct mv_host_priv *hpriv = host->private_data;
  3250. void __iomem *mmio = hpriv->base;
  3251. u32 reg;
  3252. if (!mv_in_pcix_mode(host)) {
  3253. reg = readl(mmio + MV_PCI_COMMAND);
  3254. if (reg & MV_PCI_COMMAND_MRDTRIG)
  3255. return 0; /* not okay */
  3256. }
  3257. return 1; /* okay */
  3258. }
  3259. static void mv_60x1b2_errata_pci7(struct ata_host *host)
  3260. {
  3261. struct mv_host_priv *hpriv = host->private_data;
  3262. void __iomem *mmio = hpriv->base;
  3263. /* workaround for 60x1-B2 errata PCI#7 */
  3264. if (mv_in_pcix_mode(host)) {
  3265. u32 reg = readl(mmio + MV_PCI_COMMAND);
  3266. writelfl(reg & ~MV_PCI_COMMAND_MWRCOM, mmio + MV_PCI_COMMAND);
  3267. }
  3268. }
  3269. static int mv_chip_id(struct ata_host *host, unsigned int board_idx)
  3270. {
  3271. struct pci_dev *pdev = to_pci_dev(host->dev);
  3272. struct mv_host_priv *hpriv = host->private_data;
  3273. u32 hp_flags = hpriv->hp_flags;
  3274. switch (board_idx) {
  3275. case chip_5080:
  3276. hpriv->ops = &mv5xxx_ops;
  3277. hp_flags |= MV_HP_GEN_I;
  3278. switch (pdev->revision) {
  3279. case 0x1:
  3280. hp_flags |= MV_HP_ERRATA_50XXB0;
  3281. break;
  3282. case 0x3:
  3283. hp_flags |= MV_HP_ERRATA_50XXB2;
  3284. break;
  3285. default:
  3286. dev_printk(KERN_WARNING, &pdev->dev,
  3287. "Applying 50XXB2 workarounds to unknown rev\n");
  3288. hp_flags |= MV_HP_ERRATA_50XXB2;
  3289. break;
  3290. }
  3291. break;
  3292. case chip_504x:
  3293. case chip_508x:
  3294. hpriv->ops = &mv5xxx_ops;
  3295. hp_flags |= MV_HP_GEN_I;
  3296. switch (pdev->revision) {
  3297. case 0x0:
  3298. hp_flags |= MV_HP_ERRATA_50XXB0;
  3299. break;
  3300. case 0x3:
  3301. hp_flags |= MV_HP_ERRATA_50XXB2;
  3302. break;
  3303. default:
  3304. dev_printk(KERN_WARNING, &pdev->dev,
  3305. "Applying B2 workarounds to unknown rev\n");
  3306. hp_flags |= MV_HP_ERRATA_50XXB2;
  3307. break;
  3308. }
  3309. break;
  3310. case chip_604x:
  3311. case chip_608x:
  3312. hpriv->ops = &mv6xxx_ops;
  3313. hp_flags |= MV_HP_GEN_II;
  3314. switch (pdev->revision) {
  3315. case 0x7:
  3316. mv_60x1b2_errata_pci7(host);
  3317. hp_flags |= MV_HP_ERRATA_60X1B2;
  3318. break;
  3319. case 0x9:
  3320. hp_flags |= MV_HP_ERRATA_60X1C0;
  3321. break;
  3322. default:
  3323. dev_printk(KERN_WARNING, &pdev->dev,
  3324. "Applying B2 workarounds to unknown rev\n");
  3325. hp_flags |= MV_HP_ERRATA_60X1B2;
  3326. break;
  3327. }
  3328. break;
  3329. case chip_7042:
  3330. hp_flags |= MV_HP_PCIE | MV_HP_CUT_THROUGH;
  3331. if (pdev->vendor == PCI_VENDOR_ID_TTI &&
  3332. (pdev->device == 0x2300 || pdev->device == 0x2310))
  3333. {
  3334. /*
  3335. * Highpoint RocketRAID PCIe 23xx series cards:
  3336. *
  3337. * Unconfigured drives are treated as "Legacy"
  3338. * by the BIOS, and it overwrites sector 8 with
  3339. * a "Lgcy" metadata block prior to Linux boot.
  3340. *
  3341. * Configured drives (RAID or JBOD) leave sector 8
  3342. * alone, but instead overwrite a high numbered
  3343. * sector for the RAID metadata. This sector can
  3344. * be determined exactly, by truncating the physical
  3345. * drive capacity to a nice even GB value.
  3346. *
  3347. * RAID metadata is at: (dev->n_sectors & ~0xfffff)
  3348. *
  3349. * Warn the user, lest they think we're just buggy.
  3350. */
  3351. printk(KERN_WARNING DRV_NAME ": Highpoint RocketRAID"
  3352. " BIOS CORRUPTS DATA on all attached drives,"
  3353. " regardless of if/how they are configured."
  3354. " BEWARE!\n");
  3355. printk(KERN_WARNING DRV_NAME ": For data safety, do not"
  3356. " use sectors 8-9 on \"Legacy\" drives,"
  3357. " and avoid the final two gigabytes on"
  3358. " all RocketRAID BIOS initialized drives.\n");
  3359. }
  3360. /* drop through */
  3361. case chip_6042:
  3362. hpriv->ops = &mv6xxx_ops;
  3363. hp_flags |= MV_HP_GEN_IIE;
  3364. if (board_idx == chip_6042 && mv_pci_cut_through_okay(host))
  3365. hp_flags |= MV_HP_CUT_THROUGH;
  3366. switch (pdev->revision) {
  3367. case 0x2: /* Rev.B0: the first/only public release */
  3368. hp_flags |= MV_HP_ERRATA_60X1C0;
  3369. break;
  3370. default:
  3371. dev_printk(KERN_WARNING, &pdev->dev,
  3372. "Applying 60X1C0 workarounds to unknown rev\n");
  3373. hp_flags |= MV_HP_ERRATA_60X1C0;
  3374. break;
  3375. }
  3376. break;
  3377. case chip_soc:
  3378. if (soc_is_65n(hpriv))
  3379. hpriv->ops = &mv_soc_65n_ops;
  3380. else
  3381. hpriv->ops = &mv_soc_ops;
  3382. hp_flags |= MV_HP_FLAG_SOC | MV_HP_GEN_IIE |
  3383. MV_HP_ERRATA_60X1C0;
  3384. break;
  3385. default:
  3386. dev_printk(KERN_ERR, host->dev,
  3387. "BUG: invalid board index %u\n", board_idx);
  3388. return 1;
  3389. }
  3390. hpriv->hp_flags = hp_flags;
  3391. if (hp_flags & MV_HP_PCIE) {
  3392. hpriv->irq_cause_offset = PCIE_IRQ_CAUSE;
  3393. hpriv->irq_mask_offset = PCIE_IRQ_MASK;
  3394. hpriv->unmask_all_irqs = PCIE_UNMASK_ALL_IRQS;
  3395. } else {
  3396. hpriv->irq_cause_offset = PCI_IRQ_CAUSE;
  3397. hpriv->irq_mask_offset = PCI_IRQ_MASK;
  3398. hpriv->unmask_all_irqs = PCI_UNMASK_ALL_IRQS;
  3399. }
  3400. return 0;
  3401. }
  3402. /**
  3403. * mv_init_host - Perform some early initialization of the host.
  3404. * @host: ATA host to initialize
  3405. *
  3406. * If possible, do an early global reset of the host. Then do
  3407. * our port init and clear/unmask all/relevant host interrupts.
  3408. *
  3409. * LOCKING:
  3410. * Inherited from caller.
  3411. */
  3412. static int mv_init_host(struct ata_host *host)
  3413. {
  3414. int rc = 0, n_hc, port, hc;
  3415. struct mv_host_priv *hpriv = host->private_data;
  3416. void __iomem *mmio = hpriv->base;
  3417. rc = mv_chip_id(host, hpriv->board_idx);
  3418. if (rc)
  3419. goto done;
  3420. if (IS_SOC(hpriv)) {
  3421. hpriv->main_irq_cause_addr = mmio + SOC_HC_MAIN_IRQ_CAUSE;
  3422. hpriv->main_irq_mask_addr = mmio + SOC_HC_MAIN_IRQ_MASK;
  3423. } else {
  3424. hpriv->main_irq_cause_addr = mmio + PCI_HC_MAIN_IRQ_CAUSE;
  3425. hpriv->main_irq_mask_addr = mmio + PCI_HC_MAIN_IRQ_MASK;
  3426. }
  3427. /* initialize shadow irq mask with register's value */
  3428. hpriv->main_irq_mask = readl(hpriv->main_irq_mask_addr);
  3429. /* global interrupt mask: 0 == mask everything */
  3430. mv_set_main_irq_mask(host, ~0, 0);
  3431. n_hc = mv_get_hc_count(host->ports[0]->flags);
  3432. for (port = 0; port < host->n_ports; port++)
  3433. if (hpriv->ops->read_preamp)
  3434. hpriv->ops->read_preamp(hpriv, port, mmio);
  3435. rc = hpriv->ops->reset_hc(hpriv, mmio, n_hc);
  3436. if (rc)
  3437. goto done;
  3438. hpriv->ops->reset_flash(hpriv, mmio);
  3439. hpriv->ops->reset_bus(host, mmio);
  3440. hpriv->ops->enable_leds(hpriv, mmio);
  3441. for (port = 0; port < host->n_ports; port++) {
  3442. struct ata_port *ap = host->ports[port];
  3443. void __iomem *port_mmio = mv_port_base(mmio, port);
  3444. mv_port_init(&ap->ioaddr, port_mmio);
  3445. }
  3446. for (hc = 0; hc < n_hc; hc++) {
  3447. void __iomem *hc_mmio = mv_hc_base(mmio, hc);
  3448. VPRINTK("HC%i: HC config=0x%08x HC IRQ cause "
  3449. "(before clear)=0x%08x\n", hc,
  3450. readl(hc_mmio + HC_CFG),
  3451. readl(hc_mmio + HC_IRQ_CAUSE));
  3452. /* Clear any currently outstanding hc interrupt conditions */
  3453. writelfl(0, hc_mmio + HC_IRQ_CAUSE);
  3454. }
  3455. if (!IS_SOC(hpriv)) {
  3456. /* Clear any currently outstanding host interrupt conditions */
  3457. writelfl(0, mmio + hpriv->irq_cause_offset);
  3458. /* and unmask interrupt generation for host regs */
  3459. writelfl(hpriv->unmask_all_irqs, mmio + hpriv->irq_mask_offset);
  3460. }
  3461. /*
  3462. * enable only global host interrupts for now.
  3463. * The per-port interrupts get done later as ports are set up.
  3464. */
  3465. mv_set_main_irq_mask(host, 0, PCI_ERR);
  3466. mv_set_irq_coalescing(host, irq_coalescing_io_count,
  3467. irq_coalescing_usecs);
  3468. done:
  3469. return rc;
  3470. }
  3471. static int mv_create_dma_pools(struct mv_host_priv *hpriv, struct device *dev)
  3472. {
  3473. hpriv->crqb_pool = dmam_pool_create("crqb_q", dev, MV_CRQB_Q_SZ,
  3474. MV_CRQB_Q_SZ, 0);
  3475. if (!hpriv->crqb_pool)
  3476. return -ENOMEM;
  3477. hpriv->crpb_pool = dmam_pool_create("crpb_q", dev, MV_CRPB_Q_SZ,
  3478. MV_CRPB_Q_SZ, 0);
  3479. if (!hpriv->crpb_pool)
  3480. return -ENOMEM;
  3481. hpriv->sg_tbl_pool = dmam_pool_create("sg_tbl", dev, MV_SG_TBL_SZ,
  3482. MV_SG_TBL_SZ, 0);
  3483. if (!hpriv->sg_tbl_pool)
  3484. return -ENOMEM;
  3485. return 0;
  3486. }
  3487. static void mv_conf_mbus_windows(struct mv_host_priv *hpriv,
  3488. struct mbus_dram_target_info *dram)
  3489. {
  3490. int i;
  3491. for (i = 0; i < 4; i++) {
  3492. writel(0, hpriv->base + WINDOW_CTRL(i));
  3493. writel(0, hpriv->base + WINDOW_BASE(i));
  3494. }
  3495. for (i = 0; i < dram->num_cs; i++) {
  3496. struct mbus_dram_window *cs = dram->cs + i;
  3497. writel(((cs->size - 1) & 0xffff0000) |
  3498. (cs->mbus_attr << 8) |
  3499. (dram->mbus_dram_target_id << 4) | 1,
  3500. hpriv->base + WINDOW_CTRL(i));
  3501. writel(cs->base, hpriv->base + WINDOW_BASE(i));
  3502. }
  3503. }
  3504. /**
  3505. * mv_platform_probe - handle a positive probe of an soc Marvell
  3506. * host
  3507. * @pdev: platform device found
  3508. *
  3509. * LOCKING:
  3510. * Inherited from caller.
  3511. */
  3512. static int mv_platform_probe(struct platform_device *pdev)
  3513. {
  3514. static int printed_version;
  3515. const struct mv_sata_platform_data *mv_platform_data;
  3516. const struct ata_port_info *ppi[] =
  3517. { &mv_port_info[chip_soc], NULL };
  3518. struct ata_host *host;
  3519. struct mv_host_priv *hpriv;
  3520. struct resource *res;
  3521. int n_ports, rc;
  3522. if (!printed_version++)
  3523. dev_printk(KERN_INFO, &pdev->dev, "version " DRV_VERSION "\n");
  3524. /*
  3525. * Simple resource validation ..
  3526. */
  3527. if (unlikely(pdev->num_resources != 2)) {
  3528. dev_err(&pdev->dev, "invalid number of resources\n");
  3529. return -EINVAL;
  3530. }
  3531. /*
  3532. * Get the register base first
  3533. */
  3534. res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
  3535. if (res == NULL)
  3536. return -EINVAL;
  3537. /* allocate host */
  3538. mv_platform_data = pdev->dev.platform_data;
  3539. n_ports = mv_platform_data->n_ports;
  3540. host = ata_host_alloc_pinfo(&pdev->dev, ppi, n_ports);
  3541. hpriv = devm_kzalloc(&pdev->dev, sizeof(*hpriv), GFP_KERNEL);
  3542. if (!host || !hpriv)
  3543. return -ENOMEM;
  3544. host->private_data = hpriv;
  3545. hpriv->n_ports = n_ports;
  3546. hpriv->board_idx = chip_soc;
  3547. host->iomap = NULL;
  3548. hpriv->base = devm_ioremap(&pdev->dev, res->start,
  3549. resource_size(res));
  3550. hpriv->base -= SATAHC0_REG_BASE;
  3551. #if defined(CONFIG_HAVE_CLK)
  3552. hpriv->clk = clk_get(&pdev->dev, NULL);
  3553. if (IS_ERR(hpriv->clk))
  3554. dev_notice(&pdev->dev, "cannot get clkdev\n");
  3555. else
  3556. clk_enable(hpriv->clk);
  3557. #endif
  3558. /*
  3559. * (Re-)program MBUS remapping windows if we are asked to.
  3560. */
  3561. if (mv_platform_data->dram != NULL)
  3562. mv_conf_mbus_windows(hpriv, mv_platform_data->dram);
  3563. rc = mv_create_dma_pools(hpriv, &pdev->dev);
  3564. if (rc)
  3565. goto err;
  3566. /* initialize adapter */
  3567. rc = mv_init_host(host);
  3568. if (rc)
  3569. goto err;
  3570. dev_printk(KERN_INFO, &pdev->dev,
  3571. "slots %u ports %d\n", (unsigned)MV_MAX_Q_DEPTH,
  3572. host->n_ports);
  3573. return ata_host_activate(host, platform_get_irq(pdev, 0), mv_interrupt,
  3574. IRQF_SHARED, &mv6_sht);
  3575. err:
  3576. #if defined(CONFIG_HAVE_CLK)
  3577. if (!IS_ERR(hpriv->clk)) {
  3578. clk_disable(hpriv->clk);
  3579. clk_put(hpriv->clk);
  3580. }
  3581. #endif
  3582. return rc;
  3583. }
  3584. /*
  3585. *
  3586. * mv_platform_remove - unplug a platform interface
  3587. * @pdev: platform device
  3588. *
  3589. * A platform bus SATA device has been unplugged. Perform the needed
  3590. * cleanup. Also called on module unload for any active devices.
  3591. */
  3592. static int __devexit mv_platform_remove(struct platform_device *pdev)
  3593. {
  3594. struct device *dev = &pdev->dev;
  3595. struct ata_host *host = dev_get_drvdata(dev);
  3596. #if defined(CONFIG_HAVE_CLK)
  3597. struct mv_host_priv *hpriv = host->private_data;
  3598. #endif
  3599. ata_host_detach(host);
  3600. #if defined(CONFIG_HAVE_CLK)
  3601. if (!IS_ERR(hpriv->clk)) {
  3602. clk_disable(hpriv->clk);
  3603. clk_put(hpriv->clk);
  3604. }
  3605. #endif
  3606. return 0;
  3607. }
  3608. #ifdef CONFIG_PM
  3609. static int mv_platform_suspend(struct platform_device *pdev, pm_message_t state)
  3610. {
  3611. struct ata_host *host = dev_get_drvdata(&pdev->dev);
  3612. if (host)
  3613. return ata_host_suspend(host, state);
  3614. else
  3615. return 0;
  3616. }
  3617. static int mv_platform_resume(struct platform_device *pdev)
  3618. {
  3619. struct ata_host *host = dev_get_drvdata(&pdev->dev);
  3620. int ret;
  3621. if (host) {
  3622. struct mv_host_priv *hpriv = host->private_data;
  3623. const struct mv_sata_platform_data *mv_platform_data = \
  3624. pdev->dev.platform_data;
  3625. /*
  3626. * (Re-)program MBUS remapping windows if we are asked to.
  3627. */
  3628. if (mv_platform_data->dram != NULL)
  3629. mv_conf_mbus_windows(hpriv, mv_platform_data->dram);
  3630. /* initialize adapter */
  3631. ret = mv_init_host(host);
  3632. if (ret) {
  3633. printk(KERN_ERR DRV_NAME ": Error during HW init\n");
  3634. return ret;
  3635. }
  3636. ata_host_resume(host);
  3637. }
  3638. return 0;
  3639. }
  3640. #else
  3641. #define mv_platform_suspend NULL
  3642. #define mv_platform_resume NULL
  3643. #endif
  3644. static struct platform_driver mv_platform_driver = {
  3645. .probe = mv_platform_probe,
  3646. .remove = __devexit_p(mv_platform_remove),
  3647. .suspend = mv_platform_suspend,
  3648. .resume = mv_platform_resume,
  3649. .driver = {
  3650. .name = DRV_NAME,
  3651. .owner = THIS_MODULE,
  3652. },
  3653. };
  3654. #ifdef CONFIG_PCI
  3655. static int mv_pci_init_one(struct pci_dev *pdev,
  3656. const struct pci_device_id *ent);
  3657. #ifdef CONFIG_PM
  3658. static int mv_pci_device_resume(struct pci_dev *pdev);
  3659. #endif
  3660. static struct pci_driver mv_pci_driver = {
  3661. .name = DRV_NAME,
  3662. .id_table = mv_pci_tbl,
  3663. .probe = mv_pci_init_one,
  3664. .remove = ata_pci_remove_one,
  3665. #ifdef CONFIG_PM
  3666. .suspend = ata_pci_device_suspend,
  3667. .resume = mv_pci_device_resume,
  3668. #endif
  3669. };
  3670. /* move to PCI layer or libata core? */
  3671. static int pci_go_64(struct pci_dev *pdev)
  3672. {
  3673. int rc;
  3674. if (!pci_set_dma_mask(pdev, DMA_BIT_MASK(64))) {
  3675. rc = pci_set_consistent_dma_mask(pdev, DMA_BIT_MASK(64));
  3676. if (rc) {
  3677. rc = pci_set_consistent_dma_mask(pdev, DMA_BIT_MASK(32));
  3678. if (rc) {
  3679. dev_printk(KERN_ERR, &pdev->dev,
  3680. "64-bit DMA enable failed\n");
  3681. return rc;
  3682. }
  3683. }
  3684. } else {
  3685. rc = pci_set_dma_mask(pdev, DMA_BIT_MASK(32));
  3686. if (rc) {
  3687. dev_printk(KERN_ERR, &pdev->dev,
  3688. "32-bit DMA enable failed\n");
  3689. return rc;
  3690. }
  3691. rc = pci_set_consistent_dma_mask(pdev, DMA_BIT_MASK(32));
  3692. if (rc) {
  3693. dev_printk(KERN_ERR, &pdev->dev,
  3694. "32-bit consistent DMA enable failed\n");
  3695. return rc;
  3696. }
  3697. }
  3698. return rc;
  3699. }
  3700. /**
  3701. * mv_print_info - Dump key info to kernel log for perusal.
  3702. * @host: ATA host to print info about
  3703. *
  3704. * FIXME: complete this.
  3705. *
  3706. * LOCKING:
  3707. * Inherited from caller.
  3708. */
  3709. static void mv_print_info(struct ata_host *host)
  3710. {
  3711. struct pci_dev *pdev = to_pci_dev(host->dev);
  3712. struct mv_host_priv *hpriv = host->private_data;
  3713. u8 scc;
  3714. const char *scc_s, *gen;
  3715. /* Use this to determine the HW stepping of the chip so we know
  3716. * what errata to workaround
  3717. */
  3718. pci_read_config_byte(pdev, PCI_CLASS_DEVICE, &scc);
  3719. if (scc == 0)
  3720. scc_s = "SCSI";
  3721. else if (scc == 0x01)
  3722. scc_s = "RAID";
  3723. else
  3724. scc_s = "?";
  3725. if (IS_GEN_I(hpriv))
  3726. gen = "I";
  3727. else if (IS_GEN_II(hpriv))
  3728. gen = "II";
  3729. else if (IS_GEN_IIE(hpriv))
  3730. gen = "IIE";
  3731. else
  3732. gen = "?";
  3733. dev_printk(KERN_INFO, &pdev->dev,
  3734. "Gen-%s %u slots %u ports %s mode IRQ via %s\n",
  3735. gen, (unsigned)MV_MAX_Q_DEPTH, host->n_ports,
  3736. scc_s, (MV_HP_FLAG_MSI & hpriv->hp_flags) ? "MSI" : "INTx");
  3737. }
  3738. /**
  3739. * mv_pci_init_one - handle a positive probe of a PCI Marvell host
  3740. * @pdev: PCI device found
  3741. * @ent: PCI device ID entry for the matched host
  3742. *
  3743. * LOCKING:
  3744. * Inherited from caller.
  3745. */
  3746. static int mv_pci_init_one(struct pci_dev *pdev,
  3747. const struct pci_device_id *ent)
  3748. {
  3749. static int printed_version;
  3750. unsigned int board_idx = (unsigned int)ent->driver_data;
  3751. const struct ata_port_info *ppi[] = { &mv_port_info[board_idx], NULL };
  3752. struct ata_host *host;
  3753. struct mv_host_priv *hpriv;
  3754. int n_ports, port, rc;
  3755. if (!printed_version++)
  3756. dev_printk(KERN_INFO, &pdev->dev, "version " DRV_VERSION "\n");
  3757. /* allocate host */
  3758. n_ports = mv_get_hc_count(ppi[0]->flags) * MV_PORTS_PER_HC;
  3759. host = ata_host_alloc_pinfo(&pdev->dev, ppi, n_ports);
  3760. hpriv = devm_kzalloc(&pdev->dev, sizeof(*hpriv), GFP_KERNEL);
  3761. if (!host || !hpriv)
  3762. return -ENOMEM;
  3763. host->private_data = hpriv;
  3764. hpriv->n_ports = n_ports;
  3765. hpriv->board_idx = board_idx;
  3766. /* acquire resources */
  3767. rc = pcim_enable_device(pdev);
  3768. if (rc)
  3769. return rc;
  3770. rc = pcim_iomap_regions(pdev, 1 << MV_PRIMARY_BAR, DRV_NAME);
  3771. if (rc == -EBUSY)
  3772. pcim_pin_device(pdev);
  3773. if (rc)
  3774. return rc;
  3775. host->iomap = pcim_iomap_table(pdev);
  3776. hpriv->base = host->iomap[MV_PRIMARY_BAR];
  3777. rc = pci_go_64(pdev);
  3778. if (rc)
  3779. return rc;
  3780. rc = mv_create_dma_pools(hpriv, &pdev->dev);
  3781. if (rc)
  3782. return rc;
  3783. for (port = 0; port < host->n_ports; port++) {
  3784. struct ata_port *ap = host->ports[port];
  3785. void __iomem *port_mmio = mv_port_base(hpriv->base, port);
  3786. unsigned int offset = port_mmio - hpriv->base;
  3787. ata_port_pbar_desc(ap, MV_PRIMARY_BAR, -1, "mmio");
  3788. ata_port_pbar_desc(ap, MV_PRIMARY_BAR, offset, "port");
  3789. }
  3790. /* initialize adapter */
  3791. rc = mv_init_host(host);
  3792. if (rc)
  3793. return rc;
  3794. /* Enable message-switched interrupts, if requested */
  3795. if (msi && pci_enable_msi(pdev) == 0)
  3796. hpriv->hp_flags |= MV_HP_FLAG_MSI;
  3797. mv_dump_pci_cfg(pdev, 0x68);
  3798. mv_print_info(host);
  3799. pci_set_master(pdev);
  3800. pci_try_set_mwi(pdev);
  3801. return ata_host_activate(host, pdev->irq, mv_interrupt, IRQF_SHARED,
  3802. IS_GEN_I(hpriv) ? &mv5_sht : &mv6_sht);
  3803. }
  3804. #ifdef CONFIG_PM
  3805. static int mv_pci_device_resume(struct pci_dev *pdev)
  3806. {
  3807. struct ata_host *host = dev_get_drvdata(&pdev->dev);
  3808. int rc;
  3809. rc = ata_pci_device_do_resume(pdev);
  3810. if (rc)
  3811. return rc;
  3812. /* initialize adapter */
  3813. rc = mv_init_host(host);
  3814. if (rc)
  3815. return rc;
  3816. ata_host_resume(host);
  3817. return 0;
  3818. }
  3819. #endif
  3820. #endif
  3821. static int mv_platform_probe(struct platform_device *pdev);
  3822. static int __devexit mv_platform_remove(struct platform_device *pdev);
  3823. static int __init mv_init(void)
  3824. {
  3825. int rc = -ENODEV;
  3826. #ifdef CONFIG_PCI
  3827. rc = pci_register_driver(&mv_pci_driver);
  3828. if (rc < 0)
  3829. return rc;
  3830. #endif
  3831. rc = platform_driver_register(&mv_platform_driver);
  3832. #ifdef CONFIG_PCI
  3833. if (rc < 0)
  3834. pci_unregister_driver(&mv_pci_driver);
  3835. #endif
  3836. return rc;
  3837. }
  3838. static void __exit mv_exit(void)
  3839. {
  3840. #ifdef CONFIG_PCI
  3841. pci_unregister_driver(&mv_pci_driver);
  3842. #endif
  3843. platform_driver_unregister(&mv_platform_driver);
  3844. }
  3845. MODULE_AUTHOR("Brett Russ");
  3846. MODULE_DESCRIPTION("SCSI low-level driver for Marvell SATA controllers");
  3847. MODULE_LICENSE("GPL");
  3848. MODULE_DEVICE_TABLE(pci, mv_pci_tbl);
  3849. MODULE_VERSION(DRV_VERSION);
  3850. MODULE_ALIAS("platform:" DRV_NAME);
  3851. module_init(mv_init);
  3852. module_exit(mv_exit);