| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | /* | 
|  | 2 | * Moxa C101 synchronous serial card driver for Linux | 
|  | 3 | * | 
|  | 4 | * Copyright (C) 2000-2003 Krzysztof Halasa <khc@pm.waw.pl> | 
|  | 5 | * | 
|  | 6 | * This program is free software; you can redistribute it and/or modify it | 
|  | 7 | * under the terms of version 2 of the GNU General Public License | 
|  | 8 | * as published by the Free Software Foundation. | 
|  | 9 | * | 
| Krzysztof Halasa | 467c432 | 2006-06-26 21:36:52 +0200 | [diff] [blame] | 10 | * For information see <http://www.kernel.org/pub/linux/utils/net/hdlc/> | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 11 | * | 
|  | 12 | * Sources of information: | 
|  | 13 | *    Hitachi HD64570 SCA User's Manual | 
|  | 14 | *    Moxa C101 User's Manual | 
|  | 15 | */ | 
|  | 16 |  | 
|  | 17 | #include <linux/module.h> | 
|  | 18 | #include <linux/kernel.h> | 
|  | 19 | #include <linux/slab.h> | 
|  | 20 | #include <linux/types.h> | 
|  | 21 | #include <linux/string.h> | 
|  | 22 | #include <linux/errno.h> | 
|  | 23 | #include <linux/init.h> | 
|  | 24 | #include <linux/moduleparam.h> | 
|  | 25 | #include <linux/netdevice.h> | 
|  | 26 | #include <linux/hdlc.h> | 
|  | 27 | #include <linux/delay.h> | 
|  | 28 | #include <asm/io.h> | 
|  | 29 |  | 
|  | 30 | #include "hd64570.h" | 
|  | 31 |  | 
|  | 32 |  | 
|  | 33 | static const char* version = "Moxa C101 driver version: 1.15"; | 
|  | 34 | static const char* devname = "C101"; | 
|  | 35 |  | 
|  | 36 | #undef DEBUG_PKT | 
|  | 37 | #define DEBUG_RINGS | 
|  | 38 |  | 
|  | 39 | #define C101_PAGE 0x1D00 | 
|  | 40 | #define C101_DTR 0x1E00 | 
|  | 41 | #define C101_SCA 0x1F00 | 
|  | 42 | #define C101_WINDOW_SIZE 0x2000 | 
|  | 43 | #define C101_MAPPED_RAM_SIZE 0x4000 | 
|  | 44 |  | 
|  | 45 | #define RAM_SIZE (256 * 1024) | 
|  | 46 | #define TX_RING_BUFFERS 10 | 
|  | 47 | #define RX_RING_BUFFERS ((RAM_SIZE - C101_WINDOW_SIZE) /		\ | 
|  | 48 | (sizeof(pkt_desc) + HDLC_MAX_MRU) - TX_RING_BUFFERS) | 
|  | 49 |  | 
|  | 50 | #define CLOCK_BASE 9830400	/* 9.8304 MHz */ | 
|  | 51 | #define PAGE0_ALWAYS_MAPPED | 
|  | 52 |  | 
|  | 53 | static char *hw;		/* pointer to hw=xxx command line string */ | 
|  | 54 |  | 
|  | 55 |  | 
|  | 56 | typedef struct card_s { | 
|  | 57 | struct net_device *dev; | 
|  | 58 | spinlock_t lock;	/* TX lock */ | 
|  | 59 | u8 __iomem *win0base;	/* ISA window base address */ | 
|  | 60 | u32 phy_winbase;	/* ISA physical base address */ | 
|  | 61 | sync_serial_settings settings; | 
|  | 62 | int rxpart;		/* partial frame received, next frame invalid*/ | 
|  | 63 | unsigned short encoding; | 
|  | 64 | unsigned short parity; | 
|  | 65 | u16 rx_ring_buffers;	/* number of buffers in a ring */ | 
|  | 66 | u16 tx_ring_buffers; | 
|  | 67 | u16 buff_offset;	/* offset of first buffer of first channel */ | 
|  | 68 | u16 rxin;		/* rx ring buffer 'in' pointer */ | 
|  | 69 | u16 txin;		/* tx ring buffer 'in' and 'last' pointers */ | 
|  | 70 | u16 txlast; | 
|  | 71 | u8 rxs, txs, tmc;	/* SCA registers */ | 
|  | 72 | u8 irq;			/* IRQ (3-15) */ | 
|  | 73 | u8 page; | 
|  | 74 |  | 
|  | 75 | struct card_s *next_card; | 
|  | 76 | }card_t; | 
|  | 77 |  | 
|  | 78 | typedef card_t port_t; | 
|  | 79 |  | 
|  | 80 | static card_t *first_card; | 
|  | 81 | static card_t **new_card = &first_card; | 
|  | 82 |  | 
|  | 83 |  | 
|  | 84 | #define sca_in(reg, card)	   readb((card)->win0base + C101_SCA + (reg)) | 
|  | 85 | #define sca_out(value, reg, card)  writeb(value, (card)->win0base + C101_SCA + (reg)) | 
|  | 86 | #define sca_inw(reg, card)	   readw((card)->win0base + C101_SCA + (reg)) | 
|  | 87 |  | 
|  | 88 | /* EDA address register must be set in EDAL, EDAH order - 8 bit ISA bus */ | 
|  | 89 | #define sca_outw(value, reg, card) do { \ | 
|  | 90 | writeb(value & 0xFF, (card)->win0base + C101_SCA + (reg)); \ | 
|  | 91 | writeb((value >> 8 ) & 0xFF, (card)->win0base + C101_SCA + (reg+1));\ | 
|  | 92 | } while(0) | 
|  | 93 |  | 
|  | 94 | #define port_to_card(port)	   (port) | 
|  | 95 | #define log_node(port)		   (0) | 
|  | 96 | #define phy_node(port)		   (0) | 
|  | 97 | #define winsize(card)		   (C101_WINDOW_SIZE) | 
|  | 98 | #define win0base(card)		   ((card)->win0base) | 
|  | 99 | #define winbase(card)      	   ((card)->win0base + 0x2000) | 
|  | 100 | #define get_port(card, port)	   (card) | 
|  | 101 | static void sca_msci_intr(port_t *port); | 
|  | 102 |  | 
|  | 103 |  | 
|  | 104 | static inline u8 sca_get_page(card_t *card) | 
|  | 105 | { | 
|  | 106 | return card->page; | 
|  | 107 | } | 
|  | 108 |  | 
|  | 109 | static inline void openwin(card_t *card, u8 page) | 
|  | 110 | { | 
|  | 111 | card->page = page; | 
|  | 112 | writeb(page, card->win0base + C101_PAGE); | 
|  | 113 | } | 
|  | 114 |  | 
|  | 115 |  | 
|  | 116 | #include "hd6457x.c" | 
|  | 117 |  | 
|  | 118 |  | 
| Krzysztof Halasa | c2ce920 | 2006-07-12 13:46:12 -0700 | [diff] [blame] | 119 | static inline void set_carrier(port_t *port) | 
|  | 120 | { | 
| Krzysztof Halasa | a76b044 | 2006-08-16 01:52:23 +0200 | [diff] [blame] | 121 | if (!(sca_in(MSCI1_OFFSET + ST3, port) & ST3_DCD)) | 
| Krzysztof Halasa | c2ce920 | 2006-07-12 13:46:12 -0700 | [diff] [blame] | 122 | netif_carrier_on(port_to_dev(port)); | 
|  | 123 | else | 
|  | 124 | netif_carrier_off(port_to_dev(port)); | 
|  | 125 | } | 
|  | 126 |  | 
|  | 127 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 128 | static void sca_msci_intr(port_t *port) | 
|  | 129 | { | 
| Krzysztof Halasa | a76b044 | 2006-08-16 01:52:23 +0200 | [diff] [blame] | 130 | u8 stat = sca_in(MSCI0_OFFSET + ST1, port); /* read MSCI ST1 status */ | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 131 |  | 
| Krzysztof Halasa | a76b044 | 2006-08-16 01:52:23 +0200 | [diff] [blame] | 132 | /* Reset MSCI TX underrun and CDCD (ignored) status bit */ | 
|  | 133 | sca_out(stat & (ST1_UDRN | ST1_CDCD), MSCI0_OFFSET + ST1, port); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 134 |  | 
|  | 135 | if (stat & ST1_UDRN) { | 
| Krzysztof Halasa | c2ce920 | 2006-07-12 13:46:12 -0700 | [diff] [blame] | 136 | struct net_device_stats *stats = hdlc_stats(port_to_dev(port)); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 137 | stats->tx_errors++; /* TX Underrun error detected */ | 
|  | 138 | stats->tx_fifo_errors++; | 
|  | 139 | } | 
|  | 140 |  | 
| Krzysztof Halasa | a76b044 | 2006-08-16 01:52:23 +0200 | [diff] [blame] | 141 | stat = sca_in(MSCI1_OFFSET + ST1, port); /* read MSCI1 ST1 status */ | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 142 | /* Reset MSCI CDCD status bit - uses ch#2 DCD input */ | 
| Krzysztof Halasa | c2ce920 | 2006-07-12 13:46:12 -0700 | [diff] [blame] | 143 | sca_out(stat & ST1_CDCD, MSCI1_OFFSET + ST1, port); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 144 |  | 
|  | 145 | if (stat & ST1_CDCD) | 
| Krzysztof Halasa | c2ce920 | 2006-07-12 13:46:12 -0700 | [diff] [blame] | 146 | set_carrier(port); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 147 | } | 
|  | 148 |  | 
|  | 149 |  | 
|  | 150 | static void c101_set_iface(port_t *port) | 
|  | 151 | { | 
|  | 152 | u8 rxs = port->rxs & CLK_BRG_MASK; | 
|  | 153 | u8 txs = port->txs & CLK_BRG_MASK; | 
|  | 154 |  | 
|  | 155 | switch(port->settings.clock_type) { | 
|  | 156 | case CLOCK_INT: | 
|  | 157 | rxs |= CLK_BRG_RX; /* TX clock */ | 
|  | 158 | txs |= CLK_RXCLK_TX; /* BRG output */ | 
|  | 159 | break; | 
|  | 160 |  | 
|  | 161 | case CLOCK_TXINT: | 
|  | 162 | rxs |= CLK_LINE_RX; /* RXC input */ | 
|  | 163 | txs |= CLK_BRG_TX; /* BRG output */ | 
|  | 164 | break; | 
|  | 165 |  | 
|  | 166 | case CLOCK_TXFROMRX: | 
|  | 167 | rxs |= CLK_LINE_RX; /* RXC input */ | 
|  | 168 | txs |= CLK_RXCLK_TX; /* RX clock */ | 
|  | 169 | break; | 
|  | 170 |  | 
|  | 171 | default:	/* EXTernal clock */ | 
|  | 172 | rxs |= CLK_LINE_RX; /* RXC input */ | 
|  | 173 | txs |= CLK_LINE_TX; /* TXC input */ | 
|  | 174 | } | 
|  | 175 |  | 
|  | 176 | port->rxs = rxs; | 
|  | 177 | port->txs = txs; | 
|  | 178 | sca_out(rxs, MSCI1_OFFSET + RXS, port); | 
|  | 179 | sca_out(txs, MSCI1_OFFSET + TXS, port); | 
|  | 180 | sca_set_port(port); | 
|  | 181 | } | 
|  | 182 |  | 
|  | 183 |  | 
|  | 184 | static int c101_open(struct net_device *dev) | 
|  | 185 | { | 
|  | 186 | port_t *port = dev_to_port(dev); | 
|  | 187 | int result; | 
|  | 188 |  | 
|  | 189 | result = hdlc_open(dev); | 
|  | 190 | if (result) | 
|  | 191 | return result; | 
|  | 192 |  | 
|  | 193 | writeb(1, port->win0base + C101_DTR); | 
|  | 194 | sca_out(0, MSCI1_OFFSET + CTL, port); /* RTS uses ch#2 output */ | 
|  | 195 | sca_open(dev); | 
|  | 196 | /* DCD is connected to port 2 !@#$%^& - disable MSCI0 CDCD interrupt */ | 
|  | 197 | sca_out(IE1_UDRN, MSCI0_OFFSET + IE1, port); | 
|  | 198 | sca_out(IE0_TXINT, MSCI0_OFFSET + IE0, port); | 
|  | 199 |  | 
| Krzysztof Halasa | c2ce920 | 2006-07-12 13:46:12 -0700 | [diff] [blame] | 200 | set_carrier(port); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 201 |  | 
|  | 202 | /* enable MSCI1 CDCD interrupt */ | 
|  | 203 | sca_out(IE1_CDCD, MSCI1_OFFSET + IE1, port); | 
|  | 204 | sca_out(IE0_RXINTA, MSCI1_OFFSET + IE0, port); | 
|  | 205 | sca_out(0x48, IER0, port); /* TXINT #0 and RXINT #1 */ | 
|  | 206 | c101_set_iface(port); | 
|  | 207 | return 0; | 
|  | 208 | } | 
|  | 209 |  | 
|  | 210 |  | 
|  | 211 | static int c101_close(struct net_device *dev) | 
|  | 212 | { | 
|  | 213 | port_t *port = dev_to_port(dev); | 
|  | 214 |  | 
|  | 215 | sca_close(dev); | 
|  | 216 | writeb(0, port->win0base + C101_DTR); | 
|  | 217 | sca_out(CTL_NORTS, MSCI1_OFFSET + CTL, port); | 
|  | 218 | hdlc_close(dev); | 
|  | 219 | return 0; | 
|  | 220 | } | 
|  | 221 |  | 
|  | 222 |  | 
|  | 223 | static int c101_ioctl(struct net_device *dev, struct ifreq *ifr, int cmd) | 
|  | 224 | { | 
|  | 225 | const size_t size = sizeof(sync_serial_settings); | 
|  | 226 | sync_serial_settings new_line; | 
|  | 227 | sync_serial_settings __user *line = ifr->ifr_settings.ifs_ifsu.sync; | 
|  | 228 | port_t *port = dev_to_port(dev); | 
|  | 229 |  | 
|  | 230 | #ifdef DEBUG_RINGS | 
|  | 231 | if (cmd == SIOCDEVPRIVATE) { | 
|  | 232 | sca_dump_rings(dev); | 
|  | 233 | printk(KERN_DEBUG "MSCI1: ST: %02x %02x %02x %02x\n", | 
|  | 234 | sca_in(MSCI1_OFFSET + ST0, port), | 
|  | 235 | sca_in(MSCI1_OFFSET + ST1, port), | 
|  | 236 | sca_in(MSCI1_OFFSET + ST2, port), | 
|  | 237 | sca_in(MSCI1_OFFSET + ST3, port)); | 
|  | 238 | return 0; | 
|  | 239 | } | 
|  | 240 | #endif | 
|  | 241 | if (cmd != SIOCWANDEV) | 
|  | 242 | return hdlc_ioctl(dev, ifr, cmd); | 
|  | 243 |  | 
|  | 244 | switch(ifr->ifr_settings.type) { | 
|  | 245 | case IF_GET_IFACE: | 
|  | 246 | ifr->ifr_settings.type = IF_IFACE_SYNC_SERIAL; | 
|  | 247 | if (ifr->ifr_settings.size < size) { | 
|  | 248 | ifr->ifr_settings.size = size; /* data size wanted */ | 
|  | 249 | return -ENOBUFS; | 
|  | 250 | } | 
|  | 251 | if (copy_to_user(line, &port->settings, size)) | 
|  | 252 | return -EFAULT; | 
|  | 253 | return 0; | 
|  | 254 |  | 
|  | 255 | case IF_IFACE_SYNC_SERIAL: | 
|  | 256 | if(!capable(CAP_NET_ADMIN)) | 
|  | 257 | return -EPERM; | 
|  | 258 |  | 
|  | 259 | if (copy_from_user(&new_line, line, size)) | 
|  | 260 | return -EFAULT; | 
|  | 261 |  | 
|  | 262 | if (new_line.clock_type != CLOCK_EXT && | 
|  | 263 | new_line.clock_type != CLOCK_TXFROMRX && | 
|  | 264 | new_line.clock_type != CLOCK_INT && | 
|  | 265 | new_line.clock_type != CLOCK_TXINT) | 
|  | 266 | return -EINVAL;	/* No such clock setting */ | 
|  | 267 |  | 
|  | 268 | if (new_line.loopback != 0 && new_line.loopback != 1) | 
|  | 269 | return -EINVAL; | 
|  | 270 |  | 
|  | 271 | memcpy(&port->settings, &new_line, size); /* Update settings */ | 
|  | 272 | c101_set_iface(port); | 
|  | 273 | return 0; | 
|  | 274 |  | 
|  | 275 | default: | 
|  | 276 | return hdlc_ioctl(dev, ifr, cmd); | 
|  | 277 | } | 
|  | 278 | } | 
|  | 279 |  | 
|  | 280 |  | 
|  | 281 |  | 
|  | 282 | static void c101_destroy_card(card_t *card) | 
|  | 283 | { | 
|  | 284 | readb(card->win0base + C101_PAGE); /* Resets SCA? */ | 
|  | 285 |  | 
|  | 286 | if (card->irq) | 
|  | 287 | free_irq(card->irq, card); | 
|  | 288 |  | 
|  | 289 | if (card->win0base) { | 
|  | 290 | iounmap(card->win0base); | 
|  | 291 | release_mem_region(card->phy_winbase, C101_MAPPED_RAM_SIZE); | 
|  | 292 | } | 
|  | 293 |  | 
|  | 294 | free_netdev(card->dev); | 
|  | 295 |  | 
|  | 296 | kfree(card); | 
|  | 297 | } | 
|  | 298 |  | 
|  | 299 |  | 
|  | 300 |  | 
|  | 301 | static int __init c101_run(unsigned long irq, unsigned long winbase) | 
|  | 302 | { | 
|  | 303 | struct net_device *dev; | 
|  | 304 | hdlc_device *hdlc; | 
|  | 305 | card_t *card; | 
|  | 306 | int result; | 
|  | 307 |  | 
|  | 308 | if (irq<3 || irq>15 || irq == 6) /* FIXME */ { | 
|  | 309 | printk(KERN_ERR "c101: invalid IRQ value\n"); | 
|  | 310 | return -ENODEV; | 
|  | 311 | } | 
|  | 312 |  | 
|  | 313 | if (winbase < 0xC0000 || winbase > 0xDFFFF || (winbase & 0x3FFF) !=0) { | 
|  | 314 | printk(KERN_ERR "c101: invalid RAM value\n"); | 
|  | 315 | return -ENODEV; | 
|  | 316 | } | 
|  | 317 |  | 
|  | 318 | card = kmalloc(sizeof(card_t), GFP_KERNEL); | 
|  | 319 | if (card == NULL) { | 
|  | 320 | printk(KERN_ERR "c101: unable to allocate memory\n"); | 
|  | 321 | return -ENOBUFS; | 
|  | 322 | } | 
|  | 323 | memset(card, 0, sizeof(card_t)); | 
|  | 324 |  | 
|  | 325 | card->dev = alloc_hdlcdev(card); | 
|  | 326 | if (!card->dev) { | 
|  | 327 | printk(KERN_ERR "c101: unable to allocate memory\n"); | 
|  | 328 | kfree(card); | 
|  | 329 | return -ENOBUFS; | 
|  | 330 | } | 
|  | 331 |  | 
|  | 332 | if (request_irq(irq, sca_intr, 0, devname, card)) { | 
|  | 333 | printk(KERN_ERR "c101: could not allocate IRQ\n"); | 
|  | 334 | c101_destroy_card(card); | 
| Krzysztof Halasa | 4446065 | 2006-06-22 22:29:28 +0200 | [diff] [blame] | 335 | return -EBUSY; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 336 | } | 
|  | 337 | card->irq = irq; | 
|  | 338 |  | 
|  | 339 | if (!request_mem_region(winbase, C101_MAPPED_RAM_SIZE, devname)) { | 
|  | 340 | printk(KERN_ERR "c101: could not request RAM window\n"); | 
|  | 341 | c101_destroy_card(card); | 
| Krzysztof Halasa | 4446065 | 2006-06-22 22:29:28 +0200 | [diff] [blame] | 342 | return -EBUSY; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 343 | } | 
|  | 344 | card->phy_winbase = winbase; | 
|  | 345 | card->win0base = ioremap(winbase, C101_MAPPED_RAM_SIZE); | 
|  | 346 | if (!card->win0base) { | 
|  | 347 | printk(KERN_ERR "c101: could not map I/O address\n"); | 
|  | 348 | c101_destroy_card(card); | 
| Krzysztof Halasa | 4446065 | 2006-06-22 22:29:28 +0200 | [diff] [blame] | 349 | return -EFAULT; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 350 | } | 
|  | 351 |  | 
|  | 352 | card->tx_ring_buffers = TX_RING_BUFFERS; | 
|  | 353 | card->rx_ring_buffers = RX_RING_BUFFERS; | 
|  | 354 | card->buff_offset = C101_WINDOW_SIZE; /* Bytes 1D00-1FFF reserved */ | 
|  | 355 |  | 
|  | 356 | readb(card->win0base + C101_PAGE); /* Resets SCA? */ | 
|  | 357 | udelay(100); | 
|  | 358 | writeb(0, card->win0base + C101_PAGE); | 
|  | 359 | writeb(0, card->win0base + C101_DTR); /* Power-up for RAM? */ | 
|  | 360 |  | 
|  | 361 | sca_init(card, 0); | 
|  | 362 |  | 
|  | 363 | dev = port_to_dev(card); | 
|  | 364 | hdlc = dev_to_hdlc(dev); | 
|  | 365 |  | 
|  | 366 | spin_lock_init(&card->lock); | 
|  | 367 | SET_MODULE_OWNER(dev); | 
|  | 368 | dev->irq = irq; | 
|  | 369 | dev->mem_start = winbase; | 
|  | 370 | dev->mem_end = winbase + C101_MAPPED_RAM_SIZE - 1; | 
|  | 371 | dev->tx_queue_len = 50; | 
|  | 372 | dev->do_ioctl = c101_ioctl; | 
|  | 373 | dev->open = c101_open; | 
|  | 374 | dev->stop = c101_close; | 
|  | 375 | hdlc->attach = sca_attach; | 
|  | 376 | hdlc->xmit = sca_xmit; | 
|  | 377 | card->settings.clock_type = CLOCK_EXT; | 
|  | 378 |  | 
|  | 379 | result = register_hdlc_device(dev); | 
|  | 380 | if (result) { | 
|  | 381 | printk(KERN_WARNING "c101: unable to register hdlc device\n"); | 
|  | 382 | c101_destroy_card(card); | 
|  | 383 | return result; | 
|  | 384 | } | 
|  | 385 |  | 
|  | 386 | sca_init_sync_port(card); /* Set up C101 memory */ | 
| Krzysztof Halasa | c2ce920 | 2006-07-12 13:46:12 -0700 | [diff] [blame] | 387 | set_carrier(card); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 388 |  | 
|  | 389 | printk(KERN_INFO "%s: Moxa C101 on IRQ%u," | 
|  | 390 | " using %u TX + %u RX packets rings\n", | 
|  | 391 | dev->name, card->irq, | 
|  | 392 | card->tx_ring_buffers, card->rx_ring_buffers); | 
|  | 393 |  | 
|  | 394 | *new_card = card; | 
|  | 395 | new_card = &card->next_card; | 
|  | 396 | return 0; | 
|  | 397 | } | 
|  | 398 |  | 
|  | 399 |  | 
|  | 400 |  | 
|  | 401 | static int __init c101_init(void) | 
|  | 402 | { | 
|  | 403 | if (hw == NULL) { | 
|  | 404 | #ifdef MODULE | 
|  | 405 | printk(KERN_INFO "c101: no card initialized\n"); | 
|  | 406 | #endif | 
|  | 407 | return -ENOSYS;	/* no parameters specified, abort */ | 
|  | 408 | } | 
|  | 409 |  | 
|  | 410 | printk(KERN_INFO "%s\n", version); | 
|  | 411 |  | 
|  | 412 | do { | 
|  | 413 | unsigned long irq, ram; | 
|  | 414 |  | 
|  | 415 | irq = simple_strtoul(hw, &hw, 0); | 
|  | 416 |  | 
|  | 417 | if (*hw++ != ',') | 
|  | 418 | break; | 
|  | 419 | ram = simple_strtoul(hw, &hw, 0); | 
|  | 420 |  | 
|  | 421 | if (*hw == ':' || *hw == '\x0') | 
|  | 422 | c101_run(irq, ram); | 
|  | 423 |  | 
|  | 424 | if (*hw == '\x0') | 
|  | 425 | return first_card ? 0 : -ENOSYS; | 
|  | 426 | }while(*hw++ == ':'); | 
|  | 427 |  | 
|  | 428 | printk(KERN_ERR "c101: invalid hardware parameters\n"); | 
|  | 429 | return first_card ? 0 : -ENOSYS; | 
|  | 430 | } | 
|  | 431 |  | 
|  | 432 |  | 
|  | 433 | static void __exit c101_cleanup(void) | 
|  | 434 | { | 
|  | 435 | card_t *card = first_card; | 
|  | 436 |  | 
|  | 437 | while (card) { | 
|  | 438 | card_t *ptr = card; | 
|  | 439 | card = card->next_card; | 
|  | 440 | unregister_hdlc_device(port_to_dev(ptr)); | 
|  | 441 | c101_destroy_card(ptr); | 
|  | 442 | } | 
|  | 443 | } | 
|  | 444 |  | 
|  | 445 |  | 
|  | 446 | module_init(c101_init); | 
|  | 447 | module_exit(c101_cleanup); | 
|  | 448 |  | 
|  | 449 | MODULE_AUTHOR("Krzysztof Halasa <khc@pm.waw.pl>"); | 
|  | 450 | MODULE_DESCRIPTION("Moxa C101 serial port driver"); | 
|  | 451 | MODULE_LICENSE("GPL v2"); | 
| Krzysztof Halasa | 41b1d17 | 2006-07-21 14:41:36 -0700 | [diff] [blame] | 452 | module_param(hw, charp, 0444); | 
|  | 453 | MODULE_PARM_DESC(hw, "irq,ram:irq,..."); |