ide-tape.c 162 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923
  1. /*
  2. * linux/drivers/ide/ide-tape.c Version 1.19 Nov, 2003
  3. *
  4. * Copyright (C) 1995 - 1999 Gadi Oxman <gadio@netvision.net.il>
  5. *
  6. * $Header$
  7. *
  8. * This driver was constructed as a student project in the software laboratory
  9. * of the faculty of electrical engineering in the Technion - Israel's
  10. * Institute Of Technology, with the guide of Avner Lottem and Dr. Ilana David.
  11. *
  12. * It is hereby placed under the terms of the GNU general public license.
  13. * (See linux/COPYING).
  14. */
  15. /*
  16. * IDE ATAPI streaming tape driver.
  17. *
  18. * This driver is a part of the Linux ide driver and works in co-operation
  19. * with linux/drivers/block/ide.c.
  20. *
  21. * The driver, in co-operation with ide.c, basically traverses the
  22. * request-list for the block device interface. The character device
  23. * interface, on the other hand, creates new requests, adds them
  24. * to the request-list of the block device, and waits for their completion.
  25. *
  26. * Pipelined operation mode is now supported on both reads and writes.
  27. *
  28. * The block device major and minor numbers are determined from the
  29. * tape's relative position in the ide interfaces, as explained in ide.c.
  30. *
  31. * The character device interface consists of the following devices:
  32. *
  33. * ht0 major 37, minor 0 first IDE tape, rewind on close.
  34. * ht1 major 37, minor 1 second IDE tape, rewind on close.
  35. * ...
  36. * nht0 major 37, minor 128 first IDE tape, no rewind on close.
  37. * nht1 major 37, minor 129 second IDE tape, no rewind on close.
  38. * ...
  39. *
  40. * Run linux/scripts/MAKEDEV.ide to create the above entries.
  41. *
  42. * The general magnetic tape commands compatible interface, as defined by
  43. * include/linux/mtio.h, is accessible through the character device.
  44. *
  45. * General ide driver configuration options, such as the interrupt-unmask
  46. * flag, can be configured by issuing an ioctl to the block device interface,
  47. * as any other ide device.
  48. *
  49. * Our own ide-tape ioctl's can be issued to either the block device or
  50. * the character device interface.
  51. *
  52. * Maximal throughput with minimal bus load will usually be achieved in the
  53. * following scenario:
  54. *
  55. * 1. ide-tape is operating in the pipelined operation mode.
  56. * 2. No buffering is performed by the user backup program.
  57. *
  58. * Testing was done with a 2 GB CONNER CTMA 4000 IDE ATAPI Streaming Tape Drive.
  59. *
  60. * Ver 0.1 Nov 1 95 Pre-working code :-)
  61. * Ver 0.2 Nov 23 95 A short backup (few megabytes) and restore procedure
  62. * was successful ! (Using tar cvf ... on the block
  63. * device interface).
  64. * A longer backup resulted in major swapping, bad
  65. * overall Linux performance and eventually failed as
  66. * we received non serial read-ahead requests from the
  67. * buffer cache.
  68. * Ver 0.3 Nov 28 95 Long backups are now possible, thanks to the
  69. * character device interface. Linux's responsiveness
  70. * and performance doesn't seem to be much affected
  71. * from the background backup procedure.
  72. * Some general mtio.h magnetic tape operations are
  73. * now supported by our character device. As a result,
  74. * popular tape utilities are starting to work with
  75. * ide tapes :-)
  76. * The following configurations were tested:
  77. * 1. An IDE ATAPI TAPE shares the same interface
  78. * and irq with an IDE ATAPI CDROM.
  79. * 2. An IDE ATAPI TAPE shares the same interface
  80. * and irq with a normal IDE disk.
  81. * Both configurations seemed to work just fine !
  82. * However, to be on the safe side, it is meanwhile
  83. * recommended to give the IDE TAPE its own interface
  84. * and irq.
  85. * The one thing which needs to be done here is to
  86. * add a "request postpone" feature to ide.c,
  87. * so that we won't have to wait for the tape to finish
  88. * performing a long media access (DSC) request (such
  89. * as a rewind) before we can access the other device
  90. * on the same interface. This effect doesn't disturb
  91. * normal operation most of the time because read/write
  92. * requests are relatively fast, and once we are
  93. * performing one tape r/w request, a lot of requests
  94. * from the other device can be queued and ide.c will
  95. * service all of them after this single tape request.
  96. * Ver 1.0 Dec 11 95 Integrated into Linux 1.3.46 development tree.
  97. * On each read / write request, we now ask the drive
  98. * if we can transfer a constant number of bytes
  99. * (a parameter of the drive) only to its buffers,
  100. * without causing actual media access. If we can't,
  101. * we just wait until we can by polling the DSC bit.
  102. * This ensures that while we are not transferring
  103. * more bytes than the constant referred to above, the
  104. * interrupt latency will not become too high and
  105. * we won't cause an interrupt timeout, as happened
  106. * occasionally in the previous version.
  107. * While polling for DSC, the current request is
  108. * postponed and ide.c is free to handle requests from
  109. * the other device. This is handled transparently to
  110. * ide.c. The hwgroup locking method which was used
  111. * in the previous version was removed.
  112. * Use of new general features which are provided by
  113. * ide.c for use with atapi devices.
  114. * (Programming done by Mark Lord)
  115. * Few potential bug fixes (Again, suggested by Mark)
  116. * Single character device data transfers are now
  117. * not limited in size, as they were before.
  118. * We are asking the tape about its recommended
  119. * transfer unit and send a larger data transfer
  120. * as several transfers of the above size.
  121. * For best results, use an integral number of this
  122. * basic unit (which is shown during driver
  123. * initialization). I will soon add an ioctl to get
  124. * this important parameter.
  125. * Our data transfer buffer is allocated on startup,
  126. * rather than before each data transfer. This should
  127. * ensure that we will indeed have a data buffer.
  128. * Ver 1.1 Dec 14 95 Fixed random problems which occurred when the tape
  129. * shared an interface with another device.
  130. * (poll_for_dsc was a complete mess).
  131. * Removed some old (non-active) code which had
  132. * to do with supporting buffer cache originated
  133. * requests.
  134. * The block device interface can now be opened, so
  135. * that general ide driver features like the unmask
  136. * interrupts flag can be selected with an ioctl.
  137. * This is the only use of the block device interface.
  138. * New fast pipelined operation mode (currently only on
  139. * writes). When using the pipelined mode, the
  140. * throughput can potentially reach the maximum
  141. * tape supported throughput, regardless of the
  142. * user backup program. On my tape drive, it sometimes
  143. * boosted performance by a factor of 2. Pipelined
  144. * mode is enabled by default, but since it has a few
  145. * downfalls as well, you may want to disable it.
  146. * A short explanation of the pipelined operation mode
  147. * is available below.
  148. * Ver 1.2 Jan 1 96 Eliminated pipelined mode race condition.
  149. * Added pipeline read mode. As a result, restores
  150. * are now as fast as backups.
  151. * Optimized shared interface behavior. The new behavior
  152. * typically results in better IDE bus efficiency and
  153. * higher tape throughput.
  154. * Pre-calculation of the expected read/write request
  155. * service time, based on the tape's parameters. In
  156. * the pipelined operation mode, this allows us to
  157. * adjust our polling frequency to a much lower value,
  158. * and thus to dramatically reduce our load on Linux,
  159. * without any decrease in performance.
  160. * Implemented additional mtio.h operations.
  161. * The recommended user block size is returned by
  162. * the MTIOCGET ioctl.
  163. * Additional minor changes.
  164. * Ver 1.3 Feb 9 96 Fixed pipelined read mode bug which prevented the
  165. * use of some block sizes during a restore procedure.
  166. * The character device interface will now present a
  167. * continuous view of the media - any mix of block sizes
  168. * during a backup/restore procedure is supported. The
  169. * driver will buffer the requests internally and
  170. * convert them to the tape's recommended transfer
  171. * unit, making performance almost independent of the
  172. * chosen user block size.
  173. * Some improvements in error recovery.
  174. * By cooperating with ide-dma.c, bus mastering DMA can
  175. * now sometimes be used with IDE tape drives as well.
  176. * Bus mastering DMA has the potential to dramatically
  177. * reduce the CPU's overhead when accessing the device,
  178. * and can be enabled by using hdparm -d1 on the tape's
  179. * block device interface. For more info, read the
  180. * comments in ide-dma.c.
  181. * Ver 1.4 Mar 13 96 Fixed serialize support.
  182. * Ver 1.5 Apr 12 96 Fixed shared interface operation, broken in 1.3.85.
  183. * Fixed pipelined read mode inefficiency.
  184. * Fixed nasty null dereferencing bug.
  185. * Ver 1.6 Aug 16 96 Fixed FPU usage in the driver.
  186. * Fixed end of media bug.
  187. * Ver 1.7 Sep 10 96 Minor changes for the CONNER CTT8000-A model.
  188. * Ver 1.8 Sep 26 96 Attempt to find a better balance between good
  189. * interactive response and high system throughput.
  190. * Ver 1.9 Nov 5 96 Automatically cross encountered filemarks rather
  191. * than requiring an explicit FSF command.
  192. * Abort pending requests at end of media.
  193. * MTTELL was sometimes returning incorrect results.
  194. * Return the real block size in the MTIOCGET ioctl.
  195. * Some error recovery bug fixes.
  196. * Ver 1.10 Nov 5 96 Major reorganization.
  197. * Reduced CPU overhead a bit by eliminating internal
  198. * bounce buffers.
  199. * Added module support.
  200. * Added multiple tape drives support.
  201. * Added partition support.
  202. * Rewrote DSC handling.
  203. * Some portability fixes.
  204. * Removed ide-tape.h.
  205. * Additional minor changes.
  206. * Ver 1.11 Dec 2 96 Bug fix in previous DSC timeout handling.
  207. * Use ide_stall_queue() for DSC overlap.
  208. * Use the maximum speed rather than the current speed
  209. * to compute the request service time.
  210. * Ver 1.12 Dec 7 97 Fix random memory overwriting and/or last block data
  211. * corruption, which could occur if the total number
  212. * of bytes written to the tape was not an integral
  213. * number of tape blocks.
  214. * Add support for INTERRUPT DRQ devices.
  215. * Ver 1.13 Jan 2 98 Add "speed == 0" work-around for HP COLORADO 5GB
  216. * Ver 1.14 Dec 30 98 Partial fixes for the Sony/AIWA tape drives.
  217. * Replace cli()/sti() with hwgroup spinlocks.
  218. * Ver 1.15 Mar 25 99 Fix SMP race condition by replacing hwgroup
  219. * spinlock with private per-tape spinlock.
  220. * Ver 1.16 Sep 1 99 Add OnStream tape support.
  221. * Abort read pipeline on EOD.
  222. * Wait for the tape to become ready in case it returns
  223. * "in the process of becoming ready" on open().
  224. * Fix zero padding of the last written block in
  225. * case the tape block size is larger than PAGE_SIZE.
  226. * Decrease the default disconnection time to tn.
  227. * Ver 1.16e Oct 3 99 Minor fixes.
  228. * Ver 1.16e1 Oct 13 99 Patches by Arnold Niessen,
  229. * niessen@iae.nl / arnold.niessen@philips.com
  230. * GO-1) Undefined code in idetape_read_position
  231. * according to Gadi's email
  232. * AJN-1) Minor fix asc == 11 should be asc == 0x11
  233. * in idetape_issue_packet_command (did effect
  234. * debugging output only)
  235. * AJN-2) Added more debugging output, and
  236. * added ide-tape: where missing. I would also
  237. * like to add tape->name where possible
  238. * AJN-3) Added different debug_level's
  239. * via /proc/ide/hdc/settings
  240. * "debug_level" determines amount of debugging output;
  241. * can be changed using /proc/ide/hdx/settings
  242. * 0 : almost no debugging output
  243. * 1 : 0+output errors only
  244. * 2 : 1+output all sensekey/asc
  245. * 3 : 2+follow all chrdev related procedures
  246. * 4 : 3+follow all procedures
  247. * 5 : 4+include pc_stack rq_stack info
  248. * 6 : 5+USE_COUNT updates
  249. * AJN-4) Fixed timeout for retension in idetape_queue_pc_tail
  250. * from 5 to 10 minutes
  251. * AJN-5) Changed maximum number of blocks to skip when
  252. * reading tapes with multiple consecutive write
  253. * errors from 100 to 1000 in idetape_get_logical_blk
  254. * Proposed changes to code:
  255. * 1) output "logical_blk_num" via /proc
  256. * 2) output "current_operation" via /proc
  257. * 3) Either solve or document the fact that `mt rewind' is
  258. * required after reading from /dev/nhtx to be
  259. * able to rmmod the idetape module;
  260. * Also, sometimes an application finishes but the
  261. * device remains `busy' for some time. Same cause ?
  262. * Proposed changes to release-notes:
  263. * 4) write a simple `quickstart' section in the
  264. * release notes; I volunteer if you don't want to
  265. * 5) include a pointer to video4linux in the doc
  266. * to stimulate video applications
  267. * 6) release notes lines 331 and 362: explain what happens
  268. * if the application data rate is higher than 1100 KB/s;
  269. * similar approach to lower-than-500 kB/s ?
  270. * 7) 6.6 Comparison; wouldn't it be better to allow different
  271. * strategies for read and write ?
  272. * Wouldn't it be better to control the tape buffer
  273. * contents instead of the bandwidth ?
  274. * 8) line 536: replace will by would (if I understand
  275. * this section correctly, a hypothetical and unwanted situation
  276. * is being described)
  277. * Ver 1.16f Dec 15 99 Change place of the secondary OnStream header frames.
  278. * Ver 1.17 Nov 2000 / Jan 2001 Marcel Mol, marcel@mesa.nl
  279. * - Add idetape_onstream_mode_sense_tape_parameter_page
  280. * function to get tape capacity in frames: tape->capacity.
  281. * - Add support for DI-50 drives( or any DI- drive).
  282. * - 'workaround' for read error/blank block around block 3000.
  283. * - Implement Early warning for end of media for Onstream.
  284. * - Cosmetic code changes for readability.
  285. * - Idetape_position_tape should not use SKIP bit during
  286. * Onstream read recovery.
  287. * - Add capacity, logical_blk_num and first/last_frame_position
  288. * to /proc/ide/hd?/settings.
  289. * - Module use count was gone in the Linux 2.4 driver.
  290. * Ver 1.17a Apr 2001 Willem Riede osst@riede.org
  291. * - Get drive's actual block size from mode sense block descriptor
  292. * - Limit size of pipeline
  293. * Ver 1.17b Oct 2002 Alan Stern <stern@rowland.harvard.edu>
  294. * Changed IDETAPE_MIN_PIPELINE_STAGES to 1 and actually used
  295. * it in the code!
  296. * Actually removed aborted stages in idetape_abort_pipeline
  297. * instead of just changing the command code.
  298. * Made the transfer byte count for Request Sense equal to the
  299. * actual length of the data transfer.
  300. * Changed handling of partial data transfers: they do not
  301. * cause DMA errors.
  302. * Moved initiation of DMA transfers to the correct place.
  303. * Removed reference to unallocated memory.
  304. * Made __idetape_discard_read_pipeline return the number of
  305. * sectors skipped, not the number of stages.
  306. * Replaced errant kfree() calls with __idetape_kfree_stage().
  307. * Fixed off-by-one error in testing the pipeline length.
  308. * Fixed handling of filemarks in the read pipeline.
  309. * Small code optimization for MTBSF and MTBSFM ioctls.
  310. * Don't try to unlock the door during device close if is
  311. * already unlocked!
  312. * Cosmetic fixes to miscellaneous debugging output messages.
  313. * Set the minimum /proc/ide/hd?/settings values for "pipeline",
  314. * "pipeline_min", and "pipeline_max" to 1.
  315. *
  316. * Here are some words from the first releases of hd.c, which are quoted
  317. * in ide.c and apply here as well:
  318. *
  319. * | Special care is recommended. Have Fun!
  320. *
  321. */
  322. /*
  323. * An overview of the pipelined operation mode.
  324. *
  325. * In the pipelined write mode, we will usually just add requests to our
  326. * pipeline and return immediately, before we even start to service them. The
  327. * user program will then have enough time to prepare the next request while
  328. * we are still busy servicing previous requests. In the pipelined read mode,
  329. * the situation is similar - we add read-ahead requests into the pipeline,
  330. * before the user even requested them.
  331. *
  332. * The pipeline can be viewed as a "safety net" which will be activated when
  333. * the system load is high and prevents the user backup program from keeping up
  334. * with the current tape speed. At this point, the pipeline will get
  335. * shorter and shorter but the tape will still be streaming at the same speed.
  336. * Assuming we have enough pipeline stages, the system load will hopefully
  337. * decrease before the pipeline is completely empty, and the backup program
  338. * will be able to "catch up" and refill the pipeline again.
  339. *
  340. * When using the pipelined mode, it would be best to disable any type of
  341. * buffering done by the user program, as ide-tape already provides all the
  342. * benefits in the kernel, where it can be done in a more efficient way.
  343. * As we will usually not block the user program on a request, the most
  344. * efficient user code will then be a simple read-write-read-... cycle.
  345. * Any additional logic will usually just slow down the backup process.
  346. *
  347. * Using the pipelined mode, I get a constant over 400 KBps throughput,
  348. * which seems to be the maximum throughput supported by my tape.
  349. *
  350. * However, there are some downfalls:
  351. *
  352. * 1. We use memory (for data buffers) in proportional to the number
  353. * of pipeline stages (each stage is about 26 KB with my tape).
  354. * 2. In the pipelined write mode, we cheat and postpone error codes
  355. * to the user task. In read mode, the actual tape position
  356. * will be a bit further than the last requested block.
  357. *
  358. * Concerning (1):
  359. *
  360. * 1. We allocate stages dynamically only when we need them. When
  361. * we don't need them, we don't consume additional memory. In
  362. * case we can't allocate stages, we just manage without them
  363. * (at the expense of decreased throughput) so when Linux is
  364. * tight in memory, we will not pose additional difficulties.
  365. *
  366. * 2. The maximum number of stages (which is, in fact, the maximum
  367. * amount of memory) which we allocate is limited by the compile
  368. * time parameter IDETAPE_MAX_PIPELINE_STAGES.
  369. *
  370. * 3. The maximum number of stages is a controlled parameter - We
  371. * don't start from the user defined maximum number of stages
  372. * but from the lower IDETAPE_MIN_PIPELINE_STAGES (again, we
  373. * will not even allocate this amount of stages if the user
  374. * program can't handle the speed). We then implement a feedback
  375. * loop which checks if the pipeline is empty, and if it is, we
  376. * increase the maximum number of stages as necessary until we
  377. * reach the optimum value which just manages to keep the tape
  378. * busy with minimum allocated memory or until we reach
  379. * IDETAPE_MAX_PIPELINE_STAGES.
  380. *
  381. * Concerning (2):
  382. *
  383. * In pipelined write mode, ide-tape can not return accurate error codes
  384. * to the user program since we usually just add the request to the
  385. * pipeline without waiting for it to be serviced. In case an error
  386. * occurs, I will report it on the next user request.
  387. *
  388. * In the pipelined read mode, subsequent read requests or forward
  389. * filemark spacing will perform correctly, as we preserve all blocks
  390. * and filemarks which we encountered during our excess read-ahead.
  391. *
  392. * For accurate tape positioning and error reporting, disabling
  393. * pipelined mode might be the best option.
  394. *
  395. * You can enable/disable/tune the pipelined operation mode by adjusting
  396. * the compile time parameters below.
  397. */
  398. /*
  399. * Possible improvements.
  400. *
  401. * 1. Support for the ATAPI overlap protocol.
  402. *
  403. * In order to maximize bus throughput, we currently use the DSC
  404. * overlap method which enables ide.c to service requests from the
  405. * other device while the tape is busy executing a command. The
  406. * DSC overlap method involves polling the tape's status register
  407. * for the DSC bit, and servicing the other device while the tape
  408. * isn't ready.
  409. *
  410. * In the current QIC development standard (December 1995),
  411. * it is recommended that new tape drives will *in addition*
  412. * implement the ATAPI overlap protocol, which is used for the
  413. * same purpose - efficient use of the IDE bus, but is interrupt
  414. * driven and thus has much less CPU overhead.
  415. *
  416. * ATAPI overlap is likely to be supported in most new ATAPI
  417. * devices, including new ATAPI cdroms, and thus provides us
  418. * a method by which we can achieve higher throughput when
  419. * sharing a (fast) ATA-2 disk with any (slow) new ATAPI device.
  420. */
  421. #define IDETAPE_VERSION "1.19"
  422. #include <linux/module.h>
  423. #include <linux/types.h>
  424. #include <linux/string.h>
  425. #include <linux/kernel.h>
  426. #include <linux/delay.h>
  427. #include <linux/timer.h>
  428. #include <linux/mm.h>
  429. #include <linux/interrupt.h>
  430. #include <linux/jiffies.h>
  431. #include <linux/major.h>
  432. #include <linux/errno.h>
  433. #include <linux/genhd.h>
  434. #include <linux/slab.h>
  435. #include <linux/pci.h>
  436. #include <linux/ide.h>
  437. #include <linux/smp_lock.h>
  438. #include <linux/completion.h>
  439. #include <linux/bitops.h>
  440. #include <linux/mutex.h>
  441. #include <asm/byteorder.h>
  442. #include <asm/irq.h>
  443. #include <asm/uaccess.h>
  444. #include <asm/io.h>
  445. #include <asm/unaligned.h>
  446. /*
  447. * partition
  448. */
  449. typedef struct os_partition_s {
  450. __u8 partition_num;
  451. __u8 par_desc_ver;
  452. __u16 wrt_pass_cntr;
  453. __u32 first_frame_addr;
  454. __u32 last_frame_addr;
  455. __u32 eod_frame_addr;
  456. } os_partition_t;
  457. /*
  458. * DAT entry
  459. */
  460. typedef struct os_dat_entry_s {
  461. __u32 blk_sz;
  462. __u16 blk_cnt;
  463. __u8 flags;
  464. __u8 reserved;
  465. } os_dat_entry_t;
  466. /*
  467. * DAT
  468. */
  469. #define OS_DAT_FLAGS_DATA (0xc)
  470. #define OS_DAT_FLAGS_MARK (0x1)
  471. typedef struct os_dat_s {
  472. __u8 dat_sz;
  473. __u8 reserved1;
  474. __u8 entry_cnt;
  475. __u8 reserved3;
  476. os_dat_entry_t dat_list[16];
  477. } os_dat_t;
  478. #include <linux/mtio.h>
  479. /**************************** Tunable parameters *****************************/
  480. /*
  481. * Pipelined mode parameters.
  482. *
  483. * We try to use the minimum number of stages which is enough to
  484. * keep the tape constantly streaming. To accomplish that, we implement
  485. * a feedback loop around the maximum number of stages:
  486. *
  487. * We start from MIN maximum stages (we will not even use MIN stages
  488. * if we don't need them), increment it by RATE*(MAX-MIN)
  489. * whenever we sense that the pipeline is empty, until we reach
  490. * the optimum value or until we reach MAX.
  491. *
  492. * Setting the following parameter to 0 is illegal: the pipelined mode
  493. * cannot be disabled (calculate_speeds() divides by tape->max_stages.)
  494. */
  495. #define IDETAPE_MIN_PIPELINE_STAGES 1
  496. #define IDETAPE_MAX_PIPELINE_STAGES 400
  497. #define IDETAPE_INCREASE_STAGES_RATE 20
  498. /*
  499. * The following are used to debug the driver:
  500. *
  501. * Setting IDETAPE_DEBUG_INFO to 1 will report device capabilities.
  502. * Setting IDETAPE_DEBUG_LOG to 1 will log driver flow control.
  503. * Setting IDETAPE_DEBUG_BUGS to 1 will enable self-sanity checks in
  504. * some places.
  505. *
  506. * Setting them to 0 will restore normal operation mode:
  507. *
  508. * 1. Disable logging normal successful operations.
  509. * 2. Disable self-sanity checks.
  510. * 3. Errors will still be logged, of course.
  511. *
  512. * All the #if DEBUG code will be removed some day, when the driver
  513. * is verified to be stable enough. This will make it much more
  514. * esthetic.
  515. */
  516. #define IDETAPE_DEBUG_INFO 0
  517. #define IDETAPE_DEBUG_LOG 0
  518. #define IDETAPE_DEBUG_BUGS 1
  519. /*
  520. * After each failed packet command we issue a request sense command
  521. * and retry the packet command IDETAPE_MAX_PC_RETRIES times.
  522. *
  523. * Setting IDETAPE_MAX_PC_RETRIES to 0 will disable retries.
  524. */
  525. #define IDETAPE_MAX_PC_RETRIES 3
  526. /*
  527. * With each packet command, we allocate a buffer of
  528. * IDETAPE_PC_BUFFER_SIZE bytes. This is used for several packet
  529. * commands (Not for READ/WRITE commands).
  530. */
  531. #define IDETAPE_PC_BUFFER_SIZE 256
  532. /*
  533. * In various places in the driver, we need to allocate storage
  534. * for packet commands and requests, which will remain valid while
  535. * we leave the driver to wait for an interrupt or a timeout event.
  536. */
  537. #define IDETAPE_PC_STACK (10 + IDETAPE_MAX_PC_RETRIES)
  538. /*
  539. * Some drives (for example, Seagate STT3401A Travan) require a very long
  540. * timeout, because they don't return an interrupt or clear their busy bit
  541. * until after the command completes (even retension commands).
  542. */
  543. #define IDETAPE_WAIT_CMD (900*HZ)
  544. /*
  545. * The following parameter is used to select the point in the internal
  546. * tape fifo in which we will start to refill the buffer. Decreasing
  547. * the following parameter will improve the system's latency and
  548. * interactive response, while using a high value might improve system
  549. * throughput.
  550. */
  551. #define IDETAPE_FIFO_THRESHOLD 2
  552. /*
  553. * DSC polling parameters.
  554. *
  555. * Polling for DSC (a single bit in the status register) is a very
  556. * important function in ide-tape. There are two cases in which we
  557. * poll for DSC:
  558. *
  559. * 1. Before a read/write packet command, to ensure that we
  560. * can transfer data from/to the tape's data buffers, without
  561. * causing an actual media access. In case the tape is not
  562. * ready yet, we take out our request from the device
  563. * request queue, so that ide.c will service requests from
  564. * the other device on the same interface meanwhile.
  565. *
  566. * 2. After the successful initialization of a "media access
  567. * packet command", which is a command which can take a long
  568. * time to complete (it can be several seconds or even an hour).
  569. *
  570. * Again, we postpone our request in the middle to free the bus
  571. * for the other device. The polling frequency here should be
  572. * lower than the read/write frequency since those media access
  573. * commands are slow. We start from a "fast" frequency -
  574. * IDETAPE_DSC_MA_FAST (one second), and if we don't receive DSC
  575. * after IDETAPE_DSC_MA_THRESHOLD (5 minutes), we switch it to a
  576. * lower frequency - IDETAPE_DSC_MA_SLOW (1 minute).
  577. *
  578. * We also set a timeout for the timer, in case something goes wrong.
  579. * The timeout should be longer then the maximum execution time of a
  580. * tape operation.
  581. */
  582. /*
  583. * DSC timings.
  584. */
  585. #define IDETAPE_DSC_RW_MIN 5*HZ/100 /* 50 msec */
  586. #define IDETAPE_DSC_RW_MAX 40*HZ/100 /* 400 msec */
  587. #define IDETAPE_DSC_RW_TIMEOUT 2*60*HZ /* 2 minutes */
  588. #define IDETAPE_DSC_MA_FAST 2*HZ /* 2 seconds */
  589. #define IDETAPE_DSC_MA_THRESHOLD 5*60*HZ /* 5 minutes */
  590. #define IDETAPE_DSC_MA_SLOW 30*HZ /* 30 seconds */
  591. #define IDETAPE_DSC_MA_TIMEOUT 2*60*60*HZ /* 2 hours */
  592. /*************************** End of tunable parameters ***********************/
  593. /*
  594. * Read/Write error simulation
  595. */
  596. #define SIMULATE_ERRORS 0
  597. /*
  598. * For general magnetic tape device compatibility.
  599. */
  600. typedef enum {
  601. idetape_direction_none,
  602. idetape_direction_read,
  603. idetape_direction_write
  604. } idetape_chrdev_direction_t;
  605. struct idetape_bh {
  606. u32 b_size;
  607. atomic_t b_count;
  608. struct idetape_bh *b_reqnext;
  609. char *b_data;
  610. };
  611. /*
  612. * Our view of a packet command.
  613. */
  614. typedef struct idetape_packet_command_s {
  615. u8 c[12]; /* Actual packet bytes */
  616. int retries; /* On each retry, we increment retries */
  617. int error; /* Error code */
  618. int request_transfer; /* Bytes to transfer */
  619. int actually_transferred; /* Bytes actually transferred */
  620. int buffer_size; /* Size of our data buffer */
  621. struct idetape_bh *bh;
  622. char *b_data;
  623. int b_count;
  624. u8 *buffer; /* Data buffer */
  625. u8 *current_position; /* Pointer into the above buffer */
  626. ide_startstop_t (*callback) (ide_drive_t *); /* Called when this packet command is completed */
  627. u8 pc_buffer[IDETAPE_PC_BUFFER_SIZE]; /* Temporary buffer */
  628. unsigned long flags; /* Status/Action bit flags: long for set_bit */
  629. } idetape_pc_t;
  630. /*
  631. * Packet command flag bits.
  632. */
  633. /* Set when an error is considered normal - We won't retry */
  634. #define PC_ABORT 0
  635. /* 1 When polling for DSC on a media access command */
  636. #define PC_WAIT_FOR_DSC 1
  637. /* 1 when we prefer to use DMA if possible */
  638. #define PC_DMA_RECOMMENDED 2
  639. /* 1 while DMA in progress */
  640. #define PC_DMA_IN_PROGRESS 3
  641. /* 1 when encountered problem during DMA */
  642. #define PC_DMA_ERROR 4
  643. /* Data direction */
  644. #define PC_WRITING 5
  645. /*
  646. * Capabilities and Mechanical Status Page
  647. */
  648. typedef struct {
  649. unsigned page_code :6; /* Page code - Should be 0x2a */
  650. __u8 reserved0_6 :1;
  651. __u8 ps :1; /* parameters saveable */
  652. __u8 page_length; /* Page Length - Should be 0x12 */
  653. __u8 reserved2, reserved3;
  654. unsigned ro :1; /* Read Only Mode */
  655. unsigned reserved4_1234 :4;
  656. unsigned sprev :1; /* Supports SPACE in the reverse direction */
  657. unsigned reserved4_67 :2;
  658. unsigned reserved5_012 :3;
  659. unsigned efmt :1; /* Supports ERASE command initiated formatting */
  660. unsigned reserved5_4 :1;
  661. unsigned qfa :1; /* Supports the QFA two partition formats */
  662. unsigned reserved5_67 :2;
  663. unsigned lock :1; /* Supports locking the volume */
  664. unsigned locked :1; /* The volume is locked */
  665. unsigned prevent :1; /* The device defaults in the prevent state after power up */
  666. unsigned eject :1; /* The device can eject the volume */
  667. __u8 disconnect :1; /* The device can break request > ctl */
  668. __u8 reserved6_5 :1;
  669. unsigned ecc :1; /* Supports error correction */
  670. unsigned cmprs :1; /* Supports data compression */
  671. unsigned reserved7_0 :1;
  672. unsigned blk512 :1; /* Supports 512 bytes block size */
  673. unsigned blk1024 :1; /* Supports 1024 bytes block size */
  674. unsigned reserved7_3_6 :4;
  675. unsigned blk32768 :1; /* slowb - the device restricts the byte count for PIO */
  676. /* transfers for slow buffer memory ??? */
  677. /* Also 32768 block size in some cases */
  678. __u16 max_speed; /* Maximum speed supported in KBps */
  679. __u8 reserved10, reserved11;
  680. __u16 ctl; /* Continuous Transfer Limit in blocks */
  681. __u16 speed; /* Current Speed, in KBps */
  682. __u16 buffer_size; /* Buffer Size, in 512 bytes */
  683. __u8 reserved18, reserved19;
  684. } idetape_capabilities_page_t;
  685. /*
  686. * Block Size Page
  687. */
  688. typedef struct {
  689. unsigned page_code :6; /* Page code - Should be 0x30 */
  690. unsigned reserved1_6 :1;
  691. unsigned ps :1;
  692. __u8 page_length; /* Page Length - Should be 2 */
  693. __u8 reserved2;
  694. unsigned play32 :1;
  695. unsigned play32_5 :1;
  696. unsigned reserved2_23 :2;
  697. unsigned record32 :1;
  698. unsigned record32_5 :1;
  699. unsigned reserved2_6 :1;
  700. unsigned one :1;
  701. } idetape_block_size_page_t;
  702. /*
  703. * A pipeline stage.
  704. */
  705. typedef struct idetape_stage_s {
  706. struct request rq; /* The corresponding request */
  707. struct idetape_bh *bh; /* The data buffers */
  708. struct idetape_stage_s *next; /* Pointer to the next stage */
  709. } idetape_stage_t;
  710. /*
  711. * REQUEST SENSE packet command result - Data Format.
  712. */
  713. typedef struct {
  714. unsigned error_code :7; /* Current of deferred errors */
  715. unsigned valid :1; /* The information field conforms to QIC-157C */
  716. __u8 reserved1 :8; /* Segment Number - Reserved */
  717. unsigned sense_key :4; /* Sense Key */
  718. unsigned reserved2_4 :1; /* Reserved */
  719. unsigned ili :1; /* Incorrect Length Indicator */
  720. unsigned eom :1; /* End Of Medium */
  721. unsigned filemark :1; /* Filemark */
  722. __u32 information __attribute__ ((packed));
  723. __u8 asl; /* Additional sense length (n-7) */
  724. __u32 command_specific; /* Additional command specific information */
  725. __u8 asc; /* Additional Sense Code */
  726. __u8 ascq; /* Additional Sense Code Qualifier */
  727. __u8 replaceable_unit_code; /* Field Replaceable Unit Code */
  728. unsigned sk_specific1 :7; /* Sense Key Specific */
  729. unsigned sksv :1; /* Sense Key Specific information is valid */
  730. __u8 sk_specific2; /* Sense Key Specific */
  731. __u8 sk_specific3; /* Sense Key Specific */
  732. __u8 pad[2]; /* Padding to 20 bytes */
  733. } idetape_request_sense_result_t;
  734. /*
  735. * Most of our global data which we need to save even as we leave the
  736. * driver due to an interrupt or a timer event is stored in a variable
  737. * of type idetape_tape_t, defined below.
  738. */
  739. typedef struct ide_tape_obj {
  740. ide_drive_t *drive;
  741. ide_driver_t *driver;
  742. struct gendisk *disk;
  743. struct kref kref;
  744. /*
  745. * Since a typical character device operation requires more
  746. * than one packet command, we provide here enough memory
  747. * for the maximum of interconnected packet commands.
  748. * The packet commands are stored in the circular array pc_stack.
  749. * pc_stack_index points to the last used entry, and warps around
  750. * to the start when we get to the last array entry.
  751. *
  752. * pc points to the current processed packet command.
  753. *
  754. * failed_pc points to the last failed packet command, or contains
  755. * NULL if we do not need to retry any packet command. This is
  756. * required since an additional packet command is needed before the
  757. * retry, to get detailed information on what went wrong.
  758. */
  759. /* Current packet command */
  760. idetape_pc_t *pc;
  761. /* Last failed packet command */
  762. idetape_pc_t *failed_pc;
  763. /* Packet command stack */
  764. idetape_pc_t pc_stack[IDETAPE_PC_STACK];
  765. /* Next free packet command storage space */
  766. int pc_stack_index;
  767. struct request rq_stack[IDETAPE_PC_STACK];
  768. /* We implement a circular array */
  769. int rq_stack_index;
  770. /*
  771. * DSC polling variables.
  772. *
  773. * While polling for DSC we use postponed_rq to postpone the
  774. * current request so that ide.c will be able to service
  775. * pending requests on the other device. Note that at most
  776. * we will have only one DSC (usually data transfer) request
  777. * in the device request queue. Additional requests can be
  778. * queued in our internal pipeline, but they will be visible
  779. * to ide.c only one at a time.
  780. */
  781. struct request *postponed_rq;
  782. /* The time in which we started polling for DSC */
  783. unsigned long dsc_polling_start;
  784. /* Timer used to poll for dsc */
  785. struct timer_list dsc_timer;
  786. /* Read/Write dsc polling frequency */
  787. unsigned long best_dsc_rw_frequency;
  788. /* The current polling frequency */
  789. unsigned long dsc_polling_frequency;
  790. /* Maximum waiting time */
  791. unsigned long dsc_timeout;
  792. /*
  793. * Read position information
  794. */
  795. u8 partition;
  796. /* Current block */
  797. unsigned int first_frame_position;
  798. unsigned int last_frame_position;
  799. unsigned int blocks_in_buffer;
  800. /*
  801. * Last error information
  802. */
  803. u8 sense_key, asc, ascq;
  804. /*
  805. * Character device operation
  806. */
  807. unsigned int minor;
  808. /* device name */
  809. char name[4];
  810. /* Current character device data transfer direction */
  811. idetape_chrdev_direction_t chrdev_direction;
  812. /*
  813. * Device information
  814. */
  815. /* Usually 512 or 1024 bytes */
  816. unsigned short tape_block_size;
  817. int user_bs_factor;
  818. /* Copy of the tape's Capabilities and Mechanical Page */
  819. idetape_capabilities_page_t capabilities;
  820. /*
  821. * Active data transfer request parameters.
  822. *
  823. * At most, there is only one ide-tape originated data transfer
  824. * request in the device request queue. This allows ide.c to
  825. * easily service requests from the other device when we
  826. * postpone our active request. In the pipelined operation
  827. * mode, we use our internal pipeline structure to hold
  828. * more data requests.
  829. *
  830. * The data buffer size is chosen based on the tape's
  831. * recommendation.
  832. */
  833. /* Pointer to the request which is waiting in the device request queue */
  834. struct request *active_data_request;
  835. /* Data buffer size (chosen based on the tape's recommendation */
  836. int stage_size;
  837. idetape_stage_t *merge_stage;
  838. int merge_stage_size;
  839. struct idetape_bh *bh;
  840. char *b_data;
  841. int b_count;
  842. /*
  843. * Pipeline parameters.
  844. *
  845. * To accomplish non-pipelined mode, we simply set the following
  846. * variables to zero (or NULL, where appropriate).
  847. */
  848. /* Number of currently used stages */
  849. int nr_stages;
  850. /* Number of pending stages */
  851. int nr_pending_stages;
  852. /* We will not allocate more than this number of stages */
  853. int max_stages, min_pipeline, max_pipeline;
  854. /* The first stage which will be removed from the pipeline */
  855. idetape_stage_t *first_stage;
  856. /* The currently active stage */
  857. idetape_stage_t *active_stage;
  858. /* Will be serviced after the currently active request */
  859. idetape_stage_t *next_stage;
  860. /* New requests will be added to the pipeline here */
  861. idetape_stage_t *last_stage;
  862. /* Optional free stage which we can use */
  863. idetape_stage_t *cache_stage;
  864. int pages_per_stage;
  865. /* Wasted space in each stage */
  866. int excess_bh_size;
  867. /* Status/Action flags: long for set_bit */
  868. unsigned long flags;
  869. /* protects the ide-tape queue */
  870. spinlock_t spinlock;
  871. /*
  872. * Measures average tape speed
  873. */
  874. unsigned long avg_time;
  875. int avg_size;
  876. int avg_speed;
  877. /* last sense information */
  878. idetape_request_sense_result_t sense;
  879. char vendor_id[10];
  880. char product_id[18];
  881. char firmware_revision[6];
  882. int firmware_revision_num;
  883. /* the door is currently locked */
  884. int door_locked;
  885. /* the tape hardware is write protected */
  886. char drv_write_prot;
  887. /* the tape is write protected (hardware or opened as read-only) */
  888. char write_prot;
  889. /*
  890. * Limit the number of times a request can
  891. * be postponed, to avoid an infinite postpone
  892. * deadlock.
  893. */
  894. /* request postpone count limit */
  895. int postpone_cnt;
  896. /*
  897. * Measures number of frames:
  898. *
  899. * 1. written/read to/from the driver pipeline (pipeline_head).
  900. * 2. written/read to/from the tape buffers (idetape_bh).
  901. * 3. written/read by the tape to/from the media (tape_head).
  902. */
  903. int pipeline_head;
  904. int buffer_head;
  905. int tape_head;
  906. int last_tape_head;
  907. /*
  908. * Speed control at the tape buffers input/output
  909. */
  910. unsigned long insert_time;
  911. int insert_size;
  912. int insert_speed;
  913. int max_insert_speed;
  914. int measure_insert_time;
  915. /*
  916. * Measure tape still time, in milliseconds
  917. */
  918. unsigned long tape_still_time_begin;
  919. int tape_still_time;
  920. /*
  921. * Speed regulation negative feedback loop
  922. */
  923. int speed_control;
  924. int pipeline_head_speed;
  925. int controlled_pipeline_head_speed;
  926. int uncontrolled_pipeline_head_speed;
  927. int controlled_last_pipeline_head;
  928. int uncontrolled_last_pipeline_head;
  929. unsigned long uncontrolled_pipeline_head_time;
  930. unsigned long controlled_pipeline_head_time;
  931. int controlled_previous_pipeline_head;
  932. int uncontrolled_previous_pipeline_head;
  933. unsigned long controlled_previous_head_time;
  934. unsigned long uncontrolled_previous_head_time;
  935. int restart_speed_control_req;
  936. /*
  937. * Debug_level determines amount of debugging output;
  938. * can be changed using /proc/ide/hdx/settings
  939. * 0 : almost no debugging output
  940. * 1 : 0+output errors only
  941. * 2 : 1+output all sensekey/asc
  942. * 3 : 2+follow all chrdev related procedures
  943. * 4 : 3+follow all procedures
  944. * 5 : 4+include pc_stack rq_stack info
  945. * 6 : 5+USE_COUNT updates
  946. */
  947. int debug_level;
  948. } idetape_tape_t;
  949. static DEFINE_MUTEX(idetape_ref_mutex);
  950. static struct class *idetape_sysfs_class;
  951. #define to_ide_tape(obj) container_of(obj, struct ide_tape_obj, kref)
  952. #define ide_tape_g(disk) \
  953. container_of((disk)->private_data, struct ide_tape_obj, driver)
  954. static struct ide_tape_obj *ide_tape_get(struct gendisk *disk)
  955. {
  956. struct ide_tape_obj *tape = NULL;
  957. mutex_lock(&idetape_ref_mutex);
  958. tape = ide_tape_g(disk);
  959. if (tape)
  960. kref_get(&tape->kref);
  961. mutex_unlock(&idetape_ref_mutex);
  962. return tape;
  963. }
  964. static void ide_tape_release(struct kref *);
  965. static void ide_tape_put(struct ide_tape_obj *tape)
  966. {
  967. mutex_lock(&idetape_ref_mutex);
  968. kref_put(&tape->kref, ide_tape_release);
  969. mutex_unlock(&idetape_ref_mutex);
  970. }
  971. /*
  972. * Tape door status
  973. */
  974. #define DOOR_UNLOCKED 0
  975. #define DOOR_LOCKED 1
  976. #define DOOR_EXPLICITLY_LOCKED 2
  977. /*
  978. * Tape flag bits values.
  979. */
  980. #define IDETAPE_IGNORE_DSC 0
  981. #define IDETAPE_ADDRESS_VALID 1 /* 0 When the tape position is unknown */
  982. #define IDETAPE_BUSY 2 /* Device already opened */
  983. #define IDETAPE_PIPELINE_ERROR 3 /* Error detected in a pipeline stage */
  984. #define IDETAPE_DETECT_BS 4 /* Attempt to auto-detect the current user block size */
  985. #define IDETAPE_FILEMARK 5 /* Currently on a filemark */
  986. #define IDETAPE_DRQ_INTERRUPT 6 /* DRQ interrupt device */
  987. #define IDETAPE_READ_ERROR 7
  988. #define IDETAPE_PIPELINE_ACTIVE 8 /* pipeline active */
  989. /* 0 = no tape is loaded, so we don't rewind after ejecting */
  990. #define IDETAPE_MEDIUM_PRESENT 9
  991. /*
  992. * Supported ATAPI tape drives packet commands
  993. */
  994. #define IDETAPE_TEST_UNIT_READY_CMD 0x00
  995. #define IDETAPE_REWIND_CMD 0x01
  996. #define IDETAPE_REQUEST_SENSE_CMD 0x03
  997. #define IDETAPE_READ_CMD 0x08
  998. #define IDETAPE_WRITE_CMD 0x0a
  999. #define IDETAPE_WRITE_FILEMARK_CMD 0x10
  1000. #define IDETAPE_SPACE_CMD 0x11
  1001. #define IDETAPE_INQUIRY_CMD 0x12
  1002. #define IDETAPE_ERASE_CMD 0x19
  1003. #define IDETAPE_MODE_SENSE_CMD 0x1a
  1004. #define IDETAPE_MODE_SELECT_CMD 0x15
  1005. #define IDETAPE_LOAD_UNLOAD_CMD 0x1b
  1006. #define IDETAPE_PREVENT_CMD 0x1e
  1007. #define IDETAPE_LOCATE_CMD 0x2b
  1008. #define IDETAPE_READ_POSITION_CMD 0x34
  1009. #define IDETAPE_READ_BUFFER_CMD 0x3c
  1010. #define IDETAPE_SET_SPEED_CMD 0xbb
  1011. /*
  1012. * Some defines for the READ BUFFER command
  1013. */
  1014. #define IDETAPE_RETRIEVE_FAULTY_BLOCK 6
  1015. /*
  1016. * Some defines for the SPACE command
  1017. */
  1018. #define IDETAPE_SPACE_OVER_FILEMARK 1
  1019. #define IDETAPE_SPACE_TO_EOD 3
  1020. /*
  1021. * Some defines for the LOAD UNLOAD command
  1022. */
  1023. #define IDETAPE_LU_LOAD_MASK 1
  1024. #define IDETAPE_LU_RETENSION_MASK 2
  1025. #define IDETAPE_LU_EOT_MASK 4
  1026. /*
  1027. * Special requests for our block device strategy routine.
  1028. *
  1029. * In order to service a character device command, we add special
  1030. * requests to the tail of our block device request queue and wait
  1031. * for their completion.
  1032. */
  1033. enum {
  1034. REQ_IDETAPE_PC1 = (1 << 0), /* packet command (first stage) */
  1035. REQ_IDETAPE_PC2 = (1 << 1), /* packet command (second stage) */
  1036. REQ_IDETAPE_READ = (1 << 2),
  1037. REQ_IDETAPE_WRITE = (1 << 3),
  1038. REQ_IDETAPE_READ_BUFFER = (1 << 4),
  1039. };
  1040. /*
  1041. * Error codes which are returned in rq->errors to the higher part
  1042. * of the driver.
  1043. */
  1044. #define IDETAPE_ERROR_GENERAL 101
  1045. #define IDETAPE_ERROR_FILEMARK 102
  1046. #define IDETAPE_ERROR_EOD 103
  1047. /*
  1048. * The following is used to format the general configuration word of
  1049. * the ATAPI IDENTIFY DEVICE command.
  1050. */
  1051. struct idetape_id_gcw {
  1052. unsigned packet_size :2; /* Packet Size */
  1053. unsigned reserved234 :3; /* Reserved */
  1054. unsigned drq_type :2; /* Command packet DRQ type */
  1055. unsigned removable :1; /* Removable media */
  1056. unsigned device_type :5; /* Device type */
  1057. unsigned reserved13 :1; /* Reserved */
  1058. unsigned protocol :2; /* Protocol type */
  1059. };
  1060. /*
  1061. * INQUIRY packet command - Data Format (From Table 6-8 of QIC-157C)
  1062. */
  1063. typedef struct {
  1064. unsigned device_type :5; /* Peripheral Device Type */
  1065. unsigned reserved0_765 :3; /* Peripheral Qualifier - Reserved */
  1066. unsigned reserved1_6t0 :7; /* Reserved */
  1067. unsigned rmb :1; /* Removable Medium Bit */
  1068. unsigned ansi_version :3; /* ANSI Version */
  1069. unsigned ecma_version :3; /* ECMA Version */
  1070. unsigned iso_version :2; /* ISO Version */
  1071. unsigned response_format :4; /* Response Data Format */
  1072. unsigned reserved3_45 :2; /* Reserved */
  1073. unsigned reserved3_6 :1; /* TrmIOP - Reserved */
  1074. unsigned reserved3_7 :1; /* AENC - Reserved */
  1075. __u8 additional_length; /* Additional Length (total_length-4) */
  1076. __u8 rsv5, rsv6, rsv7; /* Reserved */
  1077. __u8 vendor_id[8]; /* Vendor Identification */
  1078. __u8 product_id[16]; /* Product Identification */
  1079. __u8 revision_level[4]; /* Revision Level */
  1080. __u8 vendor_specific[20]; /* Vendor Specific - Optional */
  1081. __u8 reserved56t95[40]; /* Reserved - Optional */
  1082. /* Additional information may be returned */
  1083. } idetape_inquiry_result_t;
  1084. /*
  1085. * READ POSITION packet command - Data Format (From Table 6-57)
  1086. */
  1087. typedef struct {
  1088. unsigned reserved0_10 :2; /* Reserved */
  1089. unsigned bpu :1; /* Block Position Unknown */
  1090. unsigned reserved0_543 :3; /* Reserved */
  1091. unsigned eop :1; /* End Of Partition */
  1092. unsigned bop :1; /* Beginning Of Partition */
  1093. u8 partition; /* Partition Number */
  1094. u8 reserved2, reserved3; /* Reserved */
  1095. u32 first_block; /* First Block Location */
  1096. u32 last_block; /* Last Block Location (Optional) */
  1097. u8 reserved12; /* Reserved */
  1098. u8 blocks_in_buffer[3]; /* Blocks In Buffer - (Optional) */
  1099. u32 bytes_in_buffer; /* Bytes In Buffer (Optional) */
  1100. } idetape_read_position_result_t;
  1101. /*
  1102. * Follows structures which are related to the SELECT SENSE / MODE SENSE
  1103. * packet commands. Those packet commands are still not supported
  1104. * by ide-tape.
  1105. */
  1106. #define IDETAPE_BLOCK_DESCRIPTOR 0
  1107. #define IDETAPE_CAPABILITIES_PAGE 0x2a
  1108. #define IDETAPE_PARAMTR_PAGE 0x2b /* Onstream DI-x0 only */
  1109. #define IDETAPE_BLOCK_SIZE_PAGE 0x30
  1110. #define IDETAPE_BUFFER_FILLING_PAGE 0x33
  1111. /*
  1112. * Mode Parameter Header for the MODE SENSE packet command
  1113. */
  1114. typedef struct {
  1115. __u8 mode_data_length; /* Length of the following data transfer */
  1116. __u8 medium_type; /* Medium Type */
  1117. __u8 dsp; /* Device Specific Parameter */
  1118. __u8 bdl; /* Block Descriptor Length */
  1119. #if 0
  1120. /* data transfer page */
  1121. __u8 page_code :6;
  1122. __u8 reserved0_6 :1;
  1123. __u8 ps :1; /* parameters saveable */
  1124. __u8 page_length; /* page Length == 0x02 */
  1125. __u8 reserved2;
  1126. __u8 read32k :1; /* 32k blk size (data only) */
  1127. __u8 read32k5 :1; /* 32.5k blk size (data&AUX) */
  1128. __u8 reserved3_23 :2;
  1129. __u8 write32k :1; /* 32k blk size (data only) */
  1130. __u8 write32k5 :1; /* 32.5k blk size (data&AUX) */
  1131. __u8 reserved3_6 :1;
  1132. __u8 streaming :1; /* streaming mode enable */
  1133. #endif
  1134. } idetape_mode_parameter_header_t;
  1135. /*
  1136. * Mode Parameter Block Descriptor the MODE SENSE packet command
  1137. *
  1138. * Support for block descriptors is optional.
  1139. */
  1140. typedef struct {
  1141. __u8 density_code; /* Medium density code */
  1142. __u8 blocks[3]; /* Number of blocks */
  1143. __u8 reserved4; /* Reserved */
  1144. __u8 length[3]; /* Block Length */
  1145. } idetape_parameter_block_descriptor_t;
  1146. /*
  1147. * The Data Compression Page, as returned by the MODE SENSE packet command.
  1148. */
  1149. typedef struct {
  1150. unsigned page_code :6; /* Page Code - Should be 0xf */
  1151. unsigned reserved0 :1; /* Reserved */
  1152. unsigned ps :1;
  1153. __u8 page_length; /* Page Length - Should be 14 */
  1154. unsigned reserved2 :6; /* Reserved */
  1155. unsigned dcc :1; /* Data Compression Capable */
  1156. unsigned dce :1; /* Data Compression Enable */
  1157. unsigned reserved3 :5; /* Reserved */
  1158. unsigned red :2; /* Report Exception on Decompression */
  1159. unsigned dde :1; /* Data Decompression Enable */
  1160. __u32 ca; /* Compression Algorithm */
  1161. __u32 da; /* Decompression Algorithm */
  1162. __u8 reserved[4]; /* Reserved */
  1163. } idetape_data_compression_page_t;
  1164. /*
  1165. * The Medium Partition Page, as returned by the MODE SENSE packet command.
  1166. */
  1167. typedef struct {
  1168. unsigned page_code :6; /* Page Code - Should be 0x11 */
  1169. unsigned reserved1_6 :1; /* Reserved */
  1170. unsigned ps :1;
  1171. __u8 page_length; /* Page Length - Should be 6 */
  1172. __u8 map; /* Maximum Additional Partitions - Should be 0 */
  1173. __u8 apd; /* Additional Partitions Defined - Should be 0 */
  1174. unsigned reserved4_012 :3; /* Reserved */
  1175. unsigned psum :2; /* Should be 0 */
  1176. unsigned idp :1; /* Should be 0 */
  1177. unsigned sdp :1; /* Should be 0 */
  1178. unsigned fdp :1; /* Fixed Data Partitions */
  1179. __u8 mfr; /* Medium Format Recognition */
  1180. __u8 reserved[2]; /* Reserved */
  1181. } idetape_medium_partition_page_t;
  1182. /*
  1183. * Run time configurable parameters.
  1184. */
  1185. typedef struct {
  1186. int dsc_rw_frequency;
  1187. int dsc_media_access_frequency;
  1188. int nr_stages;
  1189. } idetape_config_t;
  1190. /*
  1191. * The variables below are used for the character device interface.
  1192. * Additional state variables are defined in our ide_drive_t structure.
  1193. */
  1194. static struct ide_tape_obj * idetape_devs[MAX_HWIFS * MAX_DRIVES];
  1195. #define ide_tape_f(file) ((file)->private_data)
  1196. static struct ide_tape_obj *ide_tape_chrdev_get(unsigned int i)
  1197. {
  1198. struct ide_tape_obj *tape = NULL;
  1199. mutex_lock(&idetape_ref_mutex);
  1200. tape = idetape_devs[i];
  1201. if (tape)
  1202. kref_get(&tape->kref);
  1203. mutex_unlock(&idetape_ref_mutex);
  1204. return tape;
  1205. }
  1206. /*
  1207. * Function declarations
  1208. *
  1209. */
  1210. static int idetape_chrdev_release (struct inode *inode, struct file *filp);
  1211. static void idetape_write_release (ide_drive_t *drive, unsigned int minor);
  1212. /*
  1213. * Too bad. The drive wants to send us data which we are not ready to accept.
  1214. * Just throw it away.
  1215. */
  1216. static void idetape_discard_data (ide_drive_t *drive, unsigned int bcount)
  1217. {
  1218. while (bcount--)
  1219. (void) HWIF(drive)->INB(IDE_DATA_REG);
  1220. }
  1221. static void idetape_input_buffers (ide_drive_t *drive, idetape_pc_t *pc, unsigned int bcount)
  1222. {
  1223. struct idetape_bh *bh = pc->bh;
  1224. int count;
  1225. while (bcount) {
  1226. #if IDETAPE_DEBUG_BUGS
  1227. if (bh == NULL) {
  1228. printk(KERN_ERR "ide-tape: bh == NULL in "
  1229. "idetape_input_buffers\n");
  1230. idetape_discard_data(drive, bcount);
  1231. return;
  1232. }
  1233. #endif /* IDETAPE_DEBUG_BUGS */
  1234. count = min((unsigned int)(bh->b_size - atomic_read(&bh->b_count)), bcount);
  1235. HWIF(drive)->atapi_input_bytes(drive, bh->b_data + atomic_read(&bh->b_count), count);
  1236. bcount -= count;
  1237. atomic_add(count, &bh->b_count);
  1238. if (atomic_read(&bh->b_count) == bh->b_size) {
  1239. bh = bh->b_reqnext;
  1240. if (bh)
  1241. atomic_set(&bh->b_count, 0);
  1242. }
  1243. }
  1244. pc->bh = bh;
  1245. }
  1246. static void idetape_output_buffers (ide_drive_t *drive, idetape_pc_t *pc, unsigned int bcount)
  1247. {
  1248. struct idetape_bh *bh = pc->bh;
  1249. int count;
  1250. while (bcount) {
  1251. #if IDETAPE_DEBUG_BUGS
  1252. if (bh == NULL) {
  1253. printk(KERN_ERR "ide-tape: bh == NULL in "
  1254. "idetape_output_buffers\n");
  1255. return;
  1256. }
  1257. #endif /* IDETAPE_DEBUG_BUGS */
  1258. count = min((unsigned int)pc->b_count, (unsigned int)bcount);
  1259. HWIF(drive)->atapi_output_bytes(drive, pc->b_data, count);
  1260. bcount -= count;
  1261. pc->b_data += count;
  1262. pc->b_count -= count;
  1263. if (!pc->b_count) {
  1264. pc->bh = bh = bh->b_reqnext;
  1265. if (bh) {
  1266. pc->b_data = bh->b_data;
  1267. pc->b_count = atomic_read(&bh->b_count);
  1268. }
  1269. }
  1270. }
  1271. }
  1272. static void idetape_update_buffers (idetape_pc_t *pc)
  1273. {
  1274. struct idetape_bh *bh = pc->bh;
  1275. int count;
  1276. unsigned int bcount = pc->actually_transferred;
  1277. if (test_bit(PC_WRITING, &pc->flags))
  1278. return;
  1279. while (bcount) {
  1280. #if IDETAPE_DEBUG_BUGS
  1281. if (bh == NULL) {
  1282. printk(KERN_ERR "ide-tape: bh == NULL in "
  1283. "idetape_update_buffers\n");
  1284. return;
  1285. }
  1286. #endif /* IDETAPE_DEBUG_BUGS */
  1287. count = min((unsigned int)bh->b_size, (unsigned int)bcount);
  1288. atomic_set(&bh->b_count, count);
  1289. if (atomic_read(&bh->b_count) == bh->b_size)
  1290. bh = bh->b_reqnext;
  1291. bcount -= count;
  1292. }
  1293. pc->bh = bh;
  1294. }
  1295. /*
  1296. * idetape_next_pc_storage returns a pointer to a place in which we can
  1297. * safely store a packet command, even though we intend to leave the
  1298. * driver. A storage space for a maximum of IDETAPE_PC_STACK packet
  1299. * commands is allocated at initialization time.
  1300. */
  1301. static idetape_pc_t *idetape_next_pc_storage (ide_drive_t *drive)
  1302. {
  1303. idetape_tape_t *tape = drive->driver_data;
  1304. #if IDETAPE_DEBUG_LOG
  1305. if (tape->debug_level >= 5)
  1306. printk(KERN_INFO "ide-tape: pc_stack_index=%d\n",
  1307. tape->pc_stack_index);
  1308. #endif /* IDETAPE_DEBUG_LOG */
  1309. if (tape->pc_stack_index == IDETAPE_PC_STACK)
  1310. tape->pc_stack_index=0;
  1311. return (&tape->pc_stack[tape->pc_stack_index++]);
  1312. }
  1313. /*
  1314. * idetape_next_rq_storage is used along with idetape_next_pc_storage.
  1315. * Since we queue packet commands in the request queue, we need to
  1316. * allocate a request, along with the allocation of a packet command.
  1317. */
  1318. /**************************************************************
  1319. * *
  1320. * This should get fixed to use kmalloc(.., GFP_ATOMIC) *
  1321. * followed later on by kfree(). -ml *
  1322. * *
  1323. **************************************************************/
  1324. static struct request *idetape_next_rq_storage (ide_drive_t *drive)
  1325. {
  1326. idetape_tape_t *tape = drive->driver_data;
  1327. #if IDETAPE_DEBUG_LOG
  1328. if (tape->debug_level >= 5)
  1329. printk(KERN_INFO "ide-tape: rq_stack_index=%d\n",
  1330. tape->rq_stack_index);
  1331. #endif /* IDETAPE_DEBUG_LOG */
  1332. if (tape->rq_stack_index == IDETAPE_PC_STACK)
  1333. tape->rq_stack_index=0;
  1334. return (&tape->rq_stack[tape->rq_stack_index++]);
  1335. }
  1336. /*
  1337. * idetape_init_pc initializes a packet command.
  1338. */
  1339. static void idetape_init_pc (idetape_pc_t *pc)
  1340. {
  1341. memset(pc->c, 0, 12);
  1342. pc->retries = 0;
  1343. pc->flags = 0;
  1344. pc->request_transfer = 0;
  1345. pc->buffer = pc->pc_buffer;
  1346. pc->buffer_size = IDETAPE_PC_BUFFER_SIZE;
  1347. pc->bh = NULL;
  1348. pc->b_data = NULL;
  1349. }
  1350. /*
  1351. * idetape_analyze_error is called on each failed packet command retry
  1352. * to analyze the request sense. We currently do not utilize this
  1353. * information.
  1354. */
  1355. static void idetape_analyze_error (ide_drive_t *drive, idetape_request_sense_result_t *result)
  1356. {
  1357. idetape_tape_t *tape = drive->driver_data;
  1358. idetape_pc_t *pc = tape->failed_pc;
  1359. tape->sense = *result;
  1360. tape->sense_key = result->sense_key;
  1361. tape->asc = result->asc;
  1362. tape->ascq = result->ascq;
  1363. #if IDETAPE_DEBUG_LOG
  1364. /*
  1365. * Without debugging, we only log an error if we decided to
  1366. * give up retrying.
  1367. */
  1368. if (tape->debug_level >= 1)
  1369. printk(KERN_INFO "ide-tape: pc = %x, sense key = %x, "
  1370. "asc = %x, ascq = %x\n",
  1371. pc->c[0], result->sense_key,
  1372. result->asc, result->ascq);
  1373. #endif /* IDETAPE_DEBUG_LOG */
  1374. /*
  1375. * Correct pc->actually_transferred by asking the tape.
  1376. */
  1377. if (test_bit(PC_DMA_ERROR, &pc->flags)) {
  1378. pc->actually_transferred = pc->request_transfer - tape->tape_block_size * ntohl(get_unaligned(&result->information));
  1379. idetape_update_buffers(pc);
  1380. }
  1381. /*
  1382. * If error was the result of a zero-length read or write command,
  1383. * with sense key=5, asc=0x22, ascq=0, let it slide. Some drives
  1384. * (i.e. Seagate STT3401A Travan) don't support 0-length read/writes.
  1385. */
  1386. if ((pc->c[0] == IDETAPE_READ_CMD || pc->c[0] == IDETAPE_WRITE_CMD)
  1387. && pc->c[4] == 0 && pc->c[3] == 0 && pc->c[2] == 0) { /* length==0 */
  1388. if (result->sense_key == 5) {
  1389. /* don't report an error, everything's ok */
  1390. pc->error = 0;
  1391. /* don't retry read/write */
  1392. set_bit(PC_ABORT, &pc->flags);
  1393. }
  1394. }
  1395. if (pc->c[0] == IDETAPE_READ_CMD && result->filemark) {
  1396. pc->error = IDETAPE_ERROR_FILEMARK;
  1397. set_bit(PC_ABORT, &pc->flags);
  1398. }
  1399. if (pc->c[0] == IDETAPE_WRITE_CMD) {
  1400. if (result->eom ||
  1401. (result->sense_key == 0xd && result->asc == 0x0 &&
  1402. result->ascq == 0x2)) {
  1403. pc->error = IDETAPE_ERROR_EOD;
  1404. set_bit(PC_ABORT, &pc->flags);
  1405. }
  1406. }
  1407. if (pc->c[0] == IDETAPE_READ_CMD || pc->c[0] == IDETAPE_WRITE_CMD) {
  1408. if (result->sense_key == 8) {
  1409. pc->error = IDETAPE_ERROR_EOD;
  1410. set_bit(PC_ABORT, &pc->flags);
  1411. }
  1412. if (!test_bit(PC_ABORT, &pc->flags) &&
  1413. pc->actually_transferred)
  1414. pc->retries = IDETAPE_MAX_PC_RETRIES + 1;
  1415. }
  1416. }
  1417. /*
  1418. * idetape_active_next_stage will declare the next stage as "active".
  1419. */
  1420. static void idetape_active_next_stage (ide_drive_t *drive)
  1421. {
  1422. idetape_tape_t *tape = drive->driver_data;
  1423. idetape_stage_t *stage = tape->next_stage;
  1424. struct request *rq = &stage->rq;
  1425. #if IDETAPE_DEBUG_LOG
  1426. if (tape->debug_level >= 4)
  1427. printk(KERN_INFO "ide-tape: Reached idetape_active_next_stage\n");
  1428. #endif /* IDETAPE_DEBUG_LOG */
  1429. #if IDETAPE_DEBUG_BUGS
  1430. if (stage == NULL) {
  1431. printk(KERN_ERR "ide-tape: bug: Trying to activate a non existing stage\n");
  1432. return;
  1433. }
  1434. #endif /* IDETAPE_DEBUG_BUGS */
  1435. rq->rq_disk = tape->disk;
  1436. rq->buffer = NULL;
  1437. rq->special = (void *)stage->bh;
  1438. tape->active_data_request = rq;
  1439. tape->active_stage = stage;
  1440. tape->next_stage = stage->next;
  1441. }
  1442. /*
  1443. * idetape_increase_max_pipeline_stages is a part of the feedback
  1444. * loop which tries to find the optimum number of stages. In the
  1445. * feedback loop, we are starting from a minimum maximum number of
  1446. * stages, and if we sense that the pipeline is empty, we try to
  1447. * increase it, until we reach the user compile time memory limit.
  1448. */
  1449. static void idetape_increase_max_pipeline_stages (ide_drive_t *drive)
  1450. {
  1451. idetape_tape_t *tape = drive->driver_data;
  1452. int increase = (tape->max_pipeline - tape->min_pipeline) / 10;
  1453. #if IDETAPE_DEBUG_LOG
  1454. if (tape->debug_level >= 4)
  1455. printk (KERN_INFO "ide-tape: Reached idetape_increase_max_pipeline_stages\n");
  1456. #endif /* IDETAPE_DEBUG_LOG */
  1457. tape->max_stages += max(increase, 1);
  1458. tape->max_stages = max(tape->max_stages, tape->min_pipeline);
  1459. tape->max_stages = min(tape->max_stages, tape->max_pipeline);
  1460. }
  1461. /*
  1462. * idetape_kfree_stage calls kfree to completely free a stage, along with
  1463. * its related buffers.
  1464. */
  1465. static void __idetape_kfree_stage (idetape_stage_t *stage)
  1466. {
  1467. struct idetape_bh *prev_bh, *bh = stage->bh;
  1468. int size;
  1469. while (bh != NULL) {
  1470. if (bh->b_data != NULL) {
  1471. size = (int) bh->b_size;
  1472. while (size > 0) {
  1473. free_page((unsigned long) bh->b_data);
  1474. size -= PAGE_SIZE;
  1475. bh->b_data += PAGE_SIZE;
  1476. }
  1477. }
  1478. prev_bh = bh;
  1479. bh = bh->b_reqnext;
  1480. kfree(prev_bh);
  1481. }
  1482. kfree(stage);
  1483. }
  1484. static void idetape_kfree_stage (idetape_tape_t *tape, idetape_stage_t *stage)
  1485. {
  1486. __idetape_kfree_stage(stage);
  1487. }
  1488. /*
  1489. * idetape_remove_stage_head removes tape->first_stage from the pipeline.
  1490. * The caller should avoid race conditions.
  1491. */
  1492. static void idetape_remove_stage_head (ide_drive_t *drive)
  1493. {
  1494. idetape_tape_t *tape = drive->driver_data;
  1495. idetape_stage_t *stage;
  1496. #if IDETAPE_DEBUG_LOG
  1497. if (tape->debug_level >= 4)
  1498. printk(KERN_INFO "ide-tape: Reached idetape_remove_stage_head\n");
  1499. #endif /* IDETAPE_DEBUG_LOG */
  1500. #if IDETAPE_DEBUG_BUGS
  1501. if (tape->first_stage == NULL) {
  1502. printk(KERN_ERR "ide-tape: bug: tape->first_stage is NULL\n");
  1503. return;
  1504. }
  1505. if (tape->active_stage == tape->first_stage) {
  1506. printk(KERN_ERR "ide-tape: bug: Trying to free our active pipeline stage\n");
  1507. return;
  1508. }
  1509. #endif /* IDETAPE_DEBUG_BUGS */
  1510. stage = tape->first_stage;
  1511. tape->first_stage = stage->next;
  1512. idetape_kfree_stage(tape, stage);
  1513. tape->nr_stages--;
  1514. if (tape->first_stage == NULL) {
  1515. tape->last_stage = NULL;
  1516. #if IDETAPE_DEBUG_BUGS
  1517. if (tape->next_stage != NULL)
  1518. printk(KERN_ERR "ide-tape: bug: tape->next_stage != NULL\n");
  1519. if (tape->nr_stages)
  1520. printk(KERN_ERR "ide-tape: bug: nr_stages should be 0 now\n");
  1521. #endif /* IDETAPE_DEBUG_BUGS */
  1522. }
  1523. }
  1524. /*
  1525. * This will free all the pipeline stages starting from new_last_stage->next
  1526. * to the end of the list, and point tape->last_stage to new_last_stage.
  1527. */
  1528. static void idetape_abort_pipeline(ide_drive_t *drive,
  1529. idetape_stage_t *new_last_stage)
  1530. {
  1531. idetape_tape_t *tape = drive->driver_data;
  1532. idetape_stage_t *stage = new_last_stage->next;
  1533. idetape_stage_t *nstage;
  1534. #if IDETAPE_DEBUG_LOG
  1535. if (tape->debug_level >= 4)
  1536. printk(KERN_INFO "ide-tape: %s: idetape_abort_pipeline called\n", tape->name);
  1537. #endif
  1538. while (stage) {
  1539. nstage = stage->next;
  1540. idetape_kfree_stage(tape, stage);
  1541. --tape->nr_stages;
  1542. --tape->nr_pending_stages;
  1543. stage = nstage;
  1544. }
  1545. if (new_last_stage)
  1546. new_last_stage->next = NULL;
  1547. tape->last_stage = new_last_stage;
  1548. tape->next_stage = NULL;
  1549. }
  1550. /*
  1551. * idetape_end_request is used to finish servicing a request, and to
  1552. * insert a pending pipeline request into the main device queue.
  1553. */
  1554. static int idetape_end_request(ide_drive_t *drive, int uptodate, int nr_sects)
  1555. {
  1556. struct request *rq = HWGROUP(drive)->rq;
  1557. idetape_tape_t *tape = drive->driver_data;
  1558. unsigned long flags;
  1559. int error;
  1560. int remove_stage = 0;
  1561. idetape_stage_t *active_stage;
  1562. #if IDETAPE_DEBUG_LOG
  1563. if (tape->debug_level >= 4)
  1564. printk(KERN_INFO "ide-tape: Reached idetape_end_request\n");
  1565. #endif /* IDETAPE_DEBUG_LOG */
  1566. switch (uptodate) {
  1567. case 0: error = IDETAPE_ERROR_GENERAL; break;
  1568. case 1: error = 0; break;
  1569. default: error = uptodate;
  1570. }
  1571. rq->errors = error;
  1572. if (error)
  1573. tape->failed_pc = NULL;
  1574. spin_lock_irqsave(&tape->spinlock, flags);
  1575. /* The request was a pipelined data transfer request */
  1576. if (tape->active_data_request == rq) {
  1577. active_stage = tape->active_stage;
  1578. tape->active_stage = NULL;
  1579. tape->active_data_request = NULL;
  1580. tape->nr_pending_stages--;
  1581. if (rq->cmd[0] & REQ_IDETAPE_WRITE) {
  1582. remove_stage = 1;
  1583. if (error) {
  1584. set_bit(IDETAPE_PIPELINE_ERROR, &tape->flags);
  1585. if (error == IDETAPE_ERROR_EOD)
  1586. idetape_abort_pipeline(drive, active_stage);
  1587. }
  1588. } else if (rq->cmd[0] & REQ_IDETAPE_READ) {
  1589. if (error == IDETAPE_ERROR_EOD) {
  1590. set_bit(IDETAPE_PIPELINE_ERROR, &tape->flags);
  1591. idetape_abort_pipeline(drive, active_stage);
  1592. }
  1593. }
  1594. if (tape->next_stage != NULL) {
  1595. idetape_active_next_stage(drive);
  1596. /*
  1597. * Insert the next request into the request queue.
  1598. */
  1599. (void) ide_do_drive_cmd(drive, tape->active_data_request, ide_end);
  1600. } else if (!error) {
  1601. idetape_increase_max_pipeline_stages(drive);
  1602. }
  1603. }
  1604. ide_end_drive_cmd(drive, 0, 0);
  1605. // blkdev_dequeue_request(rq);
  1606. // drive->rq = NULL;
  1607. // end_that_request_last(rq);
  1608. if (remove_stage)
  1609. idetape_remove_stage_head(drive);
  1610. if (tape->active_data_request == NULL)
  1611. clear_bit(IDETAPE_PIPELINE_ACTIVE, &tape->flags);
  1612. spin_unlock_irqrestore(&tape->spinlock, flags);
  1613. return 0;
  1614. }
  1615. static ide_startstop_t idetape_request_sense_callback (ide_drive_t *drive)
  1616. {
  1617. idetape_tape_t *tape = drive->driver_data;
  1618. #if IDETAPE_DEBUG_LOG
  1619. if (tape->debug_level >= 4)
  1620. printk(KERN_INFO "ide-tape: Reached idetape_request_sense_callback\n");
  1621. #endif /* IDETAPE_DEBUG_LOG */
  1622. if (!tape->pc->error) {
  1623. idetape_analyze_error(drive, (idetape_request_sense_result_t *) tape->pc->buffer);
  1624. idetape_end_request(drive, 1, 0);
  1625. } else {
  1626. printk(KERN_ERR "ide-tape: Error in REQUEST SENSE itself - Aborting request!\n");
  1627. idetape_end_request(drive, 0, 0);
  1628. }
  1629. return ide_stopped;
  1630. }
  1631. static void idetape_create_request_sense_cmd (idetape_pc_t *pc)
  1632. {
  1633. idetape_init_pc(pc);
  1634. pc->c[0] = IDETAPE_REQUEST_SENSE_CMD;
  1635. pc->c[4] = 20;
  1636. pc->request_transfer = 20;
  1637. pc->callback = &idetape_request_sense_callback;
  1638. }
  1639. static void idetape_init_rq(struct request *rq, u8 cmd)
  1640. {
  1641. memset(rq, 0, sizeof(*rq));
  1642. rq->cmd_type = REQ_TYPE_SPECIAL;
  1643. rq->cmd[0] = cmd;
  1644. }
  1645. /*
  1646. * idetape_queue_pc_head generates a new packet command request in front
  1647. * of the request queue, before the current request, so that it will be
  1648. * processed immediately, on the next pass through the driver.
  1649. *
  1650. * idetape_queue_pc_head is called from the request handling part of
  1651. * the driver (the "bottom" part). Safe storage for the request should
  1652. * be allocated with idetape_next_pc_storage and idetape_next_rq_storage
  1653. * before calling idetape_queue_pc_head.
  1654. *
  1655. * Memory for those requests is pre-allocated at initialization time, and
  1656. * is limited to IDETAPE_PC_STACK requests. We assume that we have enough
  1657. * space for the maximum possible number of inter-dependent packet commands.
  1658. *
  1659. * The higher level of the driver - The ioctl handler and the character
  1660. * device handling functions should queue request to the lower level part
  1661. * and wait for their completion using idetape_queue_pc_tail or
  1662. * idetape_queue_rw_tail.
  1663. */
  1664. static void idetape_queue_pc_head (ide_drive_t *drive, idetape_pc_t *pc,struct request *rq)
  1665. {
  1666. struct ide_tape_obj *tape = drive->driver_data;
  1667. idetape_init_rq(rq, REQ_IDETAPE_PC1);
  1668. rq->buffer = (char *) pc;
  1669. rq->rq_disk = tape->disk;
  1670. (void) ide_do_drive_cmd(drive, rq, ide_preempt);
  1671. }
  1672. /*
  1673. * idetape_retry_pc is called when an error was detected during the
  1674. * last packet command. We queue a request sense packet command in
  1675. * the head of the request list.
  1676. */
  1677. static ide_startstop_t idetape_retry_pc (ide_drive_t *drive)
  1678. {
  1679. idetape_tape_t *tape = drive->driver_data;
  1680. idetape_pc_t *pc;
  1681. struct request *rq;
  1682. atapi_error_t error;
  1683. error.all = HWIF(drive)->INB(IDE_ERROR_REG);
  1684. pc = idetape_next_pc_storage(drive);
  1685. rq = idetape_next_rq_storage(drive);
  1686. idetape_create_request_sense_cmd(pc);
  1687. set_bit(IDETAPE_IGNORE_DSC, &tape->flags);
  1688. idetape_queue_pc_head(drive, pc, rq);
  1689. return ide_stopped;
  1690. }
  1691. /*
  1692. * idetape_postpone_request postpones the current request so that
  1693. * ide.c will be able to service requests from another device on
  1694. * the same hwgroup while we are polling for DSC.
  1695. */
  1696. static void idetape_postpone_request (ide_drive_t *drive)
  1697. {
  1698. idetape_tape_t *tape = drive->driver_data;
  1699. #if IDETAPE_DEBUG_LOG
  1700. if (tape->debug_level >= 4)
  1701. printk(KERN_INFO "ide-tape: idetape_postpone_request\n");
  1702. #endif
  1703. tape->postponed_rq = HWGROUP(drive)->rq;
  1704. ide_stall_queue(drive, tape->dsc_polling_frequency);
  1705. }
  1706. /*
  1707. * idetape_pc_intr is the usual interrupt handler which will be called
  1708. * during a packet command. We will transfer some of the data (as
  1709. * requested by the drive) and will re-point interrupt handler to us.
  1710. * When data transfer is finished, we will act according to the
  1711. * algorithm described before idetape_issue_packet_command.
  1712. *
  1713. */
  1714. static ide_startstop_t idetape_pc_intr (ide_drive_t *drive)
  1715. {
  1716. ide_hwif_t *hwif = drive->hwif;
  1717. idetape_tape_t *tape = drive->driver_data;
  1718. atapi_status_t status;
  1719. atapi_bcount_t bcount;
  1720. atapi_ireason_t ireason;
  1721. idetape_pc_t *pc = tape->pc;
  1722. unsigned int temp;
  1723. #if SIMULATE_ERRORS
  1724. static int error_sim_count = 0;
  1725. #endif
  1726. #if IDETAPE_DEBUG_LOG
  1727. if (tape->debug_level >= 4)
  1728. printk(KERN_INFO "ide-tape: Reached idetape_pc_intr "
  1729. "interrupt handler\n");
  1730. #endif /* IDETAPE_DEBUG_LOG */
  1731. /* Clear the interrupt */
  1732. status.all = HWIF(drive)->INB(IDE_STATUS_REG);
  1733. if (test_bit(PC_DMA_IN_PROGRESS, &pc->flags)) {
  1734. if (HWIF(drive)->ide_dma_end(drive) || status.b.check) {
  1735. /*
  1736. * A DMA error is sometimes expected. For example,
  1737. * if the tape is crossing a filemark during a
  1738. * READ command, it will issue an irq and position
  1739. * itself before the filemark, so that only a partial
  1740. * data transfer will occur (which causes the DMA
  1741. * error). In that case, we will later ask the tape
  1742. * how much bytes of the original request were
  1743. * actually transferred (we can't receive that
  1744. * information from the DMA engine on most chipsets).
  1745. */
  1746. /*
  1747. * On the contrary, a DMA error is never expected;
  1748. * it usually indicates a hardware error or abort.
  1749. * If the tape crosses a filemark during a READ
  1750. * command, it will issue an irq and position itself
  1751. * after the filemark (not before). Only a partial
  1752. * data transfer will occur, but no DMA error.
  1753. * (AS, 19 Apr 2001)
  1754. */
  1755. set_bit(PC_DMA_ERROR, &pc->flags);
  1756. } else {
  1757. pc->actually_transferred = pc->request_transfer;
  1758. idetape_update_buffers(pc);
  1759. }
  1760. #if IDETAPE_DEBUG_LOG
  1761. if (tape->debug_level >= 4)
  1762. printk(KERN_INFO "ide-tape: DMA finished\n");
  1763. #endif /* IDETAPE_DEBUG_LOG */
  1764. }
  1765. /* No more interrupts */
  1766. if (!status.b.drq) {
  1767. #if IDETAPE_DEBUG_LOG
  1768. if (tape->debug_level >= 2)
  1769. printk(KERN_INFO "ide-tape: Packet command completed, %d bytes transferred\n", pc->actually_transferred);
  1770. #endif /* IDETAPE_DEBUG_LOG */
  1771. clear_bit(PC_DMA_IN_PROGRESS, &pc->flags);
  1772. local_irq_enable();
  1773. #if SIMULATE_ERRORS
  1774. if ((pc->c[0] == IDETAPE_WRITE_CMD ||
  1775. pc->c[0] == IDETAPE_READ_CMD) &&
  1776. (++error_sim_count % 100) == 0) {
  1777. printk(KERN_INFO "ide-tape: %s: simulating error\n",
  1778. tape->name);
  1779. status.b.check = 1;
  1780. }
  1781. #endif
  1782. if (status.b.check && pc->c[0] == IDETAPE_REQUEST_SENSE_CMD)
  1783. status.b.check = 0;
  1784. if (status.b.check || test_bit(PC_DMA_ERROR, &pc->flags)) { /* Error detected */
  1785. #if IDETAPE_DEBUG_LOG
  1786. if (tape->debug_level >= 1)
  1787. printk(KERN_INFO "ide-tape: %s: I/O error\n",
  1788. tape->name);
  1789. #endif /* IDETAPE_DEBUG_LOG */
  1790. if (pc->c[0] == IDETAPE_REQUEST_SENSE_CMD) {
  1791. printk(KERN_ERR "ide-tape: I/O error in request sense command\n");
  1792. return ide_do_reset(drive);
  1793. }
  1794. #if IDETAPE_DEBUG_LOG
  1795. if (tape->debug_level >= 1)
  1796. printk(KERN_INFO "ide-tape: [cmd %x]: check condition\n", pc->c[0]);
  1797. #endif
  1798. /* Retry operation */
  1799. return idetape_retry_pc(drive);
  1800. }
  1801. pc->error = 0;
  1802. if (test_bit(PC_WAIT_FOR_DSC, &pc->flags) &&
  1803. !status.b.dsc) {
  1804. /* Media access command */
  1805. tape->dsc_polling_start = jiffies;
  1806. tape->dsc_polling_frequency = IDETAPE_DSC_MA_FAST;
  1807. tape->dsc_timeout = jiffies + IDETAPE_DSC_MA_TIMEOUT;
  1808. /* Allow ide.c to handle other requests */
  1809. idetape_postpone_request(drive);
  1810. return ide_stopped;
  1811. }
  1812. if (tape->failed_pc == pc)
  1813. tape->failed_pc = NULL;
  1814. /* Command finished - Call the callback function */
  1815. return pc->callback(drive);
  1816. }
  1817. if (test_and_clear_bit(PC_DMA_IN_PROGRESS, &pc->flags)) {
  1818. printk(KERN_ERR "ide-tape: The tape wants to issue more "
  1819. "interrupts in DMA mode\n");
  1820. printk(KERN_ERR "ide-tape: DMA disabled, reverting to PIO\n");
  1821. ide_dma_off(drive);
  1822. return ide_do_reset(drive);
  1823. }
  1824. /* Get the number of bytes to transfer on this interrupt. */
  1825. bcount.b.high = hwif->INB(IDE_BCOUNTH_REG);
  1826. bcount.b.low = hwif->INB(IDE_BCOUNTL_REG);
  1827. ireason.all = hwif->INB(IDE_IREASON_REG);
  1828. if (ireason.b.cod) {
  1829. printk(KERN_ERR "ide-tape: CoD != 0 in idetape_pc_intr\n");
  1830. return ide_do_reset(drive);
  1831. }
  1832. if (ireason.b.io == test_bit(PC_WRITING, &pc->flags)) {
  1833. /* Hopefully, we will never get here */
  1834. printk(KERN_ERR "ide-tape: We wanted to %s, ",
  1835. ireason.b.io ? "Write":"Read");
  1836. printk(KERN_ERR "ide-tape: but the tape wants us to %s !\n",
  1837. ireason.b.io ? "Read":"Write");
  1838. return ide_do_reset(drive);
  1839. }
  1840. if (!test_bit(PC_WRITING, &pc->flags)) {
  1841. /* Reading - Check that we have enough space */
  1842. temp = pc->actually_transferred + bcount.all;
  1843. if (temp > pc->request_transfer) {
  1844. if (temp > pc->buffer_size) {
  1845. printk(KERN_ERR "ide-tape: The tape wants to send us more data than expected - discarding data\n");
  1846. idetape_discard_data(drive, bcount.all);
  1847. ide_set_handler(drive, &idetape_pc_intr, IDETAPE_WAIT_CMD, NULL);
  1848. return ide_started;
  1849. }
  1850. #if IDETAPE_DEBUG_LOG
  1851. if (tape->debug_level >= 2)
  1852. printk(KERN_NOTICE "ide-tape: The tape wants to send us more data than expected - allowing transfer\n");
  1853. #endif /* IDETAPE_DEBUG_LOG */
  1854. }
  1855. }
  1856. if (test_bit(PC_WRITING, &pc->flags)) {
  1857. if (pc->bh != NULL)
  1858. idetape_output_buffers(drive, pc, bcount.all);
  1859. else
  1860. /* Write the current buffer */
  1861. HWIF(drive)->atapi_output_bytes(drive, pc->current_position, bcount.all);
  1862. } else {
  1863. if (pc->bh != NULL)
  1864. idetape_input_buffers(drive, pc, bcount.all);
  1865. else
  1866. /* Read the current buffer */
  1867. HWIF(drive)->atapi_input_bytes(drive, pc->current_position, bcount.all);
  1868. }
  1869. /* Update the current position */
  1870. pc->actually_transferred += bcount.all;
  1871. pc->current_position += bcount.all;
  1872. #if IDETAPE_DEBUG_LOG
  1873. if (tape->debug_level >= 2)
  1874. printk(KERN_INFO "ide-tape: [cmd %x] transferred %d bytes on that interrupt\n", pc->c[0], bcount.all);
  1875. #endif
  1876. /* And set the interrupt handler again */
  1877. ide_set_handler(drive, &idetape_pc_intr, IDETAPE_WAIT_CMD, NULL);
  1878. return ide_started;
  1879. }
  1880. /*
  1881. * Packet Command Interface
  1882. *
  1883. * The current Packet Command is available in tape->pc, and will not
  1884. * change until we finish handling it. Each packet command is associated
  1885. * with a callback function that will be called when the command is
  1886. * finished.
  1887. *
  1888. * The handling will be done in three stages:
  1889. *
  1890. * 1. idetape_issue_packet_command will send the packet command to the
  1891. * drive, and will set the interrupt handler to idetape_pc_intr.
  1892. *
  1893. * 2. On each interrupt, idetape_pc_intr will be called. This step
  1894. * will be repeated until the device signals us that no more
  1895. * interrupts will be issued.
  1896. *
  1897. * 3. ATAPI Tape media access commands have immediate status with a
  1898. * delayed process. In case of a successful initiation of a
  1899. * media access packet command, the DSC bit will be set when the
  1900. * actual execution of the command is finished.
  1901. * Since the tape drive will not issue an interrupt, we have to
  1902. * poll for this event. In this case, we define the request as
  1903. * "low priority request" by setting rq_status to
  1904. * IDETAPE_RQ_POSTPONED, set a timer to poll for DSC and exit
  1905. * the driver.
  1906. *
  1907. * ide.c will then give higher priority to requests which
  1908. * originate from the other device, until will change rq_status
  1909. * to RQ_ACTIVE.
  1910. *
  1911. * 4. When the packet command is finished, it will be checked for errors.
  1912. *
  1913. * 5. In case an error was found, we queue a request sense packet
  1914. * command in front of the request queue and retry the operation
  1915. * up to IDETAPE_MAX_PC_RETRIES times.
  1916. *
  1917. * 6. In case no error was found, or we decided to give up and not
  1918. * to retry again, the callback function will be called and then
  1919. * we will handle the next request.
  1920. *
  1921. */
  1922. static ide_startstop_t idetape_transfer_pc(ide_drive_t *drive)
  1923. {
  1924. ide_hwif_t *hwif = drive->hwif;
  1925. idetape_tape_t *tape = drive->driver_data;
  1926. idetape_pc_t *pc = tape->pc;
  1927. atapi_ireason_t ireason;
  1928. int retries = 100;
  1929. ide_startstop_t startstop;
  1930. if (ide_wait_stat(&startstop,drive,DRQ_STAT,BUSY_STAT,WAIT_READY)) {
  1931. printk(KERN_ERR "ide-tape: Strange, packet command initiated yet DRQ isn't asserted\n");
  1932. return startstop;
  1933. }
  1934. ireason.all = hwif->INB(IDE_IREASON_REG);
  1935. while (retries-- && (!ireason.b.cod || ireason.b.io)) {
  1936. printk(KERN_ERR "ide-tape: (IO,CoD != (0,1) while issuing "
  1937. "a packet command, retrying\n");
  1938. udelay(100);
  1939. ireason.all = hwif->INB(IDE_IREASON_REG);
  1940. if (retries == 0) {
  1941. printk(KERN_ERR "ide-tape: (IO,CoD != (0,1) while "
  1942. "issuing a packet command, ignoring\n");
  1943. ireason.b.cod = 1;
  1944. ireason.b.io = 0;
  1945. }
  1946. }
  1947. if (!ireason.b.cod || ireason.b.io) {
  1948. printk(KERN_ERR "ide-tape: (IO,CoD) != (0,1) while issuing "
  1949. "a packet command\n");
  1950. return ide_do_reset(drive);
  1951. }
  1952. /* Set the interrupt routine */
  1953. ide_set_handler(drive, &idetape_pc_intr, IDETAPE_WAIT_CMD, NULL);
  1954. #ifdef CONFIG_BLK_DEV_IDEDMA
  1955. /* Begin DMA, if necessary */
  1956. if (test_bit(PC_DMA_IN_PROGRESS, &pc->flags))
  1957. hwif->dma_start(drive);
  1958. #endif
  1959. /* Send the actual packet */
  1960. HWIF(drive)->atapi_output_bytes(drive, pc->c, 12);
  1961. return ide_started;
  1962. }
  1963. static ide_startstop_t idetape_issue_packet_command (ide_drive_t *drive, idetape_pc_t *pc)
  1964. {
  1965. ide_hwif_t *hwif = drive->hwif;
  1966. idetape_tape_t *tape = drive->driver_data;
  1967. atapi_bcount_t bcount;
  1968. int dma_ok = 0;
  1969. #if IDETAPE_DEBUG_BUGS
  1970. if (tape->pc->c[0] == IDETAPE_REQUEST_SENSE_CMD &&
  1971. pc->c[0] == IDETAPE_REQUEST_SENSE_CMD) {
  1972. printk(KERN_ERR "ide-tape: possible ide-tape.c bug - "
  1973. "Two request sense in serial were issued\n");
  1974. }
  1975. #endif /* IDETAPE_DEBUG_BUGS */
  1976. if (tape->failed_pc == NULL && pc->c[0] != IDETAPE_REQUEST_SENSE_CMD)
  1977. tape->failed_pc = pc;
  1978. /* Set the current packet command */
  1979. tape->pc = pc;
  1980. if (pc->retries > IDETAPE_MAX_PC_RETRIES ||
  1981. test_bit(PC_ABORT, &pc->flags)) {
  1982. /*
  1983. * We will "abort" retrying a packet command in case
  1984. * a legitimate error code was received (crossing a
  1985. * filemark, or end of the media, for example).
  1986. */
  1987. if (!test_bit(PC_ABORT, &pc->flags)) {
  1988. if (!(pc->c[0] == IDETAPE_TEST_UNIT_READY_CMD &&
  1989. tape->sense_key == 2 && tape->asc == 4 &&
  1990. (tape->ascq == 1 || tape->ascq == 8))) {
  1991. printk(KERN_ERR "ide-tape: %s: I/O error, "
  1992. "pc = %2x, key = %2x, "
  1993. "asc = %2x, ascq = %2x\n",
  1994. tape->name, pc->c[0],
  1995. tape->sense_key, tape->asc,
  1996. tape->ascq);
  1997. }
  1998. /* Giving up */
  1999. pc->error = IDETAPE_ERROR_GENERAL;
  2000. }
  2001. tape->failed_pc = NULL;
  2002. return pc->callback(drive);
  2003. }
  2004. #if IDETAPE_DEBUG_LOG
  2005. if (tape->debug_level >= 2)
  2006. printk(KERN_INFO "ide-tape: Retry number - %d, cmd = %02X\n", pc->retries, pc->c[0]);
  2007. #endif /* IDETAPE_DEBUG_LOG */
  2008. pc->retries++;
  2009. /* We haven't transferred any data yet */
  2010. pc->actually_transferred = 0;
  2011. pc->current_position = pc->buffer;
  2012. /* Request to transfer the entire buffer at once */
  2013. bcount.all = pc->request_transfer;
  2014. if (test_and_clear_bit(PC_DMA_ERROR, &pc->flags)) {
  2015. printk(KERN_WARNING "ide-tape: DMA disabled, "
  2016. "reverting to PIO\n");
  2017. ide_dma_off(drive);
  2018. }
  2019. if (test_bit(PC_DMA_RECOMMENDED, &pc->flags) && drive->using_dma)
  2020. dma_ok = !hwif->dma_setup(drive);
  2021. if (IDE_CONTROL_REG)
  2022. hwif->OUTB(drive->ctl, IDE_CONTROL_REG);
  2023. hwif->OUTB(dma_ok ? 1 : 0, IDE_FEATURE_REG); /* Use PIO/DMA */
  2024. hwif->OUTB(bcount.b.high, IDE_BCOUNTH_REG);
  2025. hwif->OUTB(bcount.b.low, IDE_BCOUNTL_REG);
  2026. hwif->OUTB(drive->select.all, IDE_SELECT_REG);
  2027. if (dma_ok) /* Will begin DMA later */
  2028. set_bit(PC_DMA_IN_PROGRESS, &pc->flags);
  2029. if (test_bit(IDETAPE_DRQ_INTERRUPT, &tape->flags)) {
  2030. ide_set_handler(drive, &idetape_transfer_pc, IDETAPE_WAIT_CMD, NULL);
  2031. hwif->OUTB(WIN_PACKETCMD, IDE_COMMAND_REG);
  2032. return ide_started;
  2033. } else {
  2034. hwif->OUTB(WIN_PACKETCMD, IDE_COMMAND_REG);
  2035. return idetape_transfer_pc(drive);
  2036. }
  2037. }
  2038. /*
  2039. * General packet command callback function.
  2040. */
  2041. static ide_startstop_t idetape_pc_callback (ide_drive_t *drive)
  2042. {
  2043. idetape_tape_t *tape = drive->driver_data;
  2044. #if IDETAPE_DEBUG_LOG
  2045. if (tape->debug_level >= 4)
  2046. printk(KERN_INFO "ide-tape: Reached idetape_pc_callback\n");
  2047. #endif /* IDETAPE_DEBUG_LOG */
  2048. idetape_end_request(drive, tape->pc->error ? 0 : 1, 0);
  2049. return ide_stopped;
  2050. }
  2051. /*
  2052. * A mode sense command is used to "sense" tape parameters.
  2053. */
  2054. static void idetape_create_mode_sense_cmd (idetape_pc_t *pc, u8 page_code)
  2055. {
  2056. idetape_init_pc(pc);
  2057. pc->c[0] = IDETAPE_MODE_SENSE_CMD;
  2058. if (page_code != IDETAPE_BLOCK_DESCRIPTOR)
  2059. pc->c[1] = 8; /* DBD = 1 - Don't return block descriptors */
  2060. pc->c[2] = page_code;
  2061. /*
  2062. * Changed pc->c[3] to 0 (255 will at best return unused info).
  2063. *
  2064. * For SCSI this byte is defined as subpage instead of high byte
  2065. * of length and some IDE drives seem to interpret it this way
  2066. * and return an error when 255 is used.
  2067. */
  2068. pc->c[3] = 0;
  2069. pc->c[4] = 255; /* (We will just discard data in that case) */
  2070. if (page_code == IDETAPE_BLOCK_DESCRIPTOR)
  2071. pc->request_transfer = 12;
  2072. else if (page_code == IDETAPE_CAPABILITIES_PAGE)
  2073. pc->request_transfer = 24;
  2074. else
  2075. pc->request_transfer = 50;
  2076. pc->callback = &idetape_pc_callback;
  2077. }
  2078. static void calculate_speeds(ide_drive_t *drive)
  2079. {
  2080. idetape_tape_t *tape = drive->driver_data;
  2081. int full = 125, empty = 75;
  2082. if (time_after(jiffies, tape->controlled_pipeline_head_time + 120 * HZ)) {
  2083. tape->controlled_previous_pipeline_head = tape->controlled_last_pipeline_head;
  2084. tape->controlled_previous_head_time = tape->controlled_pipeline_head_time;
  2085. tape->controlled_last_pipeline_head = tape->pipeline_head;
  2086. tape->controlled_pipeline_head_time = jiffies;
  2087. }
  2088. if (time_after(jiffies, tape->controlled_pipeline_head_time + 60 * HZ))
  2089. tape->controlled_pipeline_head_speed = (tape->pipeline_head - tape->controlled_last_pipeline_head) * 32 * HZ / (jiffies - tape->controlled_pipeline_head_time);
  2090. else if (time_after(jiffies, tape->controlled_previous_head_time))
  2091. tape->controlled_pipeline_head_speed = (tape->pipeline_head - tape->controlled_previous_pipeline_head) * 32 * HZ / (jiffies - tape->controlled_previous_head_time);
  2092. if (tape->nr_pending_stages < tape->max_stages /*- 1 */) {
  2093. /* -1 for read mode error recovery */
  2094. if (time_after(jiffies, tape->uncontrolled_previous_head_time + 10 * HZ)) {
  2095. tape->uncontrolled_pipeline_head_time = jiffies;
  2096. tape->uncontrolled_pipeline_head_speed = (tape->pipeline_head - tape->uncontrolled_previous_pipeline_head) * 32 * HZ / (jiffies - tape->uncontrolled_previous_head_time);
  2097. }
  2098. } else {
  2099. tape->uncontrolled_previous_head_time = jiffies;
  2100. tape->uncontrolled_previous_pipeline_head = tape->pipeline_head;
  2101. if (time_after(jiffies, tape->uncontrolled_pipeline_head_time + 30 * HZ)) {
  2102. tape->uncontrolled_pipeline_head_time = jiffies;
  2103. }
  2104. }
  2105. tape->pipeline_head_speed = max(tape->uncontrolled_pipeline_head_speed, tape->controlled_pipeline_head_speed);
  2106. if (tape->speed_control == 0) {
  2107. tape->max_insert_speed = 5000;
  2108. } else if (tape->speed_control == 1) {
  2109. if (tape->nr_pending_stages >= tape->max_stages / 2)
  2110. tape->max_insert_speed = tape->pipeline_head_speed +
  2111. (1100 - tape->pipeline_head_speed) * 2 * (tape->nr_pending_stages - tape->max_stages / 2) / tape->max_stages;
  2112. else
  2113. tape->max_insert_speed = 500 +
  2114. (tape->pipeline_head_speed - 500) * 2 * tape->nr_pending_stages / tape->max_stages;
  2115. if (tape->nr_pending_stages >= tape->max_stages * 99 / 100)
  2116. tape->max_insert_speed = 5000;
  2117. } else if (tape->speed_control == 2) {
  2118. tape->max_insert_speed = tape->pipeline_head_speed * empty / 100 +
  2119. (tape->pipeline_head_speed * full / 100 - tape->pipeline_head_speed * empty / 100) * tape->nr_pending_stages / tape->max_stages;
  2120. } else
  2121. tape->max_insert_speed = tape->speed_control;
  2122. tape->max_insert_speed = max(tape->max_insert_speed, 500);
  2123. }
  2124. static ide_startstop_t idetape_media_access_finished (ide_drive_t *drive)
  2125. {
  2126. idetape_tape_t *tape = drive->driver_data;
  2127. idetape_pc_t *pc = tape->pc;
  2128. atapi_status_t status;
  2129. status.all = HWIF(drive)->INB(IDE_STATUS_REG);
  2130. if (status.b.dsc) {
  2131. if (status.b.check) {
  2132. /* Error detected */
  2133. if (pc->c[0] != IDETAPE_TEST_UNIT_READY_CMD)
  2134. printk(KERN_ERR "ide-tape: %s: I/O error, ",
  2135. tape->name);
  2136. /* Retry operation */
  2137. return idetape_retry_pc(drive);
  2138. }
  2139. pc->error = 0;
  2140. if (tape->failed_pc == pc)
  2141. tape->failed_pc = NULL;
  2142. } else {
  2143. pc->error = IDETAPE_ERROR_GENERAL;
  2144. tape->failed_pc = NULL;
  2145. }
  2146. return pc->callback(drive);
  2147. }
  2148. static ide_startstop_t idetape_rw_callback (ide_drive_t *drive)
  2149. {
  2150. idetape_tape_t *tape = drive->driver_data;
  2151. struct request *rq = HWGROUP(drive)->rq;
  2152. int blocks = tape->pc->actually_transferred / tape->tape_block_size;
  2153. tape->avg_size += blocks * tape->tape_block_size;
  2154. tape->insert_size += blocks * tape->tape_block_size;
  2155. if (tape->insert_size > 1024 * 1024)
  2156. tape->measure_insert_time = 1;
  2157. if (tape->measure_insert_time) {
  2158. tape->measure_insert_time = 0;
  2159. tape->insert_time = jiffies;
  2160. tape->insert_size = 0;
  2161. }
  2162. if (time_after(jiffies, tape->insert_time))
  2163. tape->insert_speed = tape->insert_size / 1024 * HZ / (jiffies - tape->insert_time);
  2164. if (time_after_eq(jiffies, tape->avg_time + HZ)) {
  2165. tape->avg_speed = tape->avg_size * HZ / (jiffies - tape->avg_time) / 1024;
  2166. tape->avg_size = 0;
  2167. tape->avg_time = jiffies;
  2168. }
  2169. #if IDETAPE_DEBUG_LOG
  2170. if (tape->debug_level >= 4)
  2171. printk(KERN_INFO "ide-tape: Reached idetape_rw_callback\n");
  2172. #endif /* IDETAPE_DEBUG_LOG */
  2173. tape->first_frame_position += blocks;
  2174. rq->current_nr_sectors -= blocks;
  2175. if (!tape->pc->error)
  2176. idetape_end_request(drive, 1, 0);
  2177. else
  2178. idetape_end_request(drive, tape->pc->error, 0);
  2179. return ide_stopped;
  2180. }
  2181. static void idetape_create_read_cmd(idetape_tape_t *tape, idetape_pc_t *pc, unsigned int length, struct idetape_bh *bh)
  2182. {
  2183. idetape_init_pc(pc);
  2184. pc->c[0] = IDETAPE_READ_CMD;
  2185. put_unaligned(htonl(length), (unsigned int *) &pc->c[1]);
  2186. pc->c[1] = 1;
  2187. pc->callback = &idetape_rw_callback;
  2188. pc->bh = bh;
  2189. atomic_set(&bh->b_count, 0);
  2190. pc->buffer = NULL;
  2191. pc->request_transfer = pc->buffer_size = length * tape->tape_block_size;
  2192. if (pc->request_transfer == tape->stage_size)
  2193. set_bit(PC_DMA_RECOMMENDED, &pc->flags);
  2194. }
  2195. static void idetape_create_read_buffer_cmd(idetape_tape_t *tape, idetape_pc_t *pc, unsigned int length, struct idetape_bh *bh)
  2196. {
  2197. int size = 32768;
  2198. struct idetape_bh *p = bh;
  2199. idetape_init_pc(pc);
  2200. pc->c[0] = IDETAPE_READ_BUFFER_CMD;
  2201. pc->c[1] = IDETAPE_RETRIEVE_FAULTY_BLOCK;
  2202. pc->c[7] = size >> 8;
  2203. pc->c[8] = size & 0xff;
  2204. pc->callback = &idetape_pc_callback;
  2205. pc->bh = bh;
  2206. atomic_set(&bh->b_count, 0);
  2207. pc->buffer = NULL;
  2208. while (p) {
  2209. atomic_set(&p->b_count, 0);
  2210. p = p->b_reqnext;
  2211. }
  2212. pc->request_transfer = pc->buffer_size = size;
  2213. }
  2214. static void idetape_create_write_cmd(idetape_tape_t *tape, idetape_pc_t *pc, unsigned int length, struct idetape_bh *bh)
  2215. {
  2216. idetape_init_pc(pc);
  2217. pc->c[0] = IDETAPE_WRITE_CMD;
  2218. put_unaligned(htonl(length), (unsigned int *) &pc->c[1]);
  2219. pc->c[1] = 1;
  2220. pc->callback = &idetape_rw_callback;
  2221. set_bit(PC_WRITING, &pc->flags);
  2222. pc->bh = bh;
  2223. pc->b_data = bh->b_data;
  2224. pc->b_count = atomic_read(&bh->b_count);
  2225. pc->buffer = NULL;
  2226. pc->request_transfer = pc->buffer_size = length * tape->tape_block_size;
  2227. if (pc->request_transfer == tape->stage_size)
  2228. set_bit(PC_DMA_RECOMMENDED, &pc->flags);
  2229. }
  2230. /*
  2231. * idetape_do_request is our request handling function.
  2232. */
  2233. static ide_startstop_t idetape_do_request(ide_drive_t *drive,
  2234. struct request *rq, sector_t block)
  2235. {
  2236. idetape_tape_t *tape = drive->driver_data;
  2237. idetape_pc_t *pc = NULL;
  2238. struct request *postponed_rq = tape->postponed_rq;
  2239. atapi_status_t status;
  2240. #if IDETAPE_DEBUG_LOG
  2241. #if 0
  2242. if (tape->debug_level >= 5)
  2243. printk(KERN_INFO "ide-tape: %d, "
  2244. "dev: %s, cmd: %ld, errors: %d\n",
  2245. rq->rq_disk->disk_name, rq->cmd[0], rq->errors);
  2246. #endif
  2247. if (tape->debug_level >= 2)
  2248. printk(KERN_INFO "ide-tape: sector: %ld, "
  2249. "nr_sectors: %ld, current_nr_sectors: %d\n",
  2250. rq->sector, rq->nr_sectors, rq->current_nr_sectors);
  2251. #endif /* IDETAPE_DEBUG_LOG */
  2252. if (!blk_special_request(rq)) {
  2253. /*
  2254. * We do not support buffer cache originated requests.
  2255. */
  2256. printk(KERN_NOTICE "ide-tape: %s: Unsupported request in "
  2257. "request queue (%d)\n", drive->name, rq->cmd_type);
  2258. ide_end_request(drive, 0, 0);
  2259. return ide_stopped;
  2260. }
  2261. /*
  2262. * Retry a failed packet command
  2263. */
  2264. if (tape->failed_pc != NULL &&
  2265. tape->pc->c[0] == IDETAPE_REQUEST_SENSE_CMD) {
  2266. return idetape_issue_packet_command(drive, tape->failed_pc);
  2267. }
  2268. #if IDETAPE_DEBUG_BUGS
  2269. if (postponed_rq != NULL)
  2270. if (rq != postponed_rq) {
  2271. printk(KERN_ERR "ide-tape: ide-tape.c bug - "
  2272. "Two DSC requests were queued\n");
  2273. idetape_end_request(drive, 0, 0);
  2274. return ide_stopped;
  2275. }
  2276. #endif /* IDETAPE_DEBUG_BUGS */
  2277. tape->postponed_rq = NULL;
  2278. /*
  2279. * If the tape is still busy, postpone our request and service
  2280. * the other device meanwhile.
  2281. */
  2282. status.all = HWIF(drive)->INB(IDE_STATUS_REG);
  2283. if (!drive->dsc_overlap && !(rq->cmd[0] & REQ_IDETAPE_PC2))
  2284. set_bit(IDETAPE_IGNORE_DSC, &tape->flags);
  2285. if (drive->post_reset == 1) {
  2286. set_bit(IDETAPE_IGNORE_DSC, &tape->flags);
  2287. drive->post_reset = 0;
  2288. }
  2289. if (tape->tape_still_time > 100 && tape->tape_still_time < 200)
  2290. tape->measure_insert_time = 1;
  2291. if (time_after(jiffies, tape->insert_time))
  2292. tape->insert_speed = tape->insert_size / 1024 * HZ / (jiffies - tape->insert_time);
  2293. calculate_speeds(drive);
  2294. if (!test_and_clear_bit(IDETAPE_IGNORE_DSC, &tape->flags) &&
  2295. !status.b.dsc) {
  2296. if (postponed_rq == NULL) {
  2297. tape->dsc_polling_start = jiffies;
  2298. tape->dsc_polling_frequency = tape->best_dsc_rw_frequency;
  2299. tape->dsc_timeout = jiffies + IDETAPE_DSC_RW_TIMEOUT;
  2300. } else if (time_after(jiffies, tape->dsc_timeout)) {
  2301. printk(KERN_ERR "ide-tape: %s: DSC timeout\n",
  2302. tape->name);
  2303. if (rq->cmd[0] & REQ_IDETAPE_PC2) {
  2304. idetape_media_access_finished(drive);
  2305. return ide_stopped;
  2306. } else {
  2307. return ide_do_reset(drive);
  2308. }
  2309. } else if (time_after(jiffies, tape->dsc_polling_start + IDETAPE_DSC_MA_THRESHOLD))
  2310. tape->dsc_polling_frequency = IDETAPE_DSC_MA_SLOW;
  2311. idetape_postpone_request(drive);
  2312. return ide_stopped;
  2313. }
  2314. if (rq->cmd[0] & REQ_IDETAPE_READ) {
  2315. tape->buffer_head++;
  2316. tape->postpone_cnt = 0;
  2317. pc = idetape_next_pc_storage(drive);
  2318. idetape_create_read_cmd(tape, pc, rq->current_nr_sectors, (struct idetape_bh *)rq->special);
  2319. goto out;
  2320. }
  2321. if (rq->cmd[0] & REQ_IDETAPE_WRITE) {
  2322. tape->buffer_head++;
  2323. tape->postpone_cnt = 0;
  2324. pc = idetape_next_pc_storage(drive);
  2325. idetape_create_write_cmd(tape, pc, rq->current_nr_sectors, (struct idetape_bh *)rq->special);
  2326. goto out;
  2327. }
  2328. if (rq->cmd[0] & REQ_IDETAPE_READ_BUFFER) {
  2329. tape->postpone_cnt = 0;
  2330. pc = idetape_next_pc_storage(drive);
  2331. idetape_create_read_buffer_cmd(tape, pc, rq->current_nr_sectors, (struct idetape_bh *)rq->special);
  2332. goto out;
  2333. }
  2334. if (rq->cmd[0] & REQ_IDETAPE_PC1) {
  2335. pc = (idetape_pc_t *) rq->buffer;
  2336. rq->cmd[0] &= ~(REQ_IDETAPE_PC1);
  2337. rq->cmd[0] |= REQ_IDETAPE_PC2;
  2338. goto out;
  2339. }
  2340. if (rq->cmd[0] & REQ_IDETAPE_PC2) {
  2341. idetape_media_access_finished(drive);
  2342. return ide_stopped;
  2343. }
  2344. BUG();
  2345. out:
  2346. return idetape_issue_packet_command(drive, pc);
  2347. }
  2348. /*
  2349. * Pipeline related functions
  2350. */
  2351. static inline int idetape_pipeline_active (idetape_tape_t *tape)
  2352. {
  2353. int rc1, rc2;
  2354. rc1 = test_bit(IDETAPE_PIPELINE_ACTIVE, &tape->flags);
  2355. rc2 = (tape->active_data_request != NULL);
  2356. return rc1;
  2357. }
  2358. /*
  2359. * idetape_kmalloc_stage uses __get_free_page to allocate a pipeline
  2360. * stage, along with all the necessary small buffers which together make
  2361. * a buffer of size tape->stage_size (or a bit more). We attempt to
  2362. * combine sequential pages as much as possible.
  2363. *
  2364. * Returns a pointer to the new allocated stage, or NULL if we
  2365. * can't (or don't want to) allocate a stage.
  2366. *
  2367. * Pipeline stages are optional and are used to increase performance.
  2368. * If we can't allocate them, we'll manage without them.
  2369. */
  2370. static idetape_stage_t *__idetape_kmalloc_stage (idetape_tape_t *tape, int full, int clear)
  2371. {
  2372. idetape_stage_t *stage;
  2373. struct idetape_bh *prev_bh, *bh;
  2374. int pages = tape->pages_per_stage;
  2375. char *b_data = NULL;
  2376. if ((stage = kmalloc(sizeof (idetape_stage_t),GFP_KERNEL)) == NULL)
  2377. return NULL;
  2378. stage->next = NULL;
  2379. bh = stage->bh = kmalloc(sizeof(struct idetape_bh), GFP_KERNEL);
  2380. if (bh == NULL)
  2381. goto abort;
  2382. bh->b_reqnext = NULL;
  2383. if ((bh->b_data = (char *) __get_free_page (GFP_KERNEL)) == NULL)
  2384. goto abort;
  2385. if (clear)
  2386. memset(bh->b_data, 0, PAGE_SIZE);
  2387. bh->b_size = PAGE_SIZE;
  2388. atomic_set(&bh->b_count, full ? bh->b_size : 0);
  2389. while (--pages) {
  2390. if ((b_data = (char *) __get_free_page (GFP_KERNEL)) == NULL)
  2391. goto abort;
  2392. if (clear)
  2393. memset(b_data, 0, PAGE_SIZE);
  2394. if (bh->b_data == b_data + PAGE_SIZE) {
  2395. bh->b_size += PAGE_SIZE;
  2396. bh->b_data -= PAGE_SIZE;
  2397. if (full)
  2398. atomic_add(PAGE_SIZE, &bh->b_count);
  2399. continue;
  2400. }
  2401. if (b_data == bh->b_data + bh->b_size) {
  2402. bh->b_size += PAGE_SIZE;
  2403. if (full)
  2404. atomic_add(PAGE_SIZE, &bh->b_count);
  2405. continue;
  2406. }
  2407. prev_bh = bh;
  2408. if ((bh = kmalloc(sizeof(struct idetape_bh), GFP_KERNEL)) == NULL) {
  2409. free_page((unsigned long) b_data);
  2410. goto abort;
  2411. }
  2412. bh->b_reqnext = NULL;
  2413. bh->b_data = b_data;
  2414. bh->b_size = PAGE_SIZE;
  2415. atomic_set(&bh->b_count, full ? bh->b_size : 0);
  2416. prev_bh->b_reqnext = bh;
  2417. }
  2418. bh->b_size -= tape->excess_bh_size;
  2419. if (full)
  2420. atomic_sub(tape->excess_bh_size, &bh->b_count);
  2421. return stage;
  2422. abort:
  2423. __idetape_kfree_stage(stage);
  2424. return NULL;
  2425. }
  2426. static idetape_stage_t *idetape_kmalloc_stage (idetape_tape_t *tape)
  2427. {
  2428. idetape_stage_t *cache_stage = tape->cache_stage;
  2429. #if IDETAPE_DEBUG_LOG
  2430. if (tape->debug_level >= 4)
  2431. printk(KERN_INFO "ide-tape: Reached idetape_kmalloc_stage\n");
  2432. #endif /* IDETAPE_DEBUG_LOG */
  2433. if (tape->nr_stages >= tape->max_stages)
  2434. return NULL;
  2435. if (cache_stage != NULL) {
  2436. tape->cache_stage = NULL;
  2437. return cache_stage;
  2438. }
  2439. return __idetape_kmalloc_stage(tape, 0, 0);
  2440. }
  2441. static int idetape_copy_stage_from_user (idetape_tape_t *tape, idetape_stage_t *stage, const char __user *buf, int n)
  2442. {
  2443. struct idetape_bh *bh = tape->bh;
  2444. int count;
  2445. int ret = 0;
  2446. while (n) {
  2447. #if IDETAPE_DEBUG_BUGS
  2448. if (bh == NULL) {
  2449. printk(KERN_ERR "ide-tape: bh == NULL in "
  2450. "idetape_copy_stage_from_user\n");
  2451. return 1;
  2452. }
  2453. #endif /* IDETAPE_DEBUG_BUGS */
  2454. count = min((unsigned int)(bh->b_size - atomic_read(&bh->b_count)), (unsigned int)n);
  2455. if (copy_from_user(bh->b_data + atomic_read(&bh->b_count), buf, count))
  2456. ret = 1;
  2457. n -= count;
  2458. atomic_add(count, &bh->b_count);
  2459. buf += count;
  2460. if (atomic_read(&bh->b_count) == bh->b_size) {
  2461. bh = bh->b_reqnext;
  2462. if (bh)
  2463. atomic_set(&bh->b_count, 0);
  2464. }
  2465. }
  2466. tape->bh = bh;
  2467. return ret;
  2468. }
  2469. static int idetape_copy_stage_to_user (idetape_tape_t *tape, char __user *buf, idetape_stage_t *stage, int n)
  2470. {
  2471. struct idetape_bh *bh = tape->bh;
  2472. int count;
  2473. int ret = 0;
  2474. while (n) {
  2475. #if IDETAPE_DEBUG_BUGS
  2476. if (bh == NULL) {
  2477. printk(KERN_ERR "ide-tape: bh == NULL in "
  2478. "idetape_copy_stage_to_user\n");
  2479. return 1;
  2480. }
  2481. #endif /* IDETAPE_DEBUG_BUGS */
  2482. count = min(tape->b_count, n);
  2483. if (copy_to_user(buf, tape->b_data, count))
  2484. ret = 1;
  2485. n -= count;
  2486. tape->b_data += count;
  2487. tape->b_count -= count;
  2488. buf += count;
  2489. if (!tape->b_count) {
  2490. tape->bh = bh = bh->b_reqnext;
  2491. if (bh) {
  2492. tape->b_data = bh->b_data;
  2493. tape->b_count = atomic_read(&bh->b_count);
  2494. }
  2495. }
  2496. }
  2497. return ret;
  2498. }
  2499. static void idetape_init_merge_stage (idetape_tape_t *tape)
  2500. {
  2501. struct idetape_bh *bh = tape->merge_stage->bh;
  2502. tape->bh = bh;
  2503. if (tape->chrdev_direction == idetape_direction_write)
  2504. atomic_set(&bh->b_count, 0);
  2505. else {
  2506. tape->b_data = bh->b_data;
  2507. tape->b_count = atomic_read(&bh->b_count);
  2508. }
  2509. }
  2510. static void idetape_switch_buffers (idetape_tape_t *tape, idetape_stage_t *stage)
  2511. {
  2512. struct idetape_bh *tmp;
  2513. tmp = stage->bh;
  2514. stage->bh = tape->merge_stage->bh;
  2515. tape->merge_stage->bh = tmp;
  2516. idetape_init_merge_stage(tape);
  2517. }
  2518. /*
  2519. * idetape_add_stage_tail adds a new stage at the end of the pipeline.
  2520. */
  2521. static void idetape_add_stage_tail (ide_drive_t *drive,idetape_stage_t *stage)
  2522. {
  2523. idetape_tape_t *tape = drive->driver_data;
  2524. unsigned long flags;
  2525. #if IDETAPE_DEBUG_LOG
  2526. if (tape->debug_level >= 4)
  2527. printk (KERN_INFO "ide-tape: Reached idetape_add_stage_tail\n");
  2528. #endif /* IDETAPE_DEBUG_LOG */
  2529. spin_lock_irqsave(&tape->spinlock, flags);
  2530. stage->next = NULL;
  2531. if (tape->last_stage != NULL)
  2532. tape->last_stage->next=stage;
  2533. else
  2534. tape->first_stage = tape->next_stage=stage;
  2535. tape->last_stage = stage;
  2536. if (tape->next_stage == NULL)
  2537. tape->next_stage = tape->last_stage;
  2538. tape->nr_stages++;
  2539. tape->nr_pending_stages++;
  2540. spin_unlock_irqrestore(&tape->spinlock, flags);
  2541. }
  2542. /*
  2543. * idetape_wait_for_request installs a completion in a pending request
  2544. * and sleeps until it is serviced.
  2545. *
  2546. * The caller should ensure that the request will not be serviced
  2547. * before we install the completion (usually by disabling interrupts).
  2548. */
  2549. static void idetape_wait_for_request (ide_drive_t *drive, struct request *rq)
  2550. {
  2551. DECLARE_COMPLETION_ONSTACK(wait);
  2552. idetape_tape_t *tape = drive->driver_data;
  2553. #if IDETAPE_DEBUG_BUGS
  2554. if (rq == NULL || !blk_special_request(rq)) {
  2555. printk (KERN_ERR "ide-tape: bug: Trying to sleep on non-valid request\n");
  2556. return;
  2557. }
  2558. #endif /* IDETAPE_DEBUG_BUGS */
  2559. rq->end_io_data = &wait;
  2560. rq->end_io = blk_end_sync_rq;
  2561. spin_unlock_irq(&tape->spinlock);
  2562. wait_for_completion(&wait);
  2563. /* The stage and its struct request have been deallocated */
  2564. spin_lock_irq(&tape->spinlock);
  2565. }
  2566. static ide_startstop_t idetape_read_position_callback (ide_drive_t *drive)
  2567. {
  2568. idetape_tape_t *tape = drive->driver_data;
  2569. idetape_read_position_result_t *result;
  2570. #if IDETAPE_DEBUG_LOG
  2571. if (tape->debug_level >= 4)
  2572. printk(KERN_INFO "ide-tape: Reached idetape_read_position_callback\n");
  2573. #endif /* IDETAPE_DEBUG_LOG */
  2574. if (!tape->pc->error) {
  2575. result = (idetape_read_position_result_t *) tape->pc->buffer;
  2576. #if IDETAPE_DEBUG_LOG
  2577. if (tape->debug_level >= 2)
  2578. printk(KERN_INFO "ide-tape: BOP - %s\n",result->bop ? "Yes":"No");
  2579. if (tape->debug_level >= 2)
  2580. printk(KERN_INFO "ide-tape: EOP - %s\n",result->eop ? "Yes":"No");
  2581. #endif /* IDETAPE_DEBUG_LOG */
  2582. if (result->bpu) {
  2583. printk(KERN_INFO "ide-tape: Block location is unknown to the tape\n");
  2584. clear_bit(IDETAPE_ADDRESS_VALID, &tape->flags);
  2585. idetape_end_request(drive, 0, 0);
  2586. } else {
  2587. #if IDETAPE_DEBUG_LOG
  2588. if (tape->debug_level >= 2)
  2589. printk(KERN_INFO "ide-tape: Block Location - %u\n", ntohl(result->first_block));
  2590. #endif /* IDETAPE_DEBUG_LOG */
  2591. tape->partition = result->partition;
  2592. tape->first_frame_position = ntohl(result->first_block);
  2593. tape->last_frame_position = ntohl(result->last_block);
  2594. tape->blocks_in_buffer = result->blocks_in_buffer[2];
  2595. set_bit(IDETAPE_ADDRESS_VALID, &tape->flags);
  2596. idetape_end_request(drive, 1, 0);
  2597. }
  2598. } else {
  2599. idetape_end_request(drive, 0, 0);
  2600. }
  2601. return ide_stopped;
  2602. }
  2603. /*
  2604. * idetape_create_write_filemark_cmd will:
  2605. *
  2606. * 1. Write a filemark if write_filemark=1.
  2607. * 2. Flush the device buffers without writing a filemark
  2608. * if write_filemark=0.
  2609. *
  2610. */
  2611. static void idetape_create_write_filemark_cmd (ide_drive_t *drive, idetape_pc_t *pc,int write_filemark)
  2612. {
  2613. idetape_init_pc(pc);
  2614. pc->c[0] = IDETAPE_WRITE_FILEMARK_CMD;
  2615. pc->c[4] = write_filemark;
  2616. set_bit(PC_WAIT_FOR_DSC, &pc->flags);
  2617. pc->callback = &idetape_pc_callback;
  2618. }
  2619. static void idetape_create_test_unit_ready_cmd(idetape_pc_t *pc)
  2620. {
  2621. idetape_init_pc(pc);
  2622. pc->c[0] = IDETAPE_TEST_UNIT_READY_CMD;
  2623. pc->callback = &idetape_pc_callback;
  2624. }
  2625. /*
  2626. * idetape_queue_pc_tail is based on the following functions:
  2627. *
  2628. * ide_do_drive_cmd from ide.c
  2629. * cdrom_queue_request and cdrom_queue_packet_command from ide-cd.c
  2630. *
  2631. * We add a special packet command request to the tail of the request
  2632. * queue, and wait for it to be serviced.
  2633. *
  2634. * This is not to be called from within the request handling part
  2635. * of the driver ! We allocate here data in the stack, and it is valid
  2636. * until the request is finished. This is not the case for the bottom
  2637. * part of the driver, where we are always leaving the functions to wait
  2638. * for an interrupt or a timer event.
  2639. *
  2640. * From the bottom part of the driver, we should allocate safe memory
  2641. * using idetape_next_pc_storage and idetape_next_rq_storage, and add
  2642. * the request to the request list without waiting for it to be serviced !
  2643. * In that case, we usually use idetape_queue_pc_head.
  2644. */
  2645. static int __idetape_queue_pc_tail (ide_drive_t *drive, idetape_pc_t *pc)
  2646. {
  2647. struct ide_tape_obj *tape = drive->driver_data;
  2648. struct request rq;
  2649. idetape_init_rq(&rq, REQ_IDETAPE_PC1);
  2650. rq.buffer = (char *) pc;
  2651. rq.rq_disk = tape->disk;
  2652. return ide_do_drive_cmd(drive, &rq, ide_wait);
  2653. }
  2654. static void idetape_create_load_unload_cmd (ide_drive_t *drive, idetape_pc_t *pc,int cmd)
  2655. {
  2656. idetape_init_pc(pc);
  2657. pc->c[0] = IDETAPE_LOAD_UNLOAD_CMD;
  2658. pc->c[4] = cmd;
  2659. set_bit(PC_WAIT_FOR_DSC, &pc->flags);
  2660. pc->callback = &idetape_pc_callback;
  2661. }
  2662. static int idetape_wait_ready(ide_drive_t *drive, unsigned long timeout)
  2663. {
  2664. idetape_tape_t *tape = drive->driver_data;
  2665. idetape_pc_t pc;
  2666. int load_attempted = 0;
  2667. /*
  2668. * Wait for the tape to become ready
  2669. */
  2670. set_bit(IDETAPE_MEDIUM_PRESENT, &tape->flags);
  2671. timeout += jiffies;
  2672. while (time_before(jiffies, timeout)) {
  2673. idetape_create_test_unit_ready_cmd(&pc);
  2674. if (!__idetape_queue_pc_tail(drive, &pc))
  2675. return 0;
  2676. if ((tape->sense_key == 2 && tape->asc == 4 && tape->ascq == 2)
  2677. || (tape->asc == 0x3A)) { /* no media */
  2678. if (load_attempted)
  2679. return -ENOMEDIUM;
  2680. idetape_create_load_unload_cmd(drive, &pc, IDETAPE_LU_LOAD_MASK);
  2681. __idetape_queue_pc_tail(drive, &pc);
  2682. load_attempted = 1;
  2683. /* not about to be ready */
  2684. } else if (!(tape->sense_key == 2 && tape->asc == 4 &&
  2685. (tape->ascq == 1 || tape->ascq == 8)))
  2686. return -EIO;
  2687. msleep(100);
  2688. }
  2689. return -EIO;
  2690. }
  2691. static int idetape_queue_pc_tail (ide_drive_t *drive,idetape_pc_t *pc)
  2692. {
  2693. return __idetape_queue_pc_tail(drive, pc);
  2694. }
  2695. static int idetape_flush_tape_buffers (ide_drive_t *drive)
  2696. {
  2697. idetape_pc_t pc;
  2698. int rc;
  2699. idetape_create_write_filemark_cmd(drive, &pc, 0);
  2700. if ((rc = idetape_queue_pc_tail(drive, &pc)))
  2701. return rc;
  2702. idetape_wait_ready(drive, 60 * 5 * HZ);
  2703. return 0;
  2704. }
  2705. static void idetape_create_read_position_cmd (idetape_pc_t *pc)
  2706. {
  2707. idetape_init_pc(pc);
  2708. pc->c[0] = IDETAPE_READ_POSITION_CMD;
  2709. pc->request_transfer = 20;
  2710. pc->callback = &idetape_read_position_callback;
  2711. }
  2712. static int idetape_read_position (ide_drive_t *drive)
  2713. {
  2714. idetape_tape_t *tape = drive->driver_data;
  2715. idetape_pc_t pc;
  2716. int position;
  2717. #if IDETAPE_DEBUG_LOG
  2718. if (tape->debug_level >= 4)
  2719. printk(KERN_INFO "ide-tape: Reached idetape_read_position\n");
  2720. #endif /* IDETAPE_DEBUG_LOG */
  2721. idetape_create_read_position_cmd(&pc);
  2722. if (idetape_queue_pc_tail(drive, &pc))
  2723. return -1;
  2724. position = tape->first_frame_position;
  2725. return position;
  2726. }
  2727. static void idetape_create_locate_cmd (ide_drive_t *drive, idetape_pc_t *pc, unsigned int block, u8 partition, int skip)
  2728. {
  2729. idetape_init_pc(pc);
  2730. pc->c[0] = IDETAPE_LOCATE_CMD;
  2731. pc->c[1] = 2;
  2732. put_unaligned(htonl(block), (unsigned int *) &pc->c[3]);
  2733. pc->c[8] = partition;
  2734. set_bit(PC_WAIT_FOR_DSC, &pc->flags);
  2735. pc->callback = &idetape_pc_callback;
  2736. }
  2737. static int idetape_create_prevent_cmd (ide_drive_t *drive, idetape_pc_t *pc, int prevent)
  2738. {
  2739. idetape_tape_t *tape = drive->driver_data;
  2740. if (!tape->capabilities.lock)
  2741. return 0;
  2742. idetape_init_pc(pc);
  2743. pc->c[0] = IDETAPE_PREVENT_CMD;
  2744. pc->c[4] = prevent;
  2745. pc->callback = &idetape_pc_callback;
  2746. return 1;
  2747. }
  2748. static int __idetape_discard_read_pipeline (ide_drive_t *drive)
  2749. {
  2750. idetape_tape_t *tape = drive->driver_data;
  2751. unsigned long flags;
  2752. int cnt;
  2753. if (tape->chrdev_direction != idetape_direction_read)
  2754. return 0;
  2755. /* Remove merge stage. */
  2756. cnt = tape->merge_stage_size / tape->tape_block_size;
  2757. if (test_and_clear_bit(IDETAPE_FILEMARK, &tape->flags))
  2758. ++cnt; /* Filemarks count as 1 sector */
  2759. tape->merge_stage_size = 0;
  2760. if (tape->merge_stage != NULL) {
  2761. __idetape_kfree_stage(tape->merge_stage);
  2762. tape->merge_stage = NULL;
  2763. }
  2764. /* Clear pipeline flags. */
  2765. clear_bit(IDETAPE_PIPELINE_ERROR, &tape->flags);
  2766. tape->chrdev_direction = idetape_direction_none;
  2767. /* Remove pipeline stages. */
  2768. if (tape->first_stage == NULL)
  2769. return 0;
  2770. spin_lock_irqsave(&tape->spinlock, flags);
  2771. tape->next_stage = NULL;
  2772. if (idetape_pipeline_active(tape))
  2773. idetape_wait_for_request(drive, tape->active_data_request);
  2774. spin_unlock_irqrestore(&tape->spinlock, flags);
  2775. while (tape->first_stage != NULL) {
  2776. struct request *rq_ptr = &tape->first_stage->rq;
  2777. cnt += rq_ptr->nr_sectors - rq_ptr->current_nr_sectors;
  2778. if (rq_ptr->errors == IDETAPE_ERROR_FILEMARK)
  2779. ++cnt;
  2780. idetape_remove_stage_head(drive);
  2781. }
  2782. tape->nr_pending_stages = 0;
  2783. tape->max_stages = tape->min_pipeline;
  2784. return cnt;
  2785. }
  2786. /*
  2787. * idetape_position_tape positions the tape to the requested block
  2788. * using the LOCATE packet command. A READ POSITION command is then
  2789. * issued to check where we are positioned.
  2790. *
  2791. * Like all higher level operations, we queue the commands at the tail
  2792. * of the request queue and wait for their completion.
  2793. *
  2794. */
  2795. static int idetape_position_tape (ide_drive_t *drive, unsigned int block, u8 partition, int skip)
  2796. {
  2797. idetape_tape_t *tape = drive->driver_data;
  2798. int retval;
  2799. idetape_pc_t pc;
  2800. if (tape->chrdev_direction == idetape_direction_read)
  2801. __idetape_discard_read_pipeline(drive);
  2802. idetape_wait_ready(drive, 60 * 5 * HZ);
  2803. idetape_create_locate_cmd(drive, &pc, block, partition, skip);
  2804. retval = idetape_queue_pc_tail(drive, &pc);
  2805. if (retval)
  2806. return (retval);
  2807. idetape_create_read_position_cmd(&pc);
  2808. return (idetape_queue_pc_tail(drive, &pc));
  2809. }
  2810. static void idetape_discard_read_pipeline (ide_drive_t *drive, int restore_position)
  2811. {
  2812. idetape_tape_t *tape = drive->driver_data;
  2813. int cnt;
  2814. int seek, position;
  2815. cnt = __idetape_discard_read_pipeline(drive);
  2816. if (restore_position) {
  2817. position = idetape_read_position(drive);
  2818. seek = position > cnt ? position - cnt : 0;
  2819. if (idetape_position_tape(drive, seek, 0, 0)) {
  2820. printk(KERN_INFO "ide-tape: %s: position_tape failed in discard_pipeline()\n", tape->name);
  2821. return;
  2822. }
  2823. }
  2824. }
  2825. /*
  2826. * idetape_queue_rw_tail generates a read/write request for the block
  2827. * device interface and wait for it to be serviced.
  2828. */
  2829. static int idetape_queue_rw_tail(ide_drive_t *drive, int cmd, int blocks, struct idetape_bh *bh)
  2830. {
  2831. idetape_tape_t *tape = drive->driver_data;
  2832. struct request rq;
  2833. #if IDETAPE_DEBUG_LOG
  2834. if (tape->debug_level >= 2)
  2835. printk(KERN_INFO "ide-tape: idetape_queue_rw_tail: cmd=%d\n",cmd);
  2836. #endif /* IDETAPE_DEBUG_LOG */
  2837. #if IDETAPE_DEBUG_BUGS
  2838. if (idetape_pipeline_active(tape)) {
  2839. printk(KERN_ERR "ide-tape: bug: the pipeline is active in idetape_queue_rw_tail\n");
  2840. return (0);
  2841. }
  2842. #endif /* IDETAPE_DEBUG_BUGS */
  2843. idetape_init_rq(&rq, cmd);
  2844. rq.rq_disk = tape->disk;
  2845. rq.special = (void *)bh;
  2846. rq.sector = tape->first_frame_position;
  2847. rq.nr_sectors = rq.current_nr_sectors = blocks;
  2848. (void) ide_do_drive_cmd(drive, &rq, ide_wait);
  2849. if ((cmd & (REQ_IDETAPE_READ | REQ_IDETAPE_WRITE)) == 0)
  2850. return 0;
  2851. if (tape->merge_stage)
  2852. idetape_init_merge_stage(tape);
  2853. if (rq.errors == IDETAPE_ERROR_GENERAL)
  2854. return -EIO;
  2855. return (tape->tape_block_size * (blocks-rq.current_nr_sectors));
  2856. }
  2857. /*
  2858. * idetape_insert_pipeline_into_queue is used to start servicing the
  2859. * pipeline stages, starting from tape->next_stage.
  2860. */
  2861. static void idetape_insert_pipeline_into_queue (ide_drive_t *drive)
  2862. {
  2863. idetape_tape_t *tape = drive->driver_data;
  2864. if (tape->next_stage == NULL)
  2865. return;
  2866. if (!idetape_pipeline_active(tape)) {
  2867. set_bit(IDETAPE_PIPELINE_ACTIVE, &tape->flags);
  2868. idetape_active_next_stage(drive);
  2869. (void) ide_do_drive_cmd(drive, tape->active_data_request, ide_end);
  2870. }
  2871. }
  2872. static void idetape_create_inquiry_cmd (idetape_pc_t *pc)
  2873. {
  2874. idetape_init_pc(pc);
  2875. pc->c[0] = IDETAPE_INQUIRY_CMD;
  2876. pc->c[4] = pc->request_transfer = 254;
  2877. pc->callback = &idetape_pc_callback;
  2878. }
  2879. static void idetape_create_rewind_cmd (ide_drive_t *drive, idetape_pc_t *pc)
  2880. {
  2881. idetape_init_pc(pc);
  2882. pc->c[0] = IDETAPE_REWIND_CMD;
  2883. set_bit(PC_WAIT_FOR_DSC, &pc->flags);
  2884. pc->callback = &idetape_pc_callback;
  2885. }
  2886. #if 0
  2887. static void idetape_create_mode_select_cmd (idetape_pc_t *pc, int length)
  2888. {
  2889. idetape_init_pc(pc);
  2890. set_bit(PC_WRITING, &pc->flags);
  2891. pc->c[0] = IDETAPE_MODE_SELECT_CMD;
  2892. pc->c[1] = 0x10;
  2893. put_unaligned(htons(length), (unsigned short *) &pc->c[3]);
  2894. pc->request_transfer = 255;
  2895. pc->callback = &idetape_pc_callback;
  2896. }
  2897. #endif
  2898. static void idetape_create_erase_cmd (idetape_pc_t *pc)
  2899. {
  2900. idetape_init_pc(pc);
  2901. pc->c[0] = IDETAPE_ERASE_CMD;
  2902. pc->c[1] = 1;
  2903. set_bit(PC_WAIT_FOR_DSC, &pc->flags);
  2904. pc->callback = &idetape_pc_callback;
  2905. }
  2906. static void idetape_create_space_cmd (idetape_pc_t *pc,int count, u8 cmd)
  2907. {
  2908. idetape_init_pc(pc);
  2909. pc->c[0] = IDETAPE_SPACE_CMD;
  2910. put_unaligned(htonl(count), (unsigned int *) &pc->c[1]);
  2911. pc->c[1] = cmd;
  2912. set_bit(PC_WAIT_FOR_DSC, &pc->flags);
  2913. pc->callback = &idetape_pc_callback;
  2914. }
  2915. static void idetape_wait_first_stage (ide_drive_t *drive)
  2916. {
  2917. idetape_tape_t *tape = drive->driver_data;
  2918. unsigned long flags;
  2919. if (tape->first_stage == NULL)
  2920. return;
  2921. spin_lock_irqsave(&tape->spinlock, flags);
  2922. if (tape->active_stage == tape->first_stage)
  2923. idetape_wait_for_request(drive, tape->active_data_request);
  2924. spin_unlock_irqrestore(&tape->spinlock, flags);
  2925. }
  2926. /*
  2927. * idetape_add_chrdev_write_request tries to add a character device
  2928. * originated write request to our pipeline. In case we don't succeed,
  2929. * we revert to non-pipelined operation mode for this request.
  2930. *
  2931. * 1. Try to allocate a new pipeline stage.
  2932. * 2. If we can't, wait for more and more requests to be serviced
  2933. * and try again each time.
  2934. * 3. If we still can't allocate a stage, fallback to
  2935. * non-pipelined operation mode for this request.
  2936. */
  2937. static int idetape_add_chrdev_write_request (ide_drive_t *drive, int blocks)
  2938. {
  2939. idetape_tape_t *tape = drive->driver_data;
  2940. idetape_stage_t *new_stage;
  2941. unsigned long flags;
  2942. struct request *rq;
  2943. #if IDETAPE_DEBUG_LOG
  2944. if (tape->debug_level >= 3)
  2945. printk(KERN_INFO "ide-tape: Reached idetape_add_chrdev_write_request\n");
  2946. #endif /* IDETAPE_DEBUG_LOG */
  2947. /*
  2948. * Attempt to allocate a new stage.
  2949. * Pay special attention to possible race conditions.
  2950. */
  2951. while ((new_stage = idetape_kmalloc_stage(tape)) == NULL) {
  2952. spin_lock_irqsave(&tape->spinlock, flags);
  2953. if (idetape_pipeline_active(tape)) {
  2954. idetape_wait_for_request(drive, tape->active_data_request);
  2955. spin_unlock_irqrestore(&tape->spinlock, flags);
  2956. } else {
  2957. spin_unlock_irqrestore(&tape->spinlock, flags);
  2958. idetape_insert_pipeline_into_queue(drive);
  2959. if (idetape_pipeline_active(tape))
  2960. continue;
  2961. /*
  2962. * Linux is short on memory. Fallback to
  2963. * non-pipelined operation mode for this request.
  2964. */
  2965. return idetape_queue_rw_tail(drive, REQ_IDETAPE_WRITE, blocks, tape->merge_stage->bh);
  2966. }
  2967. }
  2968. rq = &new_stage->rq;
  2969. idetape_init_rq(rq, REQ_IDETAPE_WRITE);
  2970. /* Doesn't actually matter - We always assume sequential access */
  2971. rq->sector = tape->first_frame_position;
  2972. rq->nr_sectors = rq->current_nr_sectors = blocks;
  2973. idetape_switch_buffers(tape, new_stage);
  2974. idetape_add_stage_tail(drive, new_stage);
  2975. tape->pipeline_head++;
  2976. calculate_speeds(drive);
  2977. /*
  2978. * Estimate whether the tape has stopped writing by checking
  2979. * if our write pipeline is currently empty. If we are not
  2980. * writing anymore, wait for the pipeline to be full enough
  2981. * (90%) before starting to service requests, so that we will
  2982. * be able to keep up with the higher speeds of the tape.
  2983. */
  2984. if (!idetape_pipeline_active(tape)) {
  2985. if (tape->nr_stages >= tape->max_stages * 9 / 10 ||
  2986. tape->nr_stages >= tape->max_stages - tape->uncontrolled_pipeline_head_speed * 3 * 1024 / tape->tape_block_size) {
  2987. tape->measure_insert_time = 1;
  2988. tape->insert_time = jiffies;
  2989. tape->insert_size = 0;
  2990. tape->insert_speed = 0;
  2991. idetape_insert_pipeline_into_queue(drive);
  2992. }
  2993. }
  2994. if (test_and_clear_bit(IDETAPE_PIPELINE_ERROR, &tape->flags))
  2995. /* Return a deferred error */
  2996. return -EIO;
  2997. return blocks;
  2998. }
  2999. /*
  3000. * idetape_wait_for_pipeline will wait until all pending pipeline
  3001. * requests are serviced. Typically called on device close.
  3002. */
  3003. static void idetape_wait_for_pipeline (ide_drive_t *drive)
  3004. {
  3005. idetape_tape_t *tape = drive->driver_data;
  3006. unsigned long flags;
  3007. while (tape->next_stage || idetape_pipeline_active(tape)) {
  3008. idetape_insert_pipeline_into_queue(drive);
  3009. spin_lock_irqsave(&tape->spinlock, flags);
  3010. if (idetape_pipeline_active(tape))
  3011. idetape_wait_for_request(drive, tape->active_data_request);
  3012. spin_unlock_irqrestore(&tape->spinlock, flags);
  3013. }
  3014. }
  3015. static void idetape_empty_write_pipeline (ide_drive_t *drive)
  3016. {
  3017. idetape_tape_t *tape = drive->driver_data;
  3018. int blocks, min;
  3019. struct idetape_bh *bh;
  3020. #if IDETAPE_DEBUG_BUGS
  3021. if (tape->chrdev_direction != idetape_direction_write) {
  3022. printk(KERN_ERR "ide-tape: bug: Trying to empty write pipeline, but we are not writing.\n");
  3023. return;
  3024. }
  3025. if (tape->merge_stage_size > tape->stage_size) {
  3026. printk(KERN_ERR "ide-tape: bug: merge_buffer too big\n");
  3027. tape->merge_stage_size = tape->stage_size;
  3028. }
  3029. #endif /* IDETAPE_DEBUG_BUGS */
  3030. if (tape->merge_stage_size) {
  3031. blocks = tape->merge_stage_size / tape->tape_block_size;
  3032. if (tape->merge_stage_size % tape->tape_block_size) {
  3033. unsigned int i;
  3034. blocks++;
  3035. i = tape->tape_block_size - tape->merge_stage_size % tape->tape_block_size;
  3036. bh = tape->bh->b_reqnext;
  3037. while (bh) {
  3038. atomic_set(&bh->b_count, 0);
  3039. bh = bh->b_reqnext;
  3040. }
  3041. bh = tape->bh;
  3042. while (i) {
  3043. if (bh == NULL) {
  3044. printk(KERN_INFO "ide-tape: bug, bh NULL\n");
  3045. break;
  3046. }
  3047. min = min(i, (unsigned int)(bh->b_size - atomic_read(&bh->b_count)));
  3048. memset(bh->b_data + atomic_read(&bh->b_count), 0, min);
  3049. atomic_add(min, &bh->b_count);
  3050. i -= min;
  3051. bh = bh->b_reqnext;
  3052. }
  3053. }
  3054. (void) idetape_add_chrdev_write_request(drive, blocks);
  3055. tape->merge_stage_size = 0;
  3056. }
  3057. idetape_wait_for_pipeline(drive);
  3058. if (tape->merge_stage != NULL) {
  3059. __idetape_kfree_stage(tape->merge_stage);
  3060. tape->merge_stage = NULL;
  3061. }
  3062. clear_bit(IDETAPE_PIPELINE_ERROR, &tape->flags);
  3063. tape->chrdev_direction = idetape_direction_none;
  3064. /*
  3065. * On the next backup, perform the feedback loop again.
  3066. * (I don't want to keep sense information between backups,
  3067. * as some systems are constantly on, and the system load
  3068. * can be totally different on the next backup).
  3069. */
  3070. tape->max_stages = tape->min_pipeline;
  3071. #if IDETAPE_DEBUG_BUGS
  3072. if (tape->first_stage != NULL ||
  3073. tape->next_stage != NULL ||
  3074. tape->last_stage != NULL ||
  3075. tape->nr_stages != 0) {
  3076. printk(KERN_ERR "ide-tape: ide-tape pipeline bug, "
  3077. "first_stage %p, next_stage %p, "
  3078. "last_stage %p, nr_stages %d\n",
  3079. tape->first_stage, tape->next_stage,
  3080. tape->last_stage, tape->nr_stages);
  3081. }
  3082. #endif /* IDETAPE_DEBUG_BUGS */
  3083. }
  3084. static void idetape_restart_speed_control (ide_drive_t *drive)
  3085. {
  3086. idetape_tape_t *tape = drive->driver_data;
  3087. tape->restart_speed_control_req = 0;
  3088. tape->pipeline_head = 0;
  3089. tape->controlled_last_pipeline_head = tape->uncontrolled_last_pipeline_head = 0;
  3090. tape->controlled_previous_pipeline_head = tape->uncontrolled_previous_pipeline_head = 0;
  3091. tape->pipeline_head_speed = tape->controlled_pipeline_head_speed = 5000;
  3092. tape->uncontrolled_pipeline_head_speed = 0;
  3093. tape->controlled_pipeline_head_time = tape->uncontrolled_pipeline_head_time = jiffies;
  3094. tape->controlled_previous_head_time = tape->uncontrolled_previous_head_time = jiffies;
  3095. }
  3096. static int idetape_initiate_read (ide_drive_t *drive, int max_stages)
  3097. {
  3098. idetape_tape_t *tape = drive->driver_data;
  3099. idetape_stage_t *new_stage;
  3100. struct request rq;
  3101. int bytes_read;
  3102. int blocks = tape->capabilities.ctl;
  3103. /* Initialize read operation */
  3104. if (tape->chrdev_direction != idetape_direction_read) {
  3105. if (tape->chrdev_direction == idetape_direction_write) {
  3106. idetape_empty_write_pipeline(drive);
  3107. idetape_flush_tape_buffers(drive);
  3108. }
  3109. #if IDETAPE_DEBUG_BUGS
  3110. if (tape->merge_stage || tape->merge_stage_size) {
  3111. printk (KERN_ERR "ide-tape: merge_stage_size should be 0 now\n");
  3112. tape->merge_stage_size = 0;
  3113. }
  3114. #endif /* IDETAPE_DEBUG_BUGS */
  3115. if ((tape->merge_stage = __idetape_kmalloc_stage(tape, 0, 0)) == NULL)
  3116. return -ENOMEM;
  3117. tape->chrdev_direction = idetape_direction_read;
  3118. /*
  3119. * Issue a read 0 command to ensure that DSC handshake
  3120. * is switched from completion mode to buffer available
  3121. * mode.
  3122. * No point in issuing this if DSC overlap isn't supported,
  3123. * some drives (Seagate STT3401A) will return an error.
  3124. */
  3125. if (drive->dsc_overlap) {
  3126. bytes_read = idetape_queue_rw_tail(drive, REQ_IDETAPE_READ, 0, tape->merge_stage->bh);
  3127. if (bytes_read < 0) {
  3128. __idetape_kfree_stage(tape->merge_stage);
  3129. tape->merge_stage = NULL;
  3130. tape->chrdev_direction = idetape_direction_none;
  3131. return bytes_read;
  3132. }
  3133. }
  3134. }
  3135. if (tape->restart_speed_control_req)
  3136. idetape_restart_speed_control(drive);
  3137. idetape_init_rq(&rq, REQ_IDETAPE_READ);
  3138. rq.sector = tape->first_frame_position;
  3139. rq.nr_sectors = rq.current_nr_sectors = blocks;
  3140. if (!test_bit(IDETAPE_PIPELINE_ERROR, &tape->flags) &&
  3141. tape->nr_stages < max_stages) {
  3142. new_stage = idetape_kmalloc_stage(tape);
  3143. while (new_stage != NULL) {
  3144. new_stage->rq = rq;
  3145. idetape_add_stage_tail(drive, new_stage);
  3146. if (tape->nr_stages >= max_stages)
  3147. break;
  3148. new_stage = idetape_kmalloc_stage(tape);
  3149. }
  3150. }
  3151. if (!idetape_pipeline_active(tape)) {
  3152. if (tape->nr_pending_stages >= 3 * max_stages / 4) {
  3153. tape->measure_insert_time = 1;
  3154. tape->insert_time = jiffies;
  3155. tape->insert_size = 0;
  3156. tape->insert_speed = 0;
  3157. idetape_insert_pipeline_into_queue(drive);
  3158. }
  3159. }
  3160. return 0;
  3161. }
  3162. /*
  3163. * idetape_add_chrdev_read_request is called from idetape_chrdev_read
  3164. * to service a character device read request and add read-ahead
  3165. * requests to our pipeline.
  3166. */
  3167. static int idetape_add_chrdev_read_request (ide_drive_t *drive,int blocks)
  3168. {
  3169. idetape_tape_t *tape = drive->driver_data;
  3170. unsigned long flags;
  3171. struct request *rq_ptr;
  3172. int bytes_read;
  3173. #if IDETAPE_DEBUG_LOG
  3174. if (tape->debug_level >= 4)
  3175. printk(KERN_INFO "ide-tape: Reached idetape_add_chrdev_read_request, %d blocks\n", blocks);
  3176. #endif /* IDETAPE_DEBUG_LOG */
  3177. /*
  3178. * If we are at a filemark, return a read length of 0
  3179. */
  3180. if (test_bit(IDETAPE_FILEMARK, &tape->flags))
  3181. return 0;
  3182. /*
  3183. * Wait for the next block to be available at the head
  3184. * of the pipeline
  3185. */
  3186. idetape_initiate_read(drive, tape->max_stages);
  3187. if (tape->first_stage == NULL) {
  3188. if (test_bit(IDETAPE_PIPELINE_ERROR, &tape->flags))
  3189. return 0;
  3190. return idetape_queue_rw_tail(drive, REQ_IDETAPE_READ, blocks, tape->merge_stage->bh);
  3191. }
  3192. idetape_wait_first_stage(drive);
  3193. rq_ptr = &tape->first_stage->rq;
  3194. bytes_read = tape->tape_block_size * (rq_ptr->nr_sectors - rq_ptr->current_nr_sectors);
  3195. rq_ptr->nr_sectors = rq_ptr->current_nr_sectors = 0;
  3196. if (rq_ptr->errors == IDETAPE_ERROR_EOD)
  3197. return 0;
  3198. else {
  3199. idetape_switch_buffers(tape, tape->first_stage);
  3200. if (rq_ptr->errors == IDETAPE_ERROR_FILEMARK)
  3201. set_bit(IDETAPE_FILEMARK, &tape->flags);
  3202. spin_lock_irqsave(&tape->spinlock, flags);
  3203. idetape_remove_stage_head(drive);
  3204. spin_unlock_irqrestore(&tape->spinlock, flags);
  3205. tape->pipeline_head++;
  3206. calculate_speeds(drive);
  3207. }
  3208. #if IDETAPE_DEBUG_BUGS
  3209. if (bytes_read > blocks * tape->tape_block_size) {
  3210. printk(KERN_ERR "ide-tape: bug: trying to return more bytes than requested\n");
  3211. bytes_read = blocks * tape->tape_block_size;
  3212. }
  3213. #endif /* IDETAPE_DEBUG_BUGS */
  3214. return (bytes_read);
  3215. }
  3216. static void idetape_pad_zeros (ide_drive_t *drive, int bcount)
  3217. {
  3218. idetape_tape_t *tape = drive->driver_data;
  3219. struct idetape_bh *bh;
  3220. int blocks;
  3221. while (bcount) {
  3222. unsigned int count;
  3223. bh = tape->merge_stage->bh;
  3224. count = min(tape->stage_size, bcount);
  3225. bcount -= count;
  3226. blocks = count / tape->tape_block_size;
  3227. while (count) {
  3228. atomic_set(&bh->b_count, min(count, (unsigned int)bh->b_size));
  3229. memset(bh->b_data, 0, atomic_read(&bh->b_count));
  3230. count -= atomic_read(&bh->b_count);
  3231. bh = bh->b_reqnext;
  3232. }
  3233. idetape_queue_rw_tail(drive, REQ_IDETAPE_WRITE, blocks, tape->merge_stage->bh);
  3234. }
  3235. }
  3236. static int idetape_pipeline_size (ide_drive_t *drive)
  3237. {
  3238. idetape_tape_t *tape = drive->driver_data;
  3239. idetape_stage_t *stage;
  3240. struct request *rq;
  3241. int size = 0;
  3242. idetape_wait_for_pipeline(drive);
  3243. stage = tape->first_stage;
  3244. while (stage != NULL) {
  3245. rq = &stage->rq;
  3246. size += tape->tape_block_size * (rq->nr_sectors-rq->current_nr_sectors);
  3247. if (rq->errors == IDETAPE_ERROR_FILEMARK)
  3248. size += tape->tape_block_size;
  3249. stage = stage->next;
  3250. }
  3251. size += tape->merge_stage_size;
  3252. return size;
  3253. }
  3254. /*
  3255. * Rewinds the tape to the Beginning Of the current Partition (BOP).
  3256. *
  3257. * We currently support only one partition.
  3258. */
  3259. static int idetape_rewind_tape (ide_drive_t *drive)
  3260. {
  3261. int retval;
  3262. idetape_pc_t pc;
  3263. #if IDETAPE_DEBUG_LOG
  3264. idetape_tape_t *tape = drive->driver_data;
  3265. if (tape->debug_level >= 2)
  3266. printk(KERN_INFO "ide-tape: Reached idetape_rewind_tape\n");
  3267. #endif /* IDETAPE_DEBUG_LOG */
  3268. idetape_create_rewind_cmd(drive, &pc);
  3269. retval = idetape_queue_pc_tail(drive, &pc);
  3270. if (retval)
  3271. return retval;
  3272. idetape_create_read_position_cmd(&pc);
  3273. retval = idetape_queue_pc_tail(drive, &pc);
  3274. if (retval)
  3275. return retval;
  3276. return 0;
  3277. }
  3278. /*
  3279. * Our special ide-tape ioctl's.
  3280. *
  3281. * Currently there aren't any ioctl's.
  3282. * mtio.h compatible commands should be issued to the character device
  3283. * interface.
  3284. */
  3285. static int idetape_blkdev_ioctl(ide_drive_t *drive, unsigned int cmd, unsigned long arg)
  3286. {
  3287. idetape_tape_t *tape = drive->driver_data;
  3288. idetape_config_t config;
  3289. void __user *argp = (void __user *)arg;
  3290. #if IDETAPE_DEBUG_LOG
  3291. if (tape->debug_level >= 4)
  3292. printk(KERN_INFO "ide-tape: Reached idetape_blkdev_ioctl\n");
  3293. #endif /* IDETAPE_DEBUG_LOG */
  3294. switch (cmd) {
  3295. case 0x0340:
  3296. if (copy_from_user(&config, argp, sizeof (idetape_config_t)))
  3297. return -EFAULT;
  3298. tape->best_dsc_rw_frequency = config.dsc_rw_frequency;
  3299. tape->max_stages = config.nr_stages;
  3300. break;
  3301. case 0x0350:
  3302. config.dsc_rw_frequency = (int) tape->best_dsc_rw_frequency;
  3303. config.nr_stages = tape->max_stages;
  3304. if (copy_to_user(argp, &config, sizeof (idetape_config_t)))
  3305. return -EFAULT;
  3306. break;
  3307. default:
  3308. return -EIO;
  3309. }
  3310. return 0;
  3311. }
  3312. /*
  3313. * idetape_space_over_filemarks is now a bit more complicated than just
  3314. * passing the command to the tape since we may have crossed some
  3315. * filemarks during our pipelined read-ahead mode.
  3316. *
  3317. * As a minor side effect, the pipeline enables us to support MTFSFM when
  3318. * the filemark is in our internal pipeline even if the tape doesn't
  3319. * support spacing over filemarks in the reverse direction.
  3320. */
  3321. static int idetape_space_over_filemarks (ide_drive_t *drive,short mt_op,int mt_count)
  3322. {
  3323. idetape_tape_t *tape = drive->driver_data;
  3324. idetape_pc_t pc;
  3325. unsigned long flags;
  3326. int retval,count=0;
  3327. if (mt_count == 0)
  3328. return 0;
  3329. if (MTBSF == mt_op || MTBSFM == mt_op) {
  3330. if (!tape->capabilities.sprev)
  3331. return -EIO;
  3332. mt_count = - mt_count;
  3333. }
  3334. if (tape->chrdev_direction == idetape_direction_read) {
  3335. /*
  3336. * We have a read-ahead buffer. Scan it for crossed
  3337. * filemarks.
  3338. */
  3339. tape->merge_stage_size = 0;
  3340. if (test_and_clear_bit(IDETAPE_FILEMARK, &tape->flags))
  3341. ++count;
  3342. while (tape->first_stage != NULL) {
  3343. if (count == mt_count) {
  3344. if (mt_op == MTFSFM)
  3345. set_bit(IDETAPE_FILEMARK, &tape->flags);
  3346. return 0;
  3347. }
  3348. spin_lock_irqsave(&tape->spinlock, flags);
  3349. if (tape->first_stage == tape->active_stage) {
  3350. /*
  3351. * We have reached the active stage in the read pipeline.
  3352. * There is no point in allowing the drive to continue
  3353. * reading any farther, so we stop the pipeline.
  3354. *
  3355. * This section should be moved to a separate subroutine,
  3356. * because a similar function is performed in
  3357. * __idetape_discard_read_pipeline(), for example.
  3358. */
  3359. tape->next_stage = NULL;
  3360. spin_unlock_irqrestore(&tape->spinlock, flags);
  3361. idetape_wait_first_stage(drive);
  3362. tape->next_stage = tape->first_stage->next;
  3363. } else
  3364. spin_unlock_irqrestore(&tape->spinlock, flags);
  3365. if (tape->first_stage->rq.errors == IDETAPE_ERROR_FILEMARK)
  3366. ++count;
  3367. idetape_remove_stage_head(drive);
  3368. }
  3369. idetape_discard_read_pipeline(drive, 0);
  3370. }
  3371. /*
  3372. * The filemark was not found in our internal pipeline.
  3373. * Now we can issue the space command.
  3374. */
  3375. switch (mt_op) {
  3376. case MTFSF:
  3377. case MTBSF:
  3378. idetape_create_space_cmd(&pc,mt_count-count,IDETAPE_SPACE_OVER_FILEMARK);
  3379. return (idetape_queue_pc_tail(drive, &pc));
  3380. case MTFSFM:
  3381. case MTBSFM:
  3382. if (!tape->capabilities.sprev)
  3383. return (-EIO);
  3384. retval = idetape_space_over_filemarks(drive, MTFSF, mt_count-count);
  3385. if (retval) return (retval);
  3386. count = (MTBSFM == mt_op ? 1 : -1);
  3387. return (idetape_space_over_filemarks(drive, MTFSF, count));
  3388. default:
  3389. printk(KERN_ERR "ide-tape: MTIO operation %d not supported\n",mt_op);
  3390. return (-EIO);
  3391. }
  3392. }
  3393. /*
  3394. * Our character device read / write functions.
  3395. *
  3396. * The tape is optimized to maximize throughput when it is transferring
  3397. * an integral number of the "continuous transfer limit", which is
  3398. * a parameter of the specific tape (26 KB on my particular tape).
  3399. * (32 kB for Onstream)
  3400. *
  3401. * As of version 1.3 of the driver, the character device provides an
  3402. * abstract continuous view of the media - any mix of block sizes (even 1
  3403. * byte) on the same backup/restore procedure is supported. The driver
  3404. * will internally convert the requests to the recommended transfer unit,
  3405. * so that an unmatch between the user's block size to the recommended
  3406. * size will only result in a (slightly) increased driver overhead, but
  3407. * will no longer hit performance.
  3408. * This is not applicable to Onstream.
  3409. */
  3410. static ssize_t idetape_chrdev_read (struct file *file, char __user *buf,
  3411. size_t count, loff_t *ppos)
  3412. {
  3413. struct ide_tape_obj *tape = ide_tape_f(file);
  3414. ide_drive_t *drive = tape->drive;
  3415. ssize_t bytes_read,temp, actually_read = 0, rc;
  3416. ssize_t ret = 0;
  3417. #if IDETAPE_DEBUG_LOG
  3418. if (tape->debug_level >= 3)
  3419. printk(KERN_INFO "ide-tape: Reached idetape_chrdev_read, count %Zd\n", count);
  3420. #endif /* IDETAPE_DEBUG_LOG */
  3421. if (tape->chrdev_direction != idetape_direction_read) {
  3422. if (test_bit(IDETAPE_DETECT_BS, &tape->flags))
  3423. if (count > tape->tape_block_size &&
  3424. (count % tape->tape_block_size) == 0)
  3425. tape->user_bs_factor = count / tape->tape_block_size;
  3426. }
  3427. if ((rc = idetape_initiate_read(drive, tape->max_stages)) < 0)
  3428. return rc;
  3429. if (count == 0)
  3430. return (0);
  3431. if (tape->merge_stage_size) {
  3432. actually_read = min((unsigned int)(tape->merge_stage_size), (unsigned int)count);
  3433. if (idetape_copy_stage_to_user(tape, buf, tape->merge_stage, actually_read))
  3434. ret = -EFAULT;
  3435. buf += actually_read;
  3436. tape->merge_stage_size -= actually_read;
  3437. count -= actually_read;
  3438. }
  3439. while (count >= tape->stage_size) {
  3440. bytes_read = idetape_add_chrdev_read_request(drive, tape->capabilities.ctl);
  3441. if (bytes_read <= 0)
  3442. goto finish;
  3443. if (idetape_copy_stage_to_user(tape, buf, tape->merge_stage, bytes_read))
  3444. ret = -EFAULT;
  3445. buf += bytes_read;
  3446. count -= bytes_read;
  3447. actually_read += bytes_read;
  3448. }
  3449. if (count) {
  3450. bytes_read = idetape_add_chrdev_read_request(drive, tape->capabilities.ctl);
  3451. if (bytes_read <= 0)
  3452. goto finish;
  3453. temp = min((unsigned long)count, (unsigned long)bytes_read);
  3454. if (idetape_copy_stage_to_user(tape, buf, tape->merge_stage, temp))
  3455. ret = -EFAULT;
  3456. actually_read += temp;
  3457. tape->merge_stage_size = bytes_read-temp;
  3458. }
  3459. finish:
  3460. if (!actually_read && test_bit(IDETAPE_FILEMARK, &tape->flags)) {
  3461. #if IDETAPE_DEBUG_LOG
  3462. if (tape->debug_level >= 2)
  3463. printk(KERN_INFO "ide-tape: %s: spacing over filemark\n", tape->name);
  3464. #endif
  3465. idetape_space_over_filemarks(drive, MTFSF, 1);
  3466. return 0;
  3467. }
  3468. return (ret) ? ret : actually_read;
  3469. }
  3470. static ssize_t idetape_chrdev_write (struct file *file, const char __user *buf,
  3471. size_t count, loff_t *ppos)
  3472. {
  3473. struct ide_tape_obj *tape = ide_tape_f(file);
  3474. ide_drive_t *drive = tape->drive;
  3475. ssize_t actually_written = 0;
  3476. ssize_t ret = 0;
  3477. /* The drive is write protected. */
  3478. if (tape->write_prot)
  3479. return -EACCES;
  3480. #if IDETAPE_DEBUG_LOG
  3481. if (tape->debug_level >= 3)
  3482. printk(KERN_INFO "ide-tape: Reached idetape_chrdev_write, "
  3483. "count %Zd\n", count);
  3484. #endif /* IDETAPE_DEBUG_LOG */
  3485. /* Initialize write operation */
  3486. if (tape->chrdev_direction != idetape_direction_write) {
  3487. if (tape->chrdev_direction == idetape_direction_read)
  3488. idetape_discard_read_pipeline(drive, 1);
  3489. #if IDETAPE_DEBUG_BUGS
  3490. if (tape->merge_stage || tape->merge_stage_size) {
  3491. printk(KERN_ERR "ide-tape: merge_stage_size "
  3492. "should be 0 now\n");
  3493. tape->merge_stage_size = 0;
  3494. }
  3495. #endif /* IDETAPE_DEBUG_BUGS */
  3496. if ((tape->merge_stage = __idetape_kmalloc_stage(tape, 0, 0)) == NULL)
  3497. return -ENOMEM;
  3498. tape->chrdev_direction = idetape_direction_write;
  3499. idetape_init_merge_stage(tape);
  3500. /*
  3501. * Issue a write 0 command to ensure that DSC handshake
  3502. * is switched from completion mode to buffer available
  3503. * mode.
  3504. * No point in issuing this if DSC overlap isn't supported,
  3505. * some drives (Seagate STT3401A) will return an error.
  3506. */
  3507. if (drive->dsc_overlap) {
  3508. ssize_t retval = idetape_queue_rw_tail(drive, REQ_IDETAPE_WRITE, 0, tape->merge_stage->bh);
  3509. if (retval < 0) {
  3510. __idetape_kfree_stage(tape->merge_stage);
  3511. tape->merge_stage = NULL;
  3512. tape->chrdev_direction = idetape_direction_none;
  3513. return retval;
  3514. }
  3515. }
  3516. }
  3517. if (count == 0)
  3518. return (0);
  3519. if (tape->restart_speed_control_req)
  3520. idetape_restart_speed_control(drive);
  3521. if (tape->merge_stage_size) {
  3522. #if IDETAPE_DEBUG_BUGS
  3523. if (tape->merge_stage_size >= tape->stage_size) {
  3524. printk(KERN_ERR "ide-tape: bug: merge buffer too big\n");
  3525. tape->merge_stage_size = 0;
  3526. }
  3527. #endif /* IDETAPE_DEBUG_BUGS */
  3528. actually_written = min((unsigned int)(tape->stage_size - tape->merge_stage_size), (unsigned int)count);
  3529. if (idetape_copy_stage_from_user(tape, tape->merge_stage, buf, actually_written))
  3530. ret = -EFAULT;
  3531. buf += actually_written;
  3532. tape->merge_stage_size += actually_written;
  3533. count -= actually_written;
  3534. if (tape->merge_stage_size == tape->stage_size) {
  3535. ssize_t retval;
  3536. tape->merge_stage_size = 0;
  3537. retval = idetape_add_chrdev_write_request(drive, tape->capabilities.ctl);
  3538. if (retval <= 0)
  3539. return (retval);
  3540. }
  3541. }
  3542. while (count >= tape->stage_size) {
  3543. ssize_t retval;
  3544. if (idetape_copy_stage_from_user(tape, tape->merge_stage, buf, tape->stage_size))
  3545. ret = -EFAULT;
  3546. buf += tape->stage_size;
  3547. count -= tape->stage_size;
  3548. retval = idetape_add_chrdev_write_request(drive, tape->capabilities.ctl);
  3549. actually_written += tape->stage_size;
  3550. if (retval <= 0)
  3551. return (retval);
  3552. }
  3553. if (count) {
  3554. actually_written += count;
  3555. if (idetape_copy_stage_from_user(tape, tape->merge_stage, buf, count))
  3556. ret = -EFAULT;
  3557. tape->merge_stage_size += count;
  3558. }
  3559. return (ret) ? ret : actually_written;
  3560. }
  3561. static int idetape_write_filemark (ide_drive_t *drive)
  3562. {
  3563. idetape_pc_t pc;
  3564. /* Write a filemark */
  3565. idetape_create_write_filemark_cmd(drive, &pc, 1);
  3566. if (idetape_queue_pc_tail(drive, &pc)) {
  3567. printk(KERN_ERR "ide-tape: Couldn't write a filemark\n");
  3568. return -EIO;
  3569. }
  3570. return 0;
  3571. }
  3572. /*
  3573. * idetape_mtioctop is called from idetape_chrdev_ioctl when
  3574. * the general mtio MTIOCTOP ioctl is requested.
  3575. *
  3576. * We currently support the following mtio.h operations:
  3577. *
  3578. * MTFSF - Space over mt_count filemarks in the positive direction.
  3579. * The tape is positioned after the last spaced filemark.
  3580. *
  3581. * MTFSFM - Same as MTFSF, but the tape is positioned before the
  3582. * last filemark.
  3583. *
  3584. * MTBSF - Steps background over mt_count filemarks, tape is
  3585. * positioned before the last filemark.
  3586. *
  3587. * MTBSFM - Like MTBSF, only tape is positioned after the last filemark.
  3588. *
  3589. * Note:
  3590. *
  3591. * MTBSF and MTBSFM are not supported when the tape doesn't
  3592. * support spacing over filemarks in the reverse direction.
  3593. * In this case, MTFSFM is also usually not supported (it is
  3594. * supported in the rare case in which we crossed the filemark
  3595. * during our read-ahead pipelined operation mode).
  3596. *
  3597. * MTWEOF - Writes mt_count filemarks. Tape is positioned after
  3598. * the last written filemark.
  3599. *
  3600. * MTREW - Rewinds tape.
  3601. *
  3602. * MTLOAD - Loads the tape.
  3603. *
  3604. * MTOFFL - Puts the tape drive "Offline": Rewinds the tape and
  3605. * MTUNLOAD prevents further access until the media is replaced.
  3606. *
  3607. * MTNOP - Flushes tape buffers.
  3608. *
  3609. * MTRETEN - Retension media. This typically consists of one end
  3610. * to end pass on the media.
  3611. *
  3612. * MTEOM - Moves to the end of recorded data.
  3613. *
  3614. * MTERASE - Erases tape.
  3615. *
  3616. * MTSETBLK - Sets the user block size to mt_count bytes. If
  3617. * mt_count is 0, we will attempt to autodetect
  3618. * the block size.
  3619. *
  3620. * MTSEEK - Positions the tape in a specific block number, where
  3621. * each block is assumed to contain which user_block_size
  3622. * bytes.
  3623. *
  3624. * MTSETPART - Switches to another tape partition.
  3625. *
  3626. * MTLOCK - Locks the tape door.
  3627. *
  3628. * MTUNLOCK - Unlocks the tape door.
  3629. *
  3630. * The following commands are currently not supported:
  3631. *
  3632. * MTFSS, MTBSS, MTWSM, MTSETDENSITY,
  3633. * MTSETDRVBUFFER, MT_ST_BOOLEANS, MT_ST_WRITE_THRESHOLD.
  3634. */
  3635. static int idetape_mtioctop (ide_drive_t *drive,short mt_op,int mt_count)
  3636. {
  3637. idetape_tape_t *tape = drive->driver_data;
  3638. idetape_pc_t pc;
  3639. int i,retval;
  3640. #if IDETAPE_DEBUG_LOG
  3641. if (tape->debug_level >= 1)
  3642. printk(KERN_INFO "ide-tape: Handling MTIOCTOP ioctl: "
  3643. "mt_op=%d, mt_count=%d\n", mt_op, mt_count);
  3644. #endif /* IDETAPE_DEBUG_LOG */
  3645. /*
  3646. * Commands which need our pipelined read-ahead stages.
  3647. */
  3648. switch (mt_op) {
  3649. case MTFSF:
  3650. case MTFSFM:
  3651. case MTBSF:
  3652. case MTBSFM:
  3653. if (!mt_count)
  3654. return (0);
  3655. return (idetape_space_over_filemarks(drive,mt_op,mt_count));
  3656. default:
  3657. break;
  3658. }
  3659. switch (mt_op) {
  3660. case MTWEOF:
  3661. if (tape->write_prot)
  3662. return -EACCES;
  3663. idetape_discard_read_pipeline(drive, 1);
  3664. for (i = 0; i < mt_count; i++) {
  3665. retval = idetape_write_filemark(drive);
  3666. if (retval)
  3667. return retval;
  3668. }
  3669. return (0);
  3670. case MTREW:
  3671. idetape_discard_read_pipeline(drive, 0);
  3672. if (idetape_rewind_tape(drive))
  3673. return -EIO;
  3674. return 0;
  3675. case MTLOAD:
  3676. idetape_discard_read_pipeline(drive, 0);
  3677. idetape_create_load_unload_cmd(drive, &pc, IDETAPE_LU_LOAD_MASK);
  3678. return (idetape_queue_pc_tail(drive, &pc));
  3679. case MTUNLOAD:
  3680. case MTOFFL:
  3681. /*
  3682. * If door is locked, attempt to unlock before
  3683. * attempting to eject.
  3684. */
  3685. if (tape->door_locked) {
  3686. if (idetape_create_prevent_cmd(drive, &pc, 0))
  3687. if (!idetape_queue_pc_tail(drive, &pc))
  3688. tape->door_locked = DOOR_UNLOCKED;
  3689. }
  3690. idetape_discard_read_pipeline(drive, 0);
  3691. idetape_create_load_unload_cmd(drive, &pc,!IDETAPE_LU_LOAD_MASK);
  3692. retval = idetape_queue_pc_tail(drive, &pc);
  3693. if (!retval)
  3694. clear_bit(IDETAPE_MEDIUM_PRESENT, &tape->flags);
  3695. return retval;
  3696. case MTNOP:
  3697. idetape_discard_read_pipeline(drive, 0);
  3698. return (idetape_flush_tape_buffers(drive));
  3699. case MTRETEN:
  3700. idetape_discard_read_pipeline(drive, 0);
  3701. idetape_create_load_unload_cmd(drive, &pc,IDETAPE_LU_RETENSION_MASK | IDETAPE_LU_LOAD_MASK);
  3702. return (idetape_queue_pc_tail(drive, &pc));
  3703. case MTEOM:
  3704. idetape_create_space_cmd(&pc, 0, IDETAPE_SPACE_TO_EOD);
  3705. return (idetape_queue_pc_tail(drive, &pc));
  3706. case MTERASE:
  3707. (void) idetape_rewind_tape(drive);
  3708. idetape_create_erase_cmd(&pc);
  3709. return (idetape_queue_pc_tail(drive, &pc));
  3710. case MTSETBLK:
  3711. if (mt_count) {
  3712. if (mt_count < tape->tape_block_size || mt_count % tape->tape_block_size)
  3713. return -EIO;
  3714. tape->user_bs_factor = mt_count / tape->tape_block_size;
  3715. clear_bit(IDETAPE_DETECT_BS, &tape->flags);
  3716. } else
  3717. set_bit(IDETAPE_DETECT_BS, &tape->flags);
  3718. return 0;
  3719. case MTSEEK:
  3720. idetape_discard_read_pipeline(drive, 0);
  3721. return idetape_position_tape(drive, mt_count * tape->user_bs_factor, tape->partition, 0);
  3722. case MTSETPART:
  3723. idetape_discard_read_pipeline(drive, 0);
  3724. return (idetape_position_tape(drive, 0, mt_count, 0));
  3725. case MTFSR:
  3726. case MTBSR:
  3727. case MTLOCK:
  3728. if (!idetape_create_prevent_cmd(drive, &pc, 1))
  3729. return 0;
  3730. retval = idetape_queue_pc_tail(drive, &pc);
  3731. if (retval) return retval;
  3732. tape->door_locked = DOOR_EXPLICITLY_LOCKED;
  3733. return 0;
  3734. case MTUNLOCK:
  3735. if (!idetape_create_prevent_cmd(drive, &pc, 0))
  3736. return 0;
  3737. retval = idetape_queue_pc_tail(drive, &pc);
  3738. if (retval) return retval;
  3739. tape->door_locked = DOOR_UNLOCKED;
  3740. return 0;
  3741. default:
  3742. printk(KERN_ERR "ide-tape: MTIO operation %d not "
  3743. "supported\n", mt_op);
  3744. return (-EIO);
  3745. }
  3746. }
  3747. /*
  3748. * Our character device ioctls.
  3749. *
  3750. * General mtio.h magnetic io commands are supported here, and not in
  3751. * the corresponding block interface.
  3752. *
  3753. * The following ioctls are supported:
  3754. *
  3755. * MTIOCTOP - Refer to idetape_mtioctop for detailed description.
  3756. *
  3757. * MTIOCGET - The mt_dsreg field in the returned mtget structure
  3758. * will be set to (user block size in bytes <<
  3759. * MT_ST_BLKSIZE_SHIFT) & MT_ST_BLKSIZE_MASK.
  3760. *
  3761. * The mt_blkno is set to the current user block number.
  3762. * The other mtget fields are not supported.
  3763. *
  3764. * MTIOCPOS - The current tape "block position" is returned. We
  3765. * assume that each block contains user_block_size
  3766. * bytes.
  3767. *
  3768. * Our own ide-tape ioctls are supported on both interfaces.
  3769. */
  3770. static int idetape_chrdev_ioctl (struct inode *inode, struct file *file, unsigned int cmd, unsigned long arg)
  3771. {
  3772. struct ide_tape_obj *tape = ide_tape_f(file);
  3773. ide_drive_t *drive = tape->drive;
  3774. struct mtop mtop;
  3775. struct mtget mtget;
  3776. struct mtpos mtpos;
  3777. int block_offset = 0, position = tape->first_frame_position;
  3778. void __user *argp = (void __user *)arg;
  3779. #if IDETAPE_DEBUG_LOG
  3780. if (tape->debug_level >= 3)
  3781. printk(KERN_INFO "ide-tape: Reached idetape_chrdev_ioctl, "
  3782. "cmd=%u\n", cmd);
  3783. #endif /* IDETAPE_DEBUG_LOG */
  3784. tape->restart_speed_control_req = 1;
  3785. if (tape->chrdev_direction == idetape_direction_write) {
  3786. idetape_empty_write_pipeline(drive);
  3787. idetape_flush_tape_buffers(drive);
  3788. }
  3789. if (cmd == MTIOCGET || cmd == MTIOCPOS) {
  3790. block_offset = idetape_pipeline_size(drive) / (tape->tape_block_size * tape->user_bs_factor);
  3791. if ((position = idetape_read_position(drive)) < 0)
  3792. return -EIO;
  3793. }
  3794. switch (cmd) {
  3795. case MTIOCTOP:
  3796. if (copy_from_user(&mtop, argp, sizeof (struct mtop)))
  3797. return -EFAULT;
  3798. return (idetape_mtioctop(drive,mtop.mt_op,mtop.mt_count));
  3799. case MTIOCGET:
  3800. memset(&mtget, 0, sizeof (struct mtget));
  3801. mtget.mt_type = MT_ISSCSI2;
  3802. mtget.mt_blkno = position / tape->user_bs_factor - block_offset;
  3803. mtget.mt_dsreg = ((tape->tape_block_size * tape->user_bs_factor) << MT_ST_BLKSIZE_SHIFT) & MT_ST_BLKSIZE_MASK;
  3804. if (tape->drv_write_prot) {
  3805. mtget.mt_gstat |= GMT_WR_PROT(0xffffffff);
  3806. }
  3807. if (copy_to_user(argp, &mtget, sizeof(struct mtget)))
  3808. return -EFAULT;
  3809. return 0;
  3810. case MTIOCPOS:
  3811. mtpos.mt_blkno = position / tape->user_bs_factor - block_offset;
  3812. if (copy_to_user(argp, &mtpos, sizeof(struct mtpos)))
  3813. return -EFAULT;
  3814. return 0;
  3815. default:
  3816. if (tape->chrdev_direction == idetape_direction_read)
  3817. idetape_discard_read_pipeline(drive, 1);
  3818. return idetape_blkdev_ioctl(drive, cmd, arg);
  3819. }
  3820. }
  3821. static void idetape_get_blocksize_from_block_descriptor(ide_drive_t *drive);
  3822. /*
  3823. * Our character device open function.
  3824. */
  3825. static int idetape_chrdev_open (struct inode *inode, struct file *filp)
  3826. {
  3827. unsigned int minor = iminor(inode), i = minor & ~0xc0;
  3828. ide_drive_t *drive;
  3829. idetape_tape_t *tape;
  3830. idetape_pc_t pc;
  3831. int retval;
  3832. /*
  3833. * We really want to do nonseekable_open(inode, filp); here, but some
  3834. * versions of tar incorrectly call lseek on tapes and bail out if that
  3835. * fails. So we disallow pread() and pwrite(), but permit lseeks.
  3836. */
  3837. filp->f_mode &= ~(FMODE_PREAD | FMODE_PWRITE);
  3838. #if IDETAPE_DEBUG_LOG
  3839. printk(KERN_INFO "ide-tape: Reached idetape_chrdev_open\n");
  3840. #endif /* IDETAPE_DEBUG_LOG */
  3841. if (i >= MAX_HWIFS * MAX_DRIVES)
  3842. return -ENXIO;
  3843. if (!(tape = ide_tape_chrdev_get(i)))
  3844. return -ENXIO;
  3845. drive = tape->drive;
  3846. filp->private_data = tape;
  3847. if (test_and_set_bit(IDETAPE_BUSY, &tape->flags)) {
  3848. retval = -EBUSY;
  3849. goto out_put_tape;
  3850. }
  3851. retval = idetape_wait_ready(drive, 60 * HZ);
  3852. if (retval) {
  3853. clear_bit(IDETAPE_BUSY, &tape->flags);
  3854. printk(KERN_ERR "ide-tape: %s: drive not ready\n", tape->name);
  3855. goto out_put_tape;
  3856. }
  3857. idetape_read_position(drive);
  3858. if (!test_bit(IDETAPE_ADDRESS_VALID, &tape->flags))
  3859. (void)idetape_rewind_tape(drive);
  3860. if (tape->chrdev_direction != idetape_direction_read)
  3861. clear_bit(IDETAPE_PIPELINE_ERROR, &tape->flags);
  3862. /* Read block size and write protect status from drive. */
  3863. idetape_get_blocksize_from_block_descriptor(drive);
  3864. /* Set write protect flag if device is opened as read-only. */
  3865. if ((filp->f_flags & O_ACCMODE) == O_RDONLY)
  3866. tape->write_prot = 1;
  3867. else
  3868. tape->write_prot = tape->drv_write_prot;
  3869. /* Make sure drive isn't write protected if user wants to write. */
  3870. if (tape->write_prot) {
  3871. if ((filp->f_flags & O_ACCMODE) == O_WRONLY ||
  3872. (filp->f_flags & O_ACCMODE) == O_RDWR) {
  3873. clear_bit(IDETAPE_BUSY, &tape->flags);
  3874. retval = -EROFS;
  3875. goto out_put_tape;
  3876. }
  3877. }
  3878. /*
  3879. * Lock the tape drive door so user can't eject.
  3880. */
  3881. if (tape->chrdev_direction == idetape_direction_none) {
  3882. if (idetape_create_prevent_cmd(drive, &pc, 1)) {
  3883. if (!idetape_queue_pc_tail(drive, &pc)) {
  3884. if (tape->door_locked != DOOR_EXPLICITLY_LOCKED)
  3885. tape->door_locked = DOOR_LOCKED;
  3886. }
  3887. }
  3888. }
  3889. idetape_restart_speed_control(drive);
  3890. tape->restart_speed_control_req = 0;
  3891. return 0;
  3892. out_put_tape:
  3893. ide_tape_put(tape);
  3894. return retval;
  3895. }
  3896. static void idetape_write_release (ide_drive_t *drive, unsigned int minor)
  3897. {
  3898. idetape_tape_t *tape = drive->driver_data;
  3899. idetape_empty_write_pipeline(drive);
  3900. tape->merge_stage = __idetape_kmalloc_stage(tape, 1, 0);
  3901. if (tape->merge_stage != NULL) {
  3902. idetape_pad_zeros(drive, tape->tape_block_size * (tape->user_bs_factor - 1));
  3903. __idetape_kfree_stage(tape->merge_stage);
  3904. tape->merge_stage = NULL;
  3905. }
  3906. idetape_write_filemark(drive);
  3907. idetape_flush_tape_buffers(drive);
  3908. idetape_flush_tape_buffers(drive);
  3909. }
  3910. /*
  3911. * Our character device release function.
  3912. */
  3913. static int idetape_chrdev_release (struct inode *inode, struct file *filp)
  3914. {
  3915. struct ide_tape_obj *tape = ide_tape_f(filp);
  3916. ide_drive_t *drive = tape->drive;
  3917. idetape_pc_t pc;
  3918. unsigned int minor = iminor(inode);
  3919. lock_kernel();
  3920. tape = drive->driver_data;
  3921. #if IDETAPE_DEBUG_LOG
  3922. if (tape->debug_level >= 3)
  3923. printk(KERN_INFO "ide-tape: Reached idetape_chrdev_release\n");
  3924. #endif /* IDETAPE_DEBUG_LOG */
  3925. if (tape->chrdev_direction == idetape_direction_write)
  3926. idetape_write_release(drive, minor);
  3927. if (tape->chrdev_direction == idetape_direction_read) {
  3928. if (minor < 128)
  3929. idetape_discard_read_pipeline(drive, 1);
  3930. else
  3931. idetape_wait_for_pipeline(drive);
  3932. }
  3933. if (tape->cache_stage != NULL) {
  3934. __idetape_kfree_stage(tape->cache_stage);
  3935. tape->cache_stage = NULL;
  3936. }
  3937. if (minor < 128 && test_bit(IDETAPE_MEDIUM_PRESENT, &tape->flags))
  3938. (void) idetape_rewind_tape(drive);
  3939. if (tape->chrdev_direction == idetape_direction_none) {
  3940. if (tape->door_locked == DOOR_LOCKED) {
  3941. if (idetape_create_prevent_cmd(drive, &pc, 0)) {
  3942. if (!idetape_queue_pc_tail(drive, &pc))
  3943. tape->door_locked = DOOR_UNLOCKED;
  3944. }
  3945. }
  3946. }
  3947. clear_bit(IDETAPE_BUSY, &tape->flags);
  3948. ide_tape_put(tape);
  3949. unlock_kernel();
  3950. return 0;
  3951. }
  3952. /*
  3953. * idetape_identify_device is called to check the contents of the
  3954. * ATAPI IDENTIFY command results. We return:
  3955. *
  3956. * 1 If the tape can be supported by us, based on the information
  3957. * we have so far.
  3958. *
  3959. * 0 If this tape driver is not currently supported by us.
  3960. */
  3961. static int idetape_identify_device (ide_drive_t *drive)
  3962. {
  3963. struct idetape_id_gcw gcw;
  3964. struct hd_driveid *id = drive->id;
  3965. #if IDETAPE_DEBUG_INFO
  3966. unsigned short mask,i;
  3967. #endif /* IDETAPE_DEBUG_INFO */
  3968. if (drive->id_read == 0)
  3969. return 1;
  3970. *((unsigned short *) &gcw) = id->config;
  3971. #if IDETAPE_DEBUG_INFO
  3972. printk(KERN_INFO "ide-tape: Dumping ATAPI Identify Device tape parameters\n");
  3973. printk(KERN_INFO "ide-tape: Protocol Type: ");
  3974. switch (gcw.protocol) {
  3975. case 0: case 1: printk("ATA\n");break;
  3976. case 2: printk("ATAPI\n");break;
  3977. case 3: printk("Reserved (Unknown to ide-tape)\n");break;
  3978. }
  3979. printk(KERN_INFO "ide-tape: Device Type: %x - ",gcw.device_type);
  3980. switch (gcw.device_type) {
  3981. case 0: printk("Direct-access Device\n");break;
  3982. case 1: printk("Streaming Tape Device\n");break;
  3983. case 2: case 3: case 4: printk("Reserved\n");break;
  3984. case 5: printk("CD-ROM Device\n");break;
  3985. case 6: printk("Reserved\n");
  3986. case 7: printk("Optical memory Device\n");break;
  3987. case 0x1f: printk("Unknown or no Device type\n");break;
  3988. default: printk("Reserved\n");
  3989. }
  3990. printk(KERN_INFO "ide-tape: Removable: %s",gcw.removable ? "Yes\n":"No\n");
  3991. printk(KERN_INFO "ide-tape: Command Packet DRQ Type: ");
  3992. switch (gcw.drq_type) {
  3993. case 0: printk("Microprocessor DRQ\n");break;
  3994. case 1: printk("Interrupt DRQ\n");break;
  3995. case 2: printk("Accelerated DRQ\n");break;
  3996. case 3: printk("Reserved\n");break;
  3997. }
  3998. printk(KERN_INFO "ide-tape: Command Packet Size: ");
  3999. switch (gcw.packet_size) {
  4000. case 0: printk("12 bytes\n");break;
  4001. case 1: printk("16 bytes\n");break;
  4002. default: printk("Reserved\n");break;
  4003. }
  4004. printk(KERN_INFO "ide-tape: Model: %.40s\n",id->model);
  4005. printk(KERN_INFO "ide-tape: Firmware Revision: %.8s\n",id->fw_rev);
  4006. printk(KERN_INFO "ide-tape: Serial Number: %.20s\n",id->serial_no);
  4007. printk(KERN_INFO "ide-tape: Write buffer size: %d bytes\n",id->buf_size*512);
  4008. printk(KERN_INFO "ide-tape: DMA: %s",id->capability & 0x01 ? "Yes\n":"No\n");
  4009. printk(KERN_INFO "ide-tape: LBA: %s",id->capability & 0x02 ? "Yes\n":"No\n");
  4010. printk(KERN_INFO "ide-tape: IORDY can be disabled: %s",id->capability & 0x04 ? "Yes\n":"No\n");
  4011. printk(KERN_INFO "ide-tape: IORDY supported: %s",id->capability & 0x08 ? "Yes\n":"Unknown\n");
  4012. printk(KERN_INFO "ide-tape: ATAPI overlap supported: %s",id->capability & 0x20 ? "Yes\n":"No\n");
  4013. printk(KERN_INFO "ide-tape: PIO Cycle Timing Category: %d\n",id->tPIO);
  4014. printk(KERN_INFO "ide-tape: DMA Cycle Timing Category: %d\n",id->tDMA);
  4015. printk(KERN_INFO "ide-tape: Single Word DMA supported modes: ");
  4016. for (i=0,mask=1;i<8;i++,mask=mask << 1) {
  4017. if (id->dma_1word & mask)
  4018. printk("%d ",i);
  4019. if (id->dma_1word & (mask << 8))
  4020. printk("(active) ");
  4021. }
  4022. printk("\n");
  4023. printk(KERN_INFO "ide-tape: Multi Word DMA supported modes: ");
  4024. for (i=0,mask=1;i<8;i++,mask=mask << 1) {
  4025. if (id->dma_mword & mask)
  4026. printk("%d ",i);
  4027. if (id->dma_mword & (mask << 8))
  4028. printk("(active) ");
  4029. }
  4030. printk("\n");
  4031. if (id->field_valid & 0x0002) {
  4032. printk(KERN_INFO "ide-tape: Enhanced PIO Modes: %s\n",
  4033. id->eide_pio_modes & 1 ? "Mode 3":"None");
  4034. printk(KERN_INFO "ide-tape: Minimum Multi-word DMA cycle per word: ");
  4035. if (id->eide_dma_min == 0)
  4036. printk("Not supported\n");
  4037. else
  4038. printk("%d ns\n",id->eide_dma_min);
  4039. printk(KERN_INFO "ide-tape: Manufacturer\'s Recommended Multi-word cycle: ");
  4040. if (id->eide_dma_time == 0)
  4041. printk("Not supported\n");
  4042. else
  4043. printk("%d ns\n",id->eide_dma_time);
  4044. printk(KERN_INFO "ide-tape: Minimum PIO cycle without IORDY: ");
  4045. if (id->eide_pio == 0)
  4046. printk("Not supported\n");
  4047. else
  4048. printk("%d ns\n",id->eide_pio);
  4049. printk(KERN_INFO "ide-tape: Minimum PIO cycle with IORDY: ");
  4050. if (id->eide_pio_iordy == 0)
  4051. printk("Not supported\n");
  4052. else
  4053. printk("%d ns\n",id->eide_pio_iordy);
  4054. } else
  4055. printk(KERN_INFO "ide-tape: According to the device, fields 64-70 are not valid.\n");
  4056. #endif /* IDETAPE_DEBUG_INFO */
  4057. /* Check that we can support this device */
  4058. if (gcw.protocol !=2 )
  4059. printk(KERN_ERR "ide-tape: Protocol is not ATAPI\n");
  4060. else if (gcw.device_type != 1)
  4061. printk(KERN_ERR "ide-tape: Device type is not set to tape\n");
  4062. else if (!gcw.removable)
  4063. printk(KERN_ERR "ide-tape: The removable flag is not set\n");
  4064. else if (gcw.packet_size != 0) {
  4065. printk(KERN_ERR "ide-tape: Packet size is not 12 bytes long\n");
  4066. if (gcw.packet_size == 1)
  4067. printk(KERN_ERR "ide-tape: Sorry, padding to 16 bytes is still not supported\n");
  4068. } else
  4069. return 1;
  4070. return 0;
  4071. }
  4072. /*
  4073. * Use INQUIRY to get the firmware revision
  4074. */
  4075. static void idetape_get_inquiry_results (ide_drive_t *drive)
  4076. {
  4077. char *r;
  4078. idetape_tape_t *tape = drive->driver_data;
  4079. idetape_pc_t pc;
  4080. idetape_inquiry_result_t *inquiry;
  4081. idetape_create_inquiry_cmd(&pc);
  4082. if (idetape_queue_pc_tail(drive, &pc)) {
  4083. printk(KERN_ERR "ide-tape: %s: can't get INQUIRY results\n", tape->name);
  4084. return;
  4085. }
  4086. inquiry = (idetape_inquiry_result_t *) pc.buffer;
  4087. memcpy(tape->vendor_id, inquiry->vendor_id, 8);
  4088. memcpy(tape->product_id, inquiry->product_id, 16);
  4089. memcpy(tape->firmware_revision, inquiry->revision_level, 4);
  4090. ide_fixstring(tape->vendor_id, 10, 0);
  4091. ide_fixstring(tape->product_id, 18, 0);
  4092. ide_fixstring(tape->firmware_revision, 6, 0);
  4093. r = tape->firmware_revision;
  4094. if (*(r + 1) == '.')
  4095. tape->firmware_revision_num = (*r - '0') * 100 + (*(r + 2) - '0') * 10 + *(r + 3) - '0';
  4096. printk(KERN_INFO "ide-tape: %s <-> %s: %s %s rev %s\n", drive->name, tape->name, tape->vendor_id, tape->product_id, tape->firmware_revision);
  4097. }
  4098. /*
  4099. * idetape_get_mode_sense_results asks the tape about its various
  4100. * parameters. In particular, we will adjust our data transfer buffer
  4101. * size to the recommended value as returned by the tape.
  4102. */
  4103. static void idetape_get_mode_sense_results (ide_drive_t *drive)
  4104. {
  4105. idetape_tape_t *tape = drive->driver_data;
  4106. idetape_pc_t pc;
  4107. idetape_mode_parameter_header_t *header;
  4108. idetape_capabilities_page_t *capabilities;
  4109. idetape_create_mode_sense_cmd(&pc, IDETAPE_CAPABILITIES_PAGE);
  4110. if (idetape_queue_pc_tail(drive, &pc)) {
  4111. printk(KERN_ERR "ide-tape: Can't get tape parameters - assuming some default values\n");
  4112. tape->tape_block_size = 512;
  4113. tape->capabilities.ctl = 52;
  4114. tape->capabilities.speed = 450;
  4115. tape->capabilities.buffer_size = 6 * 52;
  4116. return;
  4117. }
  4118. header = (idetape_mode_parameter_header_t *) pc.buffer;
  4119. capabilities = (idetape_capabilities_page_t *) (pc.buffer + sizeof(idetape_mode_parameter_header_t) + header->bdl);
  4120. capabilities->max_speed = ntohs(capabilities->max_speed);
  4121. capabilities->ctl = ntohs(capabilities->ctl);
  4122. capabilities->speed = ntohs(capabilities->speed);
  4123. capabilities->buffer_size = ntohs(capabilities->buffer_size);
  4124. if (!capabilities->speed) {
  4125. printk(KERN_INFO "ide-tape: %s: overriding capabilities->speed (assuming 650KB/sec)\n", drive->name);
  4126. capabilities->speed = 650;
  4127. }
  4128. if (!capabilities->max_speed) {
  4129. printk(KERN_INFO "ide-tape: %s: overriding capabilities->max_speed (assuming 650KB/sec)\n", drive->name);
  4130. capabilities->max_speed = 650;
  4131. }
  4132. tape->capabilities = *capabilities; /* Save us a copy */
  4133. if (capabilities->blk512)
  4134. tape->tape_block_size = 512;
  4135. else if (capabilities->blk1024)
  4136. tape->tape_block_size = 1024;
  4137. #if IDETAPE_DEBUG_INFO
  4138. printk(KERN_INFO "ide-tape: Dumping the results of the MODE SENSE packet command\n");
  4139. printk(KERN_INFO "ide-tape: Mode Parameter Header:\n");
  4140. printk(KERN_INFO "ide-tape: Mode Data Length - %d\n",header->mode_data_length);
  4141. printk(KERN_INFO "ide-tape: Medium Type - %d\n",header->medium_type);
  4142. printk(KERN_INFO "ide-tape: Device Specific Parameter - %d\n",header->dsp);
  4143. printk(KERN_INFO "ide-tape: Block Descriptor Length - %d\n",header->bdl);
  4144. printk(KERN_INFO "ide-tape: Capabilities and Mechanical Status Page:\n");
  4145. printk(KERN_INFO "ide-tape: Page code - %d\n",capabilities->page_code);
  4146. printk(KERN_INFO "ide-tape: Page length - %d\n",capabilities->page_length);
  4147. printk(KERN_INFO "ide-tape: Read only - %s\n",capabilities->ro ? "Yes":"No");
  4148. printk(KERN_INFO "ide-tape: Supports reverse space - %s\n",capabilities->sprev ? "Yes":"No");
  4149. printk(KERN_INFO "ide-tape: Supports erase initiated formatting - %s\n",capabilities->efmt ? "Yes":"No");
  4150. printk(KERN_INFO "ide-tape: Supports QFA two Partition format - %s\n",capabilities->qfa ? "Yes":"No");
  4151. printk(KERN_INFO "ide-tape: Supports locking the medium - %s\n",capabilities->lock ? "Yes":"No");
  4152. printk(KERN_INFO "ide-tape: The volume is currently locked - %s\n",capabilities->locked ? "Yes":"No");
  4153. printk(KERN_INFO "ide-tape: The device defaults in the prevent state - %s\n",capabilities->prevent ? "Yes":"No");
  4154. printk(KERN_INFO "ide-tape: Supports ejecting the medium - %s\n",capabilities->eject ? "Yes":"No");
  4155. printk(KERN_INFO "ide-tape: Supports error correction - %s\n",capabilities->ecc ? "Yes":"No");
  4156. printk(KERN_INFO "ide-tape: Supports data compression - %s\n",capabilities->cmprs ? "Yes":"No");
  4157. printk(KERN_INFO "ide-tape: Supports 512 bytes block size - %s\n",capabilities->blk512 ? "Yes":"No");
  4158. printk(KERN_INFO "ide-tape: Supports 1024 bytes block size - %s\n",capabilities->blk1024 ? "Yes":"No");
  4159. printk(KERN_INFO "ide-tape: Supports 32768 bytes block size / Restricted byte count for PIO transfers - %s\n",capabilities->blk32768 ? "Yes":"No");
  4160. printk(KERN_INFO "ide-tape: Maximum supported speed in KBps - %d\n",capabilities->max_speed);
  4161. printk(KERN_INFO "ide-tape: Continuous transfer limits in blocks - %d\n",capabilities->ctl);
  4162. printk(KERN_INFO "ide-tape: Current speed in KBps - %d\n",capabilities->speed);
  4163. printk(KERN_INFO "ide-tape: Buffer size - %d\n",capabilities->buffer_size*512);
  4164. #endif /* IDETAPE_DEBUG_INFO */
  4165. }
  4166. /*
  4167. * ide_get_blocksize_from_block_descriptor does a mode sense page 0 with block descriptor
  4168. * and if it succeeds sets the tape block size with the reported value
  4169. */
  4170. static void idetape_get_blocksize_from_block_descriptor(ide_drive_t *drive)
  4171. {
  4172. idetape_tape_t *tape = drive->driver_data;
  4173. idetape_pc_t pc;
  4174. idetape_mode_parameter_header_t *header;
  4175. idetape_parameter_block_descriptor_t *block_descrp;
  4176. idetape_create_mode_sense_cmd(&pc, IDETAPE_BLOCK_DESCRIPTOR);
  4177. if (idetape_queue_pc_tail(drive, &pc)) {
  4178. printk(KERN_ERR "ide-tape: Can't get block descriptor\n");
  4179. if (tape->tape_block_size == 0) {
  4180. printk(KERN_WARNING "ide-tape: Cannot deal with zero block size, assume 32k\n");
  4181. tape->tape_block_size = 32768;
  4182. }
  4183. return;
  4184. }
  4185. header = (idetape_mode_parameter_header_t *) pc.buffer;
  4186. block_descrp = (idetape_parameter_block_descriptor_t *) (pc.buffer + sizeof(idetape_mode_parameter_header_t));
  4187. tape->tape_block_size =( block_descrp->length[0]<<16) + (block_descrp->length[1]<<8) + block_descrp->length[2];
  4188. tape->drv_write_prot = (header->dsp & 0x80) >> 7;
  4189. #if IDETAPE_DEBUG_INFO
  4190. printk(KERN_INFO "ide-tape: Adjusted block size - %d\n", tape->tape_block_size);
  4191. #endif /* IDETAPE_DEBUG_INFO */
  4192. }
  4193. #ifdef CONFIG_IDE_PROC_FS
  4194. static void idetape_add_settings (ide_drive_t *drive)
  4195. {
  4196. idetape_tape_t *tape = drive->driver_data;
  4197. /*
  4198. * drive setting name read/write data type min max mul_factor div_factor data pointer set function
  4199. */
  4200. ide_add_setting(drive, "buffer", SETTING_READ, TYPE_SHORT, 0, 0xffff, 1, 2, &tape->capabilities.buffer_size, NULL);
  4201. ide_add_setting(drive, "pipeline_min", SETTING_RW, TYPE_INT, 1, 0xffff, tape->stage_size / 1024, 1, &tape->min_pipeline, NULL);
  4202. ide_add_setting(drive, "pipeline", SETTING_RW, TYPE_INT, 1, 0xffff, tape->stage_size / 1024, 1, &tape->max_stages, NULL);
  4203. ide_add_setting(drive, "pipeline_max", SETTING_RW, TYPE_INT, 1, 0xffff, tape->stage_size / 1024, 1, &tape->max_pipeline, NULL);
  4204. ide_add_setting(drive, "pipeline_used", SETTING_READ, TYPE_INT, 0, 0xffff, tape->stage_size / 1024, 1, &tape->nr_stages, NULL);
  4205. ide_add_setting(drive, "pipeline_pending", SETTING_READ, TYPE_INT, 0, 0xffff, tape->stage_size / 1024, 1, &tape->nr_pending_stages, NULL);
  4206. ide_add_setting(drive, "speed", SETTING_READ, TYPE_SHORT, 0, 0xffff, 1, 1, &tape->capabilities.speed, NULL);
  4207. ide_add_setting(drive, "stage", SETTING_READ, TYPE_INT, 0, 0xffff, 1, 1024, &tape->stage_size, NULL);
  4208. ide_add_setting(drive, "tdsc", SETTING_RW, TYPE_INT, IDETAPE_DSC_RW_MIN, IDETAPE_DSC_RW_MAX, 1000, HZ, &tape->best_dsc_rw_frequency, NULL);
  4209. ide_add_setting(drive, "dsc_overlap", SETTING_RW, TYPE_BYTE, 0, 1, 1, 1, &drive->dsc_overlap, NULL);
  4210. ide_add_setting(drive, "pipeline_head_speed_c",SETTING_READ, TYPE_INT, 0, 0xffff, 1, 1, &tape->controlled_pipeline_head_speed, NULL);
  4211. ide_add_setting(drive, "pipeline_head_speed_u",SETTING_READ, TYPE_INT, 0, 0xffff, 1, 1, &tape->uncontrolled_pipeline_head_speed,NULL);
  4212. ide_add_setting(drive, "avg_speed", SETTING_READ, TYPE_INT, 0, 0xffff, 1, 1, &tape->avg_speed, NULL);
  4213. ide_add_setting(drive, "debug_level", SETTING_RW, TYPE_INT, 0, 0xffff, 1, 1, &tape->debug_level, NULL);
  4214. }
  4215. #else
  4216. static inline void idetape_add_settings(ide_drive_t *drive) { ; }
  4217. #endif
  4218. /*
  4219. * ide_setup is called to:
  4220. *
  4221. * 1. Initialize our various state variables.
  4222. * 2. Ask the tape for its capabilities.
  4223. * 3. Allocate a buffer which will be used for data
  4224. * transfer. The buffer size is chosen based on
  4225. * the recommendation which we received in step (2).
  4226. *
  4227. * Note that at this point ide.c already assigned us an irq, so that
  4228. * we can queue requests here and wait for their completion.
  4229. */
  4230. static void idetape_setup (ide_drive_t *drive, idetape_tape_t *tape, int minor)
  4231. {
  4232. unsigned long t1, tmid, tn, t;
  4233. int speed;
  4234. struct idetape_id_gcw gcw;
  4235. int stage_size;
  4236. struct sysinfo si;
  4237. spin_lock_init(&tape->spinlock);
  4238. drive->dsc_overlap = 1;
  4239. #ifdef CONFIG_BLK_DEV_IDEPCI
  4240. if (HWIF(drive)->pci_dev != NULL) {
  4241. /*
  4242. * These two ide-pci host adapters appear to need DSC overlap disabled.
  4243. * This probably needs further analysis.
  4244. */
  4245. if ((HWIF(drive)->pci_dev->device == PCI_DEVICE_ID_ARTOP_ATP850UF) ||
  4246. (HWIF(drive)->pci_dev->device == PCI_DEVICE_ID_TTI_HPT343)) {
  4247. printk(KERN_INFO "ide-tape: %s: disabling DSC overlap\n", tape->name);
  4248. drive->dsc_overlap = 0;
  4249. }
  4250. }
  4251. #endif /* CONFIG_BLK_DEV_IDEPCI */
  4252. /* Seagate Travan drives do not support DSC overlap. */
  4253. if (strstr(drive->id->model, "Seagate STT3401"))
  4254. drive->dsc_overlap = 0;
  4255. tape->minor = minor;
  4256. tape->name[0] = 'h';
  4257. tape->name[1] = 't';
  4258. tape->name[2] = '0' + minor;
  4259. tape->chrdev_direction = idetape_direction_none;
  4260. tape->pc = tape->pc_stack;
  4261. tape->max_insert_speed = 10000;
  4262. tape->speed_control = 1;
  4263. *((unsigned short *) &gcw) = drive->id->config;
  4264. if (gcw.drq_type == 1)
  4265. set_bit(IDETAPE_DRQ_INTERRUPT, &tape->flags);
  4266. tape->min_pipeline = tape->max_pipeline = tape->max_stages = 10;
  4267. idetape_get_inquiry_results(drive);
  4268. idetape_get_mode_sense_results(drive);
  4269. idetape_get_blocksize_from_block_descriptor(drive);
  4270. tape->user_bs_factor = 1;
  4271. tape->stage_size = tape->capabilities.ctl * tape->tape_block_size;
  4272. while (tape->stage_size > 0xffff) {
  4273. printk(KERN_NOTICE "ide-tape: decreasing stage size\n");
  4274. tape->capabilities.ctl /= 2;
  4275. tape->stage_size = tape->capabilities.ctl * tape->tape_block_size;
  4276. }
  4277. stage_size = tape->stage_size;
  4278. tape->pages_per_stage = stage_size / PAGE_SIZE;
  4279. if (stage_size % PAGE_SIZE) {
  4280. tape->pages_per_stage++;
  4281. tape->excess_bh_size = PAGE_SIZE - stage_size % PAGE_SIZE;
  4282. }
  4283. /*
  4284. * Select the "best" DSC read/write polling frequency
  4285. * and pipeline size.
  4286. */
  4287. speed = max(tape->capabilities.speed, tape->capabilities.max_speed);
  4288. tape->max_stages = speed * 1000 * 10 / tape->stage_size;
  4289. /*
  4290. * Limit memory use for pipeline to 10% of physical memory
  4291. */
  4292. si_meminfo(&si);
  4293. if (tape->max_stages * tape->stage_size > si.totalram * si.mem_unit / 10)
  4294. tape->max_stages = si.totalram * si.mem_unit / (10 * tape->stage_size);
  4295. tape->max_stages = min(tape->max_stages, IDETAPE_MAX_PIPELINE_STAGES);
  4296. tape->min_pipeline = min(tape->max_stages, IDETAPE_MIN_PIPELINE_STAGES);
  4297. tape->max_pipeline = min(tape->max_stages * 2, IDETAPE_MAX_PIPELINE_STAGES);
  4298. if (tape->max_stages == 0)
  4299. tape->max_stages = tape->min_pipeline = tape->max_pipeline = 1;
  4300. t1 = (tape->stage_size * HZ) / (speed * 1000);
  4301. tmid = (tape->capabilities.buffer_size * 32 * HZ) / (speed * 125);
  4302. tn = (IDETAPE_FIFO_THRESHOLD * tape->stage_size * HZ) / (speed * 1000);
  4303. if (tape->max_stages)
  4304. t = tn;
  4305. else
  4306. t = t1;
  4307. /*
  4308. * Ensure that the number we got makes sense; limit
  4309. * it within IDETAPE_DSC_RW_MIN and IDETAPE_DSC_RW_MAX.
  4310. */
  4311. tape->best_dsc_rw_frequency = max_t(unsigned long, min_t(unsigned long, t, IDETAPE_DSC_RW_MAX), IDETAPE_DSC_RW_MIN);
  4312. printk(KERN_INFO "ide-tape: %s <-> %s: %dKBps, %d*%dkB buffer, "
  4313. "%dkB pipeline, %lums tDSC%s\n",
  4314. drive->name, tape->name, tape->capabilities.speed,
  4315. (tape->capabilities.buffer_size * 512) / tape->stage_size,
  4316. tape->stage_size / 1024,
  4317. tape->max_stages * tape->stage_size / 1024,
  4318. tape->best_dsc_rw_frequency * 1000 / HZ,
  4319. drive->using_dma ? ", DMA":"");
  4320. idetape_add_settings(drive);
  4321. }
  4322. static void ide_tape_remove(ide_drive_t *drive)
  4323. {
  4324. idetape_tape_t *tape = drive->driver_data;
  4325. ide_proc_unregister_driver(drive, tape->driver);
  4326. ide_unregister_region(tape->disk);
  4327. ide_tape_put(tape);
  4328. }
  4329. static void ide_tape_release(struct kref *kref)
  4330. {
  4331. struct ide_tape_obj *tape = to_ide_tape(kref);
  4332. ide_drive_t *drive = tape->drive;
  4333. struct gendisk *g = tape->disk;
  4334. BUG_ON(tape->first_stage != NULL || tape->merge_stage_size);
  4335. drive->dsc_overlap = 0;
  4336. drive->driver_data = NULL;
  4337. device_destroy(idetape_sysfs_class, MKDEV(IDETAPE_MAJOR, tape->minor));
  4338. device_destroy(idetape_sysfs_class, MKDEV(IDETAPE_MAJOR, tape->minor + 128));
  4339. idetape_devs[tape->minor] = NULL;
  4340. g->private_data = NULL;
  4341. put_disk(g);
  4342. kfree(tape);
  4343. }
  4344. #ifdef CONFIG_IDE_PROC_FS
  4345. static int proc_idetape_read_name
  4346. (char *page, char **start, off_t off, int count, int *eof, void *data)
  4347. {
  4348. ide_drive_t *drive = (ide_drive_t *) data;
  4349. idetape_tape_t *tape = drive->driver_data;
  4350. char *out = page;
  4351. int len;
  4352. len = sprintf(out, "%s\n", tape->name);
  4353. PROC_IDE_READ_RETURN(page, start, off, count, eof, len);
  4354. }
  4355. static ide_proc_entry_t idetape_proc[] = {
  4356. { "capacity", S_IFREG|S_IRUGO, proc_ide_read_capacity, NULL },
  4357. { "name", S_IFREG|S_IRUGO, proc_idetape_read_name, NULL },
  4358. { NULL, 0, NULL, NULL }
  4359. };
  4360. #endif
  4361. static int ide_tape_probe(ide_drive_t *);
  4362. static ide_driver_t idetape_driver = {
  4363. .gen_driver = {
  4364. .owner = THIS_MODULE,
  4365. .name = "ide-tape",
  4366. .bus = &ide_bus_type,
  4367. },
  4368. .probe = ide_tape_probe,
  4369. .remove = ide_tape_remove,
  4370. .version = IDETAPE_VERSION,
  4371. .media = ide_tape,
  4372. .supports_dsc_overlap = 1,
  4373. .do_request = idetape_do_request,
  4374. .end_request = idetape_end_request,
  4375. .error = __ide_error,
  4376. .abort = __ide_abort,
  4377. #ifdef CONFIG_IDE_PROC_FS
  4378. .proc = idetape_proc,
  4379. #endif
  4380. };
  4381. /*
  4382. * Our character device supporting functions, passed to register_chrdev.
  4383. */
  4384. static const struct file_operations idetape_fops = {
  4385. .owner = THIS_MODULE,
  4386. .read = idetape_chrdev_read,
  4387. .write = idetape_chrdev_write,
  4388. .ioctl = idetape_chrdev_ioctl,
  4389. .open = idetape_chrdev_open,
  4390. .release = idetape_chrdev_release,
  4391. };
  4392. static int idetape_open(struct inode *inode, struct file *filp)
  4393. {
  4394. struct gendisk *disk = inode->i_bdev->bd_disk;
  4395. struct ide_tape_obj *tape;
  4396. if (!(tape = ide_tape_get(disk)))
  4397. return -ENXIO;
  4398. return 0;
  4399. }
  4400. static int idetape_release(struct inode *inode, struct file *filp)
  4401. {
  4402. struct gendisk *disk = inode->i_bdev->bd_disk;
  4403. struct ide_tape_obj *tape = ide_tape_g(disk);
  4404. ide_tape_put(tape);
  4405. return 0;
  4406. }
  4407. static int idetape_ioctl(struct inode *inode, struct file *file,
  4408. unsigned int cmd, unsigned long arg)
  4409. {
  4410. struct block_device *bdev = inode->i_bdev;
  4411. struct ide_tape_obj *tape = ide_tape_g(bdev->bd_disk);
  4412. ide_drive_t *drive = tape->drive;
  4413. int err = generic_ide_ioctl(drive, file, bdev, cmd, arg);
  4414. if (err == -EINVAL)
  4415. err = idetape_blkdev_ioctl(drive, cmd, arg);
  4416. return err;
  4417. }
  4418. static struct block_device_operations idetape_block_ops = {
  4419. .owner = THIS_MODULE,
  4420. .open = idetape_open,
  4421. .release = idetape_release,
  4422. .ioctl = idetape_ioctl,
  4423. };
  4424. static int ide_tape_probe(ide_drive_t *drive)
  4425. {
  4426. idetape_tape_t *tape;
  4427. struct gendisk *g;
  4428. int minor;
  4429. if (!strstr("ide-tape", drive->driver_req))
  4430. goto failed;
  4431. if (!drive->present)
  4432. goto failed;
  4433. if (drive->media != ide_tape)
  4434. goto failed;
  4435. if (!idetape_identify_device (drive)) {
  4436. printk(KERN_ERR "ide-tape: %s: not supported by this version of ide-tape\n", drive->name);
  4437. goto failed;
  4438. }
  4439. if (drive->scsi) {
  4440. printk("ide-tape: passing drive %s to ide-scsi emulation.\n", drive->name);
  4441. goto failed;
  4442. }
  4443. if (strstr(drive->id->model, "OnStream DI-")) {
  4444. printk(KERN_WARNING "ide-tape: Use drive %s with ide-scsi emulation and osst.\n", drive->name);
  4445. printk(KERN_WARNING "ide-tape: OnStream support will be removed soon from ide-tape!\n");
  4446. }
  4447. tape = kzalloc(sizeof (idetape_tape_t), GFP_KERNEL);
  4448. if (tape == NULL) {
  4449. printk(KERN_ERR "ide-tape: %s: Can't allocate a tape structure\n", drive->name);
  4450. goto failed;
  4451. }
  4452. g = alloc_disk(1 << PARTN_BITS);
  4453. if (!g)
  4454. goto out_free_tape;
  4455. ide_init_disk(g, drive);
  4456. ide_proc_register_driver(drive, &idetape_driver);
  4457. kref_init(&tape->kref);
  4458. tape->drive = drive;
  4459. tape->driver = &idetape_driver;
  4460. tape->disk = g;
  4461. g->private_data = &tape->driver;
  4462. drive->driver_data = tape;
  4463. mutex_lock(&idetape_ref_mutex);
  4464. for (minor = 0; idetape_devs[minor]; minor++)
  4465. ;
  4466. idetape_devs[minor] = tape;
  4467. mutex_unlock(&idetape_ref_mutex);
  4468. idetape_setup(drive, tape, minor);
  4469. device_create(idetape_sysfs_class, &drive->gendev,
  4470. MKDEV(IDETAPE_MAJOR, minor), "%s", tape->name);
  4471. device_create(idetape_sysfs_class, &drive->gendev,
  4472. MKDEV(IDETAPE_MAJOR, minor + 128), "n%s", tape->name);
  4473. g->fops = &idetape_block_ops;
  4474. ide_register_region(g);
  4475. return 0;
  4476. out_free_tape:
  4477. kfree(tape);
  4478. failed:
  4479. return -ENODEV;
  4480. }
  4481. MODULE_DESCRIPTION("ATAPI Streaming TAPE Driver");
  4482. MODULE_LICENSE("GPL");
  4483. static void __exit idetape_exit (void)
  4484. {
  4485. driver_unregister(&idetape_driver.gen_driver);
  4486. class_destroy(idetape_sysfs_class);
  4487. unregister_chrdev(IDETAPE_MAJOR, "ht");
  4488. }
  4489. static int __init idetape_init(void)
  4490. {
  4491. int error = 1;
  4492. idetape_sysfs_class = class_create(THIS_MODULE, "ide_tape");
  4493. if (IS_ERR(idetape_sysfs_class)) {
  4494. idetape_sysfs_class = NULL;
  4495. printk(KERN_ERR "Unable to create sysfs class for ide tapes\n");
  4496. error = -EBUSY;
  4497. goto out;
  4498. }
  4499. if (register_chrdev(IDETAPE_MAJOR, "ht", &idetape_fops)) {
  4500. printk(KERN_ERR "ide-tape: Failed to register character device interface\n");
  4501. error = -EBUSY;
  4502. goto out_free_class;
  4503. }
  4504. error = driver_register(&idetape_driver.gen_driver);
  4505. if (error)
  4506. goto out_free_driver;
  4507. return 0;
  4508. out_free_driver:
  4509. driver_unregister(&idetape_driver.gen_driver);
  4510. out_free_class:
  4511. class_destroy(idetape_sysfs_class);
  4512. out:
  4513. return error;
  4514. }
  4515. MODULE_ALIAS("ide:*m-tape*");
  4516. module_init(idetape_init);
  4517. module_exit(idetape_exit);
  4518. MODULE_ALIAS_CHARDEV_MAJOR(IDETAPE_MAJOR);