ide-tape.c 161 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926
  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. if (!blk_special_request(rq)) {
  1575. ide_end_request(drive, uptodate, nr_sects);
  1576. return 0;
  1577. }
  1578. spin_lock_irqsave(&tape->spinlock, flags);
  1579. /* The request was a pipelined data transfer request */
  1580. if (tape->active_data_request == rq) {
  1581. active_stage = tape->active_stage;
  1582. tape->active_stage = NULL;
  1583. tape->active_data_request = NULL;
  1584. tape->nr_pending_stages--;
  1585. if (rq->cmd[0] & REQ_IDETAPE_WRITE) {
  1586. remove_stage = 1;
  1587. if (error) {
  1588. set_bit(IDETAPE_PIPELINE_ERROR, &tape->flags);
  1589. if (error == IDETAPE_ERROR_EOD)
  1590. idetape_abort_pipeline(drive, active_stage);
  1591. }
  1592. } else if (rq->cmd[0] & REQ_IDETAPE_READ) {
  1593. if (error == IDETAPE_ERROR_EOD) {
  1594. set_bit(IDETAPE_PIPELINE_ERROR, &tape->flags);
  1595. idetape_abort_pipeline(drive, active_stage);
  1596. }
  1597. }
  1598. if (tape->next_stage != NULL) {
  1599. idetape_active_next_stage(drive);
  1600. /*
  1601. * Insert the next request into the request queue.
  1602. */
  1603. (void) ide_do_drive_cmd(drive, tape->active_data_request, ide_end);
  1604. } else if (!error) {
  1605. idetape_increase_max_pipeline_stages(drive);
  1606. }
  1607. }
  1608. ide_end_drive_cmd(drive, 0, 0);
  1609. // blkdev_dequeue_request(rq);
  1610. // drive->rq = NULL;
  1611. // end_that_request_last(rq);
  1612. if (remove_stage)
  1613. idetape_remove_stage_head(drive);
  1614. if (tape->active_data_request == NULL)
  1615. clear_bit(IDETAPE_PIPELINE_ACTIVE, &tape->flags);
  1616. spin_unlock_irqrestore(&tape->spinlock, flags);
  1617. return 0;
  1618. }
  1619. static ide_startstop_t idetape_request_sense_callback (ide_drive_t *drive)
  1620. {
  1621. idetape_tape_t *tape = drive->driver_data;
  1622. #if IDETAPE_DEBUG_LOG
  1623. if (tape->debug_level >= 4)
  1624. printk(KERN_INFO "ide-tape: Reached idetape_request_sense_callback\n");
  1625. #endif /* IDETAPE_DEBUG_LOG */
  1626. if (!tape->pc->error) {
  1627. idetape_analyze_error(drive, (idetape_request_sense_result_t *) tape->pc->buffer);
  1628. idetape_end_request(drive, 1, 0);
  1629. } else {
  1630. printk(KERN_ERR "ide-tape: Error in REQUEST SENSE itself - Aborting request!\n");
  1631. idetape_end_request(drive, 0, 0);
  1632. }
  1633. return ide_stopped;
  1634. }
  1635. static void idetape_create_request_sense_cmd (idetape_pc_t *pc)
  1636. {
  1637. idetape_init_pc(pc);
  1638. pc->c[0] = IDETAPE_REQUEST_SENSE_CMD;
  1639. pc->c[4] = 20;
  1640. pc->request_transfer = 20;
  1641. pc->callback = &idetape_request_sense_callback;
  1642. }
  1643. static void idetape_init_rq(struct request *rq, u8 cmd)
  1644. {
  1645. memset(rq, 0, sizeof(*rq));
  1646. rq->cmd_type = REQ_TYPE_SPECIAL;
  1647. rq->cmd[0] = cmd;
  1648. }
  1649. /*
  1650. * idetape_queue_pc_head generates a new packet command request in front
  1651. * of the request queue, before the current request, so that it will be
  1652. * processed immediately, on the next pass through the driver.
  1653. *
  1654. * idetape_queue_pc_head is called from the request handling part of
  1655. * the driver (the "bottom" part). Safe storage for the request should
  1656. * be allocated with idetape_next_pc_storage and idetape_next_rq_storage
  1657. * before calling idetape_queue_pc_head.
  1658. *
  1659. * Memory for those requests is pre-allocated at initialization time, and
  1660. * is limited to IDETAPE_PC_STACK requests. We assume that we have enough
  1661. * space for the maximum possible number of inter-dependent packet commands.
  1662. *
  1663. * The higher level of the driver - The ioctl handler and the character
  1664. * device handling functions should queue request to the lower level part
  1665. * and wait for their completion using idetape_queue_pc_tail or
  1666. * idetape_queue_rw_tail.
  1667. */
  1668. static void idetape_queue_pc_head (ide_drive_t *drive, idetape_pc_t *pc,struct request *rq)
  1669. {
  1670. struct ide_tape_obj *tape = drive->driver_data;
  1671. idetape_init_rq(rq, REQ_IDETAPE_PC1);
  1672. rq->buffer = (char *) pc;
  1673. rq->rq_disk = tape->disk;
  1674. (void) ide_do_drive_cmd(drive, rq, ide_preempt);
  1675. }
  1676. /*
  1677. * idetape_retry_pc is called when an error was detected during the
  1678. * last packet command. We queue a request sense packet command in
  1679. * the head of the request list.
  1680. */
  1681. static ide_startstop_t idetape_retry_pc (ide_drive_t *drive)
  1682. {
  1683. idetape_tape_t *tape = drive->driver_data;
  1684. idetape_pc_t *pc;
  1685. struct request *rq;
  1686. (void)drive->hwif->INB(IDE_ERROR_REG);
  1687. pc = idetape_next_pc_storage(drive);
  1688. rq = idetape_next_rq_storage(drive);
  1689. idetape_create_request_sense_cmd(pc);
  1690. set_bit(IDETAPE_IGNORE_DSC, &tape->flags);
  1691. idetape_queue_pc_head(drive, pc, rq);
  1692. return ide_stopped;
  1693. }
  1694. /*
  1695. * idetape_postpone_request postpones the current request so that
  1696. * ide.c will be able to service requests from another device on
  1697. * the same hwgroup while we are polling for DSC.
  1698. */
  1699. static void idetape_postpone_request (ide_drive_t *drive)
  1700. {
  1701. idetape_tape_t *tape = drive->driver_data;
  1702. #if IDETAPE_DEBUG_LOG
  1703. if (tape->debug_level >= 4)
  1704. printk(KERN_INFO "ide-tape: idetape_postpone_request\n");
  1705. #endif
  1706. tape->postponed_rq = HWGROUP(drive)->rq;
  1707. ide_stall_queue(drive, tape->dsc_polling_frequency);
  1708. }
  1709. /*
  1710. * idetape_pc_intr is the usual interrupt handler which will be called
  1711. * during a packet command. We will transfer some of the data (as
  1712. * requested by the drive) and will re-point interrupt handler to us.
  1713. * When data transfer is finished, we will act according to the
  1714. * algorithm described before idetape_issue_packet_command.
  1715. *
  1716. */
  1717. static ide_startstop_t idetape_pc_intr (ide_drive_t *drive)
  1718. {
  1719. ide_hwif_t *hwif = drive->hwif;
  1720. idetape_tape_t *tape = drive->driver_data;
  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. u16 bcount;
  1727. u8 stat, ireason;
  1728. #if IDETAPE_DEBUG_LOG
  1729. if (tape->debug_level >= 4)
  1730. printk(KERN_INFO "ide-tape: Reached idetape_pc_intr "
  1731. "interrupt handler\n");
  1732. #endif /* IDETAPE_DEBUG_LOG */
  1733. /* Clear the interrupt */
  1734. stat = hwif->INB(IDE_STATUS_REG);
  1735. if (test_bit(PC_DMA_IN_PROGRESS, &pc->flags)) {
  1736. if (hwif->ide_dma_end(drive) || (stat & ERR_STAT)) {
  1737. /*
  1738. * A DMA error is sometimes expected. For example,
  1739. * if the tape is crossing a filemark during a
  1740. * READ command, it will issue an irq and position
  1741. * itself before the filemark, so that only a partial
  1742. * data transfer will occur (which causes the DMA
  1743. * error). In that case, we will later ask the tape
  1744. * how much bytes of the original request were
  1745. * actually transferred (we can't receive that
  1746. * information from the DMA engine on most chipsets).
  1747. */
  1748. /*
  1749. * On the contrary, a DMA error is never expected;
  1750. * it usually indicates a hardware error or abort.
  1751. * If the tape crosses a filemark during a READ
  1752. * command, it will issue an irq and position itself
  1753. * after the filemark (not before). Only a partial
  1754. * data transfer will occur, but no DMA error.
  1755. * (AS, 19 Apr 2001)
  1756. */
  1757. set_bit(PC_DMA_ERROR, &pc->flags);
  1758. } else {
  1759. pc->actually_transferred = pc->request_transfer;
  1760. idetape_update_buffers(pc);
  1761. }
  1762. #if IDETAPE_DEBUG_LOG
  1763. if (tape->debug_level >= 4)
  1764. printk(KERN_INFO "ide-tape: DMA finished\n");
  1765. #endif /* IDETAPE_DEBUG_LOG */
  1766. }
  1767. /* No more interrupts */
  1768. if ((stat & DRQ_STAT) == 0) {
  1769. #if IDETAPE_DEBUG_LOG
  1770. if (tape->debug_level >= 2)
  1771. printk(KERN_INFO "ide-tape: Packet command completed, %d bytes transferred\n", pc->actually_transferred);
  1772. #endif /* IDETAPE_DEBUG_LOG */
  1773. clear_bit(PC_DMA_IN_PROGRESS, &pc->flags);
  1774. local_irq_enable();
  1775. #if SIMULATE_ERRORS
  1776. if ((pc->c[0] == IDETAPE_WRITE_CMD ||
  1777. pc->c[0] == IDETAPE_READ_CMD) &&
  1778. (++error_sim_count % 100) == 0) {
  1779. printk(KERN_INFO "ide-tape: %s: simulating error\n",
  1780. tape->name);
  1781. stat |= ERR_STAT;
  1782. }
  1783. #endif
  1784. if ((stat & ERR_STAT) && pc->c[0] == IDETAPE_REQUEST_SENSE_CMD)
  1785. stat &= ~ERR_STAT;
  1786. if ((stat & ERR_STAT) || test_bit(PC_DMA_ERROR, &pc->flags)) {
  1787. /* Error detected */
  1788. #if IDETAPE_DEBUG_LOG
  1789. if (tape->debug_level >= 1)
  1790. printk(KERN_INFO "ide-tape: %s: I/O error\n",
  1791. tape->name);
  1792. #endif /* IDETAPE_DEBUG_LOG */
  1793. if (pc->c[0] == IDETAPE_REQUEST_SENSE_CMD) {
  1794. printk(KERN_ERR "ide-tape: I/O error in request sense command\n");
  1795. return ide_do_reset(drive);
  1796. }
  1797. #if IDETAPE_DEBUG_LOG
  1798. if (tape->debug_level >= 1)
  1799. printk(KERN_INFO "ide-tape: [cmd %x]: check condition\n", pc->c[0]);
  1800. #endif
  1801. /* Retry operation */
  1802. return idetape_retry_pc(drive);
  1803. }
  1804. pc->error = 0;
  1805. if (test_bit(PC_WAIT_FOR_DSC, &pc->flags) &&
  1806. (stat & SEEK_STAT) == 0) {
  1807. /* Media access command */
  1808. tape->dsc_polling_start = jiffies;
  1809. tape->dsc_polling_frequency = IDETAPE_DSC_MA_FAST;
  1810. tape->dsc_timeout = jiffies + IDETAPE_DSC_MA_TIMEOUT;
  1811. /* Allow ide.c to handle other requests */
  1812. idetape_postpone_request(drive);
  1813. return ide_stopped;
  1814. }
  1815. if (tape->failed_pc == pc)
  1816. tape->failed_pc = NULL;
  1817. /* Command finished - Call the callback function */
  1818. return pc->callback(drive);
  1819. }
  1820. if (test_and_clear_bit(PC_DMA_IN_PROGRESS, &pc->flags)) {
  1821. printk(KERN_ERR "ide-tape: The tape wants to issue more "
  1822. "interrupts in DMA mode\n");
  1823. printk(KERN_ERR "ide-tape: DMA disabled, reverting to PIO\n");
  1824. ide_dma_off(drive);
  1825. return ide_do_reset(drive);
  1826. }
  1827. /* Get the number of bytes to transfer on this interrupt. */
  1828. bcount = (hwif->INB(IDE_BCOUNTH_REG) << 8) |
  1829. hwif->INB(IDE_BCOUNTL_REG);
  1830. ireason = hwif->INB(IDE_IREASON_REG);
  1831. if (ireason & CD) {
  1832. printk(KERN_ERR "ide-tape: CoD != 0 in idetape_pc_intr\n");
  1833. return ide_do_reset(drive);
  1834. }
  1835. if (((ireason & IO) == IO) == test_bit(PC_WRITING, &pc->flags)) {
  1836. /* Hopefully, we will never get here */
  1837. printk(KERN_ERR "ide-tape: We wanted to %s, ",
  1838. (ireason & IO) ? "Write" : "Read");
  1839. printk(KERN_ERR "ide-tape: but the tape wants us to %s !\n",
  1840. (ireason & IO) ? "Read" : "Write");
  1841. return ide_do_reset(drive);
  1842. }
  1843. if (!test_bit(PC_WRITING, &pc->flags)) {
  1844. /* Reading - Check that we have enough space */
  1845. temp = pc->actually_transferred + bcount;
  1846. if (temp > pc->request_transfer) {
  1847. if (temp > pc->buffer_size) {
  1848. printk(KERN_ERR "ide-tape: The tape wants to send us more data than expected - discarding data\n");
  1849. idetape_discard_data(drive, bcount);
  1850. ide_set_handler(drive, &idetape_pc_intr, IDETAPE_WAIT_CMD, NULL);
  1851. return ide_started;
  1852. }
  1853. #if IDETAPE_DEBUG_LOG
  1854. if (tape->debug_level >= 2)
  1855. printk(KERN_NOTICE "ide-tape: The tape wants to send us more data than expected - allowing transfer\n");
  1856. #endif /* IDETAPE_DEBUG_LOG */
  1857. }
  1858. }
  1859. if (test_bit(PC_WRITING, &pc->flags)) {
  1860. if (pc->bh != NULL)
  1861. idetape_output_buffers(drive, pc, bcount);
  1862. else
  1863. /* Write the current buffer */
  1864. hwif->atapi_output_bytes(drive, pc->current_position,
  1865. bcount);
  1866. } else {
  1867. if (pc->bh != NULL)
  1868. idetape_input_buffers(drive, pc, bcount);
  1869. else
  1870. /* Read the current buffer */
  1871. hwif->atapi_input_bytes(drive, pc->current_position,
  1872. bcount);
  1873. }
  1874. /* Update the current position */
  1875. pc->actually_transferred += bcount;
  1876. pc->current_position += bcount;
  1877. #if IDETAPE_DEBUG_LOG
  1878. if (tape->debug_level >= 2)
  1879. printk(KERN_INFO "ide-tape: [cmd %x] transferred %d bytes "
  1880. "on that interrupt\n", pc->c[0], bcount);
  1881. #endif
  1882. /* And set the interrupt handler again */
  1883. ide_set_handler(drive, &idetape_pc_intr, IDETAPE_WAIT_CMD, NULL);
  1884. return ide_started;
  1885. }
  1886. /*
  1887. * Packet Command Interface
  1888. *
  1889. * The current Packet Command is available in tape->pc, and will not
  1890. * change until we finish handling it. Each packet command is associated
  1891. * with a callback function that will be called when the command is
  1892. * finished.
  1893. *
  1894. * The handling will be done in three stages:
  1895. *
  1896. * 1. idetape_issue_packet_command will send the packet command to the
  1897. * drive, and will set the interrupt handler to idetape_pc_intr.
  1898. *
  1899. * 2. On each interrupt, idetape_pc_intr will be called. This step
  1900. * will be repeated until the device signals us that no more
  1901. * interrupts will be issued.
  1902. *
  1903. * 3. ATAPI Tape media access commands have immediate status with a
  1904. * delayed process. In case of a successful initiation of a
  1905. * media access packet command, the DSC bit will be set when the
  1906. * actual execution of the command is finished.
  1907. * Since the tape drive will not issue an interrupt, we have to
  1908. * poll for this event. In this case, we define the request as
  1909. * "low priority request" by setting rq_status to
  1910. * IDETAPE_RQ_POSTPONED, set a timer to poll for DSC and exit
  1911. * the driver.
  1912. *
  1913. * ide.c will then give higher priority to requests which
  1914. * originate from the other device, until will change rq_status
  1915. * to RQ_ACTIVE.
  1916. *
  1917. * 4. When the packet command is finished, it will be checked for errors.
  1918. *
  1919. * 5. In case an error was found, we queue a request sense packet
  1920. * command in front of the request queue and retry the operation
  1921. * up to IDETAPE_MAX_PC_RETRIES times.
  1922. *
  1923. * 6. In case no error was found, or we decided to give up and not
  1924. * to retry again, the callback function will be called and then
  1925. * we will handle the next request.
  1926. *
  1927. */
  1928. static ide_startstop_t idetape_transfer_pc(ide_drive_t *drive)
  1929. {
  1930. ide_hwif_t *hwif = drive->hwif;
  1931. idetape_tape_t *tape = drive->driver_data;
  1932. idetape_pc_t *pc = tape->pc;
  1933. int retries = 100;
  1934. ide_startstop_t startstop;
  1935. u8 ireason;
  1936. if (ide_wait_stat(&startstop,drive,DRQ_STAT,BUSY_STAT,WAIT_READY)) {
  1937. printk(KERN_ERR "ide-tape: Strange, packet command initiated yet DRQ isn't asserted\n");
  1938. return startstop;
  1939. }
  1940. ireason = hwif->INB(IDE_IREASON_REG);
  1941. while (retries-- && ((ireason & CD) == 0 || (ireason & IO))) {
  1942. printk(KERN_ERR "ide-tape: (IO,CoD != (0,1) while issuing "
  1943. "a packet command, retrying\n");
  1944. udelay(100);
  1945. ireason = hwif->INB(IDE_IREASON_REG);
  1946. if (retries == 0) {
  1947. printk(KERN_ERR "ide-tape: (IO,CoD != (0,1) while "
  1948. "issuing a packet command, ignoring\n");
  1949. ireason |= CD;
  1950. ireason &= ~IO;
  1951. }
  1952. }
  1953. if ((ireason & CD) == 0 || (ireason & IO)) {
  1954. printk(KERN_ERR "ide-tape: (IO,CoD) != (0,1) while issuing "
  1955. "a packet command\n");
  1956. return ide_do_reset(drive);
  1957. }
  1958. /* Set the interrupt routine */
  1959. ide_set_handler(drive, &idetape_pc_intr, IDETAPE_WAIT_CMD, NULL);
  1960. #ifdef CONFIG_BLK_DEV_IDEDMA
  1961. /* Begin DMA, if necessary */
  1962. if (test_bit(PC_DMA_IN_PROGRESS, &pc->flags))
  1963. hwif->dma_start(drive);
  1964. #endif
  1965. /* Send the actual packet */
  1966. HWIF(drive)->atapi_output_bytes(drive, pc->c, 12);
  1967. return ide_started;
  1968. }
  1969. static ide_startstop_t idetape_issue_packet_command (ide_drive_t *drive, idetape_pc_t *pc)
  1970. {
  1971. ide_hwif_t *hwif = drive->hwif;
  1972. idetape_tape_t *tape = drive->driver_data;
  1973. int dma_ok = 0;
  1974. u16 bcount;
  1975. #if IDETAPE_DEBUG_BUGS
  1976. if (tape->pc->c[0] == IDETAPE_REQUEST_SENSE_CMD &&
  1977. pc->c[0] == IDETAPE_REQUEST_SENSE_CMD) {
  1978. printk(KERN_ERR "ide-tape: possible ide-tape.c bug - "
  1979. "Two request sense in serial were issued\n");
  1980. }
  1981. #endif /* IDETAPE_DEBUG_BUGS */
  1982. if (tape->failed_pc == NULL && pc->c[0] != IDETAPE_REQUEST_SENSE_CMD)
  1983. tape->failed_pc = pc;
  1984. /* Set the current packet command */
  1985. tape->pc = pc;
  1986. if (pc->retries > IDETAPE_MAX_PC_RETRIES ||
  1987. test_bit(PC_ABORT, &pc->flags)) {
  1988. /*
  1989. * We will "abort" retrying a packet command in case
  1990. * a legitimate error code was received (crossing a
  1991. * filemark, or end of the media, for example).
  1992. */
  1993. if (!test_bit(PC_ABORT, &pc->flags)) {
  1994. if (!(pc->c[0] == IDETAPE_TEST_UNIT_READY_CMD &&
  1995. tape->sense_key == 2 && tape->asc == 4 &&
  1996. (tape->ascq == 1 || tape->ascq == 8))) {
  1997. printk(KERN_ERR "ide-tape: %s: I/O error, "
  1998. "pc = %2x, key = %2x, "
  1999. "asc = %2x, ascq = %2x\n",
  2000. tape->name, pc->c[0],
  2001. tape->sense_key, tape->asc,
  2002. tape->ascq);
  2003. }
  2004. /* Giving up */
  2005. pc->error = IDETAPE_ERROR_GENERAL;
  2006. }
  2007. tape->failed_pc = NULL;
  2008. return pc->callback(drive);
  2009. }
  2010. #if IDETAPE_DEBUG_LOG
  2011. if (tape->debug_level >= 2)
  2012. printk(KERN_INFO "ide-tape: Retry number - %d, cmd = %02X\n", pc->retries, pc->c[0]);
  2013. #endif /* IDETAPE_DEBUG_LOG */
  2014. pc->retries++;
  2015. /* We haven't transferred any data yet */
  2016. pc->actually_transferred = 0;
  2017. pc->current_position = pc->buffer;
  2018. /* Request to transfer the entire buffer at once */
  2019. bcount = pc->request_transfer;
  2020. if (test_and_clear_bit(PC_DMA_ERROR, &pc->flags)) {
  2021. printk(KERN_WARNING "ide-tape: DMA disabled, "
  2022. "reverting to PIO\n");
  2023. ide_dma_off(drive);
  2024. }
  2025. if (test_bit(PC_DMA_RECOMMENDED, &pc->flags) && drive->using_dma)
  2026. dma_ok = !hwif->dma_setup(drive);
  2027. ide_pktcmd_tf_load(drive, IDE_TFLAG_NO_SELECT_MASK |
  2028. IDE_TFLAG_OUT_DEVICE, bcount, dma_ok);
  2029. if (dma_ok) /* Will begin DMA later */
  2030. set_bit(PC_DMA_IN_PROGRESS, &pc->flags);
  2031. if (test_bit(IDETAPE_DRQ_INTERRUPT, &tape->flags)) {
  2032. ide_set_handler(drive, &idetape_transfer_pc, IDETAPE_WAIT_CMD, NULL);
  2033. hwif->OUTB(WIN_PACKETCMD, IDE_COMMAND_REG);
  2034. return ide_started;
  2035. } else {
  2036. hwif->OUTB(WIN_PACKETCMD, IDE_COMMAND_REG);
  2037. return idetape_transfer_pc(drive);
  2038. }
  2039. }
  2040. /*
  2041. * General packet command callback function.
  2042. */
  2043. static ide_startstop_t idetape_pc_callback (ide_drive_t *drive)
  2044. {
  2045. idetape_tape_t *tape = drive->driver_data;
  2046. #if IDETAPE_DEBUG_LOG
  2047. if (tape->debug_level >= 4)
  2048. printk(KERN_INFO "ide-tape: Reached idetape_pc_callback\n");
  2049. #endif /* IDETAPE_DEBUG_LOG */
  2050. idetape_end_request(drive, tape->pc->error ? 0 : 1, 0);
  2051. return ide_stopped;
  2052. }
  2053. /*
  2054. * A mode sense command is used to "sense" tape parameters.
  2055. */
  2056. static void idetape_create_mode_sense_cmd (idetape_pc_t *pc, u8 page_code)
  2057. {
  2058. idetape_init_pc(pc);
  2059. pc->c[0] = IDETAPE_MODE_SENSE_CMD;
  2060. if (page_code != IDETAPE_BLOCK_DESCRIPTOR)
  2061. pc->c[1] = 8; /* DBD = 1 - Don't return block descriptors */
  2062. pc->c[2] = page_code;
  2063. /*
  2064. * Changed pc->c[3] to 0 (255 will at best return unused info).
  2065. *
  2066. * For SCSI this byte is defined as subpage instead of high byte
  2067. * of length and some IDE drives seem to interpret it this way
  2068. * and return an error when 255 is used.
  2069. */
  2070. pc->c[3] = 0;
  2071. pc->c[4] = 255; /* (We will just discard data in that case) */
  2072. if (page_code == IDETAPE_BLOCK_DESCRIPTOR)
  2073. pc->request_transfer = 12;
  2074. else if (page_code == IDETAPE_CAPABILITIES_PAGE)
  2075. pc->request_transfer = 24;
  2076. else
  2077. pc->request_transfer = 50;
  2078. pc->callback = &idetape_pc_callback;
  2079. }
  2080. static void calculate_speeds(ide_drive_t *drive)
  2081. {
  2082. idetape_tape_t *tape = drive->driver_data;
  2083. int full = 125, empty = 75;
  2084. if (time_after(jiffies, tape->controlled_pipeline_head_time + 120 * HZ)) {
  2085. tape->controlled_previous_pipeline_head = tape->controlled_last_pipeline_head;
  2086. tape->controlled_previous_head_time = tape->controlled_pipeline_head_time;
  2087. tape->controlled_last_pipeline_head = tape->pipeline_head;
  2088. tape->controlled_pipeline_head_time = jiffies;
  2089. }
  2090. if (time_after(jiffies, tape->controlled_pipeline_head_time + 60 * HZ))
  2091. tape->controlled_pipeline_head_speed = (tape->pipeline_head - tape->controlled_last_pipeline_head) * 32 * HZ / (jiffies - tape->controlled_pipeline_head_time);
  2092. else if (time_after(jiffies, tape->controlled_previous_head_time))
  2093. tape->controlled_pipeline_head_speed = (tape->pipeline_head - tape->controlled_previous_pipeline_head) * 32 * HZ / (jiffies - tape->controlled_previous_head_time);
  2094. if (tape->nr_pending_stages < tape->max_stages /*- 1 */) {
  2095. /* -1 for read mode error recovery */
  2096. if (time_after(jiffies, tape->uncontrolled_previous_head_time + 10 * HZ)) {
  2097. tape->uncontrolled_pipeline_head_time = jiffies;
  2098. tape->uncontrolled_pipeline_head_speed = (tape->pipeline_head - tape->uncontrolled_previous_pipeline_head) * 32 * HZ / (jiffies - tape->uncontrolled_previous_head_time);
  2099. }
  2100. } else {
  2101. tape->uncontrolled_previous_head_time = jiffies;
  2102. tape->uncontrolled_previous_pipeline_head = tape->pipeline_head;
  2103. if (time_after(jiffies, tape->uncontrolled_pipeline_head_time + 30 * HZ)) {
  2104. tape->uncontrolled_pipeline_head_time = jiffies;
  2105. }
  2106. }
  2107. tape->pipeline_head_speed = max(tape->uncontrolled_pipeline_head_speed, tape->controlled_pipeline_head_speed);
  2108. if (tape->speed_control == 0) {
  2109. tape->max_insert_speed = 5000;
  2110. } else if (tape->speed_control == 1) {
  2111. if (tape->nr_pending_stages >= tape->max_stages / 2)
  2112. tape->max_insert_speed = tape->pipeline_head_speed +
  2113. (1100 - tape->pipeline_head_speed) * 2 * (tape->nr_pending_stages - tape->max_stages / 2) / tape->max_stages;
  2114. else
  2115. tape->max_insert_speed = 500 +
  2116. (tape->pipeline_head_speed - 500) * 2 * tape->nr_pending_stages / tape->max_stages;
  2117. if (tape->nr_pending_stages >= tape->max_stages * 99 / 100)
  2118. tape->max_insert_speed = 5000;
  2119. } else if (tape->speed_control == 2) {
  2120. tape->max_insert_speed = tape->pipeline_head_speed * empty / 100 +
  2121. (tape->pipeline_head_speed * full / 100 - tape->pipeline_head_speed * empty / 100) * tape->nr_pending_stages / tape->max_stages;
  2122. } else
  2123. tape->max_insert_speed = tape->speed_control;
  2124. tape->max_insert_speed = max(tape->max_insert_speed, 500);
  2125. }
  2126. static ide_startstop_t idetape_media_access_finished (ide_drive_t *drive)
  2127. {
  2128. idetape_tape_t *tape = drive->driver_data;
  2129. idetape_pc_t *pc = tape->pc;
  2130. u8 stat;
  2131. stat = drive->hwif->INB(IDE_STATUS_REG);
  2132. if (stat & SEEK_STAT) {
  2133. if (stat & ERR_STAT) {
  2134. /* Error detected */
  2135. if (pc->c[0] != IDETAPE_TEST_UNIT_READY_CMD)
  2136. printk(KERN_ERR "ide-tape: %s: I/O error, ",
  2137. tape->name);
  2138. /* Retry operation */
  2139. return idetape_retry_pc(drive);
  2140. }
  2141. pc->error = 0;
  2142. if (tape->failed_pc == pc)
  2143. tape->failed_pc = NULL;
  2144. } else {
  2145. pc->error = IDETAPE_ERROR_GENERAL;
  2146. tape->failed_pc = NULL;
  2147. }
  2148. return pc->callback(drive);
  2149. }
  2150. static ide_startstop_t idetape_rw_callback (ide_drive_t *drive)
  2151. {
  2152. idetape_tape_t *tape = drive->driver_data;
  2153. struct request *rq = HWGROUP(drive)->rq;
  2154. int blocks = tape->pc->actually_transferred / tape->tape_block_size;
  2155. tape->avg_size += blocks * tape->tape_block_size;
  2156. tape->insert_size += blocks * tape->tape_block_size;
  2157. if (tape->insert_size > 1024 * 1024)
  2158. tape->measure_insert_time = 1;
  2159. if (tape->measure_insert_time) {
  2160. tape->measure_insert_time = 0;
  2161. tape->insert_time = jiffies;
  2162. tape->insert_size = 0;
  2163. }
  2164. if (time_after(jiffies, tape->insert_time))
  2165. tape->insert_speed = tape->insert_size / 1024 * HZ / (jiffies - tape->insert_time);
  2166. if (time_after_eq(jiffies, tape->avg_time + HZ)) {
  2167. tape->avg_speed = tape->avg_size * HZ / (jiffies - tape->avg_time) / 1024;
  2168. tape->avg_size = 0;
  2169. tape->avg_time = jiffies;
  2170. }
  2171. #if IDETAPE_DEBUG_LOG
  2172. if (tape->debug_level >= 4)
  2173. printk(KERN_INFO "ide-tape: Reached idetape_rw_callback\n");
  2174. #endif /* IDETAPE_DEBUG_LOG */
  2175. tape->first_frame_position += blocks;
  2176. rq->current_nr_sectors -= blocks;
  2177. if (!tape->pc->error)
  2178. idetape_end_request(drive, 1, 0);
  2179. else
  2180. idetape_end_request(drive, tape->pc->error, 0);
  2181. return ide_stopped;
  2182. }
  2183. static void idetape_create_read_cmd(idetape_tape_t *tape, idetape_pc_t *pc, unsigned int length, struct idetape_bh *bh)
  2184. {
  2185. idetape_init_pc(pc);
  2186. pc->c[0] = IDETAPE_READ_CMD;
  2187. put_unaligned(htonl(length), (unsigned int *) &pc->c[1]);
  2188. pc->c[1] = 1;
  2189. pc->callback = &idetape_rw_callback;
  2190. pc->bh = bh;
  2191. atomic_set(&bh->b_count, 0);
  2192. pc->buffer = NULL;
  2193. pc->request_transfer = pc->buffer_size = length * tape->tape_block_size;
  2194. if (pc->request_transfer == tape->stage_size)
  2195. set_bit(PC_DMA_RECOMMENDED, &pc->flags);
  2196. }
  2197. static void idetape_create_read_buffer_cmd(idetape_tape_t *tape, idetape_pc_t *pc, unsigned int length, struct idetape_bh *bh)
  2198. {
  2199. int size = 32768;
  2200. struct idetape_bh *p = bh;
  2201. idetape_init_pc(pc);
  2202. pc->c[0] = IDETAPE_READ_BUFFER_CMD;
  2203. pc->c[1] = IDETAPE_RETRIEVE_FAULTY_BLOCK;
  2204. pc->c[7] = size >> 8;
  2205. pc->c[8] = size & 0xff;
  2206. pc->callback = &idetape_pc_callback;
  2207. pc->bh = bh;
  2208. atomic_set(&bh->b_count, 0);
  2209. pc->buffer = NULL;
  2210. while (p) {
  2211. atomic_set(&p->b_count, 0);
  2212. p = p->b_reqnext;
  2213. }
  2214. pc->request_transfer = pc->buffer_size = size;
  2215. }
  2216. static void idetape_create_write_cmd(idetape_tape_t *tape, idetape_pc_t *pc, unsigned int length, struct idetape_bh *bh)
  2217. {
  2218. idetape_init_pc(pc);
  2219. pc->c[0] = IDETAPE_WRITE_CMD;
  2220. put_unaligned(htonl(length), (unsigned int *) &pc->c[1]);
  2221. pc->c[1] = 1;
  2222. pc->callback = &idetape_rw_callback;
  2223. set_bit(PC_WRITING, &pc->flags);
  2224. pc->bh = bh;
  2225. pc->b_data = bh->b_data;
  2226. pc->b_count = atomic_read(&bh->b_count);
  2227. pc->buffer = NULL;
  2228. pc->request_transfer = pc->buffer_size = length * tape->tape_block_size;
  2229. if (pc->request_transfer == tape->stage_size)
  2230. set_bit(PC_DMA_RECOMMENDED, &pc->flags);
  2231. }
  2232. /*
  2233. * idetape_do_request is our request handling function.
  2234. */
  2235. static ide_startstop_t idetape_do_request(ide_drive_t *drive,
  2236. struct request *rq, sector_t block)
  2237. {
  2238. idetape_tape_t *tape = drive->driver_data;
  2239. idetape_pc_t *pc = NULL;
  2240. struct request *postponed_rq = tape->postponed_rq;
  2241. u8 stat;
  2242. #if IDETAPE_DEBUG_LOG
  2243. #if 0
  2244. if (tape->debug_level >= 5)
  2245. printk(KERN_INFO "ide-tape: %d, "
  2246. "dev: %s, cmd: %ld, errors: %d\n",
  2247. rq->rq_disk->disk_name, rq->cmd[0], rq->errors);
  2248. #endif
  2249. if (tape->debug_level >= 2)
  2250. printk(KERN_INFO "ide-tape: sector: %ld, "
  2251. "nr_sectors: %ld, current_nr_sectors: %d\n",
  2252. rq->sector, rq->nr_sectors, rq->current_nr_sectors);
  2253. #endif /* IDETAPE_DEBUG_LOG */
  2254. if (!blk_special_request(rq)) {
  2255. /*
  2256. * We do not support buffer cache originated requests.
  2257. */
  2258. printk(KERN_NOTICE "ide-tape: %s: Unsupported request in "
  2259. "request queue (%d)\n", drive->name, rq->cmd_type);
  2260. ide_end_request(drive, 0, 0);
  2261. return ide_stopped;
  2262. }
  2263. /*
  2264. * Retry a failed packet command
  2265. */
  2266. if (tape->failed_pc != NULL &&
  2267. tape->pc->c[0] == IDETAPE_REQUEST_SENSE_CMD) {
  2268. return idetape_issue_packet_command(drive, tape->failed_pc);
  2269. }
  2270. #if IDETAPE_DEBUG_BUGS
  2271. if (postponed_rq != NULL)
  2272. if (rq != postponed_rq) {
  2273. printk(KERN_ERR "ide-tape: ide-tape.c bug - "
  2274. "Two DSC requests were queued\n");
  2275. idetape_end_request(drive, 0, 0);
  2276. return ide_stopped;
  2277. }
  2278. #endif /* IDETAPE_DEBUG_BUGS */
  2279. tape->postponed_rq = NULL;
  2280. /*
  2281. * If the tape is still busy, postpone our request and service
  2282. * the other device meanwhile.
  2283. */
  2284. stat = drive->hwif->INB(IDE_STATUS_REG);
  2285. if (!drive->dsc_overlap && !(rq->cmd[0] & REQ_IDETAPE_PC2))
  2286. set_bit(IDETAPE_IGNORE_DSC, &tape->flags);
  2287. if (drive->post_reset == 1) {
  2288. set_bit(IDETAPE_IGNORE_DSC, &tape->flags);
  2289. drive->post_reset = 0;
  2290. }
  2291. if (tape->tape_still_time > 100 && tape->tape_still_time < 200)
  2292. tape->measure_insert_time = 1;
  2293. if (time_after(jiffies, tape->insert_time))
  2294. tape->insert_speed = tape->insert_size / 1024 * HZ / (jiffies - tape->insert_time);
  2295. calculate_speeds(drive);
  2296. if (!test_and_clear_bit(IDETAPE_IGNORE_DSC, &tape->flags) &&
  2297. (stat & SEEK_STAT) == 0) {
  2298. if (postponed_rq == NULL) {
  2299. tape->dsc_polling_start = jiffies;
  2300. tape->dsc_polling_frequency = tape->best_dsc_rw_frequency;
  2301. tape->dsc_timeout = jiffies + IDETAPE_DSC_RW_TIMEOUT;
  2302. } else if (time_after(jiffies, tape->dsc_timeout)) {
  2303. printk(KERN_ERR "ide-tape: %s: DSC timeout\n",
  2304. tape->name);
  2305. if (rq->cmd[0] & REQ_IDETAPE_PC2) {
  2306. idetape_media_access_finished(drive);
  2307. return ide_stopped;
  2308. } else {
  2309. return ide_do_reset(drive);
  2310. }
  2311. } else if (time_after(jiffies, tape->dsc_polling_start + IDETAPE_DSC_MA_THRESHOLD))
  2312. tape->dsc_polling_frequency = IDETAPE_DSC_MA_SLOW;
  2313. idetape_postpone_request(drive);
  2314. return ide_stopped;
  2315. }
  2316. if (rq->cmd[0] & REQ_IDETAPE_READ) {
  2317. tape->buffer_head++;
  2318. tape->postpone_cnt = 0;
  2319. pc = idetape_next_pc_storage(drive);
  2320. idetape_create_read_cmd(tape, pc, rq->current_nr_sectors, (struct idetape_bh *)rq->special);
  2321. goto out;
  2322. }
  2323. if (rq->cmd[0] & REQ_IDETAPE_WRITE) {
  2324. tape->buffer_head++;
  2325. tape->postpone_cnt = 0;
  2326. pc = idetape_next_pc_storage(drive);
  2327. idetape_create_write_cmd(tape, pc, rq->current_nr_sectors, (struct idetape_bh *)rq->special);
  2328. goto out;
  2329. }
  2330. if (rq->cmd[0] & REQ_IDETAPE_READ_BUFFER) {
  2331. tape->postpone_cnt = 0;
  2332. pc = idetape_next_pc_storage(drive);
  2333. idetape_create_read_buffer_cmd(tape, pc, rq->current_nr_sectors, (struct idetape_bh *)rq->special);
  2334. goto out;
  2335. }
  2336. if (rq->cmd[0] & REQ_IDETAPE_PC1) {
  2337. pc = (idetape_pc_t *) rq->buffer;
  2338. rq->cmd[0] &= ~(REQ_IDETAPE_PC1);
  2339. rq->cmd[0] |= REQ_IDETAPE_PC2;
  2340. goto out;
  2341. }
  2342. if (rq->cmd[0] & REQ_IDETAPE_PC2) {
  2343. idetape_media_access_finished(drive);
  2344. return ide_stopped;
  2345. }
  2346. BUG();
  2347. out:
  2348. return idetape_issue_packet_command(drive, pc);
  2349. }
  2350. /*
  2351. * Pipeline related functions
  2352. */
  2353. static inline int idetape_pipeline_active (idetape_tape_t *tape)
  2354. {
  2355. int rc1, rc2;
  2356. rc1 = test_bit(IDETAPE_PIPELINE_ACTIVE, &tape->flags);
  2357. rc2 = (tape->active_data_request != NULL);
  2358. return rc1;
  2359. }
  2360. /*
  2361. * idetape_kmalloc_stage uses __get_free_page to allocate a pipeline
  2362. * stage, along with all the necessary small buffers which together make
  2363. * a buffer of size tape->stage_size (or a bit more). We attempt to
  2364. * combine sequential pages as much as possible.
  2365. *
  2366. * Returns a pointer to the new allocated stage, or NULL if we
  2367. * can't (or don't want to) allocate a stage.
  2368. *
  2369. * Pipeline stages are optional and are used to increase performance.
  2370. * If we can't allocate them, we'll manage without them.
  2371. */
  2372. static idetape_stage_t *__idetape_kmalloc_stage (idetape_tape_t *tape, int full, int clear)
  2373. {
  2374. idetape_stage_t *stage;
  2375. struct idetape_bh *prev_bh, *bh;
  2376. int pages = tape->pages_per_stage;
  2377. char *b_data = NULL;
  2378. if ((stage = kmalloc(sizeof (idetape_stage_t),GFP_KERNEL)) == NULL)
  2379. return NULL;
  2380. stage->next = NULL;
  2381. bh = stage->bh = kmalloc(sizeof(struct idetape_bh), GFP_KERNEL);
  2382. if (bh == NULL)
  2383. goto abort;
  2384. bh->b_reqnext = NULL;
  2385. if ((bh->b_data = (char *) __get_free_page (GFP_KERNEL)) == NULL)
  2386. goto abort;
  2387. if (clear)
  2388. memset(bh->b_data, 0, PAGE_SIZE);
  2389. bh->b_size = PAGE_SIZE;
  2390. atomic_set(&bh->b_count, full ? bh->b_size : 0);
  2391. while (--pages) {
  2392. if ((b_data = (char *) __get_free_page (GFP_KERNEL)) == NULL)
  2393. goto abort;
  2394. if (clear)
  2395. memset(b_data, 0, PAGE_SIZE);
  2396. if (bh->b_data == b_data + PAGE_SIZE) {
  2397. bh->b_size += PAGE_SIZE;
  2398. bh->b_data -= PAGE_SIZE;
  2399. if (full)
  2400. atomic_add(PAGE_SIZE, &bh->b_count);
  2401. continue;
  2402. }
  2403. if (b_data == bh->b_data + bh->b_size) {
  2404. bh->b_size += PAGE_SIZE;
  2405. if (full)
  2406. atomic_add(PAGE_SIZE, &bh->b_count);
  2407. continue;
  2408. }
  2409. prev_bh = bh;
  2410. if ((bh = kmalloc(sizeof(struct idetape_bh), GFP_KERNEL)) == NULL) {
  2411. free_page((unsigned long) b_data);
  2412. goto abort;
  2413. }
  2414. bh->b_reqnext = NULL;
  2415. bh->b_data = b_data;
  2416. bh->b_size = PAGE_SIZE;
  2417. atomic_set(&bh->b_count, full ? bh->b_size : 0);
  2418. prev_bh->b_reqnext = bh;
  2419. }
  2420. bh->b_size -= tape->excess_bh_size;
  2421. if (full)
  2422. atomic_sub(tape->excess_bh_size, &bh->b_count);
  2423. return stage;
  2424. abort:
  2425. __idetape_kfree_stage(stage);
  2426. return NULL;
  2427. }
  2428. static idetape_stage_t *idetape_kmalloc_stage (idetape_tape_t *tape)
  2429. {
  2430. idetape_stage_t *cache_stage = tape->cache_stage;
  2431. #if IDETAPE_DEBUG_LOG
  2432. if (tape->debug_level >= 4)
  2433. printk(KERN_INFO "ide-tape: Reached idetape_kmalloc_stage\n");
  2434. #endif /* IDETAPE_DEBUG_LOG */
  2435. if (tape->nr_stages >= tape->max_stages)
  2436. return NULL;
  2437. if (cache_stage != NULL) {
  2438. tape->cache_stage = NULL;
  2439. return cache_stage;
  2440. }
  2441. return __idetape_kmalloc_stage(tape, 0, 0);
  2442. }
  2443. static int idetape_copy_stage_from_user (idetape_tape_t *tape, idetape_stage_t *stage, const char __user *buf, int n)
  2444. {
  2445. struct idetape_bh *bh = tape->bh;
  2446. int count;
  2447. int ret = 0;
  2448. while (n) {
  2449. #if IDETAPE_DEBUG_BUGS
  2450. if (bh == NULL) {
  2451. printk(KERN_ERR "ide-tape: bh == NULL in "
  2452. "idetape_copy_stage_from_user\n");
  2453. return 1;
  2454. }
  2455. #endif /* IDETAPE_DEBUG_BUGS */
  2456. count = min((unsigned int)(bh->b_size - atomic_read(&bh->b_count)), (unsigned int)n);
  2457. if (copy_from_user(bh->b_data + atomic_read(&bh->b_count), buf, count))
  2458. ret = 1;
  2459. n -= count;
  2460. atomic_add(count, &bh->b_count);
  2461. buf += count;
  2462. if (atomic_read(&bh->b_count) == bh->b_size) {
  2463. bh = bh->b_reqnext;
  2464. if (bh)
  2465. atomic_set(&bh->b_count, 0);
  2466. }
  2467. }
  2468. tape->bh = bh;
  2469. return ret;
  2470. }
  2471. static int idetape_copy_stage_to_user (idetape_tape_t *tape, char __user *buf, idetape_stage_t *stage, int n)
  2472. {
  2473. struct idetape_bh *bh = tape->bh;
  2474. int count;
  2475. int ret = 0;
  2476. while (n) {
  2477. #if IDETAPE_DEBUG_BUGS
  2478. if (bh == NULL) {
  2479. printk(KERN_ERR "ide-tape: bh == NULL in "
  2480. "idetape_copy_stage_to_user\n");
  2481. return 1;
  2482. }
  2483. #endif /* IDETAPE_DEBUG_BUGS */
  2484. count = min(tape->b_count, n);
  2485. if (copy_to_user(buf, tape->b_data, count))
  2486. ret = 1;
  2487. n -= count;
  2488. tape->b_data += count;
  2489. tape->b_count -= count;
  2490. buf += count;
  2491. if (!tape->b_count) {
  2492. tape->bh = bh = bh->b_reqnext;
  2493. if (bh) {
  2494. tape->b_data = bh->b_data;
  2495. tape->b_count = atomic_read(&bh->b_count);
  2496. }
  2497. }
  2498. }
  2499. return ret;
  2500. }
  2501. static void idetape_init_merge_stage (idetape_tape_t *tape)
  2502. {
  2503. struct idetape_bh *bh = tape->merge_stage->bh;
  2504. tape->bh = bh;
  2505. if (tape->chrdev_direction == idetape_direction_write)
  2506. atomic_set(&bh->b_count, 0);
  2507. else {
  2508. tape->b_data = bh->b_data;
  2509. tape->b_count = atomic_read(&bh->b_count);
  2510. }
  2511. }
  2512. static void idetape_switch_buffers (idetape_tape_t *tape, idetape_stage_t *stage)
  2513. {
  2514. struct idetape_bh *tmp;
  2515. tmp = stage->bh;
  2516. stage->bh = tape->merge_stage->bh;
  2517. tape->merge_stage->bh = tmp;
  2518. idetape_init_merge_stage(tape);
  2519. }
  2520. /*
  2521. * idetape_add_stage_tail adds a new stage at the end of the pipeline.
  2522. */
  2523. static void idetape_add_stage_tail (ide_drive_t *drive,idetape_stage_t *stage)
  2524. {
  2525. idetape_tape_t *tape = drive->driver_data;
  2526. unsigned long flags;
  2527. #if IDETAPE_DEBUG_LOG
  2528. if (tape->debug_level >= 4)
  2529. printk (KERN_INFO "ide-tape: Reached idetape_add_stage_tail\n");
  2530. #endif /* IDETAPE_DEBUG_LOG */
  2531. spin_lock_irqsave(&tape->spinlock, flags);
  2532. stage->next = NULL;
  2533. if (tape->last_stage != NULL)
  2534. tape->last_stage->next=stage;
  2535. else
  2536. tape->first_stage = tape->next_stage=stage;
  2537. tape->last_stage = stage;
  2538. if (tape->next_stage == NULL)
  2539. tape->next_stage = tape->last_stage;
  2540. tape->nr_stages++;
  2541. tape->nr_pending_stages++;
  2542. spin_unlock_irqrestore(&tape->spinlock, flags);
  2543. }
  2544. /*
  2545. * idetape_wait_for_request installs a completion in a pending request
  2546. * and sleeps until it is serviced.
  2547. *
  2548. * The caller should ensure that the request will not be serviced
  2549. * before we install the completion (usually by disabling interrupts).
  2550. */
  2551. static void idetape_wait_for_request (ide_drive_t *drive, struct request *rq)
  2552. {
  2553. DECLARE_COMPLETION_ONSTACK(wait);
  2554. idetape_tape_t *tape = drive->driver_data;
  2555. #if IDETAPE_DEBUG_BUGS
  2556. if (rq == NULL || !blk_special_request(rq)) {
  2557. printk (KERN_ERR "ide-tape: bug: Trying to sleep on non-valid request\n");
  2558. return;
  2559. }
  2560. #endif /* IDETAPE_DEBUG_BUGS */
  2561. rq->end_io_data = &wait;
  2562. rq->end_io = blk_end_sync_rq;
  2563. spin_unlock_irq(&tape->spinlock);
  2564. wait_for_completion(&wait);
  2565. /* The stage and its struct request have been deallocated */
  2566. spin_lock_irq(&tape->spinlock);
  2567. }
  2568. static ide_startstop_t idetape_read_position_callback (ide_drive_t *drive)
  2569. {
  2570. idetape_tape_t *tape = drive->driver_data;
  2571. idetape_read_position_result_t *result;
  2572. #if IDETAPE_DEBUG_LOG
  2573. if (tape->debug_level >= 4)
  2574. printk(KERN_INFO "ide-tape: Reached idetape_read_position_callback\n");
  2575. #endif /* IDETAPE_DEBUG_LOG */
  2576. if (!tape->pc->error) {
  2577. result = (idetape_read_position_result_t *) tape->pc->buffer;
  2578. #if IDETAPE_DEBUG_LOG
  2579. if (tape->debug_level >= 2)
  2580. printk(KERN_INFO "ide-tape: BOP - %s\n",result->bop ? "Yes":"No");
  2581. if (tape->debug_level >= 2)
  2582. printk(KERN_INFO "ide-tape: EOP - %s\n",result->eop ? "Yes":"No");
  2583. #endif /* IDETAPE_DEBUG_LOG */
  2584. if (result->bpu) {
  2585. printk(KERN_INFO "ide-tape: Block location is unknown to the tape\n");
  2586. clear_bit(IDETAPE_ADDRESS_VALID, &tape->flags);
  2587. idetape_end_request(drive, 0, 0);
  2588. } else {
  2589. #if IDETAPE_DEBUG_LOG
  2590. if (tape->debug_level >= 2)
  2591. printk(KERN_INFO "ide-tape: Block Location - %u\n", ntohl(result->first_block));
  2592. #endif /* IDETAPE_DEBUG_LOG */
  2593. tape->partition = result->partition;
  2594. tape->first_frame_position = ntohl(result->first_block);
  2595. tape->last_frame_position = ntohl(result->last_block);
  2596. tape->blocks_in_buffer = result->blocks_in_buffer[2];
  2597. set_bit(IDETAPE_ADDRESS_VALID, &tape->flags);
  2598. idetape_end_request(drive, 1, 0);
  2599. }
  2600. } else {
  2601. idetape_end_request(drive, 0, 0);
  2602. }
  2603. return ide_stopped;
  2604. }
  2605. /*
  2606. * idetape_create_write_filemark_cmd will:
  2607. *
  2608. * 1. Write a filemark if write_filemark=1.
  2609. * 2. Flush the device buffers without writing a filemark
  2610. * if write_filemark=0.
  2611. *
  2612. */
  2613. static void idetape_create_write_filemark_cmd (ide_drive_t *drive, idetape_pc_t *pc,int write_filemark)
  2614. {
  2615. idetape_init_pc(pc);
  2616. pc->c[0] = IDETAPE_WRITE_FILEMARK_CMD;
  2617. pc->c[4] = write_filemark;
  2618. set_bit(PC_WAIT_FOR_DSC, &pc->flags);
  2619. pc->callback = &idetape_pc_callback;
  2620. }
  2621. static void idetape_create_test_unit_ready_cmd(idetape_pc_t *pc)
  2622. {
  2623. idetape_init_pc(pc);
  2624. pc->c[0] = IDETAPE_TEST_UNIT_READY_CMD;
  2625. pc->callback = &idetape_pc_callback;
  2626. }
  2627. /*
  2628. * idetape_queue_pc_tail is based on the following functions:
  2629. *
  2630. * ide_do_drive_cmd from ide.c
  2631. * cdrom_queue_request and cdrom_queue_packet_command from ide-cd.c
  2632. *
  2633. * We add a special packet command request to the tail of the request
  2634. * queue, and wait for it to be serviced.
  2635. *
  2636. * This is not to be called from within the request handling part
  2637. * of the driver ! We allocate here data in the stack, and it is valid
  2638. * until the request is finished. This is not the case for the bottom
  2639. * part of the driver, where we are always leaving the functions to wait
  2640. * for an interrupt or a timer event.
  2641. *
  2642. * From the bottom part of the driver, we should allocate safe memory
  2643. * using idetape_next_pc_storage and idetape_next_rq_storage, and add
  2644. * the request to the request list without waiting for it to be serviced !
  2645. * In that case, we usually use idetape_queue_pc_head.
  2646. */
  2647. static int __idetape_queue_pc_tail (ide_drive_t *drive, idetape_pc_t *pc)
  2648. {
  2649. struct ide_tape_obj *tape = drive->driver_data;
  2650. struct request rq;
  2651. idetape_init_rq(&rq, REQ_IDETAPE_PC1);
  2652. rq.buffer = (char *) pc;
  2653. rq.rq_disk = tape->disk;
  2654. return ide_do_drive_cmd(drive, &rq, ide_wait);
  2655. }
  2656. static void idetape_create_load_unload_cmd (ide_drive_t *drive, idetape_pc_t *pc,int cmd)
  2657. {
  2658. idetape_init_pc(pc);
  2659. pc->c[0] = IDETAPE_LOAD_UNLOAD_CMD;
  2660. pc->c[4] = cmd;
  2661. set_bit(PC_WAIT_FOR_DSC, &pc->flags);
  2662. pc->callback = &idetape_pc_callback;
  2663. }
  2664. static int idetape_wait_ready(ide_drive_t *drive, unsigned long timeout)
  2665. {
  2666. idetape_tape_t *tape = drive->driver_data;
  2667. idetape_pc_t pc;
  2668. int load_attempted = 0;
  2669. /*
  2670. * Wait for the tape to become ready
  2671. */
  2672. set_bit(IDETAPE_MEDIUM_PRESENT, &tape->flags);
  2673. timeout += jiffies;
  2674. while (time_before(jiffies, timeout)) {
  2675. idetape_create_test_unit_ready_cmd(&pc);
  2676. if (!__idetape_queue_pc_tail(drive, &pc))
  2677. return 0;
  2678. if ((tape->sense_key == 2 && tape->asc == 4 && tape->ascq == 2)
  2679. || (tape->asc == 0x3A)) { /* no media */
  2680. if (load_attempted)
  2681. return -ENOMEDIUM;
  2682. idetape_create_load_unload_cmd(drive, &pc, IDETAPE_LU_LOAD_MASK);
  2683. __idetape_queue_pc_tail(drive, &pc);
  2684. load_attempted = 1;
  2685. /* not about to be ready */
  2686. } else if (!(tape->sense_key == 2 && tape->asc == 4 &&
  2687. (tape->ascq == 1 || tape->ascq == 8)))
  2688. return -EIO;
  2689. msleep(100);
  2690. }
  2691. return -EIO;
  2692. }
  2693. static int idetape_queue_pc_tail (ide_drive_t *drive,idetape_pc_t *pc)
  2694. {
  2695. return __idetape_queue_pc_tail(drive, pc);
  2696. }
  2697. static int idetape_flush_tape_buffers (ide_drive_t *drive)
  2698. {
  2699. idetape_pc_t pc;
  2700. int rc;
  2701. idetape_create_write_filemark_cmd(drive, &pc, 0);
  2702. if ((rc = idetape_queue_pc_tail(drive, &pc)))
  2703. return rc;
  2704. idetape_wait_ready(drive, 60 * 5 * HZ);
  2705. return 0;
  2706. }
  2707. static void idetape_create_read_position_cmd (idetape_pc_t *pc)
  2708. {
  2709. idetape_init_pc(pc);
  2710. pc->c[0] = IDETAPE_READ_POSITION_CMD;
  2711. pc->request_transfer = 20;
  2712. pc->callback = &idetape_read_position_callback;
  2713. }
  2714. static int idetape_read_position (ide_drive_t *drive)
  2715. {
  2716. idetape_tape_t *tape = drive->driver_data;
  2717. idetape_pc_t pc;
  2718. int position;
  2719. #if IDETAPE_DEBUG_LOG
  2720. if (tape->debug_level >= 4)
  2721. printk(KERN_INFO "ide-tape: Reached idetape_read_position\n");
  2722. #endif /* IDETAPE_DEBUG_LOG */
  2723. idetape_create_read_position_cmd(&pc);
  2724. if (idetape_queue_pc_tail(drive, &pc))
  2725. return -1;
  2726. position = tape->first_frame_position;
  2727. return position;
  2728. }
  2729. static void idetape_create_locate_cmd (ide_drive_t *drive, idetape_pc_t *pc, unsigned int block, u8 partition, int skip)
  2730. {
  2731. idetape_init_pc(pc);
  2732. pc->c[0] = IDETAPE_LOCATE_CMD;
  2733. pc->c[1] = 2;
  2734. put_unaligned(htonl(block), (unsigned int *) &pc->c[3]);
  2735. pc->c[8] = partition;
  2736. set_bit(PC_WAIT_FOR_DSC, &pc->flags);
  2737. pc->callback = &idetape_pc_callback;
  2738. }
  2739. static int idetape_create_prevent_cmd (ide_drive_t *drive, idetape_pc_t *pc, int prevent)
  2740. {
  2741. idetape_tape_t *tape = drive->driver_data;
  2742. if (!tape->capabilities.lock)
  2743. return 0;
  2744. idetape_init_pc(pc);
  2745. pc->c[0] = IDETAPE_PREVENT_CMD;
  2746. pc->c[4] = prevent;
  2747. pc->callback = &idetape_pc_callback;
  2748. return 1;
  2749. }
  2750. static int __idetape_discard_read_pipeline (ide_drive_t *drive)
  2751. {
  2752. idetape_tape_t *tape = drive->driver_data;
  2753. unsigned long flags;
  2754. int cnt;
  2755. if (tape->chrdev_direction != idetape_direction_read)
  2756. return 0;
  2757. /* Remove merge stage. */
  2758. cnt = tape->merge_stage_size / tape->tape_block_size;
  2759. if (test_and_clear_bit(IDETAPE_FILEMARK, &tape->flags))
  2760. ++cnt; /* Filemarks count as 1 sector */
  2761. tape->merge_stage_size = 0;
  2762. if (tape->merge_stage != NULL) {
  2763. __idetape_kfree_stage(tape->merge_stage);
  2764. tape->merge_stage = NULL;
  2765. }
  2766. /* Clear pipeline flags. */
  2767. clear_bit(IDETAPE_PIPELINE_ERROR, &tape->flags);
  2768. tape->chrdev_direction = idetape_direction_none;
  2769. /* Remove pipeline stages. */
  2770. if (tape->first_stage == NULL)
  2771. return 0;
  2772. spin_lock_irqsave(&tape->spinlock, flags);
  2773. tape->next_stage = NULL;
  2774. if (idetape_pipeline_active(tape))
  2775. idetape_wait_for_request(drive, tape->active_data_request);
  2776. spin_unlock_irqrestore(&tape->spinlock, flags);
  2777. while (tape->first_stage != NULL) {
  2778. struct request *rq_ptr = &tape->first_stage->rq;
  2779. cnt += rq_ptr->nr_sectors - rq_ptr->current_nr_sectors;
  2780. if (rq_ptr->errors == IDETAPE_ERROR_FILEMARK)
  2781. ++cnt;
  2782. idetape_remove_stage_head(drive);
  2783. }
  2784. tape->nr_pending_stages = 0;
  2785. tape->max_stages = tape->min_pipeline;
  2786. return cnt;
  2787. }
  2788. /*
  2789. * idetape_position_tape positions the tape to the requested block
  2790. * using the LOCATE packet command. A READ POSITION command is then
  2791. * issued to check where we are positioned.
  2792. *
  2793. * Like all higher level operations, we queue the commands at the tail
  2794. * of the request queue and wait for their completion.
  2795. *
  2796. */
  2797. static int idetape_position_tape (ide_drive_t *drive, unsigned int block, u8 partition, int skip)
  2798. {
  2799. idetape_tape_t *tape = drive->driver_data;
  2800. int retval;
  2801. idetape_pc_t pc;
  2802. if (tape->chrdev_direction == idetape_direction_read)
  2803. __idetape_discard_read_pipeline(drive);
  2804. idetape_wait_ready(drive, 60 * 5 * HZ);
  2805. idetape_create_locate_cmd(drive, &pc, block, partition, skip);
  2806. retval = idetape_queue_pc_tail(drive, &pc);
  2807. if (retval)
  2808. return (retval);
  2809. idetape_create_read_position_cmd(&pc);
  2810. return (idetape_queue_pc_tail(drive, &pc));
  2811. }
  2812. static void idetape_discard_read_pipeline (ide_drive_t *drive, int restore_position)
  2813. {
  2814. idetape_tape_t *tape = drive->driver_data;
  2815. int cnt;
  2816. int seek, position;
  2817. cnt = __idetape_discard_read_pipeline(drive);
  2818. if (restore_position) {
  2819. position = idetape_read_position(drive);
  2820. seek = position > cnt ? position - cnt : 0;
  2821. if (idetape_position_tape(drive, seek, 0, 0)) {
  2822. printk(KERN_INFO "ide-tape: %s: position_tape failed in discard_pipeline()\n", tape->name);
  2823. return;
  2824. }
  2825. }
  2826. }
  2827. /*
  2828. * idetape_queue_rw_tail generates a read/write request for the block
  2829. * device interface and wait for it to be serviced.
  2830. */
  2831. static int idetape_queue_rw_tail(ide_drive_t *drive, int cmd, int blocks, struct idetape_bh *bh)
  2832. {
  2833. idetape_tape_t *tape = drive->driver_data;
  2834. struct request rq;
  2835. #if IDETAPE_DEBUG_LOG
  2836. if (tape->debug_level >= 2)
  2837. printk(KERN_INFO "ide-tape: idetape_queue_rw_tail: cmd=%d\n",cmd);
  2838. #endif /* IDETAPE_DEBUG_LOG */
  2839. #if IDETAPE_DEBUG_BUGS
  2840. if (idetape_pipeline_active(tape)) {
  2841. printk(KERN_ERR "ide-tape: bug: the pipeline is active in idetape_queue_rw_tail\n");
  2842. return (0);
  2843. }
  2844. #endif /* IDETAPE_DEBUG_BUGS */
  2845. idetape_init_rq(&rq, cmd);
  2846. rq.rq_disk = tape->disk;
  2847. rq.special = (void *)bh;
  2848. rq.sector = tape->first_frame_position;
  2849. rq.nr_sectors = rq.current_nr_sectors = blocks;
  2850. (void) ide_do_drive_cmd(drive, &rq, ide_wait);
  2851. if ((cmd & (REQ_IDETAPE_READ | REQ_IDETAPE_WRITE)) == 0)
  2852. return 0;
  2853. if (tape->merge_stage)
  2854. idetape_init_merge_stage(tape);
  2855. if (rq.errors == IDETAPE_ERROR_GENERAL)
  2856. return -EIO;
  2857. return (tape->tape_block_size * (blocks-rq.current_nr_sectors));
  2858. }
  2859. /*
  2860. * idetape_insert_pipeline_into_queue is used to start servicing the
  2861. * pipeline stages, starting from tape->next_stage.
  2862. */
  2863. static void idetape_insert_pipeline_into_queue (ide_drive_t *drive)
  2864. {
  2865. idetape_tape_t *tape = drive->driver_data;
  2866. if (tape->next_stage == NULL)
  2867. return;
  2868. if (!idetape_pipeline_active(tape)) {
  2869. set_bit(IDETAPE_PIPELINE_ACTIVE, &tape->flags);
  2870. idetape_active_next_stage(drive);
  2871. (void) ide_do_drive_cmd(drive, tape->active_data_request, ide_end);
  2872. }
  2873. }
  2874. static void idetape_create_inquiry_cmd (idetape_pc_t *pc)
  2875. {
  2876. idetape_init_pc(pc);
  2877. pc->c[0] = IDETAPE_INQUIRY_CMD;
  2878. pc->c[4] = pc->request_transfer = 254;
  2879. pc->callback = &idetape_pc_callback;
  2880. }
  2881. static void idetape_create_rewind_cmd (ide_drive_t *drive, idetape_pc_t *pc)
  2882. {
  2883. idetape_init_pc(pc);
  2884. pc->c[0] = IDETAPE_REWIND_CMD;
  2885. set_bit(PC_WAIT_FOR_DSC, &pc->flags);
  2886. pc->callback = &idetape_pc_callback;
  2887. }
  2888. #if 0
  2889. static void idetape_create_mode_select_cmd (idetape_pc_t *pc, int length)
  2890. {
  2891. idetape_init_pc(pc);
  2892. set_bit(PC_WRITING, &pc->flags);
  2893. pc->c[0] = IDETAPE_MODE_SELECT_CMD;
  2894. pc->c[1] = 0x10;
  2895. put_unaligned(htons(length), (unsigned short *) &pc->c[3]);
  2896. pc->request_transfer = 255;
  2897. pc->callback = &idetape_pc_callback;
  2898. }
  2899. #endif
  2900. static void idetape_create_erase_cmd (idetape_pc_t *pc)
  2901. {
  2902. idetape_init_pc(pc);
  2903. pc->c[0] = IDETAPE_ERASE_CMD;
  2904. pc->c[1] = 1;
  2905. set_bit(PC_WAIT_FOR_DSC, &pc->flags);
  2906. pc->callback = &idetape_pc_callback;
  2907. }
  2908. static void idetape_create_space_cmd (idetape_pc_t *pc,int count, u8 cmd)
  2909. {
  2910. idetape_init_pc(pc);
  2911. pc->c[0] = IDETAPE_SPACE_CMD;
  2912. put_unaligned(htonl(count), (unsigned int *) &pc->c[1]);
  2913. pc->c[1] = cmd;
  2914. set_bit(PC_WAIT_FOR_DSC, &pc->flags);
  2915. pc->callback = &idetape_pc_callback;
  2916. }
  2917. static void idetape_wait_first_stage (ide_drive_t *drive)
  2918. {
  2919. idetape_tape_t *tape = drive->driver_data;
  2920. unsigned long flags;
  2921. if (tape->first_stage == NULL)
  2922. return;
  2923. spin_lock_irqsave(&tape->spinlock, flags);
  2924. if (tape->active_stage == tape->first_stage)
  2925. idetape_wait_for_request(drive, tape->active_data_request);
  2926. spin_unlock_irqrestore(&tape->spinlock, flags);
  2927. }
  2928. /*
  2929. * idetape_add_chrdev_write_request tries to add a character device
  2930. * originated write request to our pipeline. In case we don't succeed,
  2931. * we revert to non-pipelined operation mode for this request.
  2932. *
  2933. * 1. Try to allocate a new pipeline stage.
  2934. * 2. If we can't, wait for more and more requests to be serviced
  2935. * and try again each time.
  2936. * 3. If we still can't allocate a stage, fallback to
  2937. * non-pipelined operation mode for this request.
  2938. */
  2939. static int idetape_add_chrdev_write_request (ide_drive_t *drive, int blocks)
  2940. {
  2941. idetape_tape_t *tape = drive->driver_data;
  2942. idetape_stage_t *new_stage;
  2943. unsigned long flags;
  2944. struct request *rq;
  2945. #if IDETAPE_DEBUG_LOG
  2946. if (tape->debug_level >= 3)
  2947. printk(KERN_INFO "ide-tape: Reached idetape_add_chrdev_write_request\n");
  2948. #endif /* IDETAPE_DEBUG_LOG */
  2949. /*
  2950. * Attempt to allocate a new stage.
  2951. * Pay special attention to possible race conditions.
  2952. */
  2953. while ((new_stage = idetape_kmalloc_stage(tape)) == NULL) {
  2954. spin_lock_irqsave(&tape->spinlock, flags);
  2955. if (idetape_pipeline_active(tape)) {
  2956. idetape_wait_for_request(drive, tape->active_data_request);
  2957. spin_unlock_irqrestore(&tape->spinlock, flags);
  2958. } else {
  2959. spin_unlock_irqrestore(&tape->spinlock, flags);
  2960. idetape_insert_pipeline_into_queue(drive);
  2961. if (idetape_pipeline_active(tape))
  2962. continue;
  2963. /*
  2964. * Linux is short on memory. Fallback to
  2965. * non-pipelined operation mode for this request.
  2966. */
  2967. return idetape_queue_rw_tail(drive, REQ_IDETAPE_WRITE, blocks, tape->merge_stage->bh);
  2968. }
  2969. }
  2970. rq = &new_stage->rq;
  2971. idetape_init_rq(rq, REQ_IDETAPE_WRITE);
  2972. /* Doesn't actually matter - We always assume sequential access */
  2973. rq->sector = tape->first_frame_position;
  2974. rq->nr_sectors = rq->current_nr_sectors = blocks;
  2975. idetape_switch_buffers(tape, new_stage);
  2976. idetape_add_stage_tail(drive, new_stage);
  2977. tape->pipeline_head++;
  2978. calculate_speeds(drive);
  2979. /*
  2980. * Estimate whether the tape has stopped writing by checking
  2981. * if our write pipeline is currently empty. If we are not
  2982. * writing anymore, wait for the pipeline to be full enough
  2983. * (90%) before starting to service requests, so that we will
  2984. * be able to keep up with the higher speeds of the tape.
  2985. */
  2986. if (!idetape_pipeline_active(tape)) {
  2987. if (tape->nr_stages >= tape->max_stages * 9 / 10 ||
  2988. tape->nr_stages >= tape->max_stages - tape->uncontrolled_pipeline_head_speed * 3 * 1024 / tape->tape_block_size) {
  2989. tape->measure_insert_time = 1;
  2990. tape->insert_time = jiffies;
  2991. tape->insert_size = 0;
  2992. tape->insert_speed = 0;
  2993. idetape_insert_pipeline_into_queue(drive);
  2994. }
  2995. }
  2996. if (test_and_clear_bit(IDETAPE_PIPELINE_ERROR, &tape->flags))
  2997. /* Return a deferred error */
  2998. return -EIO;
  2999. return blocks;
  3000. }
  3001. /*
  3002. * idetape_wait_for_pipeline will wait until all pending pipeline
  3003. * requests are serviced. Typically called on device close.
  3004. */
  3005. static void idetape_wait_for_pipeline (ide_drive_t *drive)
  3006. {
  3007. idetape_tape_t *tape = drive->driver_data;
  3008. unsigned long flags;
  3009. while (tape->next_stage || idetape_pipeline_active(tape)) {
  3010. idetape_insert_pipeline_into_queue(drive);
  3011. spin_lock_irqsave(&tape->spinlock, flags);
  3012. if (idetape_pipeline_active(tape))
  3013. idetape_wait_for_request(drive, tape->active_data_request);
  3014. spin_unlock_irqrestore(&tape->spinlock, flags);
  3015. }
  3016. }
  3017. static void idetape_empty_write_pipeline (ide_drive_t *drive)
  3018. {
  3019. idetape_tape_t *tape = drive->driver_data;
  3020. int blocks, min;
  3021. struct idetape_bh *bh;
  3022. #if IDETAPE_DEBUG_BUGS
  3023. if (tape->chrdev_direction != idetape_direction_write) {
  3024. printk(KERN_ERR "ide-tape: bug: Trying to empty write pipeline, but we are not writing.\n");
  3025. return;
  3026. }
  3027. if (tape->merge_stage_size > tape->stage_size) {
  3028. printk(KERN_ERR "ide-tape: bug: merge_buffer too big\n");
  3029. tape->merge_stage_size = tape->stage_size;
  3030. }
  3031. #endif /* IDETAPE_DEBUG_BUGS */
  3032. if (tape->merge_stage_size) {
  3033. blocks = tape->merge_stage_size / tape->tape_block_size;
  3034. if (tape->merge_stage_size % tape->tape_block_size) {
  3035. unsigned int i;
  3036. blocks++;
  3037. i = tape->tape_block_size - tape->merge_stage_size % tape->tape_block_size;
  3038. bh = tape->bh->b_reqnext;
  3039. while (bh) {
  3040. atomic_set(&bh->b_count, 0);
  3041. bh = bh->b_reqnext;
  3042. }
  3043. bh = tape->bh;
  3044. while (i) {
  3045. if (bh == NULL) {
  3046. printk(KERN_INFO "ide-tape: bug, bh NULL\n");
  3047. break;
  3048. }
  3049. min = min(i, (unsigned int)(bh->b_size - atomic_read(&bh->b_count)));
  3050. memset(bh->b_data + atomic_read(&bh->b_count), 0, min);
  3051. atomic_add(min, &bh->b_count);
  3052. i -= min;
  3053. bh = bh->b_reqnext;
  3054. }
  3055. }
  3056. (void) idetape_add_chrdev_write_request(drive, blocks);
  3057. tape->merge_stage_size = 0;
  3058. }
  3059. idetape_wait_for_pipeline(drive);
  3060. if (tape->merge_stage != NULL) {
  3061. __idetape_kfree_stage(tape->merge_stage);
  3062. tape->merge_stage = NULL;
  3063. }
  3064. clear_bit(IDETAPE_PIPELINE_ERROR, &tape->flags);
  3065. tape->chrdev_direction = idetape_direction_none;
  3066. /*
  3067. * On the next backup, perform the feedback loop again.
  3068. * (I don't want to keep sense information between backups,
  3069. * as some systems are constantly on, and the system load
  3070. * can be totally different on the next backup).
  3071. */
  3072. tape->max_stages = tape->min_pipeline;
  3073. #if IDETAPE_DEBUG_BUGS
  3074. if (tape->first_stage != NULL ||
  3075. tape->next_stage != NULL ||
  3076. tape->last_stage != NULL ||
  3077. tape->nr_stages != 0) {
  3078. printk(KERN_ERR "ide-tape: ide-tape pipeline bug, "
  3079. "first_stage %p, next_stage %p, "
  3080. "last_stage %p, nr_stages %d\n",
  3081. tape->first_stage, tape->next_stage,
  3082. tape->last_stage, tape->nr_stages);
  3083. }
  3084. #endif /* IDETAPE_DEBUG_BUGS */
  3085. }
  3086. static void idetape_restart_speed_control (ide_drive_t *drive)
  3087. {
  3088. idetape_tape_t *tape = drive->driver_data;
  3089. tape->restart_speed_control_req = 0;
  3090. tape->pipeline_head = 0;
  3091. tape->controlled_last_pipeline_head = tape->uncontrolled_last_pipeline_head = 0;
  3092. tape->controlled_previous_pipeline_head = tape->uncontrolled_previous_pipeline_head = 0;
  3093. tape->pipeline_head_speed = tape->controlled_pipeline_head_speed = 5000;
  3094. tape->uncontrolled_pipeline_head_speed = 0;
  3095. tape->controlled_pipeline_head_time = tape->uncontrolled_pipeline_head_time = jiffies;
  3096. tape->controlled_previous_head_time = tape->uncontrolled_previous_head_time = jiffies;
  3097. }
  3098. static int idetape_initiate_read (ide_drive_t *drive, int max_stages)
  3099. {
  3100. idetape_tape_t *tape = drive->driver_data;
  3101. idetape_stage_t *new_stage;
  3102. struct request rq;
  3103. int bytes_read;
  3104. int blocks = tape->capabilities.ctl;
  3105. /* Initialize read operation */
  3106. if (tape->chrdev_direction != idetape_direction_read) {
  3107. if (tape->chrdev_direction == idetape_direction_write) {
  3108. idetape_empty_write_pipeline(drive);
  3109. idetape_flush_tape_buffers(drive);
  3110. }
  3111. #if IDETAPE_DEBUG_BUGS
  3112. if (tape->merge_stage || tape->merge_stage_size) {
  3113. printk (KERN_ERR "ide-tape: merge_stage_size should be 0 now\n");
  3114. tape->merge_stage_size = 0;
  3115. }
  3116. #endif /* IDETAPE_DEBUG_BUGS */
  3117. if ((tape->merge_stage = __idetape_kmalloc_stage(tape, 0, 0)) == NULL)
  3118. return -ENOMEM;
  3119. tape->chrdev_direction = idetape_direction_read;
  3120. /*
  3121. * Issue a read 0 command to ensure that DSC handshake
  3122. * is switched from completion mode to buffer available
  3123. * mode.
  3124. * No point in issuing this if DSC overlap isn't supported,
  3125. * some drives (Seagate STT3401A) will return an error.
  3126. */
  3127. if (drive->dsc_overlap) {
  3128. bytes_read = idetape_queue_rw_tail(drive, REQ_IDETAPE_READ, 0, tape->merge_stage->bh);
  3129. if (bytes_read < 0) {
  3130. __idetape_kfree_stage(tape->merge_stage);
  3131. tape->merge_stage = NULL;
  3132. tape->chrdev_direction = idetape_direction_none;
  3133. return bytes_read;
  3134. }
  3135. }
  3136. }
  3137. if (tape->restart_speed_control_req)
  3138. idetape_restart_speed_control(drive);
  3139. idetape_init_rq(&rq, REQ_IDETAPE_READ);
  3140. rq.sector = tape->first_frame_position;
  3141. rq.nr_sectors = rq.current_nr_sectors = blocks;
  3142. if (!test_bit(IDETAPE_PIPELINE_ERROR, &tape->flags) &&
  3143. tape->nr_stages < max_stages) {
  3144. new_stage = idetape_kmalloc_stage(tape);
  3145. while (new_stage != NULL) {
  3146. new_stage->rq = rq;
  3147. idetape_add_stage_tail(drive, new_stage);
  3148. if (tape->nr_stages >= max_stages)
  3149. break;
  3150. new_stage = idetape_kmalloc_stage(tape);
  3151. }
  3152. }
  3153. if (!idetape_pipeline_active(tape)) {
  3154. if (tape->nr_pending_stages >= 3 * max_stages / 4) {
  3155. tape->measure_insert_time = 1;
  3156. tape->insert_time = jiffies;
  3157. tape->insert_size = 0;
  3158. tape->insert_speed = 0;
  3159. idetape_insert_pipeline_into_queue(drive);
  3160. }
  3161. }
  3162. return 0;
  3163. }
  3164. /*
  3165. * idetape_add_chrdev_read_request is called from idetape_chrdev_read
  3166. * to service a character device read request and add read-ahead
  3167. * requests to our pipeline.
  3168. */
  3169. static int idetape_add_chrdev_read_request (ide_drive_t *drive,int blocks)
  3170. {
  3171. idetape_tape_t *tape = drive->driver_data;
  3172. unsigned long flags;
  3173. struct request *rq_ptr;
  3174. int bytes_read;
  3175. #if IDETAPE_DEBUG_LOG
  3176. if (tape->debug_level >= 4)
  3177. printk(KERN_INFO "ide-tape: Reached idetape_add_chrdev_read_request, %d blocks\n", blocks);
  3178. #endif /* IDETAPE_DEBUG_LOG */
  3179. /*
  3180. * If we are at a filemark, return a read length of 0
  3181. */
  3182. if (test_bit(IDETAPE_FILEMARK, &tape->flags))
  3183. return 0;
  3184. /*
  3185. * Wait for the next block to be available at the head
  3186. * of the pipeline
  3187. */
  3188. idetape_initiate_read(drive, tape->max_stages);
  3189. if (tape->first_stage == NULL) {
  3190. if (test_bit(IDETAPE_PIPELINE_ERROR, &tape->flags))
  3191. return 0;
  3192. return idetape_queue_rw_tail(drive, REQ_IDETAPE_READ, blocks, tape->merge_stage->bh);
  3193. }
  3194. idetape_wait_first_stage(drive);
  3195. rq_ptr = &tape->first_stage->rq;
  3196. bytes_read = tape->tape_block_size * (rq_ptr->nr_sectors - rq_ptr->current_nr_sectors);
  3197. rq_ptr->nr_sectors = rq_ptr->current_nr_sectors = 0;
  3198. if (rq_ptr->errors == IDETAPE_ERROR_EOD)
  3199. return 0;
  3200. else {
  3201. idetape_switch_buffers(tape, tape->first_stage);
  3202. if (rq_ptr->errors == IDETAPE_ERROR_FILEMARK)
  3203. set_bit(IDETAPE_FILEMARK, &tape->flags);
  3204. spin_lock_irqsave(&tape->spinlock, flags);
  3205. idetape_remove_stage_head(drive);
  3206. spin_unlock_irqrestore(&tape->spinlock, flags);
  3207. tape->pipeline_head++;
  3208. calculate_speeds(drive);
  3209. }
  3210. #if IDETAPE_DEBUG_BUGS
  3211. if (bytes_read > blocks * tape->tape_block_size) {
  3212. printk(KERN_ERR "ide-tape: bug: trying to return more bytes than requested\n");
  3213. bytes_read = blocks * tape->tape_block_size;
  3214. }
  3215. #endif /* IDETAPE_DEBUG_BUGS */
  3216. return (bytes_read);
  3217. }
  3218. static void idetape_pad_zeros (ide_drive_t *drive, int bcount)
  3219. {
  3220. idetape_tape_t *tape = drive->driver_data;
  3221. struct idetape_bh *bh;
  3222. int blocks;
  3223. while (bcount) {
  3224. unsigned int count;
  3225. bh = tape->merge_stage->bh;
  3226. count = min(tape->stage_size, bcount);
  3227. bcount -= count;
  3228. blocks = count / tape->tape_block_size;
  3229. while (count) {
  3230. atomic_set(&bh->b_count, min(count, (unsigned int)bh->b_size));
  3231. memset(bh->b_data, 0, atomic_read(&bh->b_count));
  3232. count -= atomic_read(&bh->b_count);
  3233. bh = bh->b_reqnext;
  3234. }
  3235. idetape_queue_rw_tail(drive, REQ_IDETAPE_WRITE, blocks, tape->merge_stage->bh);
  3236. }
  3237. }
  3238. static int idetape_pipeline_size (ide_drive_t *drive)
  3239. {
  3240. idetape_tape_t *tape = drive->driver_data;
  3241. idetape_stage_t *stage;
  3242. struct request *rq;
  3243. int size = 0;
  3244. idetape_wait_for_pipeline(drive);
  3245. stage = tape->first_stage;
  3246. while (stage != NULL) {
  3247. rq = &stage->rq;
  3248. size += tape->tape_block_size * (rq->nr_sectors-rq->current_nr_sectors);
  3249. if (rq->errors == IDETAPE_ERROR_FILEMARK)
  3250. size += tape->tape_block_size;
  3251. stage = stage->next;
  3252. }
  3253. size += tape->merge_stage_size;
  3254. return size;
  3255. }
  3256. /*
  3257. * Rewinds the tape to the Beginning Of the current Partition (BOP).
  3258. *
  3259. * We currently support only one partition.
  3260. */
  3261. static int idetape_rewind_tape (ide_drive_t *drive)
  3262. {
  3263. int retval;
  3264. idetape_pc_t pc;
  3265. #if IDETAPE_DEBUG_LOG
  3266. idetape_tape_t *tape = drive->driver_data;
  3267. if (tape->debug_level >= 2)
  3268. printk(KERN_INFO "ide-tape: Reached idetape_rewind_tape\n");
  3269. #endif /* IDETAPE_DEBUG_LOG */
  3270. idetape_create_rewind_cmd(drive, &pc);
  3271. retval = idetape_queue_pc_tail(drive, &pc);
  3272. if (retval)
  3273. return retval;
  3274. idetape_create_read_position_cmd(&pc);
  3275. retval = idetape_queue_pc_tail(drive, &pc);
  3276. if (retval)
  3277. return retval;
  3278. return 0;
  3279. }
  3280. /*
  3281. * Our special ide-tape ioctl's.
  3282. *
  3283. * Currently there aren't any ioctl's.
  3284. * mtio.h compatible commands should be issued to the character device
  3285. * interface.
  3286. */
  3287. static int idetape_blkdev_ioctl(ide_drive_t *drive, unsigned int cmd, unsigned long arg)
  3288. {
  3289. idetape_tape_t *tape = drive->driver_data;
  3290. idetape_config_t config;
  3291. void __user *argp = (void __user *)arg;
  3292. #if IDETAPE_DEBUG_LOG
  3293. if (tape->debug_level >= 4)
  3294. printk(KERN_INFO "ide-tape: Reached idetape_blkdev_ioctl\n");
  3295. #endif /* IDETAPE_DEBUG_LOG */
  3296. switch (cmd) {
  3297. case 0x0340:
  3298. if (copy_from_user(&config, argp, sizeof (idetape_config_t)))
  3299. return -EFAULT;
  3300. tape->best_dsc_rw_frequency = config.dsc_rw_frequency;
  3301. tape->max_stages = config.nr_stages;
  3302. break;
  3303. case 0x0350:
  3304. config.dsc_rw_frequency = (int) tape->best_dsc_rw_frequency;
  3305. config.nr_stages = tape->max_stages;
  3306. if (copy_to_user(argp, &config, sizeof (idetape_config_t)))
  3307. return -EFAULT;
  3308. break;
  3309. default:
  3310. return -EIO;
  3311. }
  3312. return 0;
  3313. }
  3314. /*
  3315. * idetape_space_over_filemarks is now a bit more complicated than just
  3316. * passing the command to the tape since we may have crossed some
  3317. * filemarks during our pipelined read-ahead mode.
  3318. *
  3319. * As a minor side effect, the pipeline enables us to support MTFSFM when
  3320. * the filemark is in our internal pipeline even if the tape doesn't
  3321. * support spacing over filemarks in the reverse direction.
  3322. */
  3323. static int idetape_space_over_filemarks (ide_drive_t *drive,short mt_op,int mt_count)
  3324. {
  3325. idetape_tape_t *tape = drive->driver_data;
  3326. idetape_pc_t pc;
  3327. unsigned long flags;
  3328. int retval,count=0;
  3329. if (mt_count == 0)
  3330. return 0;
  3331. if (MTBSF == mt_op || MTBSFM == mt_op) {
  3332. if (!tape->capabilities.sprev)
  3333. return -EIO;
  3334. mt_count = - mt_count;
  3335. }
  3336. if (tape->chrdev_direction == idetape_direction_read) {
  3337. /*
  3338. * We have a read-ahead buffer. Scan it for crossed
  3339. * filemarks.
  3340. */
  3341. tape->merge_stage_size = 0;
  3342. if (test_and_clear_bit(IDETAPE_FILEMARK, &tape->flags))
  3343. ++count;
  3344. while (tape->first_stage != NULL) {
  3345. if (count == mt_count) {
  3346. if (mt_op == MTFSFM)
  3347. set_bit(IDETAPE_FILEMARK, &tape->flags);
  3348. return 0;
  3349. }
  3350. spin_lock_irqsave(&tape->spinlock, flags);
  3351. if (tape->first_stage == tape->active_stage) {
  3352. /*
  3353. * We have reached the active stage in the read pipeline.
  3354. * There is no point in allowing the drive to continue
  3355. * reading any farther, so we stop the pipeline.
  3356. *
  3357. * This section should be moved to a separate subroutine,
  3358. * because a similar function is performed in
  3359. * __idetape_discard_read_pipeline(), for example.
  3360. */
  3361. tape->next_stage = NULL;
  3362. spin_unlock_irqrestore(&tape->spinlock, flags);
  3363. idetape_wait_first_stage(drive);
  3364. tape->next_stage = tape->first_stage->next;
  3365. } else
  3366. spin_unlock_irqrestore(&tape->spinlock, flags);
  3367. if (tape->first_stage->rq.errors == IDETAPE_ERROR_FILEMARK)
  3368. ++count;
  3369. idetape_remove_stage_head(drive);
  3370. }
  3371. idetape_discard_read_pipeline(drive, 0);
  3372. }
  3373. /*
  3374. * The filemark was not found in our internal pipeline.
  3375. * Now we can issue the space command.
  3376. */
  3377. switch (mt_op) {
  3378. case MTFSF:
  3379. case MTBSF:
  3380. idetape_create_space_cmd(&pc,mt_count-count,IDETAPE_SPACE_OVER_FILEMARK);
  3381. return (idetape_queue_pc_tail(drive, &pc));
  3382. case MTFSFM:
  3383. case MTBSFM:
  3384. if (!tape->capabilities.sprev)
  3385. return (-EIO);
  3386. retval = idetape_space_over_filemarks(drive, MTFSF, mt_count-count);
  3387. if (retval) return (retval);
  3388. count = (MTBSFM == mt_op ? 1 : -1);
  3389. return (idetape_space_over_filemarks(drive, MTFSF, count));
  3390. default:
  3391. printk(KERN_ERR "ide-tape: MTIO operation %d not supported\n",mt_op);
  3392. return (-EIO);
  3393. }
  3394. }
  3395. /*
  3396. * Our character device read / write functions.
  3397. *
  3398. * The tape is optimized to maximize throughput when it is transferring
  3399. * an integral number of the "continuous transfer limit", which is
  3400. * a parameter of the specific tape (26 KB on my particular tape).
  3401. * (32 kB for Onstream)
  3402. *
  3403. * As of version 1.3 of the driver, the character device provides an
  3404. * abstract continuous view of the media - any mix of block sizes (even 1
  3405. * byte) on the same backup/restore procedure is supported. The driver
  3406. * will internally convert the requests to the recommended transfer unit,
  3407. * so that an unmatch between the user's block size to the recommended
  3408. * size will only result in a (slightly) increased driver overhead, but
  3409. * will no longer hit performance.
  3410. * This is not applicable to Onstream.
  3411. */
  3412. static ssize_t idetape_chrdev_read (struct file *file, char __user *buf,
  3413. size_t count, loff_t *ppos)
  3414. {
  3415. struct ide_tape_obj *tape = ide_tape_f(file);
  3416. ide_drive_t *drive = tape->drive;
  3417. ssize_t bytes_read,temp, actually_read = 0, rc;
  3418. ssize_t ret = 0;
  3419. #if IDETAPE_DEBUG_LOG
  3420. if (tape->debug_level >= 3)
  3421. printk(KERN_INFO "ide-tape: Reached idetape_chrdev_read, count %Zd\n", count);
  3422. #endif /* IDETAPE_DEBUG_LOG */
  3423. if (tape->chrdev_direction != idetape_direction_read) {
  3424. if (test_bit(IDETAPE_DETECT_BS, &tape->flags))
  3425. if (count > tape->tape_block_size &&
  3426. (count % tape->tape_block_size) == 0)
  3427. tape->user_bs_factor = count / tape->tape_block_size;
  3428. }
  3429. if ((rc = idetape_initiate_read(drive, tape->max_stages)) < 0)
  3430. return rc;
  3431. if (count == 0)
  3432. return (0);
  3433. if (tape->merge_stage_size) {
  3434. actually_read = min((unsigned int)(tape->merge_stage_size), (unsigned int)count);
  3435. if (idetape_copy_stage_to_user(tape, buf, tape->merge_stage, actually_read))
  3436. ret = -EFAULT;
  3437. buf += actually_read;
  3438. tape->merge_stage_size -= actually_read;
  3439. count -= actually_read;
  3440. }
  3441. while (count >= tape->stage_size) {
  3442. bytes_read = idetape_add_chrdev_read_request(drive, tape->capabilities.ctl);
  3443. if (bytes_read <= 0)
  3444. goto finish;
  3445. if (idetape_copy_stage_to_user(tape, buf, tape->merge_stage, bytes_read))
  3446. ret = -EFAULT;
  3447. buf += bytes_read;
  3448. count -= bytes_read;
  3449. actually_read += bytes_read;
  3450. }
  3451. if (count) {
  3452. bytes_read = idetape_add_chrdev_read_request(drive, tape->capabilities.ctl);
  3453. if (bytes_read <= 0)
  3454. goto finish;
  3455. temp = min((unsigned long)count, (unsigned long)bytes_read);
  3456. if (idetape_copy_stage_to_user(tape, buf, tape->merge_stage, temp))
  3457. ret = -EFAULT;
  3458. actually_read += temp;
  3459. tape->merge_stage_size = bytes_read-temp;
  3460. }
  3461. finish:
  3462. if (!actually_read && test_bit(IDETAPE_FILEMARK, &tape->flags)) {
  3463. #if IDETAPE_DEBUG_LOG
  3464. if (tape->debug_level >= 2)
  3465. printk(KERN_INFO "ide-tape: %s: spacing over filemark\n", tape->name);
  3466. #endif
  3467. idetape_space_over_filemarks(drive, MTFSF, 1);
  3468. return 0;
  3469. }
  3470. return (ret) ? ret : actually_read;
  3471. }
  3472. static ssize_t idetape_chrdev_write (struct file *file, const char __user *buf,
  3473. size_t count, loff_t *ppos)
  3474. {
  3475. struct ide_tape_obj *tape = ide_tape_f(file);
  3476. ide_drive_t *drive = tape->drive;
  3477. ssize_t actually_written = 0;
  3478. ssize_t ret = 0;
  3479. /* The drive is write protected. */
  3480. if (tape->write_prot)
  3481. return -EACCES;
  3482. #if IDETAPE_DEBUG_LOG
  3483. if (tape->debug_level >= 3)
  3484. printk(KERN_INFO "ide-tape: Reached idetape_chrdev_write, "
  3485. "count %Zd\n", count);
  3486. #endif /* IDETAPE_DEBUG_LOG */
  3487. /* Initialize write operation */
  3488. if (tape->chrdev_direction != idetape_direction_write) {
  3489. if (tape->chrdev_direction == idetape_direction_read)
  3490. idetape_discard_read_pipeline(drive, 1);
  3491. #if IDETAPE_DEBUG_BUGS
  3492. if (tape->merge_stage || tape->merge_stage_size) {
  3493. printk(KERN_ERR "ide-tape: merge_stage_size "
  3494. "should be 0 now\n");
  3495. tape->merge_stage_size = 0;
  3496. }
  3497. #endif /* IDETAPE_DEBUG_BUGS */
  3498. if ((tape->merge_stage = __idetape_kmalloc_stage(tape, 0, 0)) == NULL)
  3499. return -ENOMEM;
  3500. tape->chrdev_direction = idetape_direction_write;
  3501. idetape_init_merge_stage(tape);
  3502. /*
  3503. * Issue a write 0 command to ensure that DSC handshake
  3504. * is switched from completion mode to buffer available
  3505. * mode.
  3506. * No point in issuing this if DSC overlap isn't supported,
  3507. * some drives (Seagate STT3401A) will return an error.
  3508. */
  3509. if (drive->dsc_overlap) {
  3510. ssize_t retval = idetape_queue_rw_tail(drive, REQ_IDETAPE_WRITE, 0, tape->merge_stage->bh);
  3511. if (retval < 0) {
  3512. __idetape_kfree_stage(tape->merge_stage);
  3513. tape->merge_stage = NULL;
  3514. tape->chrdev_direction = idetape_direction_none;
  3515. return retval;
  3516. }
  3517. }
  3518. }
  3519. if (count == 0)
  3520. return (0);
  3521. if (tape->restart_speed_control_req)
  3522. idetape_restart_speed_control(drive);
  3523. if (tape->merge_stage_size) {
  3524. #if IDETAPE_DEBUG_BUGS
  3525. if (tape->merge_stage_size >= tape->stage_size) {
  3526. printk(KERN_ERR "ide-tape: bug: merge buffer too big\n");
  3527. tape->merge_stage_size = 0;
  3528. }
  3529. #endif /* IDETAPE_DEBUG_BUGS */
  3530. actually_written = min((unsigned int)(tape->stage_size - tape->merge_stage_size), (unsigned int)count);
  3531. if (idetape_copy_stage_from_user(tape, tape->merge_stage, buf, actually_written))
  3532. ret = -EFAULT;
  3533. buf += actually_written;
  3534. tape->merge_stage_size += actually_written;
  3535. count -= actually_written;
  3536. if (tape->merge_stage_size == tape->stage_size) {
  3537. ssize_t retval;
  3538. tape->merge_stage_size = 0;
  3539. retval = idetape_add_chrdev_write_request(drive, tape->capabilities.ctl);
  3540. if (retval <= 0)
  3541. return (retval);
  3542. }
  3543. }
  3544. while (count >= tape->stage_size) {
  3545. ssize_t retval;
  3546. if (idetape_copy_stage_from_user(tape, tape->merge_stage, buf, tape->stage_size))
  3547. ret = -EFAULT;
  3548. buf += tape->stage_size;
  3549. count -= tape->stage_size;
  3550. retval = idetape_add_chrdev_write_request(drive, tape->capabilities.ctl);
  3551. actually_written += tape->stage_size;
  3552. if (retval <= 0)
  3553. return (retval);
  3554. }
  3555. if (count) {
  3556. actually_written += count;
  3557. if (idetape_copy_stage_from_user(tape, tape->merge_stage, buf, count))
  3558. ret = -EFAULT;
  3559. tape->merge_stage_size += count;
  3560. }
  3561. return (ret) ? ret : actually_written;
  3562. }
  3563. static int idetape_write_filemark (ide_drive_t *drive)
  3564. {
  3565. idetape_pc_t pc;
  3566. /* Write a filemark */
  3567. idetape_create_write_filemark_cmd(drive, &pc, 1);
  3568. if (idetape_queue_pc_tail(drive, &pc)) {
  3569. printk(KERN_ERR "ide-tape: Couldn't write a filemark\n");
  3570. return -EIO;
  3571. }
  3572. return 0;
  3573. }
  3574. /*
  3575. * idetape_mtioctop is called from idetape_chrdev_ioctl when
  3576. * the general mtio MTIOCTOP ioctl is requested.
  3577. *
  3578. * We currently support the following mtio.h operations:
  3579. *
  3580. * MTFSF - Space over mt_count filemarks in the positive direction.
  3581. * The tape is positioned after the last spaced filemark.
  3582. *
  3583. * MTFSFM - Same as MTFSF, but the tape is positioned before the
  3584. * last filemark.
  3585. *
  3586. * MTBSF - Steps background over mt_count filemarks, tape is
  3587. * positioned before the last filemark.
  3588. *
  3589. * MTBSFM - Like MTBSF, only tape is positioned after the last filemark.
  3590. *
  3591. * Note:
  3592. *
  3593. * MTBSF and MTBSFM are not supported when the tape doesn't
  3594. * support spacing over filemarks in the reverse direction.
  3595. * In this case, MTFSFM is also usually not supported (it is
  3596. * supported in the rare case in which we crossed the filemark
  3597. * during our read-ahead pipelined operation mode).
  3598. *
  3599. * MTWEOF - Writes mt_count filemarks. Tape is positioned after
  3600. * the last written filemark.
  3601. *
  3602. * MTREW - Rewinds tape.
  3603. *
  3604. * MTLOAD - Loads the tape.
  3605. *
  3606. * MTOFFL - Puts the tape drive "Offline": Rewinds the tape and
  3607. * MTUNLOAD prevents further access until the media is replaced.
  3608. *
  3609. * MTNOP - Flushes tape buffers.
  3610. *
  3611. * MTRETEN - Retension media. This typically consists of one end
  3612. * to end pass on the media.
  3613. *
  3614. * MTEOM - Moves to the end of recorded data.
  3615. *
  3616. * MTERASE - Erases tape.
  3617. *
  3618. * MTSETBLK - Sets the user block size to mt_count bytes. If
  3619. * mt_count is 0, we will attempt to autodetect
  3620. * the block size.
  3621. *
  3622. * MTSEEK - Positions the tape in a specific block number, where
  3623. * each block is assumed to contain which user_block_size
  3624. * bytes.
  3625. *
  3626. * MTSETPART - Switches to another tape partition.
  3627. *
  3628. * MTLOCK - Locks the tape door.
  3629. *
  3630. * MTUNLOCK - Unlocks the tape door.
  3631. *
  3632. * The following commands are currently not supported:
  3633. *
  3634. * MTFSS, MTBSS, MTWSM, MTSETDENSITY,
  3635. * MTSETDRVBUFFER, MT_ST_BOOLEANS, MT_ST_WRITE_THRESHOLD.
  3636. */
  3637. static int idetape_mtioctop (ide_drive_t *drive,short mt_op,int mt_count)
  3638. {
  3639. idetape_tape_t *tape = drive->driver_data;
  3640. idetape_pc_t pc;
  3641. int i,retval;
  3642. #if IDETAPE_DEBUG_LOG
  3643. if (tape->debug_level >= 1)
  3644. printk(KERN_INFO "ide-tape: Handling MTIOCTOP ioctl: "
  3645. "mt_op=%d, mt_count=%d\n", mt_op, mt_count);
  3646. #endif /* IDETAPE_DEBUG_LOG */
  3647. /*
  3648. * Commands which need our pipelined read-ahead stages.
  3649. */
  3650. switch (mt_op) {
  3651. case MTFSF:
  3652. case MTFSFM:
  3653. case MTBSF:
  3654. case MTBSFM:
  3655. if (!mt_count)
  3656. return (0);
  3657. return (idetape_space_over_filemarks(drive,mt_op,mt_count));
  3658. default:
  3659. break;
  3660. }
  3661. switch (mt_op) {
  3662. case MTWEOF:
  3663. if (tape->write_prot)
  3664. return -EACCES;
  3665. idetape_discard_read_pipeline(drive, 1);
  3666. for (i = 0; i < mt_count; i++) {
  3667. retval = idetape_write_filemark(drive);
  3668. if (retval)
  3669. return retval;
  3670. }
  3671. return (0);
  3672. case MTREW:
  3673. idetape_discard_read_pipeline(drive, 0);
  3674. if (idetape_rewind_tape(drive))
  3675. return -EIO;
  3676. return 0;
  3677. case MTLOAD:
  3678. idetape_discard_read_pipeline(drive, 0);
  3679. idetape_create_load_unload_cmd(drive, &pc, IDETAPE_LU_LOAD_MASK);
  3680. return (idetape_queue_pc_tail(drive, &pc));
  3681. case MTUNLOAD:
  3682. case MTOFFL:
  3683. /*
  3684. * If door is locked, attempt to unlock before
  3685. * attempting to eject.
  3686. */
  3687. if (tape->door_locked) {
  3688. if (idetape_create_prevent_cmd(drive, &pc, 0))
  3689. if (!idetape_queue_pc_tail(drive, &pc))
  3690. tape->door_locked = DOOR_UNLOCKED;
  3691. }
  3692. idetape_discard_read_pipeline(drive, 0);
  3693. idetape_create_load_unload_cmd(drive, &pc,!IDETAPE_LU_LOAD_MASK);
  3694. retval = idetape_queue_pc_tail(drive, &pc);
  3695. if (!retval)
  3696. clear_bit(IDETAPE_MEDIUM_PRESENT, &tape->flags);
  3697. return retval;
  3698. case MTNOP:
  3699. idetape_discard_read_pipeline(drive, 0);
  3700. return (idetape_flush_tape_buffers(drive));
  3701. case MTRETEN:
  3702. idetape_discard_read_pipeline(drive, 0);
  3703. idetape_create_load_unload_cmd(drive, &pc,IDETAPE_LU_RETENSION_MASK | IDETAPE_LU_LOAD_MASK);
  3704. return (idetape_queue_pc_tail(drive, &pc));
  3705. case MTEOM:
  3706. idetape_create_space_cmd(&pc, 0, IDETAPE_SPACE_TO_EOD);
  3707. return (idetape_queue_pc_tail(drive, &pc));
  3708. case MTERASE:
  3709. (void) idetape_rewind_tape(drive);
  3710. idetape_create_erase_cmd(&pc);
  3711. return (idetape_queue_pc_tail(drive, &pc));
  3712. case MTSETBLK:
  3713. if (mt_count) {
  3714. if (mt_count < tape->tape_block_size || mt_count % tape->tape_block_size)
  3715. return -EIO;
  3716. tape->user_bs_factor = mt_count / tape->tape_block_size;
  3717. clear_bit(IDETAPE_DETECT_BS, &tape->flags);
  3718. } else
  3719. set_bit(IDETAPE_DETECT_BS, &tape->flags);
  3720. return 0;
  3721. case MTSEEK:
  3722. idetape_discard_read_pipeline(drive, 0);
  3723. return idetape_position_tape(drive, mt_count * tape->user_bs_factor, tape->partition, 0);
  3724. case MTSETPART:
  3725. idetape_discard_read_pipeline(drive, 0);
  3726. return (idetape_position_tape(drive, 0, mt_count, 0));
  3727. case MTFSR:
  3728. case MTBSR:
  3729. case MTLOCK:
  3730. if (!idetape_create_prevent_cmd(drive, &pc, 1))
  3731. return 0;
  3732. retval = idetape_queue_pc_tail(drive, &pc);
  3733. if (retval) return retval;
  3734. tape->door_locked = DOOR_EXPLICITLY_LOCKED;
  3735. return 0;
  3736. case MTUNLOCK:
  3737. if (!idetape_create_prevent_cmd(drive, &pc, 0))
  3738. return 0;
  3739. retval = idetape_queue_pc_tail(drive, &pc);
  3740. if (retval) return retval;
  3741. tape->door_locked = DOOR_UNLOCKED;
  3742. return 0;
  3743. default:
  3744. printk(KERN_ERR "ide-tape: MTIO operation %d not "
  3745. "supported\n", mt_op);
  3746. return (-EIO);
  3747. }
  3748. }
  3749. /*
  3750. * Our character device ioctls.
  3751. *
  3752. * General mtio.h magnetic io commands are supported here, and not in
  3753. * the corresponding block interface.
  3754. *
  3755. * The following ioctls are supported:
  3756. *
  3757. * MTIOCTOP - Refer to idetape_mtioctop for detailed description.
  3758. *
  3759. * MTIOCGET - The mt_dsreg field in the returned mtget structure
  3760. * will be set to (user block size in bytes <<
  3761. * MT_ST_BLKSIZE_SHIFT) & MT_ST_BLKSIZE_MASK.
  3762. *
  3763. * The mt_blkno is set to the current user block number.
  3764. * The other mtget fields are not supported.
  3765. *
  3766. * MTIOCPOS - The current tape "block position" is returned. We
  3767. * assume that each block contains user_block_size
  3768. * bytes.
  3769. *
  3770. * Our own ide-tape ioctls are supported on both interfaces.
  3771. */
  3772. static int idetape_chrdev_ioctl (struct inode *inode, struct file *file, unsigned int cmd, unsigned long arg)
  3773. {
  3774. struct ide_tape_obj *tape = ide_tape_f(file);
  3775. ide_drive_t *drive = tape->drive;
  3776. struct mtop mtop;
  3777. struct mtget mtget;
  3778. struct mtpos mtpos;
  3779. int block_offset = 0, position = tape->first_frame_position;
  3780. void __user *argp = (void __user *)arg;
  3781. #if IDETAPE_DEBUG_LOG
  3782. if (tape->debug_level >= 3)
  3783. printk(KERN_INFO "ide-tape: Reached idetape_chrdev_ioctl, "
  3784. "cmd=%u\n", cmd);
  3785. #endif /* IDETAPE_DEBUG_LOG */
  3786. tape->restart_speed_control_req = 1;
  3787. if (tape->chrdev_direction == idetape_direction_write) {
  3788. idetape_empty_write_pipeline(drive);
  3789. idetape_flush_tape_buffers(drive);
  3790. }
  3791. if (cmd == MTIOCGET || cmd == MTIOCPOS) {
  3792. block_offset = idetape_pipeline_size(drive) / (tape->tape_block_size * tape->user_bs_factor);
  3793. if ((position = idetape_read_position(drive)) < 0)
  3794. return -EIO;
  3795. }
  3796. switch (cmd) {
  3797. case MTIOCTOP:
  3798. if (copy_from_user(&mtop, argp, sizeof (struct mtop)))
  3799. return -EFAULT;
  3800. return (idetape_mtioctop(drive,mtop.mt_op,mtop.mt_count));
  3801. case MTIOCGET:
  3802. memset(&mtget, 0, sizeof (struct mtget));
  3803. mtget.mt_type = MT_ISSCSI2;
  3804. mtget.mt_blkno = position / tape->user_bs_factor - block_offset;
  3805. mtget.mt_dsreg = ((tape->tape_block_size * tape->user_bs_factor) << MT_ST_BLKSIZE_SHIFT) & MT_ST_BLKSIZE_MASK;
  3806. if (tape->drv_write_prot) {
  3807. mtget.mt_gstat |= GMT_WR_PROT(0xffffffff);
  3808. }
  3809. if (copy_to_user(argp, &mtget, sizeof(struct mtget)))
  3810. return -EFAULT;
  3811. return 0;
  3812. case MTIOCPOS:
  3813. mtpos.mt_blkno = position / tape->user_bs_factor - block_offset;
  3814. if (copy_to_user(argp, &mtpos, sizeof(struct mtpos)))
  3815. return -EFAULT;
  3816. return 0;
  3817. default:
  3818. if (tape->chrdev_direction == idetape_direction_read)
  3819. idetape_discard_read_pipeline(drive, 1);
  3820. return idetape_blkdev_ioctl(drive, cmd, arg);
  3821. }
  3822. }
  3823. static void idetape_get_blocksize_from_block_descriptor(ide_drive_t *drive);
  3824. /*
  3825. * Our character device open function.
  3826. */
  3827. static int idetape_chrdev_open (struct inode *inode, struct file *filp)
  3828. {
  3829. unsigned int minor = iminor(inode), i = minor & ~0xc0;
  3830. ide_drive_t *drive;
  3831. idetape_tape_t *tape;
  3832. idetape_pc_t pc;
  3833. int retval;
  3834. /*
  3835. * We really want to do nonseekable_open(inode, filp); here, but some
  3836. * versions of tar incorrectly call lseek on tapes and bail out if that
  3837. * fails. So we disallow pread() and pwrite(), but permit lseeks.
  3838. */
  3839. filp->f_mode &= ~(FMODE_PREAD | FMODE_PWRITE);
  3840. #if IDETAPE_DEBUG_LOG
  3841. printk(KERN_INFO "ide-tape: Reached idetape_chrdev_open\n");
  3842. #endif /* IDETAPE_DEBUG_LOG */
  3843. if (i >= MAX_HWIFS * MAX_DRIVES)
  3844. return -ENXIO;
  3845. if (!(tape = ide_tape_chrdev_get(i)))
  3846. return -ENXIO;
  3847. drive = tape->drive;
  3848. filp->private_data = tape;
  3849. if (test_and_set_bit(IDETAPE_BUSY, &tape->flags)) {
  3850. retval = -EBUSY;
  3851. goto out_put_tape;
  3852. }
  3853. retval = idetape_wait_ready(drive, 60 * HZ);
  3854. if (retval) {
  3855. clear_bit(IDETAPE_BUSY, &tape->flags);
  3856. printk(KERN_ERR "ide-tape: %s: drive not ready\n", tape->name);
  3857. goto out_put_tape;
  3858. }
  3859. idetape_read_position(drive);
  3860. if (!test_bit(IDETAPE_ADDRESS_VALID, &tape->flags))
  3861. (void)idetape_rewind_tape(drive);
  3862. if (tape->chrdev_direction != idetape_direction_read)
  3863. clear_bit(IDETAPE_PIPELINE_ERROR, &tape->flags);
  3864. /* Read block size and write protect status from drive. */
  3865. idetape_get_blocksize_from_block_descriptor(drive);
  3866. /* Set write protect flag if device is opened as read-only. */
  3867. if ((filp->f_flags & O_ACCMODE) == O_RDONLY)
  3868. tape->write_prot = 1;
  3869. else
  3870. tape->write_prot = tape->drv_write_prot;
  3871. /* Make sure drive isn't write protected if user wants to write. */
  3872. if (tape->write_prot) {
  3873. if ((filp->f_flags & O_ACCMODE) == O_WRONLY ||
  3874. (filp->f_flags & O_ACCMODE) == O_RDWR) {
  3875. clear_bit(IDETAPE_BUSY, &tape->flags);
  3876. retval = -EROFS;
  3877. goto out_put_tape;
  3878. }
  3879. }
  3880. /*
  3881. * Lock the tape drive door so user can't eject.
  3882. */
  3883. if (tape->chrdev_direction == idetape_direction_none) {
  3884. if (idetape_create_prevent_cmd(drive, &pc, 1)) {
  3885. if (!idetape_queue_pc_tail(drive, &pc)) {
  3886. if (tape->door_locked != DOOR_EXPLICITLY_LOCKED)
  3887. tape->door_locked = DOOR_LOCKED;
  3888. }
  3889. }
  3890. }
  3891. idetape_restart_speed_control(drive);
  3892. tape->restart_speed_control_req = 0;
  3893. return 0;
  3894. out_put_tape:
  3895. ide_tape_put(tape);
  3896. return retval;
  3897. }
  3898. static void idetape_write_release (ide_drive_t *drive, unsigned int minor)
  3899. {
  3900. idetape_tape_t *tape = drive->driver_data;
  3901. idetape_empty_write_pipeline(drive);
  3902. tape->merge_stage = __idetape_kmalloc_stage(tape, 1, 0);
  3903. if (tape->merge_stage != NULL) {
  3904. idetape_pad_zeros(drive, tape->tape_block_size * (tape->user_bs_factor - 1));
  3905. __idetape_kfree_stage(tape->merge_stage);
  3906. tape->merge_stage = NULL;
  3907. }
  3908. idetape_write_filemark(drive);
  3909. idetape_flush_tape_buffers(drive);
  3910. idetape_flush_tape_buffers(drive);
  3911. }
  3912. /*
  3913. * Our character device release function.
  3914. */
  3915. static int idetape_chrdev_release (struct inode *inode, struct file *filp)
  3916. {
  3917. struct ide_tape_obj *tape = ide_tape_f(filp);
  3918. ide_drive_t *drive = tape->drive;
  3919. idetape_pc_t pc;
  3920. unsigned int minor = iminor(inode);
  3921. lock_kernel();
  3922. tape = drive->driver_data;
  3923. #if IDETAPE_DEBUG_LOG
  3924. if (tape->debug_level >= 3)
  3925. printk(KERN_INFO "ide-tape: Reached idetape_chrdev_release\n");
  3926. #endif /* IDETAPE_DEBUG_LOG */
  3927. if (tape->chrdev_direction == idetape_direction_write)
  3928. idetape_write_release(drive, minor);
  3929. if (tape->chrdev_direction == idetape_direction_read) {
  3930. if (minor < 128)
  3931. idetape_discard_read_pipeline(drive, 1);
  3932. else
  3933. idetape_wait_for_pipeline(drive);
  3934. }
  3935. if (tape->cache_stage != NULL) {
  3936. __idetape_kfree_stage(tape->cache_stage);
  3937. tape->cache_stage = NULL;
  3938. }
  3939. if (minor < 128 && test_bit(IDETAPE_MEDIUM_PRESENT, &tape->flags))
  3940. (void) idetape_rewind_tape(drive);
  3941. if (tape->chrdev_direction == idetape_direction_none) {
  3942. if (tape->door_locked == DOOR_LOCKED) {
  3943. if (idetape_create_prevent_cmd(drive, &pc, 0)) {
  3944. if (!idetape_queue_pc_tail(drive, &pc))
  3945. tape->door_locked = DOOR_UNLOCKED;
  3946. }
  3947. }
  3948. }
  3949. clear_bit(IDETAPE_BUSY, &tape->flags);
  3950. ide_tape_put(tape);
  3951. unlock_kernel();
  3952. return 0;
  3953. }
  3954. /*
  3955. * idetape_identify_device is called to check the contents of the
  3956. * ATAPI IDENTIFY command results. We return:
  3957. *
  3958. * 1 If the tape can be supported by us, based on the information
  3959. * we have so far.
  3960. *
  3961. * 0 If this tape driver is not currently supported by us.
  3962. */
  3963. static int idetape_identify_device (ide_drive_t *drive)
  3964. {
  3965. struct idetape_id_gcw gcw;
  3966. struct hd_driveid *id = drive->id;
  3967. #if IDETAPE_DEBUG_INFO
  3968. unsigned short mask,i;
  3969. #endif /* IDETAPE_DEBUG_INFO */
  3970. if (drive->id_read == 0)
  3971. return 1;
  3972. *((unsigned short *) &gcw) = id->config;
  3973. #if IDETAPE_DEBUG_INFO
  3974. printk(KERN_INFO "ide-tape: Dumping ATAPI Identify Device tape parameters\n");
  3975. printk(KERN_INFO "ide-tape: Protocol Type: ");
  3976. switch (gcw.protocol) {
  3977. case 0: case 1: printk("ATA\n");break;
  3978. case 2: printk("ATAPI\n");break;
  3979. case 3: printk("Reserved (Unknown to ide-tape)\n");break;
  3980. }
  3981. printk(KERN_INFO "ide-tape: Device Type: %x - ",gcw.device_type);
  3982. switch (gcw.device_type) {
  3983. case 0: printk("Direct-access Device\n");break;
  3984. case 1: printk("Streaming Tape Device\n");break;
  3985. case 2: case 3: case 4: printk("Reserved\n");break;
  3986. case 5: printk("CD-ROM Device\n");break;
  3987. case 6: printk("Reserved\n");
  3988. case 7: printk("Optical memory Device\n");break;
  3989. case 0x1f: printk("Unknown or no Device type\n");break;
  3990. default: printk("Reserved\n");
  3991. }
  3992. printk(KERN_INFO "ide-tape: Removable: %s",gcw.removable ? "Yes\n":"No\n");
  3993. printk(KERN_INFO "ide-tape: Command Packet DRQ Type: ");
  3994. switch (gcw.drq_type) {
  3995. case 0: printk("Microprocessor DRQ\n");break;
  3996. case 1: printk("Interrupt DRQ\n");break;
  3997. case 2: printk("Accelerated DRQ\n");break;
  3998. case 3: printk("Reserved\n");break;
  3999. }
  4000. printk(KERN_INFO "ide-tape: Command Packet Size: ");
  4001. switch (gcw.packet_size) {
  4002. case 0: printk("12 bytes\n");break;
  4003. case 1: printk("16 bytes\n");break;
  4004. default: printk("Reserved\n");break;
  4005. }
  4006. printk(KERN_INFO "ide-tape: Model: %.40s\n",id->model);
  4007. printk(KERN_INFO "ide-tape: Firmware Revision: %.8s\n",id->fw_rev);
  4008. printk(KERN_INFO "ide-tape: Serial Number: %.20s\n",id->serial_no);
  4009. printk(KERN_INFO "ide-tape: Write buffer size: %d bytes\n",id->buf_size*512);
  4010. printk(KERN_INFO "ide-tape: DMA: %s",id->capability & 0x01 ? "Yes\n":"No\n");
  4011. printk(KERN_INFO "ide-tape: LBA: %s",id->capability & 0x02 ? "Yes\n":"No\n");
  4012. printk(KERN_INFO "ide-tape: IORDY can be disabled: %s",id->capability & 0x04 ? "Yes\n":"No\n");
  4013. printk(KERN_INFO "ide-tape: IORDY supported: %s",id->capability & 0x08 ? "Yes\n":"Unknown\n");
  4014. printk(KERN_INFO "ide-tape: ATAPI overlap supported: %s",id->capability & 0x20 ? "Yes\n":"No\n");
  4015. printk(KERN_INFO "ide-tape: PIO Cycle Timing Category: %d\n",id->tPIO);
  4016. printk(KERN_INFO "ide-tape: DMA Cycle Timing Category: %d\n",id->tDMA);
  4017. printk(KERN_INFO "ide-tape: Single Word DMA supported modes: ");
  4018. for (i=0,mask=1;i<8;i++,mask=mask << 1) {
  4019. if (id->dma_1word & mask)
  4020. printk("%d ",i);
  4021. if (id->dma_1word & (mask << 8))
  4022. printk("(active) ");
  4023. }
  4024. printk("\n");
  4025. printk(KERN_INFO "ide-tape: Multi Word DMA supported modes: ");
  4026. for (i=0,mask=1;i<8;i++,mask=mask << 1) {
  4027. if (id->dma_mword & mask)
  4028. printk("%d ",i);
  4029. if (id->dma_mword & (mask << 8))
  4030. printk("(active) ");
  4031. }
  4032. printk("\n");
  4033. if (id->field_valid & 0x0002) {
  4034. printk(KERN_INFO "ide-tape: Enhanced PIO Modes: %s\n",
  4035. id->eide_pio_modes & 1 ? "Mode 3":"None");
  4036. printk(KERN_INFO "ide-tape: Minimum Multi-word DMA cycle per word: ");
  4037. if (id->eide_dma_min == 0)
  4038. printk("Not supported\n");
  4039. else
  4040. printk("%d ns\n",id->eide_dma_min);
  4041. printk(KERN_INFO "ide-tape: Manufacturer\'s Recommended Multi-word cycle: ");
  4042. if (id->eide_dma_time == 0)
  4043. printk("Not supported\n");
  4044. else
  4045. printk("%d ns\n",id->eide_dma_time);
  4046. printk(KERN_INFO "ide-tape: Minimum PIO cycle without IORDY: ");
  4047. if (id->eide_pio == 0)
  4048. printk("Not supported\n");
  4049. else
  4050. printk("%d ns\n",id->eide_pio);
  4051. printk(KERN_INFO "ide-tape: Minimum PIO cycle with IORDY: ");
  4052. if (id->eide_pio_iordy == 0)
  4053. printk("Not supported\n");
  4054. else
  4055. printk("%d ns\n",id->eide_pio_iordy);
  4056. } else
  4057. printk(KERN_INFO "ide-tape: According to the device, fields 64-70 are not valid.\n");
  4058. #endif /* IDETAPE_DEBUG_INFO */
  4059. /* Check that we can support this device */
  4060. if (gcw.protocol !=2 )
  4061. printk(KERN_ERR "ide-tape: Protocol is not ATAPI\n");
  4062. else if (gcw.device_type != 1)
  4063. printk(KERN_ERR "ide-tape: Device type is not set to tape\n");
  4064. else if (!gcw.removable)
  4065. printk(KERN_ERR "ide-tape: The removable flag is not set\n");
  4066. else if (gcw.packet_size != 0) {
  4067. printk(KERN_ERR "ide-tape: Packet size is not 12 bytes long\n");
  4068. if (gcw.packet_size == 1)
  4069. printk(KERN_ERR "ide-tape: Sorry, padding to 16 bytes is still not supported\n");
  4070. } else
  4071. return 1;
  4072. return 0;
  4073. }
  4074. /*
  4075. * Use INQUIRY to get the firmware revision
  4076. */
  4077. static void idetape_get_inquiry_results (ide_drive_t *drive)
  4078. {
  4079. char *r;
  4080. idetape_tape_t *tape = drive->driver_data;
  4081. idetape_pc_t pc;
  4082. idetape_inquiry_result_t *inquiry;
  4083. idetape_create_inquiry_cmd(&pc);
  4084. if (idetape_queue_pc_tail(drive, &pc)) {
  4085. printk(KERN_ERR "ide-tape: %s: can't get INQUIRY results\n", tape->name);
  4086. return;
  4087. }
  4088. inquiry = (idetape_inquiry_result_t *) pc.buffer;
  4089. memcpy(tape->vendor_id, inquiry->vendor_id, 8);
  4090. memcpy(tape->product_id, inquiry->product_id, 16);
  4091. memcpy(tape->firmware_revision, inquiry->revision_level, 4);
  4092. ide_fixstring(tape->vendor_id, 10, 0);
  4093. ide_fixstring(tape->product_id, 18, 0);
  4094. ide_fixstring(tape->firmware_revision, 6, 0);
  4095. r = tape->firmware_revision;
  4096. if (*(r + 1) == '.')
  4097. tape->firmware_revision_num = (*r - '0') * 100 + (*(r + 2) - '0') * 10 + *(r + 3) - '0';
  4098. 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);
  4099. }
  4100. /*
  4101. * idetape_get_mode_sense_results asks the tape about its various
  4102. * parameters. In particular, we will adjust our data transfer buffer
  4103. * size to the recommended value as returned by the tape.
  4104. */
  4105. static void idetape_get_mode_sense_results (ide_drive_t *drive)
  4106. {
  4107. idetape_tape_t *tape = drive->driver_data;
  4108. idetape_pc_t pc;
  4109. idetape_mode_parameter_header_t *header;
  4110. idetape_capabilities_page_t *capabilities;
  4111. idetape_create_mode_sense_cmd(&pc, IDETAPE_CAPABILITIES_PAGE);
  4112. if (idetape_queue_pc_tail(drive, &pc)) {
  4113. printk(KERN_ERR "ide-tape: Can't get tape parameters - assuming some default values\n");
  4114. tape->tape_block_size = 512;
  4115. tape->capabilities.ctl = 52;
  4116. tape->capabilities.speed = 450;
  4117. tape->capabilities.buffer_size = 6 * 52;
  4118. return;
  4119. }
  4120. header = (idetape_mode_parameter_header_t *) pc.buffer;
  4121. capabilities = (idetape_capabilities_page_t *) (pc.buffer + sizeof(idetape_mode_parameter_header_t) + header->bdl);
  4122. capabilities->max_speed = ntohs(capabilities->max_speed);
  4123. capabilities->ctl = ntohs(capabilities->ctl);
  4124. capabilities->speed = ntohs(capabilities->speed);
  4125. capabilities->buffer_size = ntohs(capabilities->buffer_size);
  4126. if (!capabilities->speed) {
  4127. printk(KERN_INFO "ide-tape: %s: overriding capabilities->speed (assuming 650KB/sec)\n", drive->name);
  4128. capabilities->speed = 650;
  4129. }
  4130. if (!capabilities->max_speed) {
  4131. printk(KERN_INFO "ide-tape: %s: overriding capabilities->max_speed (assuming 650KB/sec)\n", drive->name);
  4132. capabilities->max_speed = 650;
  4133. }
  4134. tape->capabilities = *capabilities; /* Save us a copy */
  4135. if (capabilities->blk512)
  4136. tape->tape_block_size = 512;
  4137. else if (capabilities->blk1024)
  4138. tape->tape_block_size = 1024;
  4139. #if IDETAPE_DEBUG_INFO
  4140. printk(KERN_INFO "ide-tape: Dumping the results of the MODE SENSE packet command\n");
  4141. printk(KERN_INFO "ide-tape: Mode Parameter Header:\n");
  4142. printk(KERN_INFO "ide-tape: Mode Data Length - %d\n",header->mode_data_length);
  4143. printk(KERN_INFO "ide-tape: Medium Type - %d\n",header->medium_type);
  4144. printk(KERN_INFO "ide-tape: Device Specific Parameter - %d\n",header->dsp);
  4145. printk(KERN_INFO "ide-tape: Block Descriptor Length - %d\n",header->bdl);
  4146. printk(KERN_INFO "ide-tape: Capabilities and Mechanical Status Page:\n");
  4147. printk(KERN_INFO "ide-tape: Page code - %d\n",capabilities->page_code);
  4148. printk(KERN_INFO "ide-tape: Page length - %d\n",capabilities->page_length);
  4149. printk(KERN_INFO "ide-tape: Read only - %s\n",capabilities->ro ? "Yes":"No");
  4150. printk(KERN_INFO "ide-tape: Supports reverse space - %s\n",capabilities->sprev ? "Yes":"No");
  4151. printk(KERN_INFO "ide-tape: Supports erase initiated formatting - %s\n",capabilities->efmt ? "Yes":"No");
  4152. printk(KERN_INFO "ide-tape: Supports QFA two Partition format - %s\n",capabilities->qfa ? "Yes":"No");
  4153. printk(KERN_INFO "ide-tape: Supports locking the medium - %s\n",capabilities->lock ? "Yes":"No");
  4154. printk(KERN_INFO "ide-tape: The volume is currently locked - %s\n",capabilities->locked ? "Yes":"No");
  4155. printk(KERN_INFO "ide-tape: The device defaults in the prevent state - %s\n",capabilities->prevent ? "Yes":"No");
  4156. printk(KERN_INFO "ide-tape: Supports ejecting the medium - %s\n",capabilities->eject ? "Yes":"No");
  4157. printk(KERN_INFO "ide-tape: Supports error correction - %s\n",capabilities->ecc ? "Yes":"No");
  4158. printk(KERN_INFO "ide-tape: Supports data compression - %s\n",capabilities->cmprs ? "Yes":"No");
  4159. printk(KERN_INFO "ide-tape: Supports 512 bytes block size - %s\n",capabilities->blk512 ? "Yes":"No");
  4160. printk(KERN_INFO "ide-tape: Supports 1024 bytes block size - %s\n",capabilities->blk1024 ? "Yes":"No");
  4161. printk(KERN_INFO "ide-tape: Supports 32768 bytes block size / Restricted byte count for PIO transfers - %s\n",capabilities->blk32768 ? "Yes":"No");
  4162. printk(KERN_INFO "ide-tape: Maximum supported speed in KBps - %d\n",capabilities->max_speed);
  4163. printk(KERN_INFO "ide-tape: Continuous transfer limits in blocks - %d\n",capabilities->ctl);
  4164. printk(KERN_INFO "ide-tape: Current speed in KBps - %d\n",capabilities->speed);
  4165. printk(KERN_INFO "ide-tape: Buffer size - %d\n",capabilities->buffer_size*512);
  4166. #endif /* IDETAPE_DEBUG_INFO */
  4167. }
  4168. /*
  4169. * ide_get_blocksize_from_block_descriptor does a mode sense page 0 with block descriptor
  4170. * and if it succeeds sets the tape block size with the reported value
  4171. */
  4172. static void idetape_get_blocksize_from_block_descriptor(ide_drive_t *drive)
  4173. {
  4174. idetape_tape_t *tape = drive->driver_data;
  4175. idetape_pc_t pc;
  4176. idetape_mode_parameter_header_t *header;
  4177. idetape_parameter_block_descriptor_t *block_descrp;
  4178. idetape_create_mode_sense_cmd(&pc, IDETAPE_BLOCK_DESCRIPTOR);
  4179. if (idetape_queue_pc_tail(drive, &pc)) {
  4180. printk(KERN_ERR "ide-tape: Can't get block descriptor\n");
  4181. if (tape->tape_block_size == 0) {
  4182. printk(KERN_WARNING "ide-tape: Cannot deal with zero block size, assume 32k\n");
  4183. tape->tape_block_size = 32768;
  4184. }
  4185. return;
  4186. }
  4187. header = (idetape_mode_parameter_header_t *) pc.buffer;
  4188. block_descrp = (idetape_parameter_block_descriptor_t *) (pc.buffer + sizeof(idetape_mode_parameter_header_t));
  4189. tape->tape_block_size =( block_descrp->length[0]<<16) + (block_descrp->length[1]<<8) + block_descrp->length[2];
  4190. tape->drv_write_prot = (header->dsp & 0x80) >> 7;
  4191. #if IDETAPE_DEBUG_INFO
  4192. printk(KERN_INFO "ide-tape: Adjusted block size - %d\n", tape->tape_block_size);
  4193. #endif /* IDETAPE_DEBUG_INFO */
  4194. }
  4195. #ifdef CONFIG_IDE_PROC_FS
  4196. static void idetape_add_settings (ide_drive_t *drive)
  4197. {
  4198. idetape_tape_t *tape = drive->driver_data;
  4199. /*
  4200. * drive setting name read/write data type min max mul_factor div_factor data pointer set function
  4201. */
  4202. ide_add_setting(drive, "buffer", SETTING_READ, TYPE_SHORT, 0, 0xffff, 1, 2, &tape->capabilities.buffer_size, NULL);
  4203. ide_add_setting(drive, "pipeline_min", SETTING_RW, TYPE_INT, 1, 0xffff, tape->stage_size / 1024, 1, &tape->min_pipeline, NULL);
  4204. ide_add_setting(drive, "pipeline", SETTING_RW, TYPE_INT, 1, 0xffff, tape->stage_size / 1024, 1, &tape->max_stages, NULL);
  4205. ide_add_setting(drive, "pipeline_max", SETTING_RW, TYPE_INT, 1, 0xffff, tape->stage_size / 1024, 1, &tape->max_pipeline, NULL);
  4206. ide_add_setting(drive, "pipeline_used", SETTING_READ, TYPE_INT, 0, 0xffff, tape->stage_size / 1024, 1, &tape->nr_stages, NULL);
  4207. ide_add_setting(drive, "pipeline_pending", SETTING_READ, TYPE_INT, 0, 0xffff, tape->stage_size / 1024, 1, &tape->nr_pending_stages, NULL);
  4208. ide_add_setting(drive, "speed", SETTING_READ, TYPE_SHORT, 0, 0xffff, 1, 1, &tape->capabilities.speed, NULL);
  4209. ide_add_setting(drive, "stage", SETTING_READ, TYPE_INT, 0, 0xffff, 1, 1024, &tape->stage_size, NULL);
  4210. 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);
  4211. ide_add_setting(drive, "dsc_overlap", SETTING_RW, TYPE_BYTE, 0, 1, 1, 1, &drive->dsc_overlap, NULL);
  4212. ide_add_setting(drive, "pipeline_head_speed_c",SETTING_READ, TYPE_INT, 0, 0xffff, 1, 1, &tape->controlled_pipeline_head_speed, NULL);
  4213. ide_add_setting(drive, "pipeline_head_speed_u",SETTING_READ, TYPE_INT, 0, 0xffff, 1, 1, &tape->uncontrolled_pipeline_head_speed,NULL);
  4214. ide_add_setting(drive, "avg_speed", SETTING_READ, TYPE_INT, 0, 0xffff, 1, 1, &tape->avg_speed, NULL);
  4215. ide_add_setting(drive, "debug_level", SETTING_RW, TYPE_INT, 0, 0xffff, 1, 1, &tape->debug_level, NULL);
  4216. }
  4217. #else
  4218. static inline void idetape_add_settings(ide_drive_t *drive) { ; }
  4219. #endif
  4220. /*
  4221. * ide_setup is called to:
  4222. *
  4223. * 1. Initialize our various state variables.
  4224. * 2. Ask the tape for its capabilities.
  4225. * 3. Allocate a buffer which will be used for data
  4226. * transfer. The buffer size is chosen based on
  4227. * the recommendation which we received in step (2).
  4228. *
  4229. * Note that at this point ide.c already assigned us an irq, so that
  4230. * we can queue requests here and wait for their completion.
  4231. */
  4232. static void idetape_setup (ide_drive_t *drive, idetape_tape_t *tape, int minor)
  4233. {
  4234. unsigned long t1, tmid, tn, t;
  4235. int speed;
  4236. struct idetape_id_gcw gcw;
  4237. int stage_size;
  4238. struct sysinfo si;
  4239. spin_lock_init(&tape->spinlock);
  4240. drive->dsc_overlap = 1;
  4241. #ifdef CONFIG_BLK_DEV_IDEPCI
  4242. if (HWIF(drive)->pci_dev != NULL) {
  4243. /*
  4244. * These two ide-pci host adapters appear to need DSC overlap disabled.
  4245. * This probably needs further analysis.
  4246. */
  4247. if ((HWIF(drive)->pci_dev->device == PCI_DEVICE_ID_ARTOP_ATP850UF) ||
  4248. (HWIF(drive)->pci_dev->device == PCI_DEVICE_ID_TTI_HPT343)) {
  4249. printk(KERN_INFO "ide-tape: %s: disabling DSC overlap\n", tape->name);
  4250. drive->dsc_overlap = 0;
  4251. }
  4252. }
  4253. #endif /* CONFIG_BLK_DEV_IDEPCI */
  4254. /* Seagate Travan drives do not support DSC overlap. */
  4255. if (strstr(drive->id->model, "Seagate STT3401"))
  4256. drive->dsc_overlap = 0;
  4257. tape->minor = minor;
  4258. tape->name[0] = 'h';
  4259. tape->name[1] = 't';
  4260. tape->name[2] = '0' + minor;
  4261. tape->chrdev_direction = idetape_direction_none;
  4262. tape->pc = tape->pc_stack;
  4263. tape->max_insert_speed = 10000;
  4264. tape->speed_control = 1;
  4265. *((unsigned short *) &gcw) = drive->id->config;
  4266. if (gcw.drq_type == 1)
  4267. set_bit(IDETAPE_DRQ_INTERRUPT, &tape->flags);
  4268. tape->min_pipeline = tape->max_pipeline = tape->max_stages = 10;
  4269. idetape_get_inquiry_results(drive);
  4270. idetape_get_mode_sense_results(drive);
  4271. idetape_get_blocksize_from_block_descriptor(drive);
  4272. tape->user_bs_factor = 1;
  4273. tape->stage_size = tape->capabilities.ctl * tape->tape_block_size;
  4274. while (tape->stage_size > 0xffff) {
  4275. printk(KERN_NOTICE "ide-tape: decreasing stage size\n");
  4276. tape->capabilities.ctl /= 2;
  4277. tape->stage_size = tape->capabilities.ctl * tape->tape_block_size;
  4278. }
  4279. stage_size = tape->stage_size;
  4280. tape->pages_per_stage = stage_size / PAGE_SIZE;
  4281. if (stage_size % PAGE_SIZE) {
  4282. tape->pages_per_stage++;
  4283. tape->excess_bh_size = PAGE_SIZE - stage_size % PAGE_SIZE;
  4284. }
  4285. /*
  4286. * Select the "best" DSC read/write polling frequency
  4287. * and pipeline size.
  4288. */
  4289. speed = max(tape->capabilities.speed, tape->capabilities.max_speed);
  4290. tape->max_stages = speed * 1000 * 10 / tape->stage_size;
  4291. /*
  4292. * Limit memory use for pipeline to 10% of physical memory
  4293. */
  4294. si_meminfo(&si);
  4295. if (tape->max_stages * tape->stage_size > si.totalram * si.mem_unit / 10)
  4296. tape->max_stages = si.totalram * si.mem_unit / (10 * tape->stage_size);
  4297. tape->max_stages = min(tape->max_stages, IDETAPE_MAX_PIPELINE_STAGES);
  4298. tape->min_pipeline = min(tape->max_stages, IDETAPE_MIN_PIPELINE_STAGES);
  4299. tape->max_pipeline = min(tape->max_stages * 2, IDETAPE_MAX_PIPELINE_STAGES);
  4300. if (tape->max_stages == 0)
  4301. tape->max_stages = tape->min_pipeline = tape->max_pipeline = 1;
  4302. t1 = (tape->stage_size * HZ) / (speed * 1000);
  4303. tmid = (tape->capabilities.buffer_size * 32 * HZ) / (speed * 125);
  4304. tn = (IDETAPE_FIFO_THRESHOLD * tape->stage_size * HZ) / (speed * 1000);
  4305. if (tape->max_stages)
  4306. t = tn;
  4307. else
  4308. t = t1;
  4309. /*
  4310. * Ensure that the number we got makes sense; limit
  4311. * it within IDETAPE_DSC_RW_MIN and IDETAPE_DSC_RW_MAX.
  4312. */
  4313. tape->best_dsc_rw_frequency = max_t(unsigned long, min_t(unsigned long, t, IDETAPE_DSC_RW_MAX), IDETAPE_DSC_RW_MIN);
  4314. printk(KERN_INFO "ide-tape: %s <-> %s: %dKBps, %d*%dkB buffer, "
  4315. "%dkB pipeline, %lums tDSC%s\n",
  4316. drive->name, tape->name, tape->capabilities.speed,
  4317. (tape->capabilities.buffer_size * 512) / tape->stage_size,
  4318. tape->stage_size / 1024,
  4319. tape->max_stages * tape->stage_size / 1024,
  4320. tape->best_dsc_rw_frequency * 1000 / HZ,
  4321. drive->using_dma ? ", DMA":"");
  4322. idetape_add_settings(drive);
  4323. }
  4324. static void ide_tape_remove(ide_drive_t *drive)
  4325. {
  4326. idetape_tape_t *tape = drive->driver_data;
  4327. ide_proc_unregister_driver(drive, tape->driver);
  4328. ide_unregister_region(tape->disk);
  4329. ide_tape_put(tape);
  4330. }
  4331. static void ide_tape_release(struct kref *kref)
  4332. {
  4333. struct ide_tape_obj *tape = to_ide_tape(kref);
  4334. ide_drive_t *drive = tape->drive;
  4335. struct gendisk *g = tape->disk;
  4336. BUG_ON(tape->first_stage != NULL || tape->merge_stage_size);
  4337. drive->dsc_overlap = 0;
  4338. drive->driver_data = NULL;
  4339. device_destroy(idetape_sysfs_class, MKDEV(IDETAPE_MAJOR, tape->minor));
  4340. device_destroy(idetape_sysfs_class, MKDEV(IDETAPE_MAJOR, tape->minor + 128));
  4341. idetape_devs[tape->minor] = NULL;
  4342. g->private_data = NULL;
  4343. put_disk(g);
  4344. kfree(tape);
  4345. }
  4346. #ifdef CONFIG_IDE_PROC_FS
  4347. static int proc_idetape_read_name
  4348. (char *page, char **start, off_t off, int count, int *eof, void *data)
  4349. {
  4350. ide_drive_t *drive = (ide_drive_t *) data;
  4351. idetape_tape_t *tape = drive->driver_data;
  4352. char *out = page;
  4353. int len;
  4354. len = sprintf(out, "%s\n", tape->name);
  4355. PROC_IDE_READ_RETURN(page, start, off, count, eof, len);
  4356. }
  4357. static ide_proc_entry_t idetape_proc[] = {
  4358. { "capacity", S_IFREG|S_IRUGO, proc_ide_read_capacity, NULL },
  4359. { "name", S_IFREG|S_IRUGO, proc_idetape_read_name, NULL },
  4360. { NULL, 0, NULL, NULL }
  4361. };
  4362. #endif
  4363. static int ide_tape_probe(ide_drive_t *);
  4364. static ide_driver_t idetape_driver = {
  4365. .gen_driver = {
  4366. .owner = THIS_MODULE,
  4367. .name = "ide-tape",
  4368. .bus = &ide_bus_type,
  4369. },
  4370. .probe = ide_tape_probe,
  4371. .remove = ide_tape_remove,
  4372. .version = IDETAPE_VERSION,
  4373. .media = ide_tape,
  4374. .supports_dsc_overlap = 1,
  4375. .do_request = idetape_do_request,
  4376. .end_request = idetape_end_request,
  4377. .error = __ide_error,
  4378. .abort = __ide_abort,
  4379. #ifdef CONFIG_IDE_PROC_FS
  4380. .proc = idetape_proc,
  4381. #endif
  4382. };
  4383. /*
  4384. * Our character device supporting functions, passed to register_chrdev.
  4385. */
  4386. static const struct file_operations idetape_fops = {
  4387. .owner = THIS_MODULE,
  4388. .read = idetape_chrdev_read,
  4389. .write = idetape_chrdev_write,
  4390. .ioctl = idetape_chrdev_ioctl,
  4391. .open = idetape_chrdev_open,
  4392. .release = idetape_chrdev_release,
  4393. };
  4394. static int idetape_open(struct inode *inode, struct file *filp)
  4395. {
  4396. struct gendisk *disk = inode->i_bdev->bd_disk;
  4397. struct ide_tape_obj *tape;
  4398. if (!(tape = ide_tape_get(disk)))
  4399. return -ENXIO;
  4400. return 0;
  4401. }
  4402. static int idetape_release(struct inode *inode, struct file *filp)
  4403. {
  4404. struct gendisk *disk = inode->i_bdev->bd_disk;
  4405. struct ide_tape_obj *tape = ide_tape_g(disk);
  4406. ide_tape_put(tape);
  4407. return 0;
  4408. }
  4409. static int idetape_ioctl(struct inode *inode, struct file *file,
  4410. unsigned int cmd, unsigned long arg)
  4411. {
  4412. struct block_device *bdev = inode->i_bdev;
  4413. struct ide_tape_obj *tape = ide_tape_g(bdev->bd_disk);
  4414. ide_drive_t *drive = tape->drive;
  4415. int err = generic_ide_ioctl(drive, file, bdev, cmd, arg);
  4416. if (err == -EINVAL)
  4417. err = idetape_blkdev_ioctl(drive, cmd, arg);
  4418. return err;
  4419. }
  4420. static struct block_device_operations idetape_block_ops = {
  4421. .owner = THIS_MODULE,
  4422. .open = idetape_open,
  4423. .release = idetape_release,
  4424. .ioctl = idetape_ioctl,
  4425. };
  4426. static int ide_tape_probe(ide_drive_t *drive)
  4427. {
  4428. idetape_tape_t *tape;
  4429. struct gendisk *g;
  4430. int minor;
  4431. if (!strstr("ide-tape", drive->driver_req))
  4432. goto failed;
  4433. if (!drive->present)
  4434. goto failed;
  4435. if (drive->media != ide_tape)
  4436. goto failed;
  4437. if (!idetape_identify_device (drive)) {
  4438. printk(KERN_ERR "ide-tape: %s: not supported by this version of ide-tape\n", drive->name);
  4439. goto failed;
  4440. }
  4441. if (drive->scsi) {
  4442. printk("ide-tape: passing drive %s to ide-scsi emulation.\n", drive->name);
  4443. goto failed;
  4444. }
  4445. if (strstr(drive->id->model, "OnStream DI-")) {
  4446. printk(KERN_WARNING "ide-tape: Use drive %s with ide-scsi emulation and osst.\n", drive->name);
  4447. printk(KERN_WARNING "ide-tape: OnStream support will be removed soon from ide-tape!\n");
  4448. }
  4449. tape = kzalloc(sizeof (idetape_tape_t), GFP_KERNEL);
  4450. if (tape == NULL) {
  4451. printk(KERN_ERR "ide-tape: %s: Can't allocate a tape structure\n", drive->name);
  4452. goto failed;
  4453. }
  4454. g = alloc_disk(1 << PARTN_BITS);
  4455. if (!g)
  4456. goto out_free_tape;
  4457. ide_init_disk(g, drive);
  4458. ide_proc_register_driver(drive, &idetape_driver);
  4459. kref_init(&tape->kref);
  4460. tape->drive = drive;
  4461. tape->driver = &idetape_driver;
  4462. tape->disk = g;
  4463. g->private_data = &tape->driver;
  4464. drive->driver_data = tape;
  4465. mutex_lock(&idetape_ref_mutex);
  4466. for (minor = 0; idetape_devs[minor]; minor++)
  4467. ;
  4468. idetape_devs[minor] = tape;
  4469. mutex_unlock(&idetape_ref_mutex);
  4470. idetape_setup(drive, tape, minor);
  4471. device_create(idetape_sysfs_class, &drive->gendev,
  4472. MKDEV(IDETAPE_MAJOR, minor), "%s", tape->name);
  4473. device_create(idetape_sysfs_class, &drive->gendev,
  4474. MKDEV(IDETAPE_MAJOR, minor + 128), "n%s", tape->name);
  4475. g->fops = &idetape_block_ops;
  4476. ide_register_region(g);
  4477. return 0;
  4478. out_free_tape:
  4479. kfree(tape);
  4480. failed:
  4481. return -ENODEV;
  4482. }
  4483. MODULE_DESCRIPTION("ATAPI Streaming TAPE Driver");
  4484. MODULE_LICENSE("GPL");
  4485. static void __exit idetape_exit (void)
  4486. {
  4487. driver_unregister(&idetape_driver.gen_driver);
  4488. class_destroy(idetape_sysfs_class);
  4489. unregister_chrdev(IDETAPE_MAJOR, "ht");
  4490. }
  4491. static int __init idetape_init(void)
  4492. {
  4493. int error = 1;
  4494. idetape_sysfs_class = class_create(THIS_MODULE, "ide_tape");
  4495. if (IS_ERR(idetape_sysfs_class)) {
  4496. idetape_sysfs_class = NULL;
  4497. printk(KERN_ERR "Unable to create sysfs class for ide tapes\n");
  4498. error = -EBUSY;
  4499. goto out;
  4500. }
  4501. if (register_chrdev(IDETAPE_MAJOR, "ht", &idetape_fops)) {
  4502. printk(KERN_ERR "ide-tape: Failed to register character device interface\n");
  4503. error = -EBUSY;
  4504. goto out_free_class;
  4505. }
  4506. error = driver_register(&idetape_driver.gen_driver);
  4507. if (error)
  4508. goto out_free_driver;
  4509. return 0;
  4510. out_free_driver:
  4511. driver_unregister(&idetape_driver.gen_driver);
  4512. out_free_class:
  4513. class_destroy(idetape_sysfs_class);
  4514. out:
  4515. return error;
  4516. }
  4517. MODULE_ALIAS("ide:*m-tape*");
  4518. module_init(idetape_init);
  4519. module_exit(idetape_exit);
  4520. MODULE_ALIAS_CHARDEV_MAJOR(IDETAPE_MAJOR);