blob: 0a59bd0b8210f334ab74674534c7664e2f6acada [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * PCBIT-D module support
3 *
4 * Copyright (C) 1996 Universidade de Lisboa
Joe Perches475be4d2012-02-19 19:52:38 -08005 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07006 * Written by Pedro Roque Marques (roque@di.fc.ul.pt)
7 *
Joe Perches475be4d2012-02-19 19:52:38 -08008 * This software may be used and distributed according to the terms of
Linus Torvalds1da177e2005-04-16 15:20:36 -07009 * the GNU General Public License, incorporated herein by reference.
10 */
11
12#include <linux/module.h>
13#include <linux/init.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070014#include <linux/string.h>
15#include <linux/kernel.h>
16#include <linux/skbuff.h>
17
18#include <linux/isdnif.h>
19#include "pcbit.h"
20
21MODULE_DESCRIPTION("ISDN4Linux: Driver for PCBIT-T card");
22MODULE_AUTHOR("Pedro Roque Marques");
23MODULE_LICENSE("GPL");
24
25static int mem[MAX_PCBIT_CARDS];
26static int irq[MAX_PCBIT_CARDS];
27
28module_param_array(mem, int, NULL, 0);
29module_param_array(irq, int, NULL, 0);
30
31static int num_boards;
Joe Perches475be4d2012-02-19 19:52:38 -080032struct pcbit_dev *dev_pcbit[MAX_PCBIT_CARDS];
Linus Torvalds1da177e2005-04-16 15:20:36 -070033
Linus Torvalds1da177e2005-04-16 15:20:36 -070034static int __init pcbit_init(void)
35{
36 int board;
37
38 num_boards = 0;
39
Joe Perches475be4d2012-02-19 19:52:38 -080040 printk(KERN_NOTICE
Linus Torvalds1da177e2005-04-16 15:20:36 -070041 "PCBIT-D device driver v 0.5-fjpc0 19991204 - "
42 "Copyright (C) 1996 Universidade de Lisboa\n");
43
Joe Perches475be4d2012-02-19 19:52:38 -080044 if (mem[0] || irq[0])
Linus Torvalds1da177e2005-04-16 15:20:36 -070045 {
Joe Perches475be4d2012-02-19 19:52:38 -080046 for (board = 0; board < MAX_PCBIT_CARDS && mem[board] && irq[board]; board++)
Linus Torvalds1da177e2005-04-16 15:20:36 -070047 {
48 if (!mem[board])
49 mem[board] = 0xD0000;
50 if (!irq[board])
51 irq[board] = 5;
Joe Perches475be4d2012-02-19 19:52:38 -080052
Linus Torvalds1da177e2005-04-16 15:20:36 -070053 if (pcbit_init_dev(board, mem[board], irq[board]) == 0)
54 num_boards++;
Joe Perches475be4d2012-02-19 19:52:38 -080055
56 else
Linus Torvalds1da177e2005-04-16 15:20:36 -070057 {
Joe Perches475be4d2012-02-19 19:52:38 -080058 printk(KERN_WARNING
59 "pcbit_init failed for dev %d",
Linus Torvalds1da177e2005-04-16 15:20:36 -070060 board + 1);
61 return -EIO;
62 }
63 }
64 }
65
66 /* Hardcoded default settings detection */
67
68 if (!num_boards)
69 {
Joe Perches475be4d2012-02-19 19:52:38 -080070 printk(KERN_INFO
Linus Torvalds1da177e2005-04-16 15:20:36 -070071 "Trying to detect board using default settings\n");
72 if (pcbit_init_dev(0, 0xD0000, 5) == 0)
73 num_boards++;
74 else
75 return -EIO;
76 }
77 return 0;
78}
79
80static void __exit pcbit_exit(void)
81{
82#ifdef MODULE
83 int board;
84
85 for (board = 0; board < num_boards; board++)
86 pcbit_terminate(board);
Joe Perches475be4d2012-02-19 19:52:38 -080087 printk(KERN_NOTICE
Linus Torvalds1da177e2005-04-16 15:20:36 -070088 "PCBIT-D module unloaded\n");
89#endif
90}
91
92#ifndef MODULE
93#define MAX_PARA (MAX_PCBIT_CARDS * 2)
94static int __init pcbit_setup(char *line)
95{
96 int i, j, argc;
97 char *str;
Joe Perches475be4d2012-02-19 19:52:38 -080098 int ints[MAX_PARA + 1];
Linus Torvalds1da177e2005-04-16 15:20:36 -070099
100 str = get_options(line, MAX_PARA, ints);
101 argc = ints[0];
102 i = 0;
103 j = 1;
104
Joe Perches475be4d2012-02-19 19:52:38 -0800105 while (argc && (i < MAX_PCBIT_CARDS)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700106
107 if (argc) {
108 mem[i] = ints[j];
109 j++; argc--;
110 }
Joe Perches475be4d2012-02-19 19:52:38 -0800111
Linus Torvalds1da177e2005-04-16 15:20:36 -0700112 if (argc) {
113 irq[i] = ints[j];
114 j++; argc--;
115 }
116
117 i++;
118 }
Joe Perches475be4d2012-02-19 19:52:38 -0800119 return (1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700120}
121__setup("pcbit=", pcbit_setup);
122#endif
123
124module_init(pcbit_init);
125module_exit(pcbit_exit);