]> git.karo-electronics.de Git - karo-tx-linux.git/blob - drivers/net/ethernet/sfc/mcdi_mac.c
4907062b24a227bad268758f18a580361d34897d
[karo-tx-linux.git] / drivers / net / ethernet / sfc / mcdi_mac.c
1 /****************************************************************************
2  * Driver for Solarflare Solarstorm network controllers and boards
3  * Copyright 2009-2010 Solarflare Communications Inc.
4  *
5  * This program is free software; you can redistribute it and/or modify it
6  * under the terms of the GNU General Public License version 2 as published
7  * by the Free Software Foundation, incorporated herein by reference.
8  */
9
10 #include "net_driver.h"
11 #include "efx.h"
12 #include "mcdi.h"
13 #include "mcdi_pcol.h"
14
15 static int efx_mcdi_set_mac(struct efx_nic *efx)
16 {
17         u32 reject, fcntl;
18         u8 cmdbytes[MC_CMD_SET_MAC_IN_LEN];
19
20         memcpy(cmdbytes + MC_CMD_SET_MAC_IN_ADDR_OFST,
21                efx->net_dev->dev_addr, ETH_ALEN);
22
23         MCDI_SET_DWORD(cmdbytes, SET_MAC_IN_MTU,
24                         EFX_MAX_FRAME_LEN(efx->net_dev->mtu));
25         MCDI_SET_DWORD(cmdbytes, SET_MAC_IN_DRAIN, 0);
26
27         /* The MCDI command provides for controlling accept/reject
28          * of broadcast packets too, but the driver doesn't currently
29          * expose this. */
30         reject = (efx->promiscuous) ? 0 :
31                 (1 << MC_CMD_SET_MAC_IN_REJECT_UNCST_LBN);
32         MCDI_SET_DWORD(cmdbytes, SET_MAC_IN_REJECT, reject);
33
34         switch (efx->wanted_fc) {
35         case EFX_FC_RX | EFX_FC_TX:
36                 fcntl = MC_CMD_FCNTL_BIDIR;
37                 break;
38         case EFX_FC_RX:
39                 fcntl = MC_CMD_FCNTL_RESPOND;
40                 break;
41         default:
42                 fcntl = MC_CMD_FCNTL_OFF;
43                 break;
44         }
45         if (efx->wanted_fc & EFX_FC_AUTO)
46                 fcntl = MC_CMD_FCNTL_AUTO;
47
48         MCDI_SET_DWORD(cmdbytes, SET_MAC_IN_FCNTL, fcntl);
49
50         return efx_mcdi_rpc(efx, MC_CMD_SET_MAC, cmdbytes, sizeof(cmdbytes),
51                             NULL, 0, NULL);
52 }
53
54 static int efx_mcdi_get_mac_faults(struct efx_nic *efx, u32 *faults)
55 {
56         u8 outbuf[MC_CMD_GET_LINK_OUT_LEN];
57         size_t outlength;
58         int rc;
59
60         BUILD_BUG_ON(MC_CMD_GET_LINK_IN_LEN != 0);
61
62         rc = efx_mcdi_rpc(efx, MC_CMD_GET_LINK, NULL, 0,
63                           outbuf, sizeof(outbuf), &outlength);
64         if (rc)
65                 goto fail;
66
67         *faults = MCDI_DWORD(outbuf, GET_LINK_OUT_MAC_FAULT);
68         return 0;
69
70 fail:
71         netif_err(efx, hw, efx->net_dev, "%s: failed rc=%d\n",
72                   __func__, rc);
73         return rc;
74 }
75
76 int efx_mcdi_mac_stats(struct efx_nic *efx, dma_addr_t dma_addr,
77                        u32 dma_len, int enable, int clear)
78 {
79         u8 inbuf[MC_CMD_MAC_STATS_IN_LEN];
80         int rc;
81         efx_dword_t *cmd_ptr;
82         int period = enable ? 1000 : 0;
83         u32 addr_hi;
84         u32 addr_lo;
85
86         BUILD_BUG_ON(MC_CMD_MAC_STATS_OUT_DMA_LEN != 0);
87
88         addr_lo = ((u64)dma_addr) >> 0;
89         addr_hi = ((u64)dma_addr) >> 32;
90
91         MCDI_SET_DWORD(inbuf, MAC_STATS_IN_DMA_ADDR_LO, addr_lo);
92         MCDI_SET_DWORD(inbuf, MAC_STATS_IN_DMA_ADDR_HI, addr_hi);
93         cmd_ptr = (efx_dword_t *)MCDI_PTR(inbuf, MAC_STATS_IN_CMD);
94         EFX_POPULATE_DWORD_7(*cmd_ptr,
95                              MC_CMD_MAC_STATS_IN_DMA, !!enable,
96                              MC_CMD_MAC_STATS_IN_CLEAR, clear,
97                              MC_CMD_MAC_STATS_IN_PERIODIC_CHANGE, 1,
98                              MC_CMD_MAC_STATS_IN_PERIODIC_ENABLE, !!enable,
99                              MC_CMD_MAC_STATS_IN_PERIODIC_CLEAR, 0,
100                              MC_CMD_MAC_STATS_IN_PERIODIC_NOEVENT, 1,
101                              MC_CMD_MAC_STATS_IN_PERIOD_MS, period);
102         MCDI_SET_DWORD(inbuf, MAC_STATS_IN_DMA_LEN, dma_len);
103
104         rc = efx_mcdi_rpc(efx, MC_CMD_MAC_STATS, inbuf, sizeof(inbuf),
105                           NULL, 0, NULL);
106         if (rc)
107                 goto fail;
108
109         return 0;
110
111 fail:
112         netif_err(efx, hw, efx->net_dev, "%s: %s failed rc=%d\n",
113                   __func__, enable ? "enable" : "disable", rc);
114         return rc;
115 }
116
117 int efx_mcdi_mac_reconfigure(struct efx_nic *efx)
118 {
119         int rc;
120
121         rc = efx_mcdi_set_mac(efx);
122         if (rc != 0)
123                 return rc;
124
125         /* Restore the multicast hash registers. */
126         efx->type->push_multicast_hash(efx);
127
128         return 0;
129 }
130
131
132 bool efx_mcdi_mac_check_fault(struct efx_nic *efx)
133 {
134         u32 faults;
135         int rc = efx_mcdi_get_mac_faults(efx, &faults);
136         return (rc != 0) || (faults != 0);
137 }