1 /* atlx.c -- common functions for Attansic network drivers
3 * Copyright(c) 2005 - 2006 Attansic Corporation. All rights reserved.
4 * Copyright(c) 2006 - 2007 Chris Snook <csnook@redhat.com>
5 * Copyright(c) 2006 - 2008 Jay Cliburn <jcliburn@gmail.com>
6 * Copyright(c) 2007 Atheros Corporation. All rights reserved.
8 * Derived from Intel e1000 driver
9 * Copyright(c) 1999 - 2005 Intel Corporation. All rights reserved.
11 * This program is free software; you can redistribute it and/or modify it
12 * under the terms of the GNU General Public License as published by the Free
13 * Software Foundation; either version 2 of the License, or (at your option)
16 * This program is distributed in the hope that it will be useful, but WITHOUT
17 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
18 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
21 * You should have received a copy of the GNU General Public License along with
22 * this program; if not, write to the Free Software Foundation, Inc., 59
23 * Temple Place - Suite 330, Boston, MA 02111-1307, USA.
26 /* Including this file like a header is a temporary hack, I promise. -- CHS */
30 #include <linux/device.h>
31 #include <linux/errno.h>
32 #include <linux/etherdevice.h>
34 #include <linux/netdevice.h>
35 #include <linux/socket.h>
36 #include <linux/sockios.h>
37 #include <linux/spinlock.h>
38 #include <linux/string.h>
39 #include <linux/types.h>
40 #include <linux/workqueue.h>
44 static s32
atlx_read_phy_reg(struct atl1_hw
*hw
, u16 reg_addr
, u16
*phy_data
);
45 static u32
atlx_hash_mc_addr(struct atl1_hw
*hw
, u8
*mc_addr
);
46 static void atlx_set_mac_addr(struct atl1_hw
*hw
);
48 static struct atlx_spi_flash_dev flash_table
[] = {
49 /* MFR_NAME WRSR READ PRGM WREN WRDI RDSR RDID SEC_ERS CHIP_ERS */
50 {"Atmel", 0x00, 0x03, 0x02, 0x06, 0x04, 0x05, 0x15, 0x52, 0x62},
51 {"SST", 0x01, 0x03, 0x02, 0x06, 0x04, 0x05, 0x90, 0x20, 0x60},
52 {"ST", 0x01, 0x03, 0x02, 0x06, 0x04, 0x05, 0xAB, 0xD8, 0xC7},
55 static int atlx_ioctl(struct net_device
*netdev
, struct ifreq
*ifr
, int cmd
)
61 return atlx_mii_ioctl(netdev
, ifr
, cmd
);
68 * atlx_set_mac - Change the Ethernet Address of the NIC
69 * @netdev: network interface device structure
70 * @p: pointer to an address structure
72 * Returns 0 on success, negative on failure
74 static int atlx_set_mac(struct net_device
*netdev
, void *p
)
76 struct atlx_adapter
*adapter
= netdev_priv(netdev
);
77 struct sockaddr
*addr
= p
;
79 if (netif_running(netdev
))
82 if (!is_valid_ether_addr(addr
->sa_data
))
83 return -EADDRNOTAVAIL
;
85 memcpy(netdev
->dev_addr
, addr
->sa_data
, netdev
->addr_len
);
86 memcpy(adapter
->hw
.mac_addr
, addr
->sa_data
, netdev
->addr_len
);
88 atlx_set_mac_addr(&adapter
->hw
);
92 static void atlx_check_for_link(struct atlx_adapter
*adapter
)
94 struct net_device
*netdev
= adapter
->netdev
;
97 spin_lock(&adapter
->lock
);
98 adapter
->phy_timer_pending
= false;
99 atlx_read_phy_reg(&adapter
->hw
, MII_BMSR
, &phy_data
);
100 atlx_read_phy_reg(&adapter
->hw
, MII_BMSR
, &phy_data
);
101 spin_unlock(&adapter
->lock
);
103 /* notify upper layer link down ASAP */
104 if (!(phy_data
& BMSR_LSTATUS
)) {
106 if (netif_carrier_ok(netdev
)) {
107 /* old link state: Up */
108 dev_info(&adapter
->pdev
->dev
, "%s link is down\n",
110 adapter
->link_speed
= SPEED_0
;
111 netif_carrier_off(netdev
);
114 schedule_work(&adapter
->link_chg_task
);
118 * atlx_set_multi - Multicast and Promiscuous mode set
119 * @netdev: network interface device structure
121 * The set_multi entry point is called whenever the multicast address
122 * list or the network interface flags are updated. This routine is
123 * responsible for configuring the hardware for proper multicast,
124 * promiscuous mode, and all-multi behavior.
126 static void atlx_set_multi(struct net_device
*netdev
)
128 struct atlx_adapter
*adapter
= netdev_priv(netdev
);
129 struct atlx_hw
*hw
= &adapter
->hw
;
130 struct netdev_hw_addr
*ha
;
134 /* Check for Promiscuous and All Multicast modes */
135 rctl
= ioread32(hw
->hw_addr
+ REG_MAC_CTRL
);
136 if (netdev
->flags
& IFF_PROMISC
)
137 rctl
|= MAC_CTRL_PROMIS_EN
;
138 else if (netdev
->flags
& IFF_ALLMULTI
) {
139 rctl
|= MAC_CTRL_MC_ALL_EN
;
140 rctl
&= ~MAC_CTRL_PROMIS_EN
;
142 rctl
&= ~(MAC_CTRL_PROMIS_EN
| MAC_CTRL_MC_ALL_EN
);
144 iowrite32(rctl
, hw
->hw_addr
+ REG_MAC_CTRL
);
146 /* clear the old settings from the multicast hash table */
147 iowrite32(0, hw
->hw_addr
+ REG_RX_HASH_TABLE
);
148 iowrite32(0, (hw
->hw_addr
+ REG_RX_HASH_TABLE
) + (1 << 2));
150 /* compute mc addresses' hash value ,and put it into hash table */
151 netdev_for_each_mc_addr(ha
, netdev
) {
152 hash_value
= atlx_hash_mc_addr(hw
, ha
->addr
);
153 atlx_hash_set(hw
, hash_value
);
158 * atlx_irq_enable - Enable default interrupt generation settings
159 * @adapter: board private structure
161 static void atlx_irq_enable(struct atlx_adapter
*adapter
)
163 iowrite32(IMR_NORMAL_MASK
, adapter
->hw
.hw_addr
+ REG_IMR
);
164 ioread32(adapter
->hw
.hw_addr
+ REG_IMR
);
168 * atlx_irq_disable - Mask off interrupt generation on the NIC
169 * @adapter: board private structure
171 static void atlx_irq_disable(struct atlx_adapter
*adapter
)
173 iowrite32(0, adapter
->hw
.hw_addr
+ REG_IMR
);
174 ioread32(adapter
->hw
.hw_addr
+ REG_IMR
);
175 synchronize_irq(adapter
->pdev
->irq
);
178 static void atlx_clear_phy_int(struct atlx_adapter
*adapter
)
183 spin_lock_irqsave(&adapter
->lock
, flags
);
184 atlx_read_phy_reg(&adapter
->hw
, 19, &phy_data
);
185 spin_unlock_irqrestore(&adapter
->lock
, flags
);
189 * atlx_tx_timeout - Respond to a Tx Hang
190 * @netdev: network interface device structure
192 static void atlx_tx_timeout(struct net_device
*netdev
)
194 struct atlx_adapter
*adapter
= netdev_priv(netdev
);
195 /* Do the reset outside of interrupt context */
196 schedule_work(&adapter
->tx_timeout_task
);
200 * atlx_link_chg_task - deal with link change event Out of interrupt context
202 static void atlx_link_chg_task(struct work_struct
*work
)
204 struct atlx_adapter
*adapter
;
207 adapter
= container_of(work
, struct atlx_adapter
, link_chg_task
);
209 spin_lock_irqsave(&adapter
->lock
, flags
);
210 atlx_check_link(adapter
);
211 spin_unlock_irqrestore(&adapter
->lock
, flags
);
214 static void __atlx_vlan_mode(u32 features
, u32
*ctrl
)
216 if (features
& NETIF_F_HW_VLAN_RX
) {
217 /* enable VLAN tag insert/strip */
218 *ctrl
|= MAC_CTRL_RMV_VLAN
;
220 /* disable VLAN tag insert/strip */
221 *ctrl
&= ~MAC_CTRL_RMV_VLAN
;
225 static void atlx_vlan_mode(struct net_device
*netdev
, u32 features
)
227 struct atlx_adapter
*adapter
= netdev_priv(netdev
);
231 spin_lock_irqsave(&adapter
->lock
, flags
);
232 /* atlx_irq_disable(adapter); FIXME: confirm/remove */
233 ctrl
= ioread32(adapter
->hw
.hw_addr
+ REG_MAC_CTRL
);
234 __atlx_vlan_mode(features
, &ctrl
);
235 iowrite32(ctrl
, adapter
->hw
.hw_addr
+ REG_MAC_CTRL
);
236 /* atlx_irq_enable(adapter); FIXME */
237 spin_unlock_irqrestore(&adapter
->lock
, flags
);
240 static void atlx_restore_vlan(struct atlx_adapter
*adapter
)
242 atlx_vlan_mode(adapter
->netdev
, adapter
->netdev
->features
);
245 static u32
atlx_fix_features(struct net_device
*netdev
, u32 features
)
248 * Since there is no support for separate rx/tx vlan accel
249 * enable/disable make sure tx flag is always in same state as rx.
251 if (features
& NETIF_F_HW_VLAN_RX
)
252 features
|= NETIF_F_HW_VLAN_TX
;
254 features
&= ~NETIF_F_HW_VLAN_TX
;
259 static int atlx_set_features(struct net_device
*netdev
, u32 features
)
261 u32 changed
= netdev
->features
^ features
;
263 if (changed
& NETIF_F_HW_VLAN_RX
)
264 atlx_vlan_mode(netdev
, features
);