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

嵌入式Linux

开发平台:

Unix_Linux

  1. /*********************************************************************
  2.  *                
  3.  * Filename:      ircomm_tty_ioctl.c
  4.  * Version:       
  5.  * Description:   
  6.  * Status:        Experimental.
  7.  * Author:        Dag Brattli <dagb@cs.uit.no>
  8.  * Created at:    Thu Jun 10 14:39:09 1999
  9.  * Modified at:   Wed Jan  5 14:45:43 2000
  10.  * Modified by:   Dag Brattli <dagb@cs.uit.no>
  11.  * 
  12.  *     Copyright (c) 1999-2000 Dag Brattli, All Rights Reserved.
  13.  *     
  14.  *     This program is free software; you can redistribute it and/or 
  15.  *     modify it under the terms of the GNU General Public License as 
  16.  *     published by the Free Software Foundation; either version 2 of 
  17.  *     the License, or (at your option) any later version.
  18.  * 
  19.  *     This program is distributed in the hope that it will be useful,
  20.  *     but WITHOUT ANY WARRANTY; without even the implied warranty of
  21.  *     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  22.  *     GNU General Public License for more details.
  23.  * 
  24.  *     You should have received a copy of the GNU General Public License 
  25.  *     along with this program; if not, write to the Free Software 
  26.  *     Foundation, Inc., 59 Temple Place, Suite 330, Boston, 
  27.  *     MA 02111-1307 USA
  28.  *     
  29.  ********************************************************************/
  30. #include <linux/init.h>
  31. #include <linux/fs.h>
  32. #include <linux/sched.h>
  33. #include <linux/termios.h>
  34. #include <linux/tty.h>
  35. #include <linux/serial.h>
  36. #include <asm/segment.h>
  37. #include <asm/uaccess.h>
  38. #include <net/irda/irda.h>
  39. #include <net/irda/irmod.h>
  40. #include <net/irda/ircomm_core.h>
  41. #include <net/irda/ircomm_param.h>
  42. #include <net/irda/ircomm_tty_attach.h>
  43. #include <net/irda/ircomm_tty.h>
  44. #define RELEVANT_IFLAG(iflag) (iflag & (IGNBRK|BRKINT|IGNPAR|PARMRK|INPCK))
  45. /*
  46.  * Function ircomm_tty_change_speed (driver)
  47.  *
  48.  *    Change speed of the driver. If the remote device is a DCE, then this
  49.  *    should make it change the speed of its serial port
  50.  */
  51. void ircomm_tty_change_speed(struct ircomm_tty_cb *self)
  52. {
  53. unsigned cflag, cval;
  54. int baud;
  55. IRDA_DEBUG(2, __FUNCTION__ "()n");
  56. if (!self->tty || !self->tty->termios || !self->ircomm)
  57. return;
  58. cflag = self->tty->termios->c_cflag;
  59. /*  byte size and parity */
  60. switch (cflag & CSIZE) {
  61. case CS5: cval = IRCOMM_WSIZE_5; break;
  62. case CS6: cval = IRCOMM_WSIZE_6; break;
  63. case CS7: cval = IRCOMM_WSIZE_7; break;
  64. case CS8: cval = IRCOMM_WSIZE_8; break;
  65. default:  cval = IRCOMM_WSIZE_5; break;
  66. }
  67. if (cflag & CSTOPB)
  68. cval |= IRCOMM_2_STOP_BIT;
  69. if (cflag & PARENB)
  70. cval |= IRCOMM_PARITY_ENABLE;
  71. if (!(cflag & PARODD))
  72. cval |= IRCOMM_PARITY_EVEN;
  73. /* Determine divisor based on baud rate */
  74. baud = tty_get_baud_rate(self->tty);
  75. if (!baud)
  76. baud = 9600; /* B0 transition handled in rs_set_termios */
  77. self->settings.data_rate = baud;
  78. ircomm_param_request(self, IRCOMM_DATA_RATE, FALSE);
  79. /* CTS flow control flag and modem status interrupts */
  80. if (cflag & CRTSCTS) {
  81. self->flags |= ASYNC_CTS_FLOW;
  82. self->settings.flow_control |= IRCOMM_RTS_CTS_IN;
  83. } else {
  84. self->flags &= ~ASYNC_CTS_FLOW;
  85. self->settings.flow_control &= ~IRCOMM_RTS_CTS_IN;
  86. }
  87. if (cflag & CLOCAL)
  88. self->flags &= ~ASYNC_CHECK_CD;
  89. else
  90. self->flags |= ASYNC_CHECK_CD;
  91. #if 0
  92. /*
  93.  * Set up parity check flag
  94.  */
  95. if (I_INPCK(self->tty))
  96. driver->read_status_mask |= LSR_FE | LSR_PE;
  97. if (I_BRKINT(driver->tty) || I_PARMRK(driver->tty))
  98. driver->read_status_mask |= LSR_BI;
  99. /*
  100.  * Characters to ignore
  101.  */
  102. driver->ignore_status_mask = 0;
  103. if (I_IGNPAR(driver->tty))
  104. driver->ignore_status_mask |= LSR_PE | LSR_FE;
  105. if (I_IGNBRK(self->tty)) {
  106. self->ignore_status_mask |= LSR_BI;
  107. /*
  108.  * If we're ignore parity and break indicators, ignore 
  109.  * overruns too. (For real raw support).
  110.  */
  111. if (I_IGNPAR(self->tty)) 
  112. self->ignore_status_mask |= LSR_OE;
  113. }
  114. #endif
  115. self->settings.data_format = cval;
  116. ircomm_param_request(self, IRCOMM_DATA_FORMAT, FALSE);
  117.   ircomm_param_request(self, IRCOMM_FLOW_CONTROL, TRUE);
  118. }
  119. /*
  120.  * Function ircomm_tty_set_termios (tty, old_termios)
  121.  *
  122.  *    This routine allows the tty driver to be notified when device's
  123.  *    termios settings have changed.  Note that a well-designed tty driver
  124.  *    should be prepared to accept the case where old == NULL, and try to
  125.  *    do something rational.
  126.  */
  127. void ircomm_tty_set_termios(struct tty_struct *tty, 
  128.     struct termios *old_termios)
  129. {
  130. struct ircomm_tty_cb *self = (struct ircomm_tty_cb *) tty->driver_data;
  131. unsigned int cflag = tty->termios->c_cflag;
  132. IRDA_DEBUG(2, __FUNCTION__ "()n");
  133. if ((cflag == old_termios->c_cflag) && 
  134.     (RELEVANT_IFLAG(tty->termios->c_iflag) == 
  135.      RELEVANT_IFLAG(old_termios->c_iflag)))
  136. {
  137. return;
  138. }
  139. ircomm_tty_change_speed(self);
  140. /* Handle transition to B0 status */
  141. if ((old_termios->c_cflag & CBAUD) &&
  142.     !(cflag & CBAUD)) {
  143. self->settings.dte &= ~(IRCOMM_DTR|IRCOMM_RTS);
  144. ircomm_param_request(self, IRCOMM_DTE, TRUE);
  145. }
  146. /* Handle transition away from B0 status */
  147. if (!(old_termios->c_cflag & CBAUD) &&
  148.     (cflag & CBAUD)) {
  149. self->settings.dte |= IRCOMM_DTR;
  150. if (!(tty->termios->c_cflag & CRTSCTS) || 
  151.     !test_bit(TTY_THROTTLED, &tty->flags)) {
  152. self->settings.dte |= IRCOMM_RTS;
  153. }
  154. ircomm_param_request(self, IRCOMM_DTE, TRUE);
  155. }
  156. /* Handle turning off CRTSCTS */
  157. if ((old_termios->c_cflag & CRTSCTS) &&
  158.     !(tty->termios->c_cflag & CRTSCTS)) 
  159. {
  160. tty->hw_stopped = 0;
  161. ircomm_tty_start(tty);
  162. }
  163. }
  164. /*
  165.  * Function ircomm_tty_get_modem_info (self, value)
  166.  *
  167.  *    
  168.  *
  169.  */
  170. static int ircomm_tty_get_modem_info(struct ircomm_tty_cb *self, 
  171.      unsigned int *value)
  172. {
  173. unsigned int result;
  174. IRDA_DEBUG(2, __FUNCTION__ "()n");
  175. result =  ((self->settings.dte & IRCOMM_RTS) ? TIOCM_RTS : 0)
  176. | ((self->settings.dte & IRCOMM_DTR) ? TIOCM_DTR : 0)
  177. | ((self->settings.dce & IRCOMM_CD)  ? TIOCM_CAR : 0)
  178. | ((self->settings.dce & IRCOMM_RI)  ? TIOCM_RNG : 0)
  179. | ((self->settings.dce & IRCOMM_DSR) ? TIOCM_DSR : 0)
  180. | ((self->settings.dce & IRCOMM_CTS) ? TIOCM_CTS : 0);
  181. return put_user(result, value);
  182. }
  183. /*
  184.  * Function set_modem_info (driver, cmd, value)
  185.  *
  186.  *    
  187.  *
  188.  */
  189. static int ircomm_tty_set_modem_info(struct ircomm_tty_cb *self, 
  190.      unsigned int cmd, unsigned int *value)
  191. unsigned int arg;
  192. __u8 old_rts, old_dtr;
  193. IRDA_DEBUG(2, __FUNCTION__ "()n");
  194. ASSERT(self != NULL, return -1;);
  195. ASSERT(self->magic == IRCOMM_TTY_MAGIC, return -1;);
  196. if (get_user(arg, value))
  197. return -EFAULT;
  198. old_rts = self->settings.dte & IRCOMM_RTS;
  199. old_dtr = self->settings.dte & IRCOMM_DTR;
  200. switch (cmd) {
  201. case TIOCMBIS: 
  202. if (arg & TIOCM_RTS) 
  203. self->settings.dte |= IRCOMM_RTS;
  204. if (arg & TIOCM_DTR)
  205. self->settings.dte |= IRCOMM_DTR;
  206. break;
  207. case TIOCMBIC:
  208. if (arg & TIOCM_RTS)
  209. self->settings.dte &= ~IRCOMM_RTS;
  210. if (arg & TIOCM_DTR)
  211.   self->settings.dte &= ~IRCOMM_DTR;
  212.   break;
  213. case TIOCMSET:
  214.   self->settings.dte = 
  215. ((self->settings.dte & ~(IRCOMM_RTS | IRCOMM_DTR))
  216.  | ((arg & TIOCM_RTS) ? IRCOMM_RTS : 0)
  217.  | ((arg & TIOCM_DTR) ? IRCOMM_DTR : 0));
  218. break;
  219. default:
  220. return -EINVAL;
  221. }
  222. if ((self->settings.dte & IRCOMM_RTS) != old_rts)
  223. self->settings.dte |= IRCOMM_DELTA_RTS;
  224. if ((self->settings.dte & IRCOMM_DTR) != old_dtr)
  225. self->settings.dte |= IRCOMM_DELTA_DTR;
  226. ircomm_param_request(self, IRCOMM_DTE, TRUE);
  227. return 0;
  228. }
  229. /*
  230.  * Function get_serial_info (driver, retinfo)
  231.  *
  232.  *    
  233.  *
  234.  */
  235. static int ircomm_tty_get_serial_info(struct ircomm_tty_cb *self,
  236.       struct serial_struct *retinfo)
  237. {
  238. struct serial_struct info;
  239.    
  240. if (!retinfo)
  241. return -EFAULT;
  242. IRDA_DEBUG(2, __FUNCTION__ "()n");
  243. memset(&info, 0, sizeof(info));
  244. info.line = self->line;
  245. info.flags = self->flags;
  246. info.baud_base = self->settings.data_rate;
  247. info.close_delay = self->close_delay;
  248. info.closing_wait = self->closing_wait;
  249. /* For compatibility  */
  250.   info.type = PORT_16550A;
  251.   info.port = 0;
  252.   info.irq = 0;
  253. info.xmit_fifo_size = 0;
  254. info.hub6 = 0;   
  255. info.custom_divisor = 0;
  256. if (copy_to_user(retinfo, &info, sizeof(*retinfo)))
  257. return -EFAULT;
  258. return 0;
  259. }
  260. /*
  261.  * Function set_serial_info (driver, new_info)
  262.  *
  263.  *    
  264.  *
  265.  */
  266. static int ircomm_tty_set_serial_info(struct ircomm_tty_cb *self,
  267.       struct serial_struct *new_info)
  268. {
  269. #if 0
  270. struct serial_struct new_serial;
  271. struct ircomm_tty_cb old_state, *state;
  272. IRDA_DEBUG(0, __FUNCTION__ "()n");
  273. if (copy_from_user(&new_serial,new_info,sizeof(new_serial)))
  274. return -EFAULT;
  275. state = self
  276. old_state = *self;
  277.   
  278. if (!capable(CAP_SYS_ADMIN)) {
  279. if ((new_serial.baud_base != state->settings.data_rate) ||
  280.     (new_serial.close_delay != state->close_delay) ||
  281.     ((new_serial.flags & ~ASYNC_USR_MASK) !=
  282.      (self->flags & ~ASYNC_USR_MASK)))
  283. return -EPERM;
  284. state->flags = ((state->flags & ~ASYNC_USR_MASK) |
  285.  (new_serial.flags & ASYNC_USR_MASK));
  286. self->flags = ((self->flags & ~ASYNC_USR_MASK) |
  287.        (new_serial.flags & ASYNC_USR_MASK));
  288. /* self->custom_divisor = new_serial.custom_divisor; */
  289. goto check_and_exit;
  290. }
  291. /*
  292.  * OK, past this point, all the error checking has been done.
  293.  * At this point, we start making changes.....
  294.  */
  295. if (self->settings.data_rate != new_serial.baud_base) {
  296. self->settings.data_rate = new_serial.baud_base;
  297. ircomm_param_request(self, IRCOMM_DATA_RATE, TRUE);
  298. }
  299. self->close_delay = new_serial.close_delay * HZ/100;
  300. self->closing_wait = new_serial.closing_wait * HZ/100;
  301. /* self->custom_divisor = new_serial.custom_divisor; */
  302. self->flags = ((self->flags & ~ASYNC_FLAGS) |
  303.        (new_serial.flags & ASYNC_FLAGS));
  304. self->tty->low_latency = (self->flags & ASYNC_LOW_LATENCY) ? 1 : 0;
  305.  check_and_exit:
  306. if (self->flags & ASYNC_INITIALIZED) {
  307. if (((old_state.flags & ASYNC_SPD_MASK) !=
  308.      (self->flags & ASYNC_SPD_MASK)) ||
  309.     (old_driver.custom_divisor != driver->custom_divisor)) {
  310. if ((driver->flags & ASYNC_SPD_MASK) == ASYNC_SPD_HI)
  311. driver->tty->alt_speed = 57600;
  312. if ((driver->flags & ASYNC_SPD_MASK) == ASYNC_SPD_VHI)
  313. driver->tty->alt_speed = 115200;
  314. if ((driver->flags & ASYNC_SPD_MASK) == ASYNC_SPD_SHI)
  315. driver->tty->alt_speed = 230400;
  316. if ((driver->flags & ASYNC_SPD_MASK) == ASYNC_SPD_WARP)
  317. driver->tty->alt_speed = 460800;
  318. ircomm_tty_change_speed(driver);
  319. }
  320. }
  321. #endif
  322. return 0;
  323. }
  324. /*
  325.  * Function ircomm_tty_ioctl (tty, file, cmd, arg)
  326.  *
  327.  *    
  328.  *
  329.  */
  330. int ircomm_tty_ioctl(struct tty_struct *tty, struct file *file, 
  331.      unsigned int cmd, unsigned long arg)
  332. {
  333. struct ircomm_tty_cb *self = (struct ircomm_tty_cb *) tty->driver_data;
  334. int ret = 0;
  335. IRDA_DEBUG(2, __FUNCTION__ "()n");
  336. if ((cmd != TIOCGSERIAL) && (cmd != TIOCSSERIAL) &&
  337.     (cmd != TIOCSERCONFIG) && (cmd != TIOCSERGSTRUCT) &&
  338.     (cmd != TIOCMIWAIT) && (cmd != TIOCGICOUNT)) {
  339. if (tty->flags & (1 << TTY_IO_ERROR))
  340.     return -EIO;
  341. }
  342. switch (cmd) {
  343. case TIOCMGET:
  344. ret = ircomm_tty_get_modem_info(self, (unsigned int *) arg);
  345. break;
  346. case TIOCMBIS:
  347. case TIOCMBIC:
  348. case TIOCMSET:
  349. ret = ircomm_tty_set_modem_info(self, cmd, (unsigned int *) arg);
  350. break;
  351. case TIOCGSERIAL:
  352. ret = ircomm_tty_get_serial_info(self, (struct serial_struct *) arg);
  353. break;
  354. case TIOCSSERIAL:
  355. ret = ircomm_tty_set_serial_info(self, (struct serial_struct *) arg);
  356. break;
  357. case TIOCMIWAIT:
  358. IRDA_DEBUG(0, "(), TIOCMIWAIT, not impl!n");
  359. break;
  360. case TIOCGICOUNT:
  361. IRDA_DEBUG(0, __FUNCTION__ "(), TIOCGICOUNT not impl!n");
  362. #if 0
  363. save_flags(flags); cli();
  364. cnow = driver->icount;
  365. restore_flags(flags);
  366. p_cuser = (struct serial_icounter_struct *) arg;
  367. if (put_user(cnow.cts, &p_cuser->cts) ||
  368.     put_user(cnow.dsr, &p_cuser->dsr) ||
  369.     put_user(cnow.rng, &p_cuser->rng) ||
  370.     put_user(cnow.dcd, &p_cuser->dcd) ||
  371.     put_user(cnow.rx, &p_cuser->rx) ||
  372.     put_user(cnow.tx, &p_cuser->tx) ||
  373.     put_user(cnow.frame, &p_cuser->frame) ||
  374.     put_user(cnow.overrun, &p_cuser->overrun) ||
  375.     put_user(cnow.parity, &p_cuser->parity) ||
  376.     put_user(cnow.brk, &p_cuser->brk) ||
  377.     put_user(cnow.buf_overrun, &p_cuser->buf_overrun))
  378. return -EFAULT;
  379. #endif
  380. return 0;
  381. default:
  382. ret = -ENOIOCTLCMD;  /* ioctls which we must ignore */
  383. }
  384. return ret;
  385. }