aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/net/sky2.c
diff options
context:
space:
mode:
authorshemminger@osdl.org <shemminger@osdl.org>2005-11-30 14:45:15 -0500
committerJeff Garzik <jgarzik@pobox.com>2005-12-01 02:20:20 -0500
commit5a5b1ea026572ac0e5e03d7322deb546d60f9e6e (patch)
tree11b85e1097a755559ffb49cb263129885d7cfdfc /drivers/net/sky2.c
parent13210ce5c06ed9537558b85e9c0df4248b28f1f7 (diff)
[PATCH] sky2: add Yukon-EC ultra support
Add support for Yukon-EC Ultra chip as implemented in SysKonnect's driver version 8.26. Signed-off-by: Stephen Hemminger <shemminger@osdl.org> Signed-off-by: Jeff Garzik <jgarzik@pobox.com>
Diffstat (limited to 'drivers/net/sky2.c')
-rw-r--r--drivers/net/sky2.c27
1 files changed, 26 insertions, 1 deletions
diff --git a/drivers/net/sky2.c b/drivers/net/sky2.c
index e6f71c1232bc..aff347f1ea4b 100644
--- a/drivers/net/sky2.c
+++ b/drivers/net/sky2.c
@@ -114,9 +114,11 @@ static const struct pci_device_id sky2_id_table[] = {
114 { PCI_DEVICE(PCI_VENDOR_ID_MARVELL, 0x4347) }, 114 { PCI_DEVICE(PCI_VENDOR_ID_MARVELL, 0x4347) },
115 { PCI_DEVICE(PCI_VENDOR_ID_MARVELL, 0x4350) }, 115 { PCI_DEVICE(PCI_VENDOR_ID_MARVELL, 0x4350) },
116 { PCI_DEVICE(PCI_VENDOR_ID_MARVELL, 0x4351) }, 116 { PCI_DEVICE(PCI_VENDOR_ID_MARVELL, 0x4351) },
117 { PCI_DEVICE(PCI_VENDOR_ID_MARVELL, 0x4352) },
117 { PCI_DEVICE(PCI_VENDOR_ID_MARVELL, 0x4360) }, 118 { PCI_DEVICE(PCI_VENDOR_ID_MARVELL, 0x4360) },
118 { PCI_DEVICE(PCI_VENDOR_ID_MARVELL, 0x4361) }, 119 { PCI_DEVICE(PCI_VENDOR_ID_MARVELL, 0x4361) },
119 { PCI_DEVICE(PCI_VENDOR_ID_MARVELL, 0x4362) }, 120 { PCI_DEVICE(PCI_VENDOR_ID_MARVELL, 0x4362) },
121 { PCI_DEVICE(PCI_VENDOR_ID_MARVELL, 0x4363) },
120 { 0 } 122 { 0 }
121}; 123};
122 124
@@ -130,6 +132,7 @@ static const char *yukon_name[] = {
130 [CHIP_ID_YUKON_LITE - CHIP_ID_YUKON] = "Lite", /* 0xb0 */ 132 [CHIP_ID_YUKON_LITE - CHIP_ID_YUKON] = "Lite", /* 0xb0 */
131 [CHIP_ID_YUKON_LP - CHIP_ID_YUKON] = "LP", /* 0xb2 */ 133 [CHIP_ID_YUKON_LP - CHIP_ID_YUKON] = "LP", /* 0xb2 */
132 [CHIP_ID_YUKON_XL - CHIP_ID_YUKON] = "XL", /* 0xb3 */ 134 [CHIP_ID_YUKON_XL - CHIP_ID_YUKON] = "XL", /* 0xb3 */
135 [CHIP_ID_YUKON_EC_U - CHIP_ID_YUKON] = "EC Ultra", /* 0xb4 */
133 136
134 [CHIP_ID_YUKON_EC - CHIP_ID_YUKON] = "EC", /* 0xb6 */ 137 [CHIP_ID_YUKON_EC - CHIP_ID_YUKON] = "EC", /* 0xb6 */
135 [CHIP_ID_YUKON_FE - CHIP_ID_YUKON] = "FE", /* 0xb7 */ 138 [CHIP_ID_YUKON_FE - CHIP_ID_YUKON] = "FE", /* 0xb7 */
@@ -599,6 +602,18 @@ static void sky2_mac_init(struct sky2_hw *hw, unsigned port)
599 /* Configure Tx MAC FIFO */ 602 /* Configure Tx MAC FIFO */
600 sky2_write8(hw, SK_REG(port, TX_GMF_CTRL_T), GMF_RST_CLR); 603 sky2_write8(hw, SK_REG(port, TX_GMF_CTRL_T), GMF_RST_CLR);
601 sky2_write16(hw, SK_REG(port, TX_GMF_CTRL_T), GMF_OPER_ON); 604 sky2_write16(hw, SK_REG(port, TX_GMF_CTRL_T), GMF_OPER_ON);
605
606 if (hw->chip_id == CHIP_ID_YUKON_EC_U) {
607 sky2_write8(hw, SK_REG(port, RX_GMF_LP_THR), 768/8);
608 sky2_write8(hw, SK_REG(port, RX_GMF_UP_THR), 1024/8);
609 if (hw->dev[port]->mtu > ETH_DATA_LEN) {
610 /* set Tx GMAC FIFO Almost Empty Threshold */
611 sky2_write32(hw, SK_REG(port, TX_GMF_AE_THR), 0x180);
612 /* Disable Store & Forward mode for TX */
613 sky2_write32(hw, SK_REG(port, TX_GMF_CTRL_T), TX_STFW_DIS);
614 }
615 }
616
602} 617}
603 618
604static void sky2_ramset(struct sky2_hw *hw, u16 q, u32 start, size_t len) 619static void sky2_ramset(struct sky2_hw *hw, u16 q, u32 start, size_t len)
@@ -984,6 +999,10 @@ static int sky2_up(struct net_device *dev)
984 RB_RST_SET); 999 RB_RST_SET);
985 1000
986 sky2_qset(hw, txqaddr[port], 0x600); 1001 sky2_qset(hw, txqaddr[port], 0x600);
1002 if (hw->chip_id == CHIP_ID_YUKON_EC_U)
1003 sky2_write16(hw, Q_ADDR(txqaddr[port], Q_AL), 0x1a0);
1004
1005
987 sky2_prefetch_init(hw, txqaddr[port], sky2->tx_le_map, 1006 sky2_prefetch_init(hw, txqaddr[port], sky2->tx_le_map,
988 TX_RING_SIZE - 1); 1007 TX_RING_SIZE - 1);
989 1008
@@ -1553,6 +1572,9 @@ static int sky2_change_mtu(struct net_device *dev, int new_mtu)
1553 if (new_mtu < ETH_ZLEN || new_mtu > ETH_JUMBO_MTU) 1572 if (new_mtu < ETH_ZLEN || new_mtu > ETH_JUMBO_MTU)
1554 return -EINVAL; 1573 return -EINVAL;
1555 1574
1575 if (hw->chip_id == CHIP_ID_YUKON_EC_U && new_mtu > ETH_DATA_LEN)
1576 return -EINVAL;
1577
1556 if (!netif_running(dev)) { 1578 if (!netif_running(dev)) {
1557 dev->mtu = new_mtu; 1579 dev->mtu = new_mtu;
1558 return 0; 1580 return 0;
@@ -1972,6 +1994,7 @@ static inline u32 sky2_khz(const struct sky2_hw *hw)
1972{ 1994{
1973 switch (hw->chip_id) { 1995 switch (hw->chip_id) {
1974 case CHIP_ID_YUKON_EC: 1996 case CHIP_ID_YUKON_EC:
1997 case CHIP_ID_YUKON_EC_U:
1975 return 125000; /* 125 Mhz */ 1998 return 125000; /* 125 Mhz */
1976 case CHIP_ID_YUKON_FE: 1999 case CHIP_ID_YUKON_FE:
1977 return 100000; /* 100 Mhz */ 2000 return 100000; /* 100 Mhz */
@@ -2796,7 +2819,9 @@ static __devinit struct net_device *sky2_init_netdev(struct sky2_hw *hw,
2796 2819
2797 sky2->port = port; 2820 sky2->port = port;
2798 2821
2799 dev->features |= NETIF_F_LLTX | NETIF_F_TSO; 2822 dev->features |= NETIF_F_LLTX;
2823 if (hw->chip_id != CHIP_ID_YUKON_EC_U)
2824 dev->features |= NETIF_F_TSO;
2800 if (highmem) 2825 if (highmem)
2801 dev->features |= NETIF_F_HIGHDMA; 2826 dev->features |= NETIF_F_HIGHDMA;
2802 dev->features |= NETIF_F_IP_CSUM | NETIF_F_SG; 2827 dev->features |= NETIF_F_IP_CSUM | NETIF_F_SG;