parport_pc.c 85 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339
  1. /* Low-level parallel-port routines for 8255-based PC-style hardware.
  2. *
  3. * Authors: Phil Blundell <philb@gnu.org>
  4. * Tim Waugh <tim@cyberelk.demon.co.uk>
  5. * Jose Renau <renau@acm.org>
  6. * David Campbell
  7. * Andrea Arcangeli
  8. *
  9. * based on work by Grant Guenther <grant@torque.net> and Phil Blundell.
  10. *
  11. * Cleaned up include files - Russell King <linux@arm.uk.linux.org>
  12. * DMA support - Bert De Jonghe <bert@sophis.be>
  13. * Many ECP bugs fixed. Fred Barnes & Jamie Lokier, 1999
  14. * More PCI support now conditional on CONFIG_PCI, 03/2001, Paul G.
  15. * Various hacks, Fred Barnes, 04/2001
  16. * Updated probing logic - Adam Belay <ambx1@neo.rr.com>
  17. */
  18. /* This driver should work with any hardware that is broadly compatible
  19. * with that in the IBM PC. This applies to the majority of integrated
  20. * I/O chipsets that are commonly available. The expected register
  21. * layout is:
  22. *
  23. * base+0 data
  24. * base+1 status
  25. * base+2 control
  26. *
  27. * In addition, there are some optional registers:
  28. *
  29. * base+3 EPP address
  30. * base+4 EPP data
  31. * base+0x400 ECP config A
  32. * base+0x401 ECP config B
  33. * base+0x402 ECP control
  34. *
  35. * All registers are 8 bits wide and read/write. If your hardware differs
  36. * only in register addresses (eg because your registers are on 32-bit
  37. * word boundaries) then you can alter the constants in parport_pc.h to
  38. * accommodate this.
  39. *
  40. * Note that the ECP registers may not start at offset 0x400 for PCI cards,
  41. * but rather will start at port->base_hi.
  42. */
  43. #include <linux/module.h>
  44. #include <linux/init.h>
  45. #include <linux/sched.h>
  46. #include <linux/delay.h>
  47. #include <linux/errno.h>
  48. #include <linux/interrupt.h>
  49. #include <linux/ioport.h>
  50. #include <linux/kernel.h>
  51. #include <linux/slab.h>
  52. #include <linux/dma-mapping.h>
  53. #include <linux/pci.h>
  54. #include <linux/pnp.h>
  55. #include <linux/platform_device.h>
  56. #include <linux/sysctl.h>
  57. #include <linux/io.h>
  58. #include <linux/uaccess.h>
  59. #include <asm/dma.h>
  60. #include <linux/parport.h>
  61. #include <linux/parport_pc.h>
  62. #include <linux/via.h>
  63. #include <asm/parport.h>
  64. #define PARPORT_PC_MAX_PORTS PARPORT_MAX
  65. #ifdef CONFIG_ISA_DMA_API
  66. #define HAS_DMA
  67. #endif
  68. /* ECR modes */
  69. #define ECR_SPP 00
  70. #define ECR_PS2 01
  71. #define ECR_PPF 02
  72. #define ECR_ECP 03
  73. #define ECR_EPP 04
  74. #define ECR_VND 05
  75. #define ECR_TST 06
  76. #define ECR_CNF 07
  77. #define ECR_MODE_MASK 0xe0
  78. #define ECR_WRITE(p, v) frob_econtrol((p), 0xff, (v))
  79. #undef DEBUG
  80. #ifdef DEBUG
  81. #define DPRINTK printk
  82. #else
  83. #define DPRINTK(stuff...)
  84. #endif
  85. #define NR_SUPERIOS 3
  86. static struct superio_struct { /* For Super-IO chips autodetection */
  87. int io;
  88. int irq;
  89. int dma;
  90. } superios[NR_SUPERIOS] = { {0,},};
  91. static int user_specified;
  92. #if defined(CONFIG_PARPORT_PC_SUPERIO) || \
  93. (defined(CONFIG_PARPORT_1284) && defined(CONFIG_PARPORT_PC_FIFO))
  94. static int verbose_probing;
  95. #endif
  96. static int pci_registered_parport;
  97. static int pnp_registered_parport;
  98. /* frob_control, but for ECR */
  99. static void frob_econtrol(struct parport *pb, unsigned char m,
  100. unsigned char v)
  101. {
  102. unsigned char ectr = 0;
  103. if (m != 0xff)
  104. ectr = inb(ECONTROL(pb));
  105. DPRINTK(KERN_DEBUG "frob_econtrol(%02x,%02x): %02x -> %02x\n",
  106. m, v, ectr, (ectr & ~m) ^ v);
  107. outb((ectr & ~m) ^ v, ECONTROL(pb));
  108. }
  109. static inline void frob_set_mode(struct parport *p, int mode)
  110. {
  111. frob_econtrol(p, ECR_MODE_MASK, mode << 5);
  112. }
  113. #ifdef CONFIG_PARPORT_PC_FIFO
  114. /* Safely change the mode bits in the ECR
  115. Returns:
  116. 0 : Success
  117. -EBUSY: Could not drain FIFO in some finite amount of time,
  118. mode not changed!
  119. */
  120. static int change_mode(struct parport *p, int m)
  121. {
  122. const struct parport_pc_private *priv = p->physport->private_data;
  123. unsigned char oecr;
  124. int mode;
  125. DPRINTK(KERN_INFO "parport change_mode ECP-ISA to mode 0x%02x\n", m);
  126. if (!priv->ecr) {
  127. printk(KERN_DEBUG "change_mode: but there's no ECR!\n");
  128. return 0;
  129. }
  130. /* Bits <7:5> contain the mode. */
  131. oecr = inb(ECONTROL(p));
  132. mode = (oecr >> 5) & 0x7;
  133. if (mode == m)
  134. return 0;
  135. if (mode >= 2 && !(priv->ctr & 0x20)) {
  136. /* This mode resets the FIFO, so we may
  137. * have to wait for it to drain first. */
  138. unsigned long expire = jiffies + p->physport->cad->timeout;
  139. int counter;
  140. switch (mode) {
  141. case ECR_PPF: /* Parallel Port FIFO mode */
  142. case ECR_ECP: /* ECP Parallel Port mode */
  143. /* Busy wait for 200us */
  144. for (counter = 0; counter < 40; counter++) {
  145. if (inb(ECONTROL(p)) & 0x01)
  146. break;
  147. if (signal_pending(current))
  148. break;
  149. udelay(5);
  150. }
  151. /* Poll slowly. */
  152. while (!(inb(ECONTROL(p)) & 0x01)) {
  153. if (time_after_eq(jiffies, expire))
  154. /* The FIFO is stuck. */
  155. return -EBUSY;
  156. schedule_timeout_interruptible(
  157. msecs_to_jiffies(10));
  158. if (signal_pending(current))
  159. break;
  160. }
  161. }
  162. }
  163. if (mode >= 2 && m >= 2) {
  164. /* We have to go through mode 001 */
  165. oecr &= ~(7 << 5);
  166. oecr |= ECR_PS2 << 5;
  167. ECR_WRITE(p, oecr);
  168. }
  169. /* Set the mode. */
  170. oecr &= ~(7 << 5);
  171. oecr |= m << 5;
  172. ECR_WRITE(p, oecr);
  173. return 0;
  174. }
  175. #endif /* FIFO support */
  176. /*
  177. * Clear TIMEOUT BIT in EPP MODE
  178. *
  179. * This is also used in SPP detection.
  180. */
  181. static int clear_epp_timeout(struct parport *pb)
  182. {
  183. unsigned char r;
  184. if (!(parport_pc_read_status(pb) & 0x01))
  185. return 1;
  186. /* To clear timeout some chips require double read */
  187. parport_pc_read_status(pb);
  188. r = parport_pc_read_status(pb);
  189. outb(r | 0x01, STATUS(pb)); /* Some reset by writing 1 */
  190. outb(r & 0xfe, STATUS(pb)); /* Others by writing 0 */
  191. r = parport_pc_read_status(pb);
  192. return !(r & 0x01);
  193. }
  194. /*
  195. * Access functions.
  196. *
  197. * Most of these aren't static because they may be used by the
  198. * parport_xxx_yyy macros. extern __inline__ versions of several
  199. * of these are in parport_pc.h.
  200. */
  201. static void parport_pc_init_state(struct pardevice *dev,
  202. struct parport_state *s)
  203. {
  204. s->u.pc.ctr = 0xc;
  205. if (dev->irq_func &&
  206. dev->port->irq != PARPORT_IRQ_NONE)
  207. /* Set ackIntEn */
  208. s->u.pc.ctr |= 0x10;
  209. s->u.pc.ecr = 0x34; /* NetMos chip can cause problems 0x24;
  210. * D.Gruszka VScom */
  211. }
  212. static void parport_pc_save_state(struct parport *p, struct parport_state *s)
  213. {
  214. const struct parport_pc_private *priv = p->physport->private_data;
  215. s->u.pc.ctr = priv->ctr;
  216. if (priv->ecr)
  217. s->u.pc.ecr = inb(ECONTROL(p));
  218. }
  219. static void parport_pc_restore_state(struct parport *p,
  220. struct parport_state *s)
  221. {
  222. struct parport_pc_private *priv = p->physport->private_data;
  223. register unsigned char c = s->u.pc.ctr & priv->ctr_writable;
  224. outb(c, CONTROL(p));
  225. priv->ctr = c;
  226. if (priv->ecr)
  227. ECR_WRITE(p, s->u.pc.ecr);
  228. }
  229. #ifdef CONFIG_PARPORT_1284
  230. static size_t parport_pc_epp_read_data(struct parport *port, void *buf,
  231. size_t length, int flags)
  232. {
  233. size_t got = 0;
  234. if (flags & PARPORT_W91284PIC) {
  235. unsigned char status;
  236. size_t left = length;
  237. /* use knowledge about data lines..:
  238. * nFault is 0 if there is at least 1 byte in the Warp's FIFO
  239. * pError is 1 if there are 16 bytes in the Warp's FIFO
  240. */
  241. status = inb(STATUS(port));
  242. while (!(status & 0x08) && got < length) {
  243. if (left >= 16 && (status & 0x20) && !(status & 0x08)) {
  244. /* can grab 16 bytes from warp fifo */
  245. if (!((long)buf & 0x03))
  246. insl(EPPDATA(port), buf, 4);
  247. else
  248. insb(EPPDATA(port), buf, 16);
  249. buf += 16;
  250. got += 16;
  251. left -= 16;
  252. } else {
  253. /* grab single byte from the warp fifo */
  254. *((char *)buf) = inb(EPPDATA(port));
  255. buf++;
  256. got++;
  257. left--;
  258. }
  259. status = inb(STATUS(port));
  260. if (status & 0x01) {
  261. /* EPP timeout should never occur... */
  262. printk(KERN_DEBUG
  263. "%s: EPP timeout occurred while talking to w91284pic (should not have done)\n", port->name);
  264. clear_epp_timeout(port);
  265. }
  266. }
  267. return got;
  268. }
  269. if ((flags & PARPORT_EPP_FAST) && (length > 1)) {
  270. if (!(((long)buf | length) & 0x03))
  271. insl(EPPDATA(port), buf, (length >> 2));
  272. else
  273. insb(EPPDATA(port), buf, length);
  274. if (inb(STATUS(port)) & 0x01) {
  275. clear_epp_timeout(port);
  276. return -EIO;
  277. }
  278. return length;
  279. }
  280. for (; got < length; got++) {
  281. *((char *)buf) = inb(EPPDATA(port));
  282. buf++;
  283. if (inb(STATUS(port)) & 0x01) {
  284. /* EPP timeout */
  285. clear_epp_timeout(port);
  286. break;
  287. }
  288. }
  289. return got;
  290. }
  291. static size_t parport_pc_epp_write_data(struct parport *port, const void *buf,
  292. size_t length, int flags)
  293. {
  294. size_t written = 0;
  295. if ((flags & PARPORT_EPP_FAST) && (length > 1)) {
  296. if (!(((long)buf | length) & 0x03))
  297. outsl(EPPDATA(port), buf, (length >> 2));
  298. else
  299. outsb(EPPDATA(port), buf, length);
  300. if (inb(STATUS(port)) & 0x01) {
  301. clear_epp_timeout(port);
  302. return -EIO;
  303. }
  304. return length;
  305. }
  306. for (; written < length; written++) {
  307. outb(*((char *)buf), EPPDATA(port));
  308. buf++;
  309. if (inb(STATUS(port)) & 0x01) {
  310. clear_epp_timeout(port);
  311. break;
  312. }
  313. }
  314. return written;
  315. }
  316. static size_t parport_pc_epp_read_addr(struct parport *port, void *buf,
  317. size_t length, int flags)
  318. {
  319. size_t got = 0;
  320. if ((flags & PARPORT_EPP_FAST) && (length > 1)) {
  321. insb(EPPADDR(port), buf, length);
  322. if (inb(STATUS(port)) & 0x01) {
  323. clear_epp_timeout(port);
  324. return -EIO;
  325. }
  326. return length;
  327. }
  328. for (; got < length; got++) {
  329. *((char *)buf) = inb(EPPADDR(port));
  330. buf++;
  331. if (inb(STATUS(port)) & 0x01) {
  332. clear_epp_timeout(port);
  333. break;
  334. }
  335. }
  336. return got;
  337. }
  338. static size_t parport_pc_epp_write_addr(struct parport *port,
  339. const void *buf, size_t length,
  340. int flags)
  341. {
  342. size_t written = 0;
  343. if ((flags & PARPORT_EPP_FAST) && (length > 1)) {
  344. outsb(EPPADDR(port), buf, length);
  345. if (inb(STATUS(port)) & 0x01) {
  346. clear_epp_timeout(port);
  347. return -EIO;
  348. }
  349. return length;
  350. }
  351. for (; written < length; written++) {
  352. outb(*((char *)buf), EPPADDR(port));
  353. buf++;
  354. if (inb(STATUS(port)) & 0x01) {
  355. clear_epp_timeout(port);
  356. break;
  357. }
  358. }
  359. return written;
  360. }
  361. static size_t parport_pc_ecpepp_read_data(struct parport *port, void *buf,
  362. size_t length, int flags)
  363. {
  364. size_t got;
  365. frob_set_mode(port, ECR_EPP);
  366. parport_pc_data_reverse(port);
  367. parport_pc_write_control(port, 0x4);
  368. got = parport_pc_epp_read_data(port, buf, length, flags);
  369. frob_set_mode(port, ECR_PS2);
  370. return got;
  371. }
  372. static size_t parport_pc_ecpepp_write_data(struct parport *port,
  373. const void *buf, size_t length,
  374. int flags)
  375. {
  376. size_t written;
  377. frob_set_mode(port, ECR_EPP);
  378. parport_pc_write_control(port, 0x4);
  379. parport_pc_data_forward(port);
  380. written = parport_pc_epp_write_data(port, buf, length, flags);
  381. frob_set_mode(port, ECR_PS2);
  382. return written;
  383. }
  384. static size_t parport_pc_ecpepp_read_addr(struct parport *port, void *buf,
  385. size_t length, int flags)
  386. {
  387. size_t got;
  388. frob_set_mode(port, ECR_EPP);
  389. parport_pc_data_reverse(port);
  390. parport_pc_write_control(port, 0x4);
  391. got = parport_pc_epp_read_addr(port, buf, length, flags);
  392. frob_set_mode(port, ECR_PS2);
  393. return got;
  394. }
  395. static size_t parport_pc_ecpepp_write_addr(struct parport *port,
  396. const void *buf, size_t length,
  397. int flags)
  398. {
  399. size_t written;
  400. frob_set_mode(port, ECR_EPP);
  401. parport_pc_write_control(port, 0x4);
  402. parport_pc_data_forward(port);
  403. written = parport_pc_epp_write_addr(port, buf, length, flags);
  404. frob_set_mode(port, ECR_PS2);
  405. return written;
  406. }
  407. #endif /* IEEE 1284 support */
  408. #ifdef CONFIG_PARPORT_PC_FIFO
  409. static size_t parport_pc_fifo_write_block_pio(struct parport *port,
  410. const void *buf, size_t length)
  411. {
  412. int ret = 0;
  413. const unsigned char *bufp = buf;
  414. size_t left = length;
  415. unsigned long expire = jiffies + port->physport->cad->timeout;
  416. const int fifo = FIFO(port);
  417. int poll_for = 8; /* 80 usecs */
  418. const struct parport_pc_private *priv = port->physport->private_data;
  419. const int fifo_depth = priv->fifo_depth;
  420. port = port->physport;
  421. /* We don't want to be interrupted every character. */
  422. parport_pc_disable_irq(port);
  423. /* set nErrIntrEn and serviceIntr */
  424. frob_econtrol(port, (1<<4) | (1<<2), (1<<4) | (1<<2));
  425. /* Forward mode. */
  426. parport_pc_data_forward(port); /* Must be in PS2 mode */
  427. while (left) {
  428. unsigned char byte;
  429. unsigned char ecrval = inb(ECONTROL(port));
  430. int i = 0;
  431. if (need_resched() && time_before(jiffies, expire))
  432. /* Can't yield the port. */
  433. schedule();
  434. /* Anyone else waiting for the port? */
  435. if (port->waithead) {
  436. printk(KERN_DEBUG "Somebody wants the port\n");
  437. break;
  438. }
  439. if (ecrval & 0x02) {
  440. /* FIFO is full. Wait for interrupt. */
  441. /* Clear serviceIntr */
  442. ECR_WRITE(port, ecrval & ~(1<<2));
  443. false_alarm:
  444. ret = parport_wait_event(port, HZ);
  445. if (ret < 0)
  446. break;
  447. ret = 0;
  448. if (!time_before(jiffies, expire)) {
  449. /* Timed out. */
  450. printk(KERN_DEBUG "FIFO write timed out\n");
  451. break;
  452. }
  453. ecrval = inb(ECONTROL(port));
  454. if (!(ecrval & (1<<2))) {
  455. if (need_resched() &&
  456. time_before(jiffies, expire))
  457. schedule();
  458. goto false_alarm;
  459. }
  460. continue;
  461. }
  462. /* Can't fail now. */
  463. expire = jiffies + port->cad->timeout;
  464. poll:
  465. if (signal_pending(current))
  466. break;
  467. if (ecrval & 0x01) {
  468. /* FIFO is empty. Blast it full. */
  469. const int n = left < fifo_depth ? left : fifo_depth;
  470. outsb(fifo, bufp, n);
  471. bufp += n;
  472. left -= n;
  473. /* Adjust the poll time. */
  474. if (i < (poll_for - 2))
  475. poll_for--;
  476. continue;
  477. } else if (i++ < poll_for) {
  478. udelay(10);
  479. ecrval = inb(ECONTROL(port));
  480. goto poll;
  481. }
  482. /* Half-full(call me an optimist) */
  483. byte = *bufp++;
  484. outb(byte, fifo);
  485. left--;
  486. }
  487. dump_parport_state("leave fifo_write_block_pio", port);
  488. return length - left;
  489. }
  490. #ifdef HAS_DMA
  491. static size_t parport_pc_fifo_write_block_dma(struct parport *port,
  492. const void *buf, size_t length)
  493. {
  494. int ret = 0;
  495. unsigned long dmaflag;
  496. size_t left = length;
  497. const struct parport_pc_private *priv = port->physport->private_data;
  498. struct device *dev = port->physport->dev;
  499. dma_addr_t dma_addr, dma_handle;
  500. size_t maxlen = 0x10000; /* max 64k per DMA transfer */
  501. unsigned long start = (unsigned long) buf;
  502. unsigned long end = (unsigned long) buf + length - 1;
  503. dump_parport_state("enter fifo_write_block_dma", port);
  504. if (end < MAX_DMA_ADDRESS) {
  505. /* If it would cross a 64k boundary, cap it at the end. */
  506. if ((start ^ end) & ~0xffffUL)
  507. maxlen = 0x10000 - (start & 0xffff);
  508. dma_addr = dma_handle = dma_map_single(dev, (void *)buf, length,
  509. DMA_TO_DEVICE);
  510. } else {
  511. /* above 16 MB we use a bounce buffer as ISA-DMA
  512. is not possible */
  513. maxlen = PAGE_SIZE; /* sizeof(priv->dma_buf) */
  514. dma_addr = priv->dma_handle;
  515. dma_handle = 0;
  516. }
  517. port = port->physport;
  518. /* We don't want to be interrupted every character. */
  519. parport_pc_disable_irq(port);
  520. /* set nErrIntrEn and serviceIntr */
  521. frob_econtrol(port, (1<<4) | (1<<2), (1<<4) | (1<<2));
  522. /* Forward mode. */
  523. parport_pc_data_forward(port); /* Must be in PS2 mode */
  524. while (left) {
  525. unsigned long expire = jiffies + port->physport->cad->timeout;
  526. size_t count = left;
  527. if (count > maxlen)
  528. count = maxlen;
  529. if (!dma_handle) /* bounce buffer ! */
  530. memcpy(priv->dma_buf, buf, count);
  531. dmaflag = claim_dma_lock();
  532. disable_dma(port->dma);
  533. clear_dma_ff(port->dma);
  534. set_dma_mode(port->dma, DMA_MODE_WRITE);
  535. set_dma_addr(port->dma, dma_addr);
  536. set_dma_count(port->dma, count);
  537. /* Set DMA mode */
  538. frob_econtrol(port, 1<<3, 1<<3);
  539. /* Clear serviceIntr */
  540. frob_econtrol(port, 1<<2, 0);
  541. enable_dma(port->dma);
  542. release_dma_lock(dmaflag);
  543. /* assume DMA will be successful */
  544. left -= count;
  545. buf += count;
  546. if (dma_handle)
  547. dma_addr += count;
  548. /* Wait for interrupt. */
  549. false_alarm:
  550. ret = parport_wait_event(port, HZ);
  551. if (ret < 0)
  552. break;
  553. ret = 0;
  554. if (!time_before(jiffies, expire)) {
  555. /* Timed out. */
  556. printk(KERN_DEBUG "DMA write timed out\n");
  557. break;
  558. }
  559. /* Is serviceIntr set? */
  560. if (!(inb(ECONTROL(port)) & (1<<2))) {
  561. cond_resched();
  562. goto false_alarm;
  563. }
  564. dmaflag = claim_dma_lock();
  565. disable_dma(port->dma);
  566. clear_dma_ff(port->dma);
  567. count = get_dma_residue(port->dma);
  568. release_dma_lock(dmaflag);
  569. cond_resched(); /* Can't yield the port. */
  570. /* Anyone else waiting for the port? */
  571. if (port->waithead) {
  572. printk(KERN_DEBUG "Somebody wants the port\n");
  573. break;
  574. }
  575. /* update for possible DMA residue ! */
  576. buf -= count;
  577. left += count;
  578. if (dma_handle)
  579. dma_addr -= count;
  580. }
  581. /* Maybe got here through break, so adjust for DMA residue! */
  582. dmaflag = claim_dma_lock();
  583. disable_dma(port->dma);
  584. clear_dma_ff(port->dma);
  585. left += get_dma_residue(port->dma);
  586. release_dma_lock(dmaflag);
  587. /* Turn off DMA mode */
  588. frob_econtrol(port, 1<<3, 0);
  589. if (dma_handle)
  590. dma_unmap_single(dev, dma_handle, length, DMA_TO_DEVICE);
  591. dump_parport_state("leave fifo_write_block_dma", port);
  592. return length - left;
  593. }
  594. #endif
  595. static inline size_t parport_pc_fifo_write_block(struct parport *port,
  596. const void *buf, size_t length)
  597. {
  598. #ifdef HAS_DMA
  599. if (port->dma != PARPORT_DMA_NONE)
  600. return parport_pc_fifo_write_block_dma(port, buf, length);
  601. #endif
  602. return parport_pc_fifo_write_block_pio(port, buf, length);
  603. }
  604. /* Parallel Port FIFO mode (ECP chipsets) */
  605. static size_t parport_pc_compat_write_block_pio(struct parport *port,
  606. const void *buf, size_t length,
  607. int flags)
  608. {
  609. size_t written;
  610. int r;
  611. unsigned long expire;
  612. const struct parport_pc_private *priv = port->physport->private_data;
  613. /* Special case: a timeout of zero means we cannot call schedule().
  614. * Also if O_NONBLOCK is set then use the default implementation. */
  615. if (port->physport->cad->timeout <= PARPORT_INACTIVITY_O_NONBLOCK)
  616. return parport_ieee1284_write_compat(port, buf,
  617. length, flags);
  618. /* Set up parallel port FIFO mode.*/
  619. parport_pc_data_forward(port); /* Must be in PS2 mode */
  620. parport_pc_frob_control(port, PARPORT_CONTROL_STROBE, 0);
  621. r = change_mode(port, ECR_PPF); /* Parallel port FIFO */
  622. if (r)
  623. printk(KERN_DEBUG "%s: Warning change_mode ECR_PPF failed\n",
  624. port->name);
  625. port->physport->ieee1284.phase = IEEE1284_PH_FWD_DATA;
  626. /* Write the data to the FIFO. */
  627. written = parport_pc_fifo_write_block(port, buf, length);
  628. /* Finish up. */
  629. /* For some hardware we don't want to touch the mode until
  630. * the FIFO is empty, so allow 4 seconds for each position
  631. * in the fifo.
  632. */
  633. expire = jiffies + (priv->fifo_depth * HZ * 4);
  634. do {
  635. /* Wait for the FIFO to empty */
  636. r = change_mode(port, ECR_PS2);
  637. if (r != -EBUSY)
  638. break;
  639. } while (time_before(jiffies, expire));
  640. if (r == -EBUSY) {
  641. printk(KERN_DEBUG "%s: FIFO is stuck\n", port->name);
  642. /* Prevent further data transfer. */
  643. frob_set_mode(port, ECR_TST);
  644. /* Adjust for the contents of the FIFO. */
  645. for (written -= priv->fifo_depth; ; written++) {
  646. if (inb(ECONTROL(port)) & 0x2) {
  647. /* Full up. */
  648. break;
  649. }
  650. outb(0, FIFO(port));
  651. }
  652. /* Reset the FIFO and return to PS2 mode. */
  653. frob_set_mode(port, ECR_PS2);
  654. }
  655. r = parport_wait_peripheral(port,
  656. PARPORT_STATUS_BUSY,
  657. PARPORT_STATUS_BUSY);
  658. if (r)
  659. printk(KERN_DEBUG
  660. "%s: BUSY timeout (%d) in compat_write_block_pio\n",
  661. port->name, r);
  662. port->physport->ieee1284.phase = IEEE1284_PH_FWD_IDLE;
  663. return written;
  664. }
  665. /* ECP */
  666. #ifdef CONFIG_PARPORT_1284
  667. static size_t parport_pc_ecp_write_block_pio(struct parport *port,
  668. const void *buf, size_t length,
  669. int flags)
  670. {
  671. size_t written;
  672. int r;
  673. unsigned long expire;
  674. const struct parport_pc_private *priv = port->physport->private_data;
  675. /* Special case: a timeout of zero means we cannot call schedule().
  676. * Also if O_NONBLOCK is set then use the default implementation. */
  677. if (port->physport->cad->timeout <= PARPORT_INACTIVITY_O_NONBLOCK)
  678. return parport_ieee1284_ecp_write_data(port, buf,
  679. length, flags);
  680. /* Switch to forward mode if necessary. */
  681. if (port->physport->ieee1284.phase != IEEE1284_PH_FWD_IDLE) {
  682. /* Event 47: Set nInit high. */
  683. parport_frob_control(port,
  684. PARPORT_CONTROL_INIT
  685. | PARPORT_CONTROL_AUTOFD,
  686. PARPORT_CONTROL_INIT
  687. | PARPORT_CONTROL_AUTOFD);
  688. /* Event 49: PError goes high. */
  689. r = parport_wait_peripheral(port,
  690. PARPORT_STATUS_PAPEROUT,
  691. PARPORT_STATUS_PAPEROUT);
  692. if (r) {
  693. printk(KERN_DEBUG "%s: PError timeout (%d) "
  694. "in ecp_write_block_pio\n", port->name, r);
  695. }
  696. }
  697. /* Set up ECP parallel port mode.*/
  698. parport_pc_data_forward(port); /* Must be in PS2 mode */
  699. parport_pc_frob_control(port,
  700. PARPORT_CONTROL_STROBE |
  701. PARPORT_CONTROL_AUTOFD,
  702. 0);
  703. r = change_mode(port, ECR_ECP); /* ECP FIFO */
  704. if (r)
  705. printk(KERN_DEBUG "%s: Warning change_mode ECR_ECP failed\n",
  706. port->name);
  707. port->physport->ieee1284.phase = IEEE1284_PH_FWD_DATA;
  708. /* Write the data to the FIFO. */
  709. written = parport_pc_fifo_write_block(port, buf, length);
  710. /* Finish up. */
  711. /* For some hardware we don't want to touch the mode until
  712. * the FIFO is empty, so allow 4 seconds for each position
  713. * in the fifo.
  714. */
  715. expire = jiffies + (priv->fifo_depth * (HZ * 4));
  716. do {
  717. /* Wait for the FIFO to empty */
  718. r = change_mode(port, ECR_PS2);
  719. if (r != -EBUSY)
  720. break;
  721. } while (time_before(jiffies, expire));
  722. if (r == -EBUSY) {
  723. printk(KERN_DEBUG "%s: FIFO is stuck\n", port->name);
  724. /* Prevent further data transfer. */
  725. frob_set_mode(port, ECR_TST);
  726. /* Adjust for the contents of the FIFO. */
  727. for (written -= priv->fifo_depth; ; written++) {
  728. if (inb(ECONTROL(port)) & 0x2) {
  729. /* Full up. */
  730. break;
  731. }
  732. outb(0, FIFO(port));
  733. }
  734. /* Reset the FIFO and return to PS2 mode. */
  735. frob_set_mode(port, ECR_PS2);
  736. /* Host transfer recovery. */
  737. parport_pc_data_reverse(port); /* Must be in PS2 mode */
  738. udelay(5);
  739. parport_frob_control(port, PARPORT_CONTROL_INIT, 0);
  740. r = parport_wait_peripheral(port, PARPORT_STATUS_PAPEROUT, 0);
  741. if (r)
  742. printk(KERN_DEBUG "%s: PE,1 timeout (%d) "
  743. "in ecp_write_block_pio\n", port->name, r);
  744. parport_frob_control(port,
  745. PARPORT_CONTROL_INIT,
  746. PARPORT_CONTROL_INIT);
  747. r = parport_wait_peripheral(port,
  748. PARPORT_STATUS_PAPEROUT,
  749. PARPORT_STATUS_PAPEROUT);
  750. if (r)
  751. printk(KERN_DEBUG "%s: PE,2 timeout (%d) "
  752. "in ecp_write_block_pio\n", port->name, r);
  753. }
  754. r = parport_wait_peripheral(port,
  755. PARPORT_STATUS_BUSY,
  756. PARPORT_STATUS_BUSY);
  757. if (r)
  758. printk(KERN_DEBUG
  759. "%s: BUSY timeout (%d) in ecp_write_block_pio\n",
  760. port->name, r);
  761. port->physport->ieee1284.phase = IEEE1284_PH_FWD_IDLE;
  762. return written;
  763. }
  764. #endif /* IEEE 1284 support */
  765. #endif /* Allowed to use FIFO/DMA */
  766. /*
  767. * ******************************************
  768. * INITIALISATION AND MODULE STUFF BELOW HERE
  769. * ******************************************
  770. */
  771. /* GCC is not inlining extern inline function later overwriten to non-inline,
  772. so we use outlined_ variants here. */
  773. static const struct parport_operations parport_pc_ops = {
  774. .write_data = parport_pc_write_data,
  775. .read_data = parport_pc_read_data,
  776. .write_control = parport_pc_write_control,
  777. .read_control = parport_pc_read_control,
  778. .frob_control = parport_pc_frob_control,
  779. .read_status = parport_pc_read_status,
  780. .enable_irq = parport_pc_enable_irq,
  781. .disable_irq = parport_pc_disable_irq,
  782. .data_forward = parport_pc_data_forward,
  783. .data_reverse = parport_pc_data_reverse,
  784. .init_state = parport_pc_init_state,
  785. .save_state = parport_pc_save_state,
  786. .restore_state = parport_pc_restore_state,
  787. .epp_write_data = parport_ieee1284_epp_write_data,
  788. .epp_read_data = parport_ieee1284_epp_read_data,
  789. .epp_write_addr = parport_ieee1284_epp_write_addr,
  790. .epp_read_addr = parport_ieee1284_epp_read_addr,
  791. .ecp_write_data = parport_ieee1284_ecp_write_data,
  792. .ecp_read_data = parport_ieee1284_ecp_read_data,
  793. .ecp_write_addr = parport_ieee1284_ecp_write_addr,
  794. .compat_write_data = parport_ieee1284_write_compat,
  795. .nibble_read_data = parport_ieee1284_read_nibble,
  796. .byte_read_data = parport_ieee1284_read_byte,
  797. .owner = THIS_MODULE,
  798. };
  799. #ifdef CONFIG_PARPORT_PC_SUPERIO
  800. static struct superio_struct *find_free_superio(void)
  801. {
  802. int i;
  803. for (i = 0; i < NR_SUPERIOS; i++)
  804. if (superios[i].io == 0)
  805. return &superios[i];
  806. return NULL;
  807. }
  808. /* Super-IO chipset detection, Winbond, SMSC */
  809. static void show_parconfig_smsc37c669(int io, int key)
  810. {
  811. int cr1, cr4, cra, cr23, cr26, cr27;
  812. struct superio_struct *s;
  813. static const char *const modes[] = {
  814. "SPP and Bidirectional (PS/2)",
  815. "EPP and SPP",
  816. "ECP",
  817. "ECP and EPP" };
  818. outb(key, io);
  819. outb(key, io);
  820. outb(1, io);
  821. cr1 = inb(io + 1);
  822. outb(4, io);
  823. cr4 = inb(io + 1);
  824. outb(0x0a, io);
  825. cra = inb(io + 1);
  826. outb(0x23, io);
  827. cr23 = inb(io + 1);
  828. outb(0x26, io);
  829. cr26 = inb(io + 1);
  830. outb(0x27, io);
  831. cr27 = inb(io + 1);
  832. outb(0xaa, io);
  833. if (verbose_probing) {
  834. printk(KERN_INFO
  835. "SMSC 37c669 LPT Config: cr_1=0x%02x, 4=0x%02x, "
  836. "A=0x%2x, 23=0x%02x, 26=0x%02x, 27=0x%02x\n",
  837. cr1, cr4, cra, cr23, cr26, cr27);
  838. /* The documentation calls DMA and IRQ-Lines by letters, so
  839. the board maker can/will wire them
  840. appropriately/randomly... G=reserved H=IDE-irq, */
  841. printk(KERN_INFO
  842. "SMSC LPT Config: io=0x%04x, irq=%c, dma=%c, fifo threshold=%d\n",
  843. cr23 * 4,
  844. (cr27 & 0x0f) ? 'A' - 1 + (cr27 & 0x0f) : '-',
  845. (cr26 & 0x0f) ? 'A' - 1 + (cr26 & 0x0f) : '-',
  846. cra & 0x0f);
  847. printk(KERN_INFO "SMSC LPT Config: enabled=%s power=%s\n",
  848. (cr23 * 4 >= 0x100) ? "yes" : "no",
  849. (cr1 & 4) ? "yes" : "no");
  850. printk(KERN_INFO
  851. "SMSC LPT Config: Port mode=%s, EPP version =%s\n",
  852. (cr1 & 0x08) ? "Standard mode only (SPP)"
  853. : modes[cr4 & 0x03],
  854. (cr4 & 0x40) ? "1.7" : "1.9");
  855. }
  856. /* Heuristics ! BIOS setup for this mainboard device limits
  857. the choices to standard settings, i.e. io-address and IRQ
  858. are related, however DMA can be 1 or 3, assume DMA_A=DMA1,
  859. DMA_C=DMA3 (this is true e.g. for TYAN 1564D Tomcat IV) */
  860. if (cr23 * 4 >= 0x100) { /* if active */
  861. s = find_free_superio();
  862. if (s == NULL)
  863. printk(KERN_INFO "Super-IO: too many chips!\n");
  864. else {
  865. int d;
  866. switch (cr23 * 4) {
  867. case 0x3bc:
  868. s->io = 0x3bc;
  869. s->irq = 7;
  870. break;
  871. case 0x378:
  872. s->io = 0x378;
  873. s->irq = 7;
  874. break;
  875. case 0x278:
  876. s->io = 0x278;
  877. s->irq = 5;
  878. }
  879. d = (cr26 & 0x0f);
  880. if (d == 1 || d == 3)
  881. s->dma = d;
  882. else
  883. s->dma = PARPORT_DMA_NONE;
  884. }
  885. }
  886. }
  887. static void show_parconfig_winbond(int io, int key)
  888. {
  889. int cr30, cr60, cr61, cr70, cr74, crf0;
  890. struct superio_struct *s;
  891. static const char *const modes[] = {
  892. "Standard (SPP) and Bidirectional(PS/2)", /* 0 */
  893. "EPP-1.9 and SPP",
  894. "ECP",
  895. "ECP and EPP-1.9",
  896. "Standard (SPP)",
  897. "EPP-1.7 and SPP", /* 5 */
  898. "undefined!",
  899. "ECP and EPP-1.7" };
  900. static char *const irqtypes[] = {
  901. "pulsed low, high-Z",
  902. "follows nACK" };
  903. /* The registers are called compatible-PnP because the
  904. register layout is modelled after ISA-PnP, the access
  905. method is just another ... */
  906. outb(key, io);
  907. outb(key, io);
  908. outb(0x07, io); /* Register 7: Select Logical Device */
  909. outb(0x01, io + 1); /* LD1 is Parallel Port */
  910. outb(0x30, io);
  911. cr30 = inb(io + 1);
  912. outb(0x60, io);
  913. cr60 = inb(io + 1);
  914. outb(0x61, io);
  915. cr61 = inb(io + 1);
  916. outb(0x70, io);
  917. cr70 = inb(io + 1);
  918. outb(0x74, io);
  919. cr74 = inb(io + 1);
  920. outb(0xf0, io);
  921. crf0 = inb(io + 1);
  922. outb(0xaa, io);
  923. if (verbose_probing) {
  924. printk(KERN_INFO
  925. "Winbond LPT Config: cr_30=%02x 60,61=%02x%02x 70=%02x 74=%02x, f0=%02x\n",
  926. cr30, cr60, cr61, cr70, cr74, crf0);
  927. printk(KERN_INFO "Winbond LPT Config: active=%s, io=0x%02x%02x irq=%d, ",
  928. (cr30 & 0x01) ? "yes" : "no", cr60, cr61, cr70 & 0x0f);
  929. if ((cr74 & 0x07) > 3)
  930. printk("dma=none\n");
  931. else
  932. printk("dma=%d\n", cr74 & 0x07);
  933. printk(KERN_INFO
  934. "Winbond LPT Config: irqtype=%s, ECP fifo threshold=%d\n",
  935. irqtypes[crf0>>7], (crf0>>3)&0x0f);
  936. printk(KERN_INFO "Winbond LPT Config: Port mode=%s\n",
  937. modes[crf0 & 0x07]);
  938. }
  939. if (cr30 & 0x01) { /* the settings can be interrogated later ... */
  940. s = find_free_superio();
  941. if (s == NULL)
  942. printk(KERN_INFO "Super-IO: too many chips!\n");
  943. else {
  944. s->io = (cr60 << 8) | cr61;
  945. s->irq = cr70 & 0x0f;
  946. s->dma = (((cr74 & 0x07) > 3) ?
  947. PARPORT_DMA_NONE : (cr74 & 0x07));
  948. }
  949. }
  950. }
  951. static void decode_winbond(int efer, int key, int devid, int devrev, int oldid)
  952. {
  953. const char *type = "unknown";
  954. int id, progif = 2;
  955. if (devid == devrev)
  956. /* simple heuristics, we happened to read some
  957. non-winbond register */
  958. return;
  959. id = (devid << 8) | devrev;
  960. /* Values are from public data sheets pdf files, I can just
  961. confirm 83977TF is correct :-) */
  962. if (id == 0x9771)
  963. type = "83977F/AF";
  964. else if (id == 0x9773)
  965. type = "83977TF / SMSC 97w33x/97w34x";
  966. else if (id == 0x9774)
  967. type = "83977ATF";
  968. else if ((id & ~0x0f) == 0x5270)
  969. type = "83977CTF / SMSC 97w36x";
  970. else if ((id & ~0x0f) == 0x52f0)
  971. type = "83977EF / SMSC 97w35x";
  972. else if ((id & ~0x0f) == 0x5210)
  973. type = "83627";
  974. else if ((id & ~0x0f) == 0x6010)
  975. type = "83697HF";
  976. else if ((oldid & 0x0f) == 0x0a) {
  977. type = "83877F";
  978. progif = 1;
  979. } else if ((oldid & 0x0f) == 0x0b) {
  980. type = "83877AF";
  981. progif = 1;
  982. } else if ((oldid & 0x0f) == 0x0c) {
  983. type = "83877TF";
  984. progif = 1;
  985. } else if ((oldid & 0x0f) == 0x0d) {
  986. type = "83877ATF";
  987. progif = 1;
  988. } else
  989. progif = 0;
  990. if (verbose_probing)
  991. printk(KERN_INFO "Winbond chip at EFER=0x%x key=0x%02x "
  992. "devid=%02x devrev=%02x oldid=%02x type=%s\n",
  993. efer, key, devid, devrev, oldid, type);
  994. if (progif == 2)
  995. show_parconfig_winbond(efer, key);
  996. }
  997. static void decode_smsc(int efer, int key, int devid, int devrev)
  998. {
  999. const char *type = "unknown";
  1000. void (*func)(int io, int key);
  1001. int id;
  1002. if (devid == devrev)
  1003. /* simple heuristics, we happened to read some
  1004. non-smsc register */
  1005. return;
  1006. func = NULL;
  1007. id = (devid << 8) | devrev;
  1008. if (id == 0x0302) {
  1009. type = "37c669";
  1010. func = show_parconfig_smsc37c669;
  1011. } else if (id == 0x6582)
  1012. type = "37c665IR";
  1013. else if (devid == 0x65)
  1014. type = "37c665GT";
  1015. else if (devid == 0x66)
  1016. type = "37c666GT";
  1017. if (verbose_probing)
  1018. printk(KERN_INFO "SMSC chip at EFER=0x%x "
  1019. "key=0x%02x devid=%02x devrev=%02x type=%s\n",
  1020. efer, key, devid, devrev, type);
  1021. if (func)
  1022. func(efer, key);
  1023. }
  1024. static void winbond_check(int io, int key)
  1025. {
  1026. int origval, devid, devrev, oldid, x_devid, x_devrev, x_oldid;
  1027. if (!request_region(io, 3, __func__))
  1028. return;
  1029. origval = inb(io); /* Save original value */
  1030. /* First probe without key */
  1031. outb(0x20, io);
  1032. x_devid = inb(io + 1);
  1033. outb(0x21, io);
  1034. x_devrev = inb(io + 1);
  1035. outb(0x09, io);
  1036. x_oldid = inb(io + 1);
  1037. outb(key, io);
  1038. outb(key, io); /* Write Magic Sequence to EFER, extended
  1039. function enable register */
  1040. outb(0x20, io); /* Write EFIR, extended function index register */
  1041. devid = inb(io + 1); /* Read EFDR, extended function data register */
  1042. outb(0x21, io);
  1043. devrev = inb(io + 1);
  1044. outb(0x09, io);
  1045. oldid = inb(io + 1);
  1046. outb(0xaa, io); /* Magic Seal */
  1047. outb(origval, io); /* in case we poked some entirely different hardware */
  1048. if ((x_devid == devid) && (x_devrev == devrev) && (x_oldid == oldid))
  1049. goto out; /* protection against false positives */
  1050. decode_winbond(io, key, devid, devrev, oldid);
  1051. out:
  1052. release_region(io, 3);
  1053. }
  1054. static void winbond_check2(int io, int key)
  1055. {
  1056. int origval[3], devid, devrev, oldid, x_devid, x_devrev, x_oldid;
  1057. if (!request_region(io, 3, __func__))
  1058. return;
  1059. origval[0] = inb(io); /* Save original values */
  1060. origval[1] = inb(io + 1);
  1061. origval[2] = inb(io + 2);
  1062. /* First probe without the key */
  1063. outb(0x20, io + 2);
  1064. x_devid = inb(io + 2);
  1065. outb(0x21, io + 1);
  1066. x_devrev = inb(io + 2);
  1067. outb(0x09, io + 1);
  1068. x_oldid = inb(io + 2);
  1069. outb(key, io); /* Write Magic Byte to EFER, extended
  1070. function enable register */
  1071. outb(0x20, io + 2); /* Write EFIR, extended function index register */
  1072. devid = inb(io + 2); /* Read EFDR, extended function data register */
  1073. outb(0x21, io + 1);
  1074. devrev = inb(io + 2);
  1075. outb(0x09, io + 1);
  1076. oldid = inb(io + 2);
  1077. outb(0xaa, io); /* Magic Seal */
  1078. outb(origval[0], io); /* in case we poked some entirely different hardware */
  1079. outb(origval[1], io + 1);
  1080. outb(origval[2], io + 2);
  1081. if (x_devid == devid && x_devrev == devrev && x_oldid == oldid)
  1082. goto out; /* protection against false positives */
  1083. decode_winbond(io, key, devid, devrev, oldid);
  1084. out:
  1085. release_region(io, 3);
  1086. }
  1087. static void smsc_check(int io, int key)
  1088. {
  1089. int origval, id, rev, oldid, oldrev, x_id, x_rev, x_oldid, x_oldrev;
  1090. if (!request_region(io, 3, __func__))
  1091. return;
  1092. origval = inb(io); /* Save original value */
  1093. /* First probe without the key */
  1094. outb(0x0d, io);
  1095. x_oldid = inb(io + 1);
  1096. outb(0x0e, io);
  1097. x_oldrev = inb(io + 1);
  1098. outb(0x20, io);
  1099. x_id = inb(io + 1);
  1100. outb(0x21, io);
  1101. x_rev = inb(io + 1);
  1102. outb(key, io);
  1103. outb(key, io); /* Write Magic Sequence to EFER, extended
  1104. function enable register */
  1105. outb(0x0d, io); /* Write EFIR, extended function index register */
  1106. oldid = inb(io + 1); /* Read EFDR, extended function data register */
  1107. outb(0x0e, io);
  1108. oldrev = inb(io + 1);
  1109. outb(0x20, io);
  1110. id = inb(io + 1);
  1111. outb(0x21, io);
  1112. rev = inb(io + 1);
  1113. outb(0xaa, io); /* Magic Seal */
  1114. outb(origval, io); /* in case we poked some entirely different hardware */
  1115. if (x_id == id && x_oldrev == oldrev &&
  1116. x_oldid == oldid && x_rev == rev)
  1117. goto out; /* protection against false positives */
  1118. decode_smsc(io, key, oldid, oldrev);
  1119. out:
  1120. release_region(io, 3);
  1121. }
  1122. static void detect_and_report_winbond(void)
  1123. {
  1124. if (verbose_probing)
  1125. printk(KERN_DEBUG "Winbond Super-IO detection, now testing ports 3F0,370,250,4E,2E ...\n");
  1126. winbond_check(0x3f0, 0x87);
  1127. winbond_check(0x370, 0x87);
  1128. winbond_check(0x2e , 0x87);
  1129. winbond_check(0x4e , 0x87);
  1130. winbond_check(0x3f0, 0x86);
  1131. winbond_check2(0x250, 0x88);
  1132. winbond_check2(0x250, 0x89);
  1133. }
  1134. static void detect_and_report_smsc(void)
  1135. {
  1136. if (verbose_probing)
  1137. printk(KERN_DEBUG "SMSC Super-IO detection, now testing Ports 2F0, 370 ...\n");
  1138. smsc_check(0x3f0, 0x55);
  1139. smsc_check(0x370, 0x55);
  1140. smsc_check(0x3f0, 0x44);
  1141. smsc_check(0x370, 0x44);
  1142. }
  1143. static void detect_and_report_it87(void)
  1144. {
  1145. u16 dev;
  1146. u8 origval, r;
  1147. if (verbose_probing)
  1148. printk(KERN_DEBUG "IT8705 Super-IO detection, now testing port 2E ...\n");
  1149. if (!request_muxed_region(0x2e, 2, __func__))
  1150. return;
  1151. origval = inb(0x2e); /* Save original value */
  1152. outb(0x87, 0x2e);
  1153. outb(0x01, 0x2e);
  1154. outb(0x55, 0x2e);
  1155. outb(0x55, 0x2e);
  1156. outb(0x20, 0x2e);
  1157. dev = inb(0x2f) << 8;
  1158. outb(0x21, 0x2e);
  1159. dev |= inb(0x2f);
  1160. if (dev == 0x8712 || dev == 0x8705 || dev == 0x8715 ||
  1161. dev == 0x8716 || dev == 0x8718 || dev == 0x8726) {
  1162. printk(KERN_INFO "IT%04X SuperIO detected.\n", dev);
  1163. outb(0x07, 0x2E); /* Parallel Port */
  1164. outb(0x03, 0x2F);
  1165. outb(0xF0, 0x2E); /* BOOT 0x80 off */
  1166. r = inb(0x2f);
  1167. outb(0xF0, 0x2E);
  1168. outb(r | 8, 0x2F);
  1169. outb(0x02, 0x2E); /* Lock */
  1170. outb(0x02, 0x2F);
  1171. } else {
  1172. outb(origval, 0x2e); /* Oops, sorry to disturb */
  1173. }
  1174. release_region(0x2e, 2);
  1175. }
  1176. #endif /* CONFIG_PARPORT_PC_SUPERIO */
  1177. static struct superio_struct *find_superio(struct parport *p)
  1178. {
  1179. int i;
  1180. for (i = 0; i < NR_SUPERIOS; i++)
  1181. if (superios[i].io != p->base)
  1182. return &superios[i];
  1183. return NULL;
  1184. }
  1185. static int get_superio_dma(struct parport *p)
  1186. {
  1187. struct superio_struct *s = find_superio(p);
  1188. if (s)
  1189. return s->dma;
  1190. return PARPORT_DMA_NONE;
  1191. }
  1192. static int get_superio_irq(struct parport *p)
  1193. {
  1194. struct superio_struct *s = find_superio(p);
  1195. if (s)
  1196. return s->irq;
  1197. return PARPORT_IRQ_NONE;
  1198. }
  1199. /* --- Mode detection ------------------------------------- */
  1200. /*
  1201. * Checks for port existence, all ports support SPP MODE
  1202. * Returns:
  1203. * 0 : No parallel port at this address
  1204. * PARPORT_MODE_PCSPP : SPP port detected
  1205. * (if the user specified an ioport himself,
  1206. * this shall always be the case!)
  1207. *
  1208. */
  1209. static int parport_SPP_supported(struct parport *pb)
  1210. {
  1211. unsigned char r, w;
  1212. /*
  1213. * first clear an eventually pending EPP timeout
  1214. * I (sailer@ife.ee.ethz.ch) have an SMSC chipset
  1215. * that does not even respond to SPP cycles if an EPP
  1216. * timeout is pending
  1217. */
  1218. clear_epp_timeout(pb);
  1219. /* Do a simple read-write test to make sure the port exists. */
  1220. w = 0xc;
  1221. outb(w, CONTROL(pb));
  1222. /* Is there a control register that we can read from? Some
  1223. * ports don't allow reads, so read_control just returns a
  1224. * software copy. Some ports _do_ allow reads, so bypass the
  1225. * software copy here. In addition, some bits aren't
  1226. * writable. */
  1227. r = inb(CONTROL(pb));
  1228. if ((r & 0xf) == w) {
  1229. w = 0xe;
  1230. outb(w, CONTROL(pb));
  1231. r = inb(CONTROL(pb));
  1232. outb(0xc, CONTROL(pb));
  1233. if ((r & 0xf) == w)
  1234. return PARPORT_MODE_PCSPP;
  1235. }
  1236. if (user_specified)
  1237. /* That didn't work, but the user thinks there's a
  1238. * port here. */
  1239. printk(KERN_INFO "parport 0x%lx (WARNING): CTR: "
  1240. "wrote 0x%02x, read 0x%02x\n", pb->base, w, r);
  1241. /* Try the data register. The data lines aren't tri-stated at
  1242. * this stage, so we expect back what we wrote. */
  1243. w = 0xaa;
  1244. parport_pc_write_data(pb, w);
  1245. r = parport_pc_read_data(pb);
  1246. if (r == w) {
  1247. w = 0x55;
  1248. parport_pc_write_data(pb, w);
  1249. r = parport_pc_read_data(pb);
  1250. if (r == w)
  1251. return PARPORT_MODE_PCSPP;
  1252. }
  1253. if (user_specified) {
  1254. /* Didn't work, but the user is convinced this is the
  1255. * place. */
  1256. printk(KERN_INFO "parport 0x%lx (WARNING): DATA: "
  1257. "wrote 0x%02x, read 0x%02x\n", pb->base, w, r);
  1258. printk(KERN_INFO "parport 0x%lx: You gave this address, "
  1259. "but there is probably no parallel port there!\n",
  1260. pb->base);
  1261. }
  1262. /* It's possible that we can't read the control register or
  1263. * the data register. In that case just believe the user. */
  1264. if (user_specified)
  1265. return PARPORT_MODE_PCSPP;
  1266. return 0;
  1267. }
  1268. /* Check for ECR
  1269. *
  1270. * Old style XT ports alias io ports every 0x400, hence accessing ECR
  1271. * on these cards actually accesses the CTR.
  1272. *
  1273. * Modern cards don't do this but reading from ECR will return 0xff
  1274. * regardless of what is written here if the card does NOT support
  1275. * ECP.
  1276. *
  1277. * We first check to see if ECR is the same as CTR. If not, the low
  1278. * two bits of ECR aren't writable, so we check by writing ECR and
  1279. * reading it back to see if it's what we expect.
  1280. */
  1281. static int parport_ECR_present(struct parport *pb)
  1282. {
  1283. struct parport_pc_private *priv = pb->private_data;
  1284. unsigned char r = 0xc;
  1285. outb(r, CONTROL(pb));
  1286. if ((inb(ECONTROL(pb)) & 0x3) == (r & 0x3)) {
  1287. outb(r ^ 0x2, CONTROL(pb)); /* Toggle bit 1 */
  1288. r = inb(CONTROL(pb));
  1289. if ((inb(ECONTROL(pb)) & 0x2) == (r & 0x2))
  1290. goto no_reg; /* Sure that no ECR register exists */
  1291. }
  1292. if ((inb(ECONTROL(pb)) & 0x3) != 0x1)
  1293. goto no_reg;
  1294. ECR_WRITE(pb, 0x34);
  1295. if (inb(ECONTROL(pb)) != 0x35)
  1296. goto no_reg;
  1297. priv->ecr = 1;
  1298. outb(0xc, CONTROL(pb));
  1299. /* Go to mode 000 */
  1300. frob_set_mode(pb, ECR_SPP);
  1301. return 1;
  1302. no_reg:
  1303. outb(0xc, CONTROL(pb));
  1304. return 0;
  1305. }
  1306. #ifdef CONFIG_PARPORT_1284
  1307. /* Detect PS/2 support.
  1308. *
  1309. * Bit 5 (0x20) sets the PS/2 data direction; setting this high
  1310. * allows us to read data from the data lines. In theory we would get back
  1311. * 0xff but any peripheral attached to the port may drag some or all of the
  1312. * lines down to zero. So if we get back anything that isn't the contents
  1313. * of the data register we deem PS/2 support to be present.
  1314. *
  1315. * Some SPP ports have "half PS/2" ability - you can't turn off the line
  1316. * drivers, but an external peripheral with sufficiently beefy drivers of
  1317. * its own can overpower them and assert its own levels onto the bus, from
  1318. * where they can then be read back as normal. Ports with this property
  1319. * and the right type of device attached are likely to fail the SPP test,
  1320. * (as they will appear to have stuck bits) and so the fact that they might
  1321. * be misdetected here is rather academic.
  1322. */
  1323. static int parport_PS2_supported(struct parport *pb)
  1324. {
  1325. int ok = 0;
  1326. clear_epp_timeout(pb);
  1327. /* try to tri-state the buffer */
  1328. parport_pc_data_reverse(pb);
  1329. parport_pc_write_data(pb, 0x55);
  1330. if (parport_pc_read_data(pb) != 0x55)
  1331. ok++;
  1332. parport_pc_write_data(pb, 0xaa);
  1333. if (parport_pc_read_data(pb) != 0xaa)
  1334. ok++;
  1335. /* cancel input mode */
  1336. parport_pc_data_forward(pb);
  1337. if (ok) {
  1338. pb->modes |= PARPORT_MODE_TRISTATE;
  1339. } else {
  1340. struct parport_pc_private *priv = pb->private_data;
  1341. priv->ctr_writable &= ~0x20;
  1342. }
  1343. return ok;
  1344. }
  1345. #ifdef CONFIG_PARPORT_PC_FIFO
  1346. static int parport_ECP_supported(struct parport *pb)
  1347. {
  1348. int i;
  1349. int config, configb;
  1350. int pword;
  1351. struct parport_pc_private *priv = pb->private_data;
  1352. /* Translate ECP intrLine to ISA irq value */
  1353. static const int intrline[] = { 0, 7, 9, 10, 11, 14, 15, 5 };
  1354. /* If there is no ECR, we have no hope of supporting ECP. */
  1355. if (!priv->ecr)
  1356. return 0;
  1357. /* Find out FIFO depth */
  1358. ECR_WRITE(pb, ECR_SPP << 5); /* Reset FIFO */
  1359. ECR_WRITE(pb, ECR_TST << 5); /* TEST FIFO */
  1360. for (i = 0; i < 1024 && !(inb(ECONTROL(pb)) & 0x02); i++)
  1361. outb(0xaa, FIFO(pb));
  1362. /*
  1363. * Using LGS chipset it uses ECR register, but
  1364. * it doesn't support ECP or FIFO MODE
  1365. */
  1366. if (i == 1024) {
  1367. ECR_WRITE(pb, ECR_SPP << 5);
  1368. return 0;
  1369. }
  1370. priv->fifo_depth = i;
  1371. if (verbose_probing)
  1372. printk(KERN_DEBUG "0x%lx: FIFO is %d bytes\n", pb->base, i);
  1373. /* Find out writeIntrThreshold */
  1374. frob_econtrol(pb, 1<<2, 1<<2);
  1375. frob_econtrol(pb, 1<<2, 0);
  1376. for (i = 1; i <= priv->fifo_depth; i++) {
  1377. inb(FIFO(pb));
  1378. udelay(50);
  1379. if (inb(ECONTROL(pb)) & (1<<2))
  1380. break;
  1381. }
  1382. if (i <= priv->fifo_depth) {
  1383. if (verbose_probing)
  1384. printk(KERN_DEBUG "0x%lx: writeIntrThreshold is %d\n",
  1385. pb->base, i);
  1386. } else
  1387. /* Number of bytes we know we can write if we get an
  1388. interrupt. */
  1389. i = 0;
  1390. priv->writeIntrThreshold = i;
  1391. /* Find out readIntrThreshold */
  1392. frob_set_mode(pb, ECR_PS2); /* Reset FIFO and enable PS2 */
  1393. parport_pc_data_reverse(pb); /* Must be in PS2 mode */
  1394. frob_set_mode(pb, ECR_TST); /* Test FIFO */
  1395. frob_econtrol(pb, 1<<2, 1<<2);
  1396. frob_econtrol(pb, 1<<2, 0);
  1397. for (i = 1; i <= priv->fifo_depth; i++) {
  1398. outb(0xaa, FIFO(pb));
  1399. if (inb(ECONTROL(pb)) & (1<<2))
  1400. break;
  1401. }
  1402. if (i <= priv->fifo_depth) {
  1403. if (verbose_probing)
  1404. printk(KERN_INFO "0x%lx: readIntrThreshold is %d\n",
  1405. pb->base, i);
  1406. } else
  1407. /* Number of bytes we can read if we get an interrupt. */
  1408. i = 0;
  1409. priv->readIntrThreshold = i;
  1410. ECR_WRITE(pb, ECR_SPP << 5); /* Reset FIFO */
  1411. ECR_WRITE(pb, 0xf4); /* Configuration mode */
  1412. config = inb(CONFIGA(pb));
  1413. pword = (config >> 4) & 0x7;
  1414. switch (pword) {
  1415. case 0:
  1416. pword = 2;
  1417. printk(KERN_WARNING "0x%lx: Unsupported pword size!\n",
  1418. pb->base);
  1419. break;
  1420. case 2:
  1421. pword = 4;
  1422. printk(KERN_WARNING "0x%lx: Unsupported pword size!\n",
  1423. pb->base);
  1424. break;
  1425. default:
  1426. printk(KERN_WARNING "0x%lx: Unknown implementation ID\n",
  1427. pb->base);
  1428. /* Assume 1 */
  1429. case 1:
  1430. pword = 1;
  1431. }
  1432. priv->pword = pword;
  1433. if (verbose_probing) {
  1434. printk(KERN_DEBUG "0x%lx: PWord is %d bits\n",
  1435. pb->base, 8 * pword);
  1436. printk(KERN_DEBUG "0x%lx: Interrupts are ISA-%s\n", pb->base,
  1437. config & 0x80 ? "Level" : "Pulses");
  1438. configb = inb(CONFIGB(pb));
  1439. printk(KERN_DEBUG "0x%lx: ECP port cfgA=0x%02x cfgB=0x%02x\n",
  1440. pb->base, config, configb);
  1441. printk(KERN_DEBUG "0x%lx: ECP settings irq=", pb->base);
  1442. if ((configb >> 3) & 0x07)
  1443. printk("%d", intrline[(configb >> 3) & 0x07]);
  1444. else
  1445. printk("<none or set by other means>");
  1446. printk(" dma=");
  1447. if ((configb & 0x03) == 0x00)
  1448. printk("<none or set by other means>\n");
  1449. else
  1450. printk("%d\n", configb & 0x07);
  1451. }
  1452. /* Go back to mode 000 */
  1453. frob_set_mode(pb, ECR_SPP);
  1454. return 1;
  1455. }
  1456. #endif
  1457. static int parport_ECPPS2_supported(struct parport *pb)
  1458. {
  1459. const struct parport_pc_private *priv = pb->private_data;
  1460. int result;
  1461. unsigned char oecr;
  1462. if (!priv->ecr)
  1463. return 0;
  1464. oecr = inb(ECONTROL(pb));
  1465. ECR_WRITE(pb, ECR_PS2 << 5);
  1466. result = parport_PS2_supported(pb);
  1467. ECR_WRITE(pb, oecr);
  1468. return result;
  1469. }
  1470. /* EPP mode detection */
  1471. static int parport_EPP_supported(struct parport *pb)
  1472. {
  1473. const struct parport_pc_private *priv = pb->private_data;
  1474. /*
  1475. * Theory:
  1476. * Bit 0 of STR is the EPP timeout bit, this bit is 0
  1477. * when EPP is possible and is set high when an EPP timeout
  1478. * occurs (EPP uses the HALT line to stop the CPU while it does
  1479. * the byte transfer, an EPP timeout occurs if the attached
  1480. * device fails to respond after 10 micro seconds).
  1481. *
  1482. * This bit is cleared by either reading it (National Semi)
  1483. * or writing a 1 to the bit (SMC, UMC, WinBond), others ???
  1484. * This bit is always high in non EPP modes.
  1485. */
  1486. /* If EPP timeout bit clear then EPP available */
  1487. if (!clear_epp_timeout(pb))
  1488. return 0; /* No way to clear timeout */
  1489. /* Check for Intel bug. */
  1490. if (priv->ecr) {
  1491. unsigned char i;
  1492. for (i = 0x00; i < 0x80; i += 0x20) {
  1493. ECR_WRITE(pb, i);
  1494. if (clear_epp_timeout(pb)) {
  1495. /* Phony EPP in ECP. */
  1496. return 0;
  1497. }
  1498. }
  1499. }
  1500. pb->modes |= PARPORT_MODE_EPP;
  1501. /* Set up access functions to use EPP hardware. */
  1502. pb->ops->epp_read_data = parport_pc_epp_read_data;
  1503. pb->ops->epp_write_data = parport_pc_epp_write_data;
  1504. pb->ops->epp_read_addr = parport_pc_epp_read_addr;
  1505. pb->ops->epp_write_addr = parport_pc_epp_write_addr;
  1506. return 1;
  1507. }
  1508. static int parport_ECPEPP_supported(struct parport *pb)
  1509. {
  1510. struct parport_pc_private *priv = pb->private_data;
  1511. int result;
  1512. unsigned char oecr;
  1513. if (!priv->ecr)
  1514. return 0;
  1515. oecr = inb(ECONTROL(pb));
  1516. /* Search for SMC style EPP+ECP mode */
  1517. ECR_WRITE(pb, 0x80);
  1518. outb(0x04, CONTROL(pb));
  1519. result = parport_EPP_supported(pb);
  1520. ECR_WRITE(pb, oecr);
  1521. if (result) {
  1522. /* Set up access functions to use ECP+EPP hardware. */
  1523. pb->ops->epp_read_data = parport_pc_ecpepp_read_data;
  1524. pb->ops->epp_write_data = parport_pc_ecpepp_write_data;
  1525. pb->ops->epp_read_addr = parport_pc_ecpepp_read_addr;
  1526. pb->ops->epp_write_addr = parport_pc_ecpepp_write_addr;
  1527. }
  1528. return result;
  1529. }
  1530. #else /* No IEEE 1284 support */
  1531. /* Don't bother probing for modes we know we won't use. */
  1532. static int parport_PS2_supported(struct parport *pb) { return 0; }
  1533. #ifdef CONFIG_PARPORT_PC_FIFO
  1534. static int parport_ECP_supported(struct parport *pb)
  1535. {
  1536. return 0;
  1537. }
  1538. #endif
  1539. static int parport_EPP_supported(struct parport *pb)
  1540. {
  1541. return 0;
  1542. }
  1543. static int parport_ECPEPP_supported(struct parport *pb)
  1544. {
  1545. return 0;
  1546. }
  1547. static int parport_ECPPS2_supported(struct parport *pb)
  1548. {
  1549. return 0;
  1550. }
  1551. #endif /* No IEEE 1284 support */
  1552. /* --- IRQ detection -------------------------------------- */
  1553. /* Only if supports ECP mode */
  1554. static int programmable_irq_support(struct parport *pb)
  1555. {
  1556. int irq, intrLine;
  1557. unsigned char oecr = inb(ECONTROL(pb));
  1558. static const int lookup[8] = {
  1559. PARPORT_IRQ_NONE, 7, 9, 10, 11, 14, 15, 5
  1560. };
  1561. ECR_WRITE(pb, ECR_CNF << 5); /* Configuration MODE */
  1562. intrLine = (inb(CONFIGB(pb)) >> 3) & 0x07;
  1563. irq = lookup[intrLine];
  1564. ECR_WRITE(pb, oecr);
  1565. return irq;
  1566. }
  1567. static int irq_probe_ECP(struct parport *pb)
  1568. {
  1569. int i;
  1570. unsigned long irqs;
  1571. irqs = probe_irq_on();
  1572. ECR_WRITE(pb, ECR_SPP << 5); /* Reset FIFO */
  1573. ECR_WRITE(pb, (ECR_TST << 5) | 0x04);
  1574. ECR_WRITE(pb, ECR_TST << 5);
  1575. /* If Full FIFO sure that writeIntrThreshold is generated */
  1576. for (i = 0; i < 1024 && !(inb(ECONTROL(pb)) & 0x02) ; i++)
  1577. outb(0xaa, FIFO(pb));
  1578. pb->irq = probe_irq_off(irqs);
  1579. ECR_WRITE(pb, ECR_SPP << 5);
  1580. if (pb->irq <= 0)
  1581. pb->irq = PARPORT_IRQ_NONE;
  1582. return pb->irq;
  1583. }
  1584. /*
  1585. * This detection seems that only works in National Semiconductors
  1586. * This doesn't work in SMC, LGS, and Winbond
  1587. */
  1588. static int irq_probe_EPP(struct parport *pb)
  1589. {
  1590. #ifndef ADVANCED_DETECT
  1591. return PARPORT_IRQ_NONE;
  1592. #else
  1593. int irqs;
  1594. unsigned char oecr;
  1595. if (pb->modes & PARPORT_MODE_PCECR)
  1596. oecr = inb(ECONTROL(pb));
  1597. irqs = probe_irq_on();
  1598. if (pb->modes & PARPORT_MODE_PCECR)
  1599. frob_econtrol(pb, 0x10, 0x10);
  1600. clear_epp_timeout(pb);
  1601. parport_pc_frob_control(pb, 0x20, 0x20);
  1602. parport_pc_frob_control(pb, 0x10, 0x10);
  1603. clear_epp_timeout(pb);
  1604. /* Device isn't expecting an EPP read
  1605. * and generates an IRQ.
  1606. */
  1607. parport_pc_read_epp(pb);
  1608. udelay(20);
  1609. pb->irq = probe_irq_off(irqs);
  1610. if (pb->modes & PARPORT_MODE_PCECR)
  1611. ECR_WRITE(pb, oecr);
  1612. parport_pc_write_control(pb, 0xc);
  1613. if (pb->irq <= 0)
  1614. pb->irq = PARPORT_IRQ_NONE;
  1615. return pb->irq;
  1616. #endif /* Advanced detection */
  1617. }
  1618. static int irq_probe_SPP(struct parport *pb)
  1619. {
  1620. /* Don't even try to do this. */
  1621. return PARPORT_IRQ_NONE;
  1622. }
  1623. /* We will attempt to share interrupt requests since other devices
  1624. * such as sound cards and network cards seem to like using the
  1625. * printer IRQs.
  1626. *
  1627. * When ECP is available we can autoprobe for IRQs.
  1628. * NOTE: If we can autoprobe it, we can register the IRQ.
  1629. */
  1630. static int parport_irq_probe(struct parport *pb)
  1631. {
  1632. struct parport_pc_private *priv = pb->private_data;
  1633. if (priv->ecr) {
  1634. pb->irq = programmable_irq_support(pb);
  1635. if (pb->irq == PARPORT_IRQ_NONE)
  1636. pb->irq = irq_probe_ECP(pb);
  1637. }
  1638. if ((pb->irq == PARPORT_IRQ_NONE) && priv->ecr &&
  1639. (pb->modes & PARPORT_MODE_EPP))
  1640. pb->irq = irq_probe_EPP(pb);
  1641. clear_epp_timeout(pb);
  1642. if (pb->irq == PARPORT_IRQ_NONE && (pb->modes & PARPORT_MODE_EPP))
  1643. pb->irq = irq_probe_EPP(pb);
  1644. clear_epp_timeout(pb);
  1645. if (pb->irq == PARPORT_IRQ_NONE)
  1646. pb->irq = irq_probe_SPP(pb);
  1647. if (pb->irq == PARPORT_IRQ_NONE)
  1648. pb->irq = get_superio_irq(pb);
  1649. return pb->irq;
  1650. }
  1651. /* --- DMA detection -------------------------------------- */
  1652. /* Only if chipset conforms to ECP ISA Interface Standard */
  1653. static int programmable_dma_support(struct parport *p)
  1654. {
  1655. unsigned char oecr = inb(ECONTROL(p));
  1656. int dma;
  1657. frob_set_mode(p, ECR_CNF);
  1658. dma = inb(CONFIGB(p)) & 0x07;
  1659. /* 000: Indicates jumpered 8-bit DMA if read-only.
  1660. 100: Indicates jumpered 16-bit DMA if read-only. */
  1661. if ((dma & 0x03) == 0)
  1662. dma = PARPORT_DMA_NONE;
  1663. ECR_WRITE(p, oecr);
  1664. return dma;
  1665. }
  1666. static int parport_dma_probe(struct parport *p)
  1667. {
  1668. const struct parport_pc_private *priv = p->private_data;
  1669. if (priv->ecr) /* ask ECP chipset first */
  1670. p->dma = programmable_dma_support(p);
  1671. if (p->dma == PARPORT_DMA_NONE) {
  1672. /* ask known Super-IO chips proper, although these
  1673. claim ECP compatible, some don't report their DMA
  1674. conforming to ECP standards */
  1675. p->dma = get_superio_dma(p);
  1676. }
  1677. return p->dma;
  1678. }
  1679. /* --- Initialisation code -------------------------------- */
  1680. static LIST_HEAD(ports_list);
  1681. static DEFINE_SPINLOCK(ports_lock);
  1682. struct parport *parport_pc_probe_port(unsigned long int base,
  1683. unsigned long int base_hi,
  1684. int irq, int dma,
  1685. struct device *dev,
  1686. int irqflags)
  1687. {
  1688. struct parport_pc_private *priv;
  1689. struct parport_operations *ops;
  1690. struct parport *p;
  1691. int probedirq = PARPORT_IRQ_NONE;
  1692. struct resource *base_res;
  1693. struct resource *ECR_res = NULL;
  1694. struct resource *EPP_res = NULL;
  1695. struct platform_device *pdev = NULL;
  1696. int ret;
  1697. if (!dev) {
  1698. /* We need a physical device to attach to, but none was
  1699. * provided. Create our own. */
  1700. pdev = platform_device_register_simple("parport_pc",
  1701. base, NULL, 0);
  1702. if (IS_ERR(pdev))
  1703. return NULL;
  1704. dev = &pdev->dev;
  1705. ret = dma_coerce_mask_and_coherent(dev, DMA_BIT_MASK(24));
  1706. if (ret) {
  1707. dev_err(dev, "Unable to set coherent dma mask: disabling DMA\n");
  1708. dma = PARPORT_DMA_NONE;
  1709. }
  1710. }
  1711. ops = kmalloc(sizeof(struct parport_operations), GFP_KERNEL);
  1712. if (!ops)
  1713. goto out1;
  1714. priv = kmalloc(sizeof(struct parport_pc_private), GFP_KERNEL);
  1715. if (!priv)
  1716. goto out2;
  1717. /* a misnomer, actually - it's allocate and reserve parport number */
  1718. p = parport_register_port(base, irq, dma, ops);
  1719. if (!p)
  1720. goto out3;
  1721. base_res = request_region(base, 3, p->name);
  1722. if (!base_res)
  1723. goto out4;
  1724. memcpy(ops, &parport_pc_ops, sizeof(struct parport_operations));
  1725. priv->ctr = 0xc;
  1726. priv->ctr_writable = ~0x10;
  1727. priv->ecr = 0;
  1728. priv->fifo_depth = 0;
  1729. priv->dma_buf = NULL;
  1730. priv->dma_handle = 0;
  1731. INIT_LIST_HEAD(&priv->list);
  1732. priv->port = p;
  1733. p->dev = dev;
  1734. p->base_hi = base_hi;
  1735. p->modes = PARPORT_MODE_PCSPP | PARPORT_MODE_SAFEININT;
  1736. p->private_data = priv;
  1737. if (base_hi) {
  1738. ECR_res = request_region(base_hi, 3, p->name);
  1739. if (ECR_res)
  1740. parport_ECR_present(p);
  1741. }
  1742. if (base != 0x3bc) {
  1743. EPP_res = request_region(base+0x3, 5, p->name);
  1744. if (EPP_res)
  1745. if (!parport_EPP_supported(p))
  1746. parport_ECPEPP_supported(p);
  1747. }
  1748. if (!parport_SPP_supported(p))
  1749. /* No port. */
  1750. goto out5;
  1751. if (priv->ecr)
  1752. parport_ECPPS2_supported(p);
  1753. else
  1754. parport_PS2_supported(p);
  1755. p->size = (p->modes & PARPORT_MODE_EPP) ? 8 : 3;
  1756. printk(KERN_INFO "%s: PC-style at 0x%lx", p->name, p->base);
  1757. if (p->base_hi && priv->ecr)
  1758. printk(KERN_CONT " (0x%lx)", p->base_hi);
  1759. if (p->irq == PARPORT_IRQ_AUTO) {
  1760. p->irq = PARPORT_IRQ_NONE;
  1761. parport_irq_probe(p);
  1762. } else if (p->irq == PARPORT_IRQ_PROBEONLY) {
  1763. p->irq = PARPORT_IRQ_NONE;
  1764. parport_irq_probe(p);
  1765. probedirq = p->irq;
  1766. p->irq = PARPORT_IRQ_NONE;
  1767. }
  1768. if (p->irq != PARPORT_IRQ_NONE) {
  1769. printk(KERN_CONT ", irq %d", p->irq);
  1770. priv->ctr_writable |= 0x10;
  1771. if (p->dma == PARPORT_DMA_AUTO) {
  1772. p->dma = PARPORT_DMA_NONE;
  1773. parport_dma_probe(p);
  1774. }
  1775. }
  1776. if (p->dma == PARPORT_DMA_AUTO) /* To use DMA, giving the irq
  1777. is mandatory (see above) */
  1778. p->dma = PARPORT_DMA_NONE;
  1779. #ifdef CONFIG_PARPORT_PC_FIFO
  1780. if (parport_ECP_supported(p) &&
  1781. p->dma != PARPORT_DMA_NOFIFO &&
  1782. priv->fifo_depth > 0 && p->irq != PARPORT_IRQ_NONE) {
  1783. p->modes |= PARPORT_MODE_ECP | PARPORT_MODE_COMPAT;
  1784. p->ops->compat_write_data = parport_pc_compat_write_block_pio;
  1785. #ifdef CONFIG_PARPORT_1284
  1786. p->ops->ecp_write_data = parport_pc_ecp_write_block_pio;
  1787. /* currently broken, but working on it.. (FB) */
  1788. /* p->ops->ecp_read_data = parport_pc_ecp_read_block_pio; */
  1789. #endif /* IEEE 1284 support */
  1790. if (p->dma != PARPORT_DMA_NONE) {
  1791. printk(KERN_CONT ", dma %d", p->dma);
  1792. p->modes |= PARPORT_MODE_DMA;
  1793. } else
  1794. printk(KERN_CONT ", using FIFO");
  1795. } else
  1796. /* We can't use the DMA channel after all. */
  1797. p->dma = PARPORT_DMA_NONE;
  1798. #endif /* Allowed to use FIFO/DMA */
  1799. printk(KERN_CONT " [");
  1800. #define printmode(x) \
  1801. {\
  1802. if (p->modes & PARPORT_MODE_##x) {\
  1803. printk(KERN_CONT "%s%s", f ? "," : "", #x);\
  1804. f++;\
  1805. } \
  1806. }
  1807. {
  1808. int f = 0;
  1809. printmode(PCSPP);
  1810. printmode(TRISTATE);
  1811. printmode(COMPAT)
  1812. printmode(EPP);
  1813. printmode(ECP);
  1814. printmode(DMA);
  1815. }
  1816. #undef printmode
  1817. #ifndef CONFIG_PARPORT_1284
  1818. printk(KERN_CONT "(,...)");
  1819. #endif /* CONFIG_PARPORT_1284 */
  1820. printk(KERN_CONT "]\n");
  1821. if (probedirq != PARPORT_IRQ_NONE)
  1822. printk(KERN_INFO "%s: irq %d detected\n", p->name, probedirq);
  1823. /* If No ECP release the ports grabbed above. */
  1824. if (ECR_res && (p->modes & PARPORT_MODE_ECP) == 0) {
  1825. release_region(base_hi, 3);
  1826. ECR_res = NULL;
  1827. }
  1828. /* Likewise for EEP ports */
  1829. if (EPP_res && (p->modes & PARPORT_MODE_EPP) == 0) {
  1830. release_region(base+3, 5);
  1831. EPP_res = NULL;
  1832. }
  1833. if (p->irq != PARPORT_IRQ_NONE) {
  1834. if (request_irq(p->irq, parport_irq_handler,
  1835. irqflags, p->name, p)) {
  1836. printk(KERN_WARNING "%s: irq %d in use, "
  1837. "resorting to polled operation\n",
  1838. p->name, p->irq);
  1839. p->irq = PARPORT_IRQ_NONE;
  1840. p->dma = PARPORT_DMA_NONE;
  1841. }
  1842. #ifdef CONFIG_PARPORT_PC_FIFO
  1843. #ifdef HAS_DMA
  1844. if (p->dma != PARPORT_DMA_NONE) {
  1845. if (request_dma(p->dma, p->name)) {
  1846. printk(KERN_WARNING "%s: dma %d in use, "
  1847. "resorting to PIO operation\n",
  1848. p->name, p->dma);
  1849. p->dma = PARPORT_DMA_NONE;
  1850. } else {
  1851. priv->dma_buf =
  1852. dma_alloc_coherent(dev,
  1853. PAGE_SIZE,
  1854. &priv->dma_handle,
  1855. GFP_KERNEL);
  1856. if (!priv->dma_buf) {
  1857. printk(KERN_WARNING "%s: "
  1858. "cannot get buffer for DMA, "
  1859. "resorting to PIO operation\n",
  1860. p->name);
  1861. free_dma(p->dma);
  1862. p->dma = PARPORT_DMA_NONE;
  1863. }
  1864. }
  1865. }
  1866. #endif
  1867. #endif
  1868. }
  1869. /* Done probing. Now put the port into a sensible start-up state. */
  1870. if (priv->ecr)
  1871. /*
  1872. * Put the ECP detected port in PS2 mode.
  1873. * Do this also for ports that have ECR but don't do ECP.
  1874. */
  1875. ECR_WRITE(p, 0x34);
  1876. parport_pc_write_data(p, 0);
  1877. parport_pc_data_forward(p);
  1878. /* Now that we've told the sharing engine about the port, and
  1879. found out its characteristics, let the high-level drivers
  1880. know about it. */
  1881. spin_lock(&ports_lock);
  1882. list_add(&priv->list, &ports_list);
  1883. spin_unlock(&ports_lock);
  1884. parport_announce_port(p);
  1885. return p;
  1886. out5:
  1887. if (ECR_res)
  1888. release_region(base_hi, 3);
  1889. if (EPP_res)
  1890. release_region(base+0x3, 5);
  1891. release_region(base, 3);
  1892. out4:
  1893. parport_put_port(p);
  1894. out3:
  1895. kfree(priv);
  1896. out2:
  1897. kfree(ops);
  1898. out1:
  1899. if (pdev)
  1900. platform_device_unregister(pdev);
  1901. return NULL;
  1902. }
  1903. EXPORT_SYMBOL(parport_pc_probe_port);
  1904. void parport_pc_unregister_port(struct parport *p)
  1905. {
  1906. struct parport_pc_private *priv = p->private_data;
  1907. struct parport_operations *ops = p->ops;
  1908. parport_remove_port(p);
  1909. spin_lock(&ports_lock);
  1910. list_del_init(&priv->list);
  1911. spin_unlock(&ports_lock);
  1912. #if defined(CONFIG_PARPORT_PC_FIFO) && defined(HAS_DMA)
  1913. if (p->dma != PARPORT_DMA_NONE)
  1914. free_dma(p->dma);
  1915. #endif
  1916. if (p->irq != PARPORT_IRQ_NONE)
  1917. free_irq(p->irq, p);
  1918. release_region(p->base, 3);
  1919. if (p->size > 3)
  1920. release_region(p->base + 3, p->size - 3);
  1921. if (p->modes & PARPORT_MODE_ECP)
  1922. release_region(p->base_hi, 3);
  1923. #if defined(CONFIG_PARPORT_PC_FIFO) && defined(HAS_DMA)
  1924. if (priv->dma_buf)
  1925. dma_free_coherent(p->physport->dev, PAGE_SIZE,
  1926. priv->dma_buf,
  1927. priv->dma_handle);
  1928. #endif
  1929. kfree(p->private_data);
  1930. parport_put_port(p);
  1931. kfree(ops); /* hope no-one cached it */
  1932. }
  1933. EXPORT_SYMBOL(parport_pc_unregister_port);
  1934. #ifdef CONFIG_PCI
  1935. /* ITE support maintained by Rich Liu <richliu@poorman.org> */
  1936. static int sio_ite_8872_probe(struct pci_dev *pdev, int autoirq, int autodma,
  1937. const struct parport_pc_via_data *via)
  1938. {
  1939. short inta_addr[6] = { 0x2A0, 0x2C0, 0x220, 0x240, 0x1E0 };
  1940. u32 ite8872set;
  1941. u32 ite8872_lpt, ite8872_lpthi;
  1942. u8 ite8872_irq, type;
  1943. int irq;
  1944. int i;
  1945. DPRINTK(KERN_DEBUG "sio_ite_8872_probe()\n");
  1946. /* make sure which one chip */
  1947. for (i = 0; i < 5; i++) {
  1948. if (request_region(inta_addr[i], 32, "it887x")) {
  1949. int test;
  1950. pci_write_config_dword(pdev, 0x60,
  1951. 0xe5000000 | inta_addr[i]);
  1952. pci_write_config_dword(pdev, 0x78,
  1953. 0x00000000 | inta_addr[i]);
  1954. test = inb(inta_addr[i]);
  1955. if (test != 0xff)
  1956. break;
  1957. release_region(inta_addr[i], 32);
  1958. }
  1959. }
  1960. if (i >= 5) {
  1961. printk(KERN_INFO "parport_pc: cannot find ITE8872 INTA\n");
  1962. return 0;
  1963. }
  1964. type = inb(inta_addr[i] + 0x18);
  1965. type &= 0x0f;
  1966. switch (type) {
  1967. case 0x2:
  1968. printk(KERN_INFO "parport_pc: ITE8871 found (1P)\n");
  1969. ite8872set = 0x64200000;
  1970. break;
  1971. case 0xa:
  1972. printk(KERN_INFO "parport_pc: ITE8875 found (1P)\n");
  1973. ite8872set = 0x64200000;
  1974. break;
  1975. case 0xe:
  1976. printk(KERN_INFO "parport_pc: ITE8872 found (2S1P)\n");
  1977. ite8872set = 0x64e00000;
  1978. break;
  1979. case 0x6:
  1980. printk(KERN_INFO "parport_pc: ITE8873 found (1S)\n");
  1981. release_region(inta_addr[i], 32);
  1982. return 0;
  1983. case 0x8:
  1984. printk(KERN_INFO "parport_pc: ITE8874 found (2S)\n");
  1985. release_region(inta_addr[i], 32);
  1986. return 0;
  1987. default:
  1988. printk(KERN_INFO "parport_pc: unknown ITE887x\n");
  1989. printk(KERN_INFO "parport_pc: please mail 'lspci -nvv' "
  1990. "output to Rich.Liu@ite.com.tw\n");
  1991. release_region(inta_addr[i], 32);
  1992. return 0;
  1993. }
  1994. pci_read_config_byte(pdev, 0x3c, &ite8872_irq);
  1995. pci_read_config_dword(pdev, 0x1c, &ite8872_lpt);
  1996. ite8872_lpt &= 0x0000ff00;
  1997. pci_read_config_dword(pdev, 0x20, &ite8872_lpthi);
  1998. ite8872_lpthi &= 0x0000ff00;
  1999. pci_write_config_dword(pdev, 0x6c, 0xe3000000 | ite8872_lpt);
  2000. pci_write_config_dword(pdev, 0x70, 0xe3000000 | ite8872_lpthi);
  2001. pci_write_config_dword(pdev, 0x80, (ite8872_lpthi<<16) | ite8872_lpt);
  2002. /* SET SPP&EPP , Parallel Port NO DMA , Enable All Function */
  2003. /* SET Parallel IRQ */
  2004. pci_write_config_dword(pdev, 0x9c,
  2005. ite8872set | (ite8872_irq * 0x11111));
  2006. DPRINTK(KERN_DEBUG "ITE887x: The IRQ is %d.\n", ite8872_irq);
  2007. DPRINTK(KERN_DEBUG "ITE887x: The PARALLEL I/O port is 0x%x.\n",
  2008. ite8872_lpt);
  2009. DPRINTK(KERN_DEBUG "ITE887x: The PARALLEL I/O porthi is 0x%x.\n",
  2010. ite8872_lpthi);
  2011. /* Let the user (or defaults) steer us away from interrupts */
  2012. irq = ite8872_irq;
  2013. if (autoirq != PARPORT_IRQ_AUTO)
  2014. irq = PARPORT_IRQ_NONE;
  2015. /*
  2016. * Release the resource so that parport_pc_probe_port can get it.
  2017. */
  2018. release_region(inta_addr[i], 32);
  2019. if (parport_pc_probe_port(ite8872_lpt, ite8872_lpthi,
  2020. irq, PARPORT_DMA_NONE, &pdev->dev, 0)) {
  2021. printk(KERN_INFO
  2022. "parport_pc: ITE 8872 parallel port: io=0x%X",
  2023. ite8872_lpt);
  2024. if (irq != PARPORT_IRQ_NONE)
  2025. printk(", irq=%d", irq);
  2026. printk("\n");
  2027. return 1;
  2028. }
  2029. return 0;
  2030. }
  2031. /* VIA 8231 support by Pavel Fedin <sonic_amiga@rambler.ru>
  2032. based on VIA 686a support code by Jeff Garzik <jgarzik@pobox.com> */
  2033. static int parport_init_mode;
  2034. /* Data for two known VIA chips */
  2035. static struct parport_pc_via_data via_686a_data = {
  2036. 0x51,
  2037. 0x50,
  2038. 0x85,
  2039. 0x02,
  2040. 0xE2,
  2041. 0xF0,
  2042. 0xE6
  2043. };
  2044. static struct parport_pc_via_data via_8231_data = {
  2045. 0x45,
  2046. 0x44,
  2047. 0x50,
  2048. 0x04,
  2049. 0xF2,
  2050. 0xFA,
  2051. 0xF6
  2052. };
  2053. static int sio_via_probe(struct pci_dev *pdev, int autoirq, int autodma,
  2054. const struct parport_pc_via_data *via)
  2055. {
  2056. u8 tmp, tmp2, siofunc;
  2057. u8 ppcontrol = 0;
  2058. int dma, irq;
  2059. unsigned port1, port2;
  2060. unsigned have_epp = 0;
  2061. printk(KERN_DEBUG "parport_pc: VIA 686A/8231 detected\n");
  2062. switch (parport_init_mode) {
  2063. case 1:
  2064. printk(KERN_DEBUG "parport_pc: setting SPP mode\n");
  2065. siofunc = VIA_FUNCTION_PARPORT_SPP;
  2066. break;
  2067. case 2:
  2068. printk(KERN_DEBUG "parport_pc: setting PS/2 mode\n");
  2069. siofunc = VIA_FUNCTION_PARPORT_SPP;
  2070. ppcontrol = VIA_PARPORT_BIDIR;
  2071. break;
  2072. case 3:
  2073. printk(KERN_DEBUG "parport_pc: setting EPP mode\n");
  2074. siofunc = VIA_FUNCTION_PARPORT_EPP;
  2075. ppcontrol = VIA_PARPORT_BIDIR;
  2076. have_epp = 1;
  2077. break;
  2078. case 4:
  2079. printk(KERN_DEBUG "parport_pc: setting ECP mode\n");
  2080. siofunc = VIA_FUNCTION_PARPORT_ECP;
  2081. ppcontrol = VIA_PARPORT_BIDIR;
  2082. break;
  2083. case 5:
  2084. printk(KERN_DEBUG "parport_pc: setting EPP+ECP mode\n");
  2085. siofunc = VIA_FUNCTION_PARPORT_ECP;
  2086. ppcontrol = VIA_PARPORT_BIDIR|VIA_PARPORT_ECPEPP;
  2087. have_epp = 1;
  2088. break;
  2089. default:
  2090. printk(KERN_DEBUG
  2091. "parport_pc: probing current configuration\n");
  2092. siofunc = VIA_FUNCTION_PROBE;
  2093. break;
  2094. }
  2095. /*
  2096. * unlock super i/o configuration
  2097. */
  2098. pci_read_config_byte(pdev, via->via_pci_superio_config_reg, &tmp);
  2099. tmp |= via->via_pci_superio_config_data;
  2100. pci_write_config_byte(pdev, via->via_pci_superio_config_reg, tmp);
  2101. /* Bits 1-0: Parallel Port Mode / Enable */
  2102. outb(via->viacfg_function, VIA_CONFIG_INDEX);
  2103. tmp = inb(VIA_CONFIG_DATA);
  2104. /* Bit 5: EPP+ECP enable; bit 7: PS/2 bidirectional port enable */
  2105. outb(via->viacfg_parport_control, VIA_CONFIG_INDEX);
  2106. tmp2 = inb(VIA_CONFIG_DATA);
  2107. if (siofunc == VIA_FUNCTION_PROBE) {
  2108. siofunc = tmp & VIA_FUNCTION_PARPORT_DISABLE;
  2109. ppcontrol = tmp2;
  2110. } else {
  2111. tmp &= ~VIA_FUNCTION_PARPORT_DISABLE;
  2112. tmp |= siofunc;
  2113. outb(via->viacfg_function, VIA_CONFIG_INDEX);
  2114. outb(tmp, VIA_CONFIG_DATA);
  2115. tmp2 &= ~(VIA_PARPORT_BIDIR|VIA_PARPORT_ECPEPP);
  2116. tmp2 |= ppcontrol;
  2117. outb(via->viacfg_parport_control, VIA_CONFIG_INDEX);
  2118. outb(tmp2, VIA_CONFIG_DATA);
  2119. }
  2120. /* Parallel Port I/O Base Address, bits 9-2 */
  2121. outb(via->viacfg_parport_base, VIA_CONFIG_INDEX);
  2122. port1 = inb(VIA_CONFIG_DATA) << 2;
  2123. printk(KERN_DEBUG "parport_pc: Current parallel port base: 0x%X\n",
  2124. port1);
  2125. if (port1 == 0x3BC && have_epp) {
  2126. outb(via->viacfg_parport_base, VIA_CONFIG_INDEX);
  2127. outb((0x378 >> 2), VIA_CONFIG_DATA);
  2128. printk(KERN_DEBUG
  2129. "parport_pc: Parallel port base changed to 0x378\n");
  2130. port1 = 0x378;
  2131. }
  2132. /*
  2133. * lock super i/o configuration
  2134. */
  2135. pci_read_config_byte(pdev, via->via_pci_superio_config_reg, &tmp);
  2136. tmp &= ~via->via_pci_superio_config_data;
  2137. pci_write_config_byte(pdev, via->via_pci_superio_config_reg, tmp);
  2138. if (siofunc == VIA_FUNCTION_PARPORT_DISABLE) {
  2139. printk(KERN_INFO "parport_pc: VIA parallel port disabled in BIOS\n");
  2140. return 0;
  2141. }
  2142. /* Bits 7-4: PnP Routing for Parallel Port IRQ */
  2143. pci_read_config_byte(pdev, via->via_pci_parport_irq_reg, &tmp);
  2144. irq = ((tmp & VIA_IRQCONTROL_PARALLEL) >> 4);
  2145. if (siofunc == VIA_FUNCTION_PARPORT_ECP) {
  2146. /* Bits 3-2: PnP Routing for Parallel Port DMA */
  2147. pci_read_config_byte(pdev, via->via_pci_parport_dma_reg, &tmp);
  2148. dma = ((tmp & VIA_DMACONTROL_PARALLEL) >> 2);
  2149. } else
  2150. /* if ECP not enabled, DMA is not enabled, assumed
  2151. bogus 'dma' value */
  2152. dma = PARPORT_DMA_NONE;
  2153. /* Let the user (or defaults) steer us away from interrupts and DMA */
  2154. if (autoirq == PARPORT_IRQ_NONE) {
  2155. irq = PARPORT_IRQ_NONE;
  2156. dma = PARPORT_DMA_NONE;
  2157. }
  2158. if (autodma == PARPORT_DMA_NONE)
  2159. dma = PARPORT_DMA_NONE;
  2160. switch (port1) {
  2161. case 0x3bc:
  2162. port2 = 0x7bc; break;
  2163. case 0x378:
  2164. port2 = 0x778; break;
  2165. case 0x278:
  2166. port2 = 0x678; break;
  2167. default:
  2168. printk(KERN_INFO
  2169. "parport_pc: Weird VIA parport base 0x%X, ignoring\n",
  2170. port1);
  2171. return 0;
  2172. }
  2173. /* filter bogus IRQs */
  2174. switch (irq) {
  2175. case 0:
  2176. case 2:
  2177. case 8:
  2178. case 13:
  2179. irq = PARPORT_IRQ_NONE;
  2180. break;
  2181. default: /* do nothing */
  2182. break;
  2183. }
  2184. /* finally, do the probe with values obtained */
  2185. if (parport_pc_probe_port(port1, port2, irq, dma, &pdev->dev, 0)) {
  2186. printk(KERN_INFO
  2187. "parport_pc: VIA parallel port: io=0x%X", port1);
  2188. if (irq != PARPORT_IRQ_NONE)
  2189. printk(", irq=%d", irq);
  2190. if (dma != PARPORT_DMA_NONE)
  2191. printk(", dma=%d", dma);
  2192. printk("\n");
  2193. return 1;
  2194. }
  2195. printk(KERN_WARNING "parport_pc: Strange, can't probe VIA parallel port: io=0x%X, irq=%d, dma=%d\n",
  2196. port1, irq, dma);
  2197. return 0;
  2198. }
  2199. enum parport_pc_sio_types {
  2200. sio_via_686a = 0, /* Via VT82C686A motherboard Super I/O */
  2201. sio_via_8231, /* Via VT8231 south bridge integrated Super IO */
  2202. sio_ite_8872,
  2203. last_sio
  2204. };
  2205. /* each element directly indexed from enum list, above */
  2206. static struct parport_pc_superio {
  2207. int (*probe) (struct pci_dev *pdev, int autoirq, int autodma,
  2208. const struct parport_pc_via_data *via);
  2209. const struct parport_pc_via_data *via;
  2210. } parport_pc_superio_info[] = {
  2211. { sio_via_probe, &via_686a_data, },
  2212. { sio_via_probe, &via_8231_data, },
  2213. { sio_ite_8872_probe, NULL, },
  2214. };
  2215. enum parport_pc_pci_cards {
  2216. siig_1p_10x = last_sio,
  2217. siig_2p_10x,
  2218. siig_1p_20x,
  2219. siig_2p_20x,
  2220. lava_parallel,
  2221. lava_parallel_dual_a,
  2222. lava_parallel_dual_b,
  2223. boca_ioppar,
  2224. plx_9050,
  2225. timedia_4006a,
  2226. timedia_4014,
  2227. timedia_4008a,
  2228. timedia_4018,
  2229. timedia_9018a,
  2230. syba_2p_epp,
  2231. syba_1p_ecp,
  2232. titan_010l,
  2233. titan_1284p1,
  2234. titan_1284p2,
  2235. avlab_1p,
  2236. avlab_2p,
  2237. oxsemi_952,
  2238. oxsemi_954,
  2239. oxsemi_840,
  2240. oxsemi_pcie_pport,
  2241. aks_0100,
  2242. mobility_pp,
  2243. netmos_9705,
  2244. netmos_9715,
  2245. netmos_9755,
  2246. netmos_9805,
  2247. netmos_9815,
  2248. netmos_9901,
  2249. netmos_9865,
  2250. quatech_sppxp100,
  2251. };
  2252. /* each element directly indexed from enum list, above
  2253. * (but offset by last_sio) */
  2254. static struct parport_pc_pci {
  2255. int numports;
  2256. struct { /* BAR (base address registers) numbers in the config
  2257. space header */
  2258. int lo;
  2259. int hi;
  2260. /* -1 if not there, >6 for offset-method (max BAR is 6) */
  2261. } addr[4];
  2262. /* If set, this is called immediately after pci_enable_device.
  2263. * If it returns non-zero, no probing will take place and the
  2264. * ports will not be used. */
  2265. int (*preinit_hook) (struct pci_dev *pdev, int autoirq, int autodma);
  2266. /* If set, this is called after probing for ports. If 'failed'
  2267. * is non-zero we couldn't use any of the ports. */
  2268. void (*postinit_hook) (struct pci_dev *pdev, int failed);
  2269. } cards[] = {
  2270. /* siig_1p_10x */ { 1, { { 2, 3 }, } },
  2271. /* siig_2p_10x */ { 2, { { 2, 3 }, { 4, 5 }, } },
  2272. /* siig_1p_20x */ { 1, { { 0, 1 }, } },
  2273. /* siig_2p_20x */ { 2, { { 0, 1 }, { 2, 3 }, } },
  2274. /* lava_parallel */ { 1, { { 0, -1 }, } },
  2275. /* lava_parallel_dual_a */ { 1, { { 0, -1 }, } },
  2276. /* lava_parallel_dual_b */ { 1, { { 0, -1 }, } },
  2277. /* boca_ioppar */ { 1, { { 0, -1 }, } },
  2278. /* plx_9050 */ { 2, { { 4, -1 }, { 5, -1 }, } },
  2279. /* timedia_4006a */ { 1, { { 0, -1 }, } },
  2280. /* timedia_4014 */ { 2, { { 0, -1 }, { 2, -1 }, } },
  2281. /* timedia_4008a */ { 1, { { 0, 1 }, } },
  2282. /* timedia_4018 */ { 2, { { 0, 1 }, { 2, 3 }, } },
  2283. /* timedia_9018a */ { 2, { { 0, 1 }, { 2, 3 }, } },
  2284. /* SYBA uses fixed offsets in
  2285. a 1K io window */
  2286. /* syba_2p_epp AP138B */ { 2, { { 0, 0x078 }, { 0, 0x178 }, } },
  2287. /* syba_1p_ecp W83787 */ { 1, { { 0, 0x078 }, } },
  2288. /* titan_010l */ { 1, { { 3, -1 }, } },
  2289. /* titan_1284p1 */ { 1, { { 0, 1 }, } },
  2290. /* titan_1284p2 */ { 2, { { 0, 1 }, { 2, 3 }, } },
  2291. /* avlab_1p */ { 1, { { 0, 1}, } },
  2292. /* avlab_2p */ { 2, { { 0, 1}, { 2, 3 },} },
  2293. /* The Oxford Semi cards are unusual: 954 doesn't support ECP,
  2294. * and 840 locks up if you write 1 to bit 2! */
  2295. /* oxsemi_952 */ { 1, { { 0, 1 }, } },
  2296. /* oxsemi_954 */ { 1, { { 0, -1 }, } },
  2297. /* oxsemi_840 */ { 1, { { 0, 1 }, } },
  2298. /* oxsemi_pcie_pport */ { 1, { { 0, 1 }, } },
  2299. /* aks_0100 */ { 1, { { 0, -1 }, } },
  2300. /* mobility_pp */ { 1, { { 0, 1 }, } },
  2301. /* The netmos entries below are untested */
  2302. /* netmos_9705 */ { 1, { { 0, -1 }, } },
  2303. /* netmos_9715 */ { 2, { { 0, 1 }, { 2, 3 },} },
  2304. /* netmos_9755 */ { 2, { { 0, 1 }, { 2, 3 },} },
  2305. /* netmos_9805 */ { 1, { { 0, -1 }, } },
  2306. /* netmos_9815 */ { 2, { { 0, -1 }, { 2, -1 }, } },
  2307. /* netmos_9901 */ { 1, { { 0, -1 }, } },
  2308. /* netmos_9865 */ { 1, { { 0, -1 }, } },
  2309. /* quatech_sppxp100 */ { 1, { { 0, 1 }, } },
  2310. };
  2311. static const struct pci_device_id parport_pc_pci_tbl[] = {
  2312. /* Super-IO onboard chips */
  2313. { 0x1106, 0x0686, PCI_ANY_ID, PCI_ANY_ID, 0, 0, sio_via_686a },
  2314. { 0x1106, 0x8231, PCI_ANY_ID, PCI_ANY_ID, 0, 0, sio_via_8231 },
  2315. { PCI_VENDOR_ID_ITE, PCI_DEVICE_ID_ITE_8872,
  2316. PCI_ANY_ID, PCI_ANY_ID, 0, 0, sio_ite_8872 },
  2317. /* PCI cards */
  2318. { PCI_VENDOR_ID_SIIG, PCI_DEVICE_ID_SIIG_1P_10x,
  2319. PCI_ANY_ID, PCI_ANY_ID, 0, 0, siig_1p_10x },
  2320. { PCI_VENDOR_ID_SIIG, PCI_DEVICE_ID_SIIG_2P_10x,
  2321. PCI_ANY_ID, PCI_ANY_ID, 0, 0, siig_2p_10x },
  2322. { PCI_VENDOR_ID_SIIG, PCI_DEVICE_ID_SIIG_1P_20x,
  2323. PCI_ANY_ID, PCI_ANY_ID, 0, 0, siig_1p_20x },
  2324. { PCI_VENDOR_ID_SIIG, PCI_DEVICE_ID_SIIG_2P_20x,
  2325. PCI_ANY_ID, PCI_ANY_ID, 0, 0, siig_2p_20x },
  2326. { PCI_VENDOR_ID_LAVA, PCI_DEVICE_ID_LAVA_PARALLEL,
  2327. PCI_ANY_ID, PCI_ANY_ID, 0, 0, lava_parallel },
  2328. { PCI_VENDOR_ID_LAVA, PCI_DEVICE_ID_LAVA_DUAL_PAR_A,
  2329. PCI_ANY_ID, PCI_ANY_ID, 0, 0, lava_parallel_dual_a },
  2330. { PCI_VENDOR_ID_LAVA, PCI_DEVICE_ID_LAVA_DUAL_PAR_B,
  2331. PCI_ANY_ID, PCI_ANY_ID, 0, 0, lava_parallel_dual_b },
  2332. { PCI_VENDOR_ID_LAVA, PCI_DEVICE_ID_LAVA_BOCA_IOPPAR,
  2333. PCI_ANY_ID, PCI_ANY_ID, 0, 0, boca_ioppar },
  2334. { PCI_VENDOR_ID_PLX, PCI_DEVICE_ID_PLX_9050,
  2335. PCI_SUBVENDOR_ID_EXSYS, PCI_SUBDEVICE_ID_EXSYS_4014, 0, 0, plx_9050 },
  2336. /* PCI_VENDOR_ID_TIMEDIA/SUNIX has many differing cards ...*/
  2337. { 0x1409, 0x7268, 0x1409, 0x0101, 0, 0, timedia_4006a },
  2338. { 0x1409, 0x7268, 0x1409, 0x0102, 0, 0, timedia_4014 },
  2339. { 0x1409, 0x7268, 0x1409, 0x0103, 0, 0, timedia_4008a },
  2340. { 0x1409, 0x7268, 0x1409, 0x0104, 0, 0, timedia_4018 },
  2341. { 0x1409, 0x7268, 0x1409, 0x9018, 0, 0, timedia_9018a },
  2342. { PCI_VENDOR_ID_SYBA, PCI_DEVICE_ID_SYBA_2P_EPP,
  2343. PCI_ANY_ID, PCI_ANY_ID, 0, 0, syba_2p_epp },
  2344. { PCI_VENDOR_ID_SYBA, PCI_DEVICE_ID_SYBA_1P_ECP,
  2345. PCI_ANY_ID, PCI_ANY_ID, 0, 0, syba_1p_ecp },
  2346. { PCI_VENDOR_ID_TITAN, PCI_DEVICE_ID_TITAN_010L,
  2347. PCI_ANY_ID, PCI_ANY_ID, 0, 0, titan_010l },
  2348. { 0x9710, 0x9805, 0x1000, 0x0010, 0, 0, titan_1284p1 },
  2349. { 0x9710, 0x9815, 0x1000, 0x0020, 0, 0, titan_1284p2 },
  2350. /* PCI_VENDOR_ID_AVLAB/Intek21 has another bunch of cards ...*/
  2351. /* AFAVLAB_TK9902 */
  2352. { 0x14db, 0x2120, PCI_ANY_ID, PCI_ANY_ID, 0, 0, avlab_1p},
  2353. { 0x14db, 0x2121, PCI_ANY_ID, PCI_ANY_ID, 0, 0, avlab_2p},
  2354. { PCI_VENDOR_ID_OXSEMI, PCI_DEVICE_ID_OXSEMI_16PCI952PP,
  2355. PCI_ANY_ID, PCI_ANY_ID, 0, 0, oxsemi_952 },
  2356. { PCI_VENDOR_ID_OXSEMI, PCI_DEVICE_ID_OXSEMI_16PCI954PP,
  2357. PCI_ANY_ID, PCI_ANY_ID, 0, 0, oxsemi_954 },
  2358. { PCI_VENDOR_ID_OXSEMI, PCI_DEVICE_ID_OXSEMI_12PCI840,
  2359. PCI_ANY_ID, PCI_ANY_ID, 0, 0, oxsemi_840 },
  2360. { PCI_VENDOR_ID_OXSEMI, PCI_DEVICE_ID_OXSEMI_PCIe840,
  2361. PCI_ANY_ID, PCI_ANY_ID, 0, 0, oxsemi_pcie_pport },
  2362. { PCI_VENDOR_ID_OXSEMI, PCI_DEVICE_ID_OXSEMI_PCIe840_G,
  2363. PCI_ANY_ID, PCI_ANY_ID, 0, 0, oxsemi_pcie_pport },
  2364. { PCI_VENDOR_ID_OXSEMI, PCI_DEVICE_ID_OXSEMI_PCIe952_0,
  2365. PCI_ANY_ID, PCI_ANY_ID, 0, 0, oxsemi_pcie_pport },
  2366. { PCI_VENDOR_ID_OXSEMI, PCI_DEVICE_ID_OXSEMI_PCIe952_0_G,
  2367. PCI_ANY_ID, PCI_ANY_ID, 0, 0, oxsemi_pcie_pport },
  2368. { PCI_VENDOR_ID_OXSEMI, PCI_DEVICE_ID_OXSEMI_PCIe952_1,
  2369. PCI_ANY_ID, PCI_ANY_ID, 0, 0, oxsemi_pcie_pport },
  2370. { PCI_VENDOR_ID_OXSEMI, PCI_DEVICE_ID_OXSEMI_PCIe952_1_G,
  2371. PCI_ANY_ID, PCI_ANY_ID, 0, 0, oxsemi_pcie_pport },
  2372. { PCI_VENDOR_ID_OXSEMI, PCI_DEVICE_ID_OXSEMI_PCIe952_1_U,
  2373. PCI_ANY_ID, PCI_ANY_ID, 0, 0, oxsemi_pcie_pport },
  2374. { PCI_VENDOR_ID_OXSEMI, PCI_DEVICE_ID_OXSEMI_PCIe952_1_GU,
  2375. PCI_ANY_ID, PCI_ANY_ID, 0, 0, oxsemi_pcie_pport },
  2376. { PCI_VENDOR_ID_AKS, PCI_DEVICE_ID_AKS_ALADDINCARD,
  2377. PCI_ANY_ID, PCI_ANY_ID, 0, 0, aks_0100 },
  2378. { 0x14f2, 0x0121, PCI_ANY_ID, PCI_ANY_ID, 0, 0, mobility_pp },
  2379. /* NetMos communication controllers */
  2380. { PCI_VENDOR_ID_NETMOS, PCI_DEVICE_ID_NETMOS_9705,
  2381. PCI_ANY_ID, PCI_ANY_ID, 0, 0, netmos_9705 },
  2382. { PCI_VENDOR_ID_NETMOS, PCI_DEVICE_ID_NETMOS_9715,
  2383. PCI_ANY_ID, PCI_ANY_ID, 0, 0, netmos_9715 },
  2384. { PCI_VENDOR_ID_NETMOS, PCI_DEVICE_ID_NETMOS_9755,
  2385. PCI_ANY_ID, PCI_ANY_ID, 0, 0, netmos_9755 },
  2386. { PCI_VENDOR_ID_NETMOS, PCI_DEVICE_ID_NETMOS_9805,
  2387. PCI_ANY_ID, PCI_ANY_ID, 0, 0, netmos_9805 },
  2388. { PCI_VENDOR_ID_NETMOS, PCI_DEVICE_ID_NETMOS_9815,
  2389. PCI_ANY_ID, PCI_ANY_ID, 0, 0, netmos_9815 },
  2390. { PCI_VENDOR_ID_NETMOS, PCI_DEVICE_ID_NETMOS_9901,
  2391. 0xA000, 0x2000, 0, 0, netmos_9901 },
  2392. { PCI_VENDOR_ID_NETMOS, PCI_DEVICE_ID_NETMOS_9865,
  2393. 0xA000, 0x1000, 0, 0, netmos_9865 },
  2394. { PCI_VENDOR_ID_NETMOS, PCI_DEVICE_ID_NETMOS_9865,
  2395. 0xA000, 0x2000, 0, 0, netmos_9865 },
  2396. /* Quatech SPPXP-100 Parallel port PCI ExpressCard */
  2397. { PCI_VENDOR_ID_QUATECH, PCI_DEVICE_ID_QUATECH_SPPXP_100,
  2398. PCI_ANY_ID, PCI_ANY_ID, 0, 0, quatech_sppxp100 },
  2399. { 0, } /* terminate list */
  2400. };
  2401. MODULE_DEVICE_TABLE(pci, parport_pc_pci_tbl);
  2402. struct pci_parport_data {
  2403. int num;
  2404. struct parport *ports[2];
  2405. };
  2406. static int parport_pc_pci_probe(struct pci_dev *dev,
  2407. const struct pci_device_id *id)
  2408. {
  2409. int err, count, n, i = id->driver_data;
  2410. struct pci_parport_data *data;
  2411. if (i < last_sio)
  2412. /* This is an onboard Super-IO and has already been probed */
  2413. return 0;
  2414. /* This is a PCI card */
  2415. i -= last_sio;
  2416. count = 0;
  2417. err = pci_enable_device(dev);
  2418. if (err)
  2419. return err;
  2420. data = kmalloc(sizeof(struct pci_parport_data), GFP_KERNEL);
  2421. if (!data)
  2422. return -ENOMEM;
  2423. if (cards[i].preinit_hook &&
  2424. cards[i].preinit_hook(dev, PARPORT_IRQ_NONE, PARPORT_DMA_NONE)) {
  2425. kfree(data);
  2426. return -ENODEV;
  2427. }
  2428. for (n = 0; n < cards[i].numports; n++) {
  2429. int lo = cards[i].addr[n].lo;
  2430. int hi = cards[i].addr[n].hi;
  2431. int irq;
  2432. unsigned long io_lo, io_hi;
  2433. io_lo = pci_resource_start(dev, lo);
  2434. io_hi = 0;
  2435. if ((hi >= 0) && (hi <= 6))
  2436. io_hi = pci_resource_start(dev, hi);
  2437. else if (hi > 6)
  2438. io_lo += hi; /* Reinterpret the meaning of
  2439. "hi" as an offset (see SYBA
  2440. def.) */
  2441. /* TODO: test if sharing interrupts works */
  2442. irq = dev->irq;
  2443. if (irq == IRQ_NONE) {
  2444. printk(KERN_DEBUG
  2445. "PCI parallel port detected: %04x:%04x, I/O at %#lx(%#lx)\n",
  2446. parport_pc_pci_tbl[i + last_sio].vendor,
  2447. parport_pc_pci_tbl[i + last_sio].device,
  2448. io_lo, io_hi);
  2449. irq = PARPORT_IRQ_NONE;
  2450. } else {
  2451. printk(KERN_DEBUG
  2452. "PCI parallel port detected: %04x:%04x, I/O at %#lx(%#lx), IRQ %d\n",
  2453. parport_pc_pci_tbl[i + last_sio].vendor,
  2454. parport_pc_pci_tbl[i + last_sio].device,
  2455. io_lo, io_hi, irq);
  2456. }
  2457. data->ports[count] =
  2458. parport_pc_probe_port(io_lo, io_hi, irq,
  2459. PARPORT_DMA_NONE, &dev->dev,
  2460. IRQF_SHARED);
  2461. if (data->ports[count])
  2462. count++;
  2463. }
  2464. data->num = count;
  2465. if (cards[i].postinit_hook)
  2466. cards[i].postinit_hook(dev, count == 0);
  2467. if (count) {
  2468. pci_set_drvdata(dev, data);
  2469. return 0;
  2470. }
  2471. kfree(data);
  2472. return -ENODEV;
  2473. }
  2474. static void parport_pc_pci_remove(struct pci_dev *dev)
  2475. {
  2476. struct pci_parport_data *data = pci_get_drvdata(dev);
  2477. int i;
  2478. pci_set_drvdata(dev, NULL);
  2479. if (data) {
  2480. for (i = data->num - 1; i >= 0; i--)
  2481. parport_pc_unregister_port(data->ports[i]);
  2482. kfree(data);
  2483. }
  2484. }
  2485. static struct pci_driver parport_pc_pci_driver = {
  2486. .name = "parport_pc",
  2487. .id_table = parport_pc_pci_tbl,
  2488. .probe = parport_pc_pci_probe,
  2489. .remove = parport_pc_pci_remove,
  2490. };
  2491. static int __init parport_pc_init_superio(int autoirq, int autodma)
  2492. {
  2493. const struct pci_device_id *id;
  2494. struct pci_dev *pdev = NULL;
  2495. int ret = 0;
  2496. for_each_pci_dev(pdev) {
  2497. id = pci_match_id(parport_pc_pci_tbl, pdev);
  2498. if (id == NULL || id->driver_data >= last_sio)
  2499. continue;
  2500. if (parport_pc_superio_info[id->driver_data].probe(
  2501. pdev, autoirq, autodma,
  2502. parport_pc_superio_info[id->driver_data].via)) {
  2503. ret++;
  2504. }
  2505. }
  2506. return ret; /* number of devices found */
  2507. }
  2508. #else
  2509. static struct pci_driver parport_pc_pci_driver;
  2510. static int __init parport_pc_init_superio(int autoirq, int autodma)
  2511. {
  2512. return 0;
  2513. }
  2514. #endif /* CONFIG_PCI */
  2515. #ifdef CONFIG_PNP
  2516. static const struct pnp_device_id parport_pc_pnp_tbl[] = {
  2517. /* Standard LPT Printer Port */
  2518. {.id = "PNP0400", .driver_data = 0},
  2519. /* ECP Printer Port */
  2520. {.id = "PNP0401", .driver_data = 0},
  2521. { }
  2522. };
  2523. MODULE_DEVICE_TABLE(pnp, parport_pc_pnp_tbl);
  2524. static int parport_pc_pnp_probe(struct pnp_dev *dev,
  2525. const struct pnp_device_id *id)
  2526. {
  2527. struct parport *pdata;
  2528. unsigned long io_lo, io_hi;
  2529. int dma, irq;
  2530. if (pnp_port_valid(dev, 0) &&
  2531. !(pnp_port_flags(dev, 0) & IORESOURCE_DISABLED)) {
  2532. io_lo = pnp_port_start(dev, 0);
  2533. } else
  2534. return -EINVAL;
  2535. if (pnp_port_valid(dev, 1) &&
  2536. !(pnp_port_flags(dev, 1) & IORESOURCE_DISABLED)) {
  2537. io_hi = pnp_port_start(dev, 1);
  2538. } else
  2539. io_hi = 0;
  2540. if (pnp_irq_valid(dev, 0) &&
  2541. !(pnp_irq_flags(dev, 0) & IORESOURCE_DISABLED)) {
  2542. irq = pnp_irq(dev, 0);
  2543. } else
  2544. irq = PARPORT_IRQ_NONE;
  2545. if (pnp_dma_valid(dev, 0) &&
  2546. !(pnp_dma_flags(dev, 0) & IORESOURCE_DISABLED)) {
  2547. dma = pnp_dma(dev, 0);
  2548. } else
  2549. dma = PARPORT_DMA_NONE;
  2550. dev_info(&dev->dev, "reported by %s\n", dev->protocol->name);
  2551. pdata = parport_pc_probe_port(io_lo, io_hi, irq, dma, &dev->dev, 0);
  2552. if (pdata == NULL)
  2553. return -ENODEV;
  2554. pnp_set_drvdata(dev, pdata);
  2555. return 0;
  2556. }
  2557. static void parport_pc_pnp_remove(struct pnp_dev *dev)
  2558. {
  2559. struct parport *pdata = (struct parport *)pnp_get_drvdata(dev);
  2560. if (!pdata)
  2561. return;
  2562. parport_pc_unregister_port(pdata);
  2563. }
  2564. /* we only need the pnp layer to activate the device, at least for now */
  2565. static struct pnp_driver parport_pc_pnp_driver = {
  2566. .name = "parport_pc",
  2567. .id_table = parport_pc_pnp_tbl,
  2568. .probe = parport_pc_pnp_probe,
  2569. .remove = parport_pc_pnp_remove,
  2570. };
  2571. #else
  2572. static struct pnp_driver parport_pc_pnp_driver;
  2573. #endif /* CONFIG_PNP */
  2574. static int parport_pc_platform_probe(struct platform_device *pdev)
  2575. {
  2576. /* Always succeed, the actual probing is done in
  2577. * parport_pc_probe_port(). */
  2578. return 0;
  2579. }
  2580. static struct platform_driver parport_pc_platform_driver = {
  2581. .driver = {
  2582. .owner = THIS_MODULE,
  2583. .name = "parport_pc",
  2584. },
  2585. .probe = parport_pc_platform_probe,
  2586. };
  2587. /* This is called by parport_pc_find_nonpci_ports (in asm/parport.h) */
  2588. static int __attribute__((unused))
  2589. parport_pc_find_isa_ports(int autoirq, int autodma)
  2590. {
  2591. int count = 0;
  2592. if (parport_pc_probe_port(0x3bc, 0x7bc, autoirq, autodma, NULL, 0))
  2593. count++;
  2594. if (parport_pc_probe_port(0x378, 0x778, autoirq, autodma, NULL, 0))
  2595. count++;
  2596. if (parport_pc_probe_port(0x278, 0x678, autoirq, autodma, NULL, 0))
  2597. count++;
  2598. return count;
  2599. }
  2600. /* This function is called by parport_pc_init if the user didn't
  2601. * specify any ports to probe. Its job is to find some ports. Order
  2602. * is important here -- we want ISA ports to be registered first,
  2603. * followed by PCI cards (for least surprise), but before that we want
  2604. * to do chipset-specific tests for some onboard ports that we know
  2605. * about.
  2606. *
  2607. * autoirq is PARPORT_IRQ_NONE, PARPORT_IRQ_AUTO, or PARPORT_IRQ_PROBEONLY
  2608. * autodma is PARPORT_DMA_NONE or PARPORT_DMA_AUTO
  2609. */
  2610. static void __init parport_pc_find_ports(int autoirq, int autodma)
  2611. {
  2612. int count = 0, err;
  2613. #ifdef CONFIG_PARPORT_PC_SUPERIO
  2614. detect_and_report_it87();
  2615. detect_and_report_winbond();
  2616. detect_and_report_smsc();
  2617. #endif
  2618. /* Onboard SuperIO chipsets that show themselves on the PCI bus. */
  2619. count += parport_pc_init_superio(autoirq, autodma);
  2620. /* PnP ports, skip detection if SuperIO already found them */
  2621. if (!count) {
  2622. err = pnp_register_driver(&parport_pc_pnp_driver);
  2623. if (!err)
  2624. pnp_registered_parport = 1;
  2625. }
  2626. /* ISA ports and whatever (see asm/parport.h). */
  2627. parport_pc_find_nonpci_ports(autoirq, autodma);
  2628. err = pci_register_driver(&parport_pc_pci_driver);
  2629. if (!err)
  2630. pci_registered_parport = 1;
  2631. }
  2632. /*
  2633. * Piles of crap below pretend to be a parser for module and kernel
  2634. * parameters. Say "thank you" to whoever had come up with that
  2635. * syntax and keep in mind that code below is a cleaned up version.
  2636. */
  2637. static int __initdata io[PARPORT_PC_MAX_PORTS+1] = {
  2638. [0 ... PARPORT_PC_MAX_PORTS] = 0
  2639. };
  2640. static int __initdata io_hi[PARPORT_PC_MAX_PORTS+1] = {
  2641. [0 ... PARPORT_PC_MAX_PORTS] = PARPORT_IOHI_AUTO
  2642. };
  2643. static int __initdata dmaval[PARPORT_PC_MAX_PORTS] = {
  2644. [0 ... PARPORT_PC_MAX_PORTS-1] = PARPORT_DMA_NONE
  2645. };
  2646. static int __initdata irqval[PARPORT_PC_MAX_PORTS] = {
  2647. [0 ... PARPORT_PC_MAX_PORTS-1] = PARPORT_IRQ_PROBEONLY
  2648. };
  2649. static int __init parport_parse_param(const char *s, int *val,
  2650. int automatic, int none, int nofifo)
  2651. {
  2652. if (!s)
  2653. return 0;
  2654. if (!strncmp(s, "auto", 4))
  2655. *val = automatic;
  2656. else if (!strncmp(s, "none", 4))
  2657. *val = none;
  2658. else if (nofifo && !strncmp(s, "nofifo", 6))
  2659. *val = nofifo;
  2660. else {
  2661. char *ep;
  2662. unsigned long r = simple_strtoul(s, &ep, 0);
  2663. if (ep != s)
  2664. *val = r;
  2665. else {
  2666. printk(KERN_ERR "parport: bad specifier `%s'\n", s);
  2667. return -1;
  2668. }
  2669. }
  2670. return 0;
  2671. }
  2672. static int __init parport_parse_irq(const char *irqstr, int *val)
  2673. {
  2674. return parport_parse_param(irqstr, val, PARPORT_IRQ_AUTO,
  2675. PARPORT_IRQ_NONE, 0);
  2676. }
  2677. static int __init parport_parse_dma(const char *dmastr, int *val)
  2678. {
  2679. return parport_parse_param(dmastr, val, PARPORT_DMA_AUTO,
  2680. PARPORT_DMA_NONE, PARPORT_DMA_NOFIFO);
  2681. }
  2682. #ifdef CONFIG_PCI
  2683. static int __init parport_init_mode_setup(char *str)
  2684. {
  2685. printk(KERN_DEBUG
  2686. "parport_pc.c: Specified parameter parport_init_mode=%s\n", str);
  2687. if (!strcmp(str, "spp"))
  2688. parport_init_mode = 1;
  2689. if (!strcmp(str, "ps2"))
  2690. parport_init_mode = 2;
  2691. if (!strcmp(str, "epp"))
  2692. parport_init_mode = 3;
  2693. if (!strcmp(str, "ecp"))
  2694. parport_init_mode = 4;
  2695. if (!strcmp(str, "ecpepp"))
  2696. parport_init_mode = 5;
  2697. return 1;
  2698. }
  2699. #endif
  2700. #ifdef MODULE
  2701. static char *irq[PARPORT_PC_MAX_PORTS];
  2702. static char *dma[PARPORT_PC_MAX_PORTS];
  2703. MODULE_PARM_DESC(io, "Base I/O address (SPP regs)");
  2704. module_param_array(io, int, NULL, 0);
  2705. MODULE_PARM_DESC(io_hi, "Base I/O address (ECR)");
  2706. module_param_array(io_hi, int, NULL, 0);
  2707. MODULE_PARM_DESC(irq, "IRQ line");
  2708. module_param_array(irq, charp, NULL, 0);
  2709. MODULE_PARM_DESC(dma, "DMA channel");
  2710. module_param_array(dma, charp, NULL, 0);
  2711. #if defined(CONFIG_PARPORT_PC_SUPERIO) || \
  2712. (defined(CONFIG_PARPORT_1284) && defined(CONFIG_PARPORT_PC_FIFO))
  2713. MODULE_PARM_DESC(verbose_probing, "Log chit-chat during initialisation");
  2714. module_param(verbose_probing, int, 0644);
  2715. #endif
  2716. #ifdef CONFIG_PCI
  2717. static char *init_mode;
  2718. MODULE_PARM_DESC(init_mode,
  2719. "Initialise mode for VIA VT8231 port (spp, ps2, epp, ecp or ecpepp)");
  2720. module_param(init_mode, charp, 0);
  2721. #endif
  2722. static int __init parse_parport_params(void)
  2723. {
  2724. unsigned int i;
  2725. int val;
  2726. #ifdef CONFIG_PCI
  2727. if (init_mode)
  2728. parport_init_mode_setup(init_mode);
  2729. #endif
  2730. for (i = 0; i < PARPORT_PC_MAX_PORTS && io[i]; i++) {
  2731. if (parport_parse_irq(irq[i], &val))
  2732. return 1;
  2733. irqval[i] = val;
  2734. if (parport_parse_dma(dma[i], &val))
  2735. return 1;
  2736. dmaval[i] = val;
  2737. }
  2738. if (!io[0]) {
  2739. /* The user can make us use any IRQs or DMAs we find. */
  2740. if (irq[0] && !parport_parse_irq(irq[0], &val))
  2741. switch (val) {
  2742. case PARPORT_IRQ_NONE:
  2743. case PARPORT_IRQ_AUTO:
  2744. irqval[0] = val;
  2745. break;
  2746. default:
  2747. printk(KERN_WARNING
  2748. "parport_pc: irq specified "
  2749. "without base address. Use 'io=' "
  2750. "to specify one\n");
  2751. }
  2752. if (dma[0] && !parport_parse_dma(dma[0], &val))
  2753. switch (val) {
  2754. case PARPORT_DMA_NONE:
  2755. case PARPORT_DMA_AUTO:
  2756. dmaval[0] = val;
  2757. break;
  2758. default:
  2759. printk(KERN_WARNING
  2760. "parport_pc: dma specified "
  2761. "without base address. Use 'io=' "
  2762. "to specify one\n");
  2763. }
  2764. }
  2765. return 0;
  2766. }
  2767. #else
  2768. static int parport_setup_ptr __initdata;
  2769. /*
  2770. * Acceptable parameters:
  2771. *
  2772. * parport=0
  2773. * parport=auto
  2774. * parport=0xBASE[,IRQ[,DMA]]
  2775. *
  2776. * IRQ/DMA may be numeric or 'auto' or 'none'
  2777. */
  2778. static int __init parport_setup(char *str)
  2779. {
  2780. char *endptr;
  2781. char *sep;
  2782. int val;
  2783. if (!str || !*str || (*str == '0' && !*(str+1))) {
  2784. /* Disable parport if "parport=0" in cmdline */
  2785. io[0] = PARPORT_DISABLE;
  2786. return 1;
  2787. }
  2788. if (!strncmp(str, "auto", 4)) {
  2789. irqval[0] = PARPORT_IRQ_AUTO;
  2790. dmaval[0] = PARPORT_DMA_AUTO;
  2791. return 1;
  2792. }
  2793. val = simple_strtoul(str, &endptr, 0);
  2794. if (endptr == str) {
  2795. printk(KERN_WARNING "parport=%s not understood\n", str);
  2796. return 1;
  2797. }
  2798. if (parport_setup_ptr == PARPORT_PC_MAX_PORTS) {
  2799. printk(KERN_ERR "parport=%s ignored, too many ports\n", str);
  2800. return 1;
  2801. }
  2802. io[parport_setup_ptr] = val;
  2803. irqval[parport_setup_ptr] = PARPORT_IRQ_NONE;
  2804. dmaval[parport_setup_ptr] = PARPORT_DMA_NONE;
  2805. sep = strchr(str, ',');
  2806. if (sep++) {
  2807. if (parport_parse_irq(sep, &val))
  2808. return 1;
  2809. irqval[parport_setup_ptr] = val;
  2810. sep = strchr(sep, ',');
  2811. if (sep++) {
  2812. if (parport_parse_dma(sep, &val))
  2813. return 1;
  2814. dmaval[parport_setup_ptr] = val;
  2815. }
  2816. }
  2817. parport_setup_ptr++;
  2818. return 1;
  2819. }
  2820. static int __init parse_parport_params(void)
  2821. {
  2822. return io[0] == PARPORT_DISABLE;
  2823. }
  2824. __setup("parport=", parport_setup);
  2825. /*
  2826. * Acceptable parameters:
  2827. *
  2828. * parport_init_mode=[spp|ps2|epp|ecp|ecpepp]
  2829. */
  2830. #ifdef CONFIG_PCI
  2831. __setup("parport_init_mode=", parport_init_mode_setup);
  2832. #endif
  2833. #endif
  2834. /* "Parser" ends here */
  2835. static int __init parport_pc_init(void)
  2836. {
  2837. int err;
  2838. if (parse_parport_params())
  2839. return -EINVAL;
  2840. err = platform_driver_register(&parport_pc_platform_driver);
  2841. if (err)
  2842. return err;
  2843. if (io[0]) {
  2844. int i;
  2845. /* Only probe the ports we were given. */
  2846. user_specified = 1;
  2847. for (i = 0; i < PARPORT_PC_MAX_PORTS; i++) {
  2848. if (!io[i])
  2849. break;
  2850. if (io_hi[i] == PARPORT_IOHI_AUTO)
  2851. io_hi[i] = 0x400 + io[i];
  2852. parport_pc_probe_port(io[i], io_hi[i],
  2853. irqval[i], dmaval[i], NULL, 0);
  2854. }
  2855. } else
  2856. parport_pc_find_ports(irqval[0], dmaval[0]);
  2857. return 0;
  2858. }
  2859. static void __exit parport_pc_exit(void)
  2860. {
  2861. if (pci_registered_parport)
  2862. pci_unregister_driver(&parport_pc_pci_driver);
  2863. if (pnp_registered_parport)
  2864. pnp_unregister_driver(&parport_pc_pnp_driver);
  2865. platform_driver_unregister(&parport_pc_platform_driver);
  2866. while (!list_empty(&ports_list)) {
  2867. struct parport_pc_private *priv;
  2868. struct parport *port;
  2869. priv = list_entry(ports_list.next,
  2870. struct parport_pc_private, list);
  2871. port = priv->port;
  2872. if (port->dev && port->dev->bus == &platform_bus_type)
  2873. platform_device_unregister(
  2874. to_platform_device(port->dev));
  2875. parport_pc_unregister_port(port);
  2876. }
  2877. }
  2878. MODULE_AUTHOR("Phil Blundell, Tim Waugh, others");
  2879. MODULE_DESCRIPTION("PC-style parallel port driver");
  2880. MODULE_LICENSE("GPL");
  2881. module_init(parport_pc_init)
  2882. module_exit(parport_pc_exit)