vlan: change return type of vlan_proc_rem_dev
[linux-2.6-block.git] / drivers / net / ethernet / apm / xgene / xgene_enet_main.h
CommitLineData
e6ad7673
IS
1/* Applied Micro X-Gene SoC Ethernet Driver
2 *
3 * Copyright (c) 2014, Applied Micro Circuits Corporation
4 * Authors: Iyappan Subramanian <isubramanian@apm.com>
5 * Ravi Patel <rapatel@apm.com>
6 * Keyur Chudgar <kchudgar@apm.com>
7 *
8 * This program is free software; you can redistribute it and/or modify it
9 * under the terms of the GNU General Public License as published by the
10 * Free Software Foundation; either version 2 of the License, or (at your
11 * option) any later version.
12 *
13 * This program is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 * GNU General Public License for more details.
17 *
18 * You should have received a copy of the GNU General Public License
19 * along with this program. If not, see <http://www.gnu.org/licenses/>.
20 */
21
22#ifndef __XGENE_ENET_MAIN_H__
23#define __XGENE_ENET_MAIN_H__
24
de7b5b3d 25#include <linux/acpi.h>
e6ad7673 26#include <linux/clk.h>
de7b5b3d 27#include <linux/efi.h>
b5d7a069 28#include <linux/irq.h>
de7b5b3d 29#include <linux/io.h>
e6ad7673
IS
30#include <linux/of_platform.h>
31#include <linux/of_net.h>
32#include <linux/of_mdio.h>
33#include <linux/module.h>
34#include <net/ip.h>
35#include <linux/prefetch.h>
36#include <linux/if_vlan.h>
37#include <linux/phy.h>
38#include "xgene_enet_hw.h"
bc1b7c13 39#include "xgene_enet_ring2.h"
e6ad7673
IS
40
41#define XGENE_DRV_VERSION "v1.0"
42#define XGENE_ENET_MAX_MTU 1536
43#define SKB_BUFFER_SIZE (XGENE_ENET_MAX_MTU - NET_IP_ALIGN)
949c40bb 44#define BUFLEN_16K (16 * 1024)
e6ad7673
IS
45#define NUM_PKT_BUF 64
46#define NUM_BUFPOOL 32
9b00eb49
IS
47#define MAX_EXP_BUFFS 256
48#define XGENE_ENET_MSS 1448
49#define XGENE_MIN_ENET_FRAME_SIZE 60
ca626454
KC
50
51#define START_CPU_BUFNUM_0 0
52#define START_ETH_BUFNUM_0 2
53#define START_BP_BUFNUM_0 0x22
54#define START_RING_NUM_0 8
55#define START_CPU_BUFNUM_1 12
56#define START_ETH_BUFNUM_1 10
57#define START_BP_BUFNUM_1 0x2A
58#define START_RING_NUM_1 264
e6ad7673 59
149e9ab4
IS
60#define XG_START_CPU_BUFNUM_1 12
61#define XG_START_ETH_BUFNUM_1 2
62#define XG_START_BP_BUFNUM_1 0x22
63#define XG_START_RING_NUM_1 264
64
bc1b7c13
IS
65#define X2_START_CPU_BUFNUM_0 0
66#define X2_START_ETH_BUFNUM_0 0
67#define X2_START_BP_BUFNUM_0 0x20
68#define X2_START_RING_NUM_0 0
bc1b7c13
IS
69#define X2_START_CPU_BUFNUM_1 0xc
70#define X2_START_ETH_BUFNUM_1 0
71#define X2_START_BP_BUFNUM_1 0x20
72#define X2_START_RING_NUM_1 256
73
6772b653
IS
74#define IRQ_ID_SIZE 16
75#define XGENE_MAX_TXC_RINGS 1
76
32f784b5
IS
77#define PHY_POLL_LINK_ON (10 * HZ)
78#define PHY_POLL_LINK_OFF (PHY_POLL_LINK_ON / 5)
79
bc1b7c13
IS
80enum xgene_enet_id {
81 XGENE_ENET1 = 1,
82 XGENE_ENET2
83};
84
e6ad7673
IS
85/* software context of a descriptor ring */
86struct xgene_enet_desc_ring {
87 struct net_device *ndev;
88 u16 id;
89 u16 num;
90 u16 head;
91 u16 tail;
9b00eb49 92 u16 exp_buf_tail;
e6ad7673
IS
93 u16 slots;
94 u16 irq;
6772b653 95 char irq_name[IRQ_ID_SIZE];
e6ad7673 96 u32 size;
9dd3c797 97 u32 state[X2_NUM_RING_CONFIG];
e6ad7673
IS
98 void __iomem *cmd_base;
99 void __iomem *cmd;
100 dma_addr_t dma;
ed9b7da0
IS
101 dma_addr_t irq_mbox_dma;
102 void *irq_mbox_addr;
e6ad7673
IS
103 u16 dst_ring_num;
104 u8 nbufpool;
105 struct sk_buff *(*rx_skb);
106 struct sk_buff *(*cp_skb);
9b00eb49 107 dma_addr_t *frag_dma_addr;
e6ad7673
IS
108 enum xgene_enet_ring_cfgsize cfgsize;
109 struct xgene_enet_desc_ring *cp_ring;
110 struct xgene_enet_desc_ring *buf_pool;
111 struct napi_struct napi;
112 union {
113 void *desc_addr;
114 struct xgene_enet_raw_desc *raw_desc;
115 struct xgene_enet_raw_desc16 *raw_desc16;
116 };
9b00eb49 117 __le64 *exp_bufs;
e6ad7673
IS
118};
119
d0eb7458
IS
120struct xgene_mac_ops {
121 void (*init)(struct xgene_enet_pdata *pdata);
122 void (*reset)(struct xgene_enet_pdata *pdata);
123 void (*tx_enable)(struct xgene_enet_pdata *pdata);
124 void (*rx_enable)(struct xgene_enet_pdata *pdata);
125 void (*tx_disable)(struct xgene_enet_pdata *pdata);
126 void (*rx_disable)(struct xgene_enet_pdata *pdata);
127 void (*set_mac_addr)(struct xgene_enet_pdata *pdata);
9b00eb49 128 void (*set_mss)(struct xgene_enet_pdata *pdata);
dc8385f0 129 void (*link_state)(struct work_struct *work);
d0eb7458
IS
130};
131
132struct xgene_port_ops {
c3f4465d 133 int (*reset)(struct xgene_enet_pdata *pdata);
d0eb7458
IS
134 void (*cle_bypass)(struct xgene_enet_pdata *pdata,
135 u32 dst_ring_num, u16 bufpool_id);
136 void (*shutdown)(struct xgene_enet_pdata *pdata);
137};
138
81cefb81
IS
139struct xgene_ring_ops {
140 u8 num_ring_config;
141 u8 num_ring_id_shift;
142 struct xgene_enet_desc_ring * (*setup)(struct xgene_enet_desc_ring *);
143 void (*clear)(struct xgene_enet_desc_ring *);
144 void (*wr_cmd)(struct xgene_enet_desc_ring *, int);
145 u32 (*len)(struct xgene_enet_desc_ring *);
146};
147
e6ad7673
IS
148/* ethernet private data */
149struct xgene_enet_pdata {
150 struct net_device *ndev;
151 struct mii_bus *mdio_bus;
152 struct phy_device *phy_dev;
153 int phy_speed;
154 struct clk *clk;
155 struct platform_device *pdev;
bc1b7c13 156 enum xgene_enet_id enet_id;
e6ad7673
IS
157 struct xgene_enet_desc_ring *tx_ring;
158 struct xgene_enet_desc_ring *rx_ring;
67894eec
IS
159 u16 tx_level;
160 u16 txc_level;
e6ad7673
IS
161 char *dev_name;
162 u32 rx_buff_cnt;
163 u32 tx_qcnt_hi;
e6ad7673 164 u32 rx_irq;
6772b653
IS
165 u32 txc_irq;
166 u8 cq_cnt;
e6ad7673
IS
167 void __iomem *eth_csr_addr;
168 void __iomem *eth_ring_if_addr;
169 void __iomem *eth_diag_csr_addr;
170 void __iomem *mcx_mac_addr;
e6ad7673
IS
171 void __iomem *mcx_mac_csr_addr;
172 void __iomem *base_addr;
173 void __iomem *ring_csr_addr;
174 void __iomem *ring_cmd_addr;
e6ad7673 175 int phy_mode;
0148d38d 176 enum xgene_enet_rm rm;
e6ad7673 177 struct rtnl_link_stats64 stats;
3cdb7309
JL
178 const struct xgene_mac_ops *mac_ops;
179 const struct xgene_port_ops *port_ops;
81cefb81 180 struct xgene_ring_ops *ring_ops;
0148d38d 181 struct delayed_work link_work;
ca626454
KC
182 u32 port_id;
183 u8 cpu_bufnum;
184 u8 eth_bufnum;
185 u8 bp_bufnum;
186 u16 ring_num;
9b00eb49 187 u32 mss;
16615a4c
IS
188 u8 tx_delay;
189 u8 rx_delay;
e6ad7673
IS
190};
191
32f784b5
IS
192struct xgene_indirect_ctl {
193 void __iomem *addr;
194 void __iomem *ctl;
195 void __iomem *cmd;
196 void __iomem *cmd_done;
197};
198
e6ad7673
IS
199/* Set the specified value into a bit-field defined by its starting position
200 * and length within a single u64.
201 */
202static inline u64 xgene_enet_set_field_value(int pos, int len, u64 val)
203{
204 return (val & ((1ULL << len) - 1)) << pos;
205}
206
207#define SET_VAL(field, val) \
208 xgene_enet_set_field_value(field ## _POS, field ## _LEN, val)
209
210#define SET_BIT(field) \
211 xgene_enet_set_field_value(field ## _POS, 1, 1)
212
213/* Get the value from a bit-field defined by its starting position
214 * and length within the specified u64.
215 */
216static inline u64 xgene_enet_get_field_value(int pos, int len, u64 src)
217{
218 return (src >> pos) & ((1ULL << len) - 1);
219}
220
221#define GET_VAL(field, src) \
222 xgene_enet_get_field_value(field ## _POS, field ## _LEN, src)
223
9b00eb49
IS
224#define GET_BIT(field, src) \
225 xgene_enet_get_field_value(field ## _POS, 1, src)
226
e6ad7673
IS
227static inline struct device *ndev_to_dev(struct net_device *ndev)
228{
229 return ndev->dev.parent;
230}
231
232void xgene_enet_set_ethtool_ops(struct net_device *netdev);
233
234#endif /* __XGENE_ENET_MAIN_H__ */