Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | /* $Id: c4.c,v 1.1.2.2 2004/01/16 21:09:27 keil Exp $ |
Joe Perches | 475be4d | 2012-02-19 19:52:38 -0800 | [diff] [blame] | 2 | * |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3 | * Module for AVM C4 & C2 card. |
Joe Perches | 475be4d | 2012-02-19 19:52:38 -0800 | [diff] [blame] | 4 | * |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5 | * Copyright 1999 by Carsten Paeth <calle@calle.de> |
| 6 | * |
| 7 | * This software may be used and distributed according to the terms |
| 8 | * of the GNU General Public License, incorporated herein by reference. |
| 9 | * |
| 10 | */ |
| 11 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 12 | #include <linux/module.h> |
| 13 | #include <linux/kernel.h> |
Alexey Dobriyan | 9a58a80 | 2010-01-14 03:10:54 -0800 | [diff] [blame] | 14 | #include <linux/proc_fs.h> |
| 15 | #include <linux/seq_file.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 16 | #include <linux/skbuff.h> |
| 17 | #include <linux/delay.h> |
| 18 | #include <linux/mm.h> |
| 19 | #include <linux/interrupt.h> |
| 20 | #include <linux/ioport.h> |
| 21 | #include <linux/pci.h> |
| 22 | #include <linux/capi.h> |
| 23 | #include <linux/kernelcapi.h> |
| 24 | #include <linux/init.h> |
Tejun Heo | 5a0e3ad | 2010-03-24 17:04:11 +0900 | [diff] [blame] | 25 | #include <linux/gfp.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 26 | #include <asm/io.h> |
Linus Torvalds | 7c0f6ba | 2016-12-24 11:46:01 -0800 | [diff] [blame] | 27 | #include <linux/uaccess.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 28 | #include <linux/netdevice.h> |
| 29 | #include <linux/isdn/capicmd.h> |
| 30 | #include <linux/isdn/capiutil.h> |
| 31 | #include <linux/isdn/capilli.h> |
| 32 | #include "avmcard.h" |
| 33 | |
Robert P. J. Day | 26fb5c5 | 2007-02-12 00:53:20 -0800 | [diff] [blame] | 34 | #undef AVM_C4_DEBUG |
| 35 | #undef AVM_C4_POLLDEBUG |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 36 | |
| 37 | /* ------------------------------------------------------------- */ |
| 38 | |
| 39 | static char *revision = "$Revision: 1.1.2.2 $"; |
| 40 | |
| 41 | /* ------------------------------------------------------------- */ |
| 42 | |
Rusty Russell | 90ab5ee | 2012-01-13 09:32:20 +1030 | [diff] [blame] | 43 | static bool suppress_pollack; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 44 | |
Arvind Yadav | 65f9641 | 2017-07-15 09:55:51 +0530 | [diff] [blame] | 45 | static const struct pci_device_id c4_pci_tbl[] = { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 46 | { PCI_VENDOR_ID_DEC, PCI_DEVICE_ID_DEC_21285, PCI_VENDOR_ID_AVM, PCI_DEVICE_ID_AVM_C4, 0, 0, (unsigned long)4 }, |
| 47 | { PCI_VENDOR_ID_DEC, PCI_DEVICE_ID_DEC_21285, PCI_VENDOR_ID_AVM, PCI_DEVICE_ID_AVM_C2, 0, 0, (unsigned long)2 }, |
| 48 | { } /* Terminating entry */ |
| 49 | }; |
| 50 | |
| 51 | MODULE_DEVICE_TABLE(pci, c4_pci_tbl); |
| 52 | MODULE_DESCRIPTION("CAPI4Linux: Driver for AVM C2/C4 cards"); |
| 53 | MODULE_AUTHOR("Carsten Paeth"); |
| 54 | MODULE_LICENSE("GPL"); |
Rusty Russell | 8d3b33f | 2006-03-25 03:07:05 -0800 | [diff] [blame] | 55 | module_param(suppress_pollack, bool, 0); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 56 | |
| 57 | /* ------------------------------------------------------------- */ |
| 58 | |
| 59 | static void c4_dispatch_tx(avmcard *card); |
| 60 | |
| 61 | /* ------------------------------------------------------------- */ |
| 62 | |
| 63 | #define DC21285_DRAM_A0MR 0x40000000 |
| 64 | #define DC21285_DRAM_A1MR 0x40004000 |
| 65 | #define DC21285_DRAM_A2MR 0x40008000 |
| 66 | #define DC21285_DRAM_A3MR 0x4000C000 |
| 67 | |
| 68 | #define CAS_OFFSET 0x88 |
| 69 | |
| 70 | #define DC21285_ARMCSR_BASE 0x42000000 |
| 71 | |
| 72 | #define PCI_OUT_INT_STATUS 0x30 |
| 73 | #define PCI_OUT_INT_MASK 0x34 |
| 74 | #define MAILBOX_0 0x50 |
| 75 | #define MAILBOX_1 0x54 |
| 76 | #define MAILBOX_2 0x58 |
| 77 | #define MAILBOX_3 0x5C |
| 78 | #define DOORBELL 0x60 |
| 79 | #define DOORBELL_SETUP 0x64 |
| 80 | |
| 81 | #define CHAN_1_CONTROL 0x90 |
| 82 | #define CHAN_2_CONTROL 0xB0 |
| 83 | #define DRAM_TIMING 0x10C |
| 84 | #define DRAM_ADDR_SIZE_0 0x110 |
| 85 | #define DRAM_ADDR_SIZE_1 0x114 |
| 86 | #define DRAM_ADDR_SIZE_2 0x118 |
| 87 | #define DRAM_ADDR_SIZE_3 0x11C |
| 88 | #define SA_CONTROL 0x13C |
| 89 | #define XBUS_CYCLE 0x148 |
| 90 | #define XBUS_STROBE 0x14C |
| 91 | #define DBELL_PCI_MASK 0x150 |
| 92 | #define DBELL_SA_MASK 0x154 |
| 93 | |
| 94 | #define SDRAM_SIZE 0x1000000 |
| 95 | |
| 96 | /* ------------------------------------------------------------- */ |
| 97 | |
| 98 | #define MBOX_PEEK_POKE MAILBOX_0 |
| 99 | |
| 100 | #define DBELL_ADDR 0x01 |
| 101 | #define DBELL_DATA 0x02 |
| 102 | #define DBELL_RNWR 0x40 |
| 103 | #define DBELL_INIT 0x80 |
| 104 | |
| 105 | /* ------------------------------------------------------------- */ |
| 106 | |
| 107 | #define MBOX_UP_ADDR MAILBOX_0 |
| 108 | #define MBOX_UP_LEN MAILBOX_1 |
| 109 | #define MBOX_DOWN_ADDR MAILBOX_2 |
| 110 | #define MBOX_DOWN_LEN MAILBOX_3 |
| 111 | |
| 112 | #define DBELL_UP_HOST 0x00000100 |
| 113 | #define DBELL_UP_ARM 0x00000200 |
| 114 | #define DBELL_DOWN_HOST 0x00000400 |
| 115 | #define DBELL_DOWN_ARM 0x00000800 |
| 116 | #define DBELL_RESET_HOST 0x40000000 |
| 117 | #define DBELL_RESET_ARM 0x80000000 |
| 118 | |
| 119 | /* ------------------------------------------------------------- */ |
| 120 | |
| 121 | #define DRAM_TIMING_DEF 0x001A01A5 |
| 122 | #define DRAM_AD_SZ_DEF0 0x00000045 |
| 123 | #define DRAM_AD_SZ_NULL 0x00000000 |
| 124 | |
| 125 | #define SA_CTL_ALLRIGHT 0x64AA0271 |
| 126 | |
| 127 | #define INIT_XBUS_CYCLE 0x100016DB |
| 128 | #define INIT_XBUS_STROBE 0xF1F1F1F1 |
| 129 | |
| 130 | /* ------------------------------------------------------------- */ |
| 131 | |
Joe Perches | 475be4d | 2012-02-19 19:52:38 -0800 | [diff] [blame] | 132 | #define RESET_TIMEOUT (15 * HZ) /* 15 sec */ |
| 133 | #define PEEK_POKE_TIMEOUT (HZ / 10) /* 0.1 sec */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 134 | |
| 135 | /* ------------------------------------------------------------- */ |
| 136 | |
| 137 | #define c4outmeml(addr, value) writel(value, addr) |
| 138 | #define c4inmeml(addr) readl(addr) |
| 139 | #define c4outmemw(addr, value) writew(value, addr) |
| 140 | #define c4inmemw(addr) readw(addr) |
| 141 | #define c4outmemb(addr, value) writeb(value, addr) |
| 142 | #define c4inmemb(addr) readb(addr) |
| 143 | |
| 144 | /* ------------------------------------------------------------- */ |
| 145 | |
| 146 | static inline int wait_for_doorbell(avmcard *card, unsigned long t) |
| 147 | { |
| 148 | unsigned long stop; |
| 149 | |
| 150 | stop = jiffies + t; |
Joe Perches | 475be4d | 2012-02-19 19:52:38 -0800 | [diff] [blame] | 151 | while (c4inmeml(card->mbase + DOORBELL) != 0xffffffff) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 152 | if (!time_before(jiffies, stop)) |
| 153 | return -1; |
| 154 | mb(); |
| 155 | } |
| 156 | return 0; |
| 157 | } |
| 158 | |
| 159 | static int c4_poke(avmcard *card, unsigned long off, unsigned long value) |
| 160 | { |
| 161 | |
Joe Perches | 475be4d | 2012-02-19 19:52:38 -0800 | [diff] [blame] | 162 | if (wait_for_doorbell(card, HZ / 10) < 0) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 163 | return -1; |
| 164 | |
Joe Perches | 475be4d | 2012-02-19 19:52:38 -0800 | [diff] [blame] | 165 | c4outmeml(card->mbase + MBOX_PEEK_POKE, off); |
| 166 | c4outmeml(card->mbase + DOORBELL, DBELL_ADDR); |
| 167 | |
| 168 | if (wait_for_doorbell(card, HZ / 10) < 0) |
| 169 | return -1; |
| 170 | |
| 171 | c4outmeml(card->mbase + MBOX_PEEK_POKE, value); |
| 172 | c4outmeml(card->mbase + DOORBELL, DBELL_DATA | DBELL_ADDR); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 173 | |
| 174 | return 0; |
| 175 | } |
| 176 | |
| 177 | static int c4_peek(avmcard *card, unsigned long off, unsigned long *valuep) |
| 178 | { |
Joe Perches | 475be4d | 2012-02-19 19:52:38 -0800 | [diff] [blame] | 179 | if (wait_for_doorbell(card, HZ / 10) < 0) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 180 | return -1; |
| 181 | |
Joe Perches | 475be4d | 2012-02-19 19:52:38 -0800 | [diff] [blame] | 182 | c4outmeml(card->mbase + MBOX_PEEK_POKE, off); |
| 183 | c4outmeml(card->mbase + DOORBELL, DBELL_RNWR | DBELL_ADDR); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 184 | |
Joe Perches | 475be4d | 2012-02-19 19:52:38 -0800 | [diff] [blame] | 185 | if (wait_for_doorbell(card, HZ / 10) < 0) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 186 | return -1; |
| 187 | |
Joe Perches | 475be4d | 2012-02-19 19:52:38 -0800 | [diff] [blame] | 188 | *valuep = c4inmeml(card->mbase + MBOX_PEEK_POKE); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 189 | |
| 190 | return 0; |
| 191 | } |
| 192 | |
| 193 | /* ------------------------------------------------------------- */ |
| 194 | |
Joe Perches | 475be4d | 2012-02-19 19:52:38 -0800 | [diff] [blame] | 195 | static int c4_load_t4file(avmcard *card, capiloaddatapart *t4file) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 196 | { |
| 197 | u32 val; |
| 198 | unsigned char *dp; |
| 199 | u_int left; |
| 200 | u32 loadoff = 0; |
| 201 | |
| 202 | dp = t4file->data; |
| 203 | left = t4file->len; |
| 204 | while (left >= sizeof(u32)) { |
Joe Perches | 475be4d | 2012-02-19 19:52:38 -0800 | [diff] [blame] | 205 | if (t4file->user) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 206 | if (copy_from_user(&val, dp, sizeof(val))) |
| 207 | return -EFAULT; |
| 208 | } else { |
| 209 | memcpy(&val, dp, sizeof(val)); |
| 210 | } |
| 211 | if (c4_poke(card, loadoff, val)) { |
| 212 | printk(KERN_ERR "%s: corrupted firmware file ?\n", |
Joe Perches | 475be4d | 2012-02-19 19:52:38 -0800 | [diff] [blame] | 213 | card->name); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 214 | return -EIO; |
| 215 | } |
| 216 | left -= sizeof(u32); |
| 217 | dp += sizeof(u32); |
| 218 | loadoff += sizeof(u32); |
| 219 | } |
| 220 | if (left) { |
| 221 | val = 0; |
| 222 | if (t4file->user) { |
| 223 | if (copy_from_user(&val, dp, left)) |
| 224 | return -EFAULT; |
| 225 | } else { |
| 226 | memcpy(&val, dp, left); |
| 227 | } |
| 228 | if (c4_poke(card, loadoff, val)) { |
| 229 | printk(KERN_ERR "%s: corrupted firmware file ?\n", |
Joe Perches | 475be4d | 2012-02-19 19:52:38 -0800 | [diff] [blame] | 230 | card->name); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 231 | return -EIO; |
| 232 | } |
| 233 | } |
| 234 | return 0; |
| 235 | } |
| 236 | |
| 237 | /* ------------------------------------------------------------- */ |
| 238 | |
| 239 | static inline void _put_byte(void **pp, u8 val) |
| 240 | { |
| 241 | u8 *s = *pp; |
| 242 | *s++ = val; |
| 243 | *pp = s; |
| 244 | } |
| 245 | |
| 246 | static inline void _put_word(void **pp, u32 val) |
| 247 | { |
| 248 | u8 *s = *pp; |
| 249 | *s++ = val & 0xff; |
| 250 | *s++ = (val >> 8) & 0xff; |
| 251 | *s++ = (val >> 16) & 0xff; |
| 252 | *s++ = (val >> 24) & 0xff; |
| 253 | *pp = s; |
| 254 | } |
| 255 | |
| 256 | static inline void _put_slice(void **pp, unsigned char *dp, unsigned int len) |
| 257 | { |
| 258 | unsigned i = len; |
| 259 | _put_word(pp, i); |
| 260 | while (i-- > 0) |
| 261 | _put_byte(pp, *dp++); |
| 262 | } |
| 263 | |
| 264 | static inline u8 _get_byte(void **pp) |
| 265 | { |
| 266 | u8 *s = *pp; |
| 267 | u8 val; |
| 268 | val = *s++; |
| 269 | *pp = s; |
| 270 | return val; |
| 271 | } |
| 272 | |
| 273 | static inline u32 _get_word(void **pp) |
| 274 | { |
| 275 | u8 *s = *pp; |
| 276 | u32 val; |
| 277 | val = *s++; |
| 278 | val |= (*s++ << 8); |
| 279 | val |= (*s++ << 16); |
| 280 | val |= (*s++ << 24); |
| 281 | *pp = s; |
| 282 | return val; |
| 283 | } |
| 284 | |
| 285 | static inline u32 _get_slice(void **pp, unsigned char *dp) |
| 286 | { |
| 287 | unsigned int len, i; |
| 288 | |
| 289 | len = i = _get_word(pp); |
| 290 | while (i-- > 0) *dp++ = _get_byte(pp); |
| 291 | return len; |
| 292 | } |
| 293 | |
| 294 | /* ------------------------------------------------------------- */ |
| 295 | |
| 296 | static void c4_reset(avmcard *card) |
| 297 | { |
| 298 | unsigned long stop; |
| 299 | |
Joe Perches | 475be4d | 2012-02-19 19:52:38 -0800 | [diff] [blame] | 300 | c4outmeml(card->mbase + DOORBELL, DBELL_RESET_ARM); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 301 | |
Joe Perches | 475be4d | 2012-02-19 19:52:38 -0800 | [diff] [blame] | 302 | stop = jiffies + HZ * 10; |
| 303 | while (c4inmeml(card->mbase + DOORBELL) != 0xffffffff) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 304 | if (!time_before(jiffies, stop)) |
| 305 | return; |
Joe Perches | 475be4d | 2012-02-19 19:52:38 -0800 | [diff] [blame] | 306 | c4outmeml(card->mbase + DOORBELL, DBELL_ADDR); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 307 | mb(); |
| 308 | } |
| 309 | |
| 310 | c4_poke(card, DC21285_ARMCSR_BASE + CHAN_1_CONTROL, 0); |
| 311 | c4_poke(card, DC21285_ARMCSR_BASE + CHAN_2_CONTROL, 0); |
| 312 | } |
| 313 | |
| 314 | /* ------------------------------------------------------------- */ |
| 315 | |
| 316 | static int c4_detect(avmcard *card) |
| 317 | { |
| 318 | unsigned long stop, dummy; |
| 319 | |
Joe Perches | 475be4d | 2012-02-19 19:52:38 -0800 | [diff] [blame] | 320 | c4outmeml(card->mbase + PCI_OUT_INT_MASK, 0x0c); |
| 321 | if (c4inmeml(card->mbase + PCI_OUT_INT_MASK) != 0x0c) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 322 | return 1; |
| 323 | |
Joe Perches | 475be4d | 2012-02-19 19:52:38 -0800 | [diff] [blame] | 324 | c4outmeml(card->mbase + DOORBELL, DBELL_RESET_ARM); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 325 | |
Joe Perches | 475be4d | 2012-02-19 19:52:38 -0800 | [diff] [blame] | 326 | stop = jiffies + HZ * 10; |
| 327 | while (c4inmeml(card->mbase + DOORBELL) != 0xffffffff) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 328 | if (!time_before(jiffies, stop)) |
| 329 | return 2; |
Joe Perches | 475be4d | 2012-02-19 19:52:38 -0800 | [diff] [blame] | 330 | c4outmeml(card->mbase + DOORBELL, DBELL_ADDR); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 331 | mb(); |
| 332 | } |
| 333 | |
| 334 | c4_poke(card, DC21285_ARMCSR_BASE + CHAN_1_CONTROL, 0); |
| 335 | c4_poke(card, DC21285_ARMCSR_BASE + CHAN_2_CONTROL, 0); |
| 336 | |
Joe Perches | 475be4d | 2012-02-19 19:52:38 -0800 | [diff] [blame] | 337 | c4outmeml(card->mbase + MAILBOX_0, 0x55aa55aa); |
| 338 | if (c4inmeml(card->mbase + MAILBOX_0) != 0x55aa55aa) return 3; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 339 | |
Joe Perches | 475be4d | 2012-02-19 19:52:38 -0800 | [diff] [blame] | 340 | c4outmeml(card->mbase + MAILBOX_0, 0xaa55aa55); |
| 341 | if (c4inmeml(card->mbase + MAILBOX_0) != 0xaa55aa55) return 4; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 342 | |
Joe Perches | 475be4d | 2012-02-19 19:52:38 -0800 | [diff] [blame] | 343 | if (c4_poke(card, DC21285_ARMCSR_BASE + DBELL_SA_MASK, 0)) return 5; |
| 344 | if (c4_poke(card, DC21285_ARMCSR_BASE + DBELL_PCI_MASK, 0)) return 6; |
| 345 | if (c4_poke(card, DC21285_ARMCSR_BASE + SA_CONTROL, SA_CTL_ALLRIGHT)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 346 | return 7; |
Joe Perches | 475be4d | 2012-02-19 19:52:38 -0800 | [diff] [blame] | 347 | if (c4_poke(card, DC21285_ARMCSR_BASE + XBUS_CYCLE, INIT_XBUS_CYCLE)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 348 | return 8; |
Joe Perches | 475be4d | 2012-02-19 19:52:38 -0800 | [diff] [blame] | 349 | if (c4_poke(card, DC21285_ARMCSR_BASE + XBUS_STROBE, INIT_XBUS_STROBE)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 350 | return 8; |
Joe Perches | 475be4d | 2012-02-19 19:52:38 -0800 | [diff] [blame] | 351 | if (c4_poke(card, DC21285_ARMCSR_BASE + DRAM_TIMING, 0)) return 9; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 352 | |
Joe Perches | 475be4d | 2012-02-19 19:52:38 -0800 | [diff] [blame] | 353 | mdelay(1); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 354 | |
| 355 | if (c4_peek(card, DC21285_DRAM_A0MR, &dummy)) return 10; |
| 356 | if (c4_peek(card, DC21285_DRAM_A1MR, &dummy)) return 11; |
| 357 | if (c4_peek(card, DC21285_DRAM_A2MR, &dummy)) return 12; |
| 358 | if (c4_peek(card, DC21285_DRAM_A3MR, &dummy)) return 13; |
| 359 | |
Joe Perches | 475be4d | 2012-02-19 19:52:38 -0800 | [diff] [blame] | 360 | if (c4_poke(card, DC21285_DRAM_A0MR + CAS_OFFSET, 0)) return 14; |
| 361 | if (c4_poke(card, DC21285_DRAM_A1MR + CAS_OFFSET, 0)) return 15; |
| 362 | if (c4_poke(card, DC21285_DRAM_A2MR + CAS_OFFSET, 0)) return 16; |
| 363 | if (c4_poke(card, DC21285_DRAM_A3MR + CAS_OFFSET, 0)) return 17; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 364 | |
Joe Perches | 475be4d | 2012-02-19 19:52:38 -0800 | [diff] [blame] | 365 | mdelay(1); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 366 | |
Joe Perches | 475be4d | 2012-02-19 19:52:38 -0800 | [diff] [blame] | 367 | if (c4_poke(card, DC21285_ARMCSR_BASE + DRAM_TIMING, DRAM_TIMING_DEF)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 368 | return 18; |
| 369 | |
Joe Perches | 475be4d | 2012-02-19 19:52:38 -0800 | [diff] [blame] | 370 | if (c4_poke(card, DC21285_ARMCSR_BASE + DRAM_ADDR_SIZE_0, DRAM_AD_SZ_DEF0)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 371 | return 19; |
Joe Perches | 475be4d | 2012-02-19 19:52:38 -0800 | [diff] [blame] | 372 | if (c4_poke(card, DC21285_ARMCSR_BASE + DRAM_ADDR_SIZE_1, DRAM_AD_SZ_NULL)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 373 | return 20; |
Joe Perches | 475be4d | 2012-02-19 19:52:38 -0800 | [diff] [blame] | 374 | if (c4_poke(card, DC21285_ARMCSR_BASE + DRAM_ADDR_SIZE_2, DRAM_AD_SZ_NULL)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 375 | return 21; |
Joe Perches | 475be4d | 2012-02-19 19:52:38 -0800 | [diff] [blame] | 376 | if (c4_poke(card, DC21285_ARMCSR_BASE + DRAM_ADDR_SIZE_3, DRAM_AD_SZ_NULL)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 377 | return 22; |
| 378 | |
| 379 | /* Transputer test */ |
Joe Perches | 475be4d | 2012-02-19 19:52:38 -0800 | [diff] [blame] | 380 | |
| 381 | if (c4_poke(card, 0x000000, 0x11111111) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 382 | || c4_poke(card, 0x400000, 0x22222222) |
Joe Perches | 475be4d | 2012-02-19 19:52:38 -0800 | [diff] [blame] | 383 | || c4_poke(card, 0x800000, 0x33333333) |
| 384 | || c4_poke(card, 0xC00000, 0x44444444)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 385 | return 23; |
| 386 | |
Joe Perches | 475be4d | 2012-02-19 19:52:38 -0800 | [diff] [blame] | 387 | if (c4_peek(card, 0x000000, &dummy) || dummy != 0x11111111 |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 388 | || c4_peek(card, 0x400000, &dummy) || dummy != 0x22222222 |
Joe Perches | 475be4d | 2012-02-19 19:52:38 -0800 | [diff] [blame] | 389 | || c4_peek(card, 0x800000, &dummy) || dummy != 0x33333333 |
| 390 | || c4_peek(card, 0xC00000, &dummy) || dummy != 0x44444444) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 391 | return 24; |
| 392 | |
Joe Perches | 475be4d | 2012-02-19 19:52:38 -0800 | [diff] [blame] | 393 | if (c4_poke(card, 0x000000, 0x55555555) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 394 | || c4_poke(card, 0x400000, 0x66666666) |
Joe Perches | 475be4d | 2012-02-19 19:52:38 -0800 | [diff] [blame] | 395 | || c4_poke(card, 0x800000, 0x77777777) |
| 396 | || c4_poke(card, 0xC00000, 0x88888888)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 397 | return 25; |
| 398 | |
Joe Perches | 475be4d | 2012-02-19 19:52:38 -0800 | [diff] [blame] | 399 | if (c4_peek(card, 0x000000, &dummy) || dummy != 0x55555555 |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 400 | || c4_peek(card, 0x400000, &dummy) || dummy != 0x66666666 |
Joe Perches | 475be4d | 2012-02-19 19:52:38 -0800 | [diff] [blame] | 401 | || c4_peek(card, 0x800000, &dummy) || dummy != 0x77777777 |
| 402 | || c4_peek(card, 0xC00000, &dummy) || dummy != 0x88888888) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 403 | return 26; |
| 404 | |
| 405 | return 0; |
| 406 | } |
| 407 | |
| 408 | /* ------------------------------------------------------------- */ |
| 409 | |
| 410 | static void c4_dispatch_tx(avmcard *card) |
| 411 | { |
| 412 | avmcard_dmainfo *dma = card->dma; |
| 413 | struct sk_buff *skb; |
| 414 | u8 cmd, subcmd; |
| 415 | u16 len; |
| 416 | u32 txlen; |
| 417 | void *p; |
| 418 | |
| 419 | |
| 420 | if (card->csr & DBELL_DOWN_ARM) { /* tx busy */ |
| 421 | return; |
| 422 | } |
| 423 | |
| 424 | skb = skb_dequeue(&dma->send_queue); |
| 425 | if (!skb) { |
Robert P. J. Day | 26fb5c5 | 2007-02-12 00:53:20 -0800 | [diff] [blame] | 426 | #ifdef AVM_C4_DEBUG |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 427 | printk(KERN_DEBUG "%s: tx underrun\n", card->name); |
| 428 | #endif |
| 429 | return; |
| 430 | } |
| 431 | |
| 432 | len = CAPIMSG_LEN(skb->data); |
| 433 | |
| 434 | if (len) { |
| 435 | cmd = CAPIMSG_COMMAND(skb->data); |
| 436 | subcmd = CAPIMSG_SUBCOMMAND(skb->data); |
| 437 | |
| 438 | p = dma->sendbuf.dmabuf; |
| 439 | |
| 440 | if (CAPICMD(cmd, subcmd) == CAPI_DATA_B3_REQ) { |
| 441 | u16 dlen = CAPIMSG_DATALEN(skb->data); |
| 442 | _put_byte(&p, SEND_DATA_B3_REQ); |
| 443 | _put_slice(&p, skb->data, len); |
| 444 | _put_slice(&p, skb->data + len, dlen); |
| 445 | } else { |
| 446 | _put_byte(&p, SEND_MESSAGE); |
| 447 | _put_slice(&p, skb->data, len); |
| 448 | } |
| 449 | txlen = (u8 *)p - (u8 *)dma->sendbuf.dmabuf; |
Robert P. J. Day | 26fb5c5 | 2007-02-12 00:53:20 -0800 | [diff] [blame] | 450 | #ifdef AVM_C4_DEBUG |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 451 | printk(KERN_DEBUG "%s: tx put msg len=%d\n", card->name, txlen); |
| 452 | #endif |
| 453 | } else { |
Joe Perches | 475be4d | 2012-02-19 19:52:38 -0800 | [diff] [blame] | 454 | txlen = skb->len - 2; |
Robert P. J. Day | 26fb5c5 | 2007-02-12 00:53:20 -0800 | [diff] [blame] | 455 | #ifdef AVM_C4_POLLDEBUG |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 456 | if (skb->data[2] == SEND_POLLACK) |
| 457 | printk(KERN_INFO "%s: ack to c4\n", card->name); |
| 458 | #endif |
Robert P. J. Day | 26fb5c5 | 2007-02-12 00:53:20 -0800 | [diff] [blame] | 459 | #ifdef AVM_C4_DEBUG |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 460 | printk(KERN_DEBUG "%s: tx put 0x%x len=%d\n", |
Joe Perches | 475be4d | 2012-02-19 19:52:38 -0800 | [diff] [blame] | 461 | card->name, skb->data[2], txlen); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 462 | #endif |
Arnaldo Carvalho de Melo | d626f62 | 2007-03-27 18:55:52 -0300 | [diff] [blame] | 463 | skb_copy_from_linear_data_offset(skb, 2, dma->sendbuf.dmabuf, |
| 464 | skb->len - 2); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 465 | } |
| 466 | txlen = (txlen + 3) & ~3; |
| 467 | |
Joe Perches | 475be4d | 2012-02-19 19:52:38 -0800 | [diff] [blame] | 468 | c4outmeml(card->mbase + MBOX_DOWN_ADDR, dma->sendbuf.dmaaddr); |
| 469 | c4outmeml(card->mbase + MBOX_DOWN_LEN, txlen); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 470 | |
| 471 | card->csr |= DBELL_DOWN_ARM; |
| 472 | |
Joe Perches | 475be4d | 2012-02-19 19:52:38 -0800 | [diff] [blame] | 473 | c4outmeml(card->mbase + DOORBELL, DBELL_DOWN_ARM); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 474 | |
| 475 | dev_kfree_skb_any(skb); |
| 476 | } |
| 477 | |
| 478 | /* ------------------------------------------------------------- */ |
| 479 | |
| 480 | static void queue_pollack(avmcard *card) |
| 481 | { |
| 482 | struct sk_buff *skb; |
| 483 | void *p; |
| 484 | |
| 485 | skb = alloc_skb(3, GFP_ATOMIC); |
| 486 | if (!skb) { |
| 487 | printk(KERN_CRIT "%s: no memory, lost poll ack\n", |
Joe Perches | 475be4d | 2012-02-19 19:52:38 -0800 | [diff] [blame] | 488 | card->name); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 489 | return; |
| 490 | } |
| 491 | p = skb->data; |
| 492 | _put_byte(&p, 0); |
| 493 | _put_byte(&p, 0); |
| 494 | _put_byte(&p, SEND_POLLACK); |
| 495 | skb_put(skb, (u8 *)p - (u8 *)skb->data); |
| 496 | |
| 497 | skb_queue_tail(&card->dma->send_queue, skb); |
| 498 | c4_dispatch_tx(card); |
| 499 | } |
| 500 | |
| 501 | /* ------------------------------------------------------------- */ |
| 502 | |
| 503 | static void c4_handle_rx(avmcard *card) |
| 504 | { |
| 505 | avmcard_dmainfo *dma = card->dma; |
| 506 | struct capi_ctr *ctrl; |
| 507 | avmctrl_info *cinfo; |
| 508 | struct sk_buff *skb; |
| 509 | void *p = dma->recvbuf.dmabuf; |
| 510 | u32 ApplId, MsgLen, DataB3Len, NCCI, WindowSize; |
| 511 | u8 b1cmd = _get_byte(&p); |
| 512 | u32 cidx; |
| 513 | |
| 514 | |
Robert P. J. Day | 26fb5c5 | 2007-02-12 00:53:20 -0800 | [diff] [blame] | 515 | #ifdef AVM_C4_DEBUG |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 516 | printk(KERN_DEBUG "%s: rx 0x%x len=%lu\n", card->name, |
Joe Perches | 475be4d | 2012-02-19 19:52:38 -0800 | [diff] [blame] | 517 | b1cmd, (unsigned long)dma->recvlen); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 518 | #endif |
Joe Perches | 475be4d | 2012-02-19 19:52:38 -0800 | [diff] [blame] | 519 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 520 | switch (b1cmd) { |
| 521 | case RECEIVE_DATA_B3_IND: |
| 522 | |
| 523 | ApplId = (unsigned) _get_word(&p); |
| 524 | MsgLen = _get_slice(&p, card->msgbuf); |
| 525 | DataB3Len = _get_slice(&p, card->databuf); |
| 526 | cidx = CAPIMSG_CONTROLLER(card->msgbuf)-card->cardnr; |
| 527 | if (cidx >= card->nlogcontr) cidx = 0; |
| 528 | ctrl = &card->ctrlinfo[cidx].capi_ctrl; |
| 529 | |
| 530 | if (MsgLen < 30) { /* not CAPI 64Bit */ |
Joe Perches | 475be4d | 2012-02-19 19:52:38 -0800 | [diff] [blame] | 531 | memset(card->msgbuf + MsgLen, 0, 30 - MsgLen); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 532 | MsgLen = 30; |
| 533 | CAPIMSG_SETLEN(card->msgbuf, 30); |
| 534 | } |
Joe Perches | 475be4d | 2012-02-19 19:52:38 -0800 | [diff] [blame] | 535 | if (!(skb = alloc_skb(DataB3Len + MsgLen, GFP_ATOMIC))) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 536 | printk(KERN_ERR "%s: incoming packet dropped\n", |
Joe Perches | 475be4d | 2012-02-19 19:52:38 -0800 | [diff] [blame] | 537 | card->name); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 538 | } else { |
Johannes Berg | 59ae1d1 | 2017-06-16 14:29:20 +0200 | [diff] [blame] | 539 | skb_put_data(skb, card->msgbuf, MsgLen); |
| 540 | skb_put_data(skb, card->databuf, DataB3Len); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 541 | capi_ctr_handle_message(ctrl, ApplId, skb); |
| 542 | } |
| 543 | break; |
| 544 | |
| 545 | case RECEIVE_MESSAGE: |
| 546 | |
| 547 | ApplId = (unsigned) _get_word(&p); |
| 548 | MsgLen = _get_slice(&p, card->msgbuf); |
| 549 | cidx = CAPIMSG_CONTROLLER(card->msgbuf)-card->cardnr; |
| 550 | if (cidx >= card->nlogcontr) cidx = 0; |
| 551 | cinfo = &card->ctrlinfo[cidx]; |
| 552 | ctrl = &card->ctrlinfo[cidx].capi_ctrl; |
| 553 | |
| 554 | if (!(skb = alloc_skb(MsgLen, GFP_ATOMIC))) { |
| 555 | printk(KERN_ERR "%s: incoming packet dropped\n", |
Joe Perches | 475be4d | 2012-02-19 19:52:38 -0800 | [diff] [blame] | 556 | card->name); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 557 | } else { |
Johannes Berg | 59ae1d1 | 2017-06-16 14:29:20 +0200 | [diff] [blame] | 558 | skb_put_data(skb, card->msgbuf, MsgLen); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 559 | if (CAPIMSG_CMD(skb->data) == CAPI_DATA_B3_CONF) |
| 560 | capilib_data_b3_conf(&cinfo->ncci_head, ApplId, |
| 561 | CAPIMSG_NCCI(skb->data), |
| 562 | CAPIMSG_MSGID(skb->data)); |
| 563 | |
| 564 | capi_ctr_handle_message(ctrl, ApplId, skb); |
| 565 | } |
| 566 | break; |
| 567 | |
| 568 | case RECEIVE_NEW_NCCI: |
| 569 | |
| 570 | ApplId = _get_word(&p); |
| 571 | NCCI = _get_word(&p); |
| 572 | WindowSize = _get_word(&p); |
Joe Perches | 475be4d | 2012-02-19 19:52:38 -0800 | [diff] [blame] | 573 | cidx = (NCCI & 0x7f) - card->cardnr; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 574 | if (cidx >= card->nlogcontr) cidx = 0; |
| 575 | |
| 576 | capilib_new_ncci(&card->ctrlinfo[cidx].ncci_head, ApplId, NCCI, WindowSize); |
| 577 | |
| 578 | break; |
| 579 | |
| 580 | case RECEIVE_FREE_NCCI: |
| 581 | |
| 582 | ApplId = _get_word(&p); |
| 583 | NCCI = _get_word(&p); |
| 584 | |
| 585 | if (NCCI != 0xffffffff) { |
Joe Perches | 475be4d | 2012-02-19 19:52:38 -0800 | [diff] [blame] | 586 | cidx = (NCCI & 0x7f) - card->cardnr; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 587 | if (cidx >= card->nlogcontr) cidx = 0; |
| 588 | capilib_free_ncci(&card->ctrlinfo[cidx].ncci_head, ApplId, NCCI); |
| 589 | } |
| 590 | break; |
| 591 | |
| 592 | case RECEIVE_START: |
Robert P. J. Day | 26fb5c5 | 2007-02-12 00:53:20 -0800 | [diff] [blame] | 593 | #ifdef AVM_C4_POLLDEBUG |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 594 | printk(KERN_INFO "%s: poll from c4\n", card->name); |
| 595 | #endif |
| 596 | if (!suppress_pollack) |
| 597 | queue_pollack(card); |
Joe Perches | 475be4d | 2012-02-19 19:52:38 -0800 | [diff] [blame] | 598 | for (cidx = 0; cidx < card->nr_controllers; cidx++) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 599 | ctrl = &card->ctrlinfo[cidx].capi_ctrl; |
| 600 | capi_ctr_resume_output(ctrl); |
| 601 | } |
| 602 | break; |
| 603 | |
| 604 | case RECEIVE_STOP: |
Joe Perches | 475be4d | 2012-02-19 19:52:38 -0800 | [diff] [blame] | 605 | for (cidx = 0; cidx < card->nr_controllers; cidx++) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 606 | ctrl = &card->ctrlinfo[cidx].capi_ctrl; |
| 607 | capi_ctr_suspend_output(ctrl); |
| 608 | } |
| 609 | break; |
| 610 | |
| 611 | case RECEIVE_INIT: |
| 612 | |
Joe Perches | 475be4d | 2012-02-19 19:52:38 -0800 | [diff] [blame] | 613 | cidx = card->nlogcontr; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 614 | if (cidx >= card->nr_controllers) { |
| 615 | printk(KERN_ERR "%s: card with %d controllers ??\n", |
Joe Perches | 475be4d | 2012-02-19 19:52:38 -0800 | [diff] [blame] | 616 | card->name, cidx + 1); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 617 | break; |
| 618 | } |
Joe Perches | 475be4d | 2012-02-19 19:52:38 -0800 | [diff] [blame] | 619 | card->nlogcontr++; |
| 620 | cinfo = &card->ctrlinfo[cidx]; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 621 | ctrl = &cinfo->capi_ctrl; |
| 622 | cinfo->versionlen = _get_slice(&p, cinfo->versionbuf); |
| 623 | b1_parse_version(cinfo); |
| 624 | printk(KERN_INFO "%s: %s-card (%s) now active\n", |
| 625 | card->name, |
| 626 | cinfo->version[VER_CARDTYPE], |
| 627 | cinfo->version[VER_DRIVER]); |
| 628 | capi_ctr_ready(&cinfo->capi_ctrl); |
| 629 | break; |
| 630 | |
| 631 | case RECEIVE_TASK_READY: |
| 632 | ApplId = (unsigned) _get_word(&p); |
| 633 | MsgLen = _get_slice(&p, card->msgbuf); |
| 634 | card->msgbuf[MsgLen] = 0; |
Joe Perches | 475be4d | 2012-02-19 19:52:38 -0800 | [diff] [blame] | 635 | while (MsgLen > 0 |
| 636 | && (card->msgbuf[MsgLen - 1] == '\n' |
| 637 | || card->msgbuf[MsgLen - 1] == '\r')) { |
| 638 | card->msgbuf[MsgLen - 1] = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 639 | MsgLen--; |
| 640 | } |
| 641 | printk(KERN_INFO "%s: task %d \"%s\" ready.\n", |
Joe Perches | 475be4d | 2012-02-19 19:52:38 -0800 | [diff] [blame] | 642 | card->name, ApplId, card->msgbuf); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 643 | break; |
| 644 | |
| 645 | case RECEIVE_DEBUGMSG: |
| 646 | MsgLen = _get_slice(&p, card->msgbuf); |
| 647 | card->msgbuf[MsgLen] = 0; |
Joe Perches | 475be4d | 2012-02-19 19:52:38 -0800 | [diff] [blame] | 648 | while (MsgLen > 0 |
| 649 | && (card->msgbuf[MsgLen - 1] == '\n' |
| 650 | || card->msgbuf[MsgLen - 1] == '\r')) { |
| 651 | card->msgbuf[MsgLen - 1] = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 652 | MsgLen--; |
| 653 | } |
| 654 | printk(KERN_INFO "%s: DEBUG: %s\n", card->name, card->msgbuf); |
| 655 | break; |
| 656 | |
| 657 | default: |
| 658 | printk(KERN_ERR "%s: c4_interrupt: 0x%x ???\n", |
Joe Perches | 475be4d | 2012-02-19 19:52:38 -0800 | [diff] [blame] | 659 | card->name, b1cmd); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 660 | return; |
| 661 | } |
| 662 | } |
| 663 | |
| 664 | /* ------------------------------------------------------------- */ |
| 665 | |
| 666 | static irqreturn_t c4_handle_interrupt(avmcard *card) |
| 667 | { |
| 668 | unsigned long flags; |
| 669 | u32 status; |
| 670 | |
| 671 | spin_lock_irqsave(&card->lock, flags); |
Joe Perches | 475be4d | 2012-02-19 19:52:38 -0800 | [diff] [blame] | 672 | status = c4inmeml(card->mbase + DOORBELL); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 673 | |
| 674 | if (status & DBELL_RESET_HOST) { |
| 675 | u_int i; |
Joe Perches | 475be4d | 2012-02-19 19:52:38 -0800 | [diff] [blame] | 676 | c4outmeml(card->mbase + PCI_OUT_INT_MASK, 0x0c); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 677 | spin_unlock_irqrestore(&card->lock, flags); |
| 678 | if (card->nlogcontr == 0) |
| 679 | return IRQ_HANDLED; |
| 680 | printk(KERN_ERR "%s: unexpected reset\n", card->name); |
Joe Perches | 475be4d | 2012-02-19 19:52:38 -0800 | [diff] [blame] | 681 | for (i = 0; i < card->nr_controllers; i++) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 682 | avmctrl_info *cinfo = &card->ctrlinfo[i]; |
| 683 | memset(cinfo->version, 0, sizeof(cinfo->version)); |
Karsten Keil | eac141d | 2007-10-18 23:39:18 -0700 | [diff] [blame] | 684 | spin_lock_irqsave(&card->lock, flags); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 685 | capilib_release(&cinfo->ncci_head); |
Karsten Keil | eac141d | 2007-10-18 23:39:18 -0700 | [diff] [blame] | 686 | spin_unlock_irqrestore(&card->lock, flags); |
Tilman Schmidt | 4e32997 | 2009-06-07 09:09:23 +0000 | [diff] [blame] | 687 | capi_ctr_down(&cinfo->capi_ctrl); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 688 | } |
| 689 | card->nlogcontr = 0; |
| 690 | return IRQ_HANDLED; |
| 691 | } |
| 692 | |
| 693 | status &= (DBELL_UP_HOST | DBELL_DOWN_HOST); |
| 694 | if (!status) { |
| 695 | spin_unlock_irqrestore(&card->lock, flags); |
| 696 | return IRQ_HANDLED; |
| 697 | } |
Joe Perches | 475be4d | 2012-02-19 19:52:38 -0800 | [diff] [blame] | 698 | c4outmeml(card->mbase + DOORBELL, status); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 699 | |
| 700 | if ((status & DBELL_UP_HOST) != 0) { |
Joe Perches | 475be4d | 2012-02-19 19:52:38 -0800 | [diff] [blame] | 701 | card->dma->recvlen = c4inmeml(card->mbase + MBOX_UP_LEN); |
| 702 | c4outmeml(card->mbase + MBOX_UP_LEN, 0); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 703 | c4_handle_rx(card); |
| 704 | card->dma->recvlen = 0; |
Joe Perches | 475be4d | 2012-02-19 19:52:38 -0800 | [diff] [blame] | 705 | c4outmeml(card->mbase + MBOX_UP_LEN, card->dma->recvbuf.size); |
| 706 | c4outmeml(card->mbase + DOORBELL, DBELL_UP_ARM); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 707 | } |
| 708 | |
| 709 | if ((status & DBELL_DOWN_HOST) != 0) { |
| 710 | card->csr &= ~DBELL_DOWN_ARM; |
Joe Perches | 475be4d | 2012-02-19 19:52:38 -0800 | [diff] [blame] | 711 | c4_dispatch_tx(card); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 712 | } else if (card->csr & DBELL_DOWN_HOST) { |
Joe Perches | 475be4d | 2012-02-19 19:52:38 -0800 | [diff] [blame] | 713 | if (c4inmeml(card->mbase + MBOX_DOWN_LEN) == 0) { |
| 714 | card->csr &= ~DBELL_DOWN_ARM; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 715 | c4_dispatch_tx(card); |
| 716 | } |
| 717 | } |
| 718 | spin_unlock_irqrestore(&card->lock, flags); |
| 719 | return IRQ_HANDLED; |
| 720 | } |
| 721 | |
David Howells | 7d12e78 | 2006-10-05 14:55:46 +0100 | [diff] [blame] | 722 | static irqreturn_t c4_interrupt(int interrupt, void *devptr) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 723 | { |
| 724 | avmcard *card = devptr; |
| 725 | |
| 726 | return c4_handle_interrupt(card); |
| 727 | } |
| 728 | |
| 729 | /* ------------------------------------------------------------- */ |
| 730 | |
| 731 | static void c4_send_init(avmcard *card) |
| 732 | { |
| 733 | struct sk_buff *skb; |
| 734 | void *p; |
Karsten Keil | 1ccfd63 | 2007-10-18 03:04:32 -0700 | [diff] [blame] | 735 | unsigned long flags; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 736 | |
| 737 | skb = alloc_skb(15, GFP_ATOMIC); |
| 738 | if (!skb) { |
| 739 | printk(KERN_CRIT "%s: no memory, lost register appl.\n", |
Joe Perches | 475be4d | 2012-02-19 19:52:38 -0800 | [diff] [blame] | 740 | card->name); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 741 | return; |
| 742 | } |
| 743 | p = skb->data; |
| 744 | _put_byte(&p, 0); |
| 745 | _put_byte(&p, 0); |
| 746 | _put_byte(&p, SEND_INIT); |
| 747 | _put_word(&p, CAPI_MAXAPPL); |
Joe Perches | 475be4d | 2012-02-19 19:52:38 -0800 | [diff] [blame] | 748 | _put_word(&p, AVM_NCCI_PER_CHANNEL * 30); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 749 | _put_word(&p, card->cardnr - 1); |
| 750 | skb_put(skb, (u8 *)p - (u8 *)skb->data); |
| 751 | |
| 752 | skb_queue_tail(&card->dma->send_queue, skb); |
Karsten Keil | 1ccfd63 | 2007-10-18 03:04:32 -0700 | [diff] [blame] | 753 | spin_lock_irqsave(&card->lock, flags); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 754 | c4_dispatch_tx(card); |
Karsten Keil | 1ccfd63 | 2007-10-18 03:04:32 -0700 | [diff] [blame] | 755 | spin_unlock_irqrestore(&card->lock, flags); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 756 | } |
| 757 | |
| 758 | static int queue_sendconfigword(avmcard *card, u32 val) |
| 759 | { |
| 760 | struct sk_buff *skb; |
Karsten Keil | 1ccfd63 | 2007-10-18 03:04:32 -0700 | [diff] [blame] | 761 | unsigned long flags; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 762 | void *p; |
| 763 | |
Joe Perches | 475be4d | 2012-02-19 19:52:38 -0800 | [diff] [blame] | 764 | skb = alloc_skb(3 + 4, GFP_ATOMIC); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 765 | if (!skb) { |
| 766 | printk(KERN_CRIT "%s: no memory, send config\n", |
Joe Perches | 475be4d | 2012-02-19 19:52:38 -0800 | [diff] [blame] | 767 | card->name); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 768 | return -ENOMEM; |
| 769 | } |
| 770 | p = skb->data; |
| 771 | _put_byte(&p, 0); |
| 772 | _put_byte(&p, 0); |
| 773 | _put_byte(&p, SEND_CONFIG); |
| 774 | _put_word(&p, val); |
| 775 | skb_put(skb, (u8 *)p - (u8 *)skb->data); |
| 776 | |
| 777 | skb_queue_tail(&card->dma->send_queue, skb); |
Karsten Keil | 1ccfd63 | 2007-10-18 03:04:32 -0700 | [diff] [blame] | 778 | spin_lock_irqsave(&card->lock, flags); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 779 | c4_dispatch_tx(card); |
Karsten Keil | 1ccfd63 | 2007-10-18 03:04:32 -0700 | [diff] [blame] | 780 | spin_unlock_irqrestore(&card->lock, flags); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 781 | return 0; |
| 782 | } |
| 783 | |
| 784 | static int queue_sendconfig(avmcard *card, char cval[4]) |
| 785 | { |
| 786 | struct sk_buff *skb; |
| 787 | unsigned long flags; |
| 788 | void *p; |
| 789 | |
Joe Perches | 475be4d | 2012-02-19 19:52:38 -0800 | [diff] [blame] | 790 | skb = alloc_skb(3 + 4, GFP_ATOMIC); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 791 | if (!skb) { |
| 792 | printk(KERN_CRIT "%s: no memory, send config\n", |
Joe Perches | 475be4d | 2012-02-19 19:52:38 -0800 | [diff] [blame] | 793 | card->name); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 794 | return -ENOMEM; |
| 795 | } |
| 796 | p = skb->data; |
| 797 | _put_byte(&p, 0); |
| 798 | _put_byte(&p, 0); |
| 799 | _put_byte(&p, SEND_CONFIG); |
| 800 | _put_byte(&p, cval[0]); |
| 801 | _put_byte(&p, cval[1]); |
| 802 | _put_byte(&p, cval[2]); |
| 803 | _put_byte(&p, cval[3]); |
| 804 | skb_put(skb, (u8 *)p - (u8 *)skb->data); |
| 805 | |
| 806 | skb_queue_tail(&card->dma->send_queue, skb); |
Joe Perches | 475be4d | 2012-02-19 19:52:38 -0800 | [diff] [blame] | 807 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 808 | spin_lock_irqsave(&card->lock, flags); |
| 809 | c4_dispatch_tx(card); |
| 810 | spin_unlock_irqrestore(&card->lock, flags); |
| 811 | return 0; |
| 812 | } |
| 813 | |
Joe Perches | 475be4d | 2012-02-19 19:52:38 -0800 | [diff] [blame] | 814 | static int c4_send_config(avmcard *card, capiloaddatapart *config) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 815 | { |
| 816 | u8 val[4]; |
| 817 | unsigned char *dp; |
| 818 | u_int left; |
| 819 | int retval; |
Joe Perches | 475be4d | 2012-02-19 19:52:38 -0800 | [diff] [blame] | 820 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 821 | if ((retval = queue_sendconfigword(card, 1)) != 0) |
| 822 | return retval; |
| 823 | if ((retval = queue_sendconfigword(card, config->len)) != 0) |
| 824 | return retval; |
| 825 | |
| 826 | dp = config->data; |
| 827 | left = config->len; |
| 828 | while (left >= sizeof(u32)) { |
Joe Perches | 475be4d | 2012-02-19 19:52:38 -0800 | [diff] [blame] | 829 | if (config->user) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 830 | if (copy_from_user(val, dp, sizeof(val))) |
| 831 | return -EFAULT; |
| 832 | } else { |
| 833 | memcpy(val, dp, sizeof(val)); |
| 834 | } |
| 835 | if ((retval = queue_sendconfig(card, val)) != 0) |
| 836 | return retval; |
| 837 | left -= sizeof(val); |
| 838 | dp += sizeof(val); |
| 839 | } |
| 840 | if (left) { |
| 841 | memset(val, 0, sizeof(val)); |
| 842 | if (config->user) { |
| 843 | if (copy_from_user(&val, dp, left)) |
| 844 | return -EFAULT; |
| 845 | } else { |
| 846 | memcpy(&val, dp, left); |
| 847 | } |
| 848 | if ((retval = queue_sendconfig(card, val)) != 0) |
| 849 | return retval; |
| 850 | } |
| 851 | |
| 852 | return 0; |
| 853 | } |
| 854 | |
| 855 | static int c4_load_firmware(struct capi_ctr *ctrl, capiloaddata *data) |
| 856 | { |
| 857 | avmctrl_info *cinfo = (avmctrl_info *)(ctrl->driverdata); |
| 858 | avmcard *card = cinfo->card; |
| 859 | int retval; |
| 860 | |
| 861 | if ((retval = c4_load_t4file(card, &data->firmware))) { |
| 862 | printk(KERN_ERR "%s: failed to load t4file!!\n", |
Joe Perches | 475be4d | 2012-02-19 19:52:38 -0800 | [diff] [blame] | 863 | card->name); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 864 | c4_reset(card); |
| 865 | return retval; |
| 866 | } |
| 867 | |
| 868 | card->csr = 0; |
Joe Perches | 475be4d | 2012-02-19 19:52:38 -0800 | [diff] [blame] | 869 | c4outmeml(card->mbase + MBOX_UP_LEN, 0); |
| 870 | c4outmeml(card->mbase + MBOX_DOWN_LEN, 0); |
| 871 | c4outmeml(card->mbase + DOORBELL, DBELL_INIT); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 872 | mdelay(1); |
Joe Perches | 475be4d | 2012-02-19 19:52:38 -0800 | [diff] [blame] | 873 | c4outmeml(card->mbase + DOORBELL, |
| 874 | DBELL_UP_HOST | DBELL_DOWN_HOST | DBELL_RESET_HOST); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 875 | |
Joe Perches | 475be4d | 2012-02-19 19:52:38 -0800 | [diff] [blame] | 876 | c4outmeml(card->mbase + PCI_OUT_INT_MASK, 0x08); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 877 | |
| 878 | card->dma->recvlen = 0; |
Joe Perches | 475be4d | 2012-02-19 19:52:38 -0800 | [diff] [blame] | 879 | c4outmeml(card->mbase + MBOX_UP_ADDR, card->dma->recvbuf.dmaaddr); |
| 880 | c4outmeml(card->mbase + MBOX_UP_LEN, card->dma->recvbuf.size); |
| 881 | c4outmeml(card->mbase + DOORBELL, DBELL_UP_ARM); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 882 | |
| 883 | if (data->configuration.len > 0 && data->configuration.data) { |
| 884 | retval = c4_send_config(card, &data->configuration); |
| 885 | if (retval) { |
| 886 | printk(KERN_ERR "%s: failed to set config!!\n", |
Joe Perches | 475be4d | 2012-02-19 19:52:38 -0800 | [diff] [blame] | 887 | card->name); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 888 | c4_reset(card); |
| 889 | return retval; |
| 890 | } |
| 891 | } |
| 892 | |
Joe Perches | 475be4d | 2012-02-19 19:52:38 -0800 | [diff] [blame] | 893 | c4_send_init(card); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 894 | |
| 895 | return 0; |
| 896 | } |
| 897 | |
| 898 | |
Adrian Bunk | 08e5153 | 2005-06-25 14:58:37 -0700 | [diff] [blame] | 899 | static void c4_reset_ctr(struct capi_ctr *ctrl) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 900 | { |
| 901 | avmcard *card = ((avmctrl_info *)(ctrl->driverdata))->card; |
| 902 | avmctrl_info *cinfo; |
| 903 | u_int i; |
| 904 | unsigned long flags; |
| 905 | |
| 906 | spin_lock_irqsave(&card->lock, flags); |
| 907 | |
Joe Perches | 475be4d | 2012-02-19 19:52:38 -0800 | [diff] [blame] | 908 | c4_reset(card); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 909 | |
| 910 | spin_unlock_irqrestore(&card->lock, flags); |
| 911 | |
Joe Perches | 475be4d | 2012-02-19 19:52:38 -0800 | [diff] [blame] | 912 | for (i = 0; i < card->nr_controllers; i++) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 913 | cinfo = &card->ctrlinfo[i]; |
| 914 | memset(cinfo->version, 0, sizeof(cinfo->version)); |
Tilman Schmidt | 4e32997 | 2009-06-07 09:09:23 +0000 | [diff] [blame] | 915 | capi_ctr_down(&cinfo->capi_ctrl); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 916 | } |
| 917 | card->nlogcontr = 0; |
| 918 | } |
| 919 | |
| 920 | static void c4_remove(struct pci_dev *pdev) |
| 921 | { |
| 922 | avmcard *card = pci_get_drvdata(pdev); |
| 923 | avmctrl_info *cinfo; |
| 924 | u_int i; |
| 925 | |
| 926 | if (!card) |
| 927 | return; |
| 928 | |
Joe Perches | 475be4d | 2012-02-19 19:52:38 -0800 | [diff] [blame] | 929 | c4_reset(card); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 930 | |
Joe Perches | 475be4d | 2012-02-19 19:52:38 -0800 | [diff] [blame] | 931 | for (i = 0; i < card->nr_controllers; i++) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 932 | cinfo = &card->ctrlinfo[i]; |
| 933 | detach_capi_ctr(&cinfo->capi_ctrl); |
| 934 | } |
| 935 | |
| 936 | free_irq(card->irq, card); |
| 937 | iounmap(card->mbase); |
| 938 | release_region(card->port, AVMB1_PORTLEN); |
Joe Perches | 475be4d | 2012-02-19 19:52:38 -0800 | [diff] [blame] | 939 | avmcard_dma_free(card->dma); |
| 940 | pci_set_drvdata(pdev, NULL); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 941 | b1_free_card(card); |
| 942 | } |
| 943 | |
| 944 | /* ------------------------------------------------------------- */ |
| 945 | |
| 946 | |
Adrian Bunk | 08e5153 | 2005-06-25 14:58:37 -0700 | [diff] [blame] | 947 | static void c4_register_appl(struct capi_ctr *ctrl, |
Joe Perches | 475be4d | 2012-02-19 19:52:38 -0800 | [diff] [blame] | 948 | u16 appl, |
| 949 | capi_register_params *rp) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 950 | { |
| 951 | avmctrl_info *cinfo = (avmctrl_info *)(ctrl->driverdata); |
| 952 | avmcard *card = cinfo->card; |
| 953 | struct sk_buff *skb; |
| 954 | int want = rp->level3cnt; |
| 955 | unsigned long flags; |
| 956 | int nconn; |
| 957 | void *p; |
| 958 | |
| 959 | if (ctrl->cnr == card->cardnr) { |
| 960 | |
| 961 | if (want > 0) nconn = want; |
| 962 | else nconn = ctrl->profile.nbchannel * 4 * -want; |
| 963 | if (nconn == 0) nconn = ctrl->profile.nbchannel * 4; |
| 964 | |
| 965 | skb = alloc_skb(23, GFP_ATOMIC); |
| 966 | if (!skb) { |
| 967 | printk(KERN_CRIT "%s: no memory, lost register appl.\n", |
Joe Perches | 475be4d | 2012-02-19 19:52:38 -0800 | [diff] [blame] | 968 | card->name); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 969 | return; |
| 970 | } |
| 971 | p = skb->data; |
| 972 | _put_byte(&p, 0); |
| 973 | _put_byte(&p, 0); |
| 974 | _put_byte(&p, SEND_REGISTER); |
| 975 | _put_word(&p, appl); |
Joe Perches | 475be4d | 2012-02-19 19:52:38 -0800 | [diff] [blame] | 976 | _put_word(&p, 1024 * (nconn + 1)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 977 | _put_word(&p, nconn); |
| 978 | _put_word(&p, rp->datablkcnt); |
| 979 | _put_word(&p, rp->datablklen); |
| 980 | skb_put(skb, (u8 *)p - (u8 *)skb->data); |
| 981 | |
| 982 | skb_queue_tail(&card->dma->send_queue, skb); |
Joe Perches | 475be4d | 2012-02-19 19:52:38 -0800 | [diff] [blame] | 983 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 984 | spin_lock_irqsave(&card->lock, flags); |
| 985 | c4_dispatch_tx(card); |
| 986 | spin_unlock_irqrestore(&card->lock, flags); |
| 987 | } |
| 988 | } |
| 989 | |
| 990 | /* ------------------------------------------------------------- */ |
| 991 | |
Adrian Bunk | 08e5153 | 2005-06-25 14:58:37 -0700 | [diff] [blame] | 992 | static void c4_release_appl(struct capi_ctr *ctrl, u16 appl) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 993 | { |
| 994 | avmctrl_info *cinfo = (avmctrl_info *)(ctrl->driverdata); |
| 995 | avmcard *card = cinfo->card; |
| 996 | unsigned long flags; |
| 997 | struct sk_buff *skb; |
| 998 | void *p; |
| 999 | |
Karsten Keil | 1ccfd63 | 2007-10-18 03:04:32 -0700 | [diff] [blame] | 1000 | spin_lock_irqsave(&card->lock, flags); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1001 | capilib_release_appl(&cinfo->ncci_head, appl); |
Karsten Keil | 1ccfd63 | 2007-10-18 03:04:32 -0700 | [diff] [blame] | 1002 | spin_unlock_irqrestore(&card->lock, flags); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1003 | |
| 1004 | if (ctrl->cnr == card->cardnr) { |
| 1005 | skb = alloc_skb(7, GFP_ATOMIC); |
| 1006 | if (!skb) { |
| 1007 | printk(KERN_CRIT "%s: no memory, lost release appl.\n", |
Joe Perches | 475be4d | 2012-02-19 19:52:38 -0800 | [diff] [blame] | 1008 | card->name); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1009 | return; |
| 1010 | } |
| 1011 | p = skb->data; |
| 1012 | _put_byte(&p, 0); |
| 1013 | _put_byte(&p, 0); |
| 1014 | _put_byte(&p, SEND_RELEASE); |
| 1015 | _put_word(&p, appl); |
| 1016 | |
| 1017 | skb_put(skb, (u8 *)p - (u8 *)skb->data); |
| 1018 | skb_queue_tail(&card->dma->send_queue, skb); |
| 1019 | spin_lock_irqsave(&card->lock, flags); |
| 1020 | c4_dispatch_tx(card); |
| 1021 | spin_unlock_irqrestore(&card->lock, flags); |
| 1022 | } |
| 1023 | } |
| 1024 | |
| 1025 | /* ------------------------------------------------------------- */ |
| 1026 | |
| 1027 | |
| 1028 | static u16 c4_send_message(struct capi_ctr *ctrl, struct sk_buff *skb) |
| 1029 | { |
| 1030 | avmctrl_info *cinfo = (avmctrl_info *)(ctrl->driverdata); |
| 1031 | avmcard *card = cinfo->card; |
| 1032 | u16 retval = CAPI_NOERROR; |
| 1033 | unsigned long flags; |
| 1034 | |
Karsten Keil | 1ccfd63 | 2007-10-18 03:04:32 -0700 | [diff] [blame] | 1035 | spin_lock_irqsave(&card->lock, flags); |
| 1036 | if (CAPIMSG_CMD(skb->data) == CAPI_DATA_B3_REQ) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1037 | retval = capilib_data_b3_req(&cinfo->ncci_head, |
| 1038 | CAPIMSG_APPID(skb->data), |
| 1039 | CAPIMSG_NCCI(skb->data), |
| 1040 | CAPIMSG_MSGID(skb->data)); |
| 1041 | } |
| 1042 | if (retval == CAPI_NOERROR) { |
| 1043 | skb_queue_tail(&card->dma->send_queue, skb); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1044 | c4_dispatch_tx(card); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1045 | } |
Karsten Keil | 1ccfd63 | 2007-10-18 03:04:32 -0700 | [diff] [blame] | 1046 | spin_unlock_irqrestore(&card->lock, flags); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1047 | return retval; |
| 1048 | } |
| 1049 | |
| 1050 | /* ------------------------------------------------------------- */ |
| 1051 | |
| 1052 | static char *c4_procinfo(struct capi_ctr *ctrl) |
| 1053 | { |
| 1054 | avmctrl_info *cinfo = (avmctrl_info *)(ctrl->driverdata); |
| 1055 | |
| 1056 | if (!cinfo) |
| 1057 | return ""; |
| 1058 | sprintf(cinfo->infobuf, "%s %s 0x%x %d 0x%lx", |
| 1059 | cinfo->cardname[0] ? cinfo->cardname : "-", |
| 1060 | cinfo->version[VER_DRIVER] ? cinfo->version[VER_DRIVER] : "-", |
| 1061 | cinfo->card ? cinfo->card->port : 0x0, |
| 1062 | cinfo->card ? cinfo->card->irq : 0, |
| 1063 | cinfo->card ? cinfo->card->membase : 0 |
| 1064 | ); |
| 1065 | return cinfo->infobuf; |
| 1066 | } |
| 1067 | |
Alexey Dobriyan | 9a58a80 | 2010-01-14 03:10:54 -0800 | [diff] [blame] | 1068 | static int c4_proc_show(struct seq_file *m, void *v) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1069 | { |
Alexey Dobriyan | 9a58a80 | 2010-01-14 03:10:54 -0800 | [diff] [blame] | 1070 | struct capi_ctr *ctrl = m->private; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1071 | avmctrl_info *cinfo = (avmctrl_info *)(ctrl->driverdata); |
| 1072 | avmcard *card = cinfo->card; |
| 1073 | u8 flag; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1074 | char *s; |
| 1075 | |
Alexey Dobriyan | 9a58a80 | 2010-01-14 03:10:54 -0800 | [diff] [blame] | 1076 | seq_printf(m, "%-16s %s\n", "name", card->name); |
| 1077 | seq_printf(m, "%-16s 0x%x\n", "io", card->port); |
| 1078 | seq_printf(m, "%-16s %d\n", "irq", card->irq); |
| 1079 | seq_printf(m, "%-16s 0x%lx\n", "membase", card->membase); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1080 | switch (card->cardtype) { |
| 1081 | case avm_b1isa: s = "B1 ISA"; break; |
| 1082 | case avm_b1pci: s = "B1 PCI"; break; |
| 1083 | case avm_b1pcmcia: s = "B1 PCMCIA"; break; |
| 1084 | case avm_m1: s = "M1"; break; |
| 1085 | case avm_m2: s = "M2"; break; |
| 1086 | case avm_t1isa: s = "T1 ISA (HEMA)"; break; |
| 1087 | case avm_t1pci: s = "T1 PCI"; break; |
| 1088 | case avm_c4: s = "C4"; break; |
| 1089 | case avm_c2: s = "C2"; break; |
| 1090 | default: s = "???"; break; |
| 1091 | } |
Alexey Dobriyan | 9a58a80 | 2010-01-14 03:10:54 -0800 | [diff] [blame] | 1092 | seq_printf(m, "%-16s %s\n", "type", s); |
Harvey Harrison | 8e44b29 | 2008-04-28 02:14:38 -0700 | [diff] [blame] | 1093 | if ((s = cinfo->version[VER_DRIVER]) != NULL) |
Alexey Dobriyan | 9a58a80 | 2010-01-14 03:10:54 -0800 | [diff] [blame] | 1094 | seq_printf(m, "%-16s %s\n", "ver_driver", s); |
Harvey Harrison | 8e44b29 | 2008-04-28 02:14:38 -0700 | [diff] [blame] | 1095 | if ((s = cinfo->version[VER_CARDTYPE]) != NULL) |
Alexey Dobriyan | 9a58a80 | 2010-01-14 03:10:54 -0800 | [diff] [blame] | 1096 | seq_printf(m, "%-16s %s\n", "ver_cardtype", s); |
Harvey Harrison | 8e44b29 | 2008-04-28 02:14:38 -0700 | [diff] [blame] | 1097 | if ((s = cinfo->version[VER_SERIAL]) != NULL) |
Alexey Dobriyan | 9a58a80 | 2010-01-14 03:10:54 -0800 | [diff] [blame] | 1098 | seq_printf(m, "%-16s %s\n", "ver_serial", s); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1099 | |
| 1100 | if (card->cardtype != avm_m1) { |
Joe Perches | 475be4d | 2012-02-19 19:52:38 -0800 | [diff] [blame] | 1101 | flag = ((u8 *)(ctrl->profile.manu))[3]; |
| 1102 | if (flag) |
Alexey Dobriyan | 9a58a80 | 2010-01-14 03:10:54 -0800 | [diff] [blame] | 1103 | seq_printf(m, "%-16s%s%s%s%s%s%s%s\n", |
Joe Perches | 475be4d | 2012-02-19 19:52:38 -0800 | [diff] [blame] | 1104 | "protocol", |
| 1105 | (flag & 0x01) ? " DSS1" : "", |
| 1106 | (flag & 0x02) ? " CT1" : "", |
| 1107 | (flag & 0x04) ? " VN3" : "", |
| 1108 | (flag & 0x08) ? " NI1" : "", |
| 1109 | (flag & 0x10) ? " AUSTEL" : "", |
| 1110 | (flag & 0x20) ? " ESS" : "", |
| 1111 | (flag & 0x40) ? " 1TR6" : "" |
| 1112 | ); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1113 | } |
| 1114 | if (card->cardtype != avm_m1) { |
Joe Perches | 475be4d | 2012-02-19 19:52:38 -0800 | [diff] [blame] | 1115 | flag = ((u8 *)(ctrl->profile.manu))[5]; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1116 | if (flag) |
Alexey Dobriyan | 9a58a80 | 2010-01-14 03:10:54 -0800 | [diff] [blame] | 1117 | seq_printf(m, "%-16s%s%s%s%s\n", |
Joe Perches | 475be4d | 2012-02-19 19:52:38 -0800 | [diff] [blame] | 1118 | "linetype", |
| 1119 | (flag & 0x01) ? " point to point" : "", |
| 1120 | (flag & 0x02) ? " point to multipoint" : "", |
| 1121 | (flag & 0x08) ? " leased line without D-channel" : "", |
| 1122 | (flag & 0x04) ? " leased line with D-channel" : "" |
| 1123 | ); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1124 | } |
Alexey Dobriyan | 9a58a80 | 2010-01-14 03:10:54 -0800 | [diff] [blame] | 1125 | seq_printf(m, "%-16s %s\n", "cardname", cinfo->cardname); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1126 | |
Alexey Dobriyan | 9a58a80 | 2010-01-14 03:10:54 -0800 | [diff] [blame] | 1127 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1128 | } |
| 1129 | |
Alexey Dobriyan | 9a58a80 | 2010-01-14 03:10:54 -0800 | [diff] [blame] | 1130 | static int c4_proc_open(struct inode *inode, struct file *file) |
| 1131 | { |
Al Viro | d9dda78 | 2013-03-31 18:16:14 -0400 | [diff] [blame] | 1132 | return single_open(file, c4_proc_show, PDE_DATA(inode)); |
Alexey Dobriyan | 9a58a80 | 2010-01-14 03:10:54 -0800 | [diff] [blame] | 1133 | } |
| 1134 | |
| 1135 | static const struct file_operations c4_proc_fops = { |
| 1136 | .owner = THIS_MODULE, |
| 1137 | .open = c4_proc_open, |
| 1138 | .read = seq_read, |
| 1139 | .llseek = seq_lseek, |
| 1140 | .release = single_release, |
| 1141 | }; |
| 1142 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1143 | /* ------------------------------------------------------------- */ |
| 1144 | |
| 1145 | static int c4_add_card(struct capicardparams *p, struct pci_dev *dev, |
| 1146 | int nr_controllers) |
| 1147 | { |
| 1148 | avmcard *card; |
| 1149 | avmctrl_info *cinfo; |
| 1150 | int retval; |
| 1151 | int i; |
| 1152 | |
| 1153 | card = b1_alloc_card(nr_controllers); |
| 1154 | if (!card) { |
| 1155 | printk(KERN_WARNING "c4: no memory.\n"); |
| 1156 | retval = -ENOMEM; |
| 1157 | goto err; |
| 1158 | } |
Joe Perches | 475be4d | 2012-02-19 19:52:38 -0800 | [diff] [blame] | 1159 | card->dma = avmcard_dma_alloc("c4", dev, 2048 + 128, 2048 + 128); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1160 | if (!card->dma) { |
| 1161 | printk(KERN_WARNING "c4: no memory.\n"); |
| 1162 | retval = -ENOMEM; |
| 1163 | goto err_free; |
| 1164 | } |
| 1165 | |
| 1166 | sprintf(card->name, "c%d-%x", nr_controllers, p->port); |
| 1167 | card->port = p->port; |
| 1168 | card->irq = p->irq; |
| 1169 | card->membase = p->membase; |
| 1170 | card->cardtype = (nr_controllers == 4) ? avm_c4 : avm_c2; |
| 1171 | |
| 1172 | if (!request_region(card->port, AVMB1_PORTLEN, card->name)) { |
| 1173 | printk(KERN_WARNING "c4: ports 0x%03x-0x%03x in use.\n", |
| 1174 | card->port, card->port + AVMB1_PORTLEN); |
| 1175 | retval = -EBUSY; |
| 1176 | goto err_free_dma; |
| 1177 | } |
| 1178 | |
| 1179 | card->mbase = ioremap(card->membase, 128); |
Harvey Harrison | 8e44b29 | 2008-04-28 02:14:38 -0700 | [diff] [blame] | 1180 | if (card->mbase == NULL) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1181 | printk(KERN_NOTICE "c4: can't remap memory at 0x%lx\n", |
| 1182 | card->membase); |
| 1183 | retval = -EIO; |
| 1184 | goto err_release_region; |
| 1185 | } |
| 1186 | |
| 1187 | retval = c4_detect(card); |
| 1188 | if (retval != 0) { |
| 1189 | printk(KERN_NOTICE "c4: NO card at 0x%x error(%d)\n", |
| 1190 | card->port, retval); |
| 1191 | retval = -EIO; |
| 1192 | goto err_unmap; |
| 1193 | } |
| 1194 | c4_reset(card); |
| 1195 | |
Thomas Gleixner | 9ba02be | 2006-07-01 19:29:36 -0700 | [diff] [blame] | 1196 | retval = request_irq(card->irq, c4_interrupt, IRQF_SHARED, card->name, card); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1197 | if (retval) { |
Joe Perches | 475be4d | 2012-02-19 19:52:38 -0800 | [diff] [blame] | 1198 | printk(KERN_ERR "c4: unable to get IRQ %d.\n", card->irq); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1199 | retval = -EBUSY; |
| 1200 | goto err_unmap; |
| 1201 | } |
| 1202 | |
Joe Perches | 475be4d | 2012-02-19 19:52:38 -0800 | [diff] [blame] | 1203 | for (i = 0; i < nr_controllers; i++) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1204 | cinfo = &card->ctrlinfo[i]; |
| 1205 | cinfo->capi_ctrl.owner = THIS_MODULE; |
| 1206 | cinfo->capi_ctrl.driver_name = "c4"; |
| 1207 | cinfo->capi_ctrl.driverdata = cinfo; |
| 1208 | cinfo->capi_ctrl.register_appl = c4_register_appl; |
| 1209 | cinfo->capi_ctrl.release_appl = c4_release_appl; |
| 1210 | cinfo->capi_ctrl.send_message = c4_send_message; |
| 1211 | cinfo->capi_ctrl.load_firmware = c4_load_firmware; |
| 1212 | cinfo->capi_ctrl.reset_ctr = c4_reset_ctr; |
| 1213 | cinfo->capi_ctrl.procinfo = c4_procinfo; |
Alexey Dobriyan | 9a58a80 | 2010-01-14 03:10:54 -0800 | [diff] [blame] | 1214 | cinfo->capi_ctrl.proc_fops = &c4_proc_fops; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1215 | strcpy(cinfo->capi_ctrl.name, card->name); |
| 1216 | |
| 1217 | retval = attach_capi_ctr(&cinfo->capi_ctrl); |
| 1218 | if (retval) { |
| 1219 | printk(KERN_ERR "c4: attach controller failed (%d).\n", i); |
| 1220 | for (i--; i >= 0; i--) { |
| 1221 | cinfo = &card->ctrlinfo[i]; |
| 1222 | detach_capi_ctr(&cinfo->capi_ctrl); |
| 1223 | } |
| 1224 | goto err_free_irq; |
| 1225 | } |
| 1226 | if (i == 0) |
| 1227 | card->cardnr = cinfo->capi_ctrl.cnr; |
| 1228 | } |
| 1229 | |
| 1230 | printk(KERN_INFO "c4: AVM C%d at i/o %#x, irq %d, mem %#lx\n", |
| 1231 | nr_controllers, card->port, card->irq, |
| 1232 | card->membase); |
| 1233 | pci_set_drvdata(dev, card); |
| 1234 | return 0; |
| 1235 | |
Joe Perches | 475be4d | 2012-02-19 19:52:38 -0800 | [diff] [blame] | 1236 | err_free_irq: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1237 | free_irq(card->irq, card); |
Joe Perches | 475be4d | 2012-02-19 19:52:38 -0800 | [diff] [blame] | 1238 | err_unmap: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1239 | iounmap(card->mbase); |
Joe Perches | 475be4d | 2012-02-19 19:52:38 -0800 | [diff] [blame] | 1240 | err_release_region: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1241 | release_region(card->port, AVMB1_PORTLEN); |
Joe Perches | 475be4d | 2012-02-19 19:52:38 -0800 | [diff] [blame] | 1242 | err_free_dma: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1243 | avmcard_dma_free(card->dma); |
Joe Perches | 475be4d | 2012-02-19 19:52:38 -0800 | [diff] [blame] | 1244 | err_free: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1245 | b1_free_card(card); |
Joe Perches | 475be4d | 2012-02-19 19:52:38 -0800 | [diff] [blame] | 1246 | err: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1247 | return retval; |
| 1248 | } |
| 1249 | |
| 1250 | /* ------------------------------------------------------------- */ |
| 1251 | |
Greg Kroah-Hartman | ed5a84c | 2012-12-21 13:13:05 -0800 | [diff] [blame] | 1252 | static int c4_probe(struct pci_dev *dev, const struct pci_device_id *ent) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1253 | { |
| 1254 | int nr = ent->driver_data; |
| 1255 | int retval = 0; |
| 1256 | struct capicardparams param; |
| 1257 | |
| 1258 | if (pci_enable_device(dev) < 0) { |
| 1259 | printk(KERN_ERR "c4: failed to enable AVM-C%d\n", nr); |
| 1260 | return -ENODEV; |
| 1261 | } |
| 1262 | pci_set_master(dev); |
| 1263 | |
| 1264 | param.port = pci_resource_start(dev, 1); |
| 1265 | param.irq = dev->irq; |
| 1266 | param.membase = pci_resource_start(dev, 0); |
Joe Perches | 475be4d | 2012-02-19 19:52:38 -0800 | [diff] [blame] | 1267 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1268 | printk(KERN_INFO "c4: PCI BIOS reports AVM-C%d at i/o %#x, irq %d, mem %#x\n", |
| 1269 | nr, param.port, param.irq, param.membase); |
Joe Perches | 475be4d | 2012-02-19 19:52:38 -0800 | [diff] [blame] | 1270 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1271 | retval = c4_add_card(¶m, dev, nr); |
| 1272 | if (retval != 0) { |
| 1273 | printk(KERN_ERR "c4: no AVM-C%d at i/o %#x, irq %d detected, mem %#x\n", |
| 1274 | nr, param.port, param.irq, param.membase); |
Kulikov Vasiliy | b69bcd9 | 2010-08-09 09:50:37 +0000 | [diff] [blame] | 1275 | pci_disable_device(dev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1276 | return -ENODEV; |
| 1277 | } |
| 1278 | return 0; |
| 1279 | } |
| 1280 | |
| 1281 | static struct pci_driver c4_pci_driver = { |
Joe Perches | 475be4d | 2012-02-19 19:52:38 -0800 | [diff] [blame] | 1282 | .name = "c4", |
| 1283 | .id_table = c4_pci_tbl, |
| 1284 | .probe = c4_probe, |
| 1285 | .remove = c4_remove, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1286 | }; |
| 1287 | |
| 1288 | static struct capi_driver capi_driver_c2 = { |
| 1289 | .name = "c2", |
| 1290 | .revision = "1.0", |
| 1291 | }; |
| 1292 | |
| 1293 | static struct capi_driver capi_driver_c4 = { |
| 1294 | .name = "c4", |
| 1295 | .revision = "1.0", |
| 1296 | }; |
| 1297 | |
| 1298 | static int __init c4_init(void) |
| 1299 | { |
| 1300 | char *p; |
| 1301 | char rev[32]; |
| 1302 | int err; |
| 1303 | |
Harvey Harrison | 8e44b29 | 2008-04-28 02:14:38 -0700 | [diff] [blame] | 1304 | if ((p = strchr(revision, ':')) != NULL && p[1]) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1305 | strlcpy(rev, p + 2, 32); |
Harvey Harrison | 8e44b29 | 2008-04-28 02:14:38 -0700 | [diff] [blame] | 1306 | if ((p = strchr(rev, '$')) != NULL && p > rev) |
Joe Perches | 475be4d | 2012-02-19 19:52:38 -0800 | [diff] [blame] | 1307 | *(p - 1) = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1308 | } else |
| 1309 | strcpy(rev, "1.0"); |
| 1310 | |
| 1311 | err = pci_register_driver(&c4_pci_driver); |
| 1312 | if (!err) { |
| 1313 | strlcpy(capi_driver_c2.revision, rev, 32); |
| 1314 | register_capi_driver(&capi_driver_c2); |
| 1315 | strlcpy(capi_driver_c4.revision, rev, 32); |
| 1316 | register_capi_driver(&capi_driver_c4); |
| 1317 | printk(KERN_INFO "c4: revision %s\n", rev); |
| 1318 | } |
| 1319 | return err; |
| 1320 | } |
| 1321 | |
| 1322 | static void __exit c4_exit(void) |
| 1323 | { |
| 1324 | unregister_capi_driver(&capi_driver_c2); |
| 1325 | unregister_capi_driver(&capi_driver_c4); |
| 1326 | pci_unregister_driver(&c4_pci_driver); |
| 1327 | } |
| 1328 | |
| 1329 | module_init(c4_init); |
| 1330 | module_exit(c4_exit); |