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