Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | /* |
Ralf Baechle | 05d9c84 | 2005-11-09 17:10:05 +0000 | [diff] [blame] | 2 | * Copyright (C) 2000, 2005 MIPS Technologies, Inc. All rights reserved. |
| 3 | * Authors: Carsten Langgaard <carstenl@mips.com> |
| 4 | * Maciej W. Rozycki <macro@mips.com> |
| 5 | * Copyright (C) 2004 Ralf Baechle <ralf@linux-mips.org> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6 | * |
| 7 | * This program is free software; you can distribute it and/or modify it |
| 8 | * under the terms of the GNU General Public License (Version 2) as |
| 9 | * published by the Free Software Foundation. |
| 10 | * |
| 11 | * This program is distributed in the hope it will be useful, but WITHOUT |
| 12 | * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or |
| 13 | * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License |
| 14 | * for more details. |
| 15 | * |
| 16 | * You should have received a copy of the GNU General Public License along |
| 17 | * with this program; if not, write to the Free Software Foundation, Inc., |
| 18 | * 59 Temple Place - Suite 330, Boston MA 02111-1307, USA. |
| 19 | * |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 20 | * SAA9730 ethernet driver. |
| 21 | * |
| 22 | * Changes: |
Ralf Baechle | 05d9c84 | 2005-11-09 17:10:05 +0000 | [diff] [blame] | 23 | * Angelo Dell'Aera <buffer@antifork.org> : Conversion to the new PCI API |
| 24 | * (pci_driver). |
| 25 | * Conversion to spinlocks. |
| 26 | * Error handling fixes. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 27 | */ |
| 28 | |
| 29 | #include <linux/init.h> |
| 30 | #include <linux/netdevice.h> |
| 31 | #include <linux/delay.h> |
| 32 | #include <linux/etherdevice.h> |
| 33 | #include <linux/module.h> |
| 34 | #include <linux/skbuff.h> |
| 35 | #include <linux/pci.h> |
| 36 | #include <linux/spinlock.h> |
Ralf Baechle | 05d9c84 | 2005-11-09 17:10:05 +0000 | [diff] [blame] | 37 | #include <linux/types.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 38 | |
| 39 | #include <asm/addrspace.h> |
Ralf Baechle | 05d9c84 | 2005-11-09 17:10:05 +0000 | [diff] [blame] | 40 | #include <asm/io.h> |
| 41 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 42 | #include <asm/mips-boards/prom.h> |
| 43 | |
| 44 | #include "saa9730.h" |
| 45 | |
| 46 | #ifdef LAN_SAA9730_DEBUG |
| 47 | int lan_saa9730_debug = LAN_SAA9730_DEBUG; |
| 48 | #else |
| 49 | int lan_saa9730_debug; |
| 50 | #endif |
| 51 | |
| 52 | #define DRV_MODULE_NAME "saa9730" |
| 53 | |
| 54 | static struct pci_device_id saa9730_pci_tbl[] = { |
Ralf Baechle | 05d9c84 | 2005-11-09 17:10:05 +0000 | [diff] [blame] | 55 | { PCI_VENDOR_ID_PHILIPS, PCI_DEVICE_ID_PHILIPS_SAA9730, |
Ralf Baechle | 62ff0d0 | 2005-11-09 16:44:02 +0000 | [diff] [blame] | 56 | PCI_ANY_ID, PCI_ANY_ID, 0, 0, 0UL }, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 57 | { 0, } |
| 58 | }; |
| 59 | |
| 60 | MODULE_DEVICE_TABLE(pci, saa9730_pci_tbl); |
| 61 | |
| 62 | /* Non-zero only if the current card is a PCI with BIOS-set IRQ. */ |
| 63 | static unsigned int pci_irq_line; |
| 64 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 65 | static void evm_saa9730_enable_lan_int(struct lan_saa9730_private *lp) |
| 66 | { |
Ralf Baechle | 69a43ac | 2007-03-20 12:40:09 +0000 | [diff] [blame] | 67 | writel(readl(&lp->evm_saa9730_regs->InterruptBlock1) | EVM_LAN_INT, |
| 68 | &lp->evm_saa9730_regs->InterruptBlock1); |
| 69 | writel(readl(&lp->evm_saa9730_regs->InterruptStatus1) | EVM_LAN_INT, |
| 70 | &lp->evm_saa9730_regs->InterruptStatus1); |
| 71 | writel(readl(&lp->evm_saa9730_regs->InterruptEnable1) | EVM_LAN_INT | |
| 72 | EVM_MASTER_EN, &lp->evm_saa9730_regs->InterruptEnable1); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 73 | } |
Ralf Baechle | 05d9c84 | 2005-11-09 17:10:05 +0000 | [diff] [blame] | 74 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 75 | static void evm_saa9730_disable_lan_int(struct lan_saa9730_private *lp) |
| 76 | { |
Ralf Baechle | 69a43ac | 2007-03-20 12:40:09 +0000 | [diff] [blame] | 77 | writel(readl(&lp->evm_saa9730_regs->InterruptBlock1) & ~EVM_LAN_INT, |
| 78 | &lp->evm_saa9730_regs->InterruptBlock1); |
| 79 | writel(readl(&lp->evm_saa9730_regs->InterruptEnable1) & ~EVM_LAN_INT, |
| 80 | &lp->evm_saa9730_regs->InterruptEnable1); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 81 | } |
| 82 | |
| 83 | static void evm_saa9730_clear_lan_int(struct lan_saa9730_private *lp) |
| 84 | { |
Ralf Baechle | 69a43ac | 2007-03-20 12:40:09 +0000 | [diff] [blame] | 85 | writel(EVM_LAN_INT, &lp->evm_saa9730_regs->InterruptStatus1); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 86 | } |
| 87 | |
| 88 | static void evm_saa9730_block_lan_int(struct lan_saa9730_private *lp) |
| 89 | { |
Ralf Baechle | 69a43ac | 2007-03-20 12:40:09 +0000 | [diff] [blame] | 90 | writel(readl(&lp->evm_saa9730_regs->InterruptBlock1) & ~EVM_LAN_INT, |
| 91 | &lp->evm_saa9730_regs->InterruptBlock1); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 92 | } |
| 93 | |
| 94 | static void evm_saa9730_unblock_lan_int(struct lan_saa9730_private *lp) |
| 95 | { |
Ralf Baechle | 69a43ac | 2007-03-20 12:40:09 +0000 | [diff] [blame] | 96 | writel(readl(&lp->evm_saa9730_regs->InterruptBlock1) | EVM_LAN_INT, |
| 97 | &lp->evm_saa9730_regs->InterruptBlock1); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 98 | } |
| 99 | |
Ralf Baechle | b77eb35 | 2007-10-14 14:13:58 +0100 | [diff] [blame] | 100 | static void __used show_saa9730_regs(struct net_device *dev) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 101 | { |
Ralf Baechle | b77eb35 | 2007-10-14 14:13:58 +0100 | [diff] [blame] | 102 | struct lan_saa9730_private *lp = netdev_priv(dev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 103 | int i, j; |
Ralf Baechle | b77eb35 | 2007-10-14 14:13:58 +0100 | [diff] [blame] | 104 | |
Ralf Baechle | 05d9c84 | 2005-11-09 17:10:05 +0000 | [diff] [blame] | 105 | printk("TxmBufferA = %p\n", lp->TxmBuffer[0][0]); |
| 106 | printk("TxmBufferB = %p\n", lp->TxmBuffer[1][0]); |
| 107 | printk("RcvBufferA = %p\n", lp->RcvBuffer[0][0]); |
| 108 | printk("RcvBufferB = %p\n", lp->RcvBuffer[1][0]); |
Ralf Baechle | b77eb35 | 2007-10-14 14:13:58 +0100 | [diff] [blame] | 109 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 110 | for (i = 0; i < LAN_SAA9730_BUFFERS; i++) { |
| 111 | for (j = 0; j < LAN_SAA9730_TXM_Q_SIZE; j++) { |
| 112 | printk("TxmBuffer[%d][%d] = %x\n", i, j, |
| 113 | le32_to_cpu(*(unsigned int *) |
| 114 | lp->TxmBuffer[i][j])); |
| 115 | } |
| 116 | } |
| 117 | for (i = 0; i < LAN_SAA9730_BUFFERS; i++) { |
| 118 | for (j = 0; j < LAN_SAA9730_RCV_Q_SIZE; j++) { |
| 119 | printk("RcvBuffer[%d][%d] = %x\n", i, j, |
| 120 | le32_to_cpu(*(unsigned int *) |
| 121 | lp->RcvBuffer[i][j])); |
| 122 | } |
| 123 | } |
| 124 | printk("lp->evm_saa9730_regs->InterruptBlock1 = %x\n", |
Ralf Baechle | 05d9c84 | 2005-11-09 17:10:05 +0000 | [diff] [blame] | 125 | readl(&lp->evm_saa9730_regs->InterruptBlock1)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 126 | printk("lp->evm_saa9730_regs->InterruptStatus1 = %x\n", |
Ralf Baechle | 05d9c84 | 2005-11-09 17:10:05 +0000 | [diff] [blame] | 127 | readl(&lp->evm_saa9730_regs->InterruptStatus1)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 128 | printk("lp->evm_saa9730_regs->InterruptEnable1 = %x\n", |
Ralf Baechle | 05d9c84 | 2005-11-09 17:10:05 +0000 | [diff] [blame] | 129 | readl(&lp->evm_saa9730_regs->InterruptEnable1)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 130 | printk("lp->lan_saa9730_regs->Ok2Use = %x\n", |
Ralf Baechle | 05d9c84 | 2005-11-09 17:10:05 +0000 | [diff] [blame] | 131 | readl(&lp->lan_saa9730_regs->Ok2Use)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 132 | printk("lp->NextTxmBufferIndex = %x\n", lp->NextTxmBufferIndex); |
| 133 | printk("lp->NextTxmPacketIndex = %x\n", lp->NextTxmPacketIndex); |
| 134 | printk("lp->PendingTxmBufferIndex = %x\n", |
| 135 | lp->PendingTxmBufferIndex); |
| 136 | printk("lp->PendingTxmPacketIndex = %x\n", |
| 137 | lp->PendingTxmPacketIndex); |
| 138 | printk("lp->lan_saa9730_regs->LanDmaCtl = %x\n", |
Ralf Baechle | 05d9c84 | 2005-11-09 17:10:05 +0000 | [diff] [blame] | 139 | readl(&lp->lan_saa9730_regs->LanDmaCtl)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 140 | printk("lp->lan_saa9730_regs->DmaStatus = %x\n", |
Ralf Baechle | 05d9c84 | 2005-11-09 17:10:05 +0000 | [diff] [blame] | 141 | readl(&lp->lan_saa9730_regs->DmaStatus)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 142 | printk("lp->lan_saa9730_regs->CamCtl = %x\n", |
Ralf Baechle | 05d9c84 | 2005-11-09 17:10:05 +0000 | [diff] [blame] | 143 | readl(&lp->lan_saa9730_regs->CamCtl)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 144 | printk("lp->lan_saa9730_regs->TxCtl = %x\n", |
Ralf Baechle | 05d9c84 | 2005-11-09 17:10:05 +0000 | [diff] [blame] | 145 | readl(&lp->lan_saa9730_regs->TxCtl)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 146 | printk("lp->lan_saa9730_regs->TxStatus = %x\n", |
Ralf Baechle | 05d9c84 | 2005-11-09 17:10:05 +0000 | [diff] [blame] | 147 | readl(&lp->lan_saa9730_regs->TxStatus)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 148 | printk("lp->lan_saa9730_regs->RxCtl = %x\n", |
Ralf Baechle | 05d9c84 | 2005-11-09 17:10:05 +0000 | [diff] [blame] | 149 | readl(&lp->lan_saa9730_regs->RxCtl)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 150 | printk("lp->lan_saa9730_regs->RxStatus = %x\n", |
Ralf Baechle | 05d9c84 | 2005-11-09 17:10:05 +0000 | [diff] [blame] | 151 | readl(&lp->lan_saa9730_regs->RxStatus)); |
Ralf Baechle | b77eb35 | 2007-10-14 14:13:58 +0100 | [diff] [blame] | 152 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 153 | for (i = 0; i < LAN_SAA9730_CAM_DWORDS; i++) { |
Ralf Baechle | 69a43ac | 2007-03-20 12:40:09 +0000 | [diff] [blame] | 154 | writel(i, &lp->lan_saa9730_regs->CamAddress); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 155 | printk("lp->lan_saa9730_regs->CamData = %x\n", |
Ralf Baechle | 05d9c84 | 2005-11-09 17:10:05 +0000 | [diff] [blame] | 156 | readl(&lp->lan_saa9730_regs->CamData)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 157 | } |
Ralf Baechle | b77eb35 | 2007-10-14 14:13:58 +0100 | [diff] [blame] | 158 | |
Jeff Garzik | 09f75cd | 2007-10-03 17:41:50 -0700 | [diff] [blame] | 159 | printk("dev->stats.tx_packets = %lx\n", dev->stats.tx_packets); |
| 160 | printk("dev->stats.tx_errors = %lx\n", dev->stats.tx_errors); |
| 161 | printk("dev->stats.tx_aborted_errors = %lx\n", |
| 162 | dev->stats.tx_aborted_errors); |
| 163 | printk("dev->stats.tx_window_errors = %lx\n", |
| 164 | dev->stats.tx_window_errors); |
| 165 | printk("dev->stats.tx_carrier_errors = %lx\n", |
| 166 | dev->stats.tx_carrier_errors); |
| 167 | printk("dev->stats.tx_fifo_errors = %lx\n", |
| 168 | dev->stats.tx_fifo_errors); |
| 169 | printk("dev->stats.tx_heartbeat_errors = %lx\n", |
| 170 | dev->stats.tx_heartbeat_errors); |
| 171 | printk("dev->stats.collisions = %lx\n", dev->stats.collisions); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 172 | |
Jeff Garzik | 09f75cd | 2007-10-03 17:41:50 -0700 | [diff] [blame] | 173 | printk("dev->stats.rx_packets = %lx\n", dev->stats.rx_packets); |
| 174 | printk("dev->stats.rx_errors = %lx\n", dev->stats.rx_errors); |
| 175 | printk("dev->stats.rx_dropped = %lx\n", dev->stats.rx_dropped); |
| 176 | printk("dev->stats.rx_crc_errors = %lx\n", dev->stats.rx_crc_errors); |
| 177 | printk("dev->stats.rx_frame_errors = %lx\n", |
| 178 | dev->stats.rx_frame_errors); |
| 179 | printk("dev->stats.rx_fifo_errors = %lx\n", |
| 180 | dev->stats.rx_fifo_errors); |
| 181 | printk("dev->stats.rx_length_errors = %lx\n", |
| 182 | dev->stats.rx_length_errors); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 183 | |
| 184 | printk("lp->lan_saa9730_regs->DebugPCIMasterAddr = %x\n", |
Ralf Baechle | 05d9c84 | 2005-11-09 17:10:05 +0000 | [diff] [blame] | 185 | readl(&lp->lan_saa9730_regs->DebugPCIMasterAddr)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 186 | printk("lp->lan_saa9730_regs->DebugLanTxStateMachine = %x\n", |
Ralf Baechle | 05d9c84 | 2005-11-09 17:10:05 +0000 | [diff] [blame] | 187 | readl(&lp->lan_saa9730_regs->DebugLanTxStateMachine)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 188 | printk("lp->lan_saa9730_regs->DebugLanRxStateMachine = %x\n", |
Ralf Baechle | 05d9c84 | 2005-11-09 17:10:05 +0000 | [diff] [blame] | 189 | readl(&lp->lan_saa9730_regs->DebugLanRxStateMachine)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 190 | printk("lp->lan_saa9730_regs->DebugLanTxFifoPointers = %x\n", |
Ralf Baechle | 05d9c84 | 2005-11-09 17:10:05 +0000 | [diff] [blame] | 191 | readl(&lp->lan_saa9730_regs->DebugLanTxFifoPointers)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 192 | printk("lp->lan_saa9730_regs->DebugLanRxFifoPointers = %x\n", |
Ralf Baechle | 05d9c84 | 2005-11-09 17:10:05 +0000 | [diff] [blame] | 193 | readl(&lp->lan_saa9730_regs->DebugLanRxFifoPointers)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 194 | printk("lp->lan_saa9730_regs->DebugLanCtlStateMachine = %x\n", |
Ralf Baechle | 05d9c84 | 2005-11-09 17:10:05 +0000 | [diff] [blame] | 195 | readl(&lp->lan_saa9730_regs->DebugLanCtlStateMachine)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 196 | } |
| 197 | |
| 198 | static void lan_saa9730_buffer_init(struct lan_saa9730_private *lp) |
| 199 | { |
| 200 | int i, j; |
| 201 | |
| 202 | /* Init RX buffers */ |
| 203 | for (i = 0; i < LAN_SAA9730_BUFFERS; i++) { |
| 204 | for (j = 0; j < LAN_SAA9730_RCV_Q_SIZE; j++) { |
| 205 | *(unsigned int *) lp->RcvBuffer[i][j] = |
| 206 | cpu_to_le32(RXSF_READY << |
| 207 | RX_STAT_CTL_OWNER_SHF); |
| 208 | } |
| 209 | } |
| 210 | |
| 211 | /* Init TX buffers */ |
| 212 | for (i = 0; i < LAN_SAA9730_BUFFERS; i++) { |
| 213 | for (j = 0; j < LAN_SAA9730_TXM_Q_SIZE; j++) { |
| 214 | *(unsigned int *) lp->TxmBuffer[i][j] = |
| 215 | cpu_to_le32(TXSF_EMPTY << |
| 216 | TX_STAT_CTL_OWNER_SHF); |
| 217 | } |
| 218 | } |
| 219 | } |
| 220 | |
Ralf Baechle | 05d9c84 | 2005-11-09 17:10:05 +0000 | [diff] [blame] | 221 | static void lan_saa9730_free_buffers(struct pci_dev *pdev, |
| 222 | struct lan_saa9730_private *lp) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 223 | { |
Ralf Baechle | 05d9c84 | 2005-11-09 17:10:05 +0000 | [diff] [blame] | 224 | pci_free_consistent(pdev, lp->buffer_size, lp->buffer_start, |
| 225 | lp->dma_addr); |
| 226 | } |
| 227 | |
| 228 | static int lan_saa9730_allocate_buffers(struct pci_dev *pdev, |
| 229 | struct lan_saa9730_private *lp) |
| 230 | { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 231 | void *Pa; |
Ralf Baechle | 05d9c84 | 2005-11-09 17:10:05 +0000 | [diff] [blame] | 232 | unsigned int i, j, rxoffset, txoffset; |
| 233 | int ret; |
| 234 | |
| 235 | /* Initialize buffer space */ |
| 236 | lp->DmaRcvPackets = LAN_SAA9730_RCV_Q_SIZE; |
| 237 | lp->DmaTxmPackets = LAN_SAA9730_TXM_Q_SIZE; |
| 238 | |
| 239 | /* Initialize Rx Buffer Index */ |
| 240 | lp->NextRcvPacketIndex = 0; |
| 241 | lp->NextRcvBufferIndex = 0; |
| 242 | |
| 243 | /* Set current buffer index & next available packet index */ |
| 244 | lp->NextTxmPacketIndex = 0; |
| 245 | lp->NextTxmBufferIndex = 0; |
| 246 | lp->PendingTxmPacketIndex = 0; |
| 247 | lp->PendingTxmBufferIndex = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 248 | |
Ralf Baechle | 62ff0d0 | 2005-11-09 16:44:02 +0000 | [diff] [blame] | 249 | /* |
| 250 | * Allocate all RX and TX packets in one chunk. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 251 | * The Rx and Tx packets must be PACKET_SIZE aligned. |
| 252 | */ |
Ralf Baechle | 05d9c84 | 2005-11-09 17:10:05 +0000 | [diff] [blame] | 253 | lp->buffer_size = ((LAN_SAA9730_RCV_Q_SIZE + LAN_SAA9730_TXM_Q_SIZE) * |
| 254 | LAN_SAA9730_PACKET_SIZE * LAN_SAA9730_BUFFERS) + |
| 255 | LAN_SAA9730_PACKET_SIZE; |
| 256 | lp->buffer_start = pci_alloc_consistent(pdev, lp->buffer_size, |
| 257 | &lp->dma_addr); |
| 258 | if (!lp->buffer_start) { |
| 259 | ret = -ENOMEM; |
| 260 | goto out; |
| 261 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 262 | |
Ralf Baechle | 05d9c84 | 2005-11-09 17:10:05 +0000 | [diff] [blame] | 263 | Pa = (void *)ALIGN((unsigned long)lp->buffer_start, |
| 264 | LAN_SAA9730_PACKET_SIZE); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 265 | |
Ralf Baechle | 05d9c84 | 2005-11-09 17:10:05 +0000 | [diff] [blame] | 266 | rxoffset = Pa - lp->buffer_start; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 267 | |
| 268 | /* Init RX buffers */ |
| 269 | for (i = 0; i < LAN_SAA9730_BUFFERS; i++) { |
| 270 | for (j = 0; j < LAN_SAA9730_RCV_Q_SIZE; j++) { |
| 271 | *(unsigned int *) Pa = |
| 272 | cpu_to_le32(RXSF_READY << |
| 273 | RX_STAT_CTL_OWNER_SHF); |
Ralf Baechle | 05d9c84 | 2005-11-09 17:10:05 +0000 | [diff] [blame] | 274 | lp->RcvBuffer[i][j] = Pa; |
| 275 | Pa += LAN_SAA9730_PACKET_SIZE; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 276 | } |
| 277 | } |
| 278 | |
Ralf Baechle | 05d9c84 | 2005-11-09 17:10:05 +0000 | [diff] [blame] | 279 | txoffset = Pa - lp->buffer_start; |
| 280 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 281 | /* Init TX buffers */ |
| 282 | for (i = 0; i < LAN_SAA9730_BUFFERS; i++) { |
| 283 | for (j = 0; j < LAN_SAA9730_TXM_Q_SIZE; j++) { |
| 284 | *(unsigned int *) Pa = |
| 285 | cpu_to_le32(TXSF_EMPTY << |
| 286 | TX_STAT_CTL_OWNER_SHF); |
Ralf Baechle | 05d9c84 | 2005-11-09 17:10:05 +0000 | [diff] [blame] | 287 | lp->TxmBuffer[i][j] = Pa; |
| 288 | Pa += LAN_SAA9730_PACKET_SIZE; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 289 | } |
| 290 | } |
| 291 | |
Ralf Baechle | 62ff0d0 | 2005-11-09 16:44:02 +0000 | [diff] [blame] | 292 | /* |
| 293 | * Set rx buffer A and rx buffer B to point to the first two buffer |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 294 | * spaces. |
| 295 | */ |
Ralf Baechle | 69a43ac | 2007-03-20 12:40:09 +0000 | [diff] [blame] | 296 | writel(lp->dma_addr + rxoffset, &lp->lan_saa9730_regs->RxBuffA); |
| 297 | writel(lp->dma_addr + rxoffset + |
| 298 | LAN_SAA9730_PACKET_SIZE * LAN_SAA9730_RCV_Q_SIZE, |
| 299 | &lp->lan_saa9730_regs->RxBuffB); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 300 | |
Ralf Baechle | 62ff0d0 | 2005-11-09 16:44:02 +0000 | [diff] [blame] | 301 | /* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 302 | * Set txm_buf_a and txm_buf_b to point to the first two buffer |
Ralf Baechle | 62ff0d0 | 2005-11-09 16:44:02 +0000 | [diff] [blame] | 303 | * space |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 304 | */ |
Ralf Baechle | 69a43ac | 2007-03-20 12:40:09 +0000 | [diff] [blame] | 305 | writel(lp->dma_addr + txoffset, |
| 306 | &lp->lan_saa9730_regs->TxBuffA); |
| 307 | writel(lp->dma_addr + txoffset + |
| 308 | LAN_SAA9730_PACKET_SIZE * LAN_SAA9730_TXM_Q_SIZE, |
| 309 | &lp->lan_saa9730_regs->TxBuffB); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 310 | |
| 311 | /* Set packet number */ |
Ralf Baechle | 69a43ac | 2007-03-20 12:40:09 +0000 | [diff] [blame] | 312 | writel((lp->DmaRcvPackets << PK_COUNT_RX_A_SHF) | |
| 313 | (lp->DmaRcvPackets << PK_COUNT_RX_B_SHF) | |
| 314 | (lp->DmaTxmPackets << PK_COUNT_TX_A_SHF) | |
| 315 | (lp->DmaTxmPackets << PK_COUNT_TX_B_SHF), |
| 316 | &lp->lan_saa9730_regs->PacketCount); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 317 | |
| 318 | return 0; |
Ralf Baechle | 05d9c84 | 2005-11-09 17:10:05 +0000 | [diff] [blame] | 319 | |
| 320 | out: |
| 321 | return ret; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 322 | } |
| 323 | |
| 324 | static int lan_saa9730_cam_load(struct lan_saa9730_private *lp) |
| 325 | { |
| 326 | unsigned int i; |
| 327 | unsigned char *NetworkAddress; |
| 328 | |
| 329 | NetworkAddress = (unsigned char *) &lp->PhysicalAddress[0][0]; |
| 330 | |
| 331 | for (i = 0; i < LAN_SAA9730_CAM_DWORDS; i++) { |
| 332 | /* First set address to where data is written */ |
Ralf Baechle | 69a43ac | 2007-03-20 12:40:09 +0000 | [diff] [blame] | 333 | writel(i, &lp->lan_saa9730_regs->CamAddress); |
| 334 | writel((NetworkAddress[0] << 24) | (NetworkAddress[1] << 16) | |
| 335 | (NetworkAddress[2] << 8) | NetworkAddress[3], |
| 336 | &lp->lan_saa9730_regs->CamData); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 337 | NetworkAddress += 4; |
| 338 | } |
| 339 | return 0; |
| 340 | } |
| 341 | |
| 342 | static int lan_saa9730_cam_init(struct net_device *dev) |
| 343 | { |
Ralf Baechle | 05d9c84 | 2005-11-09 17:10:05 +0000 | [diff] [blame] | 344 | struct lan_saa9730_private *lp = netdev_priv(dev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 345 | unsigned int i; |
| 346 | |
| 347 | /* Copy MAC-address into all entries. */ |
| 348 | for (i = 0; i < LAN_SAA9730_CAM_ENTRIES; i++) { |
| 349 | memcpy((unsigned char *) lp->PhysicalAddress[i], |
| 350 | (unsigned char *) dev->dev_addr, 6); |
| 351 | } |
| 352 | |
| 353 | return 0; |
| 354 | } |
| 355 | |
| 356 | static int lan_saa9730_mii_init(struct lan_saa9730_private *lp) |
| 357 | { |
| 358 | int i, l; |
| 359 | |
| 360 | /* Check link status, spin here till station is not busy. */ |
| 361 | i = 0; |
Ralf Baechle | 05d9c84 | 2005-11-09 17:10:05 +0000 | [diff] [blame] | 362 | while (readl(&lp->lan_saa9730_regs->StationMgmtCtl) & MD_CA_BUSY) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 363 | i++; |
| 364 | if (i > 100) { |
| 365 | printk("Error: lan_saa9730_mii_init: timeout\n"); |
| 366 | return -1; |
| 367 | } |
| 368 | mdelay(1); /* wait 1 ms. */ |
| 369 | } |
| 370 | |
| 371 | /* Now set the control and address register. */ |
Ralf Baechle | 69a43ac | 2007-03-20 12:40:09 +0000 | [diff] [blame] | 372 | writel(MD_CA_BUSY | PHY_STATUS | PHY_ADDRESS << MD_CA_PHY_SHF, |
| 373 | &lp->lan_saa9730_regs->StationMgmtCtl); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 374 | |
| 375 | /* check link status, spin here till station is not busy */ |
| 376 | i = 0; |
Ralf Baechle | 05d9c84 | 2005-11-09 17:10:05 +0000 | [diff] [blame] | 377 | while (readl(&lp->lan_saa9730_regs->StationMgmtCtl) & MD_CA_BUSY) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 378 | i++; |
| 379 | if (i > 100) { |
| 380 | printk("Error: lan_saa9730_mii_init: timeout\n"); |
| 381 | return -1; |
| 382 | } |
| 383 | mdelay(1); /* wait 1 ms. */ |
| 384 | } |
| 385 | |
| 386 | /* Wait for 1 ms. */ |
| 387 | mdelay(1); |
| 388 | |
| 389 | /* Check the link status. */ |
Ralf Baechle | 05d9c84 | 2005-11-09 17:10:05 +0000 | [diff] [blame] | 390 | if (readl(&lp->lan_saa9730_regs->StationMgmtData) & |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 391 | PHY_STATUS_LINK_UP) { |
| 392 | /* Link is up. */ |
| 393 | return 0; |
| 394 | } else { |
| 395 | /* Link is down, reset the PHY first. */ |
| 396 | |
| 397 | /* set PHY address = 'CONTROL' */ |
Ralf Baechle | 69a43ac | 2007-03-20 12:40:09 +0000 | [diff] [blame] | 398 | writel(PHY_ADDRESS << MD_CA_PHY_SHF | MD_CA_WR | PHY_CONTROL, |
| 399 | &lp->lan_saa9730_regs->StationMgmtCtl); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 400 | |
| 401 | /* Wait for 1 ms. */ |
| 402 | mdelay(1); |
| 403 | |
| 404 | /* set 'CONTROL' = force reset and renegotiate */ |
Ralf Baechle | 69a43ac | 2007-03-20 12:40:09 +0000 | [diff] [blame] | 405 | writel(PHY_CONTROL_RESET | PHY_CONTROL_AUTO_NEG | |
| 406 | PHY_CONTROL_RESTART_AUTO_NEG, |
| 407 | &lp->lan_saa9730_regs->StationMgmtData); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 408 | |
| 409 | /* Wait for 50 ms. */ |
| 410 | mdelay(50); |
| 411 | |
| 412 | /* set 'BUSY' to start operation */ |
Ralf Baechle | 69a43ac | 2007-03-20 12:40:09 +0000 | [diff] [blame] | 413 | writel(MD_CA_BUSY | PHY_ADDRESS << MD_CA_PHY_SHF | MD_CA_WR | |
| 414 | PHY_CONTROL, &lp->lan_saa9730_regs->StationMgmtCtl); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 415 | |
| 416 | /* await completion */ |
| 417 | i = 0; |
Ralf Baechle | 05d9c84 | 2005-11-09 17:10:05 +0000 | [diff] [blame] | 418 | while (readl(&lp->lan_saa9730_regs->StationMgmtCtl) & |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 419 | MD_CA_BUSY) { |
| 420 | i++; |
| 421 | if (i > 100) { |
| 422 | printk |
| 423 | ("Error: lan_saa9730_mii_init: timeout\n"); |
| 424 | return -1; |
| 425 | } |
| 426 | mdelay(1); /* wait 1 ms. */ |
| 427 | } |
| 428 | |
| 429 | /* Wait for 1 ms. */ |
| 430 | mdelay(1); |
| 431 | |
| 432 | for (l = 0; l < 2; l++) { |
| 433 | /* set PHY address = 'STATUS' */ |
Ralf Baechle | 69a43ac | 2007-03-20 12:40:09 +0000 | [diff] [blame] | 434 | writel(MD_CA_BUSY | PHY_ADDRESS << MD_CA_PHY_SHF | |
| 435 | PHY_STATUS, |
| 436 | &lp->lan_saa9730_regs->StationMgmtCtl); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 437 | |
| 438 | /* await completion */ |
| 439 | i = 0; |
Ralf Baechle | 05d9c84 | 2005-11-09 17:10:05 +0000 | [diff] [blame] | 440 | while (readl(&lp->lan_saa9730_regs->StationMgmtCtl) & |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 441 | MD_CA_BUSY) { |
| 442 | i++; |
| 443 | if (i > 100) { |
| 444 | printk |
| 445 | ("Error: lan_saa9730_mii_init: timeout\n"); |
| 446 | return -1; |
| 447 | } |
| 448 | mdelay(1); /* wait 1 ms. */ |
| 449 | } |
| 450 | |
| 451 | /* wait for 3 sec. */ |
| 452 | mdelay(3000); |
| 453 | |
| 454 | /* check the link status */ |
Ralf Baechle | 05d9c84 | 2005-11-09 17:10:05 +0000 | [diff] [blame] | 455 | if (readl(&lp->lan_saa9730_regs->StationMgmtData) & |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 456 | PHY_STATUS_LINK_UP) { |
| 457 | /* link is up */ |
| 458 | break; |
| 459 | } |
| 460 | } |
| 461 | } |
| 462 | |
| 463 | return 0; |
| 464 | } |
| 465 | |
| 466 | static int lan_saa9730_control_init(struct lan_saa9730_private *lp) |
| 467 | { |
| 468 | /* Initialize DMA control register. */ |
Ralf Baechle | 69a43ac | 2007-03-20 12:40:09 +0000 | [diff] [blame] | 469 | writel((LANMB_ANY << DMA_CTL_MAX_XFER_SHF) | |
| 470 | (LANEND_LITTLE << DMA_CTL_ENDIAN_SHF) | |
| 471 | (LAN_SAA9730_RCV_Q_INT_THRESHOLD << DMA_CTL_RX_INT_COUNT_SHF) |
| 472 | | DMA_CTL_RX_INT_TO_EN | DMA_CTL_RX_INT_EN | |
| 473 | DMA_CTL_MAC_RX_INT_EN | DMA_CTL_MAC_TX_INT_EN, |
| 474 | &lp->lan_saa9730_regs->LanDmaCtl); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 475 | |
| 476 | /* Initial MAC control register. */ |
Ralf Baechle | 69a43ac | 2007-03-20 12:40:09 +0000 | [diff] [blame] | 477 | writel((MACCM_MII << MAC_CONTROL_CONN_SHF) | MAC_CONTROL_FULL_DUP, |
| 478 | &lp->lan_saa9730_regs->MacCtl); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 479 | |
| 480 | /* Initialize CAM control register. */ |
Ralf Baechle | 69a43ac | 2007-03-20 12:40:09 +0000 | [diff] [blame] | 481 | writel(CAM_CONTROL_COMP_EN | CAM_CONTROL_BROAD_ACC, |
| 482 | &lp->lan_saa9730_regs->CamCtl); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 483 | |
Ralf Baechle | 62ff0d0 | 2005-11-09 16:44:02 +0000 | [diff] [blame] | 484 | /* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 485 | * Initialize CAM enable register, only turn on first entry, should |
Ralf Baechle | 62ff0d0 | 2005-11-09 16:44:02 +0000 | [diff] [blame] | 486 | * contain own addr. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 487 | */ |
Ralf Baechle | 69a43ac | 2007-03-20 12:40:09 +0000 | [diff] [blame] | 488 | writel(0x0001, &lp->lan_saa9730_regs->CamEnable); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 489 | |
| 490 | /* Initialize Tx control register */ |
Ralf Baechle | 69a43ac | 2007-03-20 12:40:09 +0000 | [diff] [blame] | 491 | writel(TX_CTL_EN_COMP, &lp->lan_saa9730_regs->TxCtl); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 492 | |
| 493 | /* Initialize Rcv control register */ |
Ralf Baechle | 69a43ac | 2007-03-20 12:40:09 +0000 | [diff] [blame] | 494 | writel(RX_CTL_STRIP_CRC, &lp->lan_saa9730_regs->RxCtl); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 495 | |
| 496 | /* Reset DMA engine */ |
Ralf Baechle | 69a43ac | 2007-03-20 12:40:09 +0000 | [diff] [blame] | 497 | writel(DMA_TEST_SW_RESET, &lp->lan_saa9730_regs->DmaTest); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 498 | |
| 499 | return 0; |
| 500 | } |
| 501 | |
| 502 | static int lan_saa9730_stop(struct lan_saa9730_private *lp) |
| 503 | { |
| 504 | int i; |
| 505 | |
| 506 | /* Stop DMA first */ |
Ralf Baechle | 69a43ac | 2007-03-20 12:40:09 +0000 | [diff] [blame] | 507 | writel(readl(&lp->lan_saa9730_regs->LanDmaCtl) & |
| 508 | ~(DMA_CTL_EN_TX_DMA | DMA_CTL_EN_RX_DMA), |
| 509 | &lp->lan_saa9730_regs->LanDmaCtl); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 510 | |
| 511 | /* Set the SW Reset bits in DMA and MAC control registers */ |
Ralf Baechle | 69a43ac | 2007-03-20 12:40:09 +0000 | [diff] [blame] | 512 | writel(DMA_TEST_SW_RESET, &lp->lan_saa9730_regs->DmaTest); |
| 513 | writel(readl(&lp->lan_saa9730_regs->MacCtl) | MAC_CONTROL_RESET, |
| 514 | &lp->lan_saa9730_regs->MacCtl); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 515 | |
Ralf Baechle | 62ff0d0 | 2005-11-09 16:44:02 +0000 | [diff] [blame] | 516 | /* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 517 | * Wait for MAC reset to have finished. The reset bit is auto cleared |
| 518 | * when the reset is done. |
| 519 | */ |
| 520 | i = 0; |
Ralf Baechle | 05d9c84 | 2005-11-09 17:10:05 +0000 | [diff] [blame] | 521 | while (readl(&lp->lan_saa9730_regs->MacCtl) & MAC_CONTROL_RESET) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 522 | i++; |
| 523 | if (i > 100) { |
| 524 | printk |
| 525 | ("Error: lan_sa9730_stop: MAC reset timeout\n"); |
| 526 | return -1; |
| 527 | } |
| 528 | mdelay(1); /* wait 1 ms. */ |
| 529 | } |
| 530 | |
| 531 | return 0; |
| 532 | } |
| 533 | |
| 534 | static int lan_saa9730_dma_init(struct lan_saa9730_private *lp) |
| 535 | { |
| 536 | /* Stop lan controller. */ |
| 537 | lan_saa9730_stop(lp); |
| 538 | |
Ralf Baechle | 69a43ac | 2007-03-20 12:40:09 +0000 | [diff] [blame] | 539 | writel(LAN_SAA9730_DEFAULT_TIME_OUT_CNT, |
| 540 | &lp->lan_saa9730_regs->Timeout); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 541 | |
| 542 | return 0; |
| 543 | } |
| 544 | |
| 545 | static int lan_saa9730_start(struct lan_saa9730_private *lp) |
| 546 | { |
| 547 | lan_saa9730_buffer_init(lp); |
| 548 | |
| 549 | /* Initialize Rx Buffer Index */ |
| 550 | lp->NextRcvPacketIndex = 0; |
Ralf Baechle | 05d9c84 | 2005-11-09 17:10:05 +0000 | [diff] [blame] | 551 | lp->NextRcvBufferIndex = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 552 | |
Ralf Baechle | 05d9c84 | 2005-11-09 17:10:05 +0000 | [diff] [blame] | 553 | /* Set current buffer index & next available packet index */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 554 | lp->NextTxmPacketIndex = 0; |
| 555 | lp->NextTxmBufferIndex = 0; |
| 556 | lp->PendingTxmPacketIndex = 0; |
| 557 | lp->PendingTxmBufferIndex = 0; |
| 558 | |
Ralf Baechle | 69a43ac | 2007-03-20 12:40:09 +0000 | [diff] [blame] | 559 | writel(readl(&lp->lan_saa9730_regs->LanDmaCtl) | DMA_CTL_EN_TX_DMA | |
| 560 | DMA_CTL_EN_RX_DMA, &lp->lan_saa9730_regs->LanDmaCtl); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 561 | |
| 562 | /* For Tx, turn on MAC then DMA */ |
Ralf Baechle | 69a43ac | 2007-03-20 12:40:09 +0000 | [diff] [blame] | 563 | writel(readl(&lp->lan_saa9730_regs->TxCtl) | TX_CTL_TX_EN, |
| 564 | &lp->lan_saa9730_regs->TxCtl); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 565 | |
| 566 | /* For Rx, turn on DMA then MAC */ |
Ralf Baechle | 69a43ac | 2007-03-20 12:40:09 +0000 | [diff] [blame] | 567 | writel(readl(&lp->lan_saa9730_regs->RxCtl) | RX_CTL_RX_EN, |
| 568 | &lp->lan_saa9730_regs->RxCtl); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 569 | |
Ralf Baechle | 05d9c84 | 2005-11-09 17:10:05 +0000 | [diff] [blame] | 570 | /* Set Ok2Use to let hardware own the buffers. */ |
Ralf Baechle | 69a43ac | 2007-03-20 12:40:09 +0000 | [diff] [blame] | 571 | writel(OK2USE_RX_A | OK2USE_RX_B, &lp->lan_saa9730_regs->Ok2Use); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 572 | |
| 573 | return 0; |
| 574 | } |
| 575 | |
| 576 | static int lan_saa9730_restart(struct lan_saa9730_private *lp) |
| 577 | { |
| 578 | lan_saa9730_stop(lp); |
| 579 | lan_saa9730_start(lp); |
| 580 | |
| 581 | return 0; |
| 582 | } |
| 583 | |
| 584 | static int lan_saa9730_tx(struct net_device *dev) |
| 585 | { |
Ralf Baechle | 05d9c84 | 2005-11-09 17:10:05 +0000 | [diff] [blame] | 586 | struct lan_saa9730_private *lp = netdev_priv(dev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 587 | unsigned int *pPacket; |
| 588 | unsigned int tx_status; |
| 589 | |
| 590 | if (lan_saa9730_debug > 5) |
| 591 | printk("lan_saa9730_tx interrupt\n"); |
| 592 | |
| 593 | /* Clear interrupt. */ |
Ralf Baechle | 69a43ac | 2007-03-20 12:40:09 +0000 | [diff] [blame] | 594 | writel(DMA_STATUS_MAC_TX_INT, &lp->lan_saa9730_regs->DmaStatus); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 595 | |
| 596 | while (1) { |
Ralf Baechle | 05d9c84 | 2005-11-09 17:10:05 +0000 | [diff] [blame] | 597 | pPacket = lp->TxmBuffer[lp->PendingTxmBufferIndex] |
| 598 | [lp->PendingTxmPacketIndex]; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 599 | |
| 600 | /* Get status of first packet transmitted. */ |
| 601 | tx_status = le32_to_cpu(*pPacket); |
| 602 | |
| 603 | /* Check ownership. */ |
| 604 | if ((tx_status & TX_STAT_CTL_OWNER_MSK) != |
| 605 | (TXSF_HWDONE << TX_STAT_CTL_OWNER_SHF)) break; |
| 606 | |
| 607 | /* Check for error. */ |
| 608 | if (tx_status & TX_STAT_CTL_ERROR_MSK) { |
| 609 | if (lan_saa9730_debug > 1) |
| 610 | printk("lan_saa9730_tx: tx error = %x\n", |
| 611 | tx_status); |
| 612 | |
Jeff Garzik | 09f75cd | 2007-10-03 17:41:50 -0700 | [diff] [blame] | 613 | dev->stats.tx_errors++; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 614 | if (tx_status & |
| 615 | (TX_STATUS_EX_COLL << TX_STAT_CTL_STATUS_SHF)) |
Jeff Garzik | 09f75cd | 2007-10-03 17:41:50 -0700 | [diff] [blame] | 616 | dev->stats.tx_aborted_errors++; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 617 | if (tx_status & |
Ralf Baechle | 05d9c84 | 2005-11-09 17:10:05 +0000 | [diff] [blame] | 618 | (TX_STATUS_LATE_COLL << TX_STAT_CTL_STATUS_SHF)) |
Jeff Garzik | 09f75cd | 2007-10-03 17:41:50 -0700 | [diff] [blame] | 619 | dev->stats.tx_window_errors++; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 620 | if (tx_status & |
| 621 | (TX_STATUS_L_CARR << TX_STAT_CTL_STATUS_SHF)) |
Jeff Garzik | 09f75cd | 2007-10-03 17:41:50 -0700 | [diff] [blame] | 622 | dev->stats.tx_carrier_errors++; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 623 | if (tx_status & |
| 624 | (TX_STATUS_UNDER << TX_STAT_CTL_STATUS_SHF)) |
Jeff Garzik | 09f75cd | 2007-10-03 17:41:50 -0700 | [diff] [blame] | 625 | dev->stats.tx_fifo_errors++; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 626 | if (tx_status & |
| 627 | (TX_STATUS_SQ_ERR << TX_STAT_CTL_STATUS_SHF)) |
Jeff Garzik | 09f75cd | 2007-10-03 17:41:50 -0700 | [diff] [blame] | 628 | dev->stats.tx_heartbeat_errors++; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 629 | |
Jeff Garzik | 09f75cd | 2007-10-03 17:41:50 -0700 | [diff] [blame] | 630 | dev->stats.collisions += |
Ralf Baechle | 05d9c84 | 2005-11-09 17:10:05 +0000 | [diff] [blame] | 631 | tx_status & TX_STATUS_TX_COLL_MSK; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 632 | } |
| 633 | |
| 634 | /* Free buffer. */ |
| 635 | *pPacket = |
| 636 | cpu_to_le32(TXSF_EMPTY << TX_STAT_CTL_OWNER_SHF); |
| 637 | |
| 638 | /* Update pending index pointer. */ |
| 639 | lp->PendingTxmPacketIndex++; |
| 640 | if (lp->PendingTxmPacketIndex >= LAN_SAA9730_TXM_Q_SIZE) { |
| 641 | lp->PendingTxmPacketIndex = 0; |
| 642 | lp->PendingTxmBufferIndex ^= 1; |
| 643 | } |
| 644 | } |
| 645 | |
Ralf Baechle | 05d9c84 | 2005-11-09 17:10:05 +0000 | [diff] [blame] | 646 | /* The tx buffer is no longer full. */ |
| 647 | netif_wake_queue(dev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 648 | |
| 649 | return 0; |
| 650 | } |
| 651 | |
| 652 | static int lan_saa9730_rx(struct net_device *dev) |
| 653 | { |
Ralf Baechle | 05d9c84 | 2005-11-09 17:10:05 +0000 | [diff] [blame] | 654 | struct lan_saa9730_private *lp = netdev_priv(dev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 655 | int len = 0; |
| 656 | struct sk_buff *skb = 0; |
| 657 | unsigned int rx_status; |
| 658 | int BufferIndex; |
| 659 | int PacketIndex; |
| 660 | unsigned int *pPacket; |
| 661 | unsigned char *pData; |
| 662 | |
| 663 | if (lan_saa9730_debug > 5) |
| 664 | printk("lan_saa9730_rx interrupt\n"); |
| 665 | |
| 666 | /* Clear receive interrupts. */ |
Ralf Baechle | 69a43ac | 2007-03-20 12:40:09 +0000 | [diff] [blame] | 667 | writel(DMA_STATUS_MAC_RX_INT | DMA_STATUS_RX_INT | |
| 668 | DMA_STATUS_RX_TO_INT, &lp->lan_saa9730_regs->DmaStatus); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 669 | |
| 670 | /* Address next packet */ |
Ralf Baechle | 05d9c84 | 2005-11-09 17:10:05 +0000 | [diff] [blame] | 671 | BufferIndex = lp->NextRcvBufferIndex; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 672 | PacketIndex = lp->NextRcvPacketIndex; |
Ralf Baechle | 05d9c84 | 2005-11-09 17:10:05 +0000 | [diff] [blame] | 673 | pPacket = lp->RcvBuffer[BufferIndex][PacketIndex]; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 674 | rx_status = le32_to_cpu(*pPacket); |
| 675 | |
| 676 | /* Process each packet. */ |
| 677 | while ((rx_status & RX_STAT_CTL_OWNER_MSK) == |
| 678 | (RXSF_HWDONE << RX_STAT_CTL_OWNER_SHF)) { |
| 679 | /* Check the rx status. */ |
| 680 | if (rx_status & (RX_STATUS_GOOD << RX_STAT_CTL_STATUS_SHF)) { |
| 681 | /* Received packet is good. */ |
| 682 | len = (rx_status & RX_STAT_CTL_LENGTH_MSK) >> |
| 683 | RX_STAT_CTL_LENGTH_SHF; |
| 684 | |
| 685 | pData = (unsigned char *) pPacket; |
| 686 | pData += 4; |
| 687 | skb = dev_alloc_skb(len + 2); |
| 688 | if (skb == 0) { |
| 689 | printk |
| 690 | ("%s: Memory squeeze, deferring packet.\n", |
| 691 | dev->name); |
Jeff Garzik | 09f75cd | 2007-10-03 17:41:50 -0700 | [diff] [blame] | 692 | dev->stats.rx_dropped++; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 693 | } else { |
Jeff Garzik | 09f75cd | 2007-10-03 17:41:50 -0700 | [diff] [blame] | 694 | dev->stats.rx_bytes += len; |
| 695 | dev->stats.rx_packets++; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 696 | skb_reserve(skb, 2); /* 16 byte align */ |
| 697 | skb_put(skb, len); /* make room */ |
David S. Miller | 8c7b7fa | 2007-07-10 22:08:12 -0700 | [diff] [blame] | 698 | skb_copy_to_linear_data(skb, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 699 | (unsigned char *) pData, |
David S. Miller | 8c7b7fa | 2007-07-10 22:08:12 -0700 | [diff] [blame] | 700 | len); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 701 | skb->protocol = eth_type_trans(skb, dev); |
| 702 | netif_rx(skb); |
| 703 | dev->last_rx = jiffies; |
| 704 | } |
| 705 | } else { |
| 706 | /* We got an error packet. */ |
| 707 | if (lan_saa9730_debug > 2) |
| 708 | printk |
| 709 | ("lan_saa9730_rx: We got an error packet = %x\n", |
| 710 | rx_status); |
| 711 | |
Jeff Garzik | 09f75cd | 2007-10-03 17:41:50 -0700 | [diff] [blame] | 712 | dev->stats.rx_errors++; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 713 | if (rx_status & |
| 714 | (RX_STATUS_CRC_ERR << RX_STAT_CTL_STATUS_SHF)) |
Jeff Garzik | 09f75cd | 2007-10-03 17:41:50 -0700 | [diff] [blame] | 715 | dev->stats.rx_crc_errors++; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 716 | if (rx_status & |
Ralf Baechle | 05d9c84 | 2005-11-09 17:10:05 +0000 | [diff] [blame] | 717 | (RX_STATUS_ALIGN_ERR << RX_STAT_CTL_STATUS_SHF)) |
Jeff Garzik | 09f75cd | 2007-10-03 17:41:50 -0700 | [diff] [blame] | 718 | dev->stats.rx_frame_errors++; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 719 | if (rx_status & |
| 720 | (RX_STATUS_OVERFLOW << RX_STAT_CTL_STATUS_SHF)) |
Jeff Garzik | 09f75cd | 2007-10-03 17:41:50 -0700 | [diff] [blame] | 721 | dev->stats.rx_fifo_errors++; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 722 | if (rx_status & |
| 723 | (RX_STATUS_LONG_ERR << RX_STAT_CTL_STATUS_SHF)) |
Jeff Garzik | 09f75cd | 2007-10-03 17:41:50 -0700 | [diff] [blame] | 724 | dev->stats.rx_length_errors++; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 725 | } |
| 726 | |
| 727 | /* Indicate we have processed the buffer. */ |
Ralf Baechle | 05d9c84 | 2005-11-09 17:10:05 +0000 | [diff] [blame] | 728 | *pPacket = cpu_to_le32(RXSF_READY << RX_STAT_CTL_OWNER_SHF); |
| 729 | |
| 730 | /* Make sure A or B is available to hardware as appropriate. */ |
Ralf Baechle | 69a43ac | 2007-03-20 12:40:09 +0000 | [diff] [blame] | 731 | writel(BufferIndex ? OK2USE_RX_B : OK2USE_RX_A, |
| 732 | &lp->lan_saa9730_regs->Ok2Use); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 733 | |
| 734 | /* Go to next packet in sequence. */ |
| 735 | lp->NextRcvPacketIndex++; |
| 736 | if (lp->NextRcvPacketIndex >= LAN_SAA9730_RCV_Q_SIZE) { |
| 737 | lp->NextRcvPacketIndex = 0; |
Ralf Baechle | 05d9c84 | 2005-11-09 17:10:05 +0000 | [diff] [blame] | 738 | lp->NextRcvBufferIndex ^= 1; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 739 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 740 | |
| 741 | /* Address next packet */ |
Ralf Baechle | 05d9c84 | 2005-11-09 17:10:05 +0000 | [diff] [blame] | 742 | BufferIndex = lp->NextRcvBufferIndex; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 743 | PacketIndex = lp->NextRcvPacketIndex; |
Ralf Baechle | 05d9c84 | 2005-11-09 17:10:05 +0000 | [diff] [blame] | 744 | pPacket = lp->RcvBuffer[BufferIndex][PacketIndex]; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 745 | rx_status = le32_to_cpu(*pPacket); |
| 746 | } |
| 747 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 748 | return 0; |
| 749 | } |
| 750 | |
David Howells | 7d12e78 | 2006-10-05 14:55:46 +0100 | [diff] [blame] | 751 | static irqreturn_t lan_saa9730_interrupt(const int irq, void *dev_id) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 752 | { |
Jeff Garzik | c31f28e | 2006-10-06 14:56:04 -0400 | [diff] [blame] | 753 | struct net_device *dev = dev_id; |
Ralf Baechle | 05d9c84 | 2005-11-09 17:10:05 +0000 | [diff] [blame] | 754 | struct lan_saa9730_private *lp = netdev_priv(dev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 755 | |
| 756 | if (lan_saa9730_debug > 5) |
| 757 | printk("lan_saa9730_interrupt\n"); |
| 758 | |
| 759 | /* Disable the EVM LAN interrupt. */ |
| 760 | evm_saa9730_block_lan_int(lp); |
| 761 | |
| 762 | /* Clear the EVM LAN interrupt. */ |
| 763 | evm_saa9730_clear_lan_int(lp); |
| 764 | |
| 765 | /* Service pending transmit interrupts. */ |
Ralf Baechle | 05d9c84 | 2005-11-09 17:10:05 +0000 | [diff] [blame] | 766 | if (readl(&lp->lan_saa9730_regs->DmaStatus) & DMA_STATUS_MAC_TX_INT) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 767 | lan_saa9730_tx(dev); |
| 768 | |
| 769 | /* Service pending receive interrupts. */ |
Ralf Baechle | 05d9c84 | 2005-11-09 17:10:05 +0000 | [diff] [blame] | 770 | if (readl(&lp->lan_saa9730_regs->DmaStatus) & |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 771 | (DMA_STATUS_MAC_RX_INT | DMA_STATUS_RX_INT | |
| 772 | DMA_STATUS_RX_TO_INT)) lan_saa9730_rx(dev); |
| 773 | |
| 774 | /* Enable the EVM LAN interrupt. */ |
| 775 | evm_saa9730_unblock_lan_int(lp); |
| 776 | |
| 777 | return IRQ_HANDLED; |
| 778 | } |
| 779 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 780 | static int lan_saa9730_open(struct net_device *dev) |
| 781 | { |
Ralf Baechle | 05d9c84 | 2005-11-09 17:10:05 +0000 | [diff] [blame] | 782 | struct lan_saa9730_private *lp = netdev_priv(dev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 783 | |
| 784 | /* Associate IRQ with lan_saa9730_interrupt */ |
| 785 | if (request_irq(dev->irq, &lan_saa9730_interrupt, 0, "SAA9730 Eth", |
| 786 | dev)) { |
| 787 | printk("lan_saa9730_open: Can't get irq %d\n", dev->irq); |
| 788 | return -EAGAIN; |
| 789 | } |
| 790 | |
| 791 | /* Enable the Lan interrupt in the event manager. */ |
| 792 | evm_saa9730_enable_lan_int(lp); |
| 793 | |
| 794 | /* Start the LAN controller */ |
| 795 | if (lan_saa9730_start(lp)) |
| 796 | return -1; |
| 797 | |
| 798 | netif_start_queue(dev); |
| 799 | |
| 800 | return 0; |
| 801 | } |
| 802 | |
| 803 | static int lan_saa9730_write(struct lan_saa9730_private *lp, |
| 804 | struct sk_buff *skb, int skblen) |
| 805 | { |
| 806 | unsigned char *pbData = skb->data; |
| 807 | unsigned int len = skblen; |
| 808 | unsigned char *pbPacketData; |
| 809 | unsigned int tx_status; |
| 810 | int BufferIndex; |
| 811 | int PacketIndex; |
| 812 | |
| 813 | if (lan_saa9730_debug > 5) |
Ralf Baechle | 05d9c84 | 2005-11-09 17:10:05 +0000 | [diff] [blame] | 814 | printk("lan_saa9730_write: skb=%p\n", skb); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 815 | |
| 816 | BufferIndex = lp->NextTxmBufferIndex; |
| 817 | PacketIndex = lp->NextTxmPacketIndex; |
| 818 | |
Ralf Baechle | 05d9c84 | 2005-11-09 17:10:05 +0000 | [diff] [blame] | 819 | tx_status = le32_to_cpu(*(unsigned int *)lp->TxmBuffer[BufferIndex] |
| 820 | [PacketIndex]); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 821 | if ((tx_status & TX_STAT_CTL_OWNER_MSK) != |
| 822 | (TXSF_EMPTY << TX_STAT_CTL_OWNER_SHF)) { |
| 823 | if (lan_saa9730_debug > 4) |
| 824 | printk |
| 825 | ("lan_saa9730_write: Tx buffer not available: tx_status = %x\n", |
| 826 | tx_status); |
| 827 | return -1; |
| 828 | } |
| 829 | |
| 830 | lp->NextTxmPacketIndex++; |
| 831 | if (lp->NextTxmPacketIndex >= LAN_SAA9730_TXM_Q_SIZE) { |
| 832 | lp->NextTxmPacketIndex = 0; |
| 833 | lp->NextTxmBufferIndex ^= 1; |
| 834 | } |
| 835 | |
Ralf Baechle | 05d9c84 | 2005-11-09 17:10:05 +0000 | [diff] [blame] | 836 | pbPacketData = lp->TxmBuffer[BufferIndex][PacketIndex]; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 837 | pbPacketData += 4; |
| 838 | |
| 839 | /* copy the bits */ |
| 840 | memcpy(pbPacketData, pbData, len); |
| 841 | |
| 842 | /* Set transmit status for hardware */ |
Ralf Baechle | 05d9c84 | 2005-11-09 17:10:05 +0000 | [diff] [blame] | 843 | *(unsigned int *)lp->TxmBuffer[BufferIndex][PacketIndex] = |
| 844 | cpu_to_le32((TXSF_READY << TX_STAT_CTL_OWNER_SHF) | |
| 845 | (TX_STAT_CTL_INT_AFTER_TX << |
| 846 | TX_STAT_CTL_FRAME_SHF) | |
| 847 | (len << TX_STAT_CTL_LENGTH_SHF)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 848 | |
Ralf Baechle | 05d9c84 | 2005-11-09 17:10:05 +0000 | [diff] [blame] | 849 | /* Make sure A or B is available to hardware as appropriate. */ |
Ralf Baechle | 69a43ac | 2007-03-20 12:40:09 +0000 | [diff] [blame] | 850 | writel(BufferIndex ? OK2USE_TX_B : OK2USE_TX_A, |
| 851 | &lp->lan_saa9730_regs->Ok2Use); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 852 | |
| 853 | return 0; |
| 854 | } |
| 855 | |
| 856 | static void lan_saa9730_tx_timeout(struct net_device *dev) |
| 857 | { |
Ralf Baechle | 05d9c84 | 2005-11-09 17:10:05 +0000 | [diff] [blame] | 858 | struct lan_saa9730_private *lp = netdev_priv(dev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 859 | |
| 860 | /* Transmitter timeout, serious problems */ |
Jeff Garzik | 09f75cd | 2007-10-03 17:41:50 -0700 | [diff] [blame] | 861 | dev->stats.tx_errors++; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 862 | printk("%s: transmit timed out, reset\n", dev->name); |
Ralf Baechle | b77eb35 | 2007-10-14 14:13:58 +0100 | [diff] [blame] | 863 | /*show_saa9730_regs(dev); */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 864 | lan_saa9730_restart(lp); |
| 865 | |
| 866 | dev->trans_start = jiffies; |
Ralf Baechle | 05d9c84 | 2005-11-09 17:10:05 +0000 | [diff] [blame] | 867 | netif_wake_queue(dev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 868 | } |
| 869 | |
| 870 | static int lan_saa9730_start_xmit(struct sk_buff *skb, |
| 871 | struct net_device *dev) |
| 872 | { |
Ralf Baechle | 05d9c84 | 2005-11-09 17:10:05 +0000 | [diff] [blame] | 873 | struct lan_saa9730_private *lp = netdev_priv(dev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 874 | unsigned long flags; |
| 875 | int skblen; |
| 876 | int len; |
| 877 | |
| 878 | if (lan_saa9730_debug > 4) |
Ralf Baechle | 05d9c84 | 2005-11-09 17:10:05 +0000 | [diff] [blame] | 879 | printk("Send packet: skb=%p\n", skb); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 880 | |
| 881 | skblen = skb->len; |
| 882 | |
| 883 | spin_lock_irqsave(&lp->lock, flags); |
| 884 | |
| 885 | len = (skblen <= ETH_ZLEN) ? ETH_ZLEN : skblen; |
| 886 | |
| 887 | if (lan_saa9730_write(lp, skb, skblen)) { |
| 888 | spin_unlock_irqrestore(&lp->lock, flags); |
Ralf Baechle | 05d9c84 | 2005-11-09 17:10:05 +0000 | [diff] [blame] | 889 | printk("Error when writing packet to controller: skb=%p\n", skb); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 890 | netif_stop_queue(dev); |
| 891 | return -1; |
| 892 | } |
| 893 | |
Jeff Garzik | 09f75cd | 2007-10-03 17:41:50 -0700 | [diff] [blame] | 894 | dev->stats.tx_bytes += len; |
| 895 | dev->stats.tx_packets++; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 896 | |
| 897 | dev->trans_start = jiffies; |
Ralf Baechle | 05d9c84 | 2005-11-09 17:10:05 +0000 | [diff] [blame] | 898 | netif_wake_queue(dev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 899 | dev_kfree_skb(skb); |
| 900 | |
| 901 | spin_unlock_irqrestore(&lp->lock, flags); |
| 902 | |
| 903 | return 0; |
| 904 | } |
| 905 | |
| 906 | static int lan_saa9730_close(struct net_device *dev) |
| 907 | { |
Ralf Baechle | 05d9c84 | 2005-11-09 17:10:05 +0000 | [diff] [blame] | 908 | struct lan_saa9730_private *lp = netdev_priv(dev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 909 | |
| 910 | if (lan_saa9730_debug > 1) |
| 911 | printk("lan_saa9730_close:\n"); |
| 912 | |
| 913 | netif_stop_queue(dev); |
| 914 | |
| 915 | /* Disable the Lan interrupt in the event manager. */ |
| 916 | evm_saa9730_disable_lan_int(lp); |
| 917 | |
| 918 | /* Stop the controller */ |
| 919 | if (lan_saa9730_stop(lp)) |
| 920 | return -1; |
| 921 | |
| 922 | free_irq(dev->irq, (void *) dev); |
| 923 | |
| 924 | return 0; |
| 925 | } |
| 926 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 927 | static void lan_saa9730_set_multicast(struct net_device *dev) |
| 928 | { |
Ralf Baechle | 05d9c84 | 2005-11-09 17:10:05 +0000 | [diff] [blame] | 929 | struct lan_saa9730_private *lp = netdev_priv(dev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 930 | |
| 931 | /* Stop the controller */ |
| 932 | lan_saa9730_stop(lp); |
| 933 | |
| 934 | if (dev->flags & IFF_PROMISC) { |
| 935 | /* accept all packets */ |
Ralf Baechle | 69a43ac | 2007-03-20 12:40:09 +0000 | [diff] [blame] | 936 | writel(CAM_CONTROL_COMP_EN | CAM_CONTROL_STATION_ACC | |
| 937 | CAM_CONTROL_GROUP_ACC | CAM_CONTROL_BROAD_ACC, |
| 938 | &lp->lan_saa9730_regs->CamCtl); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 939 | } else { |
YOSHIFUJI Hideaki / 吉藤英明 | 82a0244 | 2007-07-17 13:46:00 +0900 | [diff] [blame] | 940 | if (dev->flags & IFF_ALLMULTI || dev->mc_count) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 941 | /* accept all multicast packets */ |
Ralf Baechle | 62ff0d0 | 2005-11-09 16:44:02 +0000 | [diff] [blame] | 942 | /* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 943 | * Will handle the multicast stuff later. -carstenl |
| 944 | */ |
YOSHIFUJI Hideaki / 吉藤英明 | 82a0244 | 2007-07-17 13:46:00 +0900 | [diff] [blame] | 945 | writel(CAM_CONTROL_COMP_EN | CAM_CONTROL_GROUP_ACC | |
| 946 | CAM_CONTROL_BROAD_ACC, |
| 947 | &lp->lan_saa9730_regs->CamCtl); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 948 | } |
| 949 | } |
| 950 | |
| 951 | lan_saa9730_restart(lp); |
| 952 | } |
| 953 | |
| 954 | |
| 955 | static void __devexit saa9730_remove_one(struct pci_dev *pdev) |
| 956 | { |
Ralf Baechle | 62ff0d0 | 2005-11-09 16:44:02 +0000 | [diff] [blame] | 957 | struct net_device *dev = pci_get_drvdata(pdev); |
Ralf Baechle | 05d9c84 | 2005-11-09 17:10:05 +0000 | [diff] [blame] | 958 | struct lan_saa9730_private *lp = netdev_priv(dev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 959 | |
Ralf Baechle | 62ff0d0 | 2005-11-09 16:44:02 +0000 | [diff] [blame] | 960 | if (dev) { |
| 961 | unregister_netdev(dev); |
Ralf Baechle | 05d9c84 | 2005-11-09 17:10:05 +0000 | [diff] [blame] | 962 | lan_saa9730_free_buffers(pdev, lp); |
| 963 | iounmap(lp->lan_saa9730_regs); |
| 964 | iounmap(lp->evm_saa9730_regs); |
Ralf Baechle | 62ff0d0 | 2005-11-09 16:44:02 +0000 | [diff] [blame] | 965 | free_netdev(dev); |
| 966 | pci_release_regions(pdev); |
| 967 | pci_disable_device(pdev); |
| 968 | pci_set_drvdata(pdev, NULL); |
| 969 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 970 | } |
| 971 | |
| 972 | |
Ralf Baechle | 05d9c84 | 2005-11-09 17:10:05 +0000 | [diff] [blame] | 973 | static int lan_saa9730_init(struct net_device *dev, struct pci_dev *pdev, |
| 974 | unsigned long ioaddr, int irq) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 975 | { |
Ralf Baechle | 05d9c84 | 2005-11-09 17:10:05 +0000 | [diff] [blame] | 976 | struct lan_saa9730_private *lp = netdev_priv(dev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 977 | unsigned char ethernet_addr[6]; |
Ralf Baechle | 05d9c84 | 2005-11-09 17:10:05 +0000 | [diff] [blame] | 978 | int ret; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 979 | |
Ralf Baechle | 05d9c84 | 2005-11-09 17:10:05 +0000 | [diff] [blame] | 980 | if (get_ethernet_addr(ethernet_addr)) { |
| 981 | ret = -ENODEV; |
| 982 | goto out; |
| 983 | } |
Ralf Baechle | 62ff0d0 | 2005-11-09 16:44:02 +0000 | [diff] [blame] | 984 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 985 | memcpy(dev->dev_addr, ethernet_addr, 6); |
| 986 | dev->base_addr = ioaddr; |
| 987 | dev->irq = irq; |
Ralf Baechle | 62ff0d0 | 2005-11-09 16:44:02 +0000 | [diff] [blame] | 988 | |
Ralf Baechle | 05d9c84 | 2005-11-09 17:10:05 +0000 | [diff] [blame] | 989 | lp->pci_dev = pdev; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 990 | |
| 991 | /* Set SAA9730 LAN base address. */ |
Ralf Baechle | 05d9c84 | 2005-11-09 17:10:05 +0000 | [diff] [blame] | 992 | lp->lan_saa9730_regs = ioremap(ioaddr + SAA9730_LAN_REGS_ADDR, |
| 993 | SAA9730_LAN_REGS_SIZE); |
| 994 | if (!lp->lan_saa9730_regs) { |
| 995 | ret = -ENOMEM; |
| 996 | goto out; |
| 997 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 998 | |
| 999 | /* Set SAA9730 EVM base address. */ |
Ralf Baechle | 05d9c84 | 2005-11-09 17:10:05 +0000 | [diff] [blame] | 1000 | lp->evm_saa9730_regs = ioremap(ioaddr + SAA9730_EVM_REGS_ADDR, |
| 1001 | SAA9730_EVM_REGS_SIZE); |
| 1002 | if (!lp->evm_saa9730_regs) { |
| 1003 | ret = -ENOMEM; |
| 1004 | goto out_iounmap_lan; |
| 1005 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1006 | |
| 1007 | /* Allocate LAN RX/TX frame buffer space. */ |
Ralf Baechle | 05d9c84 | 2005-11-09 17:10:05 +0000 | [diff] [blame] | 1008 | if ((ret = lan_saa9730_allocate_buffers(pdev, lp))) |
| 1009 | goto out_iounmap; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1010 | |
| 1011 | /* Stop LAN controller. */ |
Ralf Baechle | 62ff0d0 | 2005-11-09 16:44:02 +0000 | [diff] [blame] | 1012 | if ((ret = lan_saa9730_stop(lp))) |
Ralf Baechle | 05d9c84 | 2005-11-09 17:10:05 +0000 | [diff] [blame] | 1013 | goto out_free_consistent; |
Ralf Baechle | 62ff0d0 | 2005-11-09 16:44:02 +0000 | [diff] [blame] | 1014 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1015 | /* Initialize CAM registers. */ |
| 1016 | if ((ret = lan_saa9730_cam_init(dev))) |
Ralf Baechle | 05d9c84 | 2005-11-09 17:10:05 +0000 | [diff] [blame] | 1017 | goto out_free_consistent; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1018 | |
| 1019 | /* Initialize MII registers. */ |
| 1020 | if ((ret = lan_saa9730_mii_init(lp))) |
Ralf Baechle | 05d9c84 | 2005-11-09 17:10:05 +0000 | [diff] [blame] | 1021 | goto out_free_consistent; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1022 | |
| 1023 | /* Initialize control registers. */ |
Ralf Baechle | 62ff0d0 | 2005-11-09 16:44:02 +0000 | [diff] [blame] | 1024 | if ((ret = lan_saa9730_control_init(lp))) |
Ralf Baechle | 05d9c84 | 2005-11-09 17:10:05 +0000 | [diff] [blame] | 1025 | goto out_free_consistent; |
Ralf Baechle | 62ff0d0 | 2005-11-09 16:44:02 +0000 | [diff] [blame] | 1026 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1027 | /* Load CAM registers. */ |
Ralf Baechle | 62ff0d0 | 2005-11-09 16:44:02 +0000 | [diff] [blame] | 1028 | if ((ret = lan_saa9730_cam_load(lp))) |
Ralf Baechle | 05d9c84 | 2005-11-09 17:10:05 +0000 | [diff] [blame] | 1029 | goto out_free_consistent; |
Ralf Baechle | 62ff0d0 | 2005-11-09 16:44:02 +0000 | [diff] [blame] | 1030 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1031 | /* Initialize DMA context registers. */ |
| 1032 | if ((ret = lan_saa9730_dma_init(lp))) |
Ralf Baechle | 05d9c84 | 2005-11-09 17:10:05 +0000 | [diff] [blame] | 1033 | goto out_free_consistent; |
Ralf Baechle | 62ff0d0 | 2005-11-09 16:44:02 +0000 | [diff] [blame] | 1034 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1035 | spin_lock_init(&lp->lock); |
Ralf Baechle | 62ff0d0 | 2005-11-09 16:44:02 +0000 | [diff] [blame] | 1036 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1037 | dev->open = lan_saa9730_open; |
| 1038 | dev->hard_start_xmit = lan_saa9730_start_xmit; |
| 1039 | dev->stop = lan_saa9730_close; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1040 | dev->set_multicast_list = lan_saa9730_set_multicast; |
| 1041 | dev->tx_timeout = lan_saa9730_tx_timeout; |
| 1042 | dev->watchdog_timeo = (HZ >> 1); |
| 1043 | dev->dma = 0; |
Ralf Baechle | 62ff0d0 | 2005-11-09 16:44:02 +0000 | [diff] [blame] | 1044 | |
Ralf Baechle | 05d9c84 | 2005-11-09 17:10:05 +0000 | [diff] [blame] | 1045 | ret = register_netdev (dev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1046 | if (ret) |
Ralf Baechle | 05d9c84 | 2005-11-09 17:10:05 +0000 | [diff] [blame] | 1047 | goto out_free_consistent; |
| 1048 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1049 | return 0; |
| 1050 | |
Ralf Baechle | 05d9c84 | 2005-11-09 17:10:05 +0000 | [diff] [blame] | 1051 | out_free_consistent: |
| 1052 | lan_saa9730_free_buffers(pdev, lp); |
| 1053 | out_iounmap: |
| 1054 | iounmap(lp->evm_saa9730_regs); |
| 1055 | out_iounmap_lan: |
| 1056 | iounmap(lp->lan_saa9730_regs); |
| 1057 | out: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1058 | return ret; |
| 1059 | } |
| 1060 | |
| 1061 | |
| 1062 | static int __devinit saa9730_init_one(struct pci_dev *pdev, const struct pci_device_id *ent) |
| 1063 | { |
Ralf Baechle | 05d9c84 | 2005-11-09 17:10:05 +0000 | [diff] [blame] | 1064 | struct net_device *dev = NULL; |
| 1065 | unsigned long pci_ioaddr; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1066 | int err; |
| 1067 | |
| 1068 | if (lan_saa9730_debug > 1) |
| 1069 | printk("saa9730.c: PCI bios is present, checking for devices...\n"); |
| 1070 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1071 | err = pci_enable_device(pdev); |
Ralf Baechle | 62ff0d0 | 2005-11-09 16:44:02 +0000 | [diff] [blame] | 1072 | if (err) { |
| 1073 | printk(KERN_ERR "Cannot enable PCI device, aborting.\n"); |
Ralf Baechle | 05d9c84 | 2005-11-09 17:10:05 +0000 | [diff] [blame] | 1074 | goto out; |
Ralf Baechle | 62ff0d0 | 2005-11-09 16:44:02 +0000 | [diff] [blame] | 1075 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1076 | |
| 1077 | err = pci_request_regions(pdev, DRV_MODULE_NAME); |
| 1078 | if (err) { |
| 1079 | printk(KERN_ERR "Cannot obtain PCI resources, aborting.\n"); |
Ralf Baechle | 05d9c84 | 2005-11-09 17:10:05 +0000 | [diff] [blame] | 1080 | goto out_disable_pdev; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1081 | } |
| 1082 | |
| 1083 | pci_irq_line = pdev->irq; |
| 1084 | /* LAN base address in located at BAR 1. */ |
| 1085 | |
| 1086 | pci_ioaddr = pci_resource_start(pdev, 1); |
| 1087 | pci_set_master(pdev); |
| 1088 | |
Ralf Baechle | 05d9c84 | 2005-11-09 17:10:05 +0000 | [diff] [blame] | 1089 | printk("Found SAA9730 (PCI) at %lx, irq %d.\n", |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1090 | pci_ioaddr, pci_irq_line); |
| 1091 | |
Ralf Baechle | 05d9c84 | 2005-11-09 17:10:05 +0000 | [diff] [blame] | 1092 | dev = alloc_etherdev(sizeof(struct lan_saa9730_private)); |
| 1093 | if (!dev) |
| 1094 | goto out_disable_pdev; |
| 1095 | |
| 1096 | err = lan_saa9730_init(dev, pdev, pci_ioaddr, pci_irq_line); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1097 | if (err) { |
Ralf Baechle | 05d9c84 | 2005-11-09 17:10:05 +0000 | [diff] [blame] | 1098 | printk("LAN init failed"); |
| 1099 | goto out_free_netdev; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1100 | } |
| 1101 | |
| 1102 | pci_set_drvdata(pdev, dev); |
| 1103 | SET_NETDEV_DEV(dev, &pdev->dev); |
| 1104 | return 0; |
Ralf Baechle | 62ff0d0 | 2005-11-09 16:44:02 +0000 | [diff] [blame] | 1105 | |
Ralf Baechle | 05d9c84 | 2005-11-09 17:10:05 +0000 | [diff] [blame] | 1106 | out_free_netdev: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1107 | free_netdev(dev); |
Ralf Baechle | 05d9c84 | 2005-11-09 17:10:05 +0000 | [diff] [blame] | 1108 | out_disable_pdev: |
| 1109 | pci_disable_device(pdev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1110 | out: |
Ralf Baechle | 05d9c84 | 2005-11-09 17:10:05 +0000 | [diff] [blame] | 1111 | pci_set_drvdata(pdev, NULL); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1112 | return err; |
| 1113 | } |
| 1114 | |
| 1115 | |
| 1116 | static struct pci_driver saa9730_driver = { |
Ralf Baechle | 62ff0d0 | 2005-11-09 16:44:02 +0000 | [diff] [blame] | 1117 | .name = DRV_MODULE_NAME, |
| 1118 | .id_table = saa9730_pci_tbl, |
| 1119 | .probe = saa9730_init_one, |
| 1120 | .remove = __devexit_p(saa9730_remove_one), |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1121 | }; |
| 1122 | |
| 1123 | |
| 1124 | static int __init saa9730_init(void) |
| 1125 | { |
Jeff Garzik | 2991762 | 2006-08-19 17:48:59 -0400 | [diff] [blame] | 1126 | return pci_register_driver(&saa9730_driver); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1127 | } |
| 1128 | |
| 1129 | static void __exit saa9730_cleanup(void) |
| 1130 | { |
Ralf Baechle | 62ff0d0 | 2005-11-09 16:44:02 +0000 | [diff] [blame] | 1131 | pci_unregister_driver(&saa9730_driver); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1132 | } |
| 1133 | |
| 1134 | module_init(saa9730_init); |
| 1135 | module_exit(saa9730_cleanup); |
| 1136 | |
Ralf Baechle | 05d9c84 | 2005-11-09 17:10:05 +0000 | [diff] [blame] | 1137 | MODULE_AUTHOR("Ralf Baechle <ralf@linux-mips.org>"); |
| 1138 | MODULE_DESCRIPTION("Philips SAA9730 ethernet driver"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1139 | MODULE_LICENSE("GPL"); |