ali-ircc.c 56 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268
  1. /*********************************************************************
  2. *
  3. * Filename: ali-ircc.h
  4. * Version: 0.5
  5. * Description: Driver for the ALI M1535D and M1543C FIR Controller
  6. * Status: Experimental.
  7. * Author: Benjamin Kong <benjamin_kong@ali.com.tw>
  8. * Created at: 2000/10/16 03:46PM
  9. * Modified at: 2001/1/3 02:55PM
  10. * Modified by: Benjamin Kong <benjamin_kong@ali.com.tw>
  11. * Modified at: 2003/11/6 and support for ALi south-bridge chipsets M1563
  12. * Modified by: Clear Zhang <clear_zhang@ali.com.tw>
  13. *
  14. * Copyright (c) 2000 Benjamin Kong <benjamin_kong@ali.com.tw>
  15. * All Rights Reserved
  16. *
  17. * This program is free software; you can redistribute it and/or
  18. * modify it under the terms of the GNU General Public License as
  19. * published by the Free Software Foundation; either version 2 of
  20. * the License, or (at your option) any later version.
  21. *
  22. ********************************************************************/
  23. #include <linux/module.h>
  24. #include <linux/kernel.h>
  25. #include <linux/types.h>
  26. #include <linux/skbuff.h>
  27. #include <linux/netdevice.h>
  28. #include <linux/ioport.h>
  29. #include <linux/delay.h>
  30. #include <linux/slab.h>
  31. #include <linux/init.h>
  32. #include <linux/rtnetlink.h>
  33. #include <linux/serial_reg.h>
  34. #include <linux/dma-mapping.h>
  35. #include <linux/platform_device.h>
  36. #include <asm/io.h>
  37. #include <asm/dma.h>
  38. #include <asm/byteorder.h>
  39. #include <net/irda/wrapper.h>
  40. #include <net/irda/irda.h>
  41. #include <net/irda/irda_device.h>
  42. #include "ali-ircc.h"
  43. #define CHIP_IO_EXTENT 8
  44. #define BROKEN_DONGLE_ID
  45. #define ALI_IRCC_DRIVER_NAME "ali-ircc"
  46. /* Power Management */
  47. static int ali_ircc_suspend(struct platform_device *dev, pm_message_t state);
  48. static int ali_ircc_resume(struct platform_device *dev);
  49. static struct platform_driver ali_ircc_driver = {
  50. .suspend = ali_ircc_suspend,
  51. .resume = ali_ircc_resume,
  52. .driver = {
  53. .name = ALI_IRCC_DRIVER_NAME,
  54. .owner = THIS_MODULE,
  55. },
  56. };
  57. /* Module parameters */
  58. static int qos_mtt_bits = 0x07; /* 1 ms or more */
  59. /* Use BIOS settions by default, but user may supply module parameters */
  60. static unsigned int io[] = { ~0, ~0, ~0, ~0 };
  61. static unsigned int irq[] = { 0, 0, 0, 0 };
  62. static unsigned int dma[] = { 0, 0, 0, 0 };
  63. static int ali_ircc_probe_53(ali_chip_t *chip, chipio_t *info);
  64. static int ali_ircc_init_43(ali_chip_t *chip, chipio_t *info);
  65. static int ali_ircc_init_53(ali_chip_t *chip, chipio_t *info);
  66. /* These are the currently known ALi sourth-bridge chipsets, the only one difference
  67. * is that M1543C doesn't support HP HDSL-3600
  68. */
  69. static ali_chip_t chips[] =
  70. {
  71. { "M1543", { 0x3f0, 0x370 }, 0x51, 0x23, 0x20, 0x43, ali_ircc_probe_53, ali_ircc_init_43 },
  72. { "M1535", { 0x3f0, 0x370 }, 0x51, 0x23, 0x20, 0x53, ali_ircc_probe_53, ali_ircc_init_53 },
  73. { "M1563", { 0x3f0, 0x370 }, 0x51, 0x23, 0x20, 0x63, ali_ircc_probe_53, ali_ircc_init_53 },
  74. { NULL }
  75. };
  76. /* Max 4 instances for now */
  77. static struct ali_ircc_cb *dev_self[] = { NULL, NULL, NULL, NULL };
  78. /* Dongle Types */
  79. static char *dongle_types[] = {
  80. "TFDS6000",
  81. "HP HSDL-3600",
  82. "HP HSDL-1100",
  83. "No dongle connected",
  84. };
  85. /* Some prototypes */
  86. static int ali_ircc_open(int i, chipio_t *info);
  87. static int ali_ircc_close(struct ali_ircc_cb *self);
  88. static int ali_ircc_setup(chipio_t *info);
  89. static int ali_ircc_is_receiving(struct ali_ircc_cb *self);
  90. static int ali_ircc_net_open(struct net_device *dev);
  91. static int ali_ircc_net_close(struct net_device *dev);
  92. static int ali_ircc_net_ioctl(struct net_device *dev, struct ifreq *rq, int cmd);
  93. static void ali_ircc_change_speed(struct ali_ircc_cb *self, __u32 baud);
  94. /* SIR function */
  95. static int ali_ircc_sir_hard_xmit(struct sk_buff *skb, struct net_device *dev);
  96. static irqreturn_t ali_ircc_sir_interrupt(struct ali_ircc_cb *self);
  97. static void ali_ircc_sir_receive(struct ali_ircc_cb *self);
  98. static void ali_ircc_sir_write_wakeup(struct ali_ircc_cb *self);
  99. static int ali_ircc_sir_write(int iobase, int fifo_size, __u8 *buf, int len);
  100. static void ali_ircc_sir_change_speed(struct ali_ircc_cb *priv, __u32 speed);
  101. /* FIR function */
  102. static int ali_ircc_fir_hard_xmit(struct sk_buff *skb, struct net_device *dev);
  103. static void ali_ircc_fir_change_speed(struct ali_ircc_cb *priv, __u32 speed);
  104. static irqreturn_t ali_ircc_fir_interrupt(struct ali_ircc_cb *self);
  105. static int ali_ircc_dma_receive(struct ali_ircc_cb *self);
  106. static int ali_ircc_dma_receive_complete(struct ali_ircc_cb *self);
  107. static int ali_ircc_dma_xmit_complete(struct ali_ircc_cb *self);
  108. static void ali_ircc_dma_xmit(struct ali_ircc_cb *self);
  109. /* My Function */
  110. static int ali_ircc_read_dongle_id (int i, chipio_t *info);
  111. static void ali_ircc_change_dongle_speed(struct ali_ircc_cb *priv, int speed);
  112. /* ALi chip function */
  113. static void SIR2FIR(int iobase);
  114. static void FIR2SIR(int iobase);
  115. static void SetCOMInterrupts(struct ali_ircc_cb *self , unsigned char enable);
  116. /*
  117. * Function ali_ircc_init ()
  118. *
  119. * Initialize chip. Find out whay kinds of chips we are dealing with
  120. * and their configuation registers address
  121. */
  122. static int __init ali_ircc_init(void)
  123. {
  124. ali_chip_t *chip;
  125. chipio_t info;
  126. int ret;
  127. int cfg, cfg_base;
  128. int reg, revision;
  129. int i = 0;
  130. IRDA_DEBUG(2, "%s(), ---------------- Start ----------------\n", __func__);
  131. ret = platform_driver_register(&ali_ircc_driver);
  132. if (ret) {
  133. IRDA_ERROR("%s, Can't register driver!\n",
  134. ALI_IRCC_DRIVER_NAME);
  135. return ret;
  136. }
  137. ret = -ENODEV;
  138. /* Probe for all the ALi chipsets we know about */
  139. for (chip= chips; chip->name; chip++, i++)
  140. {
  141. IRDA_DEBUG(2, "%s(), Probing for %s ...\n", __func__, chip->name);
  142. /* Try all config registers for this chip */
  143. for (cfg=0; cfg<2; cfg++)
  144. {
  145. cfg_base = chip->cfg[cfg];
  146. if (!cfg_base)
  147. continue;
  148. memset(&info, 0, sizeof(chipio_t));
  149. info.cfg_base = cfg_base;
  150. info.fir_base = io[i];
  151. info.dma = dma[i];
  152. info.irq = irq[i];
  153. /* Enter Configuration */
  154. outb(chip->entr1, cfg_base);
  155. outb(chip->entr2, cfg_base);
  156. /* Select Logical Device 5 Registers (UART2) */
  157. outb(0x07, cfg_base);
  158. outb(0x05, cfg_base+1);
  159. /* Read Chip Identification Register */
  160. outb(chip->cid_index, cfg_base);
  161. reg = inb(cfg_base+1);
  162. if (reg == chip->cid_value)
  163. {
  164. IRDA_DEBUG(2, "%s(), Chip found at 0x%03x\n", __func__, cfg_base);
  165. outb(0x1F, cfg_base);
  166. revision = inb(cfg_base+1);
  167. IRDA_DEBUG(2, "%s(), Found %s chip, revision=%d\n", __func__,
  168. chip->name, revision);
  169. /*
  170. * If the user supplies the base address, then
  171. * we init the chip, if not we probe the values
  172. * set by the BIOS
  173. */
  174. if (io[i] < 2000)
  175. {
  176. chip->init(chip, &info);
  177. }
  178. else
  179. {
  180. chip->probe(chip, &info);
  181. }
  182. if (ali_ircc_open(i, &info) == 0)
  183. ret = 0;
  184. i++;
  185. }
  186. else
  187. {
  188. IRDA_DEBUG(2, "%s(), No %s chip at 0x%03x\n", __func__, chip->name, cfg_base);
  189. }
  190. /* Exit configuration */
  191. outb(0xbb, cfg_base);
  192. }
  193. }
  194. IRDA_DEBUG(2, "%s(), ----------------- End -----------------\n", __func__);
  195. if (ret)
  196. platform_driver_unregister(&ali_ircc_driver);
  197. return ret;
  198. }
  199. /*
  200. * Function ali_ircc_cleanup ()
  201. *
  202. * Close all configured chips
  203. *
  204. */
  205. static void __exit ali_ircc_cleanup(void)
  206. {
  207. int i;
  208. IRDA_DEBUG(2, "%s(), ---------------- Start ----------------\n", __func__);
  209. for (i=0; i < ARRAY_SIZE(dev_self); i++) {
  210. if (dev_self[i])
  211. ali_ircc_close(dev_self[i]);
  212. }
  213. platform_driver_unregister(&ali_ircc_driver);
  214. IRDA_DEBUG(2, "%s(), ----------------- End -----------------\n", __func__);
  215. }
  216. static const struct net_device_ops ali_ircc_sir_ops = {
  217. .ndo_open = ali_ircc_net_open,
  218. .ndo_stop = ali_ircc_net_close,
  219. .ndo_start_xmit = ali_ircc_sir_hard_xmit,
  220. .ndo_do_ioctl = ali_ircc_net_ioctl,
  221. };
  222. static const struct net_device_ops ali_ircc_fir_ops = {
  223. .ndo_open = ali_ircc_net_open,
  224. .ndo_stop = ali_ircc_net_close,
  225. .ndo_start_xmit = ali_ircc_fir_hard_xmit,
  226. .ndo_do_ioctl = ali_ircc_net_ioctl,
  227. };
  228. /*
  229. * Function ali_ircc_open (int i, chipio_t *inf)
  230. *
  231. * Open driver instance
  232. *
  233. */
  234. static int ali_ircc_open(int i, chipio_t *info)
  235. {
  236. struct net_device *dev;
  237. struct ali_ircc_cb *self;
  238. int dongle_id;
  239. int err;
  240. IRDA_DEBUG(2, "%s(), ---------------- Start ----------------\n", __func__);
  241. if (i >= ARRAY_SIZE(dev_self)) {
  242. IRDA_ERROR("%s(), maximum number of supported chips reached!\n",
  243. __func__);
  244. return -ENOMEM;
  245. }
  246. /* Set FIR FIFO and DMA Threshold */
  247. if ((ali_ircc_setup(info)) == -1)
  248. return -1;
  249. dev = alloc_irdadev(sizeof(*self));
  250. if (dev == NULL) {
  251. IRDA_ERROR("%s(), can't allocate memory for control block!\n",
  252. __func__);
  253. return -ENOMEM;
  254. }
  255. self = netdev_priv(dev);
  256. self->netdev = dev;
  257. spin_lock_init(&self->lock);
  258. /* Need to store self somewhere */
  259. dev_self[i] = self;
  260. self->index = i;
  261. /* Initialize IO */
  262. self->io.cfg_base = info->cfg_base; /* In ali_ircc_probe_53 assign */
  263. self->io.fir_base = info->fir_base; /* info->sir_base = info->fir_base */
  264. self->io.sir_base = info->sir_base; /* ALi SIR and FIR use the same address */
  265. self->io.irq = info->irq;
  266. self->io.fir_ext = CHIP_IO_EXTENT;
  267. self->io.dma = info->dma;
  268. self->io.fifo_size = 16; /* SIR: 16, FIR: 32 Benjamin 2000/11/1 */
  269. /* Reserve the ioports that we need */
  270. if (!request_region(self->io.fir_base, self->io.fir_ext,
  271. ALI_IRCC_DRIVER_NAME)) {
  272. IRDA_WARNING("%s(), can't get iobase of 0x%03x\n", __func__,
  273. self->io.fir_base);
  274. err = -ENODEV;
  275. goto err_out1;
  276. }
  277. /* Initialize QoS for this device */
  278. irda_init_max_qos_capabilies(&self->qos);
  279. /* The only value we must override it the baudrate */
  280. self->qos.baud_rate.bits = IR_9600|IR_19200|IR_38400|IR_57600|
  281. IR_115200|IR_576000|IR_1152000|(IR_4000000 << 8); // benjamin 2000/11/8 05:27PM
  282. self->qos.min_turn_time.bits = qos_mtt_bits;
  283. irda_qos_bits_to_value(&self->qos);
  284. /* Max DMA buffer size needed = (data_size + 6) * (window_size) + 6; */
  285. self->rx_buff.truesize = 14384;
  286. self->tx_buff.truesize = 14384;
  287. /* Allocate memory if needed */
  288. self->rx_buff.head =
  289. dma_alloc_coherent(NULL, self->rx_buff.truesize,
  290. &self->rx_buff_dma, GFP_KERNEL);
  291. if (self->rx_buff.head == NULL) {
  292. err = -ENOMEM;
  293. goto err_out2;
  294. }
  295. memset(self->rx_buff.head, 0, self->rx_buff.truesize);
  296. self->tx_buff.head =
  297. dma_alloc_coherent(NULL, self->tx_buff.truesize,
  298. &self->tx_buff_dma, GFP_KERNEL);
  299. if (self->tx_buff.head == NULL) {
  300. err = -ENOMEM;
  301. goto err_out3;
  302. }
  303. memset(self->tx_buff.head, 0, self->tx_buff.truesize);
  304. self->rx_buff.in_frame = FALSE;
  305. self->rx_buff.state = OUTSIDE_FRAME;
  306. self->tx_buff.data = self->tx_buff.head;
  307. self->rx_buff.data = self->rx_buff.head;
  308. /* Reset Tx queue info */
  309. self->tx_fifo.len = self->tx_fifo.ptr = self->tx_fifo.free = 0;
  310. self->tx_fifo.tail = self->tx_buff.head;
  311. /* Override the network functions we need to use */
  312. dev->netdev_ops = &ali_ircc_sir_ops;
  313. err = register_netdev(dev);
  314. if (err) {
  315. IRDA_ERROR("%s(), register_netdev() failed!\n", __func__);
  316. goto err_out4;
  317. }
  318. IRDA_MESSAGE("IrDA: Registered device %s\n", dev->name);
  319. /* Check dongle id */
  320. dongle_id = ali_ircc_read_dongle_id(i, info);
  321. IRDA_MESSAGE("%s(), %s, Found dongle: %s\n", __func__,
  322. ALI_IRCC_DRIVER_NAME, dongle_types[dongle_id]);
  323. self->io.dongle_id = dongle_id;
  324. IRDA_DEBUG(2, "%s(), ----------------- End -----------------\n", __func__);
  325. return 0;
  326. err_out4:
  327. dma_free_coherent(NULL, self->tx_buff.truesize,
  328. self->tx_buff.head, self->tx_buff_dma);
  329. err_out3:
  330. dma_free_coherent(NULL, self->rx_buff.truesize,
  331. self->rx_buff.head, self->rx_buff_dma);
  332. err_out2:
  333. release_region(self->io.fir_base, self->io.fir_ext);
  334. err_out1:
  335. dev_self[i] = NULL;
  336. free_netdev(dev);
  337. return err;
  338. }
  339. /*
  340. * Function ali_ircc_close (self)
  341. *
  342. * Close driver instance
  343. *
  344. */
  345. static int __exit ali_ircc_close(struct ali_ircc_cb *self)
  346. {
  347. int iobase;
  348. IRDA_DEBUG(4, "%s(), ---------------- Start ----------------\n", __func__);
  349. IRDA_ASSERT(self != NULL, return -1;);
  350. iobase = self->io.fir_base;
  351. /* Remove netdevice */
  352. unregister_netdev(self->netdev);
  353. /* Release the PORT that this driver is using */
  354. IRDA_DEBUG(4, "%s(), Releasing Region %03x\n", __func__, self->io.fir_base);
  355. release_region(self->io.fir_base, self->io.fir_ext);
  356. if (self->tx_buff.head)
  357. dma_free_coherent(NULL, self->tx_buff.truesize,
  358. self->tx_buff.head, self->tx_buff_dma);
  359. if (self->rx_buff.head)
  360. dma_free_coherent(NULL, self->rx_buff.truesize,
  361. self->rx_buff.head, self->rx_buff_dma);
  362. dev_self[self->index] = NULL;
  363. free_netdev(self->netdev);
  364. IRDA_DEBUG(2, "%s(), ----------------- End -----------------\n", __func__);
  365. return 0;
  366. }
  367. /*
  368. * Function ali_ircc_init_43 (chip, info)
  369. *
  370. * Initialize the ALi M1543 chip.
  371. */
  372. static int ali_ircc_init_43(ali_chip_t *chip, chipio_t *info)
  373. {
  374. /* All controller information like I/O address, DMA channel, IRQ
  375. * are set by BIOS
  376. */
  377. return 0;
  378. }
  379. /*
  380. * Function ali_ircc_init_53 (chip, info)
  381. *
  382. * Initialize the ALi M1535 chip.
  383. */
  384. static int ali_ircc_init_53(ali_chip_t *chip, chipio_t *info)
  385. {
  386. /* All controller information like I/O address, DMA channel, IRQ
  387. * are set by BIOS
  388. */
  389. return 0;
  390. }
  391. /*
  392. * Function ali_ircc_probe_53 (chip, info)
  393. *
  394. * Probes for the ALi M1535D or M1535
  395. */
  396. static int ali_ircc_probe_53(ali_chip_t *chip, chipio_t *info)
  397. {
  398. int cfg_base = info->cfg_base;
  399. int hi, low, reg;
  400. IRDA_DEBUG(2, "%s(), ---------------- Start ----------------\n", __func__);
  401. /* Enter Configuration */
  402. outb(chip->entr1, cfg_base);
  403. outb(chip->entr2, cfg_base);
  404. /* Select Logical Device 5 Registers (UART2) */
  405. outb(0x07, cfg_base);
  406. outb(0x05, cfg_base+1);
  407. /* Read address control register */
  408. outb(0x60, cfg_base);
  409. hi = inb(cfg_base+1);
  410. outb(0x61, cfg_base);
  411. low = inb(cfg_base+1);
  412. info->fir_base = (hi<<8) + low;
  413. info->sir_base = info->fir_base;
  414. IRDA_DEBUG(2, "%s(), probing fir_base=0x%03x\n", __func__, info->fir_base);
  415. /* Read IRQ control register */
  416. outb(0x70, cfg_base);
  417. reg = inb(cfg_base+1);
  418. info->irq = reg & 0x0f;
  419. IRDA_DEBUG(2, "%s(), probing irq=%d\n", __func__, info->irq);
  420. /* Read DMA channel */
  421. outb(0x74, cfg_base);
  422. reg = inb(cfg_base+1);
  423. info->dma = reg & 0x07;
  424. if(info->dma == 0x04)
  425. IRDA_WARNING("%s(), No DMA channel assigned !\n", __func__);
  426. else
  427. IRDA_DEBUG(2, "%s(), probing dma=%d\n", __func__, info->dma);
  428. /* Read Enabled Status */
  429. outb(0x30, cfg_base);
  430. reg = inb(cfg_base+1);
  431. info->enabled = (reg & 0x80) && (reg & 0x01);
  432. IRDA_DEBUG(2, "%s(), probing enabled=%d\n", __func__, info->enabled);
  433. /* Read Power Status */
  434. outb(0x22, cfg_base);
  435. reg = inb(cfg_base+1);
  436. info->suspended = (reg & 0x20);
  437. IRDA_DEBUG(2, "%s(), probing suspended=%d\n", __func__, info->suspended);
  438. /* Exit configuration */
  439. outb(0xbb, cfg_base);
  440. IRDA_DEBUG(2, "%s(), ----------------- End -----------------\n", __func__);
  441. return 0;
  442. }
  443. /*
  444. * Function ali_ircc_setup (info)
  445. *
  446. * Set FIR FIFO and DMA Threshold
  447. * Returns non-negative on success.
  448. *
  449. */
  450. static int ali_ircc_setup(chipio_t *info)
  451. {
  452. unsigned char tmp;
  453. int version;
  454. int iobase = info->fir_base;
  455. IRDA_DEBUG(2, "%s(), ---------------- Start ----------------\n", __func__);
  456. /* Locking comments :
  457. * Most operations here need to be protected. We are called before
  458. * the device instance is created in ali_ircc_open(), therefore
  459. * nobody can bother us - Jean II */
  460. /* Switch to FIR space */
  461. SIR2FIR(iobase);
  462. /* Master Reset */
  463. outb(0x40, iobase+FIR_MCR); // benjamin 2000/11/30 11:45AM
  464. /* Read FIR ID Version Register */
  465. switch_bank(iobase, BANK3);
  466. version = inb(iobase+FIR_ID_VR);
  467. /* Should be 0x00 in the M1535/M1535D */
  468. if(version != 0x00)
  469. {
  470. IRDA_ERROR("%s, Wrong chip version %02x\n",
  471. ALI_IRCC_DRIVER_NAME, version);
  472. return -1;
  473. }
  474. /* Set FIR FIFO Threshold Register */
  475. switch_bank(iobase, BANK1);
  476. outb(RX_FIFO_Threshold, iobase+FIR_FIFO_TR);
  477. /* Set FIR DMA Threshold Register */
  478. outb(RX_DMA_Threshold, iobase+FIR_DMA_TR);
  479. /* CRC enable */
  480. switch_bank(iobase, BANK2);
  481. outb(inb(iobase+FIR_IRDA_CR) | IRDA_CR_CRC, iobase+FIR_IRDA_CR);
  482. /* NDIS driver set TX Length here BANK2 Alias 3, Alias4*/
  483. /* Switch to Bank 0 */
  484. switch_bank(iobase, BANK0);
  485. tmp = inb(iobase+FIR_LCR_B);
  486. tmp &=~0x20; // disable SIP
  487. tmp |= 0x80; // these two steps make RX mode
  488. tmp &= 0xbf;
  489. outb(tmp, iobase+FIR_LCR_B);
  490. /* Disable Interrupt */
  491. outb(0x00, iobase+FIR_IER);
  492. /* Switch to SIR space */
  493. FIR2SIR(iobase);
  494. IRDA_MESSAGE("%s, driver loaded (Benjamin Kong)\n",
  495. ALI_IRCC_DRIVER_NAME);
  496. /* Enable receive interrupts */
  497. // outb(UART_IER_RDI, iobase+UART_IER); //benjamin 2000/11/23 01:25PM
  498. // Turn on the interrupts in ali_ircc_net_open
  499. IRDA_DEBUG(2, "%s(), ----------------- End ------------------\n", __func__);
  500. return 0;
  501. }
  502. /*
  503. * Function ali_ircc_read_dongle_id (int index, info)
  504. *
  505. * Try to read dongle indentification. This procedure needs to be executed
  506. * once after power-on/reset. It also needs to be used whenever you suspect
  507. * that the user may have plugged/unplugged the IrDA Dongle.
  508. */
  509. static int ali_ircc_read_dongle_id (int i, chipio_t *info)
  510. {
  511. int dongle_id, reg;
  512. int cfg_base = info->cfg_base;
  513. IRDA_DEBUG(2, "%s(), ---------------- Start ----------------\n", __func__);
  514. /* Enter Configuration */
  515. outb(chips[i].entr1, cfg_base);
  516. outb(chips[i].entr2, cfg_base);
  517. /* Select Logical Device 5 Registers (UART2) */
  518. outb(0x07, cfg_base);
  519. outb(0x05, cfg_base+1);
  520. /* Read Dongle ID */
  521. outb(0xf0, cfg_base);
  522. reg = inb(cfg_base+1);
  523. dongle_id = ((reg>>6)&0x02) | ((reg>>5)&0x01);
  524. IRDA_DEBUG(2, "%s(), probing dongle_id=%d, dongle_types=%s\n", __func__,
  525. dongle_id, dongle_types[dongle_id]);
  526. /* Exit configuration */
  527. outb(0xbb, cfg_base);
  528. IRDA_DEBUG(2, "%s(), ----------------- End ------------------\n", __func__);
  529. return dongle_id;
  530. }
  531. /*
  532. * Function ali_ircc_interrupt (irq, dev_id, regs)
  533. *
  534. * An interrupt from the chip has arrived. Time to do some work
  535. *
  536. */
  537. static irqreturn_t ali_ircc_interrupt(int irq, void *dev_id)
  538. {
  539. struct net_device *dev = dev_id;
  540. struct ali_ircc_cb *self;
  541. int ret;
  542. IRDA_DEBUG(2, "%s(), ---------------- Start ----------------\n", __func__);
  543. self = netdev_priv(dev);
  544. spin_lock(&self->lock);
  545. /* Dispatch interrupt handler for the current speed */
  546. if (self->io.speed > 115200)
  547. ret = ali_ircc_fir_interrupt(self);
  548. else
  549. ret = ali_ircc_sir_interrupt(self);
  550. spin_unlock(&self->lock);
  551. IRDA_DEBUG(2, "%s(), ----------------- End ------------------\n", __func__);
  552. return ret;
  553. }
  554. /*
  555. * Function ali_ircc_fir_interrupt(irq, struct ali_ircc_cb *self)
  556. *
  557. * Handle MIR/FIR interrupt
  558. *
  559. */
  560. static irqreturn_t ali_ircc_fir_interrupt(struct ali_ircc_cb *self)
  561. {
  562. __u8 eir, OldMessageCount;
  563. int iobase, tmp;
  564. IRDA_DEBUG(1, "%s(), ---------------- Start ----------------\n", __func__);
  565. iobase = self->io.fir_base;
  566. switch_bank(iobase, BANK0);
  567. self->InterruptID = inb(iobase+FIR_IIR);
  568. self->BusStatus = inb(iobase+FIR_BSR);
  569. OldMessageCount = (self->LineStatus + 1) & 0x07;
  570. self->LineStatus = inb(iobase+FIR_LSR);
  571. //self->ier = inb(iobase+FIR_IER); 2000/12/1 04:32PM
  572. eir = self->InterruptID & self->ier; /* Mask out the interesting ones */
  573. IRDA_DEBUG(1, "%s(), self->InterruptID = %x\n", __func__,self->InterruptID);
  574. IRDA_DEBUG(1, "%s(), self->LineStatus = %x\n", __func__,self->LineStatus);
  575. IRDA_DEBUG(1, "%s(), self->ier = %x\n", __func__,self->ier);
  576. IRDA_DEBUG(1, "%s(), eir = %x\n", __func__,eir);
  577. /* Disable interrupts */
  578. SetCOMInterrupts(self, FALSE);
  579. /* Tx or Rx Interrupt */
  580. if (eir & IIR_EOM)
  581. {
  582. if (self->io.direction == IO_XMIT) /* TX */
  583. {
  584. IRDA_DEBUG(1, "%s(), ******* IIR_EOM (Tx) *******\n", __func__);
  585. if(ali_ircc_dma_xmit_complete(self))
  586. {
  587. if (irda_device_txqueue_empty(self->netdev))
  588. {
  589. /* Prepare for receive */
  590. ali_ircc_dma_receive(self);
  591. self->ier = IER_EOM;
  592. }
  593. }
  594. else
  595. {
  596. self->ier = IER_EOM;
  597. }
  598. }
  599. else /* RX */
  600. {
  601. IRDA_DEBUG(1, "%s(), ******* IIR_EOM (Rx) *******\n", __func__);
  602. if(OldMessageCount > ((self->LineStatus+1) & 0x07))
  603. {
  604. self->rcvFramesOverflow = TRUE;
  605. IRDA_DEBUG(1, "%s(), ******* self->rcvFramesOverflow = TRUE ******** \n", __func__);
  606. }
  607. if (ali_ircc_dma_receive_complete(self))
  608. {
  609. IRDA_DEBUG(1, "%s(), ******* receive complete ******** \n", __func__);
  610. self->ier = IER_EOM;
  611. }
  612. else
  613. {
  614. IRDA_DEBUG(1, "%s(), ******* Not receive complete ******** \n", __func__);
  615. self->ier = IER_EOM | IER_TIMER;
  616. }
  617. }
  618. }
  619. /* Timer Interrupt */
  620. else if (eir & IIR_TIMER)
  621. {
  622. if(OldMessageCount > ((self->LineStatus+1) & 0x07))
  623. {
  624. self->rcvFramesOverflow = TRUE;
  625. IRDA_DEBUG(1, "%s(), ******* self->rcvFramesOverflow = TRUE ******* \n", __func__);
  626. }
  627. /* Disable Timer */
  628. switch_bank(iobase, BANK1);
  629. tmp = inb(iobase+FIR_CR);
  630. outb( tmp& ~CR_TIMER_EN, iobase+FIR_CR);
  631. /* Check if this is a Tx timer interrupt */
  632. if (self->io.direction == IO_XMIT)
  633. {
  634. ali_ircc_dma_xmit(self);
  635. /* Interrupt on EOM */
  636. self->ier = IER_EOM;
  637. }
  638. else /* Rx */
  639. {
  640. if(ali_ircc_dma_receive_complete(self))
  641. {
  642. self->ier = IER_EOM;
  643. }
  644. else
  645. {
  646. self->ier = IER_EOM | IER_TIMER;
  647. }
  648. }
  649. }
  650. /* Restore Interrupt */
  651. SetCOMInterrupts(self, TRUE);
  652. IRDA_DEBUG(1, "%s(), ----------------- End ---------------\n", __func__);
  653. return IRQ_RETVAL(eir);
  654. }
  655. /*
  656. * Function ali_ircc_sir_interrupt (irq, self, eir)
  657. *
  658. * Handle SIR interrupt
  659. *
  660. */
  661. static irqreturn_t ali_ircc_sir_interrupt(struct ali_ircc_cb *self)
  662. {
  663. int iobase;
  664. int iir, lsr;
  665. IRDA_DEBUG(2, "%s(), ---------------- Start ----------------\n", __func__);
  666. iobase = self->io.sir_base;
  667. iir = inb(iobase+UART_IIR) & UART_IIR_ID;
  668. if (iir) {
  669. /* Clear interrupt */
  670. lsr = inb(iobase+UART_LSR);
  671. IRDA_DEBUG(4, "%s(), iir=%02x, lsr=%02x, iobase=%#x\n", __func__,
  672. iir, lsr, iobase);
  673. switch (iir)
  674. {
  675. case UART_IIR_RLSI:
  676. IRDA_DEBUG(2, "%s(), RLSI\n", __func__);
  677. break;
  678. case UART_IIR_RDI:
  679. /* Receive interrupt */
  680. ali_ircc_sir_receive(self);
  681. break;
  682. case UART_IIR_THRI:
  683. if (lsr & UART_LSR_THRE)
  684. {
  685. /* Transmitter ready for data */
  686. ali_ircc_sir_write_wakeup(self);
  687. }
  688. break;
  689. default:
  690. IRDA_DEBUG(0, "%s(), unhandled IIR=%#x\n", __func__, iir);
  691. break;
  692. }
  693. }
  694. IRDA_DEBUG(2, "%s(), ----------------- End ------------------\n", __func__);
  695. return IRQ_RETVAL(iir);
  696. }
  697. /*
  698. * Function ali_ircc_sir_receive (self)
  699. *
  700. * Receive one frame from the infrared port
  701. *
  702. */
  703. static void ali_ircc_sir_receive(struct ali_ircc_cb *self)
  704. {
  705. int boguscount = 0;
  706. int iobase;
  707. IRDA_DEBUG(2, "%s(), ---------------- Start ----------------\n", __func__);
  708. IRDA_ASSERT(self != NULL, return;);
  709. iobase = self->io.sir_base;
  710. /*
  711. * Receive all characters in Rx FIFO, unwrap and unstuff them.
  712. * async_unwrap_char will deliver all found frames
  713. */
  714. do {
  715. async_unwrap_char(self->netdev, &self->netdev->stats, &self->rx_buff,
  716. inb(iobase+UART_RX));
  717. /* Make sure we don't stay here too long */
  718. if (boguscount++ > 32) {
  719. IRDA_DEBUG(2,"%s(), breaking!\n", __func__);
  720. break;
  721. }
  722. } while (inb(iobase+UART_LSR) & UART_LSR_DR);
  723. IRDA_DEBUG(2, "%s(), ----------------- End ------------------\n", __func__ );
  724. }
  725. /*
  726. * Function ali_ircc_sir_write_wakeup (tty)
  727. *
  728. * Called by the driver when there's room for more data. If we have
  729. * more packets to send, we send them here.
  730. *
  731. */
  732. static void ali_ircc_sir_write_wakeup(struct ali_ircc_cb *self)
  733. {
  734. int actual = 0;
  735. int iobase;
  736. IRDA_ASSERT(self != NULL, return;);
  737. IRDA_DEBUG(2, "%s(), ---------------- Start ----------------\n", __func__ );
  738. iobase = self->io.sir_base;
  739. /* Finished with frame? */
  740. if (self->tx_buff.len > 0)
  741. {
  742. /* Write data left in transmit buffer */
  743. actual = ali_ircc_sir_write(iobase, self->io.fifo_size,
  744. self->tx_buff.data, self->tx_buff.len);
  745. self->tx_buff.data += actual;
  746. self->tx_buff.len -= actual;
  747. }
  748. else
  749. {
  750. if (self->new_speed)
  751. {
  752. /* We must wait until all data are gone */
  753. while(!(inb(iobase+UART_LSR) & UART_LSR_TEMT))
  754. IRDA_DEBUG(1, "%s(), UART_LSR_THRE\n", __func__ );
  755. IRDA_DEBUG(1, "%s(), Changing speed! self->new_speed = %d\n", __func__ , self->new_speed);
  756. ali_ircc_change_speed(self, self->new_speed);
  757. self->new_speed = 0;
  758. // benjamin 2000/11/10 06:32PM
  759. if (self->io.speed > 115200)
  760. {
  761. IRDA_DEBUG(2, "%s(), ali_ircc_change_speed from UART_LSR_TEMT \n", __func__ );
  762. self->ier = IER_EOM;
  763. // SetCOMInterrupts(self, TRUE);
  764. return;
  765. }
  766. }
  767. else
  768. {
  769. netif_wake_queue(self->netdev);
  770. }
  771. self->netdev->stats.tx_packets++;
  772. /* Turn on receive interrupts */
  773. outb(UART_IER_RDI, iobase+UART_IER);
  774. }
  775. IRDA_DEBUG(2, "%s(), ----------------- End ------------------\n", __func__ );
  776. }
  777. static void ali_ircc_change_speed(struct ali_ircc_cb *self, __u32 baud)
  778. {
  779. struct net_device *dev = self->netdev;
  780. int iobase;
  781. IRDA_DEBUG(1, "%s(), ---------------- Start ----------------\n", __func__ );
  782. IRDA_DEBUG(2, "%s(), setting speed = %d \n", __func__ , baud);
  783. /* This function *must* be called with irq off and spin-lock.
  784. * - Jean II */
  785. iobase = self->io.fir_base;
  786. SetCOMInterrupts(self, FALSE); // 2000/11/24 11:43AM
  787. /* Go to MIR, FIR Speed */
  788. if (baud > 115200)
  789. {
  790. ali_ircc_fir_change_speed(self, baud);
  791. /* Install FIR xmit handler*/
  792. dev->netdev_ops = &ali_ircc_fir_ops;
  793. /* Enable Interuupt */
  794. self->ier = IER_EOM; // benjamin 2000/11/20 07:24PM
  795. /* Be ready for incomming frames */
  796. ali_ircc_dma_receive(self); // benajmin 2000/11/8 07:46PM not complete
  797. }
  798. /* Go to SIR Speed */
  799. else
  800. {
  801. ali_ircc_sir_change_speed(self, baud);
  802. /* Install SIR xmit handler*/
  803. dev->netdev_ops = &ali_ircc_sir_ops;
  804. }
  805. SetCOMInterrupts(self, TRUE); // 2000/11/24 11:43AM
  806. netif_wake_queue(self->netdev);
  807. IRDA_DEBUG(2, "%s(), ----------------- End ------------------\n", __func__ );
  808. }
  809. static void ali_ircc_fir_change_speed(struct ali_ircc_cb *priv, __u32 baud)
  810. {
  811. int iobase;
  812. struct ali_ircc_cb *self = (struct ali_ircc_cb *) priv;
  813. struct net_device *dev;
  814. IRDA_DEBUG(1, "%s(), ---------------- Start ----------------\n", __func__ );
  815. IRDA_ASSERT(self != NULL, return;);
  816. dev = self->netdev;
  817. iobase = self->io.fir_base;
  818. IRDA_DEBUG(1, "%s(), self->io.speed = %d, change to speed = %d\n", __func__ ,self->io.speed,baud);
  819. /* Come from SIR speed */
  820. if(self->io.speed <=115200)
  821. {
  822. SIR2FIR(iobase);
  823. }
  824. /* Update accounting for new speed */
  825. self->io.speed = baud;
  826. // Set Dongle Speed mode
  827. ali_ircc_change_dongle_speed(self, baud);
  828. IRDA_DEBUG(1, "%s(), ----------------- End ------------------\n", __func__ );
  829. }
  830. /*
  831. * Function ali_sir_change_speed (self, speed)
  832. *
  833. * Set speed of IrDA port to specified baudrate
  834. *
  835. */
  836. static void ali_ircc_sir_change_speed(struct ali_ircc_cb *priv, __u32 speed)
  837. {
  838. struct ali_ircc_cb *self = (struct ali_ircc_cb *) priv;
  839. unsigned long flags;
  840. int iobase;
  841. int fcr; /* FIFO control reg */
  842. int lcr; /* Line control reg */
  843. int divisor;
  844. IRDA_DEBUG(1, "%s(), ---------------- Start ----------------\n", __func__ );
  845. IRDA_DEBUG(1, "%s(), Setting speed to: %d\n", __func__ , speed);
  846. IRDA_ASSERT(self != NULL, return;);
  847. iobase = self->io.sir_base;
  848. /* Come from MIR or FIR speed */
  849. if(self->io.speed >115200)
  850. {
  851. // Set Dongle Speed mode first
  852. ali_ircc_change_dongle_speed(self, speed);
  853. FIR2SIR(iobase);
  854. }
  855. // Clear Line and Auxiluary status registers 2000/11/24 11:47AM
  856. inb(iobase+UART_LSR);
  857. inb(iobase+UART_SCR);
  858. /* Update accounting for new speed */
  859. self->io.speed = speed;
  860. spin_lock_irqsave(&self->lock, flags);
  861. divisor = 115200/speed;
  862. fcr = UART_FCR_ENABLE_FIFO;
  863. /*
  864. * Use trigger level 1 to avoid 3 ms. timeout delay at 9600 bps, and
  865. * almost 1,7 ms at 19200 bps. At speeds above that we can just forget
  866. * about this timeout since it will always be fast enough.
  867. */
  868. if (self->io.speed < 38400)
  869. fcr |= UART_FCR_TRIGGER_1;
  870. else
  871. fcr |= UART_FCR_TRIGGER_14;
  872. /* IrDA ports use 8N1 */
  873. lcr = UART_LCR_WLEN8;
  874. outb(UART_LCR_DLAB | lcr, iobase+UART_LCR); /* Set DLAB */
  875. outb(divisor & 0xff, iobase+UART_DLL); /* Set speed */
  876. outb(divisor >> 8, iobase+UART_DLM);
  877. outb(lcr, iobase+UART_LCR); /* Set 8N1 */
  878. outb(fcr, iobase+UART_FCR); /* Enable FIFO's */
  879. /* without this, the conection will be broken after come back from FIR speed,
  880. but with this, the SIR connection is harder to established */
  881. outb((UART_MCR_DTR | UART_MCR_RTS | UART_MCR_OUT2), iobase+UART_MCR);
  882. spin_unlock_irqrestore(&self->lock, flags);
  883. IRDA_DEBUG(1, "%s(), ----------------- End ------------------\n", __func__ );
  884. }
  885. static void ali_ircc_change_dongle_speed(struct ali_ircc_cb *priv, int speed)
  886. {
  887. struct ali_ircc_cb *self = (struct ali_ircc_cb *) priv;
  888. int iobase,dongle_id;
  889. int tmp = 0;
  890. IRDA_DEBUG(1, "%s(), ---------------- Start ----------------\n", __func__ );
  891. iobase = self->io.fir_base; /* or iobase = self->io.sir_base; */
  892. dongle_id = self->io.dongle_id;
  893. /* We are already locked, no need to do it again */
  894. IRDA_DEBUG(1, "%s(), Set Speed for %s , Speed = %d\n", __func__ , dongle_types[dongle_id], speed);
  895. switch_bank(iobase, BANK2);
  896. tmp = inb(iobase+FIR_IRDA_CR);
  897. /* IBM type dongle */
  898. if(dongle_id == 0)
  899. {
  900. if(speed == 4000000)
  901. {
  902. // __ __
  903. // SD/MODE __| |__ __
  904. // __ __
  905. // IRTX __ __| |__
  906. // T1 T2 T3 T4 T5
  907. tmp &= ~IRDA_CR_HDLC; // HDLC=0
  908. tmp |= IRDA_CR_CRC; // CRC=1
  909. switch_bank(iobase, BANK2);
  910. outb(tmp, iobase+FIR_IRDA_CR);
  911. // T1 -> SD/MODE:0 IRTX:0
  912. tmp &= ~0x09;
  913. tmp |= 0x02;
  914. outb(tmp, iobase+FIR_IRDA_CR);
  915. udelay(2);
  916. // T2 -> SD/MODE:1 IRTX:0
  917. tmp &= ~0x01;
  918. tmp |= 0x0a;
  919. outb(tmp, iobase+FIR_IRDA_CR);
  920. udelay(2);
  921. // T3 -> SD/MODE:1 IRTX:1
  922. tmp |= 0x0b;
  923. outb(tmp, iobase+FIR_IRDA_CR);
  924. udelay(2);
  925. // T4 -> SD/MODE:0 IRTX:1
  926. tmp &= ~0x08;
  927. tmp |= 0x03;
  928. outb(tmp, iobase+FIR_IRDA_CR);
  929. udelay(2);
  930. // T5 -> SD/MODE:0 IRTX:0
  931. tmp &= ~0x09;
  932. tmp |= 0x02;
  933. outb(tmp, iobase+FIR_IRDA_CR);
  934. udelay(2);
  935. // reset -> Normal TX output Signal
  936. outb(tmp & ~0x02, iobase+FIR_IRDA_CR);
  937. }
  938. else /* speed <=1152000 */
  939. {
  940. // __
  941. // SD/MODE __| |__
  942. //
  943. // IRTX ________
  944. // T1 T2 T3
  945. /* MIR 115200, 57600 */
  946. if (speed==1152000)
  947. {
  948. tmp |= 0xA0; //HDLC=1, 1.152Mbps=1
  949. }
  950. else
  951. {
  952. tmp &=~0x80; //HDLC 0.576Mbps
  953. tmp |= 0x20; //HDLC=1,
  954. }
  955. tmp |= IRDA_CR_CRC; // CRC=1
  956. switch_bank(iobase, BANK2);
  957. outb(tmp, iobase+FIR_IRDA_CR);
  958. /* MIR 115200, 57600 */
  959. //switch_bank(iobase, BANK2);
  960. // T1 -> SD/MODE:0 IRTX:0
  961. tmp &= ~0x09;
  962. tmp |= 0x02;
  963. outb(tmp, iobase+FIR_IRDA_CR);
  964. udelay(2);
  965. // T2 -> SD/MODE:1 IRTX:0
  966. tmp &= ~0x01;
  967. tmp |= 0x0a;
  968. outb(tmp, iobase+FIR_IRDA_CR);
  969. // T3 -> SD/MODE:0 IRTX:0
  970. tmp &= ~0x09;
  971. tmp |= 0x02;
  972. outb(tmp, iobase+FIR_IRDA_CR);
  973. udelay(2);
  974. // reset -> Normal TX output Signal
  975. outb(tmp & ~0x02, iobase+FIR_IRDA_CR);
  976. }
  977. }
  978. else if (dongle_id == 1) /* HP HDSL-3600 */
  979. {
  980. switch(speed)
  981. {
  982. case 4000000:
  983. tmp &= ~IRDA_CR_HDLC; // HDLC=0
  984. break;
  985. case 1152000:
  986. tmp |= 0xA0; // HDLC=1, 1.152Mbps=1
  987. break;
  988. case 576000:
  989. tmp &=~0x80; // HDLC 0.576Mbps
  990. tmp |= 0x20; // HDLC=1,
  991. break;
  992. }
  993. tmp |= IRDA_CR_CRC; // CRC=1
  994. switch_bank(iobase, BANK2);
  995. outb(tmp, iobase+FIR_IRDA_CR);
  996. }
  997. else /* HP HDSL-1100 */
  998. {
  999. if(speed <= 115200) /* SIR */
  1000. {
  1001. tmp &= ~IRDA_CR_FIR_SIN; // HP sin select = 0
  1002. switch_bank(iobase, BANK2);
  1003. outb(tmp, iobase+FIR_IRDA_CR);
  1004. }
  1005. else /* MIR FIR */
  1006. {
  1007. switch(speed)
  1008. {
  1009. case 4000000:
  1010. tmp &= ~IRDA_CR_HDLC; // HDLC=0
  1011. break;
  1012. case 1152000:
  1013. tmp |= 0xA0; // HDLC=1, 1.152Mbps=1
  1014. break;
  1015. case 576000:
  1016. tmp &=~0x80; // HDLC 0.576Mbps
  1017. tmp |= 0x20; // HDLC=1,
  1018. break;
  1019. }
  1020. tmp |= IRDA_CR_CRC; // CRC=1
  1021. tmp |= IRDA_CR_FIR_SIN; // HP sin select = 1
  1022. switch_bank(iobase, BANK2);
  1023. outb(tmp, iobase+FIR_IRDA_CR);
  1024. }
  1025. }
  1026. switch_bank(iobase, BANK0);
  1027. IRDA_DEBUG(1, "%s(), ----------------- End ------------------\n", __func__ );
  1028. }
  1029. /*
  1030. * Function ali_ircc_sir_write (driver)
  1031. *
  1032. * Fill Tx FIFO with transmit data
  1033. *
  1034. */
  1035. static int ali_ircc_sir_write(int iobase, int fifo_size, __u8 *buf, int len)
  1036. {
  1037. int actual = 0;
  1038. IRDA_DEBUG(2, "%s(), ---------------- Start ----------------\n", __func__ );
  1039. /* Tx FIFO should be empty! */
  1040. if (!(inb(iobase+UART_LSR) & UART_LSR_THRE)) {
  1041. IRDA_DEBUG(0, "%s(), failed, fifo not empty!\n", __func__ );
  1042. return 0;
  1043. }
  1044. /* Fill FIFO with current frame */
  1045. while ((fifo_size-- > 0) && (actual < len)) {
  1046. /* Transmit next byte */
  1047. outb(buf[actual], iobase+UART_TX);
  1048. actual++;
  1049. }
  1050. IRDA_DEBUG(2, "%s(), ----------------- End ------------------\n", __func__ );
  1051. return actual;
  1052. }
  1053. /*
  1054. * Function ali_ircc_net_open (dev)
  1055. *
  1056. * Start the device
  1057. *
  1058. */
  1059. static int ali_ircc_net_open(struct net_device *dev)
  1060. {
  1061. struct ali_ircc_cb *self;
  1062. int iobase;
  1063. char hwname[32];
  1064. IRDA_DEBUG(2, "%s(), ---------------- Start ----------------\n", __func__ );
  1065. IRDA_ASSERT(dev != NULL, return -1;);
  1066. self = netdev_priv(dev);
  1067. IRDA_ASSERT(self != NULL, return 0;);
  1068. iobase = self->io.fir_base;
  1069. /* Request IRQ and install Interrupt Handler */
  1070. if (request_irq(self->io.irq, ali_ircc_interrupt, 0, dev->name, dev))
  1071. {
  1072. IRDA_WARNING("%s, unable to allocate irq=%d\n",
  1073. ALI_IRCC_DRIVER_NAME,
  1074. self->io.irq);
  1075. return -EAGAIN;
  1076. }
  1077. /*
  1078. * Always allocate the DMA channel after the IRQ, and clean up on
  1079. * failure.
  1080. */
  1081. if (request_dma(self->io.dma, dev->name)) {
  1082. IRDA_WARNING("%s, unable to allocate dma=%d\n",
  1083. ALI_IRCC_DRIVER_NAME,
  1084. self->io.dma);
  1085. free_irq(self->io.irq, self);
  1086. return -EAGAIN;
  1087. }
  1088. /* Turn on interrups */
  1089. outb(UART_IER_RDI , iobase+UART_IER);
  1090. /* Ready to play! */
  1091. netif_start_queue(dev); //benjamin by irport
  1092. /* Give self a hardware name */
  1093. sprintf(hwname, "ALI-FIR @ 0x%03x", self->io.fir_base);
  1094. /*
  1095. * Open new IrLAP layer instance, now that everything should be
  1096. * initialized properly
  1097. */
  1098. self->irlap = irlap_open(dev, &self->qos, hwname);
  1099. IRDA_DEBUG(2, "%s(), ----------------- End ------------------\n", __func__ );
  1100. return 0;
  1101. }
  1102. /*
  1103. * Function ali_ircc_net_close (dev)
  1104. *
  1105. * Stop the device
  1106. *
  1107. */
  1108. static int ali_ircc_net_close(struct net_device *dev)
  1109. {
  1110. struct ali_ircc_cb *self;
  1111. //int iobase;
  1112. IRDA_DEBUG(4, "%s(), ---------------- Start ----------------\n", __func__ );
  1113. IRDA_ASSERT(dev != NULL, return -1;);
  1114. self = netdev_priv(dev);
  1115. IRDA_ASSERT(self != NULL, return 0;);
  1116. /* Stop device */
  1117. netif_stop_queue(dev);
  1118. /* Stop and remove instance of IrLAP */
  1119. if (self->irlap)
  1120. irlap_close(self->irlap);
  1121. self->irlap = NULL;
  1122. disable_dma(self->io.dma);
  1123. /* Disable interrupts */
  1124. SetCOMInterrupts(self, FALSE);
  1125. free_irq(self->io.irq, dev);
  1126. free_dma(self->io.dma);
  1127. IRDA_DEBUG(2, "%s(), ----------------- End ------------------\n", __func__ );
  1128. return 0;
  1129. }
  1130. /*
  1131. * Function ali_ircc_fir_hard_xmit (skb, dev)
  1132. *
  1133. * Transmit the frame
  1134. *
  1135. */
  1136. static int ali_ircc_fir_hard_xmit(struct sk_buff *skb, struct net_device *dev)
  1137. {
  1138. struct ali_ircc_cb *self;
  1139. unsigned long flags;
  1140. int iobase;
  1141. __u32 speed;
  1142. int mtt, diff;
  1143. IRDA_DEBUG(1, "%s(), ---------------- Start -----------------\n", __func__ );
  1144. self = netdev_priv(dev);
  1145. iobase = self->io.fir_base;
  1146. netif_stop_queue(dev);
  1147. /* Make sure tests *& speed change are atomic */
  1148. spin_lock_irqsave(&self->lock, flags);
  1149. /* Note : you should make sure that speed changes are not going
  1150. * to corrupt any outgoing frame. Look at nsc-ircc for the gory
  1151. * details - Jean II */
  1152. /* Check if we need to change the speed */
  1153. speed = irda_get_next_speed(skb);
  1154. if ((speed != self->io.speed) && (speed != -1)) {
  1155. /* Check for empty frame */
  1156. if (!skb->len) {
  1157. ali_ircc_change_speed(self, speed);
  1158. dev->trans_start = jiffies;
  1159. spin_unlock_irqrestore(&self->lock, flags);
  1160. dev_kfree_skb(skb);
  1161. return 0;
  1162. } else
  1163. self->new_speed = speed;
  1164. }
  1165. /* Register and copy this frame to DMA memory */
  1166. self->tx_fifo.queue[self->tx_fifo.free].start = self->tx_fifo.tail;
  1167. self->tx_fifo.queue[self->tx_fifo.free].len = skb->len;
  1168. self->tx_fifo.tail += skb->len;
  1169. dev->stats.tx_bytes += skb->len;
  1170. skb_copy_from_linear_data(skb, self->tx_fifo.queue[self->tx_fifo.free].start,
  1171. skb->len);
  1172. self->tx_fifo.len++;
  1173. self->tx_fifo.free++;
  1174. /* Start transmit only if there is currently no transmit going on */
  1175. if (self->tx_fifo.len == 1)
  1176. {
  1177. /* Check if we must wait the min turn time or not */
  1178. mtt = irda_get_mtt(skb);
  1179. if (mtt)
  1180. {
  1181. /* Check how much time we have used already */
  1182. do_gettimeofday(&self->now);
  1183. diff = self->now.tv_usec - self->stamp.tv_usec;
  1184. /* self->stamp is set from ali_ircc_dma_receive_complete() */
  1185. IRDA_DEBUG(1, "%s(), ******* diff = %d ******* \n", __func__ , diff);
  1186. if (diff < 0)
  1187. diff += 1000000;
  1188. /* Check if the mtt is larger than the time we have
  1189. * already used by all the protocol processing
  1190. */
  1191. if (mtt > diff)
  1192. {
  1193. mtt -= diff;
  1194. /*
  1195. * Use timer if delay larger than 1000 us, and
  1196. * use udelay for smaller values which should
  1197. * be acceptable
  1198. */
  1199. if (mtt > 500)
  1200. {
  1201. /* Adjust for timer resolution */
  1202. mtt = (mtt+250) / 500; /* 4 discard, 5 get advanced, Let's round off */
  1203. IRDA_DEBUG(1, "%s(), ************** mtt = %d ***********\n", __func__ , mtt);
  1204. /* Setup timer */
  1205. if (mtt == 1) /* 500 us */
  1206. {
  1207. switch_bank(iobase, BANK1);
  1208. outb(TIMER_IIR_500, iobase+FIR_TIMER_IIR);
  1209. }
  1210. else if (mtt == 2) /* 1 ms */
  1211. {
  1212. switch_bank(iobase, BANK1);
  1213. outb(TIMER_IIR_1ms, iobase+FIR_TIMER_IIR);
  1214. }
  1215. else /* > 2ms -> 4ms */
  1216. {
  1217. switch_bank(iobase, BANK1);
  1218. outb(TIMER_IIR_2ms, iobase+FIR_TIMER_IIR);
  1219. }
  1220. /* Start timer */
  1221. outb(inb(iobase+FIR_CR) | CR_TIMER_EN, iobase+FIR_CR);
  1222. self->io.direction = IO_XMIT;
  1223. /* Enable timer interrupt */
  1224. self->ier = IER_TIMER;
  1225. SetCOMInterrupts(self, TRUE);
  1226. /* Timer will take care of the rest */
  1227. goto out;
  1228. }
  1229. else
  1230. udelay(mtt);
  1231. } // if (if (mtt > diff)
  1232. }// if (mtt)
  1233. /* Enable EOM interrupt */
  1234. self->ier = IER_EOM;
  1235. SetCOMInterrupts(self, TRUE);
  1236. /* Transmit frame */
  1237. ali_ircc_dma_xmit(self);
  1238. } // if (self->tx_fifo.len == 1)
  1239. out:
  1240. /* Not busy transmitting anymore if window is not full */
  1241. if (self->tx_fifo.free < MAX_TX_WINDOW)
  1242. netif_wake_queue(self->netdev);
  1243. /* Restore bank register */
  1244. switch_bank(iobase, BANK0);
  1245. dev->trans_start = jiffies;
  1246. spin_unlock_irqrestore(&self->lock, flags);
  1247. dev_kfree_skb(skb);
  1248. IRDA_DEBUG(1, "%s(), ----------------- End ------------------\n", __func__ );
  1249. return 0;
  1250. }
  1251. static void ali_ircc_dma_xmit(struct ali_ircc_cb *self)
  1252. {
  1253. int iobase, tmp;
  1254. unsigned char FIFO_OPTI, Hi, Lo;
  1255. IRDA_DEBUG(1, "%s(), ---------------- Start -----------------\n", __func__ );
  1256. iobase = self->io.fir_base;
  1257. /* FIFO threshold , this method comes from NDIS5 code */
  1258. if(self->tx_fifo.queue[self->tx_fifo.ptr].len < TX_FIFO_Threshold)
  1259. FIFO_OPTI = self->tx_fifo.queue[self->tx_fifo.ptr].len-1;
  1260. else
  1261. FIFO_OPTI = TX_FIFO_Threshold;
  1262. /* Disable DMA */
  1263. switch_bank(iobase, BANK1);
  1264. outb(inb(iobase+FIR_CR) & ~CR_DMA_EN, iobase+FIR_CR);
  1265. self->io.direction = IO_XMIT;
  1266. irda_setup_dma(self->io.dma,
  1267. ((u8 *)self->tx_fifo.queue[self->tx_fifo.ptr].start -
  1268. self->tx_buff.head) + self->tx_buff_dma,
  1269. self->tx_fifo.queue[self->tx_fifo.ptr].len,
  1270. DMA_TX_MODE);
  1271. /* Reset Tx FIFO */
  1272. switch_bank(iobase, BANK0);
  1273. outb(LCR_A_FIFO_RESET, iobase+FIR_LCR_A);
  1274. /* Set Tx FIFO threshold */
  1275. if (self->fifo_opti_buf!=FIFO_OPTI)
  1276. {
  1277. switch_bank(iobase, BANK1);
  1278. outb(FIFO_OPTI, iobase+FIR_FIFO_TR) ;
  1279. self->fifo_opti_buf=FIFO_OPTI;
  1280. }
  1281. /* Set Tx DMA threshold */
  1282. switch_bank(iobase, BANK1);
  1283. outb(TX_DMA_Threshold, iobase+FIR_DMA_TR);
  1284. /* Set max Tx frame size */
  1285. Hi = (self->tx_fifo.queue[self->tx_fifo.ptr].len >> 8) & 0x0f;
  1286. Lo = self->tx_fifo.queue[self->tx_fifo.ptr].len & 0xff;
  1287. switch_bank(iobase, BANK2);
  1288. outb(Hi, iobase+FIR_TX_DSR_HI);
  1289. outb(Lo, iobase+FIR_TX_DSR_LO);
  1290. /* Disable SIP , Disable Brick Wall (we don't support in TX mode), Change to TX mode */
  1291. switch_bank(iobase, BANK0);
  1292. tmp = inb(iobase+FIR_LCR_B);
  1293. tmp &= ~0x20; // Disable SIP
  1294. outb(((unsigned char)(tmp & 0x3f) | LCR_B_TX_MODE) & ~LCR_B_BW, iobase+FIR_LCR_B);
  1295. IRDA_DEBUG(1, "%s(), ******* Change to TX mode: FIR_LCR_B = 0x%x ******* \n", __func__ , inb(iobase+FIR_LCR_B));
  1296. outb(0, iobase+FIR_LSR);
  1297. /* Enable DMA and Burst Mode */
  1298. switch_bank(iobase, BANK1);
  1299. outb(inb(iobase+FIR_CR) | CR_DMA_EN | CR_DMA_BURST, iobase+FIR_CR);
  1300. switch_bank(iobase, BANK0);
  1301. IRDA_DEBUG(1, "%s(), ----------------- End ------------------\n", __func__ );
  1302. }
  1303. static int ali_ircc_dma_xmit_complete(struct ali_ircc_cb *self)
  1304. {
  1305. int iobase;
  1306. int ret = TRUE;
  1307. IRDA_DEBUG(1, "%s(), ---------------- Start -----------------\n", __func__ );
  1308. iobase = self->io.fir_base;
  1309. /* Disable DMA */
  1310. switch_bank(iobase, BANK1);
  1311. outb(inb(iobase+FIR_CR) & ~CR_DMA_EN, iobase+FIR_CR);
  1312. /* Check for underrun! */
  1313. switch_bank(iobase, BANK0);
  1314. if((inb(iobase+FIR_LSR) & LSR_FRAME_ABORT) == LSR_FRAME_ABORT)
  1315. {
  1316. IRDA_ERROR("%s(), ********* LSR_FRAME_ABORT *********\n", __func__);
  1317. self->netdev->stats.tx_errors++;
  1318. self->netdev->stats.tx_fifo_errors++;
  1319. }
  1320. else
  1321. {
  1322. self->netdev->stats.tx_packets++;
  1323. }
  1324. /* Check if we need to change the speed */
  1325. if (self->new_speed)
  1326. {
  1327. ali_ircc_change_speed(self, self->new_speed);
  1328. self->new_speed = 0;
  1329. }
  1330. /* Finished with this frame, so prepare for next */
  1331. self->tx_fifo.ptr++;
  1332. self->tx_fifo.len--;
  1333. /* Any frames to be sent back-to-back? */
  1334. if (self->tx_fifo.len)
  1335. {
  1336. ali_ircc_dma_xmit(self);
  1337. /* Not finished yet! */
  1338. ret = FALSE;
  1339. }
  1340. else
  1341. { /* Reset Tx FIFO info */
  1342. self->tx_fifo.len = self->tx_fifo.ptr = self->tx_fifo.free = 0;
  1343. self->tx_fifo.tail = self->tx_buff.head;
  1344. }
  1345. /* Make sure we have room for more frames */
  1346. if (self->tx_fifo.free < MAX_TX_WINDOW) {
  1347. /* Not busy transmitting anymore */
  1348. /* Tell the network layer, that we can accept more frames */
  1349. netif_wake_queue(self->netdev);
  1350. }
  1351. switch_bank(iobase, BANK0);
  1352. IRDA_DEBUG(1, "%s(), ----------------- End ------------------\n", __func__ );
  1353. return ret;
  1354. }
  1355. /*
  1356. * Function ali_ircc_dma_receive (self)
  1357. *
  1358. * Get ready for receiving a frame. The device will initiate a DMA
  1359. * if it starts to receive a frame.
  1360. *
  1361. */
  1362. static int ali_ircc_dma_receive(struct ali_ircc_cb *self)
  1363. {
  1364. int iobase, tmp;
  1365. IRDA_DEBUG(1, "%s(), ---------------- Start -----------------\n", __func__ );
  1366. iobase = self->io.fir_base;
  1367. /* Reset Tx FIFO info */
  1368. self->tx_fifo.len = self->tx_fifo.ptr = self->tx_fifo.free = 0;
  1369. self->tx_fifo.tail = self->tx_buff.head;
  1370. /* Disable DMA */
  1371. switch_bank(iobase, BANK1);
  1372. outb(inb(iobase+FIR_CR) & ~CR_DMA_EN, iobase+FIR_CR);
  1373. /* Reset Message Count */
  1374. switch_bank(iobase, BANK0);
  1375. outb(0x07, iobase+FIR_LSR);
  1376. self->rcvFramesOverflow = FALSE;
  1377. self->LineStatus = inb(iobase+FIR_LSR) ;
  1378. /* Reset Rx FIFO info */
  1379. self->io.direction = IO_RECV;
  1380. self->rx_buff.data = self->rx_buff.head;
  1381. /* Reset Rx FIFO */
  1382. // switch_bank(iobase, BANK0);
  1383. outb(LCR_A_FIFO_RESET, iobase+FIR_LCR_A);
  1384. self->st_fifo.len = self->st_fifo.pending_bytes = 0;
  1385. self->st_fifo.tail = self->st_fifo.head = 0;
  1386. irda_setup_dma(self->io.dma, self->rx_buff_dma, self->rx_buff.truesize,
  1387. DMA_RX_MODE);
  1388. /* Set Receive Mode,Brick Wall */
  1389. //switch_bank(iobase, BANK0);
  1390. tmp = inb(iobase+FIR_LCR_B);
  1391. outb((unsigned char)(tmp &0x3f) | LCR_B_RX_MODE | LCR_B_BW , iobase + FIR_LCR_B); // 2000/12/1 05:16PM
  1392. IRDA_DEBUG(1, "%s(), *** Change To RX mode: FIR_LCR_B = 0x%x *** \n", __func__ , inb(iobase+FIR_LCR_B));
  1393. /* Set Rx Threshold */
  1394. switch_bank(iobase, BANK1);
  1395. outb(RX_FIFO_Threshold, iobase+FIR_FIFO_TR);
  1396. outb(RX_DMA_Threshold, iobase+FIR_DMA_TR);
  1397. /* Enable DMA and Burst Mode */
  1398. // switch_bank(iobase, BANK1);
  1399. outb(CR_DMA_EN | CR_DMA_BURST, iobase+FIR_CR);
  1400. switch_bank(iobase, BANK0);
  1401. IRDA_DEBUG(1, "%s(), ----------------- End ------------------\n", __func__ );
  1402. return 0;
  1403. }
  1404. static int ali_ircc_dma_receive_complete(struct ali_ircc_cb *self)
  1405. {
  1406. struct st_fifo *st_fifo;
  1407. struct sk_buff *skb;
  1408. __u8 status, MessageCount;
  1409. int len, i, iobase, val;
  1410. IRDA_DEBUG(1, "%s(), ---------------- Start -----------------\n", __func__ );
  1411. st_fifo = &self->st_fifo;
  1412. iobase = self->io.fir_base;
  1413. switch_bank(iobase, BANK0);
  1414. MessageCount = inb(iobase+ FIR_LSR)&0x07;
  1415. if (MessageCount > 0)
  1416. IRDA_DEBUG(0, "%s(), Messsage count = %d,\n", __func__ , MessageCount);
  1417. for (i=0; i<=MessageCount; i++)
  1418. {
  1419. /* Bank 0 */
  1420. switch_bank(iobase, BANK0);
  1421. status = inb(iobase+FIR_LSR);
  1422. switch_bank(iobase, BANK2);
  1423. len = inb(iobase+FIR_RX_DSR_HI) & 0x0f;
  1424. len = len << 8;
  1425. len |= inb(iobase+FIR_RX_DSR_LO);
  1426. IRDA_DEBUG(1, "%s(), RX Length = 0x%.2x,\n", __func__ , len);
  1427. IRDA_DEBUG(1, "%s(), RX Status = 0x%.2x,\n", __func__ , status);
  1428. if (st_fifo->tail >= MAX_RX_WINDOW) {
  1429. IRDA_DEBUG(0, "%s(), window is full!\n", __func__ );
  1430. continue;
  1431. }
  1432. st_fifo->entries[st_fifo->tail].status = status;
  1433. st_fifo->entries[st_fifo->tail].len = len;
  1434. st_fifo->pending_bytes += len;
  1435. st_fifo->tail++;
  1436. st_fifo->len++;
  1437. }
  1438. for (i=0; i<=MessageCount; i++)
  1439. {
  1440. /* Get first entry */
  1441. status = st_fifo->entries[st_fifo->head].status;
  1442. len = st_fifo->entries[st_fifo->head].len;
  1443. st_fifo->pending_bytes -= len;
  1444. st_fifo->head++;
  1445. st_fifo->len--;
  1446. /* Check for errors */
  1447. if ((status & 0xd8) || self->rcvFramesOverflow || (len==0))
  1448. {
  1449. IRDA_DEBUG(0,"%s(), ************* RX Errors ************ \n", __func__ );
  1450. /* Skip frame */
  1451. self->netdev->stats.rx_errors++;
  1452. self->rx_buff.data += len;
  1453. if (status & LSR_FIFO_UR)
  1454. {
  1455. self->netdev->stats.rx_frame_errors++;
  1456. IRDA_DEBUG(0,"%s(), ************* FIFO Errors ************ \n", __func__ );
  1457. }
  1458. if (status & LSR_FRAME_ERROR)
  1459. {
  1460. self->netdev->stats.rx_frame_errors++;
  1461. IRDA_DEBUG(0,"%s(), ************* FRAME Errors ************ \n", __func__ );
  1462. }
  1463. if (status & LSR_CRC_ERROR)
  1464. {
  1465. self->netdev->stats.rx_crc_errors++;
  1466. IRDA_DEBUG(0,"%s(), ************* CRC Errors ************ \n", __func__ );
  1467. }
  1468. if(self->rcvFramesOverflow)
  1469. {
  1470. self->netdev->stats.rx_frame_errors++;
  1471. IRDA_DEBUG(0,"%s(), ************* Overran DMA buffer ************ \n", __func__ );
  1472. }
  1473. if(len == 0)
  1474. {
  1475. self->netdev->stats.rx_frame_errors++;
  1476. IRDA_DEBUG(0,"%s(), ********** Receive Frame Size = 0 ********* \n", __func__ );
  1477. }
  1478. }
  1479. else
  1480. {
  1481. if (st_fifo->pending_bytes < 32)
  1482. {
  1483. switch_bank(iobase, BANK0);
  1484. val = inb(iobase+FIR_BSR);
  1485. if ((val& BSR_FIFO_NOT_EMPTY)== 0x80)
  1486. {
  1487. IRDA_DEBUG(0, "%s(), ************* BSR_FIFO_NOT_EMPTY ************ \n", __func__ );
  1488. /* Put this entry back in fifo */
  1489. st_fifo->head--;
  1490. st_fifo->len++;
  1491. st_fifo->pending_bytes += len;
  1492. st_fifo->entries[st_fifo->head].status = status;
  1493. st_fifo->entries[st_fifo->head].len = len;
  1494. /*
  1495. * DMA not finished yet, so try again
  1496. * later, set timer value, resolution
  1497. * 500 us
  1498. */
  1499. switch_bank(iobase, BANK1);
  1500. outb(TIMER_IIR_500, iobase+FIR_TIMER_IIR); // 2001/1/2 05:07PM
  1501. /* Enable Timer */
  1502. outb(inb(iobase+FIR_CR) | CR_TIMER_EN, iobase+FIR_CR);
  1503. return FALSE; /* I'll be back! */
  1504. }
  1505. }
  1506. /*
  1507. * Remember the time we received this frame, so we can
  1508. * reduce the min turn time a bit since we will know
  1509. * how much time we have used for protocol processing
  1510. */
  1511. do_gettimeofday(&self->stamp);
  1512. skb = dev_alloc_skb(len+1);
  1513. if (skb == NULL)
  1514. {
  1515. IRDA_WARNING("%s(), memory squeeze, "
  1516. "dropping frame.\n",
  1517. __func__);
  1518. self->netdev->stats.rx_dropped++;
  1519. return FALSE;
  1520. }
  1521. /* Make sure IP header gets aligned */
  1522. skb_reserve(skb, 1);
  1523. /* Copy frame without CRC, CRC is removed by hardware*/
  1524. skb_put(skb, len);
  1525. skb_copy_to_linear_data(skb, self->rx_buff.data, len);
  1526. /* Move to next frame */
  1527. self->rx_buff.data += len;
  1528. self->netdev->stats.rx_bytes += len;
  1529. self->netdev->stats.rx_packets++;
  1530. skb->dev = self->netdev;
  1531. skb_reset_mac_header(skb);
  1532. skb->protocol = htons(ETH_P_IRDA);
  1533. netif_rx(skb);
  1534. }
  1535. }
  1536. switch_bank(iobase, BANK0);
  1537. IRDA_DEBUG(1, "%s(), ----------------- End ------------------\n", __func__ );
  1538. return TRUE;
  1539. }
  1540. /*
  1541. * Function ali_ircc_sir_hard_xmit (skb, dev)
  1542. *
  1543. * Transmit the frame!
  1544. *
  1545. */
  1546. static int ali_ircc_sir_hard_xmit(struct sk_buff *skb, struct net_device *dev)
  1547. {
  1548. struct ali_ircc_cb *self;
  1549. unsigned long flags;
  1550. int iobase;
  1551. __u32 speed;
  1552. IRDA_DEBUG(2, "%s(), ---------------- Start ----------------\n", __func__ );
  1553. IRDA_ASSERT(dev != NULL, return 0;);
  1554. self = netdev_priv(dev);
  1555. IRDA_ASSERT(self != NULL, return 0;);
  1556. iobase = self->io.sir_base;
  1557. netif_stop_queue(dev);
  1558. /* Make sure tests *& speed change are atomic */
  1559. spin_lock_irqsave(&self->lock, flags);
  1560. /* Note : you should make sure that speed changes are not going
  1561. * to corrupt any outgoing frame. Look at nsc-ircc for the gory
  1562. * details - Jean II */
  1563. /* Check if we need to change the speed */
  1564. speed = irda_get_next_speed(skb);
  1565. if ((speed != self->io.speed) && (speed != -1)) {
  1566. /* Check for empty frame */
  1567. if (!skb->len) {
  1568. ali_ircc_change_speed(self, speed);
  1569. dev->trans_start = jiffies;
  1570. spin_unlock_irqrestore(&self->lock, flags);
  1571. dev_kfree_skb(skb);
  1572. return 0;
  1573. } else
  1574. self->new_speed = speed;
  1575. }
  1576. /* Init tx buffer */
  1577. self->tx_buff.data = self->tx_buff.head;
  1578. /* Copy skb to tx_buff while wrapping, stuffing and making CRC */
  1579. self->tx_buff.len = async_wrap_skb(skb, self->tx_buff.data,
  1580. self->tx_buff.truesize);
  1581. self->netdev->stats.tx_bytes += self->tx_buff.len;
  1582. /* Turn on transmit finished interrupt. Will fire immediately! */
  1583. outb(UART_IER_THRI, iobase+UART_IER);
  1584. dev->trans_start = jiffies;
  1585. spin_unlock_irqrestore(&self->lock, flags);
  1586. dev_kfree_skb(skb);
  1587. IRDA_DEBUG(2, "%s(), ----------------- End ------------------\n", __func__ );
  1588. return 0;
  1589. }
  1590. /*
  1591. * Function ali_ircc_net_ioctl (dev, rq, cmd)
  1592. *
  1593. * Process IOCTL commands for this device
  1594. *
  1595. */
  1596. static int ali_ircc_net_ioctl(struct net_device *dev, struct ifreq *rq, int cmd)
  1597. {
  1598. struct if_irda_req *irq = (struct if_irda_req *) rq;
  1599. struct ali_ircc_cb *self;
  1600. unsigned long flags;
  1601. int ret = 0;
  1602. IRDA_DEBUG(2, "%s(), ---------------- Start ----------------\n", __func__ );
  1603. IRDA_ASSERT(dev != NULL, return -1;);
  1604. self = netdev_priv(dev);
  1605. IRDA_ASSERT(self != NULL, return -1;);
  1606. IRDA_DEBUG(2, "%s(), %s, (cmd=0x%X)\n", __func__ , dev->name, cmd);
  1607. switch (cmd) {
  1608. case SIOCSBANDWIDTH: /* Set bandwidth */
  1609. IRDA_DEBUG(1, "%s(), SIOCSBANDWIDTH\n", __func__ );
  1610. /*
  1611. * This function will also be used by IrLAP to change the
  1612. * speed, so we still must allow for speed change within
  1613. * interrupt context.
  1614. */
  1615. if (!in_interrupt() && !capable(CAP_NET_ADMIN))
  1616. return -EPERM;
  1617. spin_lock_irqsave(&self->lock, flags);
  1618. ali_ircc_change_speed(self, irq->ifr_baudrate);
  1619. spin_unlock_irqrestore(&self->lock, flags);
  1620. break;
  1621. case SIOCSMEDIABUSY: /* Set media busy */
  1622. IRDA_DEBUG(1, "%s(), SIOCSMEDIABUSY\n", __func__ );
  1623. if (!capable(CAP_NET_ADMIN))
  1624. return -EPERM;
  1625. irda_device_set_media_busy(self->netdev, TRUE);
  1626. break;
  1627. case SIOCGRECEIVING: /* Check if we are receiving right now */
  1628. IRDA_DEBUG(2, "%s(), SIOCGRECEIVING\n", __func__ );
  1629. /* This is protected */
  1630. irq->ifr_receiving = ali_ircc_is_receiving(self);
  1631. break;
  1632. default:
  1633. ret = -EOPNOTSUPP;
  1634. }
  1635. IRDA_DEBUG(2, "%s(), ----------------- End ------------------\n", __func__ );
  1636. return ret;
  1637. }
  1638. /*
  1639. * Function ali_ircc_is_receiving (self)
  1640. *
  1641. * Return TRUE is we are currently receiving a frame
  1642. *
  1643. */
  1644. static int ali_ircc_is_receiving(struct ali_ircc_cb *self)
  1645. {
  1646. unsigned long flags;
  1647. int status = FALSE;
  1648. int iobase;
  1649. IRDA_DEBUG(2, "%s(), ---------------- Start -----------------\n", __func__ );
  1650. IRDA_ASSERT(self != NULL, return FALSE;);
  1651. spin_lock_irqsave(&self->lock, flags);
  1652. if (self->io.speed > 115200)
  1653. {
  1654. iobase = self->io.fir_base;
  1655. switch_bank(iobase, BANK1);
  1656. if((inb(iobase+FIR_FIFO_FR) & 0x3f) != 0)
  1657. {
  1658. /* We are receiving something */
  1659. IRDA_DEBUG(1, "%s(), We are receiving something\n", __func__ );
  1660. status = TRUE;
  1661. }
  1662. switch_bank(iobase, BANK0);
  1663. }
  1664. else
  1665. {
  1666. status = (self->rx_buff.state != OUTSIDE_FRAME);
  1667. }
  1668. spin_unlock_irqrestore(&self->lock, flags);
  1669. IRDA_DEBUG(2, "%s(), ----------------- End ------------------\n", __func__ );
  1670. return status;
  1671. }
  1672. static int ali_ircc_suspend(struct platform_device *dev, pm_message_t state)
  1673. {
  1674. struct ali_ircc_cb *self = platform_get_drvdata(dev);
  1675. IRDA_MESSAGE("%s, Suspending\n", ALI_IRCC_DRIVER_NAME);
  1676. if (self->io.suspended)
  1677. return 0;
  1678. ali_ircc_net_close(self->netdev);
  1679. self->io.suspended = 1;
  1680. return 0;
  1681. }
  1682. static int ali_ircc_resume(struct platform_device *dev)
  1683. {
  1684. struct ali_ircc_cb *self = platform_get_drvdata(dev);
  1685. if (!self->io.suspended)
  1686. return 0;
  1687. ali_ircc_net_open(self->netdev);
  1688. IRDA_MESSAGE("%s, Waking up\n", ALI_IRCC_DRIVER_NAME);
  1689. self->io.suspended = 0;
  1690. return 0;
  1691. }
  1692. /* ALi Chip Function */
  1693. static void SetCOMInterrupts(struct ali_ircc_cb *self , unsigned char enable)
  1694. {
  1695. unsigned char newMask;
  1696. int iobase = self->io.fir_base; /* or sir_base */
  1697. IRDA_DEBUG(2, "%s(), -------- Start -------- ( Enable = %d )\n", __func__ , enable);
  1698. /* Enable the interrupt which we wish to */
  1699. if (enable){
  1700. if (self->io.direction == IO_XMIT)
  1701. {
  1702. if (self->io.speed > 115200) /* FIR, MIR */
  1703. {
  1704. newMask = self->ier;
  1705. }
  1706. else /* SIR */
  1707. {
  1708. newMask = UART_IER_THRI | UART_IER_RDI;
  1709. }
  1710. }
  1711. else {
  1712. if (self->io.speed > 115200) /* FIR, MIR */
  1713. {
  1714. newMask = self->ier;
  1715. }
  1716. else /* SIR */
  1717. {
  1718. newMask = UART_IER_RDI;
  1719. }
  1720. }
  1721. }
  1722. else /* Disable all the interrupts */
  1723. {
  1724. newMask = 0x00;
  1725. }
  1726. //SIR and FIR has different registers
  1727. if (self->io.speed > 115200)
  1728. {
  1729. switch_bank(iobase, BANK0);
  1730. outb(newMask, iobase+FIR_IER);
  1731. }
  1732. else
  1733. outb(newMask, iobase+UART_IER);
  1734. IRDA_DEBUG(2, "%s(), ----------------- End ------------------\n", __func__ );
  1735. }
  1736. static void SIR2FIR(int iobase)
  1737. {
  1738. //unsigned char tmp;
  1739. IRDA_DEBUG(1, "%s(), ---------------- Start ----------------\n", __func__ );
  1740. /* Already protected (change_speed() or setup()), no need to lock.
  1741. * Jean II */
  1742. outb(0x28, iobase+UART_MCR);
  1743. outb(0x68, iobase+UART_MCR);
  1744. outb(0x88, iobase+UART_MCR);
  1745. outb(0x60, iobase+FIR_MCR); /* Master Reset */
  1746. outb(0x20, iobase+FIR_MCR); /* Master Interrupt Enable */
  1747. //tmp = inb(iobase+FIR_LCR_B); /* SIP enable */
  1748. //tmp |= 0x20;
  1749. //outb(tmp, iobase+FIR_LCR_B);
  1750. IRDA_DEBUG(1, "%s(), ----------------- End ------------------\n", __func__ );
  1751. }
  1752. static void FIR2SIR(int iobase)
  1753. {
  1754. unsigned char val;
  1755. IRDA_DEBUG(1, "%s(), ---------------- Start ----------------\n", __func__ );
  1756. /* Already protected (change_speed() or setup()), no need to lock.
  1757. * Jean II */
  1758. outb(0x20, iobase+FIR_MCR); /* IRQ to low */
  1759. outb(0x00, iobase+UART_IER);
  1760. outb(0xA0, iobase+FIR_MCR); /* Don't set master reset */
  1761. outb(0x00, iobase+UART_FCR);
  1762. outb(0x07, iobase+UART_FCR);
  1763. val = inb(iobase+UART_RX);
  1764. val = inb(iobase+UART_LSR);
  1765. val = inb(iobase+UART_MSR);
  1766. IRDA_DEBUG(1, "%s(), ----------------- End ------------------\n", __func__ );
  1767. }
  1768. MODULE_AUTHOR("Benjamin Kong <benjamin_kong@ali.com.tw>");
  1769. MODULE_DESCRIPTION("ALi FIR Controller Driver");
  1770. MODULE_LICENSE("GPL");
  1771. MODULE_ALIAS("platform:" ALI_IRCC_DRIVER_NAME);
  1772. module_param_array(io, int, NULL, 0);
  1773. MODULE_PARM_DESC(io, "Base I/O addresses");
  1774. module_param_array(irq, int, NULL, 0);
  1775. MODULE_PARM_DESC(irq, "IRQ lines");
  1776. module_param_array(dma, int, NULL, 0);
  1777. MODULE_PARM_DESC(dma, "DMA channels");
  1778. module_init(ali_ircc_init);
  1779. module_exit(ali_ircc_cleanup);