cciss.c 139 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980
  1. /*
  2. * Disk Array driver for HP Smart Array controllers.
  3. * (C) Copyright 2000, 2007 Hewlett-Packard Development Company, L.P.
  4. *
  5. * This program is free software; you can redistribute it and/or modify
  6. * it under the terms of the GNU General Public License as published by
  7. * the Free Software Foundation; version 2 of the License.
  8. *
  9. * This program is distributed in the hope that it will be useful,
  10. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  11. * MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  12. * General Public License for more details.
  13. *
  14. * You should have received a copy of the GNU General Public License
  15. * along with this program; if not, write to the Free Software
  16. * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
  17. * 02111-1307, USA.
  18. *
  19. * Questions/Comments/Bugfixes to iss_storagedev@hp.com
  20. *
  21. */
  22. #include <linux/module.h>
  23. #include <linux/interrupt.h>
  24. #include <linux/types.h>
  25. #include <linux/pci.h>
  26. #include <linux/kernel.h>
  27. #include <linux/slab.h>
  28. #include <linux/delay.h>
  29. #include <linux/major.h>
  30. #include <linux/fs.h>
  31. #include <linux/bio.h>
  32. #include <linux/blkpg.h>
  33. #include <linux/timer.h>
  34. #include <linux/proc_fs.h>
  35. #include <linux/seq_file.h>
  36. #include <linux/init.h>
  37. #include <linux/jiffies.h>
  38. #include <linux/hdreg.h>
  39. #include <linux/spinlock.h>
  40. #include <linux/compat.h>
  41. #include <linux/mutex.h>
  42. #include <asm/uaccess.h>
  43. #include <asm/io.h>
  44. #include <linux/dma-mapping.h>
  45. #include <linux/blkdev.h>
  46. #include <linux/genhd.h>
  47. #include <linux/completion.h>
  48. #include <scsi/scsi.h>
  49. #include <scsi/sg.h>
  50. #include <scsi/scsi_ioctl.h>
  51. #include <linux/cdrom.h>
  52. #include <linux/scatterlist.h>
  53. #include <linux/kthread.h>
  54. #define CCISS_DRIVER_VERSION(maj,min,submin) ((maj<<16)|(min<<8)|(submin))
  55. #define DRIVER_NAME "HP CISS Driver (v 3.6.26)"
  56. #define DRIVER_VERSION CCISS_DRIVER_VERSION(3, 6, 26)
  57. /* Embedded module documentation macros - see modules.h */
  58. MODULE_AUTHOR("Hewlett-Packard Company");
  59. MODULE_DESCRIPTION("Driver for HP Smart Array Controllers");
  60. MODULE_SUPPORTED_DEVICE("HP Smart Array Controllers");
  61. MODULE_VERSION("3.6.26");
  62. MODULE_LICENSE("GPL");
  63. static DEFINE_MUTEX(cciss_mutex);
  64. static int cciss_allow_hpsa;
  65. module_param(cciss_allow_hpsa, int, S_IRUGO|S_IWUSR);
  66. MODULE_PARM_DESC(cciss_allow_hpsa,
  67. "Prevent cciss driver from accessing hardware known to be "
  68. " supported by the hpsa driver");
  69. #include "cciss_cmd.h"
  70. #include "cciss.h"
  71. #include <linux/cciss_ioctl.h>
  72. /* define the PCI info for the cards we can control */
  73. static const struct pci_device_id cciss_pci_device_id[] = {
  74. {PCI_VENDOR_ID_COMPAQ, PCI_DEVICE_ID_COMPAQ_CISS, 0x0E11, 0x4070},
  75. {PCI_VENDOR_ID_COMPAQ, PCI_DEVICE_ID_COMPAQ_CISSB, 0x0E11, 0x4080},
  76. {PCI_VENDOR_ID_COMPAQ, PCI_DEVICE_ID_COMPAQ_CISSB, 0x0E11, 0x4082},
  77. {PCI_VENDOR_ID_COMPAQ, PCI_DEVICE_ID_COMPAQ_CISSB, 0x0E11, 0x4083},
  78. {PCI_VENDOR_ID_COMPAQ, PCI_DEVICE_ID_COMPAQ_CISSC, 0x0E11, 0x4091},
  79. {PCI_VENDOR_ID_COMPAQ, PCI_DEVICE_ID_COMPAQ_CISSC, 0x0E11, 0x409A},
  80. {PCI_VENDOR_ID_COMPAQ, PCI_DEVICE_ID_COMPAQ_CISSC, 0x0E11, 0x409B},
  81. {PCI_VENDOR_ID_COMPAQ, PCI_DEVICE_ID_COMPAQ_CISSC, 0x0E11, 0x409C},
  82. {PCI_VENDOR_ID_COMPAQ, PCI_DEVICE_ID_COMPAQ_CISSC, 0x0E11, 0x409D},
  83. {PCI_VENDOR_ID_HP, PCI_DEVICE_ID_HP_CISSA, 0x103C, 0x3225},
  84. {PCI_VENDOR_ID_HP, PCI_DEVICE_ID_HP_CISSC, 0x103C, 0x3223},
  85. {PCI_VENDOR_ID_HP, PCI_DEVICE_ID_HP_CISSC, 0x103C, 0x3234},
  86. {PCI_VENDOR_ID_HP, PCI_DEVICE_ID_HP_CISSC, 0x103C, 0x3235},
  87. {PCI_VENDOR_ID_HP, PCI_DEVICE_ID_HP_CISSD, 0x103C, 0x3211},
  88. {PCI_VENDOR_ID_HP, PCI_DEVICE_ID_HP_CISSD, 0x103C, 0x3212},
  89. {PCI_VENDOR_ID_HP, PCI_DEVICE_ID_HP_CISSD, 0x103C, 0x3213},
  90. {PCI_VENDOR_ID_HP, PCI_DEVICE_ID_HP_CISSD, 0x103C, 0x3214},
  91. {PCI_VENDOR_ID_HP, PCI_DEVICE_ID_HP_CISSD, 0x103C, 0x3215},
  92. {PCI_VENDOR_ID_HP, PCI_DEVICE_ID_HP_CISSC, 0x103C, 0x3237},
  93. {PCI_VENDOR_ID_HP, PCI_DEVICE_ID_HP_CISSC, 0x103C, 0x323D},
  94. {PCI_VENDOR_ID_HP, PCI_DEVICE_ID_HP_CISSE, 0x103C, 0x3241},
  95. {PCI_VENDOR_ID_HP, PCI_DEVICE_ID_HP_CISSE, 0x103C, 0x3243},
  96. {PCI_VENDOR_ID_HP, PCI_DEVICE_ID_HP_CISSE, 0x103C, 0x3245},
  97. {PCI_VENDOR_ID_HP, PCI_DEVICE_ID_HP_CISSE, 0x103C, 0x3247},
  98. {PCI_VENDOR_ID_HP, PCI_DEVICE_ID_HP_CISSE, 0x103C, 0x3249},
  99. {PCI_VENDOR_ID_HP, PCI_DEVICE_ID_HP_CISSE, 0x103C, 0x324A},
  100. {PCI_VENDOR_ID_HP, PCI_DEVICE_ID_HP_CISSE, 0x103C, 0x324B},
  101. {PCI_VENDOR_ID_HP, PCI_DEVICE_ID_HP_CISSF, 0x103C, 0x3350},
  102. {PCI_VENDOR_ID_HP, PCI_DEVICE_ID_HP_CISSF, 0x103C, 0x3351},
  103. {PCI_VENDOR_ID_HP, PCI_DEVICE_ID_HP_CISSF, 0x103C, 0x3352},
  104. {PCI_VENDOR_ID_HP, PCI_DEVICE_ID_HP_CISSF, 0x103C, 0x3353},
  105. {PCI_VENDOR_ID_HP, PCI_DEVICE_ID_HP_CISSF, 0x103C, 0x3354},
  106. {PCI_VENDOR_ID_HP, PCI_DEVICE_ID_HP_CISSF, 0x103C, 0x3355},
  107. {0,}
  108. };
  109. MODULE_DEVICE_TABLE(pci, cciss_pci_device_id);
  110. /* board_id = Subsystem Device ID & Vendor ID
  111. * product = Marketing Name for the board
  112. * access = Address of the struct of function pointers
  113. */
  114. static struct board_type products[] = {
  115. {0x40700E11, "Smart Array 5300", &SA5_access},
  116. {0x40800E11, "Smart Array 5i", &SA5B_access},
  117. {0x40820E11, "Smart Array 532", &SA5B_access},
  118. {0x40830E11, "Smart Array 5312", &SA5B_access},
  119. {0x409A0E11, "Smart Array 641", &SA5_access},
  120. {0x409B0E11, "Smart Array 642", &SA5_access},
  121. {0x409C0E11, "Smart Array 6400", &SA5_access},
  122. {0x409D0E11, "Smart Array 6400 EM", &SA5_access},
  123. {0x40910E11, "Smart Array 6i", &SA5_access},
  124. {0x3225103C, "Smart Array P600", &SA5_access},
  125. {0x3235103C, "Smart Array P400i", &SA5_access},
  126. {0x3211103C, "Smart Array E200i", &SA5_access},
  127. {0x3212103C, "Smart Array E200", &SA5_access},
  128. {0x3213103C, "Smart Array E200i", &SA5_access},
  129. {0x3214103C, "Smart Array E200i", &SA5_access},
  130. {0x3215103C, "Smart Array E200i", &SA5_access},
  131. {0x3237103C, "Smart Array E500", &SA5_access},
  132. /* controllers below this line are also supported by the hpsa driver. */
  133. #define HPSA_BOUNDARY 0x3223103C
  134. {0x3223103C, "Smart Array P800", &SA5_access},
  135. {0x3234103C, "Smart Array P400", &SA5_access},
  136. {0x323D103C, "Smart Array P700m", &SA5_access},
  137. {0x3241103C, "Smart Array P212", &SA5_access},
  138. {0x3243103C, "Smart Array P410", &SA5_access},
  139. {0x3245103C, "Smart Array P410i", &SA5_access},
  140. {0x3247103C, "Smart Array P411", &SA5_access},
  141. {0x3249103C, "Smart Array P812", &SA5_access},
  142. {0x324A103C, "Smart Array P712m", &SA5_access},
  143. {0x324B103C, "Smart Array P711m", &SA5_access},
  144. {0x3350103C, "Smart Array", &SA5_access},
  145. {0x3351103C, "Smart Array", &SA5_access},
  146. {0x3352103C, "Smart Array", &SA5_access},
  147. {0x3353103C, "Smart Array", &SA5_access},
  148. {0x3354103C, "Smart Array", &SA5_access},
  149. {0x3355103C, "Smart Array", &SA5_access},
  150. };
  151. /* How long to wait (in milliseconds) for board to go into simple mode */
  152. #define MAX_CONFIG_WAIT 30000
  153. #define MAX_IOCTL_CONFIG_WAIT 1000
  154. /*define how many times we will try a command because of bus resets */
  155. #define MAX_CMD_RETRIES 3
  156. #define MAX_CTLR 32
  157. /* Originally cciss driver only supports 8 major numbers */
  158. #define MAX_CTLR_ORIG 8
  159. static ctlr_info_t *hba[MAX_CTLR];
  160. static struct task_struct *cciss_scan_thread;
  161. static DEFINE_MUTEX(scan_mutex);
  162. static LIST_HEAD(scan_q);
  163. static void do_cciss_request(struct request_queue *q);
  164. static irqreturn_t do_cciss_intx(int irq, void *dev_id);
  165. static irqreturn_t do_cciss_msix_intr(int irq, void *dev_id);
  166. static int cciss_open(struct block_device *bdev, fmode_t mode);
  167. static int cciss_unlocked_open(struct block_device *bdev, fmode_t mode);
  168. static int cciss_release(struct gendisk *disk, fmode_t mode);
  169. static int do_ioctl(struct block_device *bdev, fmode_t mode,
  170. unsigned int cmd, unsigned long arg);
  171. static int cciss_ioctl(struct block_device *bdev, fmode_t mode,
  172. unsigned int cmd, unsigned long arg);
  173. static int cciss_getgeo(struct block_device *bdev, struct hd_geometry *geo);
  174. static int cciss_revalidate(struct gendisk *disk);
  175. static int rebuild_lun_table(ctlr_info_t *h, int first_time, int via_ioctl);
  176. static int deregister_disk(ctlr_info_t *h, int drv_index,
  177. int clear_all, int via_ioctl);
  178. static void cciss_read_capacity(ctlr_info_t *h, int logvol,
  179. sector_t *total_size, unsigned int *block_size);
  180. static void cciss_read_capacity_16(ctlr_info_t *h, int logvol,
  181. sector_t *total_size, unsigned int *block_size);
  182. static void cciss_geometry_inquiry(ctlr_info_t *h, int logvol,
  183. sector_t total_size,
  184. unsigned int block_size, InquiryData_struct *inq_buff,
  185. drive_info_struct *drv);
  186. static void __devinit cciss_interrupt_mode(ctlr_info_t *);
  187. static void start_io(ctlr_info_t *h);
  188. static int sendcmd_withirq(ctlr_info_t *h, __u8 cmd, void *buff, size_t size,
  189. __u8 page_code, unsigned char scsi3addr[],
  190. int cmd_type);
  191. static int sendcmd_withirq_core(ctlr_info_t *h, CommandList_struct *c,
  192. int attempt_retry);
  193. static int process_sendcmd_error(ctlr_info_t *h, CommandList_struct *c);
  194. static int add_to_scan_list(struct ctlr_info *h);
  195. static int scan_thread(void *data);
  196. static int check_for_unit_attention(ctlr_info_t *h, CommandList_struct *c);
  197. static void cciss_hba_release(struct device *dev);
  198. static void cciss_device_release(struct device *dev);
  199. static void cciss_free_gendisk(ctlr_info_t *h, int drv_index);
  200. static void cciss_free_drive_info(ctlr_info_t *h, int drv_index);
  201. static inline u32 next_command(ctlr_info_t *h);
  202. static int __devinit cciss_find_cfg_addrs(struct pci_dev *pdev,
  203. void __iomem *vaddr, u32 *cfg_base_addr, u64 *cfg_base_addr_index,
  204. u64 *cfg_offset);
  205. static int __devinit cciss_pci_find_memory_BAR(struct pci_dev *pdev,
  206. unsigned long *memory_bar);
  207. /* performant mode helper functions */
  208. static void calc_bucket_map(int *bucket, int num_buckets, int nsgs,
  209. int *bucket_map);
  210. static void cciss_put_controller_into_performant_mode(ctlr_info_t *h);
  211. #ifdef CONFIG_PROC_FS
  212. static void cciss_procinit(ctlr_info_t *h);
  213. #else
  214. static void cciss_procinit(ctlr_info_t *h)
  215. {
  216. }
  217. #endif /* CONFIG_PROC_FS */
  218. #ifdef CONFIG_COMPAT
  219. static int cciss_compat_ioctl(struct block_device *, fmode_t,
  220. unsigned, unsigned long);
  221. #endif
  222. static const struct block_device_operations cciss_fops = {
  223. .owner = THIS_MODULE,
  224. .open = cciss_unlocked_open,
  225. .release = cciss_release,
  226. .ioctl = do_ioctl,
  227. .getgeo = cciss_getgeo,
  228. #ifdef CONFIG_COMPAT
  229. .compat_ioctl = cciss_compat_ioctl,
  230. #endif
  231. .revalidate_disk = cciss_revalidate,
  232. };
  233. /* set_performant_mode: Modify the tag for cciss performant
  234. * set bit 0 for pull model, bits 3-1 for block fetch
  235. * register number
  236. */
  237. static void set_performant_mode(ctlr_info_t *h, CommandList_struct *c)
  238. {
  239. if (likely(h->transMethod == CFGTBL_Trans_Performant))
  240. c->busaddr |= 1 | (h->blockFetchTable[c->Header.SGList] << 1);
  241. }
  242. /*
  243. * Enqueuing and dequeuing functions for cmdlists.
  244. */
  245. static inline void addQ(struct hlist_head *list, CommandList_struct *c)
  246. {
  247. hlist_add_head(&c->list, list);
  248. }
  249. static inline void removeQ(CommandList_struct *c)
  250. {
  251. /*
  252. * After kexec/dump some commands might still
  253. * be in flight, which the firmware will try
  254. * to complete. Resetting the firmware doesn't work
  255. * with old fw revisions, so we have to mark
  256. * them off as 'stale' to prevent the driver from
  257. * falling over.
  258. */
  259. if (WARN_ON(hlist_unhashed(&c->list))) {
  260. c->cmd_type = CMD_MSG_STALE;
  261. return;
  262. }
  263. hlist_del_init(&c->list);
  264. }
  265. static void enqueue_cmd_and_start_io(ctlr_info_t *h,
  266. CommandList_struct *c)
  267. {
  268. unsigned long flags;
  269. set_performant_mode(h, c);
  270. spin_lock_irqsave(&h->lock, flags);
  271. addQ(&h->reqQ, c);
  272. h->Qdepth++;
  273. if (h->Qdepth > h->maxQsinceinit)
  274. h->maxQsinceinit = h->Qdepth;
  275. start_io(h);
  276. spin_unlock_irqrestore(&h->lock, flags);
  277. }
  278. static void cciss_free_sg_chain_blocks(SGDescriptor_struct **cmd_sg_list,
  279. int nr_cmds)
  280. {
  281. int i;
  282. if (!cmd_sg_list)
  283. return;
  284. for (i = 0; i < nr_cmds; i++) {
  285. kfree(cmd_sg_list[i]);
  286. cmd_sg_list[i] = NULL;
  287. }
  288. kfree(cmd_sg_list);
  289. }
  290. static SGDescriptor_struct **cciss_allocate_sg_chain_blocks(
  291. ctlr_info_t *h, int chainsize, int nr_cmds)
  292. {
  293. int j;
  294. SGDescriptor_struct **cmd_sg_list;
  295. if (chainsize <= 0)
  296. return NULL;
  297. cmd_sg_list = kmalloc(sizeof(*cmd_sg_list) * nr_cmds, GFP_KERNEL);
  298. if (!cmd_sg_list)
  299. return NULL;
  300. /* Build up chain blocks for each command */
  301. for (j = 0; j < nr_cmds; j++) {
  302. /* Need a block of chainsized s/g elements. */
  303. cmd_sg_list[j] = kmalloc((chainsize *
  304. sizeof(*cmd_sg_list[j])), GFP_KERNEL);
  305. if (!cmd_sg_list[j]) {
  306. dev_err(&h->pdev->dev, "Cannot get memory "
  307. "for s/g chains.\n");
  308. goto clean;
  309. }
  310. }
  311. return cmd_sg_list;
  312. clean:
  313. cciss_free_sg_chain_blocks(cmd_sg_list, nr_cmds);
  314. return NULL;
  315. }
  316. static void cciss_unmap_sg_chain_block(ctlr_info_t *h, CommandList_struct *c)
  317. {
  318. SGDescriptor_struct *chain_sg;
  319. u64bit temp64;
  320. if (c->Header.SGTotal <= h->max_cmd_sgentries)
  321. return;
  322. chain_sg = &c->SG[h->max_cmd_sgentries - 1];
  323. temp64.val32.lower = chain_sg->Addr.lower;
  324. temp64.val32.upper = chain_sg->Addr.upper;
  325. pci_unmap_single(h->pdev, temp64.val, chain_sg->Len, PCI_DMA_TODEVICE);
  326. }
  327. static void cciss_map_sg_chain_block(ctlr_info_t *h, CommandList_struct *c,
  328. SGDescriptor_struct *chain_block, int len)
  329. {
  330. SGDescriptor_struct *chain_sg;
  331. u64bit temp64;
  332. chain_sg = &c->SG[h->max_cmd_sgentries - 1];
  333. chain_sg->Ext = CCISS_SG_CHAIN;
  334. chain_sg->Len = len;
  335. temp64.val = pci_map_single(h->pdev, chain_block, len,
  336. PCI_DMA_TODEVICE);
  337. chain_sg->Addr.lower = temp64.val32.lower;
  338. chain_sg->Addr.upper = temp64.val32.upper;
  339. }
  340. #include "cciss_scsi.c" /* For SCSI tape support */
  341. static const char *raid_label[] = { "0", "4", "1(1+0)", "5", "5+1", "ADG",
  342. "UNKNOWN"
  343. };
  344. #define RAID_UNKNOWN (ARRAY_SIZE(raid_label)-1)
  345. #ifdef CONFIG_PROC_FS
  346. /*
  347. * Report information about this controller.
  348. */
  349. #define ENG_GIG 1000000000
  350. #define ENG_GIG_FACTOR (ENG_GIG/512)
  351. #define ENGAGE_SCSI "engage scsi"
  352. static struct proc_dir_entry *proc_cciss;
  353. static void cciss_seq_show_header(struct seq_file *seq)
  354. {
  355. ctlr_info_t *h = seq->private;
  356. seq_printf(seq, "%s: HP %s Controller\n"
  357. "Board ID: 0x%08lx\n"
  358. "Firmware Version: %c%c%c%c\n"
  359. "IRQ: %d\n"
  360. "Logical drives: %d\n"
  361. "Current Q depth: %d\n"
  362. "Current # commands on controller: %d\n"
  363. "Max Q depth since init: %d\n"
  364. "Max # commands on controller since init: %d\n"
  365. "Max SG entries since init: %d\n",
  366. h->devname,
  367. h->product_name,
  368. (unsigned long)h->board_id,
  369. h->firm_ver[0], h->firm_ver[1], h->firm_ver[2],
  370. h->firm_ver[3], (unsigned int)h->intr[PERF_MODE_INT],
  371. h->num_luns,
  372. h->Qdepth, h->commands_outstanding,
  373. h->maxQsinceinit, h->max_outstanding, h->maxSG);
  374. #ifdef CONFIG_CISS_SCSI_TAPE
  375. cciss_seq_tape_report(seq, h);
  376. #endif /* CONFIG_CISS_SCSI_TAPE */
  377. }
  378. static void *cciss_seq_start(struct seq_file *seq, loff_t *pos)
  379. {
  380. ctlr_info_t *h = seq->private;
  381. unsigned long flags;
  382. /* prevent displaying bogus info during configuration
  383. * or deconfiguration of a logical volume
  384. */
  385. spin_lock_irqsave(&h->lock, flags);
  386. if (h->busy_configuring) {
  387. spin_unlock_irqrestore(&h->lock, flags);
  388. return ERR_PTR(-EBUSY);
  389. }
  390. h->busy_configuring = 1;
  391. spin_unlock_irqrestore(&h->lock, flags);
  392. if (*pos == 0)
  393. cciss_seq_show_header(seq);
  394. return pos;
  395. }
  396. static int cciss_seq_show(struct seq_file *seq, void *v)
  397. {
  398. sector_t vol_sz, vol_sz_frac;
  399. ctlr_info_t *h = seq->private;
  400. unsigned ctlr = h->ctlr;
  401. loff_t *pos = v;
  402. drive_info_struct *drv = h->drv[*pos];
  403. if (*pos > h->highest_lun)
  404. return 0;
  405. if (drv == NULL) /* it's possible for h->drv[] to have holes. */
  406. return 0;
  407. if (drv->heads == 0)
  408. return 0;
  409. vol_sz = drv->nr_blocks;
  410. vol_sz_frac = sector_div(vol_sz, ENG_GIG_FACTOR);
  411. vol_sz_frac *= 100;
  412. sector_div(vol_sz_frac, ENG_GIG_FACTOR);
  413. if (drv->raid_level < 0 || drv->raid_level > RAID_UNKNOWN)
  414. drv->raid_level = RAID_UNKNOWN;
  415. seq_printf(seq, "cciss/c%dd%d:"
  416. "\t%4u.%02uGB\tRAID %s\n",
  417. ctlr, (int) *pos, (int)vol_sz, (int)vol_sz_frac,
  418. raid_label[drv->raid_level]);
  419. return 0;
  420. }
  421. static void *cciss_seq_next(struct seq_file *seq, void *v, loff_t *pos)
  422. {
  423. ctlr_info_t *h = seq->private;
  424. if (*pos > h->highest_lun)
  425. return NULL;
  426. *pos += 1;
  427. return pos;
  428. }
  429. static void cciss_seq_stop(struct seq_file *seq, void *v)
  430. {
  431. ctlr_info_t *h = seq->private;
  432. /* Only reset h->busy_configuring if we succeeded in setting
  433. * it during cciss_seq_start. */
  434. if (v == ERR_PTR(-EBUSY))
  435. return;
  436. h->busy_configuring = 0;
  437. }
  438. static const struct seq_operations cciss_seq_ops = {
  439. .start = cciss_seq_start,
  440. .show = cciss_seq_show,
  441. .next = cciss_seq_next,
  442. .stop = cciss_seq_stop,
  443. };
  444. static int cciss_seq_open(struct inode *inode, struct file *file)
  445. {
  446. int ret = seq_open(file, &cciss_seq_ops);
  447. struct seq_file *seq = file->private_data;
  448. if (!ret)
  449. seq->private = PDE(inode)->data;
  450. return ret;
  451. }
  452. static ssize_t
  453. cciss_proc_write(struct file *file, const char __user *buf,
  454. size_t length, loff_t *ppos)
  455. {
  456. int err;
  457. char *buffer;
  458. #ifndef CONFIG_CISS_SCSI_TAPE
  459. return -EINVAL;
  460. #endif
  461. if (!buf || length > PAGE_SIZE - 1)
  462. return -EINVAL;
  463. buffer = (char *)__get_free_page(GFP_KERNEL);
  464. if (!buffer)
  465. return -ENOMEM;
  466. err = -EFAULT;
  467. if (copy_from_user(buffer, buf, length))
  468. goto out;
  469. buffer[length] = '\0';
  470. #ifdef CONFIG_CISS_SCSI_TAPE
  471. if (strncmp(ENGAGE_SCSI, buffer, sizeof ENGAGE_SCSI - 1) == 0) {
  472. struct seq_file *seq = file->private_data;
  473. ctlr_info_t *h = seq->private;
  474. err = cciss_engage_scsi(h);
  475. if (err == 0)
  476. err = length;
  477. } else
  478. #endif /* CONFIG_CISS_SCSI_TAPE */
  479. err = -EINVAL;
  480. /* might be nice to have "disengage" too, but it's not
  481. safely possible. (only 1 module use count, lock issues.) */
  482. out:
  483. free_page((unsigned long)buffer);
  484. return err;
  485. }
  486. static const struct file_operations cciss_proc_fops = {
  487. .owner = THIS_MODULE,
  488. .open = cciss_seq_open,
  489. .read = seq_read,
  490. .llseek = seq_lseek,
  491. .release = seq_release,
  492. .write = cciss_proc_write,
  493. };
  494. static void __devinit cciss_procinit(ctlr_info_t *h)
  495. {
  496. struct proc_dir_entry *pde;
  497. if (proc_cciss == NULL)
  498. proc_cciss = proc_mkdir("driver/cciss", NULL);
  499. if (!proc_cciss)
  500. return;
  501. pde = proc_create_data(h->devname, S_IWUSR | S_IRUSR | S_IRGRP |
  502. S_IROTH, proc_cciss,
  503. &cciss_proc_fops, h);
  504. }
  505. #endif /* CONFIG_PROC_FS */
  506. #define MAX_PRODUCT_NAME_LEN 19
  507. #define to_hba(n) container_of(n, struct ctlr_info, dev)
  508. #define to_drv(n) container_of(n, drive_info_struct, dev)
  509. static ssize_t host_store_rescan(struct device *dev,
  510. struct device_attribute *attr,
  511. const char *buf, size_t count)
  512. {
  513. struct ctlr_info *h = to_hba(dev);
  514. add_to_scan_list(h);
  515. wake_up_process(cciss_scan_thread);
  516. wait_for_completion_interruptible(&h->scan_wait);
  517. return count;
  518. }
  519. static DEVICE_ATTR(rescan, S_IWUSR, NULL, host_store_rescan);
  520. static ssize_t dev_show_unique_id(struct device *dev,
  521. struct device_attribute *attr,
  522. char *buf)
  523. {
  524. drive_info_struct *drv = to_drv(dev);
  525. struct ctlr_info *h = to_hba(drv->dev.parent);
  526. __u8 sn[16];
  527. unsigned long flags;
  528. int ret = 0;
  529. spin_lock_irqsave(&h->lock, flags);
  530. if (h->busy_configuring)
  531. ret = -EBUSY;
  532. else
  533. memcpy(sn, drv->serial_no, sizeof(sn));
  534. spin_unlock_irqrestore(&h->lock, flags);
  535. if (ret)
  536. return ret;
  537. else
  538. return snprintf(buf, 16 * 2 + 2,
  539. "%02X%02X%02X%02X%02X%02X%02X%02X"
  540. "%02X%02X%02X%02X%02X%02X%02X%02X\n",
  541. sn[0], sn[1], sn[2], sn[3],
  542. sn[4], sn[5], sn[6], sn[7],
  543. sn[8], sn[9], sn[10], sn[11],
  544. sn[12], sn[13], sn[14], sn[15]);
  545. }
  546. static DEVICE_ATTR(unique_id, S_IRUGO, dev_show_unique_id, NULL);
  547. static ssize_t dev_show_vendor(struct device *dev,
  548. struct device_attribute *attr,
  549. char *buf)
  550. {
  551. drive_info_struct *drv = to_drv(dev);
  552. struct ctlr_info *h = to_hba(drv->dev.parent);
  553. char vendor[VENDOR_LEN + 1];
  554. unsigned long flags;
  555. int ret = 0;
  556. spin_lock_irqsave(&h->lock, flags);
  557. if (h->busy_configuring)
  558. ret = -EBUSY;
  559. else
  560. memcpy(vendor, drv->vendor, VENDOR_LEN + 1);
  561. spin_unlock_irqrestore(&h->lock, flags);
  562. if (ret)
  563. return ret;
  564. else
  565. return snprintf(buf, sizeof(vendor) + 1, "%s\n", drv->vendor);
  566. }
  567. static DEVICE_ATTR(vendor, S_IRUGO, dev_show_vendor, NULL);
  568. static ssize_t dev_show_model(struct device *dev,
  569. struct device_attribute *attr,
  570. char *buf)
  571. {
  572. drive_info_struct *drv = to_drv(dev);
  573. struct ctlr_info *h = to_hba(drv->dev.parent);
  574. char model[MODEL_LEN + 1];
  575. unsigned long flags;
  576. int ret = 0;
  577. spin_lock_irqsave(&h->lock, flags);
  578. if (h->busy_configuring)
  579. ret = -EBUSY;
  580. else
  581. memcpy(model, drv->model, MODEL_LEN + 1);
  582. spin_unlock_irqrestore(&h->lock, flags);
  583. if (ret)
  584. return ret;
  585. else
  586. return snprintf(buf, sizeof(model) + 1, "%s\n", drv->model);
  587. }
  588. static DEVICE_ATTR(model, S_IRUGO, dev_show_model, NULL);
  589. static ssize_t dev_show_rev(struct device *dev,
  590. struct device_attribute *attr,
  591. char *buf)
  592. {
  593. drive_info_struct *drv = to_drv(dev);
  594. struct ctlr_info *h = to_hba(drv->dev.parent);
  595. char rev[REV_LEN + 1];
  596. unsigned long flags;
  597. int ret = 0;
  598. spin_lock_irqsave(&h->lock, flags);
  599. if (h->busy_configuring)
  600. ret = -EBUSY;
  601. else
  602. memcpy(rev, drv->rev, REV_LEN + 1);
  603. spin_unlock_irqrestore(&h->lock, flags);
  604. if (ret)
  605. return ret;
  606. else
  607. return snprintf(buf, sizeof(rev) + 1, "%s\n", drv->rev);
  608. }
  609. static DEVICE_ATTR(rev, S_IRUGO, dev_show_rev, NULL);
  610. static ssize_t cciss_show_lunid(struct device *dev,
  611. struct device_attribute *attr, char *buf)
  612. {
  613. drive_info_struct *drv = to_drv(dev);
  614. struct ctlr_info *h = to_hba(drv->dev.parent);
  615. unsigned long flags;
  616. unsigned char lunid[8];
  617. spin_lock_irqsave(&h->lock, flags);
  618. if (h->busy_configuring) {
  619. spin_unlock_irqrestore(&h->lock, flags);
  620. return -EBUSY;
  621. }
  622. if (!drv->heads) {
  623. spin_unlock_irqrestore(&h->lock, flags);
  624. return -ENOTTY;
  625. }
  626. memcpy(lunid, drv->LunID, sizeof(lunid));
  627. spin_unlock_irqrestore(&h->lock, flags);
  628. return snprintf(buf, 20, "0x%02x%02x%02x%02x%02x%02x%02x%02x\n",
  629. lunid[0], lunid[1], lunid[2], lunid[3],
  630. lunid[4], lunid[5], lunid[6], lunid[7]);
  631. }
  632. static DEVICE_ATTR(lunid, S_IRUGO, cciss_show_lunid, NULL);
  633. static ssize_t cciss_show_raid_level(struct device *dev,
  634. struct device_attribute *attr, char *buf)
  635. {
  636. drive_info_struct *drv = to_drv(dev);
  637. struct ctlr_info *h = to_hba(drv->dev.parent);
  638. int raid;
  639. unsigned long flags;
  640. spin_lock_irqsave(&h->lock, flags);
  641. if (h->busy_configuring) {
  642. spin_unlock_irqrestore(&h->lock, flags);
  643. return -EBUSY;
  644. }
  645. raid = drv->raid_level;
  646. spin_unlock_irqrestore(&h->lock, flags);
  647. if (raid < 0 || raid > RAID_UNKNOWN)
  648. raid = RAID_UNKNOWN;
  649. return snprintf(buf, strlen(raid_label[raid]) + 7, "RAID %s\n",
  650. raid_label[raid]);
  651. }
  652. static DEVICE_ATTR(raid_level, S_IRUGO, cciss_show_raid_level, NULL);
  653. static ssize_t cciss_show_usage_count(struct device *dev,
  654. struct device_attribute *attr, char *buf)
  655. {
  656. drive_info_struct *drv = to_drv(dev);
  657. struct ctlr_info *h = to_hba(drv->dev.parent);
  658. unsigned long flags;
  659. int count;
  660. spin_lock_irqsave(&h->lock, flags);
  661. if (h->busy_configuring) {
  662. spin_unlock_irqrestore(&h->lock, flags);
  663. return -EBUSY;
  664. }
  665. count = drv->usage_count;
  666. spin_unlock_irqrestore(&h->lock, flags);
  667. return snprintf(buf, 20, "%d\n", count);
  668. }
  669. static DEVICE_ATTR(usage_count, S_IRUGO, cciss_show_usage_count, NULL);
  670. static struct attribute *cciss_host_attrs[] = {
  671. &dev_attr_rescan.attr,
  672. NULL
  673. };
  674. static struct attribute_group cciss_host_attr_group = {
  675. .attrs = cciss_host_attrs,
  676. };
  677. static const struct attribute_group *cciss_host_attr_groups[] = {
  678. &cciss_host_attr_group,
  679. NULL
  680. };
  681. static struct device_type cciss_host_type = {
  682. .name = "cciss_host",
  683. .groups = cciss_host_attr_groups,
  684. .release = cciss_hba_release,
  685. };
  686. static struct attribute *cciss_dev_attrs[] = {
  687. &dev_attr_unique_id.attr,
  688. &dev_attr_model.attr,
  689. &dev_attr_vendor.attr,
  690. &dev_attr_rev.attr,
  691. &dev_attr_lunid.attr,
  692. &dev_attr_raid_level.attr,
  693. &dev_attr_usage_count.attr,
  694. NULL
  695. };
  696. static struct attribute_group cciss_dev_attr_group = {
  697. .attrs = cciss_dev_attrs,
  698. };
  699. static const struct attribute_group *cciss_dev_attr_groups[] = {
  700. &cciss_dev_attr_group,
  701. NULL
  702. };
  703. static struct device_type cciss_dev_type = {
  704. .name = "cciss_device",
  705. .groups = cciss_dev_attr_groups,
  706. .release = cciss_device_release,
  707. };
  708. static struct bus_type cciss_bus_type = {
  709. .name = "cciss",
  710. };
  711. /*
  712. * cciss_hba_release is called when the reference count
  713. * of h->dev goes to zero.
  714. */
  715. static void cciss_hba_release(struct device *dev)
  716. {
  717. /*
  718. * nothing to do, but need this to avoid a warning
  719. * about not having a release handler from lib/kref.c.
  720. */
  721. }
  722. /*
  723. * Initialize sysfs entry for each controller. This sets up and registers
  724. * the 'cciss#' directory for each individual controller under
  725. * /sys/bus/pci/devices/<dev>/.
  726. */
  727. static int cciss_create_hba_sysfs_entry(struct ctlr_info *h)
  728. {
  729. device_initialize(&h->dev);
  730. h->dev.type = &cciss_host_type;
  731. h->dev.bus = &cciss_bus_type;
  732. dev_set_name(&h->dev, "%s", h->devname);
  733. h->dev.parent = &h->pdev->dev;
  734. return device_add(&h->dev);
  735. }
  736. /*
  737. * Remove sysfs entries for an hba.
  738. */
  739. static void cciss_destroy_hba_sysfs_entry(struct ctlr_info *h)
  740. {
  741. device_del(&h->dev);
  742. put_device(&h->dev); /* final put. */
  743. }
  744. /* cciss_device_release is called when the reference count
  745. * of h->drv[x]dev goes to zero.
  746. */
  747. static void cciss_device_release(struct device *dev)
  748. {
  749. drive_info_struct *drv = to_drv(dev);
  750. kfree(drv);
  751. }
  752. /*
  753. * Initialize sysfs for each logical drive. This sets up and registers
  754. * the 'c#d#' directory for each individual logical drive under
  755. * /sys/bus/pci/devices/<dev/ccis#/. We also create a link from
  756. * /sys/block/cciss!c#d# to this entry.
  757. */
  758. static long cciss_create_ld_sysfs_entry(struct ctlr_info *h,
  759. int drv_index)
  760. {
  761. struct device *dev;
  762. if (h->drv[drv_index]->device_initialized)
  763. return 0;
  764. dev = &h->drv[drv_index]->dev;
  765. device_initialize(dev);
  766. dev->type = &cciss_dev_type;
  767. dev->bus = &cciss_bus_type;
  768. dev_set_name(dev, "c%dd%d", h->ctlr, drv_index);
  769. dev->parent = &h->dev;
  770. h->drv[drv_index]->device_initialized = 1;
  771. return device_add(dev);
  772. }
  773. /*
  774. * Remove sysfs entries for a logical drive.
  775. */
  776. static void cciss_destroy_ld_sysfs_entry(struct ctlr_info *h, int drv_index,
  777. int ctlr_exiting)
  778. {
  779. struct device *dev = &h->drv[drv_index]->dev;
  780. /* special case for c*d0, we only destroy it on controller exit */
  781. if (drv_index == 0 && !ctlr_exiting)
  782. return;
  783. device_del(dev);
  784. put_device(dev); /* the "final" put. */
  785. h->drv[drv_index] = NULL;
  786. }
  787. /*
  788. * For operations that cannot sleep, a command block is allocated at init,
  789. * and managed by cmd_alloc() and cmd_free() using a simple bitmap to track
  790. * which ones are free or in use.
  791. */
  792. static CommandList_struct *cmd_alloc(ctlr_info_t *h)
  793. {
  794. CommandList_struct *c;
  795. int i;
  796. u64bit temp64;
  797. dma_addr_t cmd_dma_handle, err_dma_handle;
  798. do {
  799. i = find_first_zero_bit(h->cmd_pool_bits, h->nr_cmds);
  800. if (i == h->nr_cmds)
  801. return NULL;
  802. } while (test_and_set_bit(i & (BITS_PER_LONG - 1),
  803. h->cmd_pool_bits + (i / BITS_PER_LONG)) != 0);
  804. c = h->cmd_pool + i;
  805. memset(c, 0, sizeof(CommandList_struct));
  806. cmd_dma_handle = h->cmd_pool_dhandle + i * sizeof(CommandList_struct);
  807. c->err_info = h->errinfo_pool + i;
  808. memset(c->err_info, 0, sizeof(ErrorInfo_struct));
  809. err_dma_handle = h->errinfo_pool_dhandle
  810. + i * sizeof(ErrorInfo_struct);
  811. h->nr_allocs++;
  812. c->cmdindex = i;
  813. INIT_HLIST_NODE(&c->list);
  814. c->busaddr = (__u32) cmd_dma_handle;
  815. temp64.val = (__u64) err_dma_handle;
  816. c->ErrDesc.Addr.lower = temp64.val32.lower;
  817. c->ErrDesc.Addr.upper = temp64.val32.upper;
  818. c->ErrDesc.Len = sizeof(ErrorInfo_struct);
  819. c->ctlr = h->ctlr;
  820. return c;
  821. }
  822. /* allocate a command using pci_alloc_consistent, used for ioctls,
  823. * etc., not for the main i/o path.
  824. */
  825. static CommandList_struct *cmd_special_alloc(ctlr_info_t *h)
  826. {
  827. CommandList_struct *c;
  828. u64bit temp64;
  829. dma_addr_t cmd_dma_handle, err_dma_handle;
  830. c = (CommandList_struct *) pci_alloc_consistent(h->pdev,
  831. sizeof(CommandList_struct), &cmd_dma_handle);
  832. if (c == NULL)
  833. return NULL;
  834. memset(c, 0, sizeof(CommandList_struct));
  835. c->cmdindex = -1;
  836. c->err_info = (ErrorInfo_struct *)
  837. pci_alloc_consistent(h->pdev, sizeof(ErrorInfo_struct),
  838. &err_dma_handle);
  839. if (c->err_info == NULL) {
  840. pci_free_consistent(h->pdev,
  841. sizeof(CommandList_struct), c, cmd_dma_handle);
  842. return NULL;
  843. }
  844. memset(c->err_info, 0, sizeof(ErrorInfo_struct));
  845. INIT_HLIST_NODE(&c->list);
  846. c->busaddr = (__u32) cmd_dma_handle;
  847. temp64.val = (__u64) err_dma_handle;
  848. c->ErrDesc.Addr.lower = temp64.val32.lower;
  849. c->ErrDesc.Addr.upper = temp64.val32.upper;
  850. c->ErrDesc.Len = sizeof(ErrorInfo_struct);
  851. c->ctlr = h->ctlr;
  852. return c;
  853. }
  854. static void cmd_free(ctlr_info_t *h, CommandList_struct *c)
  855. {
  856. int i;
  857. i = c - h->cmd_pool;
  858. clear_bit(i & (BITS_PER_LONG - 1),
  859. h->cmd_pool_bits + (i / BITS_PER_LONG));
  860. h->nr_frees++;
  861. }
  862. static void cmd_special_free(ctlr_info_t *h, CommandList_struct *c)
  863. {
  864. u64bit temp64;
  865. temp64.val32.lower = c->ErrDesc.Addr.lower;
  866. temp64.val32.upper = c->ErrDesc.Addr.upper;
  867. pci_free_consistent(h->pdev, sizeof(ErrorInfo_struct),
  868. c->err_info, (dma_addr_t) temp64.val);
  869. pci_free_consistent(h->pdev, sizeof(CommandList_struct),
  870. c, (dma_addr_t) c->busaddr);
  871. }
  872. static inline ctlr_info_t *get_host(struct gendisk *disk)
  873. {
  874. return disk->queue->queuedata;
  875. }
  876. static inline drive_info_struct *get_drv(struct gendisk *disk)
  877. {
  878. return disk->private_data;
  879. }
  880. /*
  881. * Open. Make sure the device is really there.
  882. */
  883. static int cciss_open(struct block_device *bdev, fmode_t mode)
  884. {
  885. ctlr_info_t *h = get_host(bdev->bd_disk);
  886. drive_info_struct *drv = get_drv(bdev->bd_disk);
  887. dev_dbg(&h->pdev->dev, "cciss_open %s\n", bdev->bd_disk->disk_name);
  888. if (drv->busy_configuring)
  889. return -EBUSY;
  890. /*
  891. * Root is allowed to open raw volume zero even if it's not configured
  892. * so array config can still work. Root is also allowed to open any
  893. * volume that has a LUN ID, so it can issue IOCTL to reread the
  894. * disk information. I don't think I really like this
  895. * but I'm already using way to many device nodes to claim another one
  896. * for "raw controller".
  897. */
  898. if (drv->heads == 0) {
  899. if (MINOR(bdev->bd_dev) != 0) { /* not node 0? */
  900. /* if not node 0 make sure it is a partition = 0 */
  901. if (MINOR(bdev->bd_dev) & 0x0f) {
  902. return -ENXIO;
  903. /* if it is, make sure we have a LUN ID */
  904. } else if (memcmp(drv->LunID, CTLR_LUNID,
  905. sizeof(drv->LunID))) {
  906. return -ENXIO;
  907. }
  908. }
  909. if (!capable(CAP_SYS_ADMIN))
  910. return -EPERM;
  911. }
  912. drv->usage_count++;
  913. h->usage_count++;
  914. return 0;
  915. }
  916. static int cciss_unlocked_open(struct block_device *bdev, fmode_t mode)
  917. {
  918. int ret;
  919. mutex_lock(&cciss_mutex);
  920. ret = cciss_open(bdev, mode);
  921. mutex_unlock(&cciss_mutex);
  922. return ret;
  923. }
  924. /*
  925. * Close. Sync first.
  926. */
  927. static int cciss_release(struct gendisk *disk, fmode_t mode)
  928. {
  929. ctlr_info_t *h;
  930. drive_info_struct *drv;
  931. mutex_lock(&cciss_mutex);
  932. h = get_host(disk);
  933. drv = get_drv(disk);
  934. dev_dbg(&h->pdev->dev, "cciss_release %s\n", disk->disk_name);
  935. drv->usage_count--;
  936. h->usage_count--;
  937. mutex_unlock(&cciss_mutex);
  938. return 0;
  939. }
  940. static int do_ioctl(struct block_device *bdev, fmode_t mode,
  941. unsigned cmd, unsigned long arg)
  942. {
  943. int ret;
  944. mutex_lock(&cciss_mutex);
  945. ret = cciss_ioctl(bdev, mode, cmd, arg);
  946. mutex_unlock(&cciss_mutex);
  947. return ret;
  948. }
  949. #ifdef CONFIG_COMPAT
  950. static int cciss_ioctl32_passthru(struct block_device *bdev, fmode_t mode,
  951. unsigned cmd, unsigned long arg);
  952. static int cciss_ioctl32_big_passthru(struct block_device *bdev, fmode_t mode,
  953. unsigned cmd, unsigned long arg);
  954. static int cciss_compat_ioctl(struct block_device *bdev, fmode_t mode,
  955. unsigned cmd, unsigned long arg)
  956. {
  957. switch (cmd) {
  958. case CCISS_GETPCIINFO:
  959. case CCISS_GETINTINFO:
  960. case CCISS_SETINTINFO:
  961. case CCISS_GETNODENAME:
  962. case CCISS_SETNODENAME:
  963. case CCISS_GETHEARTBEAT:
  964. case CCISS_GETBUSTYPES:
  965. case CCISS_GETFIRMVER:
  966. case CCISS_GETDRIVVER:
  967. case CCISS_REVALIDVOLS:
  968. case CCISS_DEREGDISK:
  969. case CCISS_REGNEWDISK:
  970. case CCISS_REGNEWD:
  971. case CCISS_RESCANDISK:
  972. case CCISS_GETLUNINFO:
  973. return do_ioctl(bdev, mode, cmd, arg);
  974. case CCISS_PASSTHRU32:
  975. return cciss_ioctl32_passthru(bdev, mode, cmd, arg);
  976. case CCISS_BIG_PASSTHRU32:
  977. return cciss_ioctl32_big_passthru(bdev, mode, cmd, arg);
  978. default:
  979. return -ENOIOCTLCMD;
  980. }
  981. }
  982. static int cciss_ioctl32_passthru(struct block_device *bdev, fmode_t mode,
  983. unsigned cmd, unsigned long arg)
  984. {
  985. IOCTL32_Command_struct __user *arg32 =
  986. (IOCTL32_Command_struct __user *) arg;
  987. IOCTL_Command_struct arg64;
  988. IOCTL_Command_struct __user *p = compat_alloc_user_space(sizeof(arg64));
  989. int err;
  990. u32 cp;
  991. err = 0;
  992. err |=
  993. copy_from_user(&arg64.LUN_info, &arg32->LUN_info,
  994. sizeof(arg64.LUN_info));
  995. err |=
  996. copy_from_user(&arg64.Request, &arg32->Request,
  997. sizeof(arg64.Request));
  998. err |=
  999. copy_from_user(&arg64.error_info, &arg32->error_info,
  1000. sizeof(arg64.error_info));
  1001. err |= get_user(arg64.buf_size, &arg32->buf_size);
  1002. err |= get_user(cp, &arg32->buf);
  1003. arg64.buf = compat_ptr(cp);
  1004. err |= copy_to_user(p, &arg64, sizeof(arg64));
  1005. if (err)
  1006. return -EFAULT;
  1007. err = do_ioctl(bdev, mode, CCISS_PASSTHRU, (unsigned long)p);
  1008. if (err)
  1009. return err;
  1010. err |=
  1011. copy_in_user(&arg32->error_info, &p->error_info,
  1012. sizeof(arg32->error_info));
  1013. if (err)
  1014. return -EFAULT;
  1015. return err;
  1016. }
  1017. static int cciss_ioctl32_big_passthru(struct block_device *bdev, fmode_t mode,
  1018. unsigned cmd, unsigned long arg)
  1019. {
  1020. BIG_IOCTL32_Command_struct __user *arg32 =
  1021. (BIG_IOCTL32_Command_struct __user *) arg;
  1022. BIG_IOCTL_Command_struct arg64;
  1023. BIG_IOCTL_Command_struct __user *p =
  1024. compat_alloc_user_space(sizeof(arg64));
  1025. int err;
  1026. u32 cp;
  1027. memset(&arg64, 0, sizeof(arg64));
  1028. err = 0;
  1029. err |=
  1030. copy_from_user(&arg64.LUN_info, &arg32->LUN_info,
  1031. sizeof(arg64.LUN_info));
  1032. err |=
  1033. copy_from_user(&arg64.Request, &arg32->Request,
  1034. sizeof(arg64.Request));
  1035. err |=
  1036. copy_from_user(&arg64.error_info, &arg32->error_info,
  1037. sizeof(arg64.error_info));
  1038. err |= get_user(arg64.buf_size, &arg32->buf_size);
  1039. err |= get_user(arg64.malloc_size, &arg32->malloc_size);
  1040. err |= get_user(cp, &arg32->buf);
  1041. arg64.buf = compat_ptr(cp);
  1042. err |= copy_to_user(p, &arg64, sizeof(arg64));
  1043. if (err)
  1044. return -EFAULT;
  1045. err = do_ioctl(bdev, mode, CCISS_BIG_PASSTHRU, (unsigned long)p);
  1046. if (err)
  1047. return err;
  1048. err |=
  1049. copy_in_user(&arg32->error_info, &p->error_info,
  1050. sizeof(arg32->error_info));
  1051. if (err)
  1052. return -EFAULT;
  1053. return err;
  1054. }
  1055. #endif
  1056. static int cciss_getgeo(struct block_device *bdev, struct hd_geometry *geo)
  1057. {
  1058. drive_info_struct *drv = get_drv(bdev->bd_disk);
  1059. if (!drv->cylinders)
  1060. return -ENXIO;
  1061. geo->heads = drv->heads;
  1062. geo->sectors = drv->sectors;
  1063. geo->cylinders = drv->cylinders;
  1064. return 0;
  1065. }
  1066. static void check_ioctl_unit_attention(ctlr_info_t *h, CommandList_struct *c)
  1067. {
  1068. if (c->err_info->CommandStatus == CMD_TARGET_STATUS &&
  1069. c->err_info->ScsiStatus != SAM_STAT_CHECK_CONDITION)
  1070. (void)check_for_unit_attention(h, c);
  1071. }
  1072. static int cciss_getpciinfo(ctlr_info_t *h, void __user *argp)
  1073. {
  1074. cciss_pci_info_struct pciinfo;
  1075. if (!argp)
  1076. return -EINVAL;
  1077. pciinfo.domain = pci_domain_nr(h->pdev->bus);
  1078. pciinfo.bus = h->pdev->bus->number;
  1079. pciinfo.dev_fn = h->pdev->devfn;
  1080. pciinfo.board_id = h->board_id;
  1081. if (copy_to_user(argp, &pciinfo, sizeof(cciss_pci_info_struct)))
  1082. return -EFAULT;
  1083. return 0;
  1084. }
  1085. static int cciss_getintinfo(ctlr_info_t *h, void __user *argp)
  1086. {
  1087. cciss_coalint_struct intinfo;
  1088. if (!argp)
  1089. return -EINVAL;
  1090. intinfo.delay = readl(&h->cfgtable->HostWrite.CoalIntDelay);
  1091. intinfo.count = readl(&h->cfgtable->HostWrite.CoalIntCount);
  1092. if (copy_to_user
  1093. (argp, &intinfo, sizeof(cciss_coalint_struct)))
  1094. return -EFAULT;
  1095. return 0;
  1096. }
  1097. static int cciss_setintinfo(ctlr_info_t *h, void __user *argp)
  1098. {
  1099. cciss_coalint_struct intinfo;
  1100. unsigned long flags;
  1101. int i;
  1102. if (!argp)
  1103. return -EINVAL;
  1104. if (!capable(CAP_SYS_ADMIN))
  1105. return -EPERM;
  1106. if (copy_from_user(&intinfo, argp, sizeof(intinfo)))
  1107. return -EFAULT;
  1108. if ((intinfo.delay == 0) && (intinfo.count == 0))
  1109. return -EINVAL;
  1110. spin_lock_irqsave(&h->lock, flags);
  1111. /* Update the field, and then ring the doorbell */
  1112. writel(intinfo.delay, &(h->cfgtable->HostWrite.CoalIntDelay));
  1113. writel(intinfo.count, &(h->cfgtable->HostWrite.CoalIntCount));
  1114. writel(CFGTBL_ChangeReq, h->vaddr + SA5_DOORBELL);
  1115. for (i = 0; i < MAX_IOCTL_CONFIG_WAIT; i++) {
  1116. if (!(readl(h->vaddr + SA5_DOORBELL) & CFGTBL_ChangeReq))
  1117. break;
  1118. udelay(1000); /* delay and try again */
  1119. }
  1120. spin_unlock_irqrestore(&h->lock, flags);
  1121. if (i >= MAX_IOCTL_CONFIG_WAIT)
  1122. return -EAGAIN;
  1123. return 0;
  1124. }
  1125. static int cciss_getnodename(ctlr_info_t *h, void __user *argp)
  1126. {
  1127. NodeName_type NodeName;
  1128. int i;
  1129. if (!argp)
  1130. return -EINVAL;
  1131. for (i = 0; i < 16; i++)
  1132. NodeName[i] = readb(&h->cfgtable->ServerName[i]);
  1133. if (copy_to_user(argp, NodeName, sizeof(NodeName_type)))
  1134. return -EFAULT;
  1135. return 0;
  1136. }
  1137. static int cciss_setnodename(ctlr_info_t *h, void __user *argp)
  1138. {
  1139. NodeName_type NodeName;
  1140. unsigned long flags;
  1141. int i;
  1142. if (!argp)
  1143. return -EINVAL;
  1144. if (!capable(CAP_SYS_ADMIN))
  1145. return -EPERM;
  1146. if (copy_from_user(NodeName, argp, sizeof(NodeName_type)))
  1147. return -EFAULT;
  1148. spin_lock_irqsave(&h->lock, flags);
  1149. /* Update the field, and then ring the doorbell */
  1150. for (i = 0; i < 16; i++)
  1151. writeb(NodeName[i], &h->cfgtable->ServerName[i]);
  1152. writel(CFGTBL_ChangeReq, h->vaddr + SA5_DOORBELL);
  1153. for (i = 0; i < MAX_IOCTL_CONFIG_WAIT; i++) {
  1154. if (!(readl(h->vaddr + SA5_DOORBELL) & CFGTBL_ChangeReq))
  1155. break;
  1156. udelay(1000); /* delay and try again */
  1157. }
  1158. spin_unlock_irqrestore(&h->lock, flags);
  1159. if (i >= MAX_IOCTL_CONFIG_WAIT)
  1160. return -EAGAIN;
  1161. return 0;
  1162. }
  1163. static int cciss_getheartbeat(ctlr_info_t *h, void __user *argp)
  1164. {
  1165. Heartbeat_type heartbeat;
  1166. if (!argp)
  1167. return -EINVAL;
  1168. heartbeat = readl(&h->cfgtable->HeartBeat);
  1169. if (copy_to_user(argp, &heartbeat, sizeof(Heartbeat_type)))
  1170. return -EFAULT;
  1171. return 0;
  1172. }
  1173. static int cciss_getbustypes(ctlr_info_t *h, void __user *argp)
  1174. {
  1175. BusTypes_type BusTypes;
  1176. if (!argp)
  1177. return -EINVAL;
  1178. BusTypes = readl(&h->cfgtable->BusTypes);
  1179. if (copy_to_user(argp, &BusTypes, sizeof(BusTypes_type)))
  1180. return -EFAULT;
  1181. return 0;
  1182. }
  1183. static int cciss_getfirmver(ctlr_info_t *h, void __user *argp)
  1184. {
  1185. FirmwareVer_type firmware;
  1186. if (!argp)
  1187. return -EINVAL;
  1188. memcpy(firmware, h->firm_ver, 4);
  1189. if (copy_to_user
  1190. (argp, firmware, sizeof(FirmwareVer_type)))
  1191. return -EFAULT;
  1192. return 0;
  1193. }
  1194. static int cciss_getdrivver(ctlr_info_t *h, void __user *argp)
  1195. {
  1196. DriverVer_type DriverVer = DRIVER_VERSION;
  1197. if (!argp)
  1198. return -EINVAL;
  1199. if (copy_to_user(argp, &DriverVer, sizeof(DriverVer_type)))
  1200. return -EFAULT;
  1201. return 0;
  1202. }
  1203. static int cciss_getluninfo(ctlr_info_t *h,
  1204. struct gendisk *disk, void __user *argp)
  1205. {
  1206. LogvolInfo_struct luninfo;
  1207. drive_info_struct *drv = get_drv(disk);
  1208. if (!argp)
  1209. return -EINVAL;
  1210. memcpy(&luninfo.LunID, drv->LunID, sizeof(luninfo.LunID));
  1211. luninfo.num_opens = drv->usage_count;
  1212. luninfo.num_parts = 0;
  1213. if (copy_to_user(argp, &luninfo, sizeof(LogvolInfo_struct)))
  1214. return -EFAULT;
  1215. return 0;
  1216. }
  1217. static int cciss_passthru(ctlr_info_t *h, void __user *argp)
  1218. {
  1219. IOCTL_Command_struct iocommand;
  1220. CommandList_struct *c;
  1221. char *buff = NULL;
  1222. u64bit temp64;
  1223. DECLARE_COMPLETION_ONSTACK(wait);
  1224. if (!argp)
  1225. return -EINVAL;
  1226. if (!capable(CAP_SYS_RAWIO))
  1227. return -EPERM;
  1228. if (copy_from_user
  1229. (&iocommand, argp, sizeof(IOCTL_Command_struct)))
  1230. return -EFAULT;
  1231. if ((iocommand.buf_size < 1) &&
  1232. (iocommand.Request.Type.Direction != XFER_NONE)) {
  1233. return -EINVAL;
  1234. }
  1235. if (iocommand.buf_size > 0) {
  1236. buff = kmalloc(iocommand.buf_size, GFP_KERNEL);
  1237. if (buff == NULL)
  1238. return -EFAULT;
  1239. }
  1240. if (iocommand.Request.Type.Direction == XFER_WRITE) {
  1241. /* Copy the data into the buffer we created */
  1242. if (copy_from_user(buff, iocommand.buf, iocommand.buf_size)) {
  1243. kfree(buff);
  1244. return -EFAULT;
  1245. }
  1246. } else {
  1247. memset(buff, 0, iocommand.buf_size);
  1248. }
  1249. c = cmd_special_alloc(h);
  1250. if (!c) {
  1251. kfree(buff);
  1252. return -ENOMEM;
  1253. }
  1254. /* Fill in the command type */
  1255. c->cmd_type = CMD_IOCTL_PEND;
  1256. /* Fill in Command Header */
  1257. c->Header.ReplyQueue = 0; /* unused in simple mode */
  1258. if (iocommand.buf_size > 0) { /* buffer to fill */
  1259. c->Header.SGList = 1;
  1260. c->Header.SGTotal = 1;
  1261. } else { /* no buffers to fill */
  1262. c->Header.SGList = 0;
  1263. c->Header.SGTotal = 0;
  1264. }
  1265. c->Header.LUN = iocommand.LUN_info;
  1266. /* use the kernel address the cmd block for tag */
  1267. c->Header.Tag.lower = c->busaddr;
  1268. /* Fill in Request block */
  1269. c->Request = iocommand.Request;
  1270. /* Fill in the scatter gather information */
  1271. if (iocommand.buf_size > 0) {
  1272. temp64.val = pci_map_single(h->pdev, buff,
  1273. iocommand.buf_size, PCI_DMA_BIDIRECTIONAL);
  1274. c->SG[0].Addr.lower = temp64.val32.lower;
  1275. c->SG[0].Addr.upper = temp64.val32.upper;
  1276. c->SG[0].Len = iocommand.buf_size;
  1277. c->SG[0].Ext = 0; /* we are not chaining */
  1278. }
  1279. c->waiting = &wait;
  1280. enqueue_cmd_and_start_io(h, c);
  1281. wait_for_completion(&wait);
  1282. /* unlock the buffers from DMA */
  1283. temp64.val32.lower = c->SG[0].Addr.lower;
  1284. temp64.val32.upper = c->SG[0].Addr.upper;
  1285. pci_unmap_single(h->pdev, (dma_addr_t) temp64.val, iocommand.buf_size,
  1286. PCI_DMA_BIDIRECTIONAL);
  1287. check_ioctl_unit_attention(h, c);
  1288. /* Copy the error information out */
  1289. iocommand.error_info = *(c->err_info);
  1290. if (copy_to_user(argp, &iocommand, sizeof(IOCTL_Command_struct))) {
  1291. kfree(buff);
  1292. cmd_special_free(h, c);
  1293. return -EFAULT;
  1294. }
  1295. if (iocommand.Request.Type.Direction == XFER_READ) {
  1296. /* Copy the data out of the buffer we created */
  1297. if (copy_to_user(iocommand.buf, buff, iocommand.buf_size)) {
  1298. kfree(buff);
  1299. cmd_special_free(h, c);
  1300. return -EFAULT;
  1301. }
  1302. }
  1303. kfree(buff);
  1304. cmd_special_free(h, c);
  1305. return 0;
  1306. }
  1307. static int cciss_bigpassthru(ctlr_info_t *h, void __user *argp)
  1308. {
  1309. BIG_IOCTL_Command_struct *ioc;
  1310. CommandList_struct *c;
  1311. unsigned char **buff = NULL;
  1312. int *buff_size = NULL;
  1313. u64bit temp64;
  1314. BYTE sg_used = 0;
  1315. int status = 0;
  1316. int i;
  1317. DECLARE_COMPLETION_ONSTACK(wait);
  1318. __u32 left;
  1319. __u32 sz;
  1320. BYTE __user *data_ptr;
  1321. if (!argp)
  1322. return -EINVAL;
  1323. if (!capable(CAP_SYS_RAWIO))
  1324. return -EPERM;
  1325. ioc = (BIG_IOCTL_Command_struct *)
  1326. kmalloc(sizeof(*ioc), GFP_KERNEL);
  1327. if (!ioc) {
  1328. status = -ENOMEM;
  1329. goto cleanup1;
  1330. }
  1331. if (copy_from_user(ioc, argp, sizeof(*ioc))) {
  1332. status = -EFAULT;
  1333. goto cleanup1;
  1334. }
  1335. if ((ioc->buf_size < 1) &&
  1336. (ioc->Request.Type.Direction != XFER_NONE)) {
  1337. status = -EINVAL;
  1338. goto cleanup1;
  1339. }
  1340. /* Check kmalloc limits using all SGs */
  1341. if (ioc->malloc_size > MAX_KMALLOC_SIZE) {
  1342. status = -EINVAL;
  1343. goto cleanup1;
  1344. }
  1345. if (ioc->buf_size > ioc->malloc_size * MAXSGENTRIES) {
  1346. status = -EINVAL;
  1347. goto cleanup1;
  1348. }
  1349. buff = kzalloc(MAXSGENTRIES * sizeof(char *), GFP_KERNEL);
  1350. if (!buff) {
  1351. status = -ENOMEM;
  1352. goto cleanup1;
  1353. }
  1354. buff_size = kmalloc(MAXSGENTRIES * sizeof(int), GFP_KERNEL);
  1355. if (!buff_size) {
  1356. status = -ENOMEM;
  1357. goto cleanup1;
  1358. }
  1359. left = ioc->buf_size;
  1360. data_ptr = ioc->buf;
  1361. while (left) {
  1362. sz = (left > ioc->malloc_size) ? ioc->malloc_size : left;
  1363. buff_size[sg_used] = sz;
  1364. buff[sg_used] = kmalloc(sz, GFP_KERNEL);
  1365. if (buff[sg_used] == NULL) {
  1366. status = -ENOMEM;
  1367. goto cleanup1;
  1368. }
  1369. if (ioc->Request.Type.Direction == XFER_WRITE) {
  1370. if (copy_from_user(buff[sg_used], data_ptr, sz)) {
  1371. status = -EFAULT;
  1372. goto cleanup1;
  1373. }
  1374. } else {
  1375. memset(buff[sg_used], 0, sz);
  1376. }
  1377. left -= sz;
  1378. data_ptr += sz;
  1379. sg_used++;
  1380. }
  1381. c = cmd_special_alloc(h);
  1382. if (!c) {
  1383. status = -ENOMEM;
  1384. goto cleanup1;
  1385. }
  1386. c->cmd_type = CMD_IOCTL_PEND;
  1387. c->Header.ReplyQueue = 0;
  1388. c->Header.SGList = sg_used;
  1389. c->Header.SGTotal = sg_used;
  1390. c->Header.LUN = ioc->LUN_info;
  1391. c->Header.Tag.lower = c->busaddr;
  1392. c->Request = ioc->Request;
  1393. for (i = 0; i < sg_used; i++) {
  1394. temp64.val = pci_map_single(h->pdev, buff[i], buff_size[i],
  1395. PCI_DMA_BIDIRECTIONAL);
  1396. c->SG[i].Addr.lower = temp64.val32.lower;
  1397. c->SG[i].Addr.upper = temp64.val32.upper;
  1398. c->SG[i].Len = buff_size[i];
  1399. c->SG[i].Ext = 0; /* we are not chaining */
  1400. }
  1401. c->waiting = &wait;
  1402. enqueue_cmd_and_start_io(h, c);
  1403. wait_for_completion(&wait);
  1404. /* unlock the buffers from DMA */
  1405. for (i = 0; i < sg_used; i++) {
  1406. temp64.val32.lower = c->SG[i].Addr.lower;
  1407. temp64.val32.upper = c->SG[i].Addr.upper;
  1408. pci_unmap_single(h->pdev,
  1409. (dma_addr_t) temp64.val, buff_size[i],
  1410. PCI_DMA_BIDIRECTIONAL);
  1411. }
  1412. check_ioctl_unit_attention(h, c);
  1413. /* Copy the error information out */
  1414. ioc->error_info = *(c->err_info);
  1415. if (copy_to_user(argp, ioc, sizeof(*ioc))) {
  1416. cmd_special_free(h, c);
  1417. status = -EFAULT;
  1418. goto cleanup1;
  1419. }
  1420. if (ioc->Request.Type.Direction == XFER_READ) {
  1421. /* Copy the data out of the buffer we created */
  1422. BYTE __user *ptr = ioc->buf;
  1423. for (i = 0; i < sg_used; i++) {
  1424. if (copy_to_user(ptr, buff[i], buff_size[i])) {
  1425. cmd_special_free(h, c);
  1426. status = -EFAULT;
  1427. goto cleanup1;
  1428. }
  1429. ptr += buff_size[i];
  1430. }
  1431. }
  1432. cmd_special_free(h, c);
  1433. status = 0;
  1434. cleanup1:
  1435. if (buff) {
  1436. for (i = 0; i < sg_used; i++)
  1437. kfree(buff[i]);
  1438. kfree(buff);
  1439. }
  1440. kfree(buff_size);
  1441. kfree(ioc);
  1442. return status;
  1443. }
  1444. static int cciss_ioctl(struct block_device *bdev, fmode_t mode,
  1445. unsigned int cmd, unsigned long arg)
  1446. {
  1447. struct gendisk *disk = bdev->bd_disk;
  1448. ctlr_info_t *h = get_host(disk);
  1449. void __user *argp = (void __user *)arg;
  1450. dev_dbg(&h->pdev->dev, "cciss_ioctl: Called with cmd=%x %lx\n",
  1451. cmd, arg);
  1452. switch (cmd) {
  1453. case CCISS_GETPCIINFO:
  1454. return cciss_getpciinfo(h, argp);
  1455. case CCISS_GETINTINFO:
  1456. return cciss_getintinfo(h, argp);
  1457. case CCISS_SETINTINFO:
  1458. return cciss_setintinfo(h, argp);
  1459. case CCISS_GETNODENAME:
  1460. return cciss_getnodename(h, argp);
  1461. case CCISS_SETNODENAME:
  1462. return cciss_setnodename(h, argp);
  1463. case CCISS_GETHEARTBEAT:
  1464. return cciss_getheartbeat(h, argp);
  1465. case CCISS_GETBUSTYPES:
  1466. return cciss_getbustypes(h, argp);
  1467. case CCISS_GETFIRMVER:
  1468. return cciss_getfirmver(h, argp);
  1469. case CCISS_GETDRIVVER:
  1470. return cciss_getdrivver(h, argp);
  1471. case CCISS_DEREGDISK:
  1472. case CCISS_REGNEWD:
  1473. case CCISS_REVALIDVOLS:
  1474. return rebuild_lun_table(h, 0, 1);
  1475. case CCISS_GETLUNINFO:
  1476. return cciss_getluninfo(h, disk, argp);
  1477. case CCISS_PASSTHRU:
  1478. return cciss_passthru(h, argp);
  1479. case CCISS_BIG_PASSTHRU:
  1480. return cciss_bigpassthru(h, argp);
  1481. /* scsi_cmd_ioctl handles these, below, though some are not */
  1482. /* very meaningful for cciss. SG_IO is the main one people want. */
  1483. case SG_GET_VERSION_NUM:
  1484. case SG_SET_TIMEOUT:
  1485. case SG_GET_TIMEOUT:
  1486. case SG_GET_RESERVED_SIZE:
  1487. case SG_SET_RESERVED_SIZE:
  1488. case SG_EMULATED_HOST:
  1489. case SG_IO:
  1490. case SCSI_IOCTL_SEND_COMMAND:
  1491. return scsi_cmd_ioctl(disk->queue, disk, mode, cmd, argp);
  1492. /* scsi_cmd_ioctl would normally handle these, below, but */
  1493. /* they aren't a good fit for cciss, as CD-ROMs are */
  1494. /* not supported, and we don't have any bus/target/lun */
  1495. /* which we present to the kernel. */
  1496. case CDROM_SEND_PACKET:
  1497. case CDROMCLOSETRAY:
  1498. case CDROMEJECT:
  1499. case SCSI_IOCTL_GET_IDLUN:
  1500. case SCSI_IOCTL_GET_BUS_NUMBER:
  1501. default:
  1502. return -ENOTTY;
  1503. }
  1504. }
  1505. static void cciss_check_queues(ctlr_info_t *h)
  1506. {
  1507. int start_queue = h->next_to_run;
  1508. int i;
  1509. /* check to see if we have maxed out the number of commands that can
  1510. * be placed on the queue. If so then exit. We do this check here
  1511. * in case the interrupt we serviced was from an ioctl and did not
  1512. * free any new commands.
  1513. */
  1514. if ((find_first_zero_bit(h->cmd_pool_bits, h->nr_cmds)) == h->nr_cmds)
  1515. return;
  1516. /* We have room on the queue for more commands. Now we need to queue
  1517. * them up. We will also keep track of the next queue to run so
  1518. * that every queue gets a chance to be started first.
  1519. */
  1520. for (i = 0; i < h->highest_lun + 1; i++) {
  1521. int curr_queue = (start_queue + i) % (h->highest_lun + 1);
  1522. /* make sure the disk has been added and the drive is real
  1523. * because this can be called from the middle of init_one.
  1524. */
  1525. if (!h->drv[curr_queue])
  1526. continue;
  1527. if (!(h->drv[curr_queue]->queue) ||
  1528. !(h->drv[curr_queue]->heads))
  1529. continue;
  1530. blk_start_queue(h->gendisk[curr_queue]->queue);
  1531. /* check to see if we have maxed out the number of commands
  1532. * that can be placed on the queue.
  1533. */
  1534. if ((find_first_zero_bit(h->cmd_pool_bits, h->nr_cmds)) == h->nr_cmds) {
  1535. if (curr_queue == start_queue) {
  1536. h->next_to_run =
  1537. (start_queue + 1) % (h->highest_lun + 1);
  1538. break;
  1539. } else {
  1540. h->next_to_run = curr_queue;
  1541. break;
  1542. }
  1543. }
  1544. }
  1545. }
  1546. static void cciss_softirq_done(struct request *rq)
  1547. {
  1548. CommandList_struct *c = rq->completion_data;
  1549. ctlr_info_t *h = hba[c->ctlr];
  1550. SGDescriptor_struct *curr_sg = c->SG;
  1551. u64bit temp64;
  1552. unsigned long flags;
  1553. int i, ddir;
  1554. int sg_index = 0;
  1555. if (c->Request.Type.Direction == XFER_READ)
  1556. ddir = PCI_DMA_FROMDEVICE;
  1557. else
  1558. ddir = PCI_DMA_TODEVICE;
  1559. /* command did not need to be retried */
  1560. /* unmap the DMA mapping for all the scatter gather elements */
  1561. for (i = 0; i < c->Header.SGList; i++) {
  1562. if (curr_sg[sg_index].Ext == CCISS_SG_CHAIN) {
  1563. cciss_unmap_sg_chain_block(h, c);
  1564. /* Point to the next block */
  1565. curr_sg = h->cmd_sg_list[c->cmdindex];
  1566. sg_index = 0;
  1567. }
  1568. temp64.val32.lower = curr_sg[sg_index].Addr.lower;
  1569. temp64.val32.upper = curr_sg[sg_index].Addr.upper;
  1570. pci_unmap_page(h->pdev, temp64.val, curr_sg[sg_index].Len,
  1571. ddir);
  1572. ++sg_index;
  1573. }
  1574. dev_dbg(&h->pdev->dev, "Done with %p\n", rq);
  1575. /* set the residual count for pc requests */
  1576. if (rq->cmd_type == REQ_TYPE_BLOCK_PC)
  1577. rq->resid_len = c->err_info->ResidualCnt;
  1578. blk_end_request_all(rq, (rq->errors == 0) ? 0 : -EIO);
  1579. spin_lock_irqsave(&h->lock, flags);
  1580. cmd_free(h, c);
  1581. cciss_check_queues(h);
  1582. spin_unlock_irqrestore(&h->lock, flags);
  1583. }
  1584. static inline void log_unit_to_scsi3addr(ctlr_info_t *h,
  1585. unsigned char scsi3addr[], uint32_t log_unit)
  1586. {
  1587. memcpy(scsi3addr, h->drv[log_unit]->LunID,
  1588. sizeof(h->drv[log_unit]->LunID));
  1589. }
  1590. /* This function gets the SCSI vendor, model, and revision of a logical drive
  1591. * via the inquiry page 0. Model, vendor, and rev are set to empty strings if
  1592. * they cannot be read.
  1593. */
  1594. static void cciss_get_device_descr(ctlr_info_t *h, int logvol,
  1595. char *vendor, char *model, char *rev)
  1596. {
  1597. int rc;
  1598. InquiryData_struct *inq_buf;
  1599. unsigned char scsi3addr[8];
  1600. *vendor = '\0';
  1601. *model = '\0';
  1602. *rev = '\0';
  1603. inq_buf = kzalloc(sizeof(InquiryData_struct), GFP_KERNEL);
  1604. if (!inq_buf)
  1605. return;
  1606. log_unit_to_scsi3addr(h, scsi3addr, logvol);
  1607. rc = sendcmd_withirq(h, CISS_INQUIRY, inq_buf, sizeof(*inq_buf), 0,
  1608. scsi3addr, TYPE_CMD);
  1609. if (rc == IO_OK) {
  1610. memcpy(vendor, &inq_buf->data_byte[8], VENDOR_LEN);
  1611. vendor[VENDOR_LEN] = '\0';
  1612. memcpy(model, &inq_buf->data_byte[16], MODEL_LEN);
  1613. model[MODEL_LEN] = '\0';
  1614. memcpy(rev, &inq_buf->data_byte[32], REV_LEN);
  1615. rev[REV_LEN] = '\0';
  1616. }
  1617. kfree(inq_buf);
  1618. return;
  1619. }
  1620. /* This function gets the serial number of a logical drive via
  1621. * inquiry page 0x83. Serial no. is 16 bytes. If the serial
  1622. * number cannot be had, for whatever reason, 16 bytes of 0xff
  1623. * are returned instead.
  1624. */
  1625. static void cciss_get_serial_no(ctlr_info_t *h, int logvol,
  1626. unsigned char *serial_no, int buflen)
  1627. {
  1628. #define PAGE_83_INQ_BYTES 64
  1629. int rc;
  1630. unsigned char *buf;
  1631. unsigned char scsi3addr[8];
  1632. if (buflen > 16)
  1633. buflen = 16;
  1634. memset(serial_no, 0xff, buflen);
  1635. buf = kzalloc(PAGE_83_INQ_BYTES, GFP_KERNEL);
  1636. if (!buf)
  1637. return;
  1638. memset(serial_no, 0, buflen);
  1639. log_unit_to_scsi3addr(h, scsi3addr, logvol);
  1640. rc = sendcmd_withirq(h, CISS_INQUIRY, buf,
  1641. PAGE_83_INQ_BYTES, 0x83, scsi3addr, TYPE_CMD);
  1642. if (rc == IO_OK)
  1643. memcpy(serial_no, &buf[8], buflen);
  1644. kfree(buf);
  1645. return;
  1646. }
  1647. /*
  1648. * cciss_add_disk sets up the block device queue for a logical drive
  1649. */
  1650. static int cciss_add_disk(ctlr_info_t *h, struct gendisk *disk,
  1651. int drv_index)
  1652. {
  1653. disk->queue = blk_init_queue(do_cciss_request, &h->lock);
  1654. if (!disk->queue)
  1655. goto init_queue_failure;
  1656. sprintf(disk->disk_name, "cciss/c%dd%d", h->ctlr, drv_index);
  1657. disk->major = h->major;
  1658. disk->first_minor = drv_index << NWD_SHIFT;
  1659. disk->fops = &cciss_fops;
  1660. if (cciss_create_ld_sysfs_entry(h, drv_index))
  1661. goto cleanup_queue;
  1662. disk->private_data = h->drv[drv_index];
  1663. disk->driverfs_dev = &h->drv[drv_index]->dev;
  1664. /* Set up queue information */
  1665. blk_queue_bounce_limit(disk->queue, h->pdev->dma_mask);
  1666. /* This is a hardware imposed limit. */
  1667. blk_queue_max_segments(disk->queue, h->maxsgentries);
  1668. blk_queue_max_hw_sectors(disk->queue, h->cciss_max_sectors);
  1669. blk_queue_softirq_done(disk->queue, cciss_softirq_done);
  1670. disk->queue->queuedata = h;
  1671. blk_queue_logical_block_size(disk->queue,
  1672. h->drv[drv_index]->block_size);
  1673. /* Make sure all queue data is written out before */
  1674. /* setting h->drv[drv_index]->queue, as setting this */
  1675. /* allows the interrupt handler to start the queue */
  1676. wmb();
  1677. h->drv[drv_index]->queue = disk->queue;
  1678. add_disk(disk);
  1679. return 0;
  1680. cleanup_queue:
  1681. blk_cleanup_queue(disk->queue);
  1682. disk->queue = NULL;
  1683. init_queue_failure:
  1684. return -1;
  1685. }
  1686. /* This function will check the usage_count of the drive to be updated/added.
  1687. * If the usage_count is zero and it is a heretofore unknown drive, or,
  1688. * the drive's capacity, geometry, or serial number has changed,
  1689. * then the drive information will be updated and the disk will be
  1690. * re-registered with the kernel. If these conditions don't hold,
  1691. * then it will be left alone for the next reboot. The exception to this
  1692. * is disk 0 which will always be left registered with the kernel since it
  1693. * is also the controller node. Any changes to disk 0 will show up on
  1694. * the next reboot.
  1695. */
  1696. static void cciss_update_drive_info(ctlr_info_t *h, int drv_index,
  1697. int first_time, int via_ioctl)
  1698. {
  1699. struct gendisk *disk;
  1700. InquiryData_struct *inq_buff = NULL;
  1701. unsigned int block_size;
  1702. sector_t total_size;
  1703. unsigned long flags = 0;
  1704. int ret = 0;
  1705. drive_info_struct *drvinfo;
  1706. /* Get information about the disk and modify the driver structure */
  1707. inq_buff = kmalloc(sizeof(InquiryData_struct), GFP_KERNEL);
  1708. drvinfo = kzalloc(sizeof(*drvinfo), GFP_KERNEL);
  1709. if (inq_buff == NULL || drvinfo == NULL)
  1710. goto mem_msg;
  1711. /* testing to see if 16-byte CDBs are already being used */
  1712. if (h->cciss_read == CCISS_READ_16) {
  1713. cciss_read_capacity_16(h, drv_index,
  1714. &total_size, &block_size);
  1715. } else {
  1716. cciss_read_capacity(h, drv_index, &total_size, &block_size);
  1717. /* if read_capacity returns all F's this volume is >2TB */
  1718. /* in size so we switch to 16-byte CDB's for all */
  1719. /* read/write ops */
  1720. if (total_size == 0xFFFFFFFFULL) {
  1721. cciss_read_capacity_16(h, drv_index,
  1722. &total_size, &block_size);
  1723. h->cciss_read = CCISS_READ_16;
  1724. h->cciss_write = CCISS_WRITE_16;
  1725. } else {
  1726. h->cciss_read = CCISS_READ_10;
  1727. h->cciss_write = CCISS_WRITE_10;
  1728. }
  1729. }
  1730. cciss_geometry_inquiry(h, drv_index, total_size, block_size,
  1731. inq_buff, drvinfo);
  1732. drvinfo->block_size = block_size;
  1733. drvinfo->nr_blocks = total_size + 1;
  1734. cciss_get_device_descr(h, drv_index, drvinfo->vendor,
  1735. drvinfo->model, drvinfo->rev);
  1736. cciss_get_serial_no(h, drv_index, drvinfo->serial_no,
  1737. sizeof(drvinfo->serial_no));
  1738. /* Save the lunid in case we deregister the disk, below. */
  1739. memcpy(drvinfo->LunID, h->drv[drv_index]->LunID,
  1740. sizeof(drvinfo->LunID));
  1741. /* Is it the same disk we already know, and nothing's changed? */
  1742. if (h->drv[drv_index]->raid_level != -1 &&
  1743. ((memcmp(drvinfo->serial_no,
  1744. h->drv[drv_index]->serial_no, 16) == 0) &&
  1745. drvinfo->block_size == h->drv[drv_index]->block_size &&
  1746. drvinfo->nr_blocks == h->drv[drv_index]->nr_blocks &&
  1747. drvinfo->heads == h->drv[drv_index]->heads &&
  1748. drvinfo->sectors == h->drv[drv_index]->sectors &&
  1749. drvinfo->cylinders == h->drv[drv_index]->cylinders))
  1750. /* The disk is unchanged, nothing to update */
  1751. goto freeret;
  1752. /* If we get here it's not the same disk, or something's changed,
  1753. * so we need to * deregister it, and re-register it, if it's not
  1754. * in use.
  1755. * If the disk already exists then deregister it before proceeding
  1756. * (unless it's the first disk (for the controller node).
  1757. */
  1758. if (h->drv[drv_index]->raid_level != -1 && drv_index != 0) {
  1759. dev_warn(&h->pdev->dev, "disk %d has changed.\n", drv_index);
  1760. spin_lock_irqsave(&h->lock, flags);
  1761. h->drv[drv_index]->busy_configuring = 1;
  1762. spin_unlock_irqrestore(&h->lock, flags);
  1763. /* deregister_disk sets h->drv[drv_index]->queue = NULL
  1764. * which keeps the interrupt handler from starting
  1765. * the queue.
  1766. */
  1767. ret = deregister_disk(h, drv_index, 0, via_ioctl);
  1768. }
  1769. /* If the disk is in use return */
  1770. if (ret)
  1771. goto freeret;
  1772. /* Save the new information from cciss_geometry_inquiry
  1773. * and serial number inquiry. If the disk was deregistered
  1774. * above, then h->drv[drv_index] will be NULL.
  1775. */
  1776. if (h->drv[drv_index] == NULL) {
  1777. drvinfo->device_initialized = 0;
  1778. h->drv[drv_index] = drvinfo;
  1779. drvinfo = NULL; /* so it won't be freed below. */
  1780. } else {
  1781. /* special case for cxd0 */
  1782. h->drv[drv_index]->block_size = drvinfo->block_size;
  1783. h->drv[drv_index]->nr_blocks = drvinfo->nr_blocks;
  1784. h->drv[drv_index]->heads = drvinfo->heads;
  1785. h->drv[drv_index]->sectors = drvinfo->sectors;
  1786. h->drv[drv_index]->cylinders = drvinfo->cylinders;
  1787. h->drv[drv_index]->raid_level = drvinfo->raid_level;
  1788. memcpy(h->drv[drv_index]->serial_no, drvinfo->serial_no, 16);
  1789. memcpy(h->drv[drv_index]->vendor, drvinfo->vendor,
  1790. VENDOR_LEN + 1);
  1791. memcpy(h->drv[drv_index]->model, drvinfo->model, MODEL_LEN + 1);
  1792. memcpy(h->drv[drv_index]->rev, drvinfo->rev, REV_LEN + 1);
  1793. }
  1794. ++h->num_luns;
  1795. disk = h->gendisk[drv_index];
  1796. set_capacity(disk, h->drv[drv_index]->nr_blocks);
  1797. /* If it's not disk 0 (drv_index != 0)
  1798. * or if it was disk 0, but there was previously
  1799. * no actual corresponding configured logical drive
  1800. * (raid_leve == -1) then we want to update the
  1801. * logical drive's information.
  1802. */
  1803. if (drv_index || first_time) {
  1804. if (cciss_add_disk(h, disk, drv_index) != 0) {
  1805. cciss_free_gendisk(h, drv_index);
  1806. cciss_free_drive_info(h, drv_index);
  1807. dev_warn(&h->pdev->dev, "could not update disk %d\n",
  1808. drv_index);
  1809. --h->num_luns;
  1810. }
  1811. }
  1812. freeret:
  1813. kfree(inq_buff);
  1814. kfree(drvinfo);
  1815. return;
  1816. mem_msg:
  1817. dev_err(&h->pdev->dev, "out of memory\n");
  1818. goto freeret;
  1819. }
  1820. /* This function will find the first index of the controllers drive array
  1821. * that has a null drv pointer and allocate the drive info struct and
  1822. * will return that index This is where new drives will be added.
  1823. * If the index to be returned is greater than the highest_lun index for
  1824. * the controller then highest_lun is set * to this new index.
  1825. * If there are no available indexes or if tha allocation fails, then -1
  1826. * is returned. * "controller_node" is used to know if this is a real
  1827. * logical drive, or just the controller node, which determines if this
  1828. * counts towards highest_lun.
  1829. */
  1830. static int cciss_alloc_drive_info(ctlr_info_t *h, int controller_node)
  1831. {
  1832. int i;
  1833. drive_info_struct *drv;
  1834. /* Search for an empty slot for our drive info */
  1835. for (i = 0; i < CISS_MAX_LUN; i++) {
  1836. /* if not cxd0 case, and it's occupied, skip it. */
  1837. if (h->drv[i] && i != 0)
  1838. continue;
  1839. /*
  1840. * If it's cxd0 case, and drv is alloc'ed already, and a
  1841. * disk is configured there, skip it.
  1842. */
  1843. if (i == 0 && h->drv[i] && h->drv[i]->raid_level != -1)
  1844. continue;
  1845. /*
  1846. * We've found an empty slot. Update highest_lun
  1847. * provided this isn't just the fake cxd0 controller node.
  1848. */
  1849. if (i > h->highest_lun && !controller_node)
  1850. h->highest_lun = i;
  1851. /* If adding a real disk at cxd0, and it's already alloc'ed */
  1852. if (i == 0 && h->drv[i] != NULL)
  1853. return i;
  1854. /*
  1855. * Found an empty slot, not already alloc'ed. Allocate it.
  1856. * Mark it with raid_level == -1, so we know it's new later on.
  1857. */
  1858. drv = kzalloc(sizeof(*drv), GFP_KERNEL);
  1859. if (!drv)
  1860. return -1;
  1861. drv->raid_level = -1; /* so we know it's new */
  1862. h->drv[i] = drv;
  1863. return i;
  1864. }
  1865. return -1;
  1866. }
  1867. static void cciss_free_drive_info(ctlr_info_t *h, int drv_index)
  1868. {
  1869. kfree(h->drv[drv_index]);
  1870. h->drv[drv_index] = NULL;
  1871. }
  1872. static void cciss_free_gendisk(ctlr_info_t *h, int drv_index)
  1873. {
  1874. put_disk(h->gendisk[drv_index]);
  1875. h->gendisk[drv_index] = NULL;
  1876. }
  1877. /* cciss_add_gendisk finds a free hba[]->drv structure
  1878. * and allocates a gendisk if needed, and sets the lunid
  1879. * in the drvinfo structure. It returns the index into
  1880. * the ->drv[] array, or -1 if none are free.
  1881. * is_controller_node indicates whether highest_lun should
  1882. * count this disk, or if it's only being added to provide
  1883. * a means to talk to the controller in case no logical
  1884. * drives have yet been configured.
  1885. */
  1886. static int cciss_add_gendisk(ctlr_info_t *h, unsigned char lunid[],
  1887. int controller_node)
  1888. {
  1889. int drv_index;
  1890. drv_index = cciss_alloc_drive_info(h, controller_node);
  1891. if (drv_index == -1)
  1892. return -1;
  1893. /*Check if the gendisk needs to be allocated */
  1894. if (!h->gendisk[drv_index]) {
  1895. h->gendisk[drv_index] =
  1896. alloc_disk(1 << NWD_SHIFT);
  1897. if (!h->gendisk[drv_index]) {
  1898. dev_err(&h->pdev->dev,
  1899. "could not allocate a new disk %d\n",
  1900. drv_index);
  1901. goto err_free_drive_info;
  1902. }
  1903. }
  1904. memcpy(h->drv[drv_index]->LunID, lunid,
  1905. sizeof(h->drv[drv_index]->LunID));
  1906. if (cciss_create_ld_sysfs_entry(h, drv_index))
  1907. goto err_free_disk;
  1908. /* Don't need to mark this busy because nobody */
  1909. /* else knows about this disk yet to contend */
  1910. /* for access to it. */
  1911. h->drv[drv_index]->busy_configuring = 0;
  1912. wmb();
  1913. return drv_index;
  1914. err_free_disk:
  1915. cciss_free_gendisk(h, drv_index);
  1916. err_free_drive_info:
  1917. cciss_free_drive_info(h, drv_index);
  1918. return -1;
  1919. }
  1920. /* This is for the special case of a controller which
  1921. * has no logical drives. In this case, we still need
  1922. * to register a disk so the controller can be accessed
  1923. * by the Array Config Utility.
  1924. */
  1925. static void cciss_add_controller_node(ctlr_info_t *h)
  1926. {
  1927. struct gendisk *disk;
  1928. int drv_index;
  1929. if (h->gendisk[0] != NULL) /* already did this? Then bail. */
  1930. return;
  1931. drv_index = cciss_add_gendisk(h, CTLR_LUNID, 1);
  1932. if (drv_index == -1)
  1933. goto error;
  1934. h->drv[drv_index]->block_size = 512;
  1935. h->drv[drv_index]->nr_blocks = 0;
  1936. h->drv[drv_index]->heads = 0;
  1937. h->drv[drv_index]->sectors = 0;
  1938. h->drv[drv_index]->cylinders = 0;
  1939. h->drv[drv_index]->raid_level = -1;
  1940. memset(h->drv[drv_index]->serial_no, 0, 16);
  1941. disk = h->gendisk[drv_index];
  1942. if (cciss_add_disk(h, disk, drv_index) == 0)
  1943. return;
  1944. cciss_free_gendisk(h, drv_index);
  1945. cciss_free_drive_info(h, drv_index);
  1946. error:
  1947. dev_warn(&h->pdev->dev, "could not add disk 0.\n");
  1948. return;
  1949. }
  1950. /* This function will add and remove logical drives from the Logical
  1951. * drive array of the controller and maintain persistency of ordering
  1952. * so that mount points are preserved until the next reboot. This allows
  1953. * for the removal of logical drives in the middle of the drive array
  1954. * without a re-ordering of those drives.
  1955. * INPUT
  1956. * h = The controller to perform the operations on
  1957. */
  1958. static int rebuild_lun_table(ctlr_info_t *h, int first_time,
  1959. int via_ioctl)
  1960. {
  1961. int num_luns;
  1962. ReportLunData_struct *ld_buff = NULL;
  1963. int return_code;
  1964. int listlength = 0;
  1965. int i;
  1966. int drv_found;
  1967. int drv_index = 0;
  1968. unsigned char lunid[8] = CTLR_LUNID;
  1969. unsigned long flags;
  1970. if (!capable(CAP_SYS_RAWIO))
  1971. return -EPERM;
  1972. /* Set busy_configuring flag for this operation */
  1973. spin_lock_irqsave(&h->lock, flags);
  1974. if (h->busy_configuring) {
  1975. spin_unlock_irqrestore(&h->lock, flags);
  1976. return -EBUSY;
  1977. }
  1978. h->busy_configuring = 1;
  1979. spin_unlock_irqrestore(&h->lock, flags);
  1980. ld_buff = kzalloc(sizeof(ReportLunData_struct), GFP_KERNEL);
  1981. if (ld_buff == NULL)
  1982. goto mem_msg;
  1983. return_code = sendcmd_withirq(h, CISS_REPORT_LOG, ld_buff,
  1984. sizeof(ReportLunData_struct),
  1985. 0, CTLR_LUNID, TYPE_CMD);
  1986. if (return_code == IO_OK)
  1987. listlength = be32_to_cpu(*(__be32 *) ld_buff->LUNListLength);
  1988. else { /* reading number of logical volumes failed */
  1989. dev_warn(&h->pdev->dev,
  1990. "report logical volume command failed\n");
  1991. listlength = 0;
  1992. goto freeret;
  1993. }
  1994. num_luns = listlength / 8; /* 8 bytes per entry */
  1995. if (num_luns > CISS_MAX_LUN) {
  1996. num_luns = CISS_MAX_LUN;
  1997. dev_warn(&h->pdev->dev, "more luns configured"
  1998. " on controller than can be handled by"
  1999. " this driver.\n");
  2000. }
  2001. if (num_luns == 0)
  2002. cciss_add_controller_node(h);
  2003. /* Compare controller drive array to driver's drive array
  2004. * to see if any drives are missing on the controller due
  2005. * to action of Array Config Utility (user deletes drive)
  2006. * and deregister logical drives which have disappeared.
  2007. */
  2008. for (i = 0; i <= h->highest_lun; i++) {
  2009. int j;
  2010. drv_found = 0;
  2011. /* skip holes in the array from already deleted drives */
  2012. if (h->drv[i] == NULL)
  2013. continue;
  2014. for (j = 0; j < num_luns; j++) {
  2015. memcpy(lunid, &ld_buff->LUN[j][0], sizeof(lunid));
  2016. if (memcmp(h->drv[i]->LunID, lunid,
  2017. sizeof(lunid)) == 0) {
  2018. drv_found = 1;
  2019. break;
  2020. }
  2021. }
  2022. if (!drv_found) {
  2023. /* Deregister it from the OS, it's gone. */
  2024. spin_lock_irqsave(&h->lock, flags);
  2025. h->drv[i]->busy_configuring = 1;
  2026. spin_unlock_irqrestore(&h->lock, flags);
  2027. return_code = deregister_disk(h, i, 1, via_ioctl);
  2028. if (h->drv[i] != NULL)
  2029. h->drv[i]->busy_configuring = 0;
  2030. }
  2031. }
  2032. /* Compare controller drive array to driver's drive array.
  2033. * Check for updates in the drive information and any new drives
  2034. * on the controller due to ACU adding logical drives, or changing
  2035. * a logical drive's size, etc. Reregister any new/changed drives
  2036. */
  2037. for (i = 0; i < num_luns; i++) {
  2038. int j;
  2039. drv_found = 0;
  2040. memcpy(lunid, &ld_buff->LUN[i][0], sizeof(lunid));
  2041. /* Find if the LUN is already in the drive array
  2042. * of the driver. If so then update its info
  2043. * if not in use. If it does not exist then find
  2044. * the first free index and add it.
  2045. */
  2046. for (j = 0; j <= h->highest_lun; j++) {
  2047. if (h->drv[j] != NULL &&
  2048. memcmp(h->drv[j]->LunID, lunid,
  2049. sizeof(h->drv[j]->LunID)) == 0) {
  2050. drv_index = j;
  2051. drv_found = 1;
  2052. break;
  2053. }
  2054. }
  2055. /* check if the drive was found already in the array */
  2056. if (!drv_found) {
  2057. drv_index = cciss_add_gendisk(h, lunid, 0);
  2058. if (drv_index == -1)
  2059. goto freeret;
  2060. }
  2061. cciss_update_drive_info(h, drv_index, first_time, via_ioctl);
  2062. } /* end for */
  2063. freeret:
  2064. kfree(ld_buff);
  2065. h->busy_configuring = 0;
  2066. /* We return -1 here to tell the ACU that we have registered/updated
  2067. * all of the drives that we can and to keep it from calling us
  2068. * additional times.
  2069. */
  2070. return -1;
  2071. mem_msg:
  2072. dev_err(&h->pdev->dev, "out of memory\n");
  2073. h->busy_configuring = 0;
  2074. goto freeret;
  2075. }
  2076. static void cciss_clear_drive_info(drive_info_struct *drive_info)
  2077. {
  2078. /* zero out the disk size info */
  2079. drive_info->nr_blocks = 0;
  2080. drive_info->block_size = 0;
  2081. drive_info->heads = 0;
  2082. drive_info->sectors = 0;
  2083. drive_info->cylinders = 0;
  2084. drive_info->raid_level = -1;
  2085. memset(drive_info->serial_no, 0, sizeof(drive_info->serial_no));
  2086. memset(drive_info->model, 0, sizeof(drive_info->model));
  2087. memset(drive_info->rev, 0, sizeof(drive_info->rev));
  2088. memset(drive_info->vendor, 0, sizeof(drive_info->vendor));
  2089. /*
  2090. * don't clear the LUNID though, we need to remember which
  2091. * one this one is.
  2092. */
  2093. }
  2094. /* This function will deregister the disk and it's queue from the
  2095. * kernel. It must be called with the controller lock held and the
  2096. * drv structures busy_configuring flag set. It's parameters are:
  2097. *
  2098. * disk = This is the disk to be deregistered
  2099. * drv = This is the drive_info_struct associated with the disk to be
  2100. * deregistered. It contains information about the disk used
  2101. * by the driver.
  2102. * clear_all = This flag determines whether or not the disk information
  2103. * is going to be completely cleared out and the highest_lun
  2104. * reset. Sometimes we want to clear out information about
  2105. * the disk in preparation for re-adding it. In this case
  2106. * the highest_lun should be left unchanged and the LunID
  2107. * should not be cleared.
  2108. * via_ioctl
  2109. * This indicates whether we've reached this path via ioctl.
  2110. * This affects the maximum usage count allowed for c0d0 to be messed with.
  2111. * If this path is reached via ioctl(), then the max_usage_count will
  2112. * be 1, as the process calling ioctl() has got to have the device open.
  2113. * If we get here via sysfs, then the max usage count will be zero.
  2114. */
  2115. static int deregister_disk(ctlr_info_t *h, int drv_index,
  2116. int clear_all, int via_ioctl)
  2117. {
  2118. int i;
  2119. struct gendisk *disk;
  2120. drive_info_struct *drv;
  2121. int recalculate_highest_lun;
  2122. if (!capable(CAP_SYS_RAWIO))
  2123. return -EPERM;
  2124. drv = h->drv[drv_index];
  2125. disk = h->gendisk[drv_index];
  2126. /* make sure logical volume is NOT is use */
  2127. if (clear_all || (h->gendisk[0] == disk)) {
  2128. if (drv->usage_count > via_ioctl)
  2129. return -EBUSY;
  2130. } else if (drv->usage_count > 0)
  2131. return -EBUSY;
  2132. recalculate_highest_lun = (drv == h->drv[h->highest_lun]);
  2133. /* invalidate the devices and deregister the disk. If it is disk
  2134. * zero do not deregister it but just zero out it's values. This
  2135. * allows us to delete disk zero but keep the controller registered.
  2136. */
  2137. if (h->gendisk[0] != disk) {
  2138. struct request_queue *q = disk->queue;
  2139. if (disk->flags & GENHD_FL_UP) {
  2140. cciss_destroy_ld_sysfs_entry(h, drv_index, 0);
  2141. del_gendisk(disk);
  2142. }
  2143. if (q)
  2144. blk_cleanup_queue(q);
  2145. /* If clear_all is set then we are deleting the logical
  2146. * drive, not just refreshing its info. For drives
  2147. * other than disk 0 we will call put_disk. We do not
  2148. * do this for disk 0 as we need it to be able to
  2149. * configure the controller.
  2150. */
  2151. if (clear_all){
  2152. /* This isn't pretty, but we need to find the
  2153. * disk in our array and NULL our the pointer.
  2154. * This is so that we will call alloc_disk if
  2155. * this index is used again later.
  2156. */
  2157. for (i=0; i < CISS_MAX_LUN; i++){
  2158. if (h->gendisk[i] == disk) {
  2159. h->gendisk[i] = NULL;
  2160. break;
  2161. }
  2162. }
  2163. put_disk(disk);
  2164. }
  2165. } else {
  2166. set_capacity(disk, 0);
  2167. cciss_clear_drive_info(drv);
  2168. }
  2169. --h->num_luns;
  2170. /* if it was the last disk, find the new hightest lun */
  2171. if (clear_all && recalculate_highest_lun) {
  2172. int newhighest = -1;
  2173. for (i = 0; i <= h->highest_lun; i++) {
  2174. /* if the disk has size > 0, it is available */
  2175. if (h->drv[i] && h->drv[i]->heads)
  2176. newhighest = i;
  2177. }
  2178. h->highest_lun = newhighest;
  2179. }
  2180. return 0;
  2181. }
  2182. static int fill_cmd(ctlr_info_t *h, CommandList_struct *c, __u8 cmd, void *buff,
  2183. size_t size, __u8 page_code, unsigned char *scsi3addr,
  2184. int cmd_type)
  2185. {
  2186. u64bit buff_dma_handle;
  2187. int status = IO_OK;
  2188. c->cmd_type = CMD_IOCTL_PEND;
  2189. c->Header.ReplyQueue = 0;
  2190. if (buff != NULL) {
  2191. c->Header.SGList = 1;
  2192. c->Header.SGTotal = 1;
  2193. } else {
  2194. c->Header.SGList = 0;
  2195. c->Header.SGTotal = 0;
  2196. }
  2197. c->Header.Tag.lower = c->busaddr;
  2198. memcpy(c->Header.LUN.LunAddrBytes, scsi3addr, 8);
  2199. c->Request.Type.Type = cmd_type;
  2200. if (cmd_type == TYPE_CMD) {
  2201. switch (cmd) {
  2202. case CISS_INQUIRY:
  2203. /* are we trying to read a vital product page */
  2204. if (page_code != 0) {
  2205. c->Request.CDB[1] = 0x01;
  2206. c->Request.CDB[2] = page_code;
  2207. }
  2208. c->Request.CDBLen = 6;
  2209. c->Request.Type.Attribute = ATTR_SIMPLE;
  2210. c->Request.Type.Direction = XFER_READ;
  2211. c->Request.Timeout = 0;
  2212. c->Request.CDB[0] = CISS_INQUIRY;
  2213. c->Request.CDB[4] = size & 0xFF;
  2214. break;
  2215. case CISS_REPORT_LOG:
  2216. case CISS_REPORT_PHYS:
  2217. /* Talking to controller so It's a physical command
  2218. mode = 00 target = 0. Nothing to write.
  2219. */
  2220. c->Request.CDBLen = 12;
  2221. c->Request.Type.Attribute = ATTR_SIMPLE;
  2222. c->Request.Type.Direction = XFER_READ;
  2223. c->Request.Timeout = 0;
  2224. c->Request.CDB[0] = cmd;
  2225. c->Request.CDB[6] = (size >> 24) & 0xFF; /* MSB */
  2226. c->Request.CDB[7] = (size >> 16) & 0xFF;
  2227. c->Request.CDB[8] = (size >> 8) & 0xFF;
  2228. c->Request.CDB[9] = size & 0xFF;
  2229. break;
  2230. case CCISS_READ_CAPACITY:
  2231. c->Request.CDBLen = 10;
  2232. c->Request.Type.Attribute = ATTR_SIMPLE;
  2233. c->Request.Type.Direction = XFER_READ;
  2234. c->Request.Timeout = 0;
  2235. c->Request.CDB[0] = cmd;
  2236. break;
  2237. case CCISS_READ_CAPACITY_16:
  2238. c->Request.CDBLen = 16;
  2239. c->Request.Type.Attribute = ATTR_SIMPLE;
  2240. c->Request.Type.Direction = XFER_READ;
  2241. c->Request.Timeout = 0;
  2242. c->Request.CDB[0] = cmd;
  2243. c->Request.CDB[1] = 0x10;
  2244. c->Request.CDB[10] = (size >> 24) & 0xFF;
  2245. c->Request.CDB[11] = (size >> 16) & 0xFF;
  2246. c->Request.CDB[12] = (size >> 8) & 0xFF;
  2247. c->Request.CDB[13] = size & 0xFF;
  2248. c->Request.Timeout = 0;
  2249. c->Request.CDB[0] = cmd;
  2250. break;
  2251. case CCISS_CACHE_FLUSH:
  2252. c->Request.CDBLen = 12;
  2253. c->Request.Type.Attribute = ATTR_SIMPLE;
  2254. c->Request.Type.Direction = XFER_WRITE;
  2255. c->Request.Timeout = 0;
  2256. c->Request.CDB[0] = BMIC_WRITE;
  2257. c->Request.CDB[6] = BMIC_CACHE_FLUSH;
  2258. break;
  2259. case TEST_UNIT_READY:
  2260. c->Request.CDBLen = 6;
  2261. c->Request.Type.Attribute = ATTR_SIMPLE;
  2262. c->Request.Type.Direction = XFER_NONE;
  2263. c->Request.Timeout = 0;
  2264. break;
  2265. default:
  2266. dev_warn(&h->pdev->dev, "Unknown Command 0x%c\n", cmd);
  2267. return IO_ERROR;
  2268. }
  2269. } else if (cmd_type == TYPE_MSG) {
  2270. switch (cmd) {
  2271. case 0: /* ABORT message */
  2272. c->Request.CDBLen = 12;
  2273. c->Request.Type.Attribute = ATTR_SIMPLE;
  2274. c->Request.Type.Direction = XFER_WRITE;
  2275. c->Request.Timeout = 0;
  2276. c->Request.CDB[0] = cmd; /* abort */
  2277. c->Request.CDB[1] = 0; /* abort a command */
  2278. /* buff contains the tag of the command to abort */
  2279. memcpy(&c->Request.CDB[4], buff, 8);
  2280. break;
  2281. case 1: /* RESET message */
  2282. c->Request.CDBLen = 16;
  2283. c->Request.Type.Attribute = ATTR_SIMPLE;
  2284. c->Request.Type.Direction = XFER_NONE;
  2285. c->Request.Timeout = 0;
  2286. memset(&c->Request.CDB[0], 0, sizeof(c->Request.CDB));
  2287. c->Request.CDB[0] = cmd; /* reset */
  2288. c->Request.CDB[1] = 0x03; /* reset a target */
  2289. break;
  2290. case 3: /* No-Op message */
  2291. c->Request.CDBLen = 1;
  2292. c->Request.Type.Attribute = ATTR_SIMPLE;
  2293. c->Request.Type.Direction = XFER_WRITE;
  2294. c->Request.Timeout = 0;
  2295. c->Request.CDB[0] = cmd;
  2296. break;
  2297. default:
  2298. dev_warn(&h->pdev->dev,
  2299. "unknown message type %d\n", cmd);
  2300. return IO_ERROR;
  2301. }
  2302. } else {
  2303. dev_warn(&h->pdev->dev, "unknown command type %d\n", cmd_type);
  2304. return IO_ERROR;
  2305. }
  2306. /* Fill in the scatter gather information */
  2307. if (size > 0) {
  2308. buff_dma_handle.val = (__u64) pci_map_single(h->pdev,
  2309. buff, size,
  2310. PCI_DMA_BIDIRECTIONAL);
  2311. c->SG[0].Addr.lower = buff_dma_handle.val32.lower;
  2312. c->SG[0].Addr.upper = buff_dma_handle.val32.upper;
  2313. c->SG[0].Len = size;
  2314. c->SG[0].Ext = 0; /* we are not chaining */
  2315. }
  2316. return status;
  2317. }
  2318. static int check_target_status(ctlr_info_t *h, CommandList_struct *c)
  2319. {
  2320. switch (c->err_info->ScsiStatus) {
  2321. case SAM_STAT_GOOD:
  2322. return IO_OK;
  2323. case SAM_STAT_CHECK_CONDITION:
  2324. switch (0xf & c->err_info->SenseInfo[2]) {
  2325. case 0: return IO_OK; /* no sense */
  2326. case 1: return IO_OK; /* recovered error */
  2327. default:
  2328. if (check_for_unit_attention(h, c))
  2329. return IO_NEEDS_RETRY;
  2330. dev_warn(&h->pdev->dev, "cmd 0x%02x "
  2331. "check condition, sense key = 0x%02x\n",
  2332. c->Request.CDB[0], c->err_info->SenseInfo[2]);
  2333. }
  2334. break;
  2335. default:
  2336. dev_warn(&h->pdev->dev, "cmd 0x%02x"
  2337. "scsi status = 0x%02x\n",
  2338. c->Request.CDB[0], c->err_info->ScsiStatus);
  2339. break;
  2340. }
  2341. return IO_ERROR;
  2342. }
  2343. static int process_sendcmd_error(ctlr_info_t *h, CommandList_struct *c)
  2344. {
  2345. int return_status = IO_OK;
  2346. if (c->err_info->CommandStatus == CMD_SUCCESS)
  2347. return IO_OK;
  2348. switch (c->err_info->CommandStatus) {
  2349. case CMD_TARGET_STATUS:
  2350. return_status = check_target_status(h, c);
  2351. break;
  2352. case CMD_DATA_UNDERRUN:
  2353. case CMD_DATA_OVERRUN:
  2354. /* expected for inquiry and report lun commands */
  2355. break;
  2356. case CMD_INVALID:
  2357. dev_warn(&h->pdev->dev, "cmd 0x%02x is "
  2358. "reported invalid\n", c->Request.CDB[0]);
  2359. return_status = IO_ERROR;
  2360. break;
  2361. case CMD_PROTOCOL_ERR:
  2362. dev_warn(&h->pdev->dev, "cmd 0x%02x has "
  2363. "protocol error\n", c->Request.CDB[0]);
  2364. return_status = IO_ERROR;
  2365. break;
  2366. case CMD_HARDWARE_ERR:
  2367. dev_warn(&h->pdev->dev, "cmd 0x%02x had "
  2368. " hardware error\n", c->Request.CDB[0]);
  2369. return_status = IO_ERROR;
  2370. break;
  2371. case CMD_CONNECTION_LOST:
  2372. dev_warn(&h->pdev->dev, "cmd 0x%02x had "
  2373. "connection lost\n", c->Request.CDB[0]);
  2374. return_status = IO_ERROR;
  2375. break;
  2376. case CMD_ABORTED:
  2377. dev_warn(&h->pdev->dev, "cmd 0x%02x was "
  2378. "aborted\n", c->Request.CDB[0]);
  2379. return_status = IO_ERROR;
  2380. break;
  2381. case CMD_ABORT_FAILED:
  2382. dev_warn(&h->pdev->dev, "cmd 0x%02x reports "
  2383. "abort failed\n", c->Request.CDB[0]);
  2384. return_status = IO_ERROR;
  2385. break;
  2386. case CMD_UNSOLICITED_ABORT:
  2387. dev_warn(&h->pdev->dev, "unsolicited abort 0x%02x\n",
  2388. c->Request.CDB[0]);
  2389. return_status = IO_NEEDS_RETRY;
  2390. break;
  2391. default:
  2392. dev_warn(&h->pdev->dev, "cmd 0x%02x returned "
  2393. "unknown status %x\n", c->Request.CDB[0],
  2394. c->err_info->CommandStatus);
  2395. return_status = IO_ERROR;
  2396. }
  2397. return return_status;
  2398. }
  2399. static int sendcmd_withirq_core(ctlr_info_t *h, CommandList_struct *c,
  2400. int attempt_retry)
  2401. {
  2402. DECLARE_COMPLETION_ONSTACK(wait);
  2403. u64bit buff_dma_handle;
  2404. int return_status = IO_OK;
  2405. resend_cmd2:
  2406. c->waiting = &wait;
  2407. enqueue_cmd_and_start_io(h, c);
  2408. wait_for_completion(&wait);
  2409. if (c->err_info->CommandStatus == 0 || !attempt_retry)
  2410. goto command_done;
  2411. return_status = process_sendcmd_error(h, c);
  2412. if (return_status == IO_NEEDS_RETRY &&
  2413. c->retry_count < MAX_CMD_RETRIES) {
  2414. dev_warn(&h->pdev->dev, "retrying 0x%02x\n",
  2415. c->Request.CDB[0]);
  2416. c->retry_count++;
  2417. /* erase the old error information */
  2418. memset(c->err_info, 0, sizeof(ErrorInfo_struct));
  2419. return_status = IO_OK;
  2420. INIT_COMPLETION(wait);
  2421. goto resend_cmd2;
  2422. }
  2423. command_done:
  2424. /* unlock the buffers from DMA */
  2425. buff_dma_handle.val32.lower = c->SG[0].Addr.lower;
  2426. buff_dma_handle.val32.upper = c->SG[0].Addr.upper;
  2427. pci_unmap_single(h->pdev, (dma_addr_t) buff_dma_handle.val,
  2428. c->SG[0].Len, PCI_DMA_BIDIRECTIONAL);
  2429. return return_status;
  2430. }
  2431. static int sendcmd_withirq(ctlr_info_t *h, __u8 cmd, void *buff, size_t size,
  2432. __u8 page_code, unsigned char scsi3addr[],
  2433. int cmd_type)
  2434. {
  2435. CommandList_struct *c;
  2436. int return_status;
  2437. c = cmd_special_alloc(h);
  2438. if (!c)
  2439. return -ENOMEM;
  2440. return_status = fill_cmd(h, c, cmd, buff, size, page_code,
  2441. scsi3addr, cmd_type);
  2442. if (return_status == IO_OK)
  2443. return_status = sendcmd_withirq_core(h, c, 1);
  2444. cmd_special_free(h, c);
  2445. return return_status;
  2446. }
  2447. static void cciss_geometry_inquiry(ctlr_info_t *h, int logvol,
  2448. sector_t total_size,
  2449. unsigned int block_size,
  2450. InquiryData_struct *inq_buff,
  2451. drive_info_struct *drv)
  2452. {
  2453. int return_code;
  2454. unsigned long t;
  2455. unsigned char scsi3addr[8];
  2456. memset(inq_buff, 0, sizeof(InquiryData_struct));
  2457. log_unit_to_scsi3addr(h, scsi3addr, logvol);
  2458. return_code = sendcmd_withirq(h, CISS_INQUIRY, inq_buff,
  2459. sizeof(*inq_buff), 0xC1, scsi3addr, TYPE_CMD);
  2460. if (return_code == IO_OK) {
  2461. if (inq_buff->data_byte[8] == 0xFF) {
  2462. dev_warn(&h->pdev->dev,
  2463. "reading geometry failed, volume "
  2464. "does not support reading geometry\n");
  2465. drv->heads = 255;
  2466. drv->sectors = 32; /* Sectors per track */
  2467. drv->cylinders = total_size + 1;
  2468. drv->raid_level = RAID_UNKNOWN;
  2469. } else {
  2470. drv->heads = inq_buff->data_byte[6];
  2471. drv->sectors = inq_buff->data_byte[7];
  2472. drv->cylinders = (inq_buff->data_byte[4] & 0xff) << 8;
  2473. drv->cylinders += inq_buff->data_byte[5];
  2474. drv->raid_level = inq_buff->data_byte[8];
  2475. }
  2476. drv->block_size = block_size;
  2477. drv->nr_blocks = total_size + 1;
  2478. t = drv->heads * drv->sectors;
  2479. if (t > 1) {
  2480. sector_t real_size = total_size + 1;
  2481. unsigned long rem = sector_div(real_size, t);
  2482. if (rem)
  2483. real_size++;
  2484. drv->cylinders = real_size;
  2485. }
  2486. } else { /* Get geometry failed */
  2487. dev_warn(&h->pdev->dev, "reading geometry failed\n");
  2488. }
  2489. }
  2490. static void
  2491. cciss_read_capacity(ctlr_info_t *h, int logvol, sector_t *total_size,
  2492. unsigned int *block_size)
  2493. {
  2494. ReadCapdata_struct *buf;
  2495. int return_code;
  2496. unsigned char scsi3addr[8];
  2497. buf = kzalloc(sizeof(ReadCapdata_struct), GFP_KERNEL);
  2498. if (!buf) {
  2499. dev_warn(&h->pdev->dev, "out of memory\n");
  2500. return;
  2501. }
  2502. log_unit_to_scsi3addr(h, scsi3addr, logvol);
  2503. return_code = sendcmd_withirq(h, CCISS_READ_CAPACITY, buf,
  2504. sizeof(ReadCapdata_struct), 0, scsi3addr, TYPE_CMD);
  2505. if (return_code == IO_OK) {
  2506. *total_size = be32_to_cpu(*(__be32 *) buf->total_size);
  2507. *block_size = be32_to_cpu(*(__be32 *) buf->block_size);
  2508. } else { /* read capacity command failed */
  2509. dev_warn(&h->pdev->dev, "read capacity failed\n");
  2510. *total_size = 0;
  2511. *block_size = BLOCK_SIZE;
  2512. }
  2513. kfree(buf);
  2514. }
  2515. static void cciss_read_capacity_16(ctlr_info_t *h, int logvol,
  2516. sector_t *total_size, unsigned int *block_size)
  2517. {
  2518. ReadCapdata_struct_16 *buf;
  2519. int return_code;
  2520. unsigned char scsi3addr[8];
  2521. buf = kzalloc(sizeof(ReadCapdata_struct_16), GFP_KERNEL);
  2522. if (!buf) {
  2523. dev_warn(&h->pdev->dev, "out of memory\n");
  2524. return;
  2525. }
  2526. log_unit_to_scsi3addr(h, scsi3addr, logvol);
  2527. return_code = sendcmd_withirq(h, CCISS_READ_CAPACITY_16,
  2528. buf, sizeof(ReadCapdata_struct_16),
  2529. 0, scsi3addr, TYPE_CMD);
  2530. if (return_code == IO_OK) {
  2531. *total_size = be64_to_cpu(*(__be64 *) buf->total_size);
  2532. *block_size = be32_to_cpu(*(__be32 *) buf->block_size);
  2533. } else { /* read capacity command failed */
  2534. dev_warn(&h->pdev->dev, "read capacity failed\n");
  2535. *total_size = 0;
  2536. *block_size = BLOCK_SIZE;
  2537. }
  2538. dev_info(&h->pdev->dev, " blocks= %llu block_size= %d\n",
  2539. (unsigned long long)*total_size+1, *block_size);
  2540. kfree(buf);
  2541. }
  2542. static int cciss_revalidate(struct gendisk *disk)
  2543. {
  2544. ctlr_info_t *h = get_host(disk);
  2545. drive_info_struct *drv = get_drv(disk);
  2546. int logvol;
  2547. int FOUND = 0;
  2548. unsigned int block_size;
  2549. sector_t total_size;
  2550. InquiryData_struct *inq_buff = NULL;
  2551. for (logvol = 0; logvol < CISS_MAX_LUN; logvol++) {
  2552. if (memcmp(h->drv[logvol]->LunID, drv->LunID,
  2553. sizeof(drv->LunID)) == 0) {
  2554. FOUND = 1;
  2555. break;
  2556. }
  2557. }
  2558. if (!FOUND)
  2559. return 1;
  2560. inq_buff = kmalloc(sizeof(InquiryData_struct), GFP_KERNEL);
  2561. if (inq_buff == NULL) {
  2562. dev_warn(&h->pdev->dev, "out of memory\n");
  2563. return 1;
  2564. }
  2565. if (h->cciss_read == CCISS_READ_10) {
  2566. cciss_read_capacity(h, logvol,
  2567. &total_size, &block_size);
  2568. } else {
  2569. cciss_read_capacity_16(h, logvol,
  2570. &total_size, &block_size);
  2571. }
  2572. cciss_geometry_inquiry(h, logvol, total_size, block_size,
  2573. inq_buff, drv);
  2574. blk_queue_logical_block_size(drv->queue, drv->block_size);
  2575. set_capacity(disk, drv->nr_blocks);
  2576. kfree(inq_buff);
  2577. return 0;
  2578. }
  2579. /*
  2580. * Map (physical) PCI mem into (virtual) kernel space
  2581. */
  2582. static void __iomem *remap_pci_mem(ulong base, ulong size)
  2583. {
  2584. ulong page_base = ((ulong) base) & PAGE_MASK;
  2585. ulong page_offs = ((ulong) base) - page_base;
  2586. void __iomem *page_remapped = ioremap(page_base, page_offs + size);
  2587. return page_remapped ? (page_remapped + page_offs) : NULL;
  2588. }
  2589. /*
  2590. * Takes jobs of the Q and sends them to the hardware, then puts it on
  2591. * the Q to wait for completion.
  2592. */
  2593. static void start_io(ctlr_info_t *h)
  2594. {
  2595. CommandList_struct *c;
  2596. while (!hlist_empty(&h->reqQ)) {
  2597. c = hlist_entry(h->reqQ.first, CommandList_struct, list);
  2598. /* can't do anything if fifo is full */
  2599. if ((h->access.fifo_full(h))) {
  2600. dev_warn(&h->pdev->dev, "fifo full\n");
  2601. break;
  2602. }
  2603. /* Get the first entry from the Request Q */
  2604. removeQ(c);
  2605. h->Qdepth--;
  2606. /* Tell the controller execute command */
  2607. h->access.submit_command(h, c);
  2608. /* Put job onto the completed Q */
  2609. addQ(&h->cmpQ, c);
  2610. }
  2611. }
  2612. /* Assumes that h->lock is held. */
  2613. /* Zeros out the error record and then resends the command back */
  2614. /* to the controller */
  2615. static inline void resend_cciss_cmd(ctlr_info_t *h, CommandList_struct *c)
  2616. {
  2617. /* erase the old error information */
  2618. memset(c->err_info, 0, sizeof(ErrorInfo_struct));
  2619. /* add it to software queue and then send it to the controller */
  2620. addQ(&h->reqQ, c);
  2621. h->Qdepth++;
  2622. if (h->Qdepth > h->maxQsinceinit)
  2623. h->maxQsinceinit = h->Qdepth;
  2624. start_io(h);
  2625. }
  2626. static inline unsigned int make_status_bytes(unsigned int scsi_status_byte,
  2627. unsigned int msg_byte, unsigned int host_byte,
  2628. unsigned int driver_byte)
  2629. {
  2630. /* inverse of macros in scsi.h */
  2631. return (scsi_status_byte & 0xff) |
  2632. ((msg_byte & 0xff) << 8) |
  2633. ((host_byte & 0xff) << 16) |
  2634. ((driver_byte & 0xff) << 24);
  2635. }
  2636. static inline int evaluate_target_status(ctlr_info_t *h,
  2637. CommandList_struct *cmd, int *retry_cmd)
  2638. {
  2639. unsigned char sense_key;
  2640. unsigned char status_byte, msg_byte, host_byte, driver_byte;
  2641. int error_value;
  2642. *retry_cmd = 0;
  2643. /* If we get in here, it means we got "target status", that is, scsi status */
  2644. status_byte = cmd->err_info->ScsiStatus;
  2645. driver_byte = DRIVER_OK;
  2646. msg_byte = cmd->err_info->CommandStatus; /* correct? seems too device specific */
  2647. if (cmd->rq->cmd_type == REQ_TYPE_BLOCK_PC)
  2648. host_byte = DID_PASSTHROUGH;
  2649. else
  2650. host_byte = DID_OK;
  2651. error_value = make_status_bytes(status_byte, msg_byte,
  2652. host_byte, driver_byte);
  2653. if (cmd->err_info->ScsiStatus != SAM_STAT_CHECK_CONDITION) {
  2654. if (cmd->rq->cmd_type != REQ_TYPE_BLOCK_PC)
  2655. dev_warn(&h->pdev->dev, "cmd %p "
  2656. "has SCSI Status 0x%x\n",
  2657. cmd, cmd->err_info->ScsiStatus);
  2658. return error_value;
  2659. }
  2660. /* check the sense key */
  2661. sense_key = 0xf & cmd->err_info->SenseInfo[2];
  2662. /* no status or recovered error */
  2663. if (((sense_key == 0x0) || (sense_key == 0x1)) &&
  2664. (cmd->rq->cmd_type != REQ_TYPE_BLOCK_PC))
  2665. error_value = 0;
  2666. if (check_for_unit_attention(h, cmd)) {
  2667. *retry_cmd = !(cmd->rq->cmd_type == REQ_TYPE_BLOCK_PC);
  2668. return 0;
  2669. }
  2670. /* Not SG_IO or similar? */
  2671. if (cmd->rq->cmd_type != REQ_TYPE_BLOCK_PC) {
  2672. if (error_value != 0)
  2673. dev_warn(&h->pdev->dev, "cmd %p has CHECK CONDITION"
  2674. " sense key = 0x%x\n", cmd, sense_key);
  2675. return error_value;
  2676. }
  2677. /* SG_IO or similar, copy sense data back */
  2678. if (cmd->rq->sense) {
  2679. if (cmd->rq->sense_len > cmd->err_info->SenseLen)
  2680. cmd->rq->sense_len = cmd->err_info->SenseLen;
  2681. memcpy(cmd->rq->sense, cmd->err_info->SenseInfo,
  2682. cmd->rq->sense_len);
  2683. } else
  2684. cmd->rq->sense_len = 0;
  2685. return error_value;
  2686. }
  2687. /* checks the status of the job and calls complete buffers to mark all
  2688. * buffers for the completed job. Note that this function does not need
  2689. * to hold the hba/queue lock.
  2690. */
  2691. static inline void complete_command(ctlr_info_t *h, CommandList_struct *cmd,
  2692. int timeout)
  2693. {
  2694. int retry_cmd = 0;
  2695. struct request *rq = cmd->rq;
  2696. rq->errors = 0;
  2697. if (timeout)
  2698. rq->errors = make_status_bytes(0, 0, 0, DRIVER_TIMEOUT);
  2699. if (cmd->err_info->CommandStatus == 0) /* no error has occurred */
  2700. goto after_error_processing;
  2701. switch (cmd->err_info->CommandStatus) {
  2702. case CMD_TARGET_STATUS:
  2703. rq->errors = evaluate_target_status(h, cmd, &retry_cmd);
  2704. break;
  2705. case CMD_DATA_UNDERRUN:
  2706. if (cmd->rq->cmd_type == REQ_TYPE_FS) {
  2707. dev_warn(&h->pdev->dev, "cmd %p has"
  2708. " completed with data underrun "
  2709. "reported\n", cmd);
  2710. cmd->rq->resid_len = cmd->err_info->ResidualCnt;
  2711. }
  2712. break;
  2713. case CMD_DATA_OVERRUN:
  2714. if (cmd->rq->cmd_type == REQ_TYPE_FS)
  2715. dev_warn(&h->pdev->dev, "cciss: cmd %p has"
  2716. " completed with data overrun "
  2717. "reported\n", cmd);
  2718. break;
  2719. case CMD_INVALID:
  2720. dev_warn(&h->pdev->dev, "cciss: cmd %p is "
  2721. "reported invalid\n", cmd);
  2722. rq->errors = make_status_bytes(SAM_STAT_GOOD,
  2723. cmd->err_info->CommandStatus, DRIVER_OK,
  2724. (cmd->rq->cmd_type == REQ_TYPE_BLOCK_PC) ?
  2725. DID_PASSTHROUGH : DID_ERROR);
  2726. break;
  2727. case CMD_PROTOCOL_ERR:
  2728. dev_warn(&h->pdev->dev, "cciss: cmd %p has "
  2729. "protocol error\n", cmd);
  2730. rq->errors = make_status_bytes(SAM_STAT_GOOD,
  2731. cmd->err_info->CommandStatus, DRIVER_OK,
  2732. (cmd->rq->cmd_type == REQ_TYPE_BLOCK_PC) ?
  2733. DID_PASSTHROUGH : DID_ERROR);
  2734. break;
  2735. case CMD_HARDWARE_ERR:
  2736. dev_warn(&h->pdev->dev, "cciss: cmd %p had "
  2737. " hardware error\n", cmd);
  2738. rq->errors = make_status_bytes(SAM_STAT_GOOD,
  2739. cmd->err_info->CommandStatus, DRIVER_OK,
  2740. (cmd->rq->cmd_type == REQ_TYPE_BLOCK_PC) ?
  2741. DID_PASSTHROUGH : DID_ERROR);
  2742. break;
  2743. case CMD_CONNECTION_LOST:
  2744. dev_warn(&h->pdev->dev, "cciss: cmd %p had "
  2745. "connection lost\n", cmd);
  2746. rq->errors = make_status_bytes(SAM_STAT_GOOD,
  2747. cmd->err_info->CommandStatus, DRIVER_OK,
  2748. (cmd->rq->cmd_type == REQ_TYPE_BLOCK_PC) ?
  2749. DID_PASSTHROUGH : DID_ERROR);
  2750. break;
  2751. case CMD_ABORTED:
  2752. dev_warn(&h->pdev->dev, "cciss: cmd %p was "
  2753. "aborted\n", cmd);
  2754. rq->errors = make_status_bytes(SAM_STAT_GOOD,
  2755. cmd->err_info->CommandStatus, DRIVER_OK,
  2756. (cmd->rq->cmd_type == REQ_TYPE_BLOCK_PC) ?
  2757. DID_PASSTHROUGH : DID_ABORT);
  2758. break;
  2759. case CMD_ABORT_FAILED:
  2760. dev_warn(&h->pdev->dev, "cciss: cmd %p reports "
  2761. "abort failed\n", cmd);
  2762. rq->errors = make_status_bytes(SAM_STAT_GOOD,
  2763. cmd->err_info->CommandStatus, DRIVER_OK,
  2764. (cmd->rq->cmd_type == REQ_TYPE_BLOCK_PC) ?
  2765. DID_PASSTHROUGH : DID_ERROR);
  2766. break;
  2767. case CMD_UNSOLICITED_ABORT:
  2768. dev_warn(&h->pdev->dev, "cciss%d: unsolicited "
  2769. "abort %p\n", h->ctlr, cmd);
  2770. if (cmd->retry_count < MAX_CMD_RETRIES) {
  2771. retry_cmd = 1;
  2772. dev_warn(&h->pdev->dev, "retrying %p\n", cmd);
  2773. cmd->retry_count++;
  2774. } else
  2775. dev_warn(&h->pdev->dev,
  2776. "%p retried too many times\n", cmd);
  2777. rq->errors = make_status_bytes(SAM_STAT_GOOD,
  2778. cmd->err_info->CommandStatus, DRIVER_OK,
  2779. (cmd->rq->cmd_type == REQ_TYPE_BLOCK_PC) ?
  2780. DID_PASSTHROUGH : DID_ABORT);
  2781. break;
  2782. case CMD_TIMEOUT:
  2783. dev_warn(&h->pdev->dev, "cmd %p timedout\n", cmd);
  2784. rq->errors = make_status_bytes(SAM_STAT_GOOD,
  2785. cmd->err_info->CommandStatus, DRIVER_OK,
  2786. (cmd->rq->cmd_type == REQ_TYPE_BLOCK_PC) ?
  2787. DID_PASSTHROUGH : DID_ERROR);
  2788. break;
  2789. default:
  2790. dev_warn(&h->pdev->dev, "cmd %p returned "
  2791. "unknown status %x\n", cmd,
  2792. cmd->err_info->CommandStatus);
  2793. rq->errors = make_status_bytes(SAM_STAT_GOOD,
  2794. cmd->err_info->CommandStatus, DRIVER_OK,
  2795. (cmd->rq->cmd_type == REQ_TYPE_BLOCK_PC) ?
  2796. DID_PASSTHROUGH : DID_ERROR);
  2797. }
  2798. after_error_processing:
  2799. /* We need to return this command */
  2800. if (retry_cmd) {
  2801. resend_cciss_cmd(h, cmd);
  2802. return;
  2803. }
  2804. cmd->rq->completion_data = cmd;
  2805. blk_complete_request(cmd->rq);
  2806. }
  2807. static inline u32 cciss_tag_contains_index(u32 tag)
  2808. {
  2809. #define DIRECT_LOOKUP_BIT 0x10
  2810. return tag & DIRECT_LOOKUP_BIT;
  2811. }
  2812. static inline u32 cciss_tag_to_index(u32 tag)
  2813. {
  2814. #define DIRECT_LOOKUP_SHIFT 5
  2815. return tag >> DIRECT_LOOKUP_SHIFT;
  2816. }
  2817. static inline u32 cciss_tag_discard_error_bits(u32 tag)
  2818. {
  2819. #define CCISS_ERROR_BITS 0x03
  2820. return tag & ~CCISS_ERROR_BITS;
  2821. }
  2822. static inline void cciss_mark_tag_indexed(u32 *tag)
  2823. {
  2824. *tag |= DIRECT_LOOKUP_BIT;
  2825. }
  2826. static inline void cciss_set_tag_index(u32 *tag, u32 index)
  2827. {
  2828. *tag |= (index << DIRECT_LOOKUP_SHIFT);
  2829. }
  2830. /*
  2831. * Get a request and submit it to the controller.
  2832. */
  2833. static void do_cciss_request(struct request_queue *q)
  2834. {
  2835. ctlr_info_t *h = q->queuedata;
  2836. CommandList_struct *c;
  2837. sector_t start_blk;
  2838. int seg;
  2839. struct request *creq;
  2840. u64bit temp64;
  2841. struct scatterlist *tmp_sg;
  2842. SGDescriptor_struct *curr_sg;
  2843. drive_info_struct *drv;
  2844. int i, dir;
  2845. int sg_index = 0;
  2846. int chained = 0;
  2847. /* We call start_io here in case there is a command waiting on the
  2848. * queue that has not been sent.
  2849. */
  2850. if (blk_queue_plugged(q))
  2851. goto startio;
  2852. queue:
  2853. creq = blk_peek_request(q);
  2854. if (!creq)
  2855. goto startio;
  2856. BUG_ON(creq->nr_phys_segments > h->maxsgentries);
  2857. c = cmd_alloc(h);
  2858. if (!c)
  2859. goto full;
  2860. blk_start_request(creq);
  2861. tmp_sg = h->scatter_list[c->cmdindex];
  2862. spin_unlock_irq(q->queue_lock);
  2863. c->cmd_type = CMD_RWREQ;
  2864. c->rq = creq;
  2865. /* fill in the request */
  2866. drv = creq->rq_disk->private_data;
  2867. c->Header.ReplyQueue = 0; /* unused in simple mode */
  2868. /* got command from pool, so use the command block index instead */
  2869. /* for direct lookups. */
  2870. /* The first 2 bits are reserved for controller error reporting. */
  2871. cciss_set_tag_index(&c->Header.Tag.lower, c->cmdindex);
  2872. cciss_mark_tag_indexed(&c->Header.Tag.lower);
  2873. memcpy(&c->Header.LUN, drv->LunID, sizeof(drv->LunID));
  2874. c->Request.CDBLen = 10; /* 12 byte commands not in FW yet; */
  2875. c->Request.Type.Type = TYPE_CMD; /* It is a command. */
  2876. c->Request.Type.Attribute = ATTR_SIMPLE;
  2877. c->Request.Type.Direction =
  2878. (rq_data_dir(creq) == READ) ? XFER_READ : XFER_WRITE;
  2879. c->Request.Timeout = 0; /* Don't time out */
  2880. c->Request.CDB[0] =
  2881. (rq_data_dir(creq) == READ) ? h->cciss_read : h->cciss_write;
  2882. start_blk = blk_rq_pos(creq);
  2883. dev_dbg(&h->pdev->dev, "sector =%d nr_sectors=%d\n",
  2884. (int)blk_rq_pos(creq), (int)blk_rq_sectors(creq));
  2885. sg_init_table(tmp_sg, h->maxsgentries);
  2886. seg = blk_rq_map_sg(q, creq, tmp_sg);
  2887. /* get the DMA records for the setup */
  2888. if (c->Request.Type.Direction == XFER_READ)
  2889. dir = PCI_DMA_FROMDEVICE;
  2890. else
  2891. dir = PCI_DMA_TODEVICE;
  2892. curr_sg = c->SG;
  2893. sg_index = 0;
  2894. chained = 0;
  2895. for (i = 0; i < seg; i++) {
  2896. if (((sg_index+1) == (h->max_cmd_sgentries)) &&
  2897. !chained && ((seg - i) > 1)) {
  2898. /* Point to next chain block. */
  2899. curr_sg = h->cmd_sg_list[c->cmdindex];
  2900. sg_index = 0;
  2901. chained = 1;
  2902. }
  2903. curr_sg[sg_index].Len = tmp_sg[i].length;
  2904. temp64.val = (__u64) pci_map_page(h->pdev, sg_page(&tmp_sg[i]),
  2905. tmp_sg[i].offset,
  2906. tmp_sg[i].length, dir);
  2907. curr_sg[sg_index].Addr.lower = temp64.val32.lower;
  2908. curr_sg[sg_index].Addr.upper = temp64.val32.upper;
  2909. curr_sg[sg_index].Ext = 0; /* we are not chaining */
  2910. ++sg_index;
  2911. }
  2912. if (chained)
  2913. cciss_map_sg_chain_block(h, c, h->cmd_sg_list[c->cmdindex],
  2914. (seg - (h->max_cmd_sgentries - 1)) *
  2915. sizeof(SGDescriptor_struct));
  2916. /* track how many SG entries we are using */
  2917. if (seg > h->maxSG)
  2918. h->maxSG = seg;
  2919. dev_dbg(&h->pdev->dev, "Submitting %u sectors in %d segments "
  2920. "chained[%d]\n",
  2921. blk_rq_sectors(creq), seg, chained);
  2922. c->Header.SGTotal = seg + chained;
  2923. if (seg <= h->max_cmd_sgentries)
  2924. c->Header.SGList = c->Header.SGTotal;
  2925. else
  2926. c->Header.SGList = h->max_cmd_sgentries;
  2927. set_performant_mode(h, c);
  2928. if (likely(creq->cmd_type == REQ_TYPE_FS)) {
  2929. if(h->cciss_read == CCISS_READ_10) {
  2930. c->Request.CDB[1] = 0;
  2931. c->Request.CDB[2] = (start_blk >> 24) & 0xff; /* MSB */
  2932. c->Request.CDB[3] = (start_blk >> 16) & 0xff;
  2933. c->Request.CDB[4] = (start_blk >> 8) & 0xff;
  2934. c->Request.CDB[5] = start_blk & 0xff;
  2935. c->Request.CDB[6] = 0; /* (sect >> 24) & 0xff; MSB */
  2936. c->Request.CDB[7] = (blk_rq_sectors(creq) >> 8) & 0xff;
  2937. c->Request.CDB[8] = blk_rq_sectors(creq) & 0xff;
  2938. c->Request.CDB[9] = c->Request.CDB[11] = c->Request.CDB[12] = 0;
  2939. } else {
  2940. u32 upper32 = upper_32_bits(start_blk);
  2941. c->Request.CDBLen = 16;
  2942. c->Request.CDB[1]= 0;
  2943. c->Request.CDB[2]= (upper32 >> 24) & 0xff; /* MSB */
  2944. c->Request.CDB[3]= (upper32 >> 16) & 0xff;
  2945. c->Request.CDB[4]= (upper32 >> 8) & 0xff;
  2946. c->Request.CDB[5]= upper32 & 0xff;
  2947. c->Request.CDB[6]= (start_blk >> 24) & 0xff;
  2948. c->Request.CDB[7]= (start_blk >> 16) & 0xff;
  2949. c->Request.CDB[8]= (start_blk >> 8) & 0xff;
  2950. c->Request.CDB[9]= start_blk & 0xff;
  2951. c->Request.CDB[10]= (blk_rq_sectors(creq) >> 24) & 0xff;
  2952. c->Request.CDB[11]= (blk_rq_sectors(creq) >> 16) & 0xff;
  2953. c->Request.CDB[12]= (blk_rq_sectors(creq) >> 8) & 0xff;
  2954. c->Request.CDB[13]= blk_rq_sectors(creq) & 0xff;
  2955. c->Request.CDB[14] = c->Request.CDB[15] = 0;
  2956. }
  2957. } else if (creq->cmd_type == REQ_TYPE_BLOCK_PC) {
  2958. c->Request.CDBLen = creq->cmd_len;
  2959. memcpy(c->Request.CDB, creq->cmd, BLK_MAX_CDB);
  2960. } else {
  2961. dev_warn(&h->pdev->dev, "bad request type %d\n",
  2962. creq->cmd_type);
  2963. BUG();
  2964. }
  2965. spin_lock_irq(q->queue_lock);
  2966. addQ(&h->reqQ, c);
  2967. h->Qdepth++;
  2968. if (h->Qdepth > h->maxQsinceinit)
  2969. h->maxQsinceinit = h->Qdepth;
  2970. goto queue;
  2971. full:
  2972. blk_stop_queue(q);
  2973. startio:
  2974. /* We will already have the driver lock here so not need
  2975. * to lock it.
  2976. */
  2977. start_io(h);
  2978. }
  2979. static inline unsigned long get_next_completion(ctlr_info_t *h)
  2980. {
  2981. return h->access.command_completed(h);
  2982. }
  2983. static inline int interrupt_pending(ctlr_info_t *h)
  2984. {
  2985. return h->access.intr_pending(h);
  2986. }
  2987. static inline long interrupt_not_for_us(ctlr_info_t *h)
  2988. {
  2989. return ((h->access.intr_pending(h) == 0) ||
  2990. (h->interrupts_enabled == 0));
  2991. }
  2992. static inline int bad_tag(ctlr_info_t *h, u32 tag_index,
  2993. u32 raw_tag)
  2994. {
  2995. if (unlikely(tag_index >= h->nr_cmds)) {
  2996. dev_warn(&h->pdev->dev, "bad tag 0x%08x ignored.\n", raw_tag);
  2997. return 1;
  2998. }
  2999. return 0;
  3000. }
  3001. static inline void finish_cmd(ctlr_info_t *h, CommandList_struct *c,
  3002. u32 raw_tag)
  3003. {
  3004. removeQ(c);
  3005. if (likely(c->cmd_type == CMD_RWREQ))
  3006. complete_command(h, c, 0);
  3007. else if (c->cmd_type == CMD_IOCTL_PEND)
  3008. complete(c->waiting);
  3009. #ifdef CONFIG_CISS_SCSI_TAPE
  3010. else if (c->cmd_type == CMD_SCSI)
  3011. complete_scsi_command(c, 0, raw_tag);
  3012. #endif
  3013. }
  3014. static inline u32 next_command(ctlr_info_t *h)
  3015. {
  3016. u32 a;
  3017. if (unlikely(h->transMethod != CFGTBL_Trans_Performant))
  3018. return h->access.command_completed(h);
  3019. if ((*(h->reply_pool_head) & 1) == (h->reply_pool_wraparound)) {
  3020. a = *(h->reply_pool_head); /* Next cmd in ring buffer */
  3021. (h->reply_pool_head)++;
  3022. h->commands_outstanding--;
  3023. } else {
  3024. a = FIFO_EMPTY;
  3025. }
  3026. /* Check for wraparound */
  3027. if (h->reply_pool_head == (h->reply_pool + h->max_commands)) {
  3028. h->reply_pool_head = h->reply_pool;
  3029. h->reply_pool_wraparound ^= 1;
  3030. }
  3031. return a;
  3032. }
  3033. /* process completion of an indexed ("direct lookup") command */
  3034. static inline u32 process_indexed_cmd(ctlr_info_t *h, u32 raw_tag)
  3035. {
  3036. u32 tag_index;
  3037. CommandList_struct *c;
  3038. tag_index = cciss_tag_to_index(raw_tag);
  3039. if (bad_tag(h, tag_index, raw_tag))
  3040. return next_command(h);
  3041. c = h->cmd_pool + tag_index;
  3042. finish_cmd(h, c, raw_tag);
  3043. return next_command(h);
  3044. }
  3045. /* process completion of a non-indexed command */
  3046. static inline u32 process_nonindexed_cmd(ctlr_info_t *h, u32 raw_tag)
  3047. {
  3048. u32 tag;
  3049. CommandList_struct *c = NULL;
  3050. struct hlist_node *tmp;
  3051. __u32 busaddr_masked, tag_masked;
  3052. tag = cciss_tag_discard_error_bits(raw_tag);
  3053. hlist_for_each_entry(c, tmp, &h->cmpQ, list) {
  3054. busaddr_masked = cciss_tag_discard_error_bits(c->busaddr);
  3055. tag_masked = cciss_tag_discard_error_bits(tag);
  3056. if (busaddr_masked == tag_masked) {
  3057. finish_cmd(h, c, raw_tag);
  3058. return next_command(h);
  3059. }
  3060. }
  3061. bad_tag(h, h->nr_cmds + 1, raw_tag);
  3062. return next_command(h);
  3063. }
  3064. static irqreturn_t do_cciss_intx(int irq, void *dev_id)
  3065. {
  3066. ctlr_info_t *h = dev_id;
  3067. unsigned long flags;
  3068. u32 raw_tag;
  3069. if (interrupt_not_for_us(h))
  3070. return IRQ_NONE;
  3071. spin_lock_irqsave(&h->lock, flags);
  3072. while (interrupt_pending(h)) {
  3073. raw_tag = get_next_completion(h);
  3074. while (raw_tag != FIFO_EMPTY) {
  3075. if (cciss_tag_contains_index(raw_tag))
  3076. raw_tag = process_indexed_cmd(h, raw_tag);
  3077. else
  3078. raw_tag = process_nonindexed_cmd(h, raw_tag);
  3079. }
  3080. }
  3081. spin_unlock_irqrestore(&h->lock, flags);
  3082. return IRQ_HANDLED;
  3083. }
  3084. /* Add a second interrupt handler for MSI/MSI-X mode. In this mode we never
  3085. * check the interrupt pending register because it is not set.
  3086. */
  3087. static irqreturn_t do_cciss_msix_intr(int irq, void *dev_id)
  3088. {
  3089. ctlr_info_t *h = dev_id;
  3090. unsigned long flags;
  3091. u32 raw_tag;
  3092. spin_lock_irqsave(&h->lock, flags);
  3093. raw_tag = get_next_completion(h);
  3094. while (raw_tag != FIFO_EMPTY) {
  3095. if (cciss_tag_contains_index(raw_tag))
  3096. raw_tag = process_indexed_cmd(h, raw_tag);
  3097. else
  3098. raw_tag = process_nonindexed_cmd(h, raw_tag);
  3099. }
  3100. spin_unlock_irqrestore(&h->lock, flags);
  3101. return IRQ_HANDLED;
  3102. }
  3103. /**
  3104. * add_to_scan_list() - add controller to rescan queue
  3105. * @h: Pointer to the controller.
  3106. *
  3107. * Adds the controller to the rescan queue if not already on the queue.
  3108. *
  3109. * returns 1 if added to the queue, 0 if skipped (could be on the
  3110. * queue already, or the controller could be initializing or shutting
  3111. * down).
  3112. **/
  3113. static int add_to_scan_list(struct ctlr_info *h)
  3114. {
  3115. struct ctlr_info *test_h;
  3116. int found = 0;
  3117. int ret = 0;
  3118. if (h->busy_initializing)
  3119. return 0;
  3120. if (!mutex_trylock(&h->busy_shutting_down))
  3121. return 0;
  3122. mutex_lock(&scan_mutex);
  3123. list_for_each_entry(test_h, &scan_q, scan_list) {
  3124. if (test_h == h) {
  3125. found = 1;
  3126. break;
  3127. }
  3128. }
  3129. if (!found && !h->busy_scanning) {
  3130. INIT_COMPLETION(h->scan_wait);
  3131. list_add_tail(&h->scan_list, &scan_q);
  3132. ret = 1;
  3133. }
  3134. mutex_unlock(&scan_mutex);
  3135. mutex_unlock(&h->busy_shutting_down);
  3136. return ret;
  3137. }
  3138. /**
  3139. * remove_from_scan_list() - remove controller from rescan queue
  3140. * @h: Pointer to the controller.
  3141. *
  3142. * Removes the controller from the rescan queue if present. Blocks if
  3143. * the controller is currently conducting a rescan. The controller
  3144. * can be in one of three states:
  3145. * 1. Doesn't need a scan
  3146. * 2. On the scan list, but not scanning yet (we remove it)
  3147. * 3. Busy scanning (and not on the list). In this case we want to wait for
  3148. * the scan to complete to make sure the scanning thread for this
  3149. * controller is completely idle.
  3150. **/
  3151. static void remove_from_scan_list(struct ctlr_info *h)
  3152. {
  3153. struct ctlr_info *test_h, *tmp_h;
  3154. mutex_lock(&scan_mutex);
  3155. list_for_each_entry_safe(test_h, tmp_h, &scan_q, scan_list) {
  3156. if (test_h == h) { /* state 2. */
  3157. list_del(&h->scan_list);
  3158. complete_all(&h->scan_wait);
  3159. mutex_unlock(&scan_mutex);
  3160. return;
  3161. }
  3162. }
  3163. if (h->busy_scanning) { /* state 3. */
  3164. mutex_unlock(&scan_mutex);
  3165. wait_for_completion(&h->scan_wait);
  3166. } else { /* state 1, nothing to do. */
  3167. mutex_unlock(&scan_mutex);
  3168. }
  3169. }
  3170. /**
  3171. * scan_thread() - kernel thread used to rescan controllers
  3172. * @data: Ignored.
  3173. *
  3174. * A kernel thread used scan for drive topology changes on
  3175. * controllers. The thread processes only one controller at a time
  3176. * using a queue. Controllers are added to the queue using
  3177. * add_to_scan_list() and removed from the queue either after done
  3178. * processing or using remove_from_scan_list().
  3179. *
  3180. * returns 0.
  3181. **/
  3182. static int scan_thread(void *data)
  3183. {
  3184. struct ctlr_info *h;
  3185. while (1) {
  3186. set_current_state(TASK_INTERRUPTIBLE);
  3187. schedule();
  3188. if (kthread_should_stop())
  3189. break;
  3190. while (1) {
  3191. mutex_lock(&scan_mutex);
  3192. if (list_empty(&scan_q)) {
  3193. mutex_unlock(&scan_mutex);
  3194. break;
  3195. }
  3196. h = list_entry(scan_q.next,
  3197. struct ctlr_info,
  3198. scan_list);
  3199. list_del(&h->scan_list);
  3200. h->busy_scanning = 1;
  3201. mutex_unlock(&scan_mutex);
  3202. rebuild_lun_table(h, 0, 0);
  3203. complete_all(&h->scan_wait);
  3204. mutex_lock(&scan_mutex);
  3205. h->busy_scanning = 0;
  3206. mutex_unlock(&scan_mutex);
  3207. }
  3208. }
  3209. return 0;
  3210. }
  3211. static int check_for_unit_attention(ctlr_info_t *h, CommandList_struct *c)
  3212. {
  3213. if (c->err_info->SenseInfo[2] != UNIT_ATTENTION)
  3214. return 0;
  3215. switch (c->err_info->SenseInfo[12]) {
  3216. case STATE_CHANGED:
  3217. dev_warn(&h->pdev->dev, "a state change "
  3218. "detected, command retried\n");
  3219. return 1;
  3220. break;
  3221. case LUN_FAILED:
  3222. dev_warn(&h->pdev->dev, "LUN failure "
  3223. "detected, action required\n");
  3224. return 1;
  3225. break;
  3226. case REPORT_LUNS_CHANGED:
  3227. dev_warn(&h->pdev->dev, "report LUN data changed\n");
  3228. /*
  3229. * Here, we could call add_to_scan_list and wake up the scan thread,
  3230. * except that it's quite likely that we will get more than one
  3231. * REPORT_LUNS_CHANGED condition in quick succession, which means
  3232. * that those which occur after the first one will likely happen
  3233. * *during* the scan_thread's rescan. And the rescan code is not
  3234. * robust enough to restart in the middle, undoing what it has already
  3235. * done, and it's not clear that it's even possible to do this, since
  3236. * part of what it does is notify the block layer, which starts
  3237. * doing it's own i/o to read partition tables and so on, and the
  3238. * driver doesn't have visibility to know what might need undoing.
  3239. * In any event, if possible, it is horribly complicated to get right
  3240. * so we just don't do it for now.
  3241. *
  3242. * Note: this REPORT_LUNS_CHANGED condition only occurs on the MSA2012.
  3243. */
  3244. return 1;
  3245. break;
  3246. case POWER_OR_RESET:
  3247. dev_warn(&h->pdev->dev,
  3248. "a power on or device reset detected\n");
  3249. return 1;
  3250. break;
  3251. case UNIT_ATTENTION_CLEARED:
  3252. dev_warn(&h->pdev->dev,
  3253. "unit attention cleared by another initiator\n");
  3254. return 1;
  3255. break;
  3256. default:
  3257. dev_warn(&h->pdev->dev, "unknown unit attention detected\n");
  3258. return 1;
  3259. }
  3260. }
  3261. /*
  3262. * We cannot read the structure directly, for portability we must use
  3263. * the io functions.
  3264. * This is for debug only.
  3265. */
  3266. static void print_cfg_table(ctlr_info_t *h)
  3267. {
  3268. int i;
  3269. char temp_name[17];
  3270. CfgTable_struct *tb = h->cfgtable;
  3271. dev_dbg(&h->pdev->dev, "Controller Configuration information\n");
  3272. dev_dbg(&h->pdev->dev, "------------------------------------\n");
  3273. for (i = 0; i < 4; i++)
  3274. temp_name[i] = readb(&(tb->Signature[i]));
  3275. temp_name[4] = '\0';
  3276. dev_dbg(&h->pdev->dev, " Signature = %s\n", temp_name);
  3277. dev_dbg(&h->pdev->dev, " Spec Number = %d\n",
  3278. readl(&(tb->SpecValence)));
  3279. dev_dbg(&h->pdev->dev, " Transport methods supported = 0x%x\n",
  3280. readl(&(tb->TransportSupport)));
  3281. dev_dbg(&h->pdev->dev, " Transport methods active = 0x%x\n",
  3282. readl(&(tb->TransportActive)));
  3283. dev_dbg(&h->pdev->dev, " Requested transport Method = 0x%x\n",
  3284. readl(&(tb->HostWrite.TransportRequest)));
  3285. dev_dbg(&h->pdev->dev, " Coalesce Interrupt Delay = 0x%x\n",
  3286. readl(&(tb->HostWrite.CoalIntDelay)));
  3287. dev_dbg(&h->pdev->dev, " Coalesce Interrupt Count = 0x%x\n",
  3288. readl(&(tb->HostWrite.CoalIntCount)));
  3289. dev_dbg(&h->pdev->dev, " Max outstanding commands = 0x%d\n",
  3290. readl(&(tb->CmdsOutMax)));
  3291. dev_dbg(&h->pdev->dev, " Bus Types = 0x%x\n",
  3292. readl(&(tb->BusTypes)));
  3293. for (i = 0; i < 16; i++)
  3294. temp_name[i] = readb(&(tb->ServerName[i]));
  3295. temp_name[16] = '\0';
  3296. dev_dbg(&h->pdev->dev, " Server Name = %s\n", temp_name);
  3297. dev_dbg(&h->pdev->dev, " Heartbeat Counter = 0x%x\n\n\n",
  3298. readl(&(tb->HeartBeat)));
  3299. }
  3300. static int find_PCI_BAR_index(struct pci_dev *pdev, unsigned long pci_bar_addr)
  3301. {
  3302. int i, offset, mem_type, bar_type;
  3303. if (pci_bar_addr == PCI_BASE_ADDRESS_0) /* looking for BAR zero? */
  3304. return 0;
  3305. offset = 0;
  3306. for (i = 0; i < DEVICE_COUNT_RESOURCE; i++) {
  3307. bar_type = pci_resource_flags(pdev, i) & PCI_BASE_ADDRESS_SPACE;
  3308. if (bar_type == PCI_BASE_ADDRESS_SPACE_IO)
  3309. offset += 4;
  3310. else {
  3311. mem_type = pci_resource_flags(pdev, i) &
  3312. PCI_BASE_ADDRESS_MEM_TYPE_MASK;
  3313. switch (mem_type) {
  3314. case PCI_BASE_ADDRESS_MEM_TYPE_32:
  3315. case PCI_BASE_ADDRESS_MEM_TYPE_1M:
  3316. offset += 4; /* 32 bit */
  3317. break;
  3318. case PCI_BASE_ADDRESS_MEM_TYPE_64:
  3319. offset += 8;
  3320. break;
  3321. default: /* reserved in PCI 2.2 */
  3322. dev_warn(&pdev->dev,
  3323. "Base address is invalid\n");
  3324. return -1;
  3325. break;
  3326. }
  3327. }
  3328. if (offset == pci_bar_addr - PCI_BASE_ADDRESS_0)
  3329. return i + 1;
  3330. }
  3331. return -1;
  3332. }
  3333. /* Fill in bucket_map[], given nsgs (the max number of
  3334. * scatter gather elements supported) and bucket[],
  3335. * which is an array of 8 integers. The bucket[] array
  3336. * contains 8 different DMA transfer sizes (in 16
  3337. * byte increments) which the controller uses to fetch
  3338. * commands. This function fills in bucket_map[], which
  3339. * maps a given number of scatter gather elements to one of
  3340. * the 8 DMA transfer sizes. The point of it is to allow the
  3341. * controller to only do as much DMA as needed to fetch the
  3342. * command, with the DMA transfer size encoded in the lower
  3343. * bits of the command address.
  3344. */
  3345. static void calc_bucket_map(int bucket[], int num_buckets,
  3346. int nsgs, int *bucket_map)
  3347. {
  3348. int i, j, b, size;
  3349. /* even a command with 0 SGs requires 4 blocks */
  3350. #define MINIMUM_TRANSFER_BLOCKS 4
  3351. #define NUM_BUCKETS 8
  3352. /* Note, bucket_map must have nsgs+1 entries. */
  3353. for (i = 0; i <= nsgs; i++) {
  3354. /* Compute size of a command with i SG entries */
  3355. size = i + MINIMUM_TRANSFER_BLOCKS;
  3356. b = num_buckets; /* Assume the biggest bucket */
  3357. /* Find the bucket that is just big enough */
  3358. for (j = 0; j < 8; j++) {
  3359. if (bucket[j] >= size) {
  3360. b = j;
  3361. break;
  3362. }
  3363. }
  3364. /* for a command with i SG entries, use bucket b. */
  3365. bucket_map[i] = b;
  3366. }
  3367. }
  3368. static void __devinit cciss_wait_for_mode_change_ack(ctlr_info_t *h)
  3369. {
  3370. int i;
  3371. /* under certain very rare conditions, this can take awhile.
  3372. * (e.g.: hot replace a failed 144GB drive in a RAID 5 set right
  3373. * as we enter this code.) */
  3374. for (i = 0; i < MAX_CONFIG_WAIT; i++) {
  3375. if (!(readl(h->vaddr + SA5_DOORBELL) & CFGTBL_ChangeReq))
  3376. break;
  3377. msleep(10);
  3378. }
  3379. }
  3380. static __devinit void cciss_enter_performant_mode(ctlr_info_t *h)
  3381. {
  3382. /* This is a bit complicated. There are 8 registers on
  3383. * the controller which we write to to tell it 8 different
  3384. * sizes of commands which there may be. It's a way of
  3385. * reducing the DMA done to fetch each command. Encoded into
  3386. * each command's tag are 3 bits which communicate to the controller
  3387. * which of the eight sizes that command fits within. The size of
  3388. * each command depends on how many scatter gather entries there are.
  3389. * Each SG entry requires 16 bytes. The eight registers are programmed
  3390. * with the number of 16-byte blocks a command of that size requires.
  3391. * The smallest command possible requires 5 such 16 byte blocks.
  3392. * the largest command possible requires MAXSGENTRIES + 4 16-byte
  3393. * blocks. Note, this only extends to the SG entries contained
  3394. * within the command block, and does not extend to chained blocks
  3395. * of SG elements. bft[] contains the eight values we write to
  3396. * the registers. They are not evenly distributed, but have more
  3397. * sizes for small commands, and fewer sizes for larger commands.
  3398. */
  3399. __u32 trans_offset;
  3400. int bft[8] = { 5, 6, 8, 10, 12, 20, 28, MAXSGENTRIES + 4};
  3401. /*
  3402. * 5 = 1 s/g entry or 4k
  3403. * 6 = 2 s/g entry or 8k
  3404. * 8 = 4 s/g entry or 16k
  3405. * 10 = 6 s/g entry or 24k
  3406. */
  3407. unsigned long register_value;
  3408. BUILD_BUG_ON(28 > MAXSGENTRIES + 4);
  3409. h->reply_pool_wraparound = 1; /* spec: init to 1 */
  3410. /* Controller spec: zero out this buffer. */
  3411. memset(h->reply_pool, 0, h->max_commands * sizeof(__u64));
  3412. h->reply_pool_head = h->reply_pool;
  3413. trans_offset = readl(&(h->cfgtable->TransMethodOffset));
  3414. calc_bucket_map(bft, ARRAY_SIZE(bft), h->maxsgentries,
  3415. h->blockFetchTable);
  3416. writel(bft[0], &h->transtable->BlockFetch0);
  3417. writel(bft[1], &h->transtable->BlockFetch1);
  3418. writel(bft[2], &h->transtable->BlockFetch2);
  3419. writel(bft[3], &h->transtable->BlockFetch3);
  3420. writel(bft[4], &h->transtable->BlockFetch4);
  3421. writel(bft[5], &h->transtable->BlockFetch5);
  3422. writel(bft[6], &h->transtable->BlockFetch6);
  3423. writel(bft[7], &h->transtable->BlockFetch7);
  3424. /* size of controller ring buffer */
  3425. writel(h->max_commands, &h->transtable->RepQSize);
  3426. writel(1, &h->transtable->RepQCount);
  3427. writel(0, &h->transtable->RepQCtrAddrLow32);
  3428. writel(0, &h->transtable->RepQCtrAddrHigh32);
  3429. writel(h->reply_pool_dhandle, &h->transtable->RepQAddr0Low32);
  3430. writel(0, &h->transtable->RepQAddr0High32);
  3431. writel(CFGTBL_Trans_Performant,
  3432. &(h->cfgtable->HostWrite.TransportRequest));
  3433. writel(CFGTBL_ChangeReq, h->vaddr + SA5_DOORBELL);
  3434. cciss_wait_for_mode_change_ack(h);
  3435. register_value = readl(&(h->cfgtable->TransportActive));
  3436. if (!(register_value & CFGTBL_Trans_Performant))
  3437. dev_warn(&h->pdev->dev, "cciss: unable to get board into"
  3438. " performant mode\n");
  3439. }
  3440. static void __devinit cciss_put_controller_into_performant_mode(ctlr_info_t *h)
  3441. {
  3442. __u32 trans_support;
  3443. dev_dbg(&h->pdev->dev, "Trying to put board into Performant mode\n");
  3444. /* Attempt to put controller into performant mode if supported */
  3445. /* Does board support performant mode? */
  3446. trans_support = readl(&(h->cfgtable->TransportSupport));
  3447. if (!(trans_support & PERFORMANT_MODE))
  3448. return;
  3449. dev_dbg(&h->pdev->dev, "Placing controller into performant mode\n");
  3450. /* Performant mode demands commands on a 32 byte boundary
  3451. * pci_alloc_consistent aligns on page boundarys already.
  3452. * Just need to check if divisible by 32
  3453. */
  3454. if ((sizeof(CommandList_struct) % 32) != 0) {
  3455. dev_warn(&h->pdev->dev, "%s %d %s\n",
  3456. "cciss info: command size[",
  3457. (int)sizeof(CommandList_struct),
  3458. "] not divisible by 32, no performant mode..\n");
  3459. return;
  3460. }
  3461. /* Performant mode ring buffer and supporting data structures */
  3462. h->reply_pool = (__u64 *)pci_alloc_consistent(
  3463. h->pdev, h->max_commands * sizeof(__u64),
  3464. &(h->reply_pool_dhandle));
  3465. /* Need a block fetch table for performant mode */
  3466. h->blockFetchTable = kmalloc(((h->maxsgentries+1) *
  3467. sizeof(__u32)), GFP_KERNEL);
  3468. if ((h->reply_pool == NULL) || (h->blockFetchTable == NULL))
  3469. goto clean_up;
  3470. cciss_enter_performant_mode(h);
  3471. /* Change the access methods to the performant access methods */
  3472. h->access = SA5_performant_access;
  3473. h->transMethod = CFGTBL_Trans_Performant;
  3474. return;
  3475. clean_up:
  3476. kfree(h->blockFetchTable);
  3477. if (h->reply_pool)
  3478. pci_free_consistent(h->pdev,
  3479. h->max_commands * sizeof(__u64),
  3480. h->reply_pool,
  3481. h->reply_pool_dhandle);
  3482. return;
  3483. } /* cciss_put_controller_into_performant_mode */
  3484. /* If MSI/MSI-X is supported by the kernel we will try to enable it on
  3485. * controllers that are capable. If not, we use IO-APIC mode.
  3486. */
  3487. static void __devinit cciss_interrupt_mode(ctlr_info_t *h)
  3488. {
  3489. #ifdef CONFIG_PCI_MSI
  3490. int err;
  3491. struct msix_entry cciss_msix_entries[4] = { {0, 0}, {0, 1},
  3492. {0, 2}, {0, 3}
  3493. };
  3494. /* Some boards advertise MSI but don't really support it */
  3495. if ((h->board_id == 0x40700E11) || (h->board_id == 0x40800E11) ||
  3496. (h->board_id == 0x40820E11) || (h->board_id == 0x40830E11))
  3497. goto default_int_mode;
  3498. if (pci_find_capability(h->pdev, PCI_CAP_ID_MSIX)) {
  3499. err = pci_enable_msix(h->pdev, cciss_msix_entries, 4);
  3500. if (!err) {
  3501. h->intr[0] = cciss_msix_entries[0].vector;
  3502. h->intr[1] = cciss_msix_entries[1].vector;
  3503. h->intr[2] = cciss_msix_entries[2].vector;
  3504. h->intr[3] = cciss_msix_entries[3].vector;
  3505. h->msix_vector = 1;
  3506. return;
  3507. }
  3508. if (err > 0) {
  3509. dev_warn(&h->pdev->dev,
  3510. "only %d MSI-X vectors available\n", err);
  3511. goto default_int_mode;
  3512. } else {
  3513. dev_warn(&h->pdev->dev,
  3514. "MSI-X init failed %d\n", err);
  3515. goto default_int_mode;
  3516. }
  3517. }
  3518. if (pci_find_capability(h->pdev, PCI_CAP_ID_MSI)) {
  3519. if (!pci_enable_msi(h->pdev))
  3520. h->msi_vector = 1;
  3521. else
  3522. dev_warn(&h->pdev->dev, "MSI init failed\n");
  3523. }
  3524. default_int_mode:
  3525. #endif /* CONFIG_PCI_MSI */
  3526. /* if we get here we're going to use the default interrupt mode */
  3527. h->intr[PERF_MODE_INT] = h->pdev->irq;
  3528. return;
  3529. }
  3530. static int __devinit cciss_lookup_board_id(struct pci_dev *pdev, u32 *board_id)
  3531. {
  3532. int i;
  3533. u32 subsystem_vendor_id, subsystem_device_id;
  3534. subsystem_vendor_id = pdev->subsystem_vendor;
  3535. subsystem_device_id = pdev->subsystem_device;
  3536. *board_id = ((subsystem_device_id << 16) & 0xffff0000) |
  3537. subsystem_vendor_id;
  3538. for (i = 0; i < ARRAY_SIZE(products); i++) {
  3539. /* Stand aside for hpsa driver on request */
  3540. if (cciss_allow_hpsa && products[i].board_id == HPSA_BOUNDARY)
  3541. return -ENODEV;
  3542. if (*board_id == products[i].board_id)
  3543. return i;
  3544. }
  3545. dev_warn(&pdev->dev, "unrecognized board ID: 0x%08x, ignoring.\n",
  3546. *board_id);
  3547. return -ENODEV;
  3548. }
  3549. static inline bool cciss_board_disabled(ctlr_info_t *h)
  3550. {
  3551. u16 command;
  3552. (void) pci_read_config_word(h->pdev, PCI_COMMAND, &command);
  3553. return ((command & PCI_COMMAND_MEMORY) == 0);
  3554. }
  3555. static int __devinit cciss_pci_find_memory_BAR(struct pci_dev *pdev,
  3556. unsigned long *memory_bar)
  3557. {
  3558. int i;
  3559. for (i = 0; i < DEVICE_COUNT_RESOURCE; i++)
  3560. if (pci_resource_flags(pdev, i) & IORESOURCE_MEM) {
  3561. /* addressing mode bits already removed */
  3562. *memory_bar = pci_resource_start(pdev, i);
  3563. dev_dbg(&pdev->dev, "memory BAR = %lx\n",
  3564. *memory_bar);
  3565. return 0;
  3566. }
  3567. dev_warn(&pdev->dev, "no memory BAR found\n");
  3568. return -ENODEV;
  3569. }
  3570. static int __devinit cciss_wait_for_board_ready(ctlr_info_t *h)
  3571. {
  3572. int i;
  3573. u32 scratchpad;
  3574. for (i = 0; i < CCISS_BOARD_READY_ITERATIONS; i++) {
  3575. scratchpad = readl(h->vaddr + SA5_SCRATCHPAD_OFFSET);
  3576. if (scratchpad == CCISS_FIRMWARE_READY)
  3577. return 0;
  3578. msleep(CCISS_BOARD_READY_POLL_INTERVAL_MSECS);
  3579. }
  3580. dev_warn(&h->pdev->dev, "board not ready, timed out.\n");
  3581. return -ENODEV;
  3582. }
  3583. static int __devinit cciss_find_cfg_addrs(struct pci_dev *pdev,
  3584. void __iomem *vaddr, u32 *cfg_base_addr, u64 *cfg_base_addr_index,
  3585. u64 *cfg_offset)
  3586. {
  3587. *cfg_base_addr = readl(vaddr + SA5_CTCFG_OFFSET);
  3588. *cfg_offset = readl(vaddr + SA5_CTMEM_OFFSET);
  3589. *cfg_base_addr &= (u32) 0x0000ffff;
  3590. *cfg_base_addr_index = find_PCI_BAR_index(pdev, *cfg_base_addr);
  3591. if (*cfg_base_addr_index == -1) {
  3592. dev_warn(&pdev->dev, "cannot find cfg_base_addr_index, "
  3593. "*cfg_base_addr = 0x%08x\n", *cfg_base_addr);
  3594. return -ENODEV;
  3595. }
  3596. return 0;
  3597. }
  3598. static int __devinit cciss_find_cfgtables(ctlr_info_t *h)
  3599. {
  3600. u64 cfg_offset;
  3601. u32 cfg_base_addr;
  3602. u64 cfg_base_addr_index;
  3603. u32 trans_offset;
  3604. int rc;
  3605. rc = cciss_find_cfg_addrs(h->pdev, h->vaddr, &cfg_base_addr,
  3606. &cfg_base_addr_index, &cfg_offset);
  3607. if (rc)
  3608. return rc;
  3609. h->cfgtable = remap_pci_mem(pci_resource_start(h->pdev,
  3610. cfg_base_addr_index) + cfg_offset, sizeof(h->cfgtable));
  3611. if (!h->cfgtable)
  3612. return -ENOMEM;
  3613. /* Find performant mode table. */
  3614. trans_offset = readl(&h->cfgtable->TransMethodOffset);
  3615. h->transtable = remap_pci_mem(pci_resource_start(h->pdev,
  3616. cfg_base_addr_index)+cfg_offset+trans_offset,
  3617. sizeof(*h->transtable));
  3618. if (!h->transtable)
  3619. return -ENOMEM;
  3620. return 0;
  3621. }
  3622. static void __devinit cciss_get_max_perf_mode_cmds(struct ctlr_info *h)
  3623. {
  3624. h->max_commands = readl(&(h->cfgtable->MaxPerformantModeCommands));
  3625. if (h->max_commands < 16) {
  3626. dev_warn(&h->pdev->dev, "Controller reports "
  3627. "max supported commands of %d, an obvious lie. "
  3628. "Using 16. Ensure that firmware is up to date.\n",
  3629. h->max_commands);
  3630. h->max_commands = 16;
  3631. }
  3632. }
  3633. /* Interrogate the hardware for some limits:
  3634. * max commands, max SG elements without chaining, and with chaining,
  3635. * SG chain block size, etc.
  3636. */
  3637. static void __devinit cciss_find_board_params(ctlr_info_t *h)
  3638. {
  3639. cciss_get_max_perf_mode_cmds(h);
  3640. h->nr_cmds = h->max_commands - 4; /* Allow room for some ioctls */
  3641. h->maxsgentries = readl(&(h->cfgtable->MaxSGElements));
  3642. /*
  3643. * Limit in-command s/g elements to 32 save dma'able memory.
  3644. * Howvever spec says if 0, use 31
  3645. */
  3646. h->max_cmd_sgentries = 31;
  3647. if (h->maxsgentries > 512) {
  3648. h->max_cmd_sgentries = 32;
  3649. h->chainsize = h->maxsgentries - h->max_cmd_sgentries + 1;
  3650. h->maxsgentries--; /* save one for chain pointer */
  3651. } else {
  3652. h->maxsgentries = 31; /* default to traditional values */
  3653. h->chainsize = 0;
  3654. }
  3655. }
  3656. static inline bool CISS_signature_present(ctlr_info_t *h)
  3657. {
  3658. if ((readb(&h->cfgtable->Signature[0]) != 'C') ||
  3659. (readb(&h->cfgtable->Signature[1]) != 'I') ||
  3660. (readb(&h->cfgtable->Signature[2]) != 'S') ||
  3661. (readb(&h->cfgtable->Signature[3]) != 'S')) {
  3662. dev_warn(&h->pdev->dev, "not a valid CISS config table\n");
  3663. return false;
  3664. }
  3665. return true;
  3666. }
  3667. /* Need to enable prefetch in the SCSI core for 6400 in x86 */
  3668. static inline void cciss_enable_scsi_prefetch(ctlr_info_t *h)
  3669. {
  3670. #ifdef CONFIG_X86
  3671. u32 prefetch;
  3672. prefetch = readl(&(h->cfgtable->SCSI_Prefetch));
  3673. prefetch |= 0x100;
  3674. writel(prefetch, &(h->cfgtable->SCSI_Prefetch));
  3675. #endif
  3676. }
  3677. /* Disable DMA prefetch for the P600. Otherwise an ASIC bug may result
  3678. * in a prefetch beyond physical memory.
  3679. */
  3680. static inline void cciss_p600_dma_prefetch_quirk(ctlr_info_t *h)
  3681. {
  3682. u32 dma_prefetch;
  3683. __u32 dma_refetch;
  3684. if (h->board_id != 0x3225103C)
  3685. return;
  3686. dma_prefetch = readl(h->vaddr + I2O_DMA1_CFG);
  3687. dma_prefetch |= 0x8000;
  3688. writel(dma_prefetch, h->vaddr + I2O_DMA1_CFG);
  3689. pci_read_config_dword(h->pdev, PCI_COMMAND_PARITY, &dma_refetch);
  3690. dma_refetch |= 0x1;
  3691. pci_write_config_dword(h->pdev, PCI_COMMAND_PARITY, dma_refetch);
  3692. }
  3693. static int __devinit cciss_pci_init(ctlr_info_t *h)
  3694. {
  3695. int prod_index, err;
  3696. prod_index = cciss_lookup_board_id(h->pdev, &h->board_id);
  3697. if (prod_index < 0)
  3698. return -ENODEV;
  3699. h->product_name = products[prod_index].product_name;
  3700. h->access = *(products[prod_index].access);
  3701. if (cciss_board_disabled(h)) {
  3702. dev_warn(&h->pdev->dev, "controller appears to be disabled\n");
  3703. return -ENODEV;
  3704. }
  3705. err = pci_enable_device(h->pdev);
  3706. if (err) {
  3707. dev_warn(&h->pdev->dev, "Unable to Enable PCI device\n");
  3708. return err;
  3709. }
  3710. err = pci_request_regions(h->pdev, "cciss");
  3711. if (err) {
  3712. dev_warn(&h->pdev->dev,
  3713. "Cannot obtain PCI resources, aborting\n");
  3714. return err;
  3715. }
  3716. dev_dbg(&h->pdev->dev, "irq = %x\n", h->pdev->irq);
  3717. dev_dbg(&h->pdev->dev, "board_id = %x\n", h->board_id);
  3718. /* If the kernel supports MSI/MSI-X we will try to enable that functionality,
  3719. * else we use the IO-APIC interrupt assigned to us by system ROM.
  3720. */
  3721. cciss_interrupt_mode(h);
  3722. err = cciss_pci_find_memory_BAR(h->pdev, &h->paddr);
  3723. if (err)
  3724. goto err_out_free_res;
  3725. h->vaddr = remap_pci_mem(h->paddr, 0x250);
  3726. if (!h->vaddr) {
  3727. err = -ENOMEM;
  3728. goto err_out_free_res;
  3729. }
  3730. err = cciss_wait_for_board_ready(h);
  3731. if (err)
  3732. goto err_out_free_res;
  3733. err = cciss_find_cfgtables(h);
  3734. if (err)
  3735. goto err_out_free_res;
  3736. print_cfg_table(h);
  3737. cciss_find_board_params(h);
  3738. if (!CISS_signature_present(h)) {
  3739. err = -ENODEV;
  3740. goto err_out_free_res;
  3741. }
  3742. cciss_enable_scsi_prefetch(h);
  3743. cciss_p600_dma_prefetch_quirk(h);
  3744. cciss_put_controller_into_performant_mode(h);
  3745. return 0;
  3746. err_out_free_res:
  3747. /*
  3748. * Deliberately omit pci_disable_device(): it does something nasty to
  3749. * Smart Array controllers that pci_enable_device does not undo
  3750. */
  3751. if (h->transtable)
  3752. iounmap(h->transtable);
  3753. if (h->cfgtable)
  3754. iounmap(h->cfgtable);
  3755. if (h->vaddr)
  3756. iounmap(h->vaddr);
  3757. pci_release_regions(h->pdev);
  3758. return err;
  3759. }
  3760. /* Function to find the first free pointer into our hba[] array
  3761. * Returns -1 if no free entries are left.
  3762. */
  3763. static int alloc_cciss_hba(struct pci_dev *pdev)
  3764. {
  3765. int i;
  3766. for (i = 0; i < MAX_CTLR; i++) {
  3767. if (!hba[i]) {
  3768. ctlr_info_t *h;
  3769. h = kzalloc(sizeof(ctlr_info_t), GFP_KERNEL);
  3770. if (!h)
  3771. goto Enomem;
  3772. hba[i] = h;
  3773. return i;
  3774. }
  3775. }
  3776. dev_warn(&pdev->dev, "This driver supports a maximum"
  3777. " of %d controllers.\n", MAX_CTLR);
  3778. return -1;
  3779. Enomem:
  3780. dev_warn(&pdev->dev, "out of memory.\n");
  3781. return -1;
  3782. }
  3783. static void free_hba(ctlr_info_t *h)
  3784. {
  3785. int i;
  3786. hba[h->ctlr] = NULL;
  3787. for (i = 0; i < h->highest_lun + 1; i++)
  3788. if (h->gendisk[i] != NULL)
  3789. put_disk(h->gendisk[i]);
  3790. kfree(h);
  3791. }
  3792. /* Send a message CDB to the firmware. */
  3793. static __devinit int cciss_message(struct pci_dev *pdev, unsigned char opcode, unsigned char type)
  3794. {
  3795. typedef struct {
  3796. CommandListHeader_struct CommandHeader;
  3797. RequestBlock_struct Request;
  3798. ErrDescriptor_struct ErrorDescriptor;
  3799. } Command;
  3800. static const size_t cmd_sz = sizeof(Command) + sizeof(ErrorInfo_struct);
  3801. Command *cmd;
  3802. dma_addr_t paddr64;
  3803. uint32_t paddr32, tag;
  3804. void __iomem *vaddr;
  3805. int i, err;
  3806. vaddr = ioremap_nocache(pci_resource_start(pdev, 0), pci_resource_len(pdev, 0));
  3807. if (vaddr == NULL)
  3808. return -ENOMEM;
  3809. /* The Inbound Post Queue only accepts 32-bit physical addresses for the
  3810. CCISS commands, so they must be allocated from the lower 4GiB of
  3811. memory. */
  3812. err = pci_set_consistent_dma_mask(pdev, DMA_BIT_MASK(32));
  3813. if (err) {
  3814. iounmap(vaddr);
  3815. return -ENOMEM;
  3816. }
  3817. cmd = pci_alloc_consistent(pdev, cmd_sz, &paddr64);
  3818. if (cmd == NULL) {
  3819. iounmap(vaddr);
  3820. return -ENOMEM;
  3821. }
  3822. /* This must fit, because of the 32-bit consistent DMA mask. Also,
  3823. although there's no guarantee, we assume that the address is at
  3824. least 4-byte aligned (most likely, it's page-aligned). */
  3825. paddr32 = paddr64;
  3826. cmd->CommandHeader.ReplyQueue = 0;
  3827. cmd->CommandHeader.SGList = 0;
  3828. cmd->CommandHeader.SGTotal = 0;
  3829. cmd->CommandHeader.Tag.lower = paddr32;
  3830. cmd->CommandHeader.Tag.upper = 0;
  3831. memset(&cmd->CommandHeader.LUN.LunAddrBytes, 0, 8);
  3832. cmd->Request.CDBLen = 16;
  3833. cmd->Request.Type.Type = TYPE_MSG;
  3834. cmd->Request.Type.Attribute = ATTR_HEADOFQUEUE;
  3835. cmd->Request.Type.Direction = XFER_NONE;
  3836. cmd->Request.Timeout = 0; /* Don't time out */
  3837. cmd->Request.CDB[0] = opcode;
  3838. cmd->Request.CDB[1] = type;
  3839. memset(&cmd->Request.CDB[2], 0, 14); /* the rest of the CDB is reserved */
  3840. cmd->ErrorDescriptor.Addr.lower = paddr32 + sizeof(Command);
  3841. cmd->ErrorDescriptor.Addr.upper = 0;
  3842. cmd->ErrorDescriptor.Len = sizeof(ErrorInfo_struct);
  3843. writel(paddr32, vaddr + SA5_REQUEST_PORT_OFFSET);
  3844. for (i = 0; i < 10; i++) {
  3845. tag = readl(vaddr + SA5_REPLY_PORT_OFFSET);
  3846. if ((tag & ~3) == paddr32)
  3847. break;
  3848. schedule_timeout_uninterruptible(HZ);
  3849. }
  3850. iounmap(vaddr);
  3851. /* we leak the DMA buffer here ... no choice since the controller could
  3852. still complete the command. */
  3853. if (i == 10) {
  3854. dev_err(&pdev->dev,
  3855. "controller message %02x:%02x timed out\n",
  3856. opcode, type);
  3857. return -ETIMEDOUT;
  3858. }
  3859. pci_free_consistent(pdev, cmd_sz, cmd, paddr64);
  3860. if (tag & 2) {
  3861. dev_err(&pdev->dev, "controller message %02x:%02x failed\n",
  3862. opcode, type);
  3863. return -EIO;
  3864. }
  3865. dev_info(&pdev->dev, "controller message %02x:%02x succeeded\n",
  3866. opcode, type);
  3867. return 0;
  3868. }
  3869. #define cciss_soft_reset_controller(p) cciss_message(p, 1, 0)
  3870. #define cciss_noop(p) cciss_message(p, 3, 0)
  3871. static __devinit int cciss_reset_msi(struct pci_dev *pdev)
  3872. {
  3873. /* the #defines are stolen from drivers/pci/msi.h. */
  3874. #define msi_control_reg(base) (base + PCI_MSI_FLAGS)
  3875. #define PCI_MSIX_FLAGS_ENABLE (1 << 15)
  3876. int pos;
  3877. u16 control = 0;
  3878. pos = pci_find_capability(pdev, PCI_CAP_ID_MSI);
  3879. if (pos) {
  3880. pci_read_config_word(pdev, msi_control_reg(pos), &control);
  3881. if (control & PCI_MSI_FLAGS_ENABLE) {
  3882. dev_info(&pdev->dev, "resetting MSI\n");
  3883. pci_write_config_word(pdev, msi_control_reg(pos), control & ~PCI_MSI_FLAGS_ENABLE);
  3884. }
  3885. }
  3886. pos = pci_find_capability(pdev, PCI_CAP_ID_MSIX);
  3887. if (pos) {
  3888. pci_read_config_word(pdev, msi_control_reg(pos), &control);
  3889. if (control & PCI_MSIX_FLAGS_ENABLE) {
  3890. dev_info(&pdev->dev, "resetting MSI-X\n");
  3891. pci_write_config_word(pdev, msi_control_reg(pos), control & ~PCI_MSIX_FLAGS_ENABLE);
  3892. }
  3893. }
  3894. return 0;
  3895. }
  3896. static int cciss_controller_hard_reset(struct pci_dev *pdev,
  3897. void * __iomem vaddr, bool use_doorbell)
  3898. {
  3899. u16 pmcsr;
  3900. int pos;
  3901. if (use_doorbell) {
  3902. /* For everything after the P600, the PCI power state method
  3903. * of resetting the controller doesn't work, so we have this
  3904. * other way using the doorbell register.
  3905. */
  3906. dev_info(&pdev->dev, "using doorbell to reset controller\n");
  3907. writel(DOORBELL_CTLR_RESET, vaddr + SA5_DOORBELL);
  3908. msleep(1000);
  3909. } else { /* Try to do it the PCI power state way */
  3910. /* Quoting from the Open CISS Specification: "The Power
  3911. * Management Control/Status Register (CSR) controls the power
  3912. * state of the device. The normal operating state is D0,
  3913. * CSR=00h. The software off state is D3, CSR=03h. To reset
  3914. * the controller, place the interface device in D3 then to D0,
  3915. * this causes a secondary PCI reset which will reset the
  3916. * controller." */
  3917. pos = pci_find_capability(pdev, PCI_CAP_ID_PM);
  3918. if (pos == 0) {
  3919. dev_err(&pdev->dev,
  3920. "cciss_controller_hard_reset: "
  3921. "PCI PM not supported\n");
  3922. return -ENODEV;
  3923. }
  3924. dev_info(&pdev->dev, "using PCI PM to reset controller\n");
  3925. /* enter the D3hot power management state */
  3926. pci_read_config_word(pdev, pos + PCI_PM_CTRL, &pmcsr);
  3927. pmcsr &= ~PCI_PM_CTRL_STATE_MASK;
  3928. pmcsr |= PCI_D3hot;
  3929. pci_write_config_word(pdev, pos + PCI_PM_CTRL, pmcsr);
  3930. msleep(500);
  3931. /* enter the D0 power management state */
  3932. pmcsr &= ~PCI_PM_CTRL_STATE_MASK;
  3933. pmcsr |= PCI_D0;
  3934. pci_write_config_word(pdev, pos + PCI_PM_CTRL, pmcsr);
  3935. msleep(500);
  3936. }
  3937. return 0;
  3938. }
  3939. /* This does a hard reset of the controller using PCI power management
  3940. * states or using the doorbell register. */
  3941. static __devinit int cciss_kdump_hard_reset_controller(struct pci_dev *pdev)
  3942. {
  3943. u16 saved_config_space[32];
  3944. u64 cfg_offset;
  3945. u32 cfg_base_addr;
  3946. u64 cfg_base_addr_index;
  3947. void __iomem *vaddr;
  3948. unsigned long paddr;
  3949. u32 misc_fw_support, active_transport;
  3950. int rc, i;
  3951. CfgTable_struct __iomem *cfgtable;
  3952. bool use_doorbell;
  3953. u32 board_id;
  3954. /* For controllers as old a the p600, this is very nearly
  3955. * the same thing as
  3956. *
  3957. * pci_save_state(pci_dev);
  3958. * pci_set_power_state(pci_dev, PCI_D3hot);
  3959. * pci_set_power_state(pci_dev, PCI_D0);
  3960. * pci_restore_state(pci_dev);
  3961. *
  3962. * but we can't use these nice canned kernel routines on
  3963. * kexec, because they also check the MSI/MSI-X state in PCI
  3964. * configuration space and do the wrong thing when it is
  3965. * set/cleared. Also, the pci_save/restore_state functions
  3966. * violate the ordering requirements for restoring the
  3967. * configuration space from the CCISS document (see the
  3968. * comment below). So we roll our own ....
  3969. *
  3970. * For controllers newer than the P600, the pci power state
  3971. * method of resetting doesn't work so we have another way
  3972. * using the doorbell register.
  3973. */
  3974. /* Exclude 640x boards. These are two pci devices in one slot
  3975. * which share a battery backed cache module. One controls the
  3976. * cache, the other accesses the cache through the one that controls
  3977. * it. If we reset the one controlling the cache, the other will
  3978. * likely not be happy. Just forbid resetting this conjoined mess.
  3979. */
  3980. cciss_lookup_board_id(pdev, &board_id);
  3981. if (board_id == 0x409C0E11 || board_id == 0x409D0E11) {
  3982. dev_warn(&pdev->dev, "Cannot reset Smart Array 640x "
  3983. "due to shared cache module.");
  3984. return -ENODEV;
  3985. }
  3986. for (i = 0; i < 32; i++)
  3987. pci_read_config_word(pdev, 2*i, &saved_config_space[i]);
  3988. /* find the first memory BAR, so we can find the cfg table */
  3989. rc = cciss_pci_find_memory_BAR(pdev, &paddr);
  3990. if (rc)
  3991. return rc;
  3992. vaddr = remap_pci_mem(paddr, 0x250);
  3993. if (!vaddr)
  3994. return -ENOMEM;
  3995. /* find cfgtable in order to check if reset via doorbell is supported */
  3996. rc = cciss_find_cfg_addrs(pdev, vaddr, &cfg_base_addr,
  3997. &cfg_base_addr_index, &cfg_offset);
  3998. if (rc)
  3999. goto unmap_vaddr;
  4000. cfgtable = remap_pci_mem(pci_resource_start(pdev,
  4001. cfg_base_addr_index) + cfg_offset, sizeof(*cfgtable));
  4002. if (!cfgtable) {
  4003. rc = -ENOMEM;
  4004. goto unmap_vaddr;
  4005. }
  4006. /* If reset via doorbell register is supported, use that. */
  4007. misc_fw_support = readl(&cfgtable->misc_fw_support);
  4008. use_doorbell = misc_fw_support & MISC_FW_DOORBELL_RESET;
  4009. /* The doorbell reset seems to cause lockups on some Smart
  4010. * Arrays (e.g. P410, P410i, maybe others). Until this is
  4011. * fixed or at least isolated, avoid the doorbell reset.
  4012. */
  4013. use_doorbell = 0;
  4014. rc = cciss_controller_hard_reset(pdev, vaddr, use_doorbell);
  4015. if (rc)
  4016. goto unmap_cfgtable;
  4017. /* Restore the PCI configuration space. The Open CISS
  4018. * Specification says, "Restore the PCI Configuration
  4019. * Registers, offsets 00h through 60h. It is important to
  4020. * restore the command register, 16-bits at offset 04h,
  4021. * last. Do not restore the configuration status register,
  4022. * 16-bits at offset 06h." Note that the offset is 2*i.
  4023. */
  4024. for (i = 0; i < 32; i++) {
  4025. if (i == 2 || i == 3)
  4026. continue;
  4027. pci_write_config_word(pdev, 2*i, saved_config_space[i]);
  4028. }
  4029. wmb();
  4030. pci_write_config_word(pdev, 4, saved_config_space[2]);
  4031. /* Some devices (notably the HP Smart Array 5i Controller)
  4032. need a little pause here */
  4033. msleep(CCISS_POST_RESET_PAUSE_MSECS);
  4034. /* Controller should be in simple mode at this point. If it's not,
  4035. * It means we're on one of those controllers which doesn't support
  4036. * the doorbell reset method and on which the PCI power management reset
  4037. * method doesn't work (P800, for example.)
  4038. * In those cases, don't try to proceed, as it generally doesn't work.
  4039. */
  4040. active_transport = readl(&cfgtable->TransportActive);
  4041. if (active_transport & PERFORMANT_MODE) {
  4042. dev_warn(&pdev->dev, "Unable to successfully reset controller,"
  4043. " Ignoring controller.\n");
  4044. rc = -ENODEV;
  4045. }
  4046. unmap_cfgtable:
  4047. iounmap(cfgtable);
  4048. unmap_vaddr:
  4049. iounmap(vaddr);
  4050. return rc;
  4051. }
  4052. static __devinit int cciss_init_reset_devices(struct pci_dev *pdev)
  4053. {
  4054. int rc, i;
  4055. if (!reset_devices)
  4056. return 0;
  4057. /* Reset the controller with a PCI power-cycle or via doorbell */
  4058. rc = cciss_kdump_hard_reset_controller(pdev);
  4059. /* -ENOTSUPP here means we cannot reset the controller
  4060. * but it's already (and still) up and running in
  4061. * "performant mode". Or, it might be 640x, which can't reset
  4062. * due to concerns about shared bbwc between 6402/6404 pair.
  4063. */
  4064. if (rc == -ENOTSUPP)
  4065. return 0; /* just try to do the kdump anyhow. */
  4066. if (rc)
  4067. return -ENODEV;
  4068. if (cciss_reset_msi(pdev))
  4069. return -ENODEV;
  4070. /* Now try to get the controller to respond to a no-op */
  4071. for (i = 0; i < CCISS_POST_RESET_NOOP_RETRIES; i++) {
  4072. if (cciss_noop(pdev) == 0)
  4073. break;
  4074. else
  4075. dev_warn(&pdev->dev, "no-op failed%s\n",
  4076. (i < CCISS_POST_RESET_NOOP_RETRIES - 1 ?
  4077. "; re-trying" : ""));
  4078. msleep(CCISS_POST_RESET_NOOP_INTERVAL_MSECS);
  4079. }
  4080. return 0;
  4081. }
  4082. /*
  4083. * This is it. Find all the controllers and register them. I really hate
  4084. * stealing all these major device numbers.
  4085. * returns the number of block devices registered.
  4086. */
  4087. static int __devinit cciss_init_one(struct pci_dev *pdev,
  4088. const struct pci_device_id *ent)
  4089. {
  4090. int i;
  4091. int j = 0;
  4092. int k = 0;
  4093. int rc;
  4094. int dac, return_code;
  4095. InquiryData_struct *inq_buff;
  4096. ctlr_info_t *h;
  4097. rc = cciss_init_reset_devices(pdev);
  4098. if (rc)
  4099. return rc;
  4100. i = alloc_cciss_hba(pdev);
  4101. if (i < 0)
  4102. return -1;
  4103. h = hba[i];
  4104. h->pdev = pdev;
  4105. h->busy_initializing = 1;
  4106. INIT_HLIST_HEAD(&h->cmpQ);
  4107. INIT_HLIST_HEAD(&h->reqQ);
  4108. mutex_init(&h->busy_shutting_down);
  4109. if (cciss_pci_init(h) != 0)
  4110. goto clean_no_release_regions;
  4111. sprintf(h->devname, "cciss%d", i);
  4112. h->ctlr = i;
  4113. init_completion(&h->scan_wait);
  4114. if (cciss_create_hba_sysfs_entry(h))
  4115. goto clean0;
  4116. /* configure PCI DMA stuff */
  4117. if (!pci_set_dma_mask(pdev, DMA_BIT_MASK(64)))
  4118. dac = 1;
  4119. else if (!pci_set_dma_mask(pdev, DMA_BIT_MASK(32)))
  4120. dac = 0;
  4121. else {
  4122. dev_err(&h->pdev->dev, "no suitable DMA available\n");
  4123. goto clean1;
  4124. }
  4125. /*
  4126. * register with the major number, or get a dynamic major number
  4127. * by passing 0 as argument. This is done for greater than
  4128. * 8 controller support.
  4129. */
  4130. if (i < MAX_CTLR_ORIG)
  4131. h->major = COMPAQ_CISS_MAJOR + i;
  4132. rc = register_blkdev(h->major, h->devname);
  4133. if (rc == -EBUSY || rc == -EINVAL) {
  4134. dev_err(&h->pdev->dev,
  4135. "Unable to get major number %d for %s "
  4136. "on hba %d\n", h->major, h->devname, i);
  4137. goto clean1;
  4138. } else {
  4139. if (i >= MAX_CTLR_ORIG)
  4140. h->major = rc;
  4141. }
  4142. /* make sure the board interrupts are off */
  4143. h->access.set_intr_mask(h, CCISS_INTR_OFF);
  4144. if (h->msi_vector || h->msix_vector) {
  4145. if (request_irq(h->intr[PERF_MODE_INT],
  4146. do_cciss_msix_intr,
  4147. IRQF_DISABLED, h->devname, h)) {
  4148. dev_err(&h->pdev->dev, "Unable to get irq %d for %s\n",
  4149. h->intr[PERF_MODE_INT], h->devname);
  4150. goto clean2;
  4151. }
  4152. } else {
  4153. if (request_irq(h->intr[PERF_MODE_INT], do_cciss_intx,
  4154. IRQF_DISABLED, h->devname, h)) {
  4155. dev_err(&h->pdev->dev, "Unable to get irq %d for %s\n",
  4156. h->intr[PERF_MODE_INT], h->devname);
  4157. goto clean2;
  4158. }
  4159. }
  4160. dev_info(&h->pdev->dev, "%s: <0x%x> at PCI %s IRQ %d%s using DAC\n",
  4161. h->devname, pdev->device, pci_name(pdev),
  4162. h->intr[PERF_MODE_INT], dac ? "" : " not");
  4163. h->cmd_pool_bits =
  4164. kmalloc(DIV_ROUND_UP(h->nr_cmds, BITS_PER_LONG)
  4165. * sizeof(unsigned long), GFP_KERNEL);
  4166. h->cmd_pool = (CommandList_struct *)
  4167. pci_alloc_consistent(h->pdev,
  4168. h->nr_cmds * sizeof(CommandList_struct),
  4169. &(h->cmd_pool_dhandle));
  4170. h->errinfo_pool = (ErrorInfo_struct *)
  4171. pci_alloc_consistent(h->pdev,
  4172. h->nr_cmds * sizeof(ErrorInfo_struct),
  4173. &(h->errinfo_pool_dhandle));
  4174. if ((h->cmd_pool_bits == NULL)
  4175. || (h->cmd_pool == NULL)
  4176. || (h->errinfo_pool == NULL)) {
  4177. dev_err(&h->pdev->dev, "out of memory");
  4178. goto clean4;
  4179. }
  4180. /* Need space for temp scatter list */
  4181. h->scatter_list = kmalloc(h->max_commands *
  4182. sizeof(struct scatterlist *),
  4183. GFP_KERNEL);
  4184. if (!h->scatter_list)
  4185. goto clean4;
  4186. for (k = 0; k < h->nr_cmds; k++) {
  4187. h->scatter_list[k] = kmalloc(sizeof(struct scatterlist) *
  4188. h->maxsgentries,
  4189. GFP_KERNEL);
  4190. if (h->scatter_list[k] == NULL) {
  4191. dev_err(&h->pdev->dev,
  4192. "could not allocate s/g lists\n");
  4193. goto clean4;
  4194. }
  4195. }
  4196. h->cmd_sg_list = cciss_allocate_sg_chain_blocks(h,
  4197. h->chainsize, h->nr_cmds);
  4198. if (!h->cmd_sg_list && h->chainsize > 0)
  4199. goto clean4;
  4200. spin_lock_init(&h->lock);
  4201. /* Initialize the pdev driver private data.
  4202. have it point to h. */
  4203. pci_set_drvdata(pdev, h);
  4204. /* command and error info recs zeroed out before
  4205. they are used */
  4206. memset(h->cmd_pool_bits, 0,
  4207. DIV_ROUND_UP(h->nr_cmds, BITS_PER_LONG)
  4208. * sizeof(unsigned long));
  4209. h->num_luns = 0;
  4210. h->highest_lun = -1;
  4211. for (j = 0; j < CISS_MAX_LUN; j++) {
  4212. h->drv[j] = NULL;
  4213. h->gendisk[j] = NULL;
  4214. }
  4215. cciss_scsi_setup(h);
  4216. /* Turn the interrupts on so we can service requests */
  4217. h->access.set_intr_mask(h, CCISS_INTR_ON);
  4218. /* Get the firmware version */
  4219. inq_buff = kzalloc(sizeof(InquiryData_struct), GFP_KERNEL);
  4220. if (inq_buff == NULL) {
  4221. dev_err(&h->pdev->dev, "out of memory\n");
  4222. goto clean4;
  4223. }
  4224. return_code = sendcmd_withirq(h, CISS_INQUIRY, inq_buff,
  4225. sizeof(InquiryData_struct), 0, CTLR_LUNID, TYPE_CMD);
  4226. if (return_code == IO_OK) {
  4227. h->firm_ver[0] = inq_buff->data_byte[32];
  4228. h->firm_ver[1] = inq_buff->data_byte[33];
  4229. h->firm_ver[2] = inq_buff->data_byte[34];
  4230. h->firm_ver[3] = inq_buff->data_byte[35];
  4231. } else { /* send command failed */
  4232. dev_warn(&h->pdev->dev, "unable to determine firmware"
  4233. " version of controller\n");
  4234. }
  4235. kfree(inq_buff);
  4236. cciss_procinit(h);
  4237. h->cciss_max_sectors = 8192;
  4238. rebuild_lun_table(h, 1, 0);
  4239. h->busy_initializing = 0;
  4240. return 1;
  4241. clean4:
  4242. kfree(h->cmd_pool_bits);
  4243. /* Free up sg elements */
  4244. for (k-- ; k >= 0; k--)
  4245. kfree(h->scatter_list[k]);
  4246. kfree(h->scatter_list);
  4247. cciss_free_sg_chain_blocks(h->cmd_sg_list, h->nr_cmds);
  4248. if (h->cmd_pool)
  4249. pci_free_consistent(h->pdev,
  4250. h->nr_cmds * sizeof(CommandList_struct),
  4251. h->cmd_pool, h->cmd_pool_dhandle);
  4252. if (h->errinfo_pool)
  4253. pci_free_consistent(h->pdev,
  4254. h->nr_cmds * sizeof(ErrorInfo_struct),
  4255. h->errinfo_pool,
  4256. h->errinfo_pool_dhandle);
  4257. free_irq(h->intr[PERF_MODE_INT], h);
  4258. clean2:
  4259. unregister_blkdev(h->major, h->devname);
  4260. clean1:
  4261. cciss_destroy_hba_sysfs_entry(h);
  4262. clean0:
  4263. pci_release_regions(pdev);
  4264. clean_no_release_regions:
  4265. h->busy_initializing = 0;
  4266. /*
  4267. * Deliberately omit pci_disable_device(): it does something nasty to
  4268. * Smart Array controllers that pci_enable_device does not undo
  4269. */
  4270. pci_set_drvdata(pdev, NULL);
  4271. free_hba(h);
  4272. return -1;
  4273. }
  4274. static void cciss_shutdown(struct pci_dev *pdev)
  4275. {
  4276. ctlr_info_t *h;
  4277. char *flush_buf;
  4278. int return_code;
  4279. h = pci_get_drvdata(pdev);
  4280. flush_buf = kzalloc(4, GFP_KERNEL);
  4281. if (!flush_buf) {
  4282. dev_warn(&h->pdev->dev, "cache not flushed, out of memory.\n");
  4283. return;
  4284. }
  4285. /* write all data in the battery backed cache to disk */
  4286. memset(flush_buf, 0, 4);
  4287. return_code = sendcmd_withirq(h, CCISS_CACHE_FLUSH, flush_buf,
  4288. 4, 0, CTLR_LUNID, TYPE_CMD);
  4289. kfree(flush_buf);
  4290. if (return_code != IO_OK)
  4291. dev_warn(&h->pdev->dev, "Error flushing cache\n");
  4292. h->access.set_intr_mask(h, CCISS_INTR_OFF);
  4293. free_irq(h->intr[PERF_MODE_INT], h);
  4294. }
  4295. static void __devexit cciss_remove_one(struct pci_dev *pdev)
  4296. {
  4297. ctlr_info_t *h;
  4298. int i, j;
  4299. if (pci_get_drvdata(pdev) == NULL) {
  4300. dev_err(&pdev->dev, "Unable to remove device\n");
  4301. return;
  4302. }
  4303. h = pci_get_drvdata(pdev);
  4304. i = h->ctlr;
  4305. if (hba[i] == NULL) {
  4306. dev_err(&pdev->dev, "device appears to already be removed\n");
  4307. return;
  4308. }
  4309. mutex_lock(&h->busy_shutting_down);
  4310. remove_from_scan_list(h);
  4311. remove_proc_entry(h->devname, proc_cciss);
  4312. unregister_blkdev(h->major, h->devname);
  4313. /* remove it from the disk list */
  4314. for (j = 0; j < CISS_MAX_LUN; j++) {
  4315. struct gendisk *disk = h->gendisk[j];
  4316. if (disk) {
  4317. struct request_queue *q = disk->queue;
  4318. if (disk->flags & GENHD_FL_UP) {
  4319. cciss_destroy_ld_sysfs_entry(h, j, 1);
  4320. del_gendisk(disk);
  4321. }
  4322. if (q)
  4323. blk_cleanup_queue(q);
  4324. }
  4325. }
  4326. #ifdef CONFIG_CISS_SCSI_TAPE
  4327. cciss_unregister_scsi(h); /* unhook from SCSI subsystem */
  4328. #endif
  4329. cciss_shutdown(pdev);
  4330. #ifdef CONFIG_PCI_MSI
  4331. if (h->msix_vector)
  4332. pci_disable_msix(h->pdev);
  4333. else if (h->msi_vector)
  4334. pci_disable_msi(h->pdev);
  4335. #endif /* CONFIG_PCI_MSI */
  4336. iounmap(h->transtable);
  4337. iounmap(h->cfgtable);
  4338. iounmap(h->vaddr);
  4339. pci_free_consistent(h->pdev, h->nr_cmds * sizeof(CommandList_struct),
  4340. h->cmd_pool, h->cmd_pool_dhandle);
  4341. pci_free_consistent(h->pdev, h->nr_cmds * sizeof(ErrorInfo_struct),
  4342. h->errinfo_pool, h->errinfo_pool_dhandle);
  4343. kfree(h->cmd_pool_bits);
  4344. /* Free up sg elements */
  4345. for (j = 0; j < h->nr_cmds; j++)
  4346. kfree(h->scatter_list[j]);
  4347. kfree(h->scatter_list);
  4348. cciss_free_sg_chain_blocks(h->cmd_sg_list, h->nr_cmds);
  4349. /*
  4350. * Deliberately omit pci_disable_device(): it does something nasty to
  4351. * Smart Array controllers that pci_enable_device does not undo
  4352. */
  4353. pci_release_regions(pdev);
  4354. pci_set_drvdata(pdev, NULL);
  4355. cciss_destroy_hba_sysfs_entry(h);
  4356. mutex_unlock(&h->busy_shutting_down);
  4357. free_hba(h);
  4358. }
  4359. static struct pci_driver cciss_pci_driver = {
  4360. .name = "cciss",
  4361. .probe = cciss_init_one,
  4362. .remove = __devexit_p(cciss_remove_one),
  4363. .id_table = cciss_pci_device_id, /* id_table */
  4364. .shutdown = cciss_shutdown,
  4365. };
  4366. /*
  4367. * This is it. Register the PCI driver information for the cards we control
  4368. * the OS will call our registered routines when it finds one of our cards.
  4369. */
  4370. static int __init cciss_init(void)
  4371. {
  4372. int err;
  4373. /*
  4374. * The hardware requires that commands are aligned on a 64-bit
  4375. * boundary. Given that we use pci_alloc_consistent() to allocate an
  4376. * array of them, the size must be a multiple of 8 bytes.
  4377. */
  4378. BUILD_BUG_ON(sizeof(CommandList_struct) % COMMANDLIST_ALIGNMENT);
  4379. printk(KERN_INFO DRIVER_NAME "\n");
  4380. err = bus_register(&cciss_bus_type);
  4381. if (err)
  4382. return err;
  4383. /* Start the scan thread */
  4384. cciss_scan_thread = kthread_run(scan_thread, NULL, "cciss_scan");
  4385. if (IS_ERR(cciss_scan_thread)) {
  4386. err = PTR_ERR(cciss_scan_thread);
  4387. goto err_bus_unregister;
  4388. }
  4389. /* Register for our PCI devices */
  4390. err = pci_register_driver(&cciss_pci_driver);
  4391. if (err)
  4392. goto err_thread_stop;
  4393. return err;
  4394. err_thread_stop:
  4395. kthread_stop(cciss_scan_thread);
  4396. err_bus_unregister:
  4397. bus_unregister(&cciss_bus_type);
  4398. return err;
  4399. }
  4400. static void __exit cciss_cleanup(void)
  4401. {
  4402. int i;
  4403. pci_unregister_driver(&cciss_pci_driver);
  4404. /* double check that all controller entrys have been removed */
  4405. for (i = 0; i < MAX_CTLR; i++) {
  4406. if (hba[i] != NULL) {
  4407. dev_warn(&hba[i]->pdev->dev,
  4408. "had to remove controller\n");
  4409. cciss_remove_one(hba[i]->pdev);
  4410. }
  4411. }
  4412. kthread_stop(cciss_scan_thread);
  4413. remove_proc_entry("driver/cciss", NULL);
  4414. bus_unregister(&cciss_bus_type);
  4415. }
  4416. module_init(cciss_init);
  4417. module_exit(cciss_cleanup);