2 * pcilynx.c - Texas Instruments PCILynx driver
3 * Copyright (C) 1999,2000 Andreas Bombe <andreas.bombe@munich.netsurf.de>,
4 * Stephan Linz <linz@mazet.de>
5 * Manfred Weihs <weihs@ict.tuwien.ac.at>
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License as published by
9 * the Free Software Foundation; either version 2 of the License, or
10 * (at your option) any later version.
12 * This program is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 * GNU General Public License for more details.
17 * You should have received a copy of the GNU General Public License
18 * along with this program; if not, write to the Free Software Foundation,
19 * Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
25 * Manfred Weihs <weihs@ict.tuwien.ac.at>
26 * reading bus info block (containing GUID) from serial
27 * eeprom via i2c and storing it in config ROM
28 * Reworked code for initiating bus resets
29 * (long, short, with or without hold-off)
30 * Enhancements in async and iso send code
33 #include <linux/kernel.h>
34 #include <linux/slab.h>
35 #include <linux/interrupt.h>
36 #include <linux/wait.h>
37 #include <linux/errno.h>
38 #include <linux/module.h>
39 #include <linux/moduleparam.h>
40 #include <linux/init.h>
41 #include <linux/pci.h>
43 #include <linux/poll.h>
44 #include <linux/kdev_t.h>
45 #include <linux/dma-mapping.h>
46 #include <asm/byteorder.h>
47 #include <asm/atomic.h>
49 #include <asm/uaccess.h>
54 #include "ieee1394_types.h"
56 #include "ieee1394_core.h"
57 #include "highlevel.h"
60 #include <linux/i2c.h>
61 #include <linux/i2c-algo-bit.h>
63 /* print general (card independent) information */
64 #define PRINT_G(level, fmt, args...) printk(level "pcilynx: " fmt "\n" , ## args)
65 /* print card specific information */
66 #define PRINT(level, card, fmt, args...) printk(level "pcilynx%d: " fmt "\n" , card , ## args)
68 #ifdef CONFIG_IEEE1394_VERBOSEDEBUG
69 #define PRINT_GD(level, fmt, args...) printk(level "pcilynx: " fmt "\n" , ## args)
70 #define PRINTD(level, card, fmt, args...) printk(level "pcilynx%d: " fmt "\n" , card , ## args)
72 #define PRINT_GD(level, fmt, args...) do {} while (0)
73 #define PRINTD(level, card, fmt, args...) do {} while (0)
77 /* Module Parameters */
78 static int skip_eeprom
;
79 module_param(skip_eeprom
, int, 0444);
80 MODULE_PARM_DESC(skip_eeprom
, "Use generic bus info block instead of serial eeprom (default = 0).");
83 static struct hpsb_host_driver lynx_driver
;
84 static unsigned int card_id
;
92 /* the i2c stuff was inspired by i2c-philips-par.c */
94 static void bit_setscl(void *data
, int state
)
97 ((struct ti_lynx
*) data
)->i2c_driven_state
|= 0x00000040;
99 ((struct ti_lynx
*) data
)->i2c_driven_state
&= ~0x00000040;
101 reg_write((struct ti_lynx
*) data
, SERIAL_EEPROM_CONTROL
, ((struct ti_lynx
*) data
)->i2c_driven_state
);
104 static void bit_setsda(void *data
, int state
)
107 ((struct ti_lynx
*) data
)->i2c_driven_state
|= 0x00000010;
109 ((struct ti_lynx
*) data
)->i2c_driven_state
&= ~0x00000010;
111 reg_write((struct ti_lynx
*) data
, SERIAL_EEPROM_CONTROL
, ((struct ti_lynx
*) data
)->i2c_driven_state
);
114 static int bit_getscl(void *data
)
116 return reg_read((struct ti_lynx
*) data
, SERIAL_EEPROM_CONTROL
) & 0x00000040;
119 static int bit_getsda(void *data
)
121 return reg_read((struct ti_lynx
*) data
, SERIAL_EEPROM_CONTROL
) & 0x00000010;
124 static struct i2c_algo_bit_data bit_data
= {
125 .setsda
= bit_setsda
,
126 .setscl
= bit_setscl
,
127 .getsda
= bit_getsda
,
128 .getscl
= bit_getscl
,
135 * PCL handling functions.
138 static pcl_t
alloc_pcl(struct ti_lynx
*lynx
)
143 spin_lock(&lynx
->lock
);
144 /* FIXME - use ffz() to make this readable */
145 for (i
= 0; i
< (LOCALRAM_SIZE
/ 1024); i
++) {
146 m
= lynx
->pcl_bmap
[i
];
147 for (j
= 0; j
< 8; j
++) {
152 lynx
->pcl_bmap
[i
] = m
;
153 spin_unlock(&lynx
->lock
);
157 spin_unlock(&lynx
->lock
);
164 static void free_pcl(struct ti_lynx
*lynx
, pcl_t pclid
)
175 spin_lock(&lynx
->lock
);
176 if (lynx
->pcl_bmap
[off
] & 1<<bit
) {
177 lynx
->pcl_bmap
[off
] &= ~(1<<bit
);
179 PRINT(KERN_ERR
, lynx
->id
,
180 "attempted to free unallocated PCL %d", pclid
);
182 spin_unlock(&lynx
->lock
);
185 /* functions useful for debugging */
186 static void pretty_print_pcl(const struct ti_pcl
*pcl
)
190 printk("PCL next %08x, userdata %08x, status %08x, remtrans %08x, nextbuf %08x\n",
191 pcl
->next
, pcl
->user_data
, pcl
->pcl_status
,
192 pcl
->remaining_transfer_count
, pcl
->next_data_buffer
);
195 for (i
=0; i
<13; i
++) {
196 printk(" c%x:%08x d%x:%08x",
197 i
, pcl
->buffer
[i
].control
, i
, pcl
->buffer
[i
].pointer
);
198 if (!(i
& 0x3) && (i
!= 12)) printk("\nPCL");
203 static void print_pcl(const struct ti_lynx
*lynx
, pcl_t pclid
)
207 get_pcl(lynx
, pclid
, &pcl
);
208 pretty_print_pcl(&pcl
);
214 /***********************************
215 * IEEE-1394 functionality section *
216 ***********************************/
219 static int get_phy_reg(struct ti_lynx
*lynx
, int addr
)
227 PRINT(KERN_ERR
, lynx
->id
,
228 "%s: PHY register address %d out of range",
233 spin_lock_irqsave(&lynx
->phy_reg_lock
, flags
);
235 reg_write(lynx
, LINK_PHY
, LINK_PHY_READ
| LINK_PHY_ADDR(addr
));
237 retval
= reg_read(lynx
, LINK_PHY
);
240 PRINT(KERN_ERR
, lynx
->id
, "%s: runaway loop, aborting",
246 } while ((retval
& 0xf00) != LINK_PHY_RADDR(addr
));
248 reg_write(lynx
, LINK_INT_STATUS
, LINK_INT_PHY_REG_RCVD
);
249 spin_unlock_irqrestore(&lynx
->phy_reg_lock
, flags
);
252 return retval
& 0xff;
258 static int set_phy_reg(struct ti_lynx
*lynx
, int addr
, int val
)
263 PRINT(KERN_ERR
, lynx
->id
,
264 "%s: PHY register address %d out of range", __FUNCTION__
, addr
);
269 PRINT(KERN_ERR
, lynx
->id
,
270 "%s: PHY register value %d out of range", __FUNCTION__
, val
);
274 spin_lock_irqsave(&lynx
->phy_reg_lock
, flags
);
276 reg_write(lynx
, LINK_PHY
, LINK_PHY_WRITE
| LINK_PHY_ADDR(addr
)
277 | LINK_PHY_WDATA(val
));
279 spin_unlock_irqrestore(&lynx
->phy_reg_lock
, flags
);
284 static int sel_phy_reg_page(struct ti_lynx
*lynx
, int page
)
289 PRINT(KERN_ERR
, lynx
->id
,
290 "%s: PHY page %d out of range", __FUNCTION__
, page
);
294 reg
= get_phy_reg(lynx
, 7);
298 set_phy_reg(lynx
, 7, reg
);
305 #if 0 /* not needed at this time */
306 static int sel_phy_reg_port(struct ti_lynx
*lynx
, int port
)
311 PRINT(KERN_ERR
, lynx
->id
,
312 "%s: PHY port %d out of range", __FUNCTION__
, port
);
316 reg
= get_phy_reg(lynx
, 7);
320 set_phy_reg(lynx
, 7, reg
);
328 static u32
get_phy_vendorid(struct ti_lynx
*lynx
)
331 sel_phy_reg_page(lynx
, 1);
332 pvid
|= (get_phy_reg(lynx
, 10) << 16);
333 pvid
|= (get_phy_reg(lynx
, 11) << 8);
334 pvid
|= get_phy_reg(lynx
, 12);
335 PRINT(KERN_INFO
, lynx
->id
, "PHY vendor id 0x%06x", pvid
);
339 static u32
get_phy_productid(struct ti_lynx
*lynx
)
342 sel_phy_reg_page(lynx
, 1);
343 id
|= (get_phy_reg(lynx
, 13) << 16);
344 id
|= (get_phy_reg(lynx
, 14) << 8);
345 id
|= get_phy_reg(lynx
, 15);
346 PRINT(KERN_INFO
, lynx
->id
, "PHY product id 0x%06x", id
);
350 static quadlet_t
generate_own_selfid(struct ti_lynx
*lynx
,
351 struct hpsb_host
*host
)
357 phyreg
[0] = lynx
->phy_reg0
;
358 for (i
= 1; i
< 7; i
++) {
359 phyreg
[i
] = get_phy_reg(lynx
, i
);
362 /* FIXME? We assume a TSB21LV03A phy here. This code doesn't support
363 more than 3 ports on the PHY anyway. */
365 lsid
= 0x80400000 | ((phyreg
[0] & 0xfc) << 22);
366 lsid
|= (phyreg
[1] & 0x3f) << 16; /* gap count */
367 lsid
|= (phyreg
[2] & 0xc0) << 8; /* max speed */
368 if (!hpsb_disable_irm
)
369 lsid
|= (phyreg
[6] & 0x01) << 11; /* contender (phy dependent) */
370 /* lsid |= 1 << 11; *//* set contender (hack) */
371 lsid
|= (phyreg
[6] & 0x10) >> 3; /* initiated reset */
373 for (i
= 0; i
< (phyreg
[2] & 0xf); i
++) { /* ports */
374 if (phyreg
[3 + i
] & 0x4) {
375 lsid
|= (((phyreg
[3 + i
] & 0x8) | 0x10) >> 3)
378 lsid
|= 1 << (6 - i
*2);
383 PRINT(KERN_DEBUG
, lynx
->id
, "generated own selfid 0x%x", lsid
);
387 static void handle_selfid(struct ti_lynx
*lynx
, struct hpsb_host
*host
)
389 quadlet_t
*q
= lynx
->rcv_page
;
390 int phyid
, isroot
, size
;
394 if (lynx
->phy_reg0
== -1 || lynx
->selfid_size
== -1) return;
396 size
= lynx
->selfid_size
;
397 phyid
= lynx
->phy_reg0
;
399 i
= (size
> 16 ? 16 : size
) / 4 - 1;
405 if (!lynx
->phyic
.reg_1394a
) {
406 lsid
= generate_own_selfid(lynx
, host
);
409 isroot
= (phyid
& 2) != 0;
411 PRINT(KERN_INFO
, lynx
->id
, "SelfID process finished (phyid %d, %s)",
412 phyid
, (isroot
? "root" : "not root"));
413 reg_write(lynx
, LINK_ID
, (0xffc0 | phyid
) << 16);
415 if (!lynx
->phyic
.reg_1394a
&& !size
) {
416 hpsb_selfid_received(host
, lsid
);
420 struct selfid
*sid
= (struct selfid
*)q
;
422 if (!lynx
->phyic
.reg_1394a
&& !sid
->extended
423 && (sid
->phy_id
== (phyid
+ 1))) {
424 hpsb_selfid_received(host
, lsid
);
428 PRINT(KERN_DEBUG
, lynx
->id
, "SelfID packet 0x%x rcvd",
430 hpsb_selfid_received(host
, q
[0]);
432 PRINT(KERN_INFO
, lynx
->id
,
433 "inconsistent selfid 0x%x/0x%x", q
[0], q
[1]);
439 if (!lynx
->phyic
.reg_1394a
&& isroot
&& phyid
!= 0) {
440 hpsb_selfid_received(host
, lsid
);
443 hpsb_selfid_complete(host
, phyid
, isroot
);
445 if (host
->in_bus_reset
) return; /* in bus reset again */
447 if (isroot
) reg_set_bits(lynx
, LINK_CONTROL
, LINK_CONTROL_CYCMASTER
); //FIXME: I do not think, we need this here
448 reg_set_bits(lynx
, LINK_CONTROL
,
449 LINK_CONTROL_RCV_CMP_VALID
| LINK_CONTROL_TX_ASYNC_EN
450 | LINK_CONTROL_RX_ASYNC_EN
| LINK_CONTROL_CYCTIMEREN
);
455 /* This must be called with the respective queue_lock held. */
456 static void send_next(struct ti_lynx
*lynx
, int what
)
459 struct lynx_send_data
*d
;
460 struct hpsb_packet
*packet
;
462 #if 0 /* has been removed from ieee1394 core */
463 d
= (what
== hpsb_iso
? &lynx
->iso_send
: &lynx
->async
);
467 if (!list_empty(&d
->pcl_queue
)) {
468 PRINT(KERN_ERR
, lynx
->id
, "trying to queue a new packet in nonempty fifo");
472 packet
= driver_packet(d
->queue
.next
);
473 list_move_tail(&packet
->driver_list
, &d
->pcl_queue
);
475 d
->header_dma
= pci_map_single(lynx
->dev
, packet
->header
,
476 packet
->header_size
, PCI_DMA_TODEVICE
);
477 if (packet
->data_size
) {
478 d
->data_dma
= pci_map_single(lynx
->dev
, packet
->data
,
485 pcl
.next
= PCL_NEXT_INVALID
;
486 pcl
.async_error_next
= PCL_NEXT_INVALID
;
488 pcl
.buffer
[0].control
= packet
->speed_code
<< 14 | packet
->header_size
;
490 pcl
.buffer
[0].control
|= PCL_BIGENDIAN
;
492 pcl
.buffer
[0].pointer
= d
->header_dma
;
493 pcl
.buffer
[1].control
= PCL_LAST_BUFF
| packet
->data_size
;
494 pcl
.buffer
[1].pointer
= d
->data_dma
;
496 switch (packet
->type
) {
498 pcl
.buffer
[0].control
|= PCL_CMD_XMT
;
500 #if 0 /* has been removed from ieee1394 core */
502 pcl
.buffer
[0].control
|= PCL_CMD_XMT
| PCL_ISOMODE
;
506 pcl
.buffer
[0].control
|= PCL_CMD_UNFXMT
;
510 put_pcl(lynx
, d
->pcl
, &pcl
);
511 run_pcl(lynx
, d
->pcl_start
, d
->channel
);
515 /* called from subsystem core */
516 static int lynx_transmit(struct hpsb_host
*host
, struct hpsb_packet
*packet
)
518 struct ti_lynx
*lynx
= host
->hostdata
;
519 struct lynx_send_data
*d
;
522 if (packet
->data_size
>= 4096) {
523 PRINT(KERN_ERR
, lynx
->id
, "transmit packet data too big (%Zd)",
528 switch (packet
->type
) {
533 #if 0 /* has been removed from ieee1394 core */
539 PRINT(KERN_ERR
, lynx
->id
, "invalid packet type %d",
544 if (packet
->tcode
== TCODE_WRITEQ
545 || packet
->tcode
== TCODE_READQ_RESPONSE
) {
546 cpu_to_be32s(&packet
->header
[3]);
549 spin_lock_irqsave(&d
->queue_lock
, flags
);
551 list_add_tail(&packet
->driver_list
, &d
->queue
);
552 if (list_empty(&d
->pcl_queue
))
553 send_next(lynx
, packet
->type
);
555 spin_unlock_irqrestore(&d
->queue_lock
, flags
);
561 /* called from subsystem core */
562 static int lynx_devctl(struct hpsb_host
*host
, enum devctl_cmd cmd
, int arg
)
564 struct ti_lynx
*lynx
= host
->hostdata
;
566 struct hpsb_packet
*packet
;
567 LIST_HEAD(packet_list
);
573 if (reg_read(lynx
, LINK_INT_STATUS
) & LINK_INT_PHY_BUSRESET
) {
580 if (lynx
->phyic
.reg_1394a
) {
581 phy_reg
= get_phy_reg(lynx
, 5);
583 PRINT(KERN_ERR
, lynx
->id
, "cannot reset bus, because read phy reg failed");
589 PRINT(KERN_INFO
, lynx
->id
, "resetting bus (short bus reset) on request");
591 lynx
->selfid_size
= -1;
593 set_phy_reg(lynx
, 5, phy_reg
); /* set ISBR */
596 PRINT(KERN_INFO
, lynx
->id
, "cannot do short bus reset, because of old phy");
597 /* fall through to long bus reset */
600 phy_reg
= get_phy_reg(lynx
, 1);
602 PRINT(KERN_ERR
, lynx
->id
, "cannot reset bus, because read phy reg failed");
608 PRINT(KERN_INFO
, lynx
->id
, "resetting bus (long bus reset) on request");
610 lynx
->selfid_size
= -1;
612 set_phy_reg(lynx
, 1, phy_reg
); /* clear RHB, set IBR */
614 case SHORT_RESET_NO_FORCE_ROOT
:
615 if (lynx
->phyic
.reg_1394a
) {
616 phy_reg
= get_phy_reg(lynx
, 1);
618 PRINT(KERN_ERR
, lynx
->id
, "cannot reset bus, because read phy reg failed");
622 if (phy_reg
& 0x80) {
624 set_phy_reg(lynx
, 1, phy_reg
); /* clear RHB */
627 phy_reg
= get_phy_reg(lynx
, 5);
629 PRINT(KERN_ERR
, lynx
->id
, "cannot reset bus, because read phy reg failed");
635 PRINT(KERN_INFO
, lynx
->id
, "resetting bus (short bus reset, no force_root) on request");
637 lynx
->selfid_size
= -1;
639 set_phy_reg(lynx
, 5, phy_reg
); /* set ISBR */
642 PRINT(KERN_INFO
, lynx
->id
, "cannot do short bus reset, because of old phy");
643 /* fall through to long bus reset */
645 case LONG_RESET_NO_FORCE_ROOT
:
646 phy_reg
= get_phy_reg(lynx
, 1);
648 PRINT(KERN_ERR
, lynx
->id
, "cannot reset bus, because read phy reg failed");
655 PRINT(KERN_INFO
, lynx
->id
, "resetting bus (long bus reset, no force_root) on request");
657 lynx
->selfid_size
= -1;
659 set_phy_reg(lynx
, 1, phy_reg
); /* clear RHB, set IBR */
661 case SHORT_RESET_FORCE_ROOT
:
662 if (lynx
->phyic
.reg_1394a
) {
663 phy_reg
= get_phy_reg(lynx
, 1);
665 PRINT(KERN_ERR
, lynx
->id
, "cannot reset bus, because read phy reg failed");
669 if (!(phy_reg
& 0x80)) {
671 set_phy_reg(lynx
, 1, phy_reg
); /* set RHB */
674 phy_reg
= get_phy_reg(lynx
, 5);
676 PRINT(KERN_ERR
, lynx
->id
, "cannot reset bus, because read phy reg failed");
682 PRINT(KERN_INFO
, lynx
->id
, "resetting bus (short bus reset, force_root set) on request");
684 lynx
->selfid_size
= -1;
686 set_phy_reg(lynx
, 5, phy_reg
); /* set ISBR */
689 PRINT(KERN_INFO
, lynx
->id
, "cannot do short bus reset, because of old phy");
690 /* fall through to long bus reset */
692 case LONG_RESET_FORCE_ROOT
:
693 phy_reg
= get_phy_reg(lynx
, 1);
695 PRINT(KERN_ERR
, lynx
->id
, "cannot reset bus, because read phy reg failed");
701 PRINT(KERN_INFO
, lynx
->id
, "resetting bus (long bus reset, force_root set) on request");
703 lynx
->selfid_size
= -1;
705 set_phy_reg(lynx
, 1, phy_reg
); /* set IBR and RHB */
708 PRINT(KERN_ERR
, lynx
->id
, "unknown argument for reset_bus command %d", arg
);
714 case GET_CYCLE_COUNTER
:
715 retval
= reg_read(lynx
, CYCLE_TIMER
);
718 case SET_CYCLE_COUNTER
:
719 reg_write(lynx
, CYCLE_TIMER
, arg
);
723 reg_write(lynx
, LINK_ID
,
724 (arg
<< 22) | (reg_read(lynx
, LINK_ID
) & 0x003f0000));
727 case ACT_CYCLE_MASTER
:
729 reg_set_bits(lynx
, LINK_CONTROL
,
730 LINK_CONTROL_CYCMASTER
);
732 reg_clear_bits(lynx
, LINK_CONTROL
,
733 LINK_CONTROL_CYCMASTER
);
737 case CANCEL_REQUESTS
:
738 spin_lock_irqsave(&lynx
->async
.queue_lock
, flags
);
740 reg_write(lynx
, DMA_CHAN_CTRL(CHANNEL_ASYNC_SEND
), 0);
741 list_splice(&lynx
->async
.queue
, &packet_list
);
742 INIT_LIST_HEAD(&lynx
->async
.queue
);
744 if (list_empty(&lynx
->async
.pcl_queue
)) {
745 spin_unlock_irqrestore(&lynx
->async
.queue_lock
, flags
);
746 PRINTD(KERN_DEBUG
, lynx
->id
, "no async packet in PCL to cancel");
751 PRINT(KERN_INFO
, lynx
->id
, "cancelling async packet, that was already in PCL");
753 get_pcl(lynx
, lynx
->async
.pcl
, &pcl
);
755 packet
= driver_packet(lynx
->async
.pcl_queue
.next
);
756 list_del_init(&packet
->driver_list
);
758 pci_unmap_single(lynx
->dev
, lynx
->async
.header_dma
,
759 packet
->header_size
, PCI_DMA_TODEVICE
);
760 if (packet
->data_size
) {
761 pci_unmap_single(lynx
->dev
, lynx
->async
.data_dma
,
762 packet
->data_size
, PCI_DMA_TODEVICE
);
765 spin_unlock_irqrestore(&lynx
->async
.queue_lock
, flags
);
767 if (pcl
.pcl_status
& DMA_CHAN_STAT_PKTCMPL
) {
768 if (pcl
.pcl_status
& DMA_CHAN_STAT_SPECIALACK
) {
769 ack
= (pcl
.pcl_status
>> 15) & 0xf;
770 PRINTD(KERN_INFO
, lynx
->id
, "special ack %d", ack
);
771 ack
= (ack
== 1 ? ACKX_TIMEOUT
: ACKX_SEND_ERROR
);
773 ack
= (pcl
.pcl_status
>> 15) & 0xf;
776 PRINT(KERN_INFO
, lynx
->id
, "async packet was not completed");
779 hpsb_packet_sent(host
, packet
, ack
);
782 while (!list_empty(&packet_list
)) {
783 packet
= driver_packet(packet_list
.next
);
784 list_del_init(&packet
->driver_list
);
785 hpsb_packet_sent(host
, packet
, ACKX_ABORTED
);
789 #if 0 /* has been removed from ieee1394 core */
790 case ISO_LISTEN_CHANNEL
:
791 spin_lock_irqsave(&lynx
->iso_rcv
.lock
, flags
);
793 if (lynx
->iso_rcv
.chan_count
++ == 0) {
794 reg_write(lynx
, DMA_WORD1_CMP_ENABLE(CHANNEL_ISO_RCV
),
795 DMA_WORD1_CMP_ENABLE_MASTER
);
798 spin_unlock_irqrestore(&lynx
->iso_rcv
.lock
, flags
);
801 case ISO_UNLISTEN_CHANNEL
:
802 spin_lock_irqsave(&lynx
->iso_rcv
.lock
, flags
);
804 if (--lynx
->iso_rcv
.chan_count
== 0) {
805 reg_write(lynx
, DMA_WORD1_CMP_ENABLE(CHANNEL_ISO_RCV
),
809 spin_unlock_irqrestore(&lynx
->iso_rcv
.lock
, flags
);
813 PRINT(KERN_ERR
, lynx
->id
, "unknown devctl command %d", cmd
);
821 /***************************************
822 * IEEE-1394 functionality section END *
823 ***************************************/
826 /********************************************************
827 * Global stuff (interrupt handler, init/shutdown code) *
828 ********************************************************/
831 static irqreturn_t
lynx_irq_handler(int irq
, void *dev_id
)
833 struct ti_lynx
*lynx
= (struct ti_lynx
*)dev_id
;
834 struct hpsb_host
*host
= lynx
->host
;
838 linkint
= reg_read(lynx
, LINK_INT_STATUS
);
839 intmask
= reg_read(lynx
, PCI_INT_STATUS
);
841 if (!(intmask
& PCI_INT_INT_PEND
))
844 PRINTD(KERN_DEBUG
, lynx
->id
, "interrupt: 0x%08x / 0x%08x", intmask
,
847 reg_write(lynx
, LINK_INT_STATUS
, linkint
);
848 reg_write(lynx
, PCI_INT_STATUS
, intmask
);
850 if (intmask
& PCI_INT_1394
) {
851 if (linkint
& LINK_INT_PHY_TIMEOUT
) {
852 PRINT(KERN_INFO
, lynx
->id
, "PHY timeout occurred");
854 if (linkint
& LINK_INT_PHY_BUSRESET
) {
855 PRINT(KERN_INFO
, lynx
->id
, "bus reset interrupt");
856 lynx
->selfid_size
= -1;
858 if (!host
->in_bus_reset
)
859 hpsb_bus_reset(host
);
861 if (linkint
& LINK_INT_PHY_REG_RCVD
) {
864 spin_lock(&lynx
->phy_reg_lock
);
865 reg
= reg_read(lynx
, LINK_PHY
);
866 spin_unlock(&lynx
->phy_reg_lock
);
868 if (!host
->in_bus_reset
) {
869 PRINT(KERN_INFO
, lynx
->id
,
870 "phy reg received without reset");
871 } else if (reg
& 0xf00) {
872 PRINT(KERN_INFO
, lynx
->id
,
873 "unsolicited phy reg %d received",
876 lynx
->phy_reg0
= reg
& 0xff;
877 handle_selfid(lynx
, host
);
880 if (linkint
& LINK_INT_ISO_STUCK
) {
881 PRINT(KERN_INFO
, lynx
->id
, "isochronous transmitter stuck");
883 if (linkint
& LINK_INT_ASYNC_STUCK
) {
884 PRINT(KERN_INFO
, lynx
->id
, "asynchronous transmitter stuck");
886 if (linkint
& LINK_INT_SENT_REJECT
) {
887 PRINT(KERN_INFO
, lynx
->id
, "sent reject");
889 if (linkint
& LINK_INT_TX_INVALID_TC
) {
890 PRINT(KERN_INFO
, lynx
->id
, "invalid transaction code");
892 if (linkint
& LINK_INT_GRF_OVERFLOW
) {
893 /* flush FIFO if overflow happens during reset */
894 if (host
->in_bus_reset
)
895 reg_write(lynx
, FIFO_CONTROL
,
896 FIFO_CONTROL_GRF_FLUSH
);
897 PRINT(KERN_INFO
, lynx
->id
, "GRF overflow");
899 if (linkint
& LINK_INT_ITF_UNDERFLOW
) {
900 PRINT(KERN_INFO
, lynx
->id
, "ITF underflow");
902 if (linkint
& LINK_INT_ATF_UNDERFLOW
) {
903 PRINT(KERN_INFO
, lynx
->id
, "ATF underflow");
907 if (intmask
& PCI_INT_DMA_HLT(CHANNEL_ISO_RCV
)) {
908 PRINTD(KERN_DEBUG
, lynx
->id
, "iso receive");
910 spin_lock(&lynx
->iso_rcv
.lock
);
912 lynx
->iso_rcv
.stat
[lynx
->iso_rcv
.next
] =
913 reg_read(lynx
, DMA_CHAN_STAT(CHANNEL_ISO_RCV
));
915 lynx
->iso_rcv
.used
++;
916 lynx
->iso_rcv
.next
= (lynx
->iso_rcv
.next
+ 1) % NUM_ISORCV_PCL
;
918 if ((lynx
->iso_rcv
.next
== lynx
->iso_rcv
.last
)
919 || !lynx
->iso_rcv
.chan_count
) {
920 PRINTD(KERN_DEBUG
, lynx
->id
, "stopped");
921 reg_write(lynx
, DMA_WORD1_CMP_ENABLE(CHANNEL_ISO_RCV
), 0);
924 run_sub_pcl(lynx
, lynx
->iso_rcv
.pcl_start
, lynx
->iso_rcv
.next
,
927 spin_unlock(&lynx
->iso_rcv
.lock
);
929 tasklet_schedule(&lynx
->iso_rcv
.tq
);
932 if (intmask
& PCI_INT_DMA_HLT(CHANNEL_ASYNC_SEND
)) {
933 PRINTD(KERN_DEBUG
, lynx
->id
, "async sent");
934 spin_lock(&lynx
->async
.queue_lock
);
936 if (list_empty(&lynx
->async
.pcl_queue
)) {
937 spin_unlock(&lynx
->async
.queue_lock
);
938 PRINT(KERN_WARNING
, lynx
->id
, "async dma halted, but no queued packet (maybe it was cancelled)");
942 struct hpsb_packet
*packet
;
944 get_pcl(lynx
, lynx
->async
.pcl
, &pcl
);
946 packet
= driver_packet(lynx
->async
.pcl_queue
.next
);
947 list_del_init(&packet
->driver_list
);
949 pci_unmap_single(lynx
->dev
, lynx
->async
.header_dma
,
950 packet
->header_size
, PCI_DMA_TODEVICE
);
951 if (packet
->data_size
) {
952 pci_unmap_single(lynx
->dev
, lynx
->async
.data_dma
,
953 packet
->data_size
, PCI_DMA_TODEVICE
);
956 if (!list_empty(&lynx
->async
.queue
)) {
957 send_next(lynx
, hpsb_async
);
960 spin_unlock(&lynx
->async
.queue_lock
);
962 if (pcl
.pcl_status
& DMA_CHAN_STAT_PKTCMPL
) {
963 if (pcl
.pcl_status
& DMA_CHAN_STAT_SPECIALACK
) {
964 ack
= (pcl
.pcl_status
>> 15) & 0xf;
965 PRINTD(KERN_INFO
, lynx
->id
, "special ack %d", ack
);
966 ack
= (ack
== 1 ? ACKX_TIMEOUT
: ACKX_SEND_ERROR
);
968 ack
= (pcl
.pcl_status
>> 15) & 0xf;
971 PRINT(KERN_INFO
, lynx
->id
, "async packet was not completed");
972 ack
= ACKX_SEND_ERROR
;
974 hpsb_packet_sent(host
, packet
, ack
);
978 if (intmask
& PCI_INT_DMA_HLT(CHANNEL_ISO_SEND
)) {
979 PRINTD(KERN_DEBUG
, lynx
->id
, "iso sent");
980 spin_lock(&lynx
->iso_send
.queue_lock
);
982 if (list_empty(&lynx
->iso_send
.pcl_queue
)) {
983 spin_unlock(&lynx
->iso_send
.queue_lock
);
984 PRINT(KERN_ERR
, lynx
->id
, "iso send dma halted, but no queued packet");
988 struct hpsb_packet
*packet
;
990 get_pcl(lynx
, lynx
->iso_send
.pcl
, &pcl
);
992 packet
= driver_packet(lynx
->iso_send
.pcl_queue
.next
);
993 list_del_init(&packet
->driver_list
);
995 pci_unmap_single(lynx
->dev
, lynx
->iso_send
.header_dma
,
996 packet
->header_size
, PCI_DMA_TODEVICE
);
997 if (packet
->data_size
) {
998 pci_unmap_single(lynx
->dev
, lynx
->iso_send
.data_dma
,
999 packet
->data_size
, PCI_DMA_TODEVICE
);
1001 #if 0 /* has been removed from ieee1394 core */
1002 if (!list_empty(&lynx
->iso_send
.queue
)) {
1003 send_next(lynx
, hpsb_iso
);
1006 spin_unlock(&lynx
->iso_send
.queue_lock
);
1008 if (pcl
.pcl_status
& DMA_CHAN_STAT_PKTCMPL
) {
1009 if (pcl
.pcl_status
& DMA_CHAN_STAT_SPECIALACK
) {
1010 ack
= (pcl
.pcl_status
>> 15) & 0xf;
1011 PRINTD(KERN_INFO
, lynx
->id
, "special ack %d", ack
);
1012 ack
= (ack
== 1 ? ACKX_TIMEOUT
: ACKX_SEND_ERROR
);
1014 ack
= (pcl
.pcl_status
>> 15) & 0xf;
1017 PRINT(KERN_INFO
, lynx
->id
, "iso send packet was not completed");
1018 ack
= ACKX_SEND_ERROR
;
1021 hpsb_packet_sent(host
, packet
, ack
); //FIXME: maybe we should just use ACK_COMPLETE and ACKX_SEND_ERROR
1025 if (intmask
& PCI_INT_DMA_HLT(CHANNEL_ASYNC_RCV
)) {
1026 /* general receive DMA completed */
1027 int stat
= reg_read(lynx
, DMA_CHAN_STAT(CHANNEL_ASYNC_RCV
));
1029 PRINTD(KERN_DEBUG
, lynx
->id
, "received packet size %d",
1032 if (stat
& DMA_CHAN_STAT_SELFID
) {
1033 lynx
->selfid_size
= stat
& 0x1fff;
1034 handle_selfid(lynx
, host
);
1036 quadlet_t
*q_data
= lynx
->rcv_page
;
1037 if ((*q_data
>> 4 & 0xf) == TCODE_READQ_RESPONSE
1038 || (*q_data
>> 4 & 0xf) == TCODE_WRITEQ
) {
1039 cpu_to_be32s(q_data
+ 3);
1041 hpsb_packet_received(host
, q_data
, stat
& 0x1fff, 0);
1044 run_pcl(lynx
, lynx
->rcv_pcl_start
, CHANNEL_ASYNC_RCV
);
1051 static void iso_rcv_bh(struct ti_lynx
*lynx
)
1055 unsigned long flags
;
1057 spin_lock_irqsave(&lynx
->iso_rcv
.lock
, flags
);
1059 while (lynx
->iso_rcv
.used
) {
1060 idx
= lynx
->iso_rcv
.last
;
1061 spin_unlock_irqrestore(&lynx
->iso_rcv
.lock
, flags
);
1063 data
= lynx
->iso_rcv
.page
[idx
/ ISORCV_PER_PAGE
]
1064 + (idx
% ISORCV_PER_PAGE
) * MAX_ISORCV_SIZE
;
1066 if ((*data
>> 16) + 4 != (lynx
->iso_rcv
.stat
[idx
] & 0x1fff)) {
1067 PRINT(KERN_ERR
, lynx
->id
,
1068 "iso length mismatch 0x%08x/0x%08x", *data
,
1069 lynx
->iso_rcv
.stat
[idx
]);
1072 if (lynx
->iso_rcv
.stat
[idx
]
1073 & (DMA_CHAN_STAT_PCIERR
| DMA_CHAN_STAT_PKTERR
)) {
1074 PRINT(KERN_INFO
, lynx
->id
,
1075 "iso receive error on %d to 0x%p", idx
, data
);
1077 hpsb_packet_received(lynx
->host
, data
,
1078 lynx
->iso_rcv
.stat
[idx
] & 0x1fff,
1082 spin_lock_irqsave(&lynx
->iso_rcv
.lock
, flags
);
1083 lynx
->iso_rcv
.last
= (idx
+ 1) % NUM_ISORCV_PCL
;
1084 lynx
->iso_rcv
.used
--;
1087 if (lynx
->iso_rcv
.chan_count
) {
1088 reg_write(lynx
, DMA_WORD1_CMP_ENABLE(CHANNEL_ISO_RCV
),
1089 DMA_WORD1_CMP_ENABLE_MASTER
);
1091 spin_unlock_irqrestore(&lynx
->iso_rcv
.lock
, flags
);
1095 static void remove_card(struct pci_dev
*dev
)
1097 struct ti_lynx
*lynx
;
1098 struct device
*lynx_dev
;
1101 lynx
= pci_get_drvdata(dev
);
1103 pci_set_drvdata(dev
, NULL
);
1105 lynx_dev
= get_device(&lynx
->host
->device
);
1107 switch (lynx
->state
) {
1109 reg_write(lynx
, PCI_INT_ENABLE
, 0);
1110 hpsb_remove_host(lynx
->host
);
1112 reg_write(lynx
, PCI_INT_ENABLE
, 0);
1113 free_irq(lynx
->dev
->irq
, lynx
);
1115 /* Disable IRM Contender and LCtrl */
1116 if (lynx
->phyic
.reg_1394a
)
1117 set_phy_reg(lynx
, 4, ~0xc0 & get_phy_reg(lynx
, 4));
1119 /* Let all other nodes know to ignore us */
1120 lynx_devctl(lynx
->host
, RESET_BUS
, LONG_RESET_NO_FORCE_ROOT
);
1122 case have_iomappings
:
1123 reg_set_bits(lynx
, MISC_CONTROL
, MISC_CONTROL_SWRESET
);
1124 /* Fix buggy cards with autoboot pin not tied low: */
1125 reg_write(lynx
, DMA0_CHAN_CTRL
, 0);
1126 iounmap(lynx
->registers
);
1127 iounmap(lynx
->local_rom
);
1128 iounmap(lynx
->local_ram
);
1129 iounmap(lynx
->aux_port
);
1130 case have_1394_buffers
:
1131 for (i
= 0; i
< ISORCV_PAGES
; i
++) {
1132 if (lynx
->iso_rcv
.page
[i
]) {
1133 pci_free_consistent(lynx
->dev
, PAGE_SIZE
,
1134 lynx
->iso_rcv
.page
[i
],
1135 lynx
->iso_rcv
.page_dma
[i
]);
1138 pci_free_consistent(lynx
->dev
, PAGE_SIZE
, lynx
->rcv_page
,
1139 lynx
->rcv_page_dma
);
1142 pci_free_consistent(lynx
->dev
, LOCALRAM_SIZE
, lynx
->pcl_mem
,
1145 /* do nothing - already freed */
1149 tasklet_kill(&lynx
->iso_rcv
.tq
);
1152 put_device(lynx_dev
);
1156 static int __devinit
add_card(struct pci_dev
*dev
,
1157 const struct pci_device_id
*devid_is_unused
)
1159 #define FAIL(fmt, args...) do { \
1160 PRINT_G(KERN_ERR, fmt , ## args); \
1166 struct hpsb_host
*host
;
1167 struct ti_lynx
*lynx
; /* shortcut to currently handled device */
1175 if (pci_set_dma_mask(dev
, DMA_32BIT_MASK
))
1176 FAIL("DMA address limits not supported for PCILynx hardware");
1177 if (pci_enable_device(dev
))
1178 FAIL("failed to enable PCILynx hardware");
1179 pci_set_master(dev
);
1183 host
= hpsb_alloc_host(&lynx_driver
, sizeof(struct ti_lynx
), &dev
->dev
);
1184 if (!host
) FAIL("failed to allocate control structure memory");
1186 lynx
= host
->hostdata
;
1187 lynx
->id
= card_id
++;
1189 lynx
->state
= clear
;
1192 pci_set_drvdata(dev
, lynx
);
1194 spin_lock_init(&lynx
->lock
);
1195 spin_lock_init(&lynx
->phy_reg_lock
);
1197 lynx
->pcl_mem
= pci_alloc_consistent(dev
, LOCALRAM_SIZE
,
1198 &lynx
->pcl_mem_dma
);
1200 if (lynx
->pcl_mem
!= NULL
) {
1201 lynx
->state
= have_pcl_mem
;
1202 PRINT(KERN_INFO
, lynx
->id
,
1203 "allocated PCL memory %d Bytes @ 0x%p", LOCALRAM_SIZE
,
1206 FAIL("failed to allocate PCL memory area");
1209 lynx
->rcv_page
= pci_alloc_consistent(dev
, PAGE_SIZE
,
1210 &lynx
->rcv_page_dma
);
1211 if (lynx
->rcv_page
== NULL
) {
1212 FAIL("failed to allocate receive buffer");
1214 lynx
->state
= have_1394_buffers
;
1216 for (i
= 0; i
< ISORCV_PAGES
; i
++) {
1217 lynx
->iso_rcv
.page
[i
] =
1218 pci_alloc_consistent(dev
, PAGE_SIZE
,
1219 &lynx
->iso_rcv
.page_dma
[i
]);
1220 if (lynx
->iso_rcv
.page
[i
] == NULL
) {
1221 FAIL("failed to allocate iso receive buffers");
1225 lynx
->registers
= ioremap_nocache(pci_resource_start(dev
,0),
1226 PCILYNX_MAX_REGISTER
);
1227 lynx
->local_ram
= ioremap(pci_resource_start(dev
,1), PCILYNX_MAX_MEMORY
);
1228 lynx
->aux_port
= ioremap(pci_resource_start(dev
,2), PCILYNX_MAX_MEMORY
);
1229 lynx
->local_rom
= ioremap(pci_resource_start(dev
,PCI_ROM_RESOURCE
),
1230 PCILYNX_MAX_MEMORY
);
1231 lynx
->state
= have_iomappings
;
1233 if (lynx
->registers
== NULL
) {
1234 FAIL("failed to remap registers - card not accessible");
1237 reg_set_bits(lynx
, MISC_CONTROL
, MISC_CONTROL_SWRESET
);
1238 /* Fix buggy cards with autoboot pin not tied low: */
1239 reg_write(lynx
, DMA0_CHAN_CTRL
, 0);
1241 sprintf (irq_buf
, "%d", dev
->irq
);
1243 if (!request_irq(dev
->irq
, lynx_irq_handler
, IRQF_SHARED
,
1244 PCILYNX_DRIVER_NAME
, lynx
)) {
1245 PRINT(KERN_INFO
, lynx
->id
, "allocated interrupt %s", irq_buf
);
1246 lynx
->state
= have_intr
;
1248 FAIL("failed to allocate shared interrupt %s", irq_buf
);
1251 /* alloc_pcl return values are not checked, it is expected that the
1252 * provided PCL space is sufficient for the initial allocations */
1253 lynx
->rcv_pcl
= alloc_pcl(lynx
);
1254 lynx
->rcv_pcl_start
= alloc_pcl(lynx
);
1255 lynx
->async
.pcl
= alloc_pcl(lynx
);
1256 lynx
->async
.pcl_start
= alloc_pcl(lynx
);
1257 lynx
->iso_send
.pcl
= alloc_pcl(lynx
);
1258 lynx
->iso_send
.pcl_start
= alloc_pcl(lynx
);
1260 for (i
= 0; i
< NUM_ISORCV_PCL
; i
++) {
1261 lynx
->iso_rcv
.pcl
[i
] = alloc_pcl(lynx
);
1263 lynx
->iso_rcv
.pcl_start
= alloc_pcl(lynx
);
1265 /* all allocations successful - simple init stuff follows */
1267 reg_write(lynx
, PCI_INT_ENABLE
, PCI_INT_DMA_ALL
);
1269 tasklet_init(&lynx
->iso_rcv
.tq
, (void (*)(unsigned long))iso_rcv_bh
,
1270 (unsigned long)lynx
);
1272 spin_lock_init(&lynx
->iso_rcv
.lock
);
1274 spin_lock_init(&lynx
->async
.queue_lock
);
1275 lynx
->async
.channel
= CHANNEL_ASYNC_SEND
;
1276 spin_lock_init(&lynx
->iso_send
.queue_lock
);
1277 lynx
->iso_send
.channel
= CHANNEL_ISO_SEND
;
1279 PRINT(KERN_INFO
, lynx
->id
, "remapped memory spaces reg 0x%p, rom 0x%p, "
1280 "ram 0x%p, aux 0x%p", lynx
->registers
, lynx
->local_rom
,
1281 lynx
->local_ram
, lynx
->aux_port
);
1283 /* now, looking for PHY register set */
1284 if ((get_phy_reg(lynx
, 2) & 0xe0) == 0xe0) {
1285 lynx
->phyic
.reg_1394a
= 1;
1286 PRINT(KERN_INFO
, lynx
->id
,
1287 "found 1394a conform PHY (using extended register set)");
1288 lynx
->phyic
.vendor
= get_phy_vendorid(lynx
);
1289 lynx
->phyic
.product
= get_phy_productid(lynx
);
1291 lynx
->phyic
.reg_1394a
= 0;
1292 PRINT(KERN_INFO
, lynx
->id
, "found old 1394 PHY");
1295 lynx
->selfid_size
= -1;
1296 lynx
->phy_reg0
= -1;
1298 INIT_LIST_HEAD(&lynx
->async
.queue
);
1299 INIT_LIST_HEAD(&lynx
->async
.pcl_queue
);
1300 INIT_LIST_HEAD(&lynx
->iso_send
.queue
);
1301 INIT_LIST_HEAD(&lynx
->iso_send
.pcl_queue
);
1303 pcl
.next
= pcl_bus(lynx
, lynx
->rcv_pcl
);
1304 put_pcl(lynx
, lynx
->rcv_pcl_start
, &pcl
);
1306 pcl
.next
= PCL_NEXT_INVALID
;
1307 pcl
.async_error_next
= PCL_NEXT_INVALID
;
1309 pcl
.buffer
[0].control
= PCL_CMD_RCV
| 16;
1310 #ifndef __BIG_ENDIAN
1311 pcl
.buffer
[0].control
|= PCL_BIGENDIAN
;
1313 pcl
.buffer
[1].control
= PCL_LAST_BUFF
| 4080;
1315 pcl
.buffer
[0].pointer
= lynx
->rcv_page_dma
;
1316 pcl
.buffer
[1].pointer
= lynx
->rcv_page_dma
+ 16;
1317 put_pcl(lynx
, lynx
->rcv_pcl
, &pcl
);
1319 pcl
.next
= pcl_bus(lynx
, lynx
->async
.pcl
);
1320 pcl
.async_error_next
= pcl_bus(lynx
, lynx
->async
.pcl
);
1321 put_pcl(lynx
, lynx
->async
.pcl_start
, &pcl
);
1323 pcl
.next
= pcl_bus(lynx
, lynx
->iso_send
.pcl
);
1324 pcl
.async_error_next
= PCL_NEXT_INVALID
;
1325 put_pcl(lynx
, lynx
->iso_send
.pcl_start
, &pcl
);
1327 pcl
.next
= PCL_NEXT_INVALID
;
1328 pcl
.async_error_next
= PCL_NEXT_INVALID
;
1329 pcl
.buffer
[0].control
= PCL_CMD_RCV
| 4;
1330 #ifndef __BIG_ENDIAN
1331 pcl
.buffer
[0].control
|= PCL_BIGENDIAN
;
1333 pcl
.buffer
[1].control
= PCL_LAST_BUFF
| 2044;
1335 for (i
= 0; i
< NUM_ISORCV_PCL
; i
++) {
1336 int page
= i
/ ISORCV_PER_PAGE
;
1337 int sec
= i
% ISORCV_PER_PAGE
;
1339 pcl
.buffer
[0].pointer
= lynx
->iso_rcv
.page_dma
[page
]
1340 + sec
* MAX_ISORCV_SIZE
;
1341 pcl
.buffer
[1].pointer
= pcl
.buffer
[0].pointer
+ 4;
1342 put_pcl(lynx
, lynx
->iso_rcv
.pcl
[i
], &pcl
);
1346 for (i
= 0; i
< NUM_ISORCV_PCL
; i
++) {
1347 pcli
[i
] = pcl_bus(lynx
, lynx
->iso_rcv
.pcl
[i
]);
1349 put_pcl(lynx
, lynx
->iso_rcv
.pcl_start
, &pcl
);
1351 /* FIFO sizes from left to right: ITF=48 ATF=48 GRF=160 */
1352 reg_write(lynx
, FIFO_SIZES
, 0x003030a0);
1353 /* 20 byte threshold before triggering PCI transfer */
1354 reg_write(lynx
, DMA_GLOBAL_REGISTER
, 0x2<<24);
1355 /* threshold on both send FIFOs before transmitting:
1356 FIFO size - cache line size - 1 */
1357 i
= reg_read(lynx
, PCI_LATENCY_CACHELINE
) & 0xff;
1359 reg_write(lynx
, FIFO_XMIT_THRESHOLD
, (i
<< 8) | i
);
1361 reg_set_bits(lynx
, PCI_INT_ENABLE
, PCI_INT_1394
);
1363 reg_write(lynx
, LINK_INT_ENABLE
, LINK_INT_PHY_TIMEOUT
1364 | LINK_INT_PHY_REG_RCVD
| LINK_INT_PHY_BUSRESET
1365 | LINK_INT_ISO_STUCK
| LINK_INT_ASYNC_STUCK
1366 | LINK_INT_SENT_REJECT
| LINK_INT_TX_INVALID_TC
1367 | LINK_INT_GRF_OVERFLOW
| LINK_INT_ITF_UNDERFLOW
1368 | LINK_INT_ATF_UNDERFLOW
);
1370 reg_write(lynx
, DMA_WORD0_CMP_VALUE(CHANNEL_ASYNC_RCV
), 0);
1371 reg_write(lynx
, DMA_WORD0_CMP_ENABLE(CHANNEL_ASYNC_RCV
), 0xa<<4);
1372 reg_write(lynx
, DMA_WORD1_CMP_VALUE(CHANNEL_ASYNC_RCV
), 0);
1373 reg_write(lynx
, DMA_WORD1_CMP_ENABLE(CHANNEL_ASYNC_RCV
),
1374 DMA_WORD1_CMP_MATCH_LOCAL_NODE
| DMA_WORD1_CMP_MATCH_BROADCAST
1375 | DMA_WORD1_CMP_MATCH_EXACT
| DMA_WORD1_CMP_MATCH_BUS_BCAST
1376 | DMA_WORD1_CMP_ENABLE_SELF_ID
| DMA_WORD1_CMP_ENABLE_MASTER
);
1378 run_pcl(lynx
, lynx
->rcv_pcl_start
, CHANNEL_ASYNC_RCV
);
1380 reg_write(lynx
, DMA_WORD0_CMP_VALUE(CHANNEL_ISO_RCV
), 0);
1381 reg_write(lynx
, DMA_WORD0_CMP_ENABLE(CHANNEL_ISO_RCV
), 0x9<<4);
1382 reg_write(lynx
, DMA_WORD1_CMP_VALUE(CHANNEL_ISO_RCV
), 0);
1383 reg_write(lynx
, DMA_WORD1_CMP_ENABLE(CHANNEL_ISO_RCV
), 0);
1385 run_sub_pcl(lynx
, lynx
->iso_rcv
.pcl_start
, 0, CHANNEL_ISO_RCV
);
1387 reg_write(lynx
, LINK_CONTROL
, LINK_CONTROL_RCV_CMP_VALID
1388 | LINK_CONTROL_TX_ISO_EN
| LINK_CONTROL_RX_ISO_EN
1389 | LINK_CONTROL_TX_ASYNC_EN
| LINK_CONTROL_RX_ASYNC_EN
1390 | LINK_CONTROL_RESET_TX
| LINK_CONTROL_RESET_RX
);
1392 if (!lynx
->phyic
.reg_1394a
) {
1393 if (!hpsb_disable_irm
) {
1394 /* attempt to enable contender bit -FIXME- would this
1395 * work elsewhere? */
1396 reg_set_bits(lynx
, GPIO_CTRL_A
, 0x1);
1397 reg_write(lynx
, GPIO_DATA_BASE
+ 0x3c, 0x1);
1400 /* set the contender (if appropriate) and LCtrl bit in the
1401 * extended PHY register set. (Should check that PHY_02_EXTENDED
1402 * is set in register 2?)
1404 i
= get_phy_reg(lynx
, 4);
1406 if (hpsb_disable_irm
)
1407 i
&= ~PHY_04_CONTENDER
;
1409 i
|= PHY_04_CONTENDER
;
1410 if (i
!= -1) set_phy_reg(lynx
, 4, i
);
1415 /* needed for i2c communication with serial eeprom */
1416 struct i2c_adapter
*i2c_ad
;
1417 struct i2c_algo_bit_data i2c_adapter_data
;
1420 i2c_ad
= kzalloc(sizeof(*i2c_ad
), GFP_KERNEL
);
1421 if (!i2c_ad
) FAIL("failed to allocate I2C adapter memory");
1423 i2c_ad
->id
= I2C_HW_B_PCILYNX
;
1424 strlcpy(i2c_ad
->name
, "PCILynx I2C", sizeof(i2c_ad
->name
));
1425 i2c_adapter_data
= bit_data
;
1426 i2c_ad
->algo_data
= &i2c_adapter_data
;
1427 i2c_adapter_data
.data
= lynx
;
1428 i2c_ad
->dev
.parent
= &dev
->dev
;
1430 PRINTD(KERN_DEBUG
, lynx
->id
,"original eeprom control: %d",
1431 reg_read(lynx
, SERIAL_EEPROM_CONTROL
));
1433 /* reset hardware to sane state */
1434 lynx
->i2c_driven_state
= 0x00000070;
1435 reg_write(lynx
, SERIAL_EEPROM_CONTROL
, lynx
->i2c_driven_state
);
1437 if (i2c_bit_add_bus(i2c_ad
) < 0)
1441 FAIL("unable to register i2c");
1446 unsigned char i2c_cmd
= 0x10;
1447 struct i2c_msg msg
[2] = { { 0x50, 0, 1, &i2c_cmd
},
1448 { 0x50, I2C_M_RD
, 20, (unsigned char*) lynx
->bus_info_block
}
1451 /* we use i2c_transfer because we have no i2c_client
1453 if (i2c_transfer(i2c_ad
, msg
, 2) < 0) {
1454 PRINT(KERN_ERR
, lynx
->id
, "unable to read bus info block from i2c");
1456 PRINT(KERN_INFO
, lynx
->id
, "got bus info block from serial eeprom");
1457 /* FIXME: probably we shoud rewrite the max_rec, max_ROM(1394a),
1458 * generation(1394a) and link_spd(1394a) field and recalculate
1461 for (i
= 0; i
< 5 ; i
++)
1462 PRINTD(KERN_DEBUG
, lynx
->id
, "Businfo block quadlet %i: %08x",
1463 i
, be32_to_cpu(lynx
->bus_info_block
[i
]));
1465 /* info_length, crc_length and 1394 magic number to check, if it is really a bus info block */
1466 if (((be32_to_cpu(lynx
->bus_info_block
[0]) & 0xffff0000) == 0x04040000) &&
1467 (lynx
->bus_info_block
[1] == __constant_cpu_to_be32(0x31333934)))
1469 PRINT(KERN_DEBUG
, lynx
->id
, "read a valid bus info block from");
1473 FAIL("read something from serial eeprom, but it does not seem to be a valid bus info block");
1478 i2c_del_adapter(i2c_ad
);
1483 host
->csr
.guid_hi
= be32_to_cpu(lynx
->bus_info_block
[3]);
1484 host
->csr
.guid_lo
= be32_to_cpu(lynx
->bus_info_block
[4]);
1485 host
->csr
.cyc_clk_acc
= (be32_to_cpu(lynx
->bus_info_block
[2]) >> 16) & 0xff;
1486 host
->csr
.max_rec
= (be32_to_cpu(lynx
->bus_info_block
[2]) >> 12) & 0xf;
1487 if (!lynx
->phyic
.reg_1394a
)
1488 host
->csr
.lnk_spd
= (get_phy_reg(lynx
, 2) & 0xc0) >> 6;
1490 host
->csr
.lnk_spd
= be32_to_cpu(lynx
->bus_info_block
[2]) & 0x7;
1492 if (hpsb_add_host(host
)) {
1494 FAIL("Failed to register host with highlevel");
1497 lynx
->state
= is_host
;
1504 static struct pci_device_id pci_table
[] = {
1506 .vendor
= PCI_VENDOR_ID_TI
,
1507 .device
= PCI_DEVICE_ID_TI_PCILYNX
,
1508 .subvendor
= PCI_ANY_ID
,
1509 .subdevice
= PCI_ANY_ID
,
1511 { } /* Terminating entry */
1514 static struct pci_driver lynx_pci_driver
= {
1515 .name
= PCILYNX_DRIVER_NAME
,
1516 .id_table
= pci_table
,
1518 .remove
= remove_card
,
1521 static struct hpsb_host_driver lynx_driver
= {
1522 .owner
= THIS_MODULE
,
1523 .name
= PCILYNX_DRIVER_NAME
,
1524 .set_hw_config_rom
= NULL
,
1525 .transmit_packet
= lynx_transmit
,
1526 .devctl
= lynx_devctl
,
1530 MODULE_AUTHOR("Andreas E. Bombe <andreas.bombe@munich.netsurf.de>");
1531 MODULE_DESCRIPTION("driver for Texas Instruments PCI Lynx IEEE-1394 controller");
1532 MODULE_LICENSE("GPL");
1533 MODULE_SUPPORTED_DEVICE("pcilynx");
1534 MODULE_DEVICE_TABLE(pci
, pci_table
);
1536 static int __init
pcilynx_init(void)
1540 ret
= pci_register_driver(&lynx_pci_driver
);
1542 PRINT_G(KERN_ERR
, "PCI module init failed");
1549 static void __exit
pcilynx_cleanup(void)
1551 pci_unregister_driver(&lynx_pci_driver
);
1555 module_init(pcilynx_init
);
1556 module_exit(pcilynx_cleanup
);