blob: f3e80722ba1de9c3ac0bb5a7f684bcf96a8eaac9 [file] [log] [blame]
Thomas Gleixner25763b32019-05-28 10:10:09 -07001// SPDX-License-Identifier: GPL-2.0-only
Linus Torvalds1da177e2005-04-16 15:20:36 -07002/*
3 * SDL Inc. RISCom/N2 synchronous serial card driver for Linux
4 *
5 * Copyright (C) 1998-2003 Krzysztof Halasa <khc@pm.waw.pl>
6 *
Alexander A. Klimovab274952020-07-13 11:33:23 +02007 * For information see <https://www.kernel.org/pub/linux/utils/net/hdlc/>
Linus Torvalds1da177e2005-04-16 15:20:36 -07008 *
9 * Note: integrated CSU/DSU/DDS are not supported by this driver
10 *
11 * Sources of information:
12 * Hitachi HD64570 SCA User's Manual
13 * SDL Inc. PPP/HDLC/CISCO driver
14 */
15
Joe Perches12a3bfe2011-06-26 19:01:28 +000016#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
17
Linus Torvalds1da177e2005-04-16 15:20:36 -070018#include <linux/module.h>
19#include <linux/kernel.h>
Ingo Molnar86ae13b2009-10-12 16:22:46 +020020#include <linux/capability.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070021#include <linux/slab.h>
22#include <linux/types.h>
23#include <linux/fcntl.h>
24#include <linux/in.h>
25#include <linux/string.h>
26#include <linux/errno.h>
27#include <linux/init.h>
28#include <linux/ioport.h>
29#include <linux/moduleparam.h>
30#include <linux/netdevice.h>
31#include <linux/hdlc.h>
32#include <asm/io.h>
33#include "hd64570.h"
34
Peng Lic4fdef92021-05-25 22:07:55 +080035static const char *version = "SDL RISCom/N2 driver version: 1.15";
36static const char *devname = "RISCom/N2";
Linus Torvalds1da177e2005-04-16 15:20:36 -070037
38#undef DEBUG_PKT
39#define DEBUG_RINGS
40
41#define USE_WINDOWSIZE 16384
42#define USE_BUS16BITS 1
43#define CLOCK_BASE 9830400 /* 9.8304 MHz */
44#define MAX_PAGES 16 /* 16 RAM pages at max */
45#define MAX_RAM_SIZE 0x80000 /* 512 KB */
46#if MAX_RAM_SIZE > MAX_PAGES * USE_WINDOWSIZE
47#undef MAX_RAM_SIZE
48#define MAX_RAM_SIZE (MAX_PAGES * USE_WINDOWSIZE)
49#endif
50#define N2_IOPORTS 0x10
51#define NEED_DETECT_RAM
52#define NEED_SCA_MSCI_INTR
53#define MAX_TX_BUFFERS 10
54
Krzysztof Hałasa88597362008-03-24 19:12:23 +010055static char *hw; /* pointer to hw=xxx command line string */
Linus Torvalds1da177e2005-04-16 15:20:36 -070056
57/* RISCom/N2 Board Registers */
58
59/* PC Control Register */
60#define N2_PCR 0
61#define PCR_RUNSCA 1 /* Run 64570 */
62#define PCR_VPM 2 /* Enable VPM - needed if using RAM above 1 MB */
63#define PCR_ENWIN 4 /* Open window */
64#define PCR_BUS16 8 /* 16-bit bus */
65
Linus Torvalds1da177e2005-04-16 15:20:36 -070066/* Memory Base Address Register */
67#define N2_BAR 2
68
Linus Torvalds1da177e2005-04-16 15:20:36 -070069/* Page Scan Register */
70#define N2_PSR 4
71#define WIN16K 0x00
72#define WIN32K 0x20
73#define WIN64K 0x40
74#define PSR_WINBITS 0x60
75#define PSR_DMAEN 0x80
76#define PSR_PAGEBITS 0x0F
77
Linus Torvalds1da177e2005-04-16 15:20:36 -070078/* Modem Control Reg */
79#define N2_MCR 6
80#define CLOCK_OUT_PORT1 0x80
81#define CLOCK_OUT_PORT0 0x40
82#define TX422_PORT1 0x20
83#define TX422_PORT0 0x10
84#define DSR_PORT1 0x08
85#define DSR_PORT0 0x04
86#define DTR_PORT1 0x02
87#define DTR_PORT0 0x01
88
Linus Torvalds1da177e2005-04-16 15:20:36 -070089typedef struct port_s {
90 struct net_device *dev;
91 struct card_s *card;
92 spinlock_t lock; /* TX lock */
93 sync_serial_settings settings;
94 int valid; /* port enabled */
95 int rxpart; /* partial frame received, next frame invalid*/
96 unsigned short encoding;
97 unsigned short parity;
98 u16 rxin; /* rx ring buffer 'in' pointer */
99 u16 txin; /* tx ring buffer 'in' and 'last' pointers */
100 u16 txlast;
101 u8 rxs, txs, tmc; /* SCA registers */
102 u8 phy_node; /* physical port # - 0 or 1 */
103 u8 log_node; /* logical port # */
Peng Li69542272021-05-25 22:07:56 +0800104} port_t;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700105
Linus Torvalds1da177e2005-04-16 15:20:36 -0700106typedef struct card_s {
107 u8 __iomem *winbase; /* ISA window base address */
108 u32 phy_winbase; /* ISA physical base address */
109 u32 ram_size; /* number of bytes */
110 u16 io; /* IO Base address */
111 u16 buff_offset; /* offset of first buffer of first channel */
112 u16 rx_ring_buffers; /* number of buffers in a ring */
113 u16 tx_ring_buffers;
114 u8 irq; /* IRQ (3-15) */
115
116 port_t ports[2];
117 struct card_s *next_card;
Peng Li69542272021-05-25 22:07:56 +0800118} card_t;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700119
Linus Torvalds1da177e2005-04-16 15:20:36 -0700120static card_t *first_card;
121static card_t **new_card = &first_card;
122
Linus Torvalds1da177e2005-04-16 15:20:36 -0700123#define sca_reg(reg, card) (0x8000 | (card)->io | \
124 ((reg) & 0x0F) | (((reg) & 0xF0) << 6))
125#define sca_in(reg, card) inb(sca_reg(reg, card))
126#define sca_out(value, reg, card) outb(value, sca_reg(reg, card))
127#define sca_inw(reg, card) inw(sca_reg(reg, card))
128#define sca_outw(value, reg, card) outw(value, sca_reg(reg, card))
129
130#define port_to_card(port) ((port)->card)
131#define log_node(port) ((port)->log_node)
132#define phy_node(port) ((port)->phy_node)
133#define winsize(card) (USE_WINDOWSIZE)
134#define winbase(card) ((card)->winbase)
135#define get_port(card, port) ((card)->ports[port].valid ? \
136 &(card)->ports[port] : NULL)
137
Linus Torvalds1da177e2005-04-16 15:20:36 -0700138static __inline__ u8 sca_get_page(card_t *card)
139{
140 return inb(card->io + N2_PSR) & PSR_PAGEBITS;
141}
142
Linus Torvalds1da177e2005-04-16 15:20:36 -0700143static __inline__ void openwin(card_t *card, u8 page)
144{
145 u8 psr = inb(card->io + N2_PSR);
Peng Li9e7ee102021-05-25 22:07:54 +0800146
Linus Torvalds1da177e2005-04-16 15:20:36 -0700147 outb((psr & ~PSR_PAGEBITS) | page, card->io + N2_PSR);
148}
149
Krzysztof Hałasa6b40aba2008-03-24 16:39:02 +0100150#include "hd64570.c"
Linus Torvalds1da177e2005-04-16 15:20:36 -0700151
Linus Torvalds1da177e2005-04-16 15:20:36 -0700152static void n2_set_iface(port_t *port)
153{
154 card_t *card = port->card;
155 int io = card->io;
156 u8 mcr = inb(io + N2_MCR);
157 u8 msci = get_msci(port);
158 u8 rxs = port->rxs & CLK_BRG_MASK;
159 u8 txs = port->txs & CLK_BRG_MASK;
160
Peng Li69542272021-05-25 22:07:56 +0800161 switch (port->settings.clock_type) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700162 case CLOCK_INT:
163 mcr |= port->phy_node ? CLOCK_OUT_PORT1 : CLOCK_OUT_PORT0;
164 rxs |= CLK_BRG_RX; /* BRG output */
165 txs |= CLK_RXCLK_TX; /* RX clock */
166 break;
167
168 case CLOCK_TXINT:
169 mcr |= port->phy_node ? CLOCK_OUT_PORT1 : CLOCK_OUT_PORT0;
170 rxs |= CLK_LINE_RX; /* RXC input */
171 txs |= CLK_BRG_TX; /* BRG output */
172 break;
173
174 case CLOCK_TXFROMRX:
175 mcr |= port->phy_node ? CLOCK_OUT_PORT1 : CLOCK_OUT_PORT0;
176 rxs |= CLK_LINE_RX; /* RXC input */
177 txs |= CLK_RXCLK_TX; /* RX clock */
178 break;
179
180 default: /* Clock EXTernal */
181 mcr &= port->phy_node ? ~CLOCK_OUT_PORT1 : ~CLOCK_OUT_PORT0;
182 rxs |= CLK_LINE_RX; /* RXC input */
183 txs |= CLK_LINE_TX; /* TXC input */
184 }
185
186 outb(mcr, io + N2_MCR);
187 port->rxs = rxs;
188 port->txs = txs;
189 sca_out(rxs, msci + RXS, card);
190 sca_out(txs, msci + TXS, card);
191 sca_set_port(port);
192}
193
Linus Torvalds1da177e2005-04-16 15:20:36 -0700194static int n2_open(struct net_device *dev)
195{
196 port_t *port = dev_to_port(dev);
197 int io = port->card->io;
Peng Li30cbb012021-05-25 22:07:58 +0800198 u8 mcr = inb(io + N2_MCR) |
199 (port->phy_node ? TX422_PORT1 : TX422_PORT0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700200 int result;
201
202 result = hdlc_open(dev);
203 if (result)
204 return result;
205
206 mcr &= port->phy_node ? ~DTR_PORT1 : ~DTR_PORT0; /* set DTR ON */
207 outb(mcr, io + N2_MCR);
208
209 outb(inb(io + N2_PCR) | PCR_ENWIN, io + N2_PCR); /* open window */
210 outb(inb(io + N2_PSR) | PSR_DMAEN, io + N2_PSR); /* enable dma */
211 sca_open(dev);
212 n2_set_iface(port);
213 return 0;
214}
215
Linus Torvalds1da177e2005-04-16 15:20:36 -0700216static int n2_close(struct net_device *dev)
217{
218 port_t *port = dev_to_port(dev);
219 int io = port->card->io;
Peng Li30cbb012021-05-25 22:07:58 +0800220 u8 mcr = inb(io + N2_MCR) |
221 (port->phy_node ? TX422_PORT1 : TX422_PORT0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700222
223 sca_close(dev);
224 mcr |= port->phy_node ? DTR_PORT1 : DTR_PORT0; /* set DTR OFF */
225 outb(mcr, io + N2_MCR);
226 hdlc_close(dev);
227 return 0;
228}
229
Arnd Bergmann73d74f62021-07-27 15:45:10 +0200230static int n2_siocdevprivate(struct net_device *dev, struct ifreq *ifr,
231 void __user *data, int cmd)
232{
233#ifdef DEBUG_RINGS
234 if (cmd == SIOCDEVPRIVATE) {
235 sca_dump_rings(dev);
236 return 0;
237 }
238#endif
239 return -EOPNOTSUPP;
240}
241
Arnd Bergmannad7eab2a2021-07-27 15:45:14 +0200242static int n2_ioctl(struct net_device *dev, struct if_settings *ifs)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700243{
244 const size_t size = sizeof(sync_serial_settings);
245 sync_serial_settings new_line;
Arnd Bergmannad7eab2a2021-07-27 15:45:14 +0200246 sync_serial_settings __user *line = ifs->ifs_ifsu.sync;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700247 port_t *port = dev_to_port(dev);
248
Arnd Bergmannad7eab2a2021-07-27 15:45:14 +0200249 switch (ifs->type) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700250 case IF_GET_IFACE:
Arnd Bergmannad7eab2a2021-07-27 15:45:14 +0200251 ifs->type = IF_IFACE_SYNC_SERIAL;
252 if (ifs->size < size) {
253 ifs->size = size; /* data size wanted */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700254 return -ENOBUFS;
255 }
256 if (copy_to_user(line, &port->settings, size))
257 return -EFAULT;
258 return 0;
259
260 case IF_IFACE_SYNC_SERIAL:
Peng Li69542272021-05-25 22:07:56 +0800261 if (!capable(CAP_NET_ADMIN))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700262 return -EPERM;
263
264 if (copy_from_user(&new_line, line, size))
265 return -EFAULT;
266
267 if (new_line.clock_type != CLOCK_EXT &&
268 new_line.clock_type != CLOCK_TXFROMRX &&
269 new_line.clock_type != CLOCK_INT &&
270 new_line.clock_type != CLOCK_TXINT)
Julia Lawall354c8e32010-08-05 10:17:00 +0000271 return -EINVAL; /* No such clock setting */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700272
273 if (new_line.loopback != 0 && new_line.loopback != 1)
274 return -EINVAL;
275
276 memcpy(&port->settings, &new_line, size); /* Update settings */
277 n2_set_iface(port);
278 return 0;
279
280 default:
Arnd Bergmannad7eab2a2021-07-27 15:45:14 +0200281 return hdlc_ioctl(dev, ifs);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700282 }
283}
284
Linus Torvalds1da177e2005-04-16 15:20:36 -0700285static void n2_destroy_card(card_t *card)
286{
287 int cnt;
288
289 for (cnt = 0; cnt < 2; cnt++)
290 if (card->ports[cnt].card) {
291 struct net_device *dev = port_to_dev(&card->ports[cnt]);
Peng Li9e7ee102021-05-25 22:07:54 +0800292
Linus Torvalds1da177e2005-04-16 15:20:36 -0700293 unregister_hdlc_device(dev);
294 }
295
296 if (card->irq)
297 free_irq(card->irq, card);
298
299 if (card->winbase) {
300 iounmap(card->winbase);
301 release_mem_region(card->phy_winbase, USE_WINDOWSIZE);
302 }
303
304 if (card->io)
305 release_region(card->io, N2_IOPORTS);
306 if (card->ports[0].dev)
307 free_netdev(card->ports[0].dev);
308 if (card->ports[1].dev)
309 free_netdev(card->ports[1].dev);
310 kfree(card);
311}
312
Krzysztof Hałasa991990a2009-01-08 22:52:11 +0100313static const struct net_device_ops n2_ops = {
314 .ndo_open = n2_open,
315 .ndo_stop = n2_close,
Krzysztof Hałasa991990a2009-01-08 22:52:11 +0100316 .ndo_start_xmit = hdlc_start_xmit,
Arnd Bergmannad7eab2a2021-07-27 15:45:14 +0200317 .ndo_siocwandev = n2_ioctl,
Arnd Bergmann73d74f62021-07-27 15:45:10 +0200318 .ndo_siocdevprivate = n2_siocdevprivate,
Krzysztof Hałasa991990a2009-01-08 22:52:11 +0100319};
Linus Torvalds1da177e2005-04-16 15:20:36 -0700320
321static int __init n2_run(unsigned long io, unsigned long irq,
322 unsigned long winbase, long valid0, long valid1)
323{
324 card_t *card;
325 u8 cnt, pcr;
326 int i;
327
328 if (io < 0x200 || io > 0x3FF || (io % N2_IOPORTS) != 0) {
Joe Perches12a3bfe2011-06-26 19:01:28 +0000329 pr_err("invalid I/O port value\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700330 return -ENODEV;
331 }
332
333 if (irq < 3 || irq > 15 || irq == 6) /* FIXME */ {
Joe Perches12a3bfe2011-06-26 19:01:28 +0000334 pr_err("invalid IRQ value\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700335 return -ENODEV;
336 }
337
338 if (winbase < 0xA0000 || winbase > 0xFFFFF || (winbase & 0xFFF) != 0) {
Joe Perches12a3bfe2011-06-26 19:01:28 +0000339 pr_err("invalid RAM value\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700340 return -ENODEV;
341 }
342
Yoann Padioleaudd00cc42007-07-19 01:49:03 -0700343 card = kzalloc(sizeof(card_t), GFP_KERNEL);
Peng Li2aea27b2021-05-25 22:07:57 +0800344 if (!card)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700345 return -ENOBUFS;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700346
347 card->ports[0].dev = alloc_hdlcdev(&card->ports[0]);
348 card->ports[1].dev = alloc_hdlcdev(&card->ports[1]);
349 if (!card->ports[0].dev || !card->ports[1].dev) {
Joe Perches12a3bfe2011-06-26 19:01:28 +0000350 pr_err("unable to allocate memory\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700351 n2_destroy_card(card);
352 return -ENOMEM;
353 }
354
355 if (!request_region(io, N2_IOPORTS, devname)) {
Joe Perches12a3bfe2011-06-26 19:01:28 +0000356 pr_err("I/O port region in use\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700357 n2_destroy_card(card);
358 return -EBUSY;
359 }
360 card->io = io;
361
Joe Perchesa0607fd2009-11-18 23:29:17 -0800362 if (request_irq(irq, sca_intr, 0, devname, card)) {
Joe Perches12a3bfe2011-06-26 19:01:28 +0000363 pr_err("could not allocate IRQ\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700364 n2_destroy_card(card);
Eric Dumazet807540b2010-09-23 05:40:09 +0000365 return -EBUSY;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700366 }
367 card->irq = irq;
368
369 if (!request_mem_region(winbase, USE_WINDOWSIZE, devname)) {
Joe Perches12a3bfe2011-06-26 19:01:28 +0000370 pr_err("could not request RAM window\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700371 n2_destroy_card(card);
Eric Dumazet807540b2010-09-23 05:40:09 +0000372 return -EBUSY;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700373 }
374 card->phy_winbase = winbase;
375 card->winbase = ioremap(winbase, USE_WINDOWSIZE);
Krzysztof Halasa44460652006-06-22 22:29:28 +0200376 if (!card->winbase) {
Joe Perches12a3bfe2011-06-26 19:01:28 +0000377 pr_err("ioremap() failed\n");
Krzysztof Halasa44460652006-06-22 22:29:28 +0200378 n2_destroy_card(card);
379 return -EFAULT;
380 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700381
382 outb(0, io + N2_PCR);
383 outb(winbase >> 12, io + N2_BAR);
384
385 switch (USE_WINDOWSIZE) {
386 case 16384:
387 outb(WIN16K, io + N2_PSR);
388 break;
389
390 case 32768:
391 outb(WIN32K, io + N2_PSR);
392 break;
393
394 case 65536:
395 outb(WIN64K, io + N2_PSR);
396 break;
397
398 default:
Joe Perches12a3bfe2011-06-26 19:01:28 +0000399 pr_err("invalid window size\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700400 n2_destroy_card(card);
401 return -ENODEV;
402 }
403
404 pcr = PCR_ENWIN | PCR_VPM | (USE_BUS16BITS ? PCR_BUS16 : 0);
405 outb(pcr, io + N2_PCR);
406
407 card->ram_size = sca_detect_ram(card, card->winbase, MAX_RAM_SIZE);
408
409 /* number of TX + RX buffers for one port */
410 i = card->ram_size / ((valid0 + valid1) * (sizeof(pkt_desc) +
411 HDLC_MAX_MRU));
412
413 card->tx_ring_buffers = min(i / 2, MAX_TX_BUFFERS);
414 card->rx_ring_buffers = i - card->tx_ring_buffers;
415
416 card->buff_offset = (valid0 + valid1) * sizeof(pkt_desc) *
417 (card->tx_ring_buffers + card->rx_ring_buffers);
418
Joe Perches12a3bfe2011-06-26 19:01:28 +0000419 pr_info("RISCom/N2 %u KB RAM, IRQ%u, using %u TX + %u RX packets rings\n",
420 card->ram_size / 1024, card->irq,
421 card->tx_ring_buffers, card->rx_ring_buffers);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700422
423 if (card->tx_ring_buffers < 1) {
Joe Perches12a3bfe2011-06-26 19:01:28 +0000424 pr_err("RAM test failed\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700425 n2_destroy_card(card);
426 return -EIO;
427 }
428
429 pcr |= PCR_RUNSCA; /* run SCA */
430 outb(pcr, io + N2_PCR);
431 outb(0, io + N2_MCR);
432
433 sca_init(card, 0);
434 for (cnt = 0; cnt < 2; cnt++) {
435 port_t *port = &card->ports[cnt];
436 struct net_device *dev = port_to_dev(port);
437 hdlc_device *hdlc = dev_to_hdlc(dev);
438
439 if ((cnt == 0 && !valid0) || (cnt == 1 && !valid1))
440 continue;
441
442 port->phy_node = cnt;
443 port->valid = 1;
444
445 if ((cnt == 1) && valid0)
446 port->log_node = 1;
447
448 spin_lock_init(&port->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700449 dev->irq = irq;
450 dev->mem_start = winbase;
451 dev->mem_end = winbase + USE_WINDOWSIZE - 1;
452 dev->tx_queue_len = 50;
Krzysztof Hałasa991990a2009-01-08 22:52:11 +0100453 dev->netdev_ops = &n2_ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700454 hdlc->attach = sca_attach;
455 hdlc->xmit = sca_xmit;
456 port->settings.clock_type = CLOCK_EXT;
457 port->card = card;
458
459 if (register_hdlc_device(dev)) {
Joe Perches12a3bfe2011-06-26 19:01:28 +0000460 pr_warn("unable to register hdlc device\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700461 port->card = NULL;
462 n2_destroy_card(card);
463 return -ENOBUFS;
464 }
Krzysztof Hałasa88597362008-03-24 19:12:23 +0100465 sca_init_port(port); /* Set up SCA memory */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700466
Joe Perches12a3bfe2011-06-26 19:01:28 +0000467 netdev_info(dev, "RISCom/N2 node %d\n", port->phy_node);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700468 }
469
470 *new_card = card;
471 new_card = &card->next_card;
472
473 return 0;
474}
475
Linus Torvalds1da177e2005-04-16 15:20:36 -0700476static int __init n2_init(void)
477{
Peng Li2aea27b2021-05-25 22:07:57 +0800478 if (!hw) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700479#ifdef MODULE
Joe Perches12a3bfe2011-06-26 19:01:28 +0000480 pr_info("no card initialized\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700481#endif
Akinobu Mita09669582006-10-29 03:47:12 +0900482 return -EINVAL; /* no parameters specified, abort */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700483 }
484
Joe Perches12a3bfe2011-06-26 19:01:28 +0000485 pr_info("%s\n", version);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700486
487 do {
488 unsigned long io, irq, ram;
489 long valid[2] = { 0, 0 }; /* Default = both ports disabled */
490
491 io = simple_strtoul(hw, &hw, 0);
492
493 if (*hw++ != ',')
494 break;
495 irq = simple_strtoul(hw, &hw, 0);
496
497 if (*hw++ != ',')
498 break;
499 ram = simple_strtoul(hw, &hw, 0);
500
501 if (*hw++ != ',')
502 break;
Peng Li69542272021-05-25 22:07:56 +0800503 while (1) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700504 if (*hw == '0' && !valid[0])
505 valid[0] = 1; /* Port 0 enabled */
506 else if (*hw == '1' && !valid[1])
507 valid[1] = 1; /* Port 1 enabled */
508 else
509 break;
510 hw++;
511 }
512
513 if (!valid[0] && !valid[1])
514 break; /* at least one port must be used */
515
516 if (*hw == ':' || *hw == '\x0')
517 n2_run(io, irq, ram, valid[0], valid[1]);
518
519 if (*hw == '\x0')
Akinobu Mita09669582006-10-29 03:47:12 +0900520 return first_card ? 0 : -EINVAL;
Peng Li69542272021-05-25 22:07:56 +0800521 } while (*hw++ == ':');
Linus Torvalds1da177e2005-04-16 15:20:36 -0700522
Joe Perches12a3bfe2011-06-26 19:01:28 +0000523 pr_err("invalid hardware parameters\n");
Akinobu Mita09669582006-10-29 03:47:12 +0900524 return first_card ? 0 : -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700525}
526
Linus Torvalds1da177e2005-04-16 15:20:36 -0700527static void __exit n2_cleanup(void)
528{
529 card_t *card = first_card;
530
531 while (card) {
532 card_t *ptr = card;
Peng Li9e7ee102021-05-25 22:07:54 +0800533
Linus Torvalds1da177e2005-04-16 15:20:36 -0700534 card = card->next_card;
535 n2_destroy_card(ptr);
536 }
537}
538
Linus Torvalds1da177e2005-04-16 15:20:36 -0700539module_init(n2_init);
540module_exit(n2_cleanup);
541
542MODULE_AUTHOR("Krzysztof Halasa <khc@pm.waw.pl>");
543MODULE_DESCRIPTION("RISCom/N2 serial port driver");
544MODULE_LICENSE("GPL v2");
Krzysztof Halasa41b1d172006-07-21 14:41:36 -0700545module_param(hw, charp, 0444);
546MODULE_PARM_DESC(hw, "io,irq,ram,ports:io,irq,...");