ide-tape.c 162 KB

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