blob: 141094e7c06e06d3071c8c35a65bc10a51d0ee8a [file] [log] [blame]
Samuel Iglesias Gonsalvezba4dc612012-05-09 15:27:21 +02001/**
2 * ipoctal.c
3 *
4 * driver for the GE IP-OCTAL boards
Samuel Iglesias Gonsalvez76859722012-11-16 16:19:58 +01005 *
6 * Copyright (C) 2009-2012 CERN (www.cern.ch)
7 * Author: Nicolas Serafini, EIC2 SA
8 * Author: Samuel Iglesias Gonsalvez <siglesias@igalia.com>
Samuel Iglesias Gonsalvezba4dc612012-05-09 15:27:21 +02009 *
10 * This program is free software; you can redistribute it and/or modify it
11 * under the terms of the GNU General Public License as published by the Free
Samuel Iglesias Gonsalvez32254362012-05-11 10:17:15 +020012 * Software Foundation; version 2 of the License.
Samuel Iglesias Gonsalvezba4dc612012-05-09 15:27:21 +020013 */
14
Samuel Iglesias Gonsalvezba4dc612012-05-09 15:27:21 +020015#include <linux/device.h>
16#include <linux/module.h>
Samuel Iglesias Gonsalvezba4dc612012-05-09 15:27:21 +020017#include <linux/interrupt.h>
Samuel Iglesias Gonsalvezba4dc612012-05-09 15:27:21 +020018#include <linux/sched.h>
19#include <linux/tty.h>
20#include <linux/serial.h>
21#include <linux/tty_flip.h>
22#include <linux/slab.h>
Jens Taprogge64802dc2012-09-04 17:01:08 +020023#include <linux/io.h>
Samuel Iglesias Gonsalvez7dbce022012-11-16 19:33:45 +010024#include <linux/ipack.h>
Samuel Iglesias Gonsalvezba4dc612012-05-09 15:27:21 +020025#include "ipoctal.h"
26#include "scc2698.h"
27
Samuel Iglesias Gonsalvezba4dc612012-05-09 15:27:21 +020028#define IP_OCTAL_ID_SPACE_VECTOR 0x41
29#define IP_OCTAL_NB_BLOCKS 4
30
Samuel Iglesias Gonsalvezba4dc612012-05-09 15:27:21 +020031static const struct tty_operations ipoctal_fops;
32
Jens Taprogge70a32812012-09-12 14:55:26 +020033struct ipoctal_channel {
34 struct ipoctal_stats stats;
35 unsigned int nb_bytes;
Jens Taprogge70a32812012-09-12 14:55:26 +020036 wait_queue_head_t queue;
37 spinlock_t lock;
38 unsigned int pointer_read;
39 unsigned int pointer_write;
Jens Taprogge70a32812012-09-12 14:55:26 +020040 struct tty_port tty_port;
41 union scc2698_channel __iomem *regs;
42 union scc2698_block __iomem *block_regs;
Jens Taproggeef79de02012-09-12 14:55:28 +020043 unsigned int board_id;
Jens Taprogge4e4732a2012-09-12 14:55:29 +020044 u8 isr_rx_rdy_mask;
45 u8 isr_tx_rdy_mask;
Samuel Iglesias Gonsalvezb0d17fb2012-12-10 11:50:07 +010046 unsigned int rx_enable;
Jens Taprogge70a32812012-09-12 14:55:26 +020047};
48
Samuel Iglesias Gonsalvezba4dc612012-05-09 15:27:21 +020049struct ipoctal {
Samuel Iglesias Gonsalvezba4dc612012-05-09 15:27:21 +020050 struct ipack_device *dev;
51 unsigned int board_id;
Jens Taprogge70a32812012-09-12 14:55:26 +020052 struct ipoctal_channel channel[NR_CHANNELS];
Samuel Iglesias Gonsalvezba4dc612012-05-09 15:27:21 +020053 struct tty_driver *tty_drv;
Jens Taproggefe4a3ed2012-09-27 12:37:36 +020054 u8 __iomem *mem8_space;
Jens Taprogge402228d2012-09-27 12:37:34 +020055 u8 __iomem *int_space;
Samuel Iglesias Gonsalvezba4dc612012-05-09 15:27:21 +020056};
57
Samuel Iglesias Gonsalvezba4dc612012-05-09 15:27:21 +020058static int ipoctal_port_activate(struct tty_port *port, struct tty_struct *tty)
59{
Jens Taprogge70a32812012-09-12 14:55:26 +020060 struct ipoctal_channel *channel;
Samuel Iglesias Gonsalvezba4dc612012-05-09 15:27:21 +020061
Jens Taprogge9c1d7842012-09-12 14:55:42 +020062 channel = dev_get_drvdata(tty->dev);
Samuel Iglesias Gonsalvezba4dc612012-05-09 15:27:21 +020063
Samuel Iglesias Gonsalveza3882b72012-12-10 11:50:03 +010064 /*
65 * Enable RX. TX will be enabled when
66 * there is something to send
67 */
Jens Taprogge459e6d72012-09-12 14:55:27 +020068 iowrite8(CR_ENABLE_RX, &channel->regs->w.cr);
Samuel Iglesias Gonsalvezb0d17fb2012-12-10 11:50:07 +010069 channel->rx_enable = 1;
Samuel Iglesias Gonsalvezba4dc612012-05-09 15:27:21 +020070 return 0;
71}
72
73static int ipoctal_open(struct tty_struct *tty, struct file *file)
74{
Jens Taprogge70a32812012-09-12 14:55:26 +020075 struct ipoctal_channel *channel;
Samuel Iglesias Gonsalvezba4dc612012-05-09 15:27:21 +020076
Jens Taprogge9c1d7842012-09-12 14:55:42 +020077 channel = dev_get_drvdata(tty->dev);
Jens Taproggeef79de02012-09-12 14:55:28 +020078 tty->driver_data = channel;
Samuel Iglesias Gonsálvez1337b072012-07-13 13:33:13 +020079
Samuel Iglesias Gonsalvez7e5730d2012-12-10 11:49:59 +010080 return tty_port_open(&channel->tty_port, tty, file);
Samuel Iglesias Gonsalvezba4dc612012-05-09 15:27:21 +020081}
82
83static void ipoctal_reset_stats(struct ipoctal_stats *stats)
84{
85 stats->tx = 0;
86 stats->rx = 0;
87 stats->rcv_break = 0;
88 stats->framing_err = 0;
89 stats->overrun_err = 0;
90 stats->parity_err = 0;
91}
92
Jens Taproggeef79de02012-09-12 14:55:28 +020093static void ipoctal_free_channel(struct ipoctal_channel *channel)
Samuel Iglesias Gonsalvezba4dc612012-05-09 15:27:21 +020094{
Jens Taprogge70a32812012-09-12 14:55:26 +020095 ipoctal_reset_stats(&channel->stats);
96 channel->pointer_read = 0;
97 channel->pointer_write = 0;
98 channel->nb_bytes = 0;
Samuel Iglesias Gonsalvezba4dc612012-05-09 15:27:21 +020099}
100
101static void ipoctal_close(struct tty_struct *tty, struct file *filp)
102{
Jens Taproggeef79de02012-09-12 14:55:28 +0200103 struct ipoctal_channel *channel = tty->driver_data;
Samuel Iglesias Gonsalvezba4dc612012-05-09 15:27:21 +0200104
Jens Taprogge70a32812012-09-12 14:55:26 +0200105 tty_port_close(&channel->tty_port, tty, filp);
Samuel Iglesias Gonsalvez7e5730d2012-12-10 11:49:59 +0100106 ipoctal_free_channel(channel);
Samuel Iglesias Gonsalvezba4dc612012-05-09 15:27:21 +0200107}
108
109static int ipoctal_get_icount(struct tty_struct *tty,
110 struct serial_icounter_struct *icount)
111{
Jens Taproggeef79de02012-09-12 14:55:28 +0200112 struct ipoctal_channel *channel = tty->driver_data;
Samuel Iglesias Gonsalvezba4dc612012-05-09 15:27:21 +0200113
114 icount->cts = 0;
115 icount->dsr = 0;
116 icount->rng = 0;
117 icount->dcd = 0;
Jens Taprogge70a32812012-09-12 14:55:26 +0200118 icount->rx = channel->stats.rx;
119 icount->tx = channel->stats.tx;
120 icount->frame = channel->stats.framing_err;
121 icount->parity = channel->stats.parity_err;
122 icount->brk = channel->stats.rcv_break;
Samuel Iglesias Gonsalvezba4dc612012-05-09 15:27:21 +0200123 return 0;
124}
125
Jiri Slaby2e124b42013-01-03 15:53:06 +0100126static void ipoctal_irq_rx(struct ipoctal_channel *channel, u8 sr)
Samuel Iglesias Gonsalvezba4dc612012-05-09 15:27:21 +0200127{
Jiri Slaby92a19f92013-01-03 15:53:03 +0100128 struct tty_port *port = &channel->tty_port;
Samuel Iglesias Gonsalvezab0a71f2012-09-12 14:55:43 +0200129 unsigned char value;
Samuel Iglesias Gonsalvezb5071f22012-12-10 11:50:01 +0100130 unsigned char flag;
Samuel Iglesias Gonsalvezab0a71f2012-09-12 14:55:43 +0200131 u8 isr;
Jens Taprogge87cfb952012-09-12 14:55:30 +0200132
Samuel Iglesias Gonsalvezab0a71f2012-09-12 14:55:43 +0200133 do {
134 value = ioread8(&channel->regs->r.rhr);
Samuel Iglesias Gonsalvezb5071f22012-12-10 11:50:01 +0100135 flag = TTY_NORMAL;
Samuel Iglesias Gonsalvezab0a71f2012-09-12 14:55:43 +0200136 /* Error: count statistics */
137 if (sr & SR_ERROR) {
138 iowrite8(CR_CMD_RESET_ERR_STATUS, &channel->regs->w.cr);
Jens Taprogge87cfb952012-09-12 14:55:30 +0200139
Samuel Iglesias Gonsalvezab0a71f2012-09-12 14:55:43 +0200140 if (sr & SR_OVERRUN_ERROR) {
141 channel->stats.overrun_err++;
142 /* Overrun doesn't affect the current character*/
Jiri Slaby92a19f92013-01-03 15:53:03 +0100143 tty_insert_flip_char(port, 0, TTY_OVERRUN);
Samuel Iglesias Gonsalvezab0a71f2012-09-12 14:55:43 +0200144 }
145 if (sr & SR_PARITY_ERROR) {
146 channel->stats.parity_err++;
147 flag = TTY_PARITY;
148 }
149 if (sr & SR_FRAMING_ERROR) {
150 channel->stats.framing_err++;
151 flag = TTY_FRAME;
152 }
153 if (sr & SR_RECEIVED_BREAK) {
Samuel Iglesias Gonsalvez45141082012-09-13 12:32:22 +0200154 iowrite8(CR_CMD_RESET_BREAK_CHANGE, &channel->regs->w.cr);
Samuel Iglesias Gonsalvezab0a71f2012-09-12 14:55:43 +0200155 channel->stats.rcv_break++;
156 flag = TTY_BREAK;
157 }
Jens Taprogge87cfb952012-09-12 14:55:30 +0200158 }
Jiri Slaby92a19f92013-01-03 15:53:03 +0100159 tty_insert_flip_char(port, value, flag);
Jens Taprogge87cfb952012-09-12 14:55:30 +0200160
Samuel Iglesias Gonsalvezab0a71f2012-09-12 14:55:43 +0200161 /* Check if there are more characters in RX FIFO
162 * If there are more, the isr register for this channel
163 * has enabled the RxRDY|FFULL bit.
164 */
165 isr = ioread8(&channel->block_regs->r.isr);
166 sr = ioread8(&channel->regs->r.sr);
167 } while (isr & channel->isr_rx_rdy_mask);
168
Jiri Slaby2e124b42013-01-03 15:53:06 +0100169 tty_flip_buffer_push(port);
Jens Taprogge87cfb952012-09-12 14:55:30 +0200170}
171
172static void ipoctal_irq_tx(struct ipoctal_channel *channel)
173{
Samuel Iglesias Gonsalvezba4dc612012-05-09 15:27:21 +0200174 unsigned char value;
Jens Taprogge87cfb952012-09-12 14:55:30 +0200175 unsigned int *pointer_write = &channel->pointer_write;
Samuel Iglesias Gonsalvezba4dc612012-05-09 15:27:21 +0200176
Alberto Garcia69a6b9b2012-12-10 11:49:58 +0100177 if (channel->nb_bytes == 0)
Jens Taprogge87cfb952012-09-12 14:55:30 +0200178 return;
Samuel Iglesias Gonsalvezba4dc612012-05-09 15:27:21 +0200179
Jens Taprogge87cfb952012-09-12 14:55:30 +0200180 value = channel->tty_port.xmit_buf[*pointer_write];
181 iowrite8(value, &channel->regs->w.thr);
182 channel->stats.tx++;
Jens Taprogge87cfb952012-09-12 14:55:30 +0200183 (*pointer_write)++;
184 *pointer_write = *pointer_write % PAGE_SIZE;
185 channel->nb_bytes--;
Jens Taprogge87cfb952012-09-12 14:55:30 +0200186}
187
188static void ipoctal_irq_channel(struct ipoctal_channel *channel)
189{
190 u8 isr, sr;
Jens Taprogge87cfb952012-09-12 14:55:30 +0200191
Samuel Iglesias Gonsalveze7e664f2012-12-10 11:50:05 +0100192 spin_lock(&channel->lock);
Jens Taprogge87cfb952012-09-12 14:55:30 +0200193 /* The HW is organized in pair of channels. See which register we need
194 * to read from */
195 isr = ioread8(&channel->block_regs->r.isr);
196 sr = ioread8(&channel->regs->r.sr);
197
Samuel Iglesias Gonsalvez9d01b6f2012-12-10 11:50:02 +0100198 if ((sr & SR_TX_EMPTY) && (channel->nb_bytes == 0)) {
Jens Taprogge87cfb952012-09-12 14:55:30 +0200199 iowrite8(CR_DISABLE_TX, &channel->regs->w.cr);
Samuel Iglesias Gonsalvez9d01b6f2012-12-10 11:50:02 +0100200 /* In case of RS-485, change from TX to RX when finishing TX.
201 * Half-duplex. */
202 if (channel->board_id == IPACK1_DEVICE_ID_SBS_OCTAL_485) {
203 iowrite8(CR_CMD_NEGATE_RTSN, &channel->regs->w.cr);
204 iowrite8(CR_ENABLE_RX, &channel->regs->w.cr);
Samuel Iglesias Gonsalvez2910fe22013-01-18 08:57:21 +0100205 channel->rx_enable = 1;
Samuel Iglesias Gonsalvez9d01b6f2012-12-10 11:50:02 +0100206 }
Jens Taprogge87cfb952012-09-12 14:55:30 +0200207 }
208
209 /* RX data */
210 if ((isr & channel->isr_rx_rdy_mask) && (sr & SR_RX_READY))
Jiri Slaby2e124b42013-01-03 15:53:06 +0100211 ipoctal_irq_rx(channel, sr);
Jens Taprogge87cfb952012-09-12 14:55:30 +0200212
213 /* TX of each character */
214 if ((isr & channel->isr_tx_rdy_mask) && (sr & SR_TX_READY))
215 ipoctal_irq_tx(channel);
216
Samuel Iglesias Gonsalveze7e664f2012-12-10 11:50:05 +0100217 spin_unlock(&channel->lock);
Jens Taprogge87cfb952012-09-12 14:55:30 +0200218}
219
Jens Taproggefaa75c42012-09-12 14:55:38 +0200220static irqreturn_t ipoctal_irq_handler(void *arg)
Jens Taprogge87cfb952012-09-12 14:55:30 +0200221{
222 unsigned int i;
223 struct ipoctal *ipoctal = (struct ipoctal *) arg;
224
Jens Taproggeea991142012-09-13 12:32:20 +0200225 /* Clear the IPack device interrupt */
Jens Taprogge402228d2012-09-27 12:37:34 +0200226 readw(ipoctal->int_space + ACK_INT_REQ0);
227 readw(ipoctal->int_space + ACK_INT_REQ1);
Jens Taproggeea991142012-09-13 12:32:20 +0200228
Samuel Iglesias Gonsalvez21d27ed2012-12-10 11:50:04 +0100229 /* Check all channels */
230 for (i = 0; i < NR_CHANNELS; i++)
231 ipoctal_irq_channel(&ipoctal->channel[i]);
232
Samuel Iglesias Gonsalvezba4dc612012-05-09 15:27:21 +0200233 return IRQ_HANDLED;
234}
235
Samuel Iglesias Gonsalvezba4dc612012-05-09 15:27:21 +0200236static const struct tty_port_operations ipoctal_tty_port_ops = {
237 .dtr_rts = NULL,
238 .activate = ipoctal_port_activate,
239};
240
241static int ipoctal_inst_slot(struct ipoctal *ipoctal, unsigned int bus_nr,
Jens Taproggec6e2dfa2012-09-13 12:32:21 +0200242 unsigned int slot)
Samuel Iglesias Gonsalvezba4dc612012-05-09 15:27:21 +0200243{
Jens Taprogge402228d2012-09-27 12:37:34 +0200244 int res;
Samuel Iglesias Gonsalvezba4dc612012-05-09 15:27:21 +0200245 int i;
246 struct tty_driver *tty;
247 char name[20];
Jens Taprogge70a32812012-09-12 14:55:26 +0200248 struct ipoctal_channel *channel;
Jens Taprogge402228d2012-09-27 12:37:34 +0200249 struct ipack_region *region;
250 void __iomem *addr;
Jens Taprogge70a32812012-09-12 14:55:26 +0200251 union scc2698_channel __iomem *chan_regs;
252 union scc2698_block __iomem *block_regs;
Samuel Iglesias Gonsalvezba4dc612012-05-09 15:27:21 +0200253
Jens Taprogge2ec678d2012-09-27 12:37:33 +0200254 ipoctal->board_id = ipoctal->dev->id_device;
Samuel Iglesias Gonsalvezba4dc612012-05-09 15:27:21 +0200255
Jens Taprogge402228d2012-09-27 12:37:34 +0200256 region = &ipoctal->dev->region[IPACK_IO_SPACE];
257 addr = devm_ioremap_nocache(&ipoctal->dev->dev,
258 region->start, region->size);
259 if (!addr) {
Samuel Iglesias Gonsalvez42b38202012-05-25 13:08:13 +0200260 dev_err(&ipoctal->dev->dev,
261 "Unable to map slot [%d:%d] IO space!\n",
262 bus_nr, slot);
Jens Taprogge402228d2012-09-27 12:37:34 +0200263 return -EADDRNOTAVAIL;
Samuel Iglesias Gonsalvezba4dc612012-05-09 15:27:21 +0200264 }
Jens Taprogge402228d2012-09-27 12:37:34 +0200265 /* Save the virtual address to access the registers easily */
266 chan_regs =
267 (union scc2698_channel __iomem *) addr;
268 block_regs =
269 (union scc2698_block __iomem *) addr;
Samuel Iglesias Gonsalvezba4dc612012-05-09 15:27:21 +0200270
Jens Taprogge402228d2012-09-27 12:37:34 +0200271 region = &ipoctal->dev->region[IPACK_INT_SPACE];
272 ipoctal->int_space =
273 devm_ioremap_nocache(&ipoctal->dev->dev,
274 region->start, region->size);
275 if (!ipoctal->int_space) {
Jens Taproggeea991142012-09-13 12:32:20 +0200276 dev_err(&ipoctal->dev->dev,
277 "Unable to map slot [%d:%d] INT space!\n",
278 bus_nr, slot);
Jens Taprogge402228d2012-09-27 12:37:34 +0200279 return -EADDRNOTAVAIL;
Jens Taproggeea991142012-09-13 12:32:20 +0200280 }
281
Jens Taproggefe4a3ed2012-09-27 12:37:36 +0200282 region = &ipoctal->dev->region[IPACK_MEM8_SPACE];
283 ipoctal->mem8_space =
Jens Taprogge402228d2012-09-27 12:37:34 +0200284 devm_ioremap_nocache(&ipoctal->dev->dev,
285 region->start, 0x8000);
Julia Lawallfc8d7132013-01-21 14:02:53 +0100286 if (!ipoctal->mem8_space) {
Samuel Iglesias Gonsalvez42b38202012-05-25 13:08:13 +0200287 dev_err(&ipoctal->dev->dev,
Jens Taproggefe4a3ed2012-09-27 12:37:36 +0200288 "Unable to map slot [%d:%d] MEM8 space!\n",
Samuel Iglesias Gonsalvez42b38202012-05-25 13:08:13 +0200289 bus_nr, slot);
Jens Taprogge402228d2012-09-27 12:37:34 +0200290 return -EADDRNOTAVAIL;
Samuel Iglesias Gonsalvezba4dc612012-05-09 15:27:21 +0200291 }
292
Samuel Iglesias Gonsalvezba4dc612012-05-09 15:27:21 +0200293
294 /* Disable RX and TX before touching anything */
295 for (i = 0; i < NR_CHANNELS ; i++) {
Jens Taprogge70a32812012-09-12 14:55:26 +0200296 struct ipoctal_channel *channel = &ipoctal->channel[i];
297 channel->regs = chan_regs + i;
298 channel->block_regs = block_regs + (i >> 1);
Jens Taproggeef79de02012-09-12 14:55:28 +0200299 channel->board_id = ipoctal->board_id;
Jens Taprogge4e4732a2012-09-12 14:55:29 +0200300 if (i & 1) {
301 channel->isr_tx_rdy_mask = ISR_TxRDY_B;
302 channel->isr_rx_rdy_mask = ISR_RxRDY_FFULL_B;
303 } else {
304 channel->isr_tx_rdy_mask = ISR_TxRDY_A;
305 channel->isr_rx_rdy_mask = ISR_RxRDY_FFULL_A;
306 }
Jens Taprogge70a32812012-09-12 14:55:26 +0200307
Jens Taprogge459e6d72012-09-12 14:55:27 +0200308 iowrite8(CR_DISABLE_RX | CR_DISABLE_TX, &channel->regs->w.cr);
Samuel Iglesias Gonsalvezb0d17fb2012-12-10 11:50:07 +0100309 channel->rx_enable = 0;
Jens Taprogge459e6d72012-09-12 14:55:27 +0200310 iowrite8(CR_CMD_RESET_RX, &channel->regs->w.cr);
311 iowrite8(CR_CMD_RESET_TX, &channel->regs->w.cr);
312 iowrite8(MR1_CHRL_8_BITS | MR1_ERROR_CHAR | MR1_RxINT_RxRDY,
313 &channel->regs->w.mr); /* mr1 */
314 iowrite8(0, &channel->regs->w.mr); /* mr2 */
315 iowrite8(TX_CLK_9600 | RX_CLK_9600, &channel->regs->w.csr);
Samuel Iglesias Gonsalvezba4dc612012-05-09 15:27:21 +0200316 }
317
318 for (i = 0; i < IP_OCTAL_NB_BLOCKS; i++) {
Jens Taprogge459e6d72012-09-12 14:55:27 +0200319 iowrite8(ACR_BRG_SET2, &block_regs[i].w.acr);
320 iowrite8(OPCR_MPP_OUTPUT | OPCR_MPOa_RTSN | OPCR_MPOb_RTSN,
321 &block_regs[i].w.opcr);
322 iowrite8(IMR_TxRDY_A | IMR_RxRDY_FFULL_A | IMR_DELTA_BREAK_A |
323 IMR_TxRDY_B | IMR_RxRDY_FFULL_B | IMR_DELTA_BREAK_B,
324 &block_regs[i].w.imr);
Samuel Iglesias Gonsalvezba4dc612012-05-09 15:27:21 +0200325 }
326
327 /*
328 * IP-OCTAL has different addresses to copy its IRQ vector.
329 * Depending of the carrier these addresses are accesible or not.
330 * More info in the datasheet.
331 */
Jens Taproggec6e2dfa2012-09-13 12:32:21 +0200332 ipoctal->dev->bus->ops->request_irq(ipoctal->dev,
Samuel Iglesias Gonsalvezba4dc612012-05-09 15:27:21 +0200333 ipoctal_irq_handler, ipoctal);
Jens Taproggec6e2dfa2012-09-13 12:32:21 +0200334 /* Dummy write */
Jens Taproggefe4a3ed2012-09-27 12:37:36 +0200335 iowrite8(1, ipoctal->mem8_space + 1);
Samuel Iglesias Gonsalvezba4dc612012-05-09 15:27:21 +0200336
337 /* Register the TTY device */
338
339 /* Each IP-OCTAL channel is a TTY port */
340 tty = alloc_tty_driver(NR_CHANNELS);
341
Jens Taprogge402228d2012-09-27 12:37:34 +0200342 if (!tty)
343 return -ENOMEM;
Samuel Iglesias Gonsalvezba4dc612012-05-09 15:27:21 +0200344
345 /* Fill struct tty_driver with ipoctal data */
346 tty->owner = THIS_MODULE;
Jens Taprogge3f3a5922012-09-12 14:55:41 +0200347 tty->driver_name = KBUILD_MODNAME;
348 sprintf(name, KBUILD_MODNAME ".%d.%d.", bus_nr, slot);
Samuel Iglesias Gonsalvezba4dc612012-05-09 15:27:21 +0200349 tty->name = name;
350 tty->major = 0;
351
352 tty->minor_start = 0;
353 tty->type = TTY_DRIVER_TYPE_SERIAL;
354 tty->subtype = SERIAL_TYPE_NORMAL;
355 tty->flags = TTY_DRIVER_REAL_RAW | TTY_DRIVER_DYNAMIC_DEV;
356 tty->init_termios = tty_std_termios;
357 tty->init_termios.c_cflag = B9600 | CS8 | CREAD | HUPCL | CLOCAL;
358 tty->init_termios.c_ispeed = 9600;
359 tty->init_termios.c_ospeed = 9600;
360
361 tty_set_operations(tty, &ipoctal_fops);
362 res = tty_register_driver(tty);
363 if (res) {
Samuel Iglesias Gonsalvez42b38202012-05-25 13:08:13 +0200364 dev_err(&ipoctal->dev->dev, "Can't register tty driver.\n");
Samuel Iglesias Gonsalvezba4dc612012-05-09 15:27:21 +0200365 put_tty_driver(tty);
Jens Taprogge402228d2012-09-27 12:37:34 +0200366 return res;
Samuel Iglesias Gonsalvezba4dc612012-05-09 15:27:21 +0200367 }
368
369 /* Save struct tty_driver for use it when uninstalling the device */
370 ipoctal->tty_drv = tty;
371
372 for (i = 0; i < NR_CHANNELS; i++) {
Jens Taprogge2afb41d2012-09-12 14:55:40 +0200373 struct device *tty_dev;
374
Jens Taprogge70a32812012-09-12 14:55:26 +0200375 channel = &ipoctal->channel[i];
376 tty_port_init(&channel->tty_port);
377 tty_port_alloc_xmit_buf(&channel->tty_port);
378 channel->tty_port.ops = &ipoctal_tty_port_ops;
Samuel Iglesias Gonsalvezba4dc612012-05-09 15:27:21 +0200379
Jens Taprogge70a32812012-09-12 14:55:26 +0200380 ipoctal_reset_stats(&channel->stats);
381 channel->nb_bytes = 0;
Jens Taprogge70a32812012-09-12 14:55:26 +0200382 spin_lock_init(&channel->lock);
383 channel->pointer_read = 0;
384 channel->pointer_write = 0;
Linus Torvalds3498d132012-10-01 12:26:52 -0700385 tty_dev = tty_port_register_device(&channel->tty_port, tty, i, NULL);
Jens Taprogge2afb41d2012-09-12 14:55:40 +0200386 if (IS_ERR(tty_dev)) {
387 dev_err(&ipoctal->dev->dev, "Failed to register tty device.\n");
Jiri Slaby191c5f12012-11-15 09:49:56 +0100388 tty_port_destroy(&channel->tty_port);
Jens Taprogge2afb41d2012-09-12 14:55:40 +0200389 continue;
390 }
Jens Taprogge9c1d7842012-09-12 14:55:42 +0200391 dev_set_drvdata(tty_dev, channel);
Samuel Iglesias Gonsalvezba4dc612012-05-09 15:27:21 +0200392 }
393
394 return 0;
Samuel Iglesias Gonsalvezba4dc612012-05-09 15:27:21 +0200395}
396
Jens Taprogge70a32812012-09-12 14:55:26 +0200397static inline int ipoctal_copy_write_buffer(struct ipoctal_channel *channel,
Samuel Iglesias Gonsalvezba4dc612012-05-09 15:27:21 +0200398 const unsigned char *buf,
399 int count)
400{
401 unsigned long flags;
402 int i;
Jens Taprogge70a32812012-09-12 14:55:26 +0200403 unsigned int *pointer_read = &channel->pointer_read;
Samuel Iglesias Gonsalvezba4dc612012-05-09 15:27:21 +0200404
405 /* Copy the bytes from the user buffer to the internal one */
406 for (i = 0; i < count; i++) {
Jens Taprogge70a32812012-09-12 14:55:26 +0200407 if (i <= (PAGE_SIZE - channel->nb_bytes)) {
408 spin_lock_irqsave(&channel->lock, flags);
409 channel->tty_port.xmit_buf[*pointer_read] = buf[i];
Samuel Iglesias Gonsalvezba4dc612012-05-09 15:27:21 +0200410 *pointer_read = (*pointer_read + 1) % PAGE_SIZE;
Jens Taprogge70a32812012-09-12 14:55:26 +0200411 channel->nb_bytes++;
412 spin_unlock_irqrestore(&channel->lock, flags);
Samuel Iglesias Gonsalvezba4dc612012-05-09 15:27:21 +0200413 } else {
414 break;
415 }
416 }
417 return i;
418}
419
Jens Taprogge699a89f2012-09-12 14:55:31 +0200420static int ipoctal_write_tty(struct tty_struct *tty,
421 const unsigned char *buf, int count)
Samuel Iglesias Gonsalvezba4dc612012-05-09 15:27:21 +0200422{
Jens Taprogge699a89f2012-09-12 14:55:31 +0200423 struct ipoctal_channel *channel = tty->driver_data;
Samuel Iglesias Gonsalvezd0460062012-09-13 12:32:23 +0200424 unsigned int char_copied;
Jens Taprogge699a89f2012-09-12 14:55:31 +0200425
Samuel Iglesias Gonsalvezd0460062012-09-13 12:32:23 +0200426 char_copied = ipoctal_copy_write_buffer(channel, buf, count);
Samuel Iglesias Gonsalvezba4dc612012-05-09 15:27:21 +0200427
Samuel Iglesias Gonsalvezba4dc612012-05-09 15:27:21 +0200428 /* As the IP-OCTAL 485 only supports half duplex, do it manually */
Jens Taproggeef79de02012-09-12 14:55:28 +0200429 if (channel->board_id == IPACK1_DEVICE_ID_SBS_OCTAL_485) {
Jens Taprogge459e6d72012-09-12 14:55:27 +0200430 iowrite8(CR_DISABLE_RX, &channel->regs->w.cr);
Samuel Iglesias Gonsalvezb0d17fb2012-12-10 11:50:07 +0100431 channel->rx_enable = 0;
Jens Taprogge459e6d72012-09-12 14:55:27 +0200432 iowrite8(CR_CMD_ASSERT_RTSN, &channel->regs->w.cr);
Samuel Iglesias Gonsalvezba4dc612012-05-09 15:27:21 +0200433 }
434
435 /*
436 * Send a packet and then disable TX to avoid failure after several send
437 * operations
438 */
Jens Taprogge459e6d72012-09-12 14:55:27 +0200439 iowrite8(CR_ENABLE_TX, &channel->regs->w.cr);
Samuel Iglesias Gonsalvezd0460062012-09-13 12:32:23 +0200440 return char_copied;
Samuel Iglesias Gonsalvezba4dc612012-05-09 15:27:21 +0200441}
442
Samuel Iglesias Gonsalvezba4dc612012-05-09 15:27:21 +0200443static int ipoctal_write_room(struct tty_struct *tty)
444{
Jens Taproggeef79de02012-09-12 14:55:28 +0200445 struct ipoctal_channel *channel = tty->driver_data;
Samuel Iglesias Gonsalvezba4dc612012-05-09 15:27:21 +0200446
Jens Taprogge70a32812012-09-12 14:55:26 +0200447 return PAGE_SIZE - channel->nb_bytes;
Samuel Iglesias Gonsalvezba4dc612012-05-09 15:27:21 +0200448}
449
450static int ipoctal_chars_in_buffer(struct tty_struct *tty)
451{
Jens Taproggeef79de02012-09-12 14:55:28 +0200452 struct ipoctal_channel *channel = tty->driver_data;
Samuel Iglesias Gonsalvezba4dc612012-05-09 15:27:21 +0200453
Jens Taprogge70a32812012-09-12 14:55:26 +0200454 return channel->nb_bytes;
Samuel Iglesias Gonsalvezba4dc612012-05-09 15:27:21 +0200455}
456
457static void ipoctal_set_termios(struct tty_struct *tty,
458 struct ktermios *old_termios)
459{
460 unsigned int cflag;
461 unsigned char mr1 = 0;
462 unsigned char mr2 = 0;
463 unsigned char csr = 0;
Jens Taproggeef79de02012-09-12 14:55:28 +0200464 struct ipoctal_channel *channel = tty->driver_data;
Samuel Iglesias Gonsalvezba4dc612012-05-09 15:27:21 +0200465 speed_t baud;
466
Alan Cox857196e2012-07-26 19:00:51 +0100467 cflag = tty->termios.c_cflag;
Samuel Iglesias Gonsalvezba4dc612012-05-09 15:27:21 +0200468
469 /* Disable and reset everything before change the setup */
Jens Taprogge459e6d72012-09-12 14:55:27 +0200470 iowrite8(CR_DISABLE_RX | CR_DISABLE_TX, &channel->regs->w.cr);
471 iowrite8(CR_CMD_RESET_RX, &channel->regs->w.cr);
472 iowrite8(CR_CMD_RESET_TX, &channel->regs->w.cr);
473 iowrite8(CR_CMD_RESET_ERR_STATUS, &channel->regs->w.cr);
474 iowrite8(CR_CMD_RESET_MR, &channel->regs->w.cr);
Samuel Iglesias Gonsalvezba4dc612012-05-09 15:27:21 +0200475
476 /* Set Bits per chars */
477 switch (cflag & CSIZE) {
478 case CS6:
479 mr1 |= MR1_CHRL_6_BITS;
480 break;
481 case CS7:
482 mr1 |= MR1_CHRL_7_BITS;
483 break;
484 case CS8:
485 default:
486 mr1 |= MR1_CHRL_8_BITS;
487 /* By default, select CS8 */
Alan Cox857196e2012-07-26 19:00:51 +0100488 tty->termios.c_cflag = (cflag & ~CSIZE) | CS8;
Samuel Iglesias Gonsalvezba4dc612012-05-09 15:27:21 +0200489 break;
490 }
491
492 /* Set Parity */
493 if (cflag & PARENB)
494 if (cflag & PARODD)
495 mr1 |= MR1_PARITY_ON | MR1_PARITY_ODD;
496 else
497 mr1 |= MR1_PARITY_ON | MR1_PARITY_EVEN;
498 else
499 mr1 |= MR1_PARITY_OFF;
500
501 /* Mark or space parity is not supported */
Alan Cox857196e2012-07-26 19:00:51 +0100502 tty->termios.c_cflag &= ~CMSPAR;
Samuel Iglesias Gonsalvezba4dc612012-05-09 15:27:21 +0200503
504 /* Set stop bits */
505 if (cflag & CSTOPB)
506 mr2 |= MR2_STOP_BITS_LENGTH_2;
507 else
508 mr2 |= MR2_STOP_BITS_LENGTH_1;
509
510 /* Set the flow control */
Jens Taproggeef79de02012-09-12 14:55:28 +0200511 switch (channel->board_id) {
Jens Taprogge7db5e3c2012-09-04 17:01:16 +0200512 case IPACK1_DEVICE_ID_SBS_OCTAL_232:
Samuel Iglesias Gonsalvezba4dc612012-05-09 15:27:21 +0200513 if (cflag & CRTSCTS) {
514 mr1 |= MR1_RxRTS_CONTROL_ON;
515 mr2 |= MR2_TxRTS_CONTROL_OFF | MR2_CTS_ENABLE_TX_ON;
Samuel Iglesias Gonsalvezba4dc612012-05-09 15:27:21 +0200516 } else {
517 mr1 |= MR1_RxRTS_CONTROL_OFF;
518 mr2 |= MR2_TxRTS_CONTROL_OFF | MR2_CTS_ENABLE_TX_OFF;
Samuel Iglesias Gonsalvezba4dc612012-05-09 15:27:21 +0200519 }
520 break;
Jens Taprogge7db5e3c2012-09-04 17:01:16 +0200521 case IPACK1_DEVICE_ID_SBS_OCTAL_422:
Samuel Iglesias Gonsalvezba4dc612012-05-09 15:27:21 +0200522 mr1 |= MR1_RxRTS_CONTROL_OFF;
523 mr2 |= MR2_TxRTS_CONTROL_OFF | MR2_CTS_ENABLE_TX_OFF;
Samuel Iglesias Gonsalvezba4dc612012-05-09 15:27:21 +0200524 break;
Jens Taprogge7db5e3c2012-09-04 17:01:16 +0200525 case IPACK1_DEVICE_ID_SBS_OCTAL_485:
Samuel Iglesias Gonsalvezba4dc612012-05-09 15:27:21 +0200526 mr1 |= MR1_RxRTS_CONTROL_OFF;
527 mr2 |= MR2_TxRTS_CONTROL_ON | MR2_CTS_ENABLE_TX_OFF;
Samuel Iglesias Gonsalvezba4dc612012-05-09 15:27:21 +0200528 break;
529 default:
530 return;
531 break;
532 }
533
534 baud = tty_get_baud_rate(tty);
Alan Cox857196e2012-07-26 19:00:51 +0100535 tty_termios_encode_baud_rate(&tty->termios, baud, baud);
Samuel Iglesias Gonsalvezba4dc612012-05-09 15:27:21 +0200536
537 /* Set baud rate */
Alan Cox857196e2012-07-26 19:00:51 +0100538 switch (baud) {
Samuel Iglesias Gonsalvezba4dc612012-05-09 15:27:21 +0200539 case 75:
540 csr |= TX_CLK_75 | RX_CLK_75;
541 break;
542 case 110:
543 csr |= TX_CLK_110 | RX_CLK_110;
544 break;
545 case 150:
546 csr |= TX_CLK_150 | RX_CLK_150;
547 break;
548 case 300:
549 csr |= TX_CLK_300 | RX_CLK_300;
550 break;
551 case 600:
552 csr |= TX_CLK_600 | RX_CLK_600;
553 break;
554 case 1200:
555 csr |= TX_CLK_1200 | RX_CLK_1200;
556 break;
557 case 1800:
558 csr |= TX_CLK_1800 | RX_CLK_1800;
559 break;
560 case 2000:
561 csr |= TX_CLK_2000 | RX_CLK_2000;
562 break;
563 case 2400:
564 csr |= TX_CLK_2400 | RX_CLK_2400;
565 break;
566 case 4800:
567 csr |= TX_CLK_4800 | RX_CLK_4800;
568 break;
569 case 9600:
570 csr |= TX_CLK_9600 | RX_CLK_9600;
571 break;
572 case 19200:
573 csr |= TX_CLK_19200 | RX_CLK_19200;
574 break;
575 case 38400:
576 default:
577 csr |= TX_CLK_38400 | RX_CLK_38400;
578 /* In case of default, we establish 38400 bps */
Alan Cox857196e2012-07-26 19:00:51 +0100579 tty_termios_encode_baud_rate(&tty->termios, 38400, 38400);
Samuel Iglesias Gonsalvezba4dc612012-05-09 15:27:21 +0200580 break;
581 }
582
583 mr1 |= MR1_ERROR_CHAR;
584 mr1 |= MR1_RxINT_RxRDY;
585
586 /* Write the control registers */
Jens Taprogge459e6d72012-09-12 14:55:27 +0200587 iowrite8(mr1, &channel->regs->w.mr);
588 iowrite8(mr2, &channel->regs->w.mr);
589 iowrite8(csr, &channel->regs->w.csr);
Samuel Iglesias Gonsalvezba4dc612012-05-09 15:27:21 +0200590
Samuel Iglesias Gonsalvezb0d17fb2012-12-10 11:50:07 +0100591 /* Enable again the RX, if it was before */
592 if (channel->rx_enable)
593 iowrite8(CR_ENABLE_RX, &channel->regs->w.cr);
Samuel Iglesias Gonsalvezba4dc612012-05-09 15:27:21 +0200594}
595
596static void ipoctal_hangup(struct tty_struct *tty)
597{
598 unsigned long flags;
Jens Taproggeef79de02012-09-12 14:55:28 +0200599 struct ipoctal_channel *channel = tty->driver_data;
Samuel Iglesias Gonsalvezba4dc612012-05-09 15:27:21 +0200600
Jens Taproggeef79de02012-09-12 14:55:28 +0200601 if (channel == NULL)
Samuel Iglesias Gonsalvezba4dc612012-05-09 15:27:21 +0200602 return;
603
Jens Taprogge70a32812012-09-12 14:55:26 +0200604 spin_lock_irqsave(&channel->lock, flags);
605 channel->nb_bytes = 0;
606 channel->pointer_read = 0;
607 channel->pointer_write = 0;
608 spin_unlock_irqrestore(&channel->lock, flags);
Samuel Iglesias Gonsalvezba4dc612012-05-09 15:27:21 +0200609
Jens Taprogge70a32812012-09-12 14:55:26 +0200610 tty_port_hangup(&channel->tty_port);
Samuel Iglesias Gonsalvezba4dc612012-05-09 15:27:21 +0200611
Jens Taprogge459e6d72012-09-12 14:55:27 +0200612 iowrite8(CR_DISABLE_RX | CR_DISABLE_TX, &channel->regs->w.cr);
Samuel Iglesias Gonsalvezb0d17fb2012-12-10 11:50:07 +0100613 channel->rx_enable = 0;
Jens Taprogge459e6d72012-09-12 14:55:27 +0200614 iowrite8(CR_CMD_RESET_RX, &channel->regs->w.cr);
615 iowrite8(CR_CMD_RESET_TX, &channel->regs->w.cr);
616 iowrite8(CR_CMD_RESET_ERR_STATUS, &channel->regs->w.cr);
617 iowrite8(CR_CMD_RESET_MR, &channel->regs->w.cr);
Samuel Iglesias Gonsalvezba4dc612012-05-09 15:27:21 +0200618
Jens Taprogge70a32812012-09-12 14:55:26 +0200619 clear_bit(ASYNCB_INITIALIZED, &channel->tty_port.flags);
620 wake_up_interruptible(&channel->tty_port.open_wait);
Samuel Iglesias Gonsalvezba4dc612012-05-09 15:27:21 +0200621}
622
Samuel Iglesias Gonsalveze0f8d322012-12-10 11:50:08 +0100623static void ipoctal_shutdown(struct tty_struct *tty)
624{
625 struct ipoctal_channel *channel = tty->driver_data;
626
627 if (channel == NULL)
628 return;
629
630 iowrite8(CR_DISABLE_RX | CR_DISABLE_TX, &channel->regs->w.cr);
631 channel->rx_enable = 0;
632 iowrite8(CR_CMD_RESET_RX, &channel->regs->w.cr);
633 iowrite8(CR_CMD_RESET_TX, &channel->regs->w.cr);
634 iowrite8(CR_CMD_RESET_ERR_STATUS, &channel->regs->w.cr);
635 iowrite8(CR_CMD_RESET_MR, &channel->regs->w.cr);
636 clear_bit(ASYNCB_INITIALIZED, &channel->tty_port.flags);
637}
638
Samuel Iglesias Gonsalvezba4dc612012-05-09 15:27:21 +0200639static const struct tty_operations ipoctal_fops = {
640 .ioctl = NULL,
641 .open = ipoctal_open,
642 .close = ipoctal_close,
643 .write = ipoctal_write_tty,
644 .set_termios = ipoctal_set_termios,
645 .write_room = ipoctal_write_room,
646 .chars_in_buffer = ipoctal_chars_in_buffer,
647 .get_icount = ipoctal_get_icount,
648 .hangup = ipoctal_hangup,
Samuel Iglesias Gonsalveze0f8d322012-12-10 11:50:08 +0100649 .shutdown = ipoctal_shutdown,
Samuel Iglesias Gonsalvezba4dc612012-05-09 15:27:21 +0200650};
651
Samuel Iglesias Gonsalvezba4dc612012-05-09 15:27:21 +0200652static int ipoctal_probe(struct ipack_device *dev)
653{
654 int res;
655 struct ipoctal *ipoctal;
656
657 ipoctal = kzalloc(sizeof(struct ipoctal), GFP_KERNEL);
658 if (ipoctal == NULL)
659 return -ENOMEM;
660
661 ipoctal->dev = dev;
Jens Taproggef9e314d2012-09-27 12:37:25 +0200662 res = ipoctal_inst_slot(ipoctal, dev->bus->bus_nr, dev->slot);
Samuel Iglesias Gonsalvezba4dc612012-05-09 15:27:21 +0200663 if (res)
664 goto out_uninst;
665
Jens Taprogge1adda492012-09-12 14:55:39 +0200666 dev_set_drvdata(&dev->dev, ipoctal);
Samuel Iglesias Gonsalvezba4dc612012-05-09 15:27:21 +0200667 return 0;
668
669out_uninst:
670 kfree(ipoctal);
671 return res;
672}
673
674static void __ipoctal_remove(struct ipoctal *ipoctal)
675{
676 int i;
677
Samuel Iglesias Gonsálvez690949e2012-09-11 13:35:08 +0200678 ipoctal->dev->bus->ops->free_irq(ipoctal->dev);
679
Samuel Iglesias Gonsalvezba4dc612012-05-09 15:27:21 +0200680 for (i = 0; i < NR_CHANNELS; i++) {
Jens Taprogge70a32812012-09-12 14:55:26 +0200681 struct ipoctal_channel *channel = &ipoctal->channel[i];
Samuel Iglesias Gonsalvezba4dc612012-05-09 15:27:21 +0200682 tty_unregister_device(ipoctal->tty_drv, i);
Jens Taprogge70a32812012-09-12 14:55:26 +0200683 tty_port_free_xmit_buf(&channel->tty_port);
Jiri Slaby191c5f12012-11-15 09:49:56 +0100684 tty_port_destroy(&channel->tty_port);
Samuel Iglesias Gonsalvezba4dc612012-05-09 15:27:21 +0200685 }
686
687 tty_unregister_driver(ipoctal->tty_drv);
688 put_tty_driver(ipoctal->tty_drv);
Samuel Iglesias Gonsalvezba4dc612012-05-09 15:27:21 +0200689 kfree(ipoctal);
690}
691
Jens Taprogge1adda492012-09-12 14:55:39 +0200692static void ipoctal_remove(struct ipack_device *idev)
Samuel Iglesias Gonsalvezba4dc612012-05-09 15:27:21 +0200693{
Jens Taprogge1adda492012-09-12 14:55:39 +0200694 __ipoctal_remove(dev_get_drvdata(&idev->dev));
Samuel Iglesias Gonsalvezba4dc612012-05-09 15:27:21 +0200695}
696
Jens Taproggefdfc8cf2012-09-04 17:01:18 +0200697static DEFINE_IPACK_DEVICE_TABLE(ipoctal_ids) = {
698 { IPACK_DEVICE(IPACK_ID_VERSION_1, IPACK1_VENDOR_ID_SBS,
699 IPACK1_DEVICE_ID_SBS_OCTAL_232) },
700 { IPACK_DEVICE(IPACK_ID_VERSION_1, IPACK1_VENDOR_ID_SBS,
701 IPACK1_DEVICE_ID_SBS_OCTAL_422) },
702 { IPACK_DEVICE(IPACK_ID_VERSION_1, IPACK1_VENDOR_ID_SBS,
703 IPACK1_DEVICE_ID_SBS_OCTAL_485) },
704 { 0, },
705};
706
707MODULE_DEVICE_TABLE(ipack, ipoctal_ids);
708
Jens Taproggee8011132012-09-04 17:01:17 +0200709static const struct ipack_driver_ops ipoctal_drv_ops = {
Jens Taprogge4aa09d42012-09-04 17:01:19 +0200710 .probe = ipoctal_probe,
Samuel Iglesias Gonsalvezba4dc612012-05-09 15:27:21 +0200711 .remove = ipoctal_remove,
712};
713
Jens Taproggee8011132012-09-04 17:01:17 +0200714static struct ipack_driver driver = {
715 .ops = &ipoctal_drv_ops,
Jens Taproggefdfc8cf2012-09-04 17:01:18 +0200716 .id_table = ipoctal_ids,
Jens Taproggee8011132012-09-04 17:01:17 +0200717};
718
Samuel Iglesias Gonsalvezba4dc612012-05-09 15:27:21 +0200719static int __init ipoctal_init(void)
720{
Samuel Iglesias Gonsalvezec440332012-05-18 11:10:05 +0200721 return ipack_driver_register(&driver, THIS_MODULE, KBUILD_MODNAME);
Samuel Iglesias Gonsalvezba4dc612012-05-09 15:27:21 +0200722}
723
724static void __exit ipoctal_exit(void)
725{
Samuel Iglesias Gonsalvezba4dc612012-05-09 15:27:21 +0200726 ipack_driver_unregister(&driver);
727}
728
729MODULE_DESCRIPTION("IP-Octal 232, 422 and 485 device driver");
730MODULE_LICENSE("GPL");
731
732module_init(ipoctal_init);
733module_exit(ipoctal_exit);