irda_device.c
上传用户:lgb322
上传日期:2013-02-24
资源大小:30529k
文件大小:14k
源码类别:

嵌入式Linux

开发平台:

Unix_Linux

  1. /*********************************************************************
  2.  *                
  3.  * Filename:      irda_device.c
  4.  * Version:       0.9
  5.  * Description:   Utility functions used by the device drivers
  6.  * Status:        Experimental.
  7.  * Author:        Dag Brattli <dagb@cs.uit.no>
  8.  * Created at:    Sat Oct  9 09:22:27 1999
  9.  * Modified at:   Sun Jan 23 17:41:24 2000
  10.  * Modified by:   Dag Brattli <dagb@cs.uit.no>
  11.  * 
  12.  *     Copyright (c) 1999-2000 Dag Brattli, All Rights Reserved.
  13.  *     Copyright (c) 2000-2001 Jean Tourrilhes <jt@hpl.hp.com>
  14.  *     
  15.  *     This program is free software; you can redistribute it and/or 
  16.  *     modify it under the terms of the GNU General Public License as 
  17.  *     published by the Free Software Foundation; either version 2 of 
  18.  *     the License, or (at your option) any later version.
  19.  * 
  20.  *     This program is distributed in the hope that it will be useful,
  21.  *     but WITHOUT ANY WARRANTY; without even the implied warranty of
  22.  *     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  23.  *     GNU General Public License for more details.
  24.  * 
  25.  *     You should have received a copy of the GNU General Public License 
  26.  *     along with this program; if not, write to the Free Software 
  27.  *     Foundation, Inc., 59 Temple Place, Suite 330, Boston, 
  28.  *     MA 02111-1307 USA
  29.  *     
  30.  ********************************************************************/
  31. #include <linux/config.h>
  32. #include <linux/string.h>
  33. #include <linux/proc_fs.h>
  34. #include <linux/skbuff.h>
  35. #include <linux/if.h>
  36. #include <linux/if_ether.h>
  37. #include <linux/if_arp.h>
  38. #include <linux/netdevice.h>
  39. #include <linux/init.h>
  40. #include <linux/tty.h>
  41. #include <linux/kmod.h>
  42. #include <linux/wireless.h>
  43. #include <linux/spinlock.h>
  44. #include <asm/ioctls.h>
  45. #include <asm/segment.h>
  46. #include <asm/uaccess.h>
  47. #include <asm/dma.h>
  48. #include <asm/io.h>
  49. #include <net/pkt_sched.h>
  50. #include <net/irda/irda_device.h>
  51. #include <net/irda/irlap.h>
  52. #include <net/irda/timer.h>
  53. #include <net/irda/wrapper.h>
  54. extern int irtty_init(void);
  55. extern int nsc_ircc_init(void);
  56. extern int ircc_init(void);
  57. extern int toshoboe_init(void);
  58. extern int litelink_init(void);
  59. extern int w83977af_init(void);
  60. extern int esi_init(void);
  61. extern int tekram_init(void);
  62. extern int actisys_init(void);
  63. extern int girbil_init(void);
  64. extern int sa1100_irda_init(void);
  65. extern int ep7211_ir_init(void);
  66. static void __irda_task_delete(struct irda_task *task);
  67. static hashbin_t *dongles = NULL;
  68. static hashbin_t *tasks = NULL;
  69. const char *infrared_mode[] = {
  70. "IRDA_IRLAP",
  71. "IRDA_RAW",
  72. "SHARP_ASK",
  73. "TV_REMOTE",
  74. };
  75. #ifdef CONFIG_IRDA_DEBUG
  76. static const char *task_state[] = {
  77. "IRDA_TASK_INIT",
  78. "IRDA_TASK_DONE", 
  79. "IRDA_TASK_WAIT",
  80. "IRDA_TASK_WAIT1",
  81. "IRDA_TASK_WAIT2",
  82. "IRDA_TASK_WAIT3",
  83. "IRDA_TASK_CHILD_INIT",
  84. "IRDA_TASK_CHILD_WAIT",
  85. "IRDA_TASK_CHILD_DONE",
  86. };
  87. #endif /* CONFIG_IRDA_DEBUG */
  88. static void irda_task_timer_expired(void *data);
  89. #ifdef CONFIG_PROC_FS
  90. int irda_device_proc_read(char *buf, char **start, off_t offset, int len, 
  91.   int unused);
  92. #endif /* CONFIG_PROC_FS */
  93. int __init irda_device_init( void)
  94. {
  95. dongles = hashbin_new(HB_GLOBAL);
  96. if (dongles == NULL) {
  97. printk(KERN_WARNING 
  98.        "IrDA: Can't allocate dongles hashbin!n");
  99. return -ENOMEM;
  100. }
  101. tasks = hashbin_new(HB_GLOBAL);
  102. if (tasks == NULL) {
  103. printk(KERN_WARNING 
  104.        "IrDA: Can't allocate tasks hashbin!n");
  105. return -ENOMEM;
  106. }
  107. /* 
  108.  * Call the init function of the device drivers that has not been
  109.  * compiled as a module 
  110.  */
  111. #ifdef CONFIG_IRTTY_SIR
  112. irtty_init();
  113. #endif
  114. #ifdef CONFIG_WINBOND_FIR
  115. w83977af_init();
  116. #endif
  117. #ifdef CONFIG_SA1100_FIR
  118. sa1100_irda_init();
  119. #endif
  120. #ifdef CONFIG_NSC_FIR
  121. nsc_ircc_init();
  122. #endif
  123. #ifdef CONFIG_TOSHIBA_FIR
  124. toshoboe_init();
  125. #endif
  126. #ifdef CONFIG_SMC_IRCC_FIR
  127. ircc_init();
  128. #endif
  129. #ifdef CONFIG_ESI_DONGLE
  130. esi_init();
  131. #endif
  132. #ifdef CONFIG_TEKRAM_DONGLE
  133. tekram_init();
  134. #endif
  135. #ifdef CONFIG_ACTISYS_DONGLE
  136. actisys_init();
  137. #endif
  138. #ifdef CONFIG_GIRBIL_DONGLE
  139. girbil_init();
  140. #endif
  141. #ifdef CONFIG_LITELINK_DONGLE
  142. litelink_init();
  143. #endif
  144. #ifdef CONFIG_OLD_BELKIN
  145.   old_belkin_init();
  146. #endif
  147. #ifdef CONFIG_EP7211_IR
  148.   ep7211_ir_init();
  149. #endif
  150. return 0;
  151. }
  152. void irda_device_cleanup(void)
  153. {
  154. IRDA_DEBUG(4, __FUNCTION__ "()n");
  155. hashbin_delete(tasks, (FREE_FUNC) __irda_task_delete);
  156. hashbin_delete(dongles, NULL);
  157. }
  158. /*
  159.  * Function irda_device_set_media_busy (self, status)
  160.  *
  161.  *    Called when we have detected that another station is transmiting
  162.  *    in contention mode.
  163.  */
  164. void irda_device_set_media_busy(struct net_device *dev, int status) 
  165. {
  166. struct irlap_cb *self;
  167. IRDA_DEBUG(4, __FUNCTION__ "(%s)n", status ? "TRUE" : "FALSE");
  168. self = (struct irlap_cb *) dev->atalk_ptr;
  169. ASSERT(self != NULL, return;);
  170. ASSERT(self->magic == LAP_MAGIC, return;);
  171. if (status) {
  172. self->media_busy = TRUE;
  173. if (status == SMALL)
  174. irlap_start_mbusy_timer(self, SMALLBUSY_TIMEOUT);
  175. else
  176. irlap_start_mbusy_timer(self, MEDIABUSY_TIMEOUT);
  177. IRDA_DEBUG( 4, "Media busy!n");
  178. } else {
  179. self->media_busy = FALSE;
  180. irlap_stop_mbusy_timer(self);
  181. }
  182. }
  183. int irda_device_set_dtr_rts(struct net_device *dev, int dtr, int rts)
  184. {
  185. struct if_irda_req req;
  186. int ret;
  187. IRDA_DEBUG(2, __FUNCTION__ "()n");
  188. if (!dev->do_ioctl) {
  189. ERROR(__FUNCTION__ "(), do_ioctl not impl. by "
  190.       "device drivern");
  191. return -1;
  192. }
  193. req.ifr_dtr = dtr;
  194. req.ifr_rts = rts;
  195. ret = dev->do_ioctl(dev, (struct ifreq *) &req, SIOCSDTRRTS);
  196. return ret;
  197. }
  198. int irda_device_change_speed(struct net_device *dev, __u32 speed)
  199. {
  200. struct if_irda_req req;
  201. int ret;
  202. IRDA_DEBUG(2, __FUNCTION__ "()n");
  203. if (!dev->do_ioctl) {
  204. ERROR(__FUNCTION__ "(), do_ioctl not impl. by "
  205.       "device drivern");
  206. return -1;
  207. }
  208. req.ifr_baudrate = speed;
  209. ret = dev->do_ioctl(dev, (struct ifreq *) &req, SIOCSBANDWIDTH);
  210. return ret;
  211. }
  212. /*
  213.  * Function irda_device_is_receiving (dev)
  214.  *
  215.  *    Check if the device driver is currently receiving data
  216.  *
  217.  */
  218. int irda_device_is_receiving(struct net_device *dev)
  219. {
  220. struct if_irda_req req;
  221. int ret;
  222. IRDA_DEBUG(2, __FUNCTION__ "()n");
  223. if (!dev->do_ioctl) {
  224. ERROR(__FUNCTION__ "(), do_ioctl not impl. by "
  225.       "device drivern");
  226. return -1;
  227. }
  228. ret = dev->do_ioctl(dev, (struct ifreq *) &req, SIOCGRECEIVING);
  229. if (ret < 0)
  230. return ret;
  231. return req.ifr_receiving;
  232. }
  233. void irda_task_next_state(struct irda_task *task, IRDA_TASK_STATE state)
  234. {
  235. IRDA_DEBUG(2, __FUNCTION__ "(), state = %sn", task_state[state]);
  236. task->state = state;
  237. }
  238. static void __irda_task_delete(struct irda_task *task)
  239. {
  240. del_timer(&task->timer);
  241. kfree(task);
  242. }
  243. void irda_task_delete(struct irda_task *task)
  244. {
  245. /* Unregister task */
  246. hashbin_remove(tasks, (int) task, NULL);
  247. __irda_task_delete(task);
  248. }
  249. /*
  250.  * Function irda_task_kick (task)
  251.  *
  252.  *    Tries to execute a task possible multiple times until the task is either
  253.  *    finished, or askes for a timeout. When a task is finished, we do post
  254.  *    processing, and notify the parent task, that is waiting for this task
  255.  *    to complete.
  256.  */
  257. int irda_task_kick(struct irda_task *task)
  258. {
  259. int finished = TRUE;
  260. int count = 0;
  261. int timeout;
  262. IRDA_DEBUG(2, __FUNCTION__ "()n");
  263. ASSERT(task != NULL, return -1;);
  264. ASSERT(task->magic == IRDA_TASK_MAGIC, return -1;);
  265. /* Execute task until it's finished, or askes for a timeout */
  266. do {
  267. timeout = task->function(task);
  268. if (count++ > 100) {
  269. ERROR(__FUNCTION__ "(), error in task handler!n");
  270. irda_task_delete(task);
  271. return TRUE;
  272. }
  273. } while ((timeout == 0) && (task->state != IRDA_TASK_DONE));
  274. if (timeout < 0) {
  275. ERROR(__FUNCTION__ "(), Error executing task!n");
  276. irda_task_delete(task);
  277. return TRUE;
  278. }
  279. /* Check if we are finished */
  280. if (task->state == IRDA_TASK_DONE) {
  281. del_timer(&task->timer);
  282. /* Do post processing */
  283. if (task->finished)
  284. task->finished(task);
  285. /* Notify parent */
  286. if (task->parent) {
  287. /* Check if parent is waiting for us to complete */
  288. if (task->parent->state == IRDA_TASK_CHILD_WAIT) {
  289. task->parent->state = IRDA_TASK_CHILD_DONE;
  290. /* Stop timer now that we are here */
  291. del_timer(&task->parent->timer);
  292. /* Kick parent task */
  293. irda_task_kick(task->parent);
  294. }
  295. }
  296. irda_task_delete(task);
  297. } else if (timeout > 0) {
  298. irda_start_timer(&task->timer, timeout, (void *) task, 
  299.  irda_task_timer_expired);
  300. finished = FALSE;
  301. } else {
  302. IRDA_DEBUG(0, __FUNCTION__ 
  303.    "(), not finished, and no timeout!n");
  304. finished = FALSE;
  305. }
  306. return finished;
  307. }
  308. /*
  309.  * Function irda_task_execute (instance, function, finished)
  310.  *
  311.  *    This function registers and tries to execute tasks that may take some
  312.  *    time to complete. We do it this hairy way since we may have been
  313.  *    called from interrupt context, so it's not possible to use
  314.  *    schedule_timeout() 
  315.  */
  316. struct irda_task *irda_task_execute(void *instance, 
  317.     IRDA_TASK_CALLBACK function, 
  318.     IRDA_TASK_CALLBACK finished, 
  319.     struct irda_task *parent, void *param)
  320. {
  321. struct irda_task *task;
  322. int ret;
  323. IRDA_DEBUG(2, __FUNCTION__ "()n");
  324. task = kmalloc(sizeof(struct irda_task), GFP_ATOMIC);
  325. if (!task)
  326. return NULL;
  327. task->state    = IRDA_TASK_INIT;
  328. task->instance = instance;
  329. task->function = function;
  330. task->finished = finished;
  331. task->parent   = parent;
  332. task->param    = param;
  333. task->magic    = IRDA_TASK_MAGIC;
  334. init_timer(&task->timer);
  335. /* Register task */
  336. hashbin_insert(tasks, (irda_queue_t *) task, (int) task, NULL);
  337. /* No time to waste, so lets get going! */
  338. ret = irda_task_kick(task);
  339. if (ret)
  340. return NULL;
  341. else
  342. return task;
  343. }
  344. /*
  345.  * Function irda_task_timer_expired (data)
  346.  *
  347.  *    Task time has expired. We now try to execute task (again), and restart
  348.  *    the timer if the task has not finished yet
  349.  */
  350. static void irda_task_timer_expired(void *data)
  351. {
  352. struct irda_task *task;
  353. IRDA_DEBUG(2, __FUNCTION__ "()n");
  354. task = (struct irda_task *) data;
  355. irda_task_kick(task);
  356. }
  357. /*
  358.  * Function irda_device_setup (dev)
  359.  *
  360.  *    This function should be used by low level device drivers in a similar way
  361.  *    as ether_setup() is used by normal network device drivers
  362.  */
  363. int irda_device_setup(struct net_device *dev) 
  364. {
  365. ASSERT(dev != NULL, return -1;);
  366.         dev->hard_header_len = 0;
  367.         dev->addr_len        = 0;
  368. dev->features        |= NETIF_F_DYNALLOC;
  369. /* dev->destructor      = irda_device_destructor; */
  370.         dev->type            = ARPHRD_IRDA;
  371.         dev->tx_queue_len    = 8; /* Window size + 1 s-frame */
  372.  
  373. memset(dev->broadcast, 0xff, 4);
  374. dev->mtu = 2048;
  375. dev->flags = IFF_NOARP;
  376. return 0;
  377. }
  378. /*
  379.  * Function irda_device_txqueue_empty (dev)
  380.  *
  381.  *    Check if there is still some frames in the transmit queue for this
  382.  *    device. Maybe we should use: q->q.qlen == 0.
  383.  *
  384.  */
  385. int irda_device_txqueue_empty(struct net_device *dev)
  386. {
  387. if (skb_queue_len(&dev->qdisc->q))
  388. return FALSE;
  389. return TRUE;
  390. }
  391. /*
  392.  * Function irda_device_init_dongle (self, type, qos)
  393.  *
  394.  *    Initialize attached dongle.
  395.  */
  396. dongle_t *irda_device_dongle_init(struct net_device *dev, int type)
  397. {
  398. struct dongle_reg *reg;
  399. dongle_t *dongle;
  400. ASSERT(dev != NULL, return NULL;);
  401. #ifdef CONFIG_KMOD
  402. {
  403. char modname[32];
  404. /* Try to load the module needed */
  405. sprintf(modname, "irda-dongle-%d", type);
  406. request_module(modname);
  407. }
  408. #endif /* CONFIG_KMOD */
  409. if (!(reg = hashbin_find(dongles, type, NULL))) {
  410. ERROR("IrDA: Unable to find requested donglen");
  411. return NULL;
  412. }
  413. /* Allocate dongle info for this instance */
  414. dongle = kmalloc(sizeof(dongle_t), GFP_KERNEL);
  415. if (!dongle)
  416. return NULL;
  417. memset(dongle, 0, sizeof(dongle_t));
  418. /* Bind the registration info to this particular instance */
  419. dongle->issue = reg;
  420. dongle->dev = dev;
  421. return dongle;
  422. }
  423. /*
  424.  * Function irda_device_dongle_cleanup (dongle)
  425.  *
  426.  *    
  427.  *
  428.  */
  429. int irda_device_dongle_cleanup(dongle_t *dongle)
  430. {
  431. ASSERT(dongle != NULL, return -1;);
  432. dongle->issue->close(dongle);
  433. kfree(dongle);
  434. return 0;
  435. }
  436. /*
  437.  * Function irda_device_register_dongle (dongle)
  438.  *
  439.  *    
  440.  *
  441.  */
  442. int irda_device_register_dongle(struct dongle_reg *new)
  443. {
  444. /* Check if this dongle has been registred before */
  445. if (hashbin_find(dongles, new->type, NULL)) {
  446. MESSAGE(__FUNCTION__ "(), Dongle already registeredn");
  447.                 return 0;
  448.         }
  449. /* Insert IrDA dongle into hashbin */
  450. hashbin_insert(dongles, (irda_queue_t *) new, new->type, NULL);
  451.         return 0;
  452. }
  453. /*
  454.  * Function irda_device_unregister_dongle (dongle)
  455.  *
  456.  *    Unregister dongle, and remove dongle from list of registred dongles
  457.  *
  458.  */
  459. void irda_device_unregister_dongle(struct dongle_reg *dongle)
  460. {
  461. struct dongle *node;
  462. node = hashbin_remove(dongles, dongle->type, NULL);
  463. if (!node) {
  464. ERROR(__FUNCTION__ "(), dongle not found!n");
  465. return;
  466. }
  467. }
  468. /*
  469.  * Function irda_device_set_mode (self, mode)
  470.  *
  471.  *    Set the Infrared device driver into mode where it sends and receives
  472.  *    data without using IrLAP framing. Check out the particular device
  473.  *    driver to find out which modes it support.
  474.  */
  475. int irda_device_set_mode(struct net_device* dev, int mode)
  476. {
  477. struct if_irda_req req;
  478. int ret;
  479. IRDA_DEBUG(0, __FUNCTION__ "()n");
  480. if (!dev->do_ioctl) {
  481. ERROR(__FUNCTION__ "(), set_raw_mode not impl. by "
  482.       "device drivern");
  483. return -1;
  484. }
  485. req.ifr_mode = mode;
  486. ret = dev->do_ioctl(dev, (struct ifreq *) &req, SIOCSMODE);
  487. return ret;
  488. }
  489. /*
  490.  * Function setup_dma (idev, buffer, count, mode)
  491.  *
  492.  *    Setup the DMA channel. Commonly used by ISA FIR drivers
  493.  *
  494.  */
  495. void setup_dma(int channel, char *buffer, int count, int mode)
  496. {
  497. unsigned long flags;
  498. flags = claim_dma_lock();
  499. disable_dma(channel);
  500. clear_dma_ff(channel);
  501. set_dma_mode(channel, mode);
  502. set_dma_addr(channel, virt_to_bus(buffer));
  503. set_dma_count(channel, count);
  504. enable_dma(channel);
  505. release_dma_lock(flags);
  506. }