firewire: nosy: annotate __user pointers and __iomem pointers
[deliverable/linux.git] / drivers / firewire / nosy.c
CommitLineData
b5e47729
SR
1/*
2 * nosy - Snoop mode driver for TI PCILynx 1394 controllers
3 * Copyright (C) 2002-2007 Kristian Høgsberg
28646821
SR
4 *
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License as published by
7 * the Free Software Foundation; either version 2 of the License, or
8 * (at your option) any later version.
9 *
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
14 *
15 * You should have received a copy of the GNU General Public License
16 * along with this program; if not, write to the Free Software Foundation,
17 * Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
18 */
19
28646821 20#include <linux/errno.h>
b5e47729 21#include <linux/fs.h>
28646821 22#include <linux/init.h>
b5e47729
SR
23#include <linux/interrupt.h>
24#include <linux/io.h>
25#include <linux/kernel.h>
424d66ce 26#include <linux/kref.h>
b5e47729
SR
27#include <linux/miscdevice.h>
28#include <linux/module.h>
424d66ce 29#include <linux/mutex.h>
28646821 30#include <linux/pci.h>
28646821 31#include <linux/poll.h>
b5e47729
SR
32#include <linux/sched.h> /* required for linux/wait.h */
33#include <linux/slab.h>
34#include <linux/spinlock.h>
35#include <linux/timex.h>
36#include <linux/uaccess.h>
37#include <linux/wait.h>
38
28646821 39#include <asm/atomic.h>
b5e47729 40#include <asm/byteorder.h>
28646821
SR
41
42#include "nosy.h"
43#include "nosy-user.h"
44
45#define TCODE_PHY_PACKET 0x10
46#define PCI_DEVICE_ID_TI_PCILYNX 0x8000
47
48#define notify(s, args...) printk(KERN_NOTICE s, ## args)
49#define error(s, args...) printk(KERN_ERR s, ## args)
50#define debug(s, args...) printk(KERN_DEBUG s, ## args)
51
b5e47729 52static char driver_name[] = KBUILD_MODNAME;
28646821
SR
53
54struct pcl_status {
55 unsigned int transfer_count : 13;
56 unsigned int reserved0 : 1;
57 unsigned int ack_type : 1;
58 unsigned int ack : 4;
59 unsigned int rcv_speed : 2;
60 unsigned int rcv_dma_channel : 6;
61 unsigned int packet_complete : 1;
62 unsigned int packet_error : 1;
63 unsigned int master_error : 1;
64 unsigned int iso_mode : 1;
65 unsigned int self_id : 1;
66};
67
68/* this is the physical layout of a PCL, its size is 128 bytes */
69struct pcl {
70 u32 next;
71 u32 async_error_next;
72 u32 user_data;
73 struct pcl_status pcl_status;
74 u32 remaining_transfer_count;
75 u32 next_data_buffer;
76 struct {
77 u32 control;
78 u32 pointer;
79 } buffer[13] __attribute__ ((packed));
80} __attribute__ ((packed));
81
82struct packet {
b5e47729 83 unsigned int length;
28646821
SR
84 char data[0];
85};
86
87struct packet_buffer {
88 char *data;
89 size_t capacity;
90 long total_packet_count, lost_packet_count;
91 atomic_t size;
b5e47729
SR
92 struct packet *head, *tail;
93 wait_queue_head_t wait;
28646821
SR
94};
95
96struct pcilynx {
97 struct pci_dev *pci_device;
c89db7b8 98 __iomem char *registers;
28646821
SR
99
100 struct pcl *rcv_start_pcl, *rcv_pcl;
101 u32 *rcv_buffer;
102
103 dma_addr_t rcv_start_pcl_bus, rcv_pcl_bus, rcv_buffer_bus;
104
105 spinlock_t client_list_lock;
106 struct list_head client_list;
107
108 struct miscdevice misc;
424d66ce
SR
109 struct list_head link;
110 struct kref kref;
28646821
SR
111};
112
424d66ce
SR
113static inline struct pcilynx *
114lynx_get(struct pcilynx *lynx)
115{
116 kref_get(&lynx->kref);
117
118 return lynx;
119}
120
121static void
122lynx_release(struct kref *kref)
123{
124 kfree(container_of(kref, struct pcilynx, kref));
125}
126
127static inline void
128lynx_put(struct pcilynx *lynx)
129{
130 kref_put(&lynx->kref, lynx_release);
131}
132
28646821
SR
133struct client {
134 struct pcilynx *lynx;
c7b2a99c 135 u32 tcode_mask;
28646821
SR
136 struct packet_buffer buffer;
137 struct list_head link;
138};
139
424d66ce
SR
140static DEFINE_MUTEX(card_mutex);
141static LIST_HEAD(card_list);
28646821
SR
142
143static int
144packet_buffer_init(struct packet_buffer *buffer, size_t capacity)
145{
146 buffer->data = kmalloc(capacity, GFP_KERNEL);
147 if (buffer->data == NULL)
148 return -ENOMEM;
149 buffer->head = (struct packet *) buffer->data;
150 buffer->tail = (struct packet *) buffer->data;
151 buffer->capacity = capacity;
152 buffer->lost_packet_count = 0;
153 atomic_set(&buffer->size, 0);
b5e47729 154 init_waitqueue_head(&buffer->wait);
28646821
SR
155
156 return 0;
157}
158
159static void
160packet_buffer_destroy(struct packet_buffer *buffer)
161{
162 kfree(buffer->data);
163}
164
165static int
c89db7b8 166packet_buffer_get(struct client *client, char __user *data, size_t user_length)
28646821 167{
424d66ce 168 struct packet_buffer *buffer = &client->buffer;
28646821
SR
169 size_t length;
170 char *end;
171
172 if (wait_event_interruptible(buffer->wait,
424d66ce
SR
173 atomic_read(&buffer->size) > 0) ||
174 list_empty(&client->lynx->link))
28646821
SR
175 return -ERESTARTSYS;
176
424d66ce
SR
177 if (atomic_read(&buffer->size) == 0)
178 return -ENODEV;
179
28646821
SR
180 /* FIXME: Check length <= user_length. */
181
182 end = buffer->data + buffer->capacity;
183 length = buffer->head->length;
184
185 if (&buffer->head->data[length] < end) {
186 if (copy_to_user(data, buffer->head->data, length))
187 return -EFAULT;
188 buffer->head = (struct packet *) &buffer->head->data[length];
b5e47729 189 } else {
28646821
SR
190 size_t split = end - buffer->head->data;
191
192 if (copy_to_user(data, buffer->head->data, split))
193 return -EFAULT;
194 if (copy_to_user(data + split, buffer->data, length - split))
195 return -EFAULT;
196 buffer->head = (struct packet *) &buffer->data[length - split];
197 }
198
b5e47729
SR
199 /*
200 * Decrease buffer->size as the last thing, since this is what
28646821 201 * keeps the interrupt from overwriting the packet we are
b5e47729
SR
202 * retrieving from the buffer.
203 */
204 atomic_sub(sizeof(struct packet) + length, &buffer->size);
28646821
SR
205
206 return length;
207}
208
209static void
210packet_buffer_put(struct packet_buffer *buffer, void *data, size_t length)
211{
212 char *end;
213
214 buffer->total_packet_count++;
215
b5e47729
SR
216 if (buffer->capacity <
217 atomic_read(&buffer->size) + sizeof(struct packet) + length) {
28646821
SR
218 buffer->lost_packet_count++;
219 return;
220 }
221
222 end = buffer->data + buffer->capacity;
223 buffer->tail->length = length;
224
225 if (&buffer->tail->data[length] < end) {
226 memcpy(buffer->tail->data, data, length);
227 buffer->tail = (struct packet *) &buffer->tail->data[length];
b5e47729 228 } else {
28646821
SR
229 size_t split = end - buffer->tail->data;
230
231 memcpy(buffer->tail->data, data, split);
232 memcpy(buffer->data, data + split, length - split);
233 buffer->tail = (struct packet *) &buffer->data[length - split];
234 }
b5e47729 235
28646821
SR
236 /* Finally, adjust buffer size and wake up userspace reader. */
237
b5e47729 238 atomic_add(sizeof(struct packet) + length, &buffer->size);
28646821
SR
239 wake_up_interruptible(&buffer->wait);
240}
241
242static inline void
243reg_write(struct pcilynx *lynx, int offset, u32 data)
244{
b5e47729 245 writel(data, lynx->registers + offset);
28646821
SR
246}
247
248static inline u32
249reg_read(struct pcilynx *lynx, int offset)
250{
b5e47729 251 return readl(lynx->registers + offset);
28646821
SR
252}
253
254static inline void
255reg_set_bits(struct pcilynx *lynx, int offset, u32 mask)
256{
b5e47729 257 reg_write(lynx, offset, (reg_read(lynx, offset) | mask));
28646821
SR
258}
259
b5e47729
SR
260/*
261 * Maybe the pcl programs could be set up to just append data instead
262 * of using a whole packet.
263 */
264static inline void
265run_pcl(struct pcilynx *lynx, dma_addr_t pcl_bus,
266 int dmachan)
28646821 267{
b5e47729
SR
268 reg_write(lynx, DMA0_CURRENT_PCL + dmachan * 0x20, pcl_bus);
269 reg_write(lynx, DMA0_CHAN_CTRL + dmachan * 0x20,
270 DMA_CHAN_CTRL_ENABLE | DMA_CHAN_CTRL_LINK);
28646821
SR
271}
272
273static int
274set_phy_reg(struct pcilynx *lynx, int addr, int val)
275{
b5e47729
SR
276 if (addr > 15) {
277 debug("PHY register address %d out of range\n", addr);
278 return -1;
279 }
280
281 if (val > 0xff) {
282 debug("PHY register value %d out of range\n", val);
283 return -1;
284 }
285
286 reg_write(lynx, LINK_PHY, LINK_PHY_WRITE |
28646821
SR
287 LINK_PHY_ADDR(addr) | LINK_PHY_WDATA(val));
288
b5e47729 289 return 0;
28646821
SR
290}
291
55e77c06
SR
292static int
293nosy_open(struct inode *inode, struct file *file)
28646821 294{
55e77c06 295 int minor = iminor(inode);
28646821 296 struct client *client;
424d66ce
SR
297 struct pcilynx *tmp, *lynx = NULL;
298
299 mutex_lock(&card_mutex);
300 list_for_each_entry(tmp, &card_list, link)
301 if (tmp->misc.minor == minor) {
302 lynx = lynx_get(tmp);
303 break;
304 }
305 mutex_unlock(&card_mutex);
306 if (lynx == NULL)
55e77c06
SR
307 return -ENODEV;
308
28646821 309 client = kmalloc(sizeof *client, GFP_KERNEL);
55e77c06 310 if (client == NULL)
424d66ce 311 goto fail;
55e77c06 312
28646821 313 client->tcode_mask = ~0;
424d66ce 314 client->lynx = lynx;
28646821
SR
315 INIT_LIST_HEAD(&client->link);
316
424d66ce
SR
317 if (packet_buffer_init(&client->buffer, 128 * 1024) < 0)
318 goto fail;
28646821 319
55e77c06 320 file->private_data = client;
28646821 321
55e77c06 322 return 0;
424d66ce
SR
323fail:
324 kfree(client);
325 lynx_put(lynx);
326
327 return -ENOMEM;
28646821
SR
328}
329
330static int
55e77c06 331nosy_release(struct inode *inode, struct file *file)
28646821 332{
55e77c06 333 struct client *client = file->private_data;
424d66ce 334 struct pcilynx *lynx = client->lynx;
28646821 335
424d66ce 336 spin_lock_irq(&lynx->client_list_lock);
55e77c06 337 list_del_init(&client->link);
424d66ce 338 spin_unlock_irq(&lynx->client_list_lock);
28646821 339
55e77c06
SR
340 packet_buffer_destroy(&client->buffer);
341 kfree(client);
424d66ce 342 lynx_put(lynx);
28646821 343
b5e47729 344 return 0;
28646821
SR
345}
346
347static unsigned int
348nosy_poll(struct file *file, poll_table *pt)
349{
350 struct client *client = file->private_data;
424d66ce 351 unsigned int ret = 0;
28646821
SR
352
353 poll_wait(file, &client->buffer.wait, pt);
354
355 if (atomic_read(&client->buffer.size) > 0)
424d66ce
SR
356 ret = POLLIN | POLLRDNORM;
357
358 if (list_empty(&client->lynx->link))
359 ret |= POLLHUP;
360
361 return ret;
28646821
SR
362}
363
364static ssize_t
c89db7b8 365nosy_read(struct file *file, char __user *buffer, size_t count, loff_t *offset)
28646821
SR
366{
367 struct client *client = file->private_data;
368
424d66ce 369 return packet_buffer_get(client, buffer, count);
28646821
SR
370}
371
c7b2a99c
SR
372static long
373nosy_ioctl(struct file *file, unsigned int cmd, unsigned long arg)
28646821
SR
374{
375 struct client *client = file->private_data;
c7b2a99c 376 spinlock_t *client_list_lock = &client->lynx->client_list_lock;
b5e47729 377 struct nosy_stats stats;
28646821
SR
378
379 switch (cmd) {
b5e47729 380 case NOSY_IOC_GET_STATS:
c7b2a99c 381 spin_lock_irq(client_list_lock);
28646821 382 stats.total_packet_count = client->buffer.total_packet_count;
c7b2a99c
SR
383 stats.lost_packet_count = client->buffer.lost_packet_count;
384 spin_unlock_irq(client_list_lock);
385
c89db7b8 386 if (copy_to_user((void __user *) arg, &stats, sizeof stats))
28646821
SR
387 return -EFAULT;
388 else
389 return 0;
b5e47729 390
28646821 391 case NOSY_IOC_START:
55e77c06
SR
392 spin_lock_irq(client_list_lock);
393 list_add_tail(&client->link, &client->lynx->client_list);
394 spin_unlock_irq(client_list_lock);
395
28646821
SR
396 return 0;
397
398 case NOSY_IOC_STOP:
55e77c06
SR
399 spin_lock_irq(client_list_lock);
400 list_del_init(&client->link);
401 spin_unlock_irq(client_list_lock);
402
28646821
SR
403 return 0;
404
405 case NOSY_IOC_FILTER:
c7b2a99c 406 spin_lock_irq(client_list_lock);
28646821 407 client->tcode_mask = arg;
c7b2a99c 408 spin_unlock_irq(client_list_lock);
55e77c06 409
28646821
SR
410 return 0;
411
412 default:
413 return -EINVAL;
414 /* Flush buffer, configure filter. */
415 }
416}
417
b5e47729 418static const struct file_operations nosy_ops = {
c7b2a99c
SR
419 .owner = THIS_MODULE,
420 .read = nosy_read,
421 .unlocked_ioctl = nosy_ioctl,
422 .poll = nosy_poll,
423 .open = nosy_open,
424 .release = nosy_release,
28646821
SR
425};
426
427#define PHY_PACKET_SIZE 12 /* 1 payload, 1 inverse, 1 ack = 3 quadlets */
428
429struct link_packet {
430 unsigned int priority : 4;
431 unsigned int tcode : 4;
432 unsigned int rt : 2;
433 unsigned int tlabel : 6;
434 unsigned int destination : 16;
435};
436
437static void
685c3f80 438packet_irq_handler(struct pcilynx *lynx)
28646821 439{
28646821 440 struct client *client;
c7b2a99c 441 u32 tcode_mask;
28646821
SR
442 size_t length;
443 struct link_packet *packet;
444 struct timeval tv;
445
446 /* FIXME: Also report rcv_speed. */
447
448 length = lynx->rcv_pcl->pcl_status.transfer_count;
449 packet = (struct link_packet *) &lynx->rcv_buffer[1];
450
451 do_gettimeofday(&tv);
452 lynx->rcv_buffer[0] = tv.tv_usec;
453
454 if (length == PHY_PACKET_SIZE)
455 tcode_mask = 1 << TCODE_PHY_PACKET;
456 else
457 tcode_mask = 1 << packet->tcode;
458
685c3f80 459 spin_lock(&lynx->client_list_lock);
28646821 460
b5e47729 461 list_for_each_entry(client, &lynx->client_list, link)
28646821 462 if (client->tcode_mask & tcode_mask)
b5e47729 463 packet_buffer_put(&client->buffer,
28646821 464 lynx->rcv_buffer, length + 4);
28646821 465
685c3f80 466 spin_unlock(&lynx->client_list_lock);
28646821
SR
467}
468
469static void
685c3f80 470bus_reset_irq_handler(struct pcilynx *lynx)
28646821 471{
28646821
SR
472 struct client *client;
473 struct timeval tv;
474
475 do_gettimeofday(&tv);
476
685c3f80 477 spin_lock(&lynx->client_list_lock);
28646821 478
b5e47729 479 list_for_each_entry(client, &lynx->client_list, link)
28646821 480 packet_buffer_put(&client->buffer, &tv.tv_usec, 4);
28646821 481
685c3f80 482 spin_unlock(&lynx->client_list_lock);
28646821
SR
483}
484
28646821
SR
485static irqreturn_t
486irq_handler(int irq, void *device)
487{
b5e47729 488 struct pcilynx *lynx = device;
28646821 489 u32 pci_int_status;
b5e47729
SR
490
491 pci_int_status = reg_read(lynx, PCI_INT_STATUS);
28646821 492
16547667
SR
493 if (pci_int_status == ~0)
494 /* Card was ejected. */
495 return IRQ_NONE;
496
28646821
SR
497 if ((pci_int_status & PCI_INT_INT_PEND) == 0)
498 /* Not our interrupt, bail out quickly. */
499 return IRQ_NONE;
500
501 if ((pci_int_status & PCI_INT_P1394_INT) != 0) {
502 u32 link_int_status;
503
504 link_int_status = reg_read(lynx, LINK_INT_STATUS);
505 reg_write(lynx, LINK_INT_STATUS, link_int_status);
506
507 if ((link_int_status & LINK_INT_PHY_BUSRESET) > 0)
685c3f80 508 bus_reset_irq_handler(lynx);
28646821
SR
509 }
510
511 /* Clear the PCI_INT_STATUS register only after clearing the
512 * LINK_INT_STATUS register; otherwise the PCI_INT_P1394 will
513 * be set again immediately. */
514
515 reg_write(lynx, PCI_INT_STATUS, pci_int_status);
516
517 if ((pci_int_status & PCI_INT_DMA0_HLT) > 0) {
685c3f80 518 packet_irq_handler(lynx);
28646821
SR
519 run_pcl(lynx, lynx->rcv_start_pcl_bus, 0);
520 }
521
522 return IRQ_HANDLED;
523}
524
525static void
526remove_card(struct pci_dev *dev)
527{
424d66ce
SR
528 struct pcilynx *lynx = pci_get_drvdata(dev);
529 struct client *client;
28646821 530
424d66ce
SR
531 mutex_lock(&card_mutex);
532 list_del_init(&lynx->link);
533 misc_deregister(&lynx->misc);
534 mutex_unlock(&card_mutex);
28646821
SR
535
536 reg_write(lynx, PCI_INT_ENABLE, 0);
537 free_irq(lynx->pci_device->irq, lynx);
538
424d66ce
SR
539 spin_lock_irq(&lynx->client_list_lock);
540 list_for_each_entry(client, &lynx->client_list, link)
541 wake_up_interruptible(&client->buffer.wait);
542 spin_unlock_irq(&lynx->client_list_lock);
543
b5e47729 544 pci_free_consistent(lynx->pci_device, sizeof(struct pcl),
28646821 545 lynx->rcv_start_pcl, lynx->rcv_start_pcl_bus);
b5e47729 546 pci_free_consistent(lynx->pci_device, sizeof(struct pcl),
28646821
SR
547 lynx->rcv_pcl, lynx->rcv_pcl_bus);
548 pci_free_consistent(lynx->pci_device, PAGE_SIZE,
549 lynx->rcv_buffer, lynx->rcv_buffer_bus);
550
551 iounmap(lynx->registers);
b6d9c125 552 pci_disable_device(dev);
424d66ce 553 lynx_put(lynx);
28646821
SR
554}
555
556#define RCV_BUFFER_SIZE (16 * 1024)
557
28646821
SR
558static int __devinit
559add_card(struct pci_dev *dev, const struct pci_device_id *unused)
560{
b5e47729 561 struct pcilynx *lynx;
28646821 562 u32 p, end;
b6d9c125 563 int ret, i;
28646821 564
b5e47729
SR
565 if (pci_set_dma_mask(dev, 0xffffffff)) {
566 error("DMA address limits not supported "
567 "for PCILynx hardware\n");
568 return -ENXIO;
569 }
570 if (pci_enable_device(dev)) {
571 error("Failed to enable PCILynx hardware\n");
572 return -ENXIO;
573 }
574 pci_set_master(dev);
28646821
SR
575
576 lynx = kzalloc(sizeof *lynx, GFP_KERNEL);
b5e47729
SR
577 if (lynx == NULL) {
578 error("Failed to allocate control structure memory\n");
b6d9c125
SR
579 ret = -ENOMEM;
580 goto fail_disable;
b5e47729
SR
581 }
582 lynx->pci_device = dev;
583 pci_set_drvdata(dev, lynx);
28646821
SR
584
585 spin_lock_init(&lynx->client_list_lock);
586 INIT_LIST_HEAD(&lynx->client_list);
424d66ce 587 kref_init(&lynx->kref);
28646821 588
b5e47729
SR
589 lynx->registers = ioremap_nocache(pci_resource_start(dev, 0),
590 PCILYNX_MAX_REGISTER);
591
592 lynx->rcv_start_pcl = pci_alloc_consistent(lynx->pci_device,
593 sizeof(struct pcl), &lynx->rcv_start_pcl_bus);
594 lynx->rcv_pcl = pci_alloc_consistent(lynx->pci_device,
595 sizeof(struct pcl), &lynx->rcv_pcl_bus);
596 lynx->rcv_buffer = pci_alloc_consistent(lynx->pci_device,
597 RCV_BUFFER_SIZE, &lynx->rcv_buffer_bus);
598 if (lynx->rcv_start_pcl == NULL ||
28646821 599 lynx->rcv_pcl == NULL ||
b5e47729 600 lynx->rcv_buffer == NULL) {
b5e47729 601 error("Failed to allocate receive buffer\n");
b6d9c125
SR
602 ret = -ENOMEM;
603 goto fail_deallocate;
b5e47729 604 }
28646821 605 lynx->rcv_start_pcl->next = lynx->rcv_pcl_bus;
b5e47729
SR
606 lynx->rcv_pcl->next = PCL_NEXT_INVALID;
607 lynx->rcv_pcl->async_error_next = PCL_NEXT_INVALID;
28646821 608
b5e47729 609 lynx->rcv_pcl->buffer[0].control =
28646821 610 PCL_CMD_RCV | PCL_BIGENDIAN | 2044;
b5e47729 611 lynx->rcv_pcl->buffer[0].pointer = lynx->rcv_buffer_bus + 4;
28646821
SR
612 p = lynx->rcv_buffer_bus + 2048;
613 end = lynx->rcv_buffer_bus + RCV_BUFFER_SIZE;
614 for (i = 1; p < end; i++, p += 2048) {
615 lynx->rcv_pcl->buffer[i].control =
616 PCL_CMD_RCV | PCL_BIGENDIAN | 2048;
617 lynx->rcv_pcl->buffer[i].pointer = p;
618 }
619 lynx->rcv_pcl->buffer[i - 1].control |= PCL_LAST_BUFF;
620
b5e47729
SR
621 reg_set_bits(lynx, MISC_CONTROL, MISC_CONTROL_SWRESET);
622 /* Fix buggy cards with autoboot pin not tied low: */
623 reg_write(lynx, DMA0_CHAN_CTRL, 0);
624 reg_write(lynx, DMA_GLOBAL_REGISTER, 0x00 << 24);
28646821
SR
625
626#if 0
b5e47729
SR
627 /* now, looking for PHY register set */
628 if ((get_phy_reg(lynx, 2) & 0xe0) == 0xe0) {
629 lynx->phyic.reg_1394a = 1;
630 PRINT(KERN_INFO, lynx->id,
631 "found 1394a conform PHY (using extended register set)");
632 lynx->phyic.vendor = get_phy_vendorid(lynx);
633 lynx->phyic.product = get_phy_productid(lynx);
634 } else {
635 lynx->phyic.reg_1394a = 0;
636 PRINT(KERN_INFO, lynx->id, "found old 1394 PHY");
637 }
28646821
SR
638#endif
639
640 /* Setup the general receive FIFO max size. */
641 reg_write(lynx, FIFO_SIZES, 255);
642
b5e47729 643 reg_set_bits(lynx, PCI_INT_ENABLE, PCI_INT_DMA_ALL);
28646821 644
b5e47729 645 reg_write(lynx, LINK_INT_ENABLE,
28646821
SR
646 LINK_INT_PHY_TIME_OUT | LINK_INT_PHY_REG_RCVD |
647 LINK_INT_PHY_BUSRESET | LINK_INT_IT_STUCK |
648 LINK_INT_AT_STUCK | LINK_INT_SNTRJ |
649 LINK_INT_TC_ERR | LINK_INT_GRF_OVER_FLOW |
650 LINK_INT_ITF_UNDER_FLOW | LINK_INT_ATF_UNDER_FLOW);
651
652 /* Disable the L flag in self ID packets. */
653 set_phy_reg(lynx, 4, 0);
654
655 /* Put this baby into snoop mode */
656 reg_set_bits(lynx, LINK_CONTROL, LINK_CONTROL_SNOOP_ENABLE);
657
658 run_pcl(lynx, lynx->rcv_start_pcl_bus, 0);
659
b5e47729
SR
660 if (request_irq(dev->irq, irq_handler, IRQF_SHARED,
661 driver_name, lynx)) {
662 error("Failed to allocate shared interrupt %d\n", dev->irq);
b6d9c125
SR
663 ret = -EIO;
664 goto fail_deallocate;
b5e47729 665 }
28646821
SR
666
667 lynx->misc.parent = &dev->dev;
668 lynx->misc.minor = MISC_DYNAMIC_MINOR;
669 lynx->misc.name = "nosy";
670 lynx->misc.fops = &nosy_ops;
424d66ce
SR
671
672 mutex_lock(&card_mutex);
b6d9c125
SR
673 ret = misc_register(&lynx->misc);
674 if (ret) {
b5e47729 675 error("Failed to register misc char device\n");
424d66ce 676 mutex_unlock(&card_mutex);
b6d9c125 677 goto fail_free_irq;
b5e47729 678 }
424d66ce
SR
679 list_add_tail(&lynx->link, &card_list);
680 mutex_unlock(&card_mutex);
28646821
SR
681
682 notify("Initialized PCILynx IEEE1394 card, irq=%d\n", dev->irq);
683
b5e47729 684 return 0;
b6d9c125
SR
685
686fail_free_irq:
687 reg_write(lynx, PCI_INT_ENABLE, 0);
688 free_irq(lynx->pci_device->irq, lynx);
689
690fail_deallocate:
691 if (lynx->rcv_start_pcl)
692 pci_free_consistent(lynx->pci_device, sizeof(struct pcl),
693 lynx->rcv_start_pcl, lynx->rcv_start_pcl_bus);
694 if (lynx->rcv_pcl)
695 pci_free_consistent(lynx->pci_device, sizeof(struct pcl),
696 lynx->rcv_pcl, lynx->rcv_pcl_bus);
697 if (lynx->rcv_buffer)
698 pci_free_consistent(lynx->pci_device, PAGE_SIZE,
699 lynx->rcv_buffer, lynx->rcv_buffer_bus);
700 iounmap(lynx->registers);
701 kfree(lynx);
702
703fail_disable:
704 pci_disable_device(dev);
705
706 return ret;
28646821
SR
707}
708
709static struct pci_device_id pci_table[] __devinitdata = {
710 {
b5e47729
SR
711 .vendor = PCI_VENDOR_ID_TI,
712 .device = PCI_DEVICE_ID_TI_PCILYNX,
713 .subvendor = PCI_ANY_ID,
714 .subdevice = PCI_ANY_ID,
28646821
SR
715 },
716 { } /* Terminating entry */
717};
718
719static struct pci_driver lynx_pci_driver = {
b5e47729 720 .name = driver_name,
28646821
SR
721 .id_table = pci_table,
722 .probe = add_card,
b5e47729 723 .remove = remove_card,
28646821
SR
724};
725
b5e47729 726MODULE_AUTHOR("Kristian Hoegsberg");
28646821
SR
727MODULE_DESCRIPTION("Snoop mode driver for TI pcilynx 1394 controllers");
728MODULE_LICENSE("GPL");
729MODULE_DEVICE_TABLE(pci, pci_table);
730
731static int __init nosy_init(void)
732{
b5e47729 733 return pci_register_driver(&lynx_pci_driver);
28646821
SR
734}
735
736static void __exit nosy_cleanup(void)
737{
b5e47729 738 pci_unregister_driver(&lynx_pci_driver);
28646821
SR
739
740 notify("Unloaded %s.\n", driver_name);
741}
742
28646821
SR
743module_init(nosy_init);
744module_exit(nosy_cleanup);
This page took 0.142562 seconds and 5 git commands to generate.