1 /* SPDX-License-Identifier: GPL-2.0-or-later */
3 * drivers/net/ethernet/ibm/emac/core.h
5 * Driver for PowerPC 4xx on-chip ethernet controller.
7 * Copyright 2007 Benjamin Herrenschmidt, IBM Corp.
8 * <benh@kernel.crashing.org>
10 * Based on the arch/ppc version of the driver:
12 * Copyright (c) 2004, 2005 Zultys Technologies.
13 * Eugene Surovegin <eugene.surovegin@zultys.com> or <ebs@ebshome.net>
15 * Based on original work by
16 * Armin Kuster <akuster@mvista.com>
17 * Johnnie Peters <jpeters@mvista.com>
18 * Copyright 2000, 2001 MontaVista Softare Inc.
20 #ifndef __IBM_NEWEMAC_CORE_H
21 #define __IBM_NEWEMAC_CORE_H
23 #include <linux/module.h>
24 #include <linux/list.h>
25 #include <linux/kernel.h>
26 #include <linux/interrupt.h>
27 #include <linux/netdevice.h>
28 #include <linux/dma-mapping.h>
29 #include <linux/spinlock.h>
30 #include <linux/slab.h>
43 #define NUM_TX_BUFF CONFIG_IBM_EMAC_TXB
44 #define NUM_RX_BUFF CONFIG_IBM_EMAC_RXB
46 /* Simple sanity check */
47 #if NUM_TX_BUFF > 256 || NUM_RX_BUFF > 256
48 #error Invalid number of buffer descriptors (greater than 256)
51 #define EMAC_MIN_MTU 46
53 /* Maximum L2 header length (VLAN tagged, no FCS) */
54 #define EMAC_MTU_OVERHEAD (6 * 2 + 2 + 4)
56 /* RX BD size for the given MTU */
57 static inline int emac_rx_size(int mtu
)
59 if (mtu
> ETH_DATA_LEN
)
60 return MAL_MAX_RX_SIZE
;
62 return mal_rx_size(ETH_DATA_LEN
+ EMAC_MTU_OVERHEAD
);
65 /* Size of RX skb for the given MTU */
66 static inline int emac_rx_skb_size(int mtu
)
68 int size
= max(mtu
+ EMAC_MTU_OVERHEAD
, emac_rx_size(mtu
));
70 return SKB_DATA_ALIGN(size
+ NET_IP_ALIGN
) + NET_SKB_PAD
;
73 /* RX DMA sync size */
74 static inline int emac_rx_sync_size(int mtu
)
76 return SKB_DATA_ALIGN(emac_rx_size(mtu
) + NET_IP_ALIGN
);
79 /* Driver statistcs is split into two parts to make it more cache friendly:
80 * - normal statistics (packet count, etc)
83 * When statistics is requested by ethtool, these parts are concatenated,
84 * normal one goes first.
86 * Please, keep these structures in sync with emac_stats_keys.
89 /* Normal TX/RX Statistics */
99 /* Error statistics */
100 struct emac_error_stats
{
103 /* Software RX Errors */
104 u64 rx_dropped_stack
;
106 u64 rx_dropped_error
;
107 u64 rx_dropped_resize
;
110 /* BD reported RX errors */
113 u64 rx_bd_bad_packet
;
114 u64 rx_bd_runt_packet
;
115 u64 rx_bd_short_event
;
116 u64 rx_bd_alignment_error
;
118 u64 rx_bd_packet_too_long
;
119 u64 rx_bd_out_of_range
;
121 /* EMAC IRQ reported RX errors */
128 u64 rx_alignment_error
;
130 u64 rx_packet_too_long
;
134 /* Software TX Errors */
136 /* BD reported TX errors */
139 u64 tx_bd_carrier_loss
;
140 u64 tx_bd_excessive_deferral
;
141 u64 tx_bd_excessive_collisions
;
142 u64 tx_bd_late_collision
;
143 u64 tx_bd_multple_collisions
;
144 u64 tx_bd_single_collision
;
147 /* EMAC IRQ reported TX errors */
154 #define EMAC_ETHTOOL_STATS_COUNT ((sizeof(struct emac_stats) + \
155 sizeof(struct emac_error_stats)) \
158 struct emac_instance
{
159 struct net_device
*ndev
;
160 struct emac_regs __iomem
*emacp
;
161 struct platform_device
*ofdev
;
162 struct device_node
**blist
; /* bootlist entry */
166 struct platform_device
*mal_dev
;
169 struct mal_instance
*mal
;
170 struct mal_commac commac
;
173 phy_interface_t phy_mode
;
178 struct mutex link_lock
;
179 struct delayed_work link_work
;
185 /* Shared MDIO if any */
187 struct platform_device
*mdio_dev
;
188 struct emac_instance
*mdio_instance
;
189 struct mutex mdio_lock
;
191 /* ZMII infos if any */
194 struct platform_device
*zmii_dev
;
196 /* RGMII infos if any */
199 struct platform_device
*rgmii_dev
;
201 /* TAH infos if any */
204 struct platform_device
*tah_dev
;
210 /* OPB bus frequency in Mhz */
213 /* Cell index within an ASIC (for clk mgmnt) */
216 /* Max supported MTU */
219 /* Feature bits (from probe table) */
220 unsigned int features
;
222 /* Tx and Rx fifo sizes & other infos in bytes */
224 u32 tx_fifo_size_gige
;
226 u32 rx_fifo_size_gige
;
228 u32 mal_burst_size
; /* move to MAL ? */
230 /* IAHT and GAHT filter parameterization */
231 u32 xaht_slots_shift
;
232 u32 xaht_width_shift
;
234 /* Descriptor management
236 struct mal_descriptor
*tx_desc
;
241 struct mal_descriptor
*rx_desc
;
243 struct sk_buff
*rx_sg_skb
; /* 1 */
247 struct sk_buff
*tx_skb
[NUM_TX_BUFF
];
248 struct sk_buff
*rx_skb
[NUM_RX_BUFF
];
252 struct emac_error_stats estats
;
253 struct emac_stats stats
;
258 int stop_timeout
; /* in us */
262 struct work_struct reset_work
;
267 * Features of various EMAC implementations
271 * No flow control on 40x according to the original driver
273 #define EMAC_FTR_NO_FLOW_CONTROL_40x 0x00000001
277 #define EMAC_FTR_EMAC4 0x00000002
279 * For the 440SPe, AMCC inexplicably changed the polarity of
280 * the "operation complete" bit in the MII control register.
282 #define EMAC_FTR_STACR_OC_INVERT 0x00000004
284 * Set if we have a TAH.
286 #define EMAC_FTR_HAS_TAH 0x00000008
288 * Set if we have a ZMII.
290 #define EMAC_FTR_HAS_ZMII 0x00000010
292 * Set if we have a RGMII.
294 #define EMAC_FTR_HAS_RGMII 0x00000020
296 * Set if we have new type STACR with STAOPC
298 #define EMAC_FTR_HAS_NEW_STACR 0x00000040
300 * Set if we need phy clock workaround for 440gx
302 #define EMAC_FTR_440GX_PHY_CLK_FIX 0x00000080
304 * Set if we need phy clock workaround for 440ep or 440gr
306 #define EMAC_FTR_440EP_PHY_CLK_FIX 0x00000100
308 * The 405EX and 460EX contain the EMAC4SYNC core
310 #define EMAC_FTR_EMAC4SYNC 0x00000200
312 * Set if we need phy clock workaround for 460ex or 460gt
314 #define EMAC_FTR_460EX_PHY_CLK_FIX 0x00000400
316 * APM821xx requires Jumbo frame size set explicitly
318 #define EMAC_APM821XX_REQ_JUMBO_FRAME_SIZE 0x00000800
320 * APM821xx does not support Half Duplex mode
322 #define EMAC_FTR_APM821XX_NO_HALF_DUPLEX 0x00001000
324 /* Right now, we don't quite handle the always/possible masks on the
325 * most optimal way as we don't have a way to say something like
326 * always EMAC4. Patches welcome.
329 EMAC_FTRS_ALWAYS
= 0,
332 #ifdef CONFIG_IBM_EMAC_EMAC4
333 EMAC_FTR_EMAC4
| EMAC_FTR_EMAC4SYNC
|
334 EMAC_FTR_HAS_NEW_STACR
|
335 EMAC_FTR_STACR_OC_INVERT
| EMAC_FTR_440GX_PHY_CLK_FIX
|
337 #ifdef CONFIG_IBM_EMAC_TAH
340 #ifdef CONFIG_IBM_EMAC_ZMII
343 #ifdef CONFIG_IBM_EMAC_RGMII
346 #ifdef CONFIG_IBM_EMAC_NO_FLOW_CTRL
347 EMAC_FTR_NO_FLOW_CONTROL_40x
|
349 EMAC_FTR_460EX_PHY_CLK_FIX
|
350 EMAC_FTR_440EP_PHY_CLK_FIX
|
351 EMAC_APM821XX_REQ_JUMBO_FRAME_SIZE
|
352 EMAC_FTR_APM821XX_NO_HALF_DUPLEX
,
355 static inline int emac_has_feature(struct emac_instance
*dev
,
356 unsigned long feature
)
358 return (EMAC_FTRS_ALWAYS
& feature
) ||
359 (EMAC_FTRS_POSSIBLE
& dev
->features
& feature
);
363 * Various instances of the EMAC core have varying 1) number of
364 * address match slots, 2) width of the registers for handling address
365 * match slots, 3) number of registers for handling address match
366 * slots and 4) base offset for those registers.
368 * These macros and inlines handle these differences based on
369 * parameters supplied by the device structure which are, in turn,
370 * initialized based on the "compatible" entry in the device tree.
373 #define EMAC4_XAHT_SLOTS_SHIFT 6
374 #define EMAC4_XAHT_WIDTH_SHIFT 4
376 #define EMAC4SYNC_XAHT_SLOTS_SHIFT 8
377 #define EMAC4SYNC_XAHT_WIDTH_SHIFT 5
379 /* The largest span between slots and widths above is 3 */
380 #define EMAC_XAHT_MAX_REGS (1 << 3)
382 #define EMAC_XAHT_SLOTS(dev) (1 << (dev)->xaht_slots_shift)
383 #define EMAC_XAHT_WIDTH(dev) (1 << (dev)->xaht_width_shift)
384 #define EMAC_XAHT_REGS(dev) (1 << ((dev)->xaht_slots_shift - \
385 (dev)->xaht_width_shift))
387 #define EMAC_XAHT_CRC_TO_SLOT(dev, crc) \
388 ((EMAC_XAHT_SLOTS(dev) - 1) - \
389 ((crc) >> ((sizeof (u32) * BITS_PER_BYTE) - \
390 (dev)->xaht_slots_shift)))
392 #define EMAC_XAHT_SLOT_TO_REG(dev, slot) \
393 ((slot) >> (dev)->xaht_width_shift)
395 #define EMAC_XAHT_SLOT_TO_MASK(dev, slot) \
396 ((u32)(1 << (EMAC_XAHT_WIDTH(dev) - 1)) >> \
397 ((slot) & (u32)(EMAC_XAHT_WIDTH(dev) - 1)))
399 static inline u32 __iomem
*emac_xaht_base(struct emac_instance
*dev
)
401 struct emac_regs __iomem
*p
= dev
->emacp
;
404 /* The first IAHT entry always is the base of the block of
405 * IAHT and GAHT registers.
407 if (emac_has_feature(dev
, EMAC_FTR_EMAC4SYNC
))
408 offset
= offsetof(struct emac_regs
, u1
.emac4sync
.iaht1
);
410 offset
= offsetof(struct emac_regs
, u0
.emac4
.iaht1
);
412 return (u32 __iomem
*)((__force
ptrdiff_t)p
+ offset
);
415 static inline u32 __iomem
*emac_gaht_base(struct emac_instance
*dev
)
417 /* GAHT registers always come after an identical number of
420 return emac_xaht_base(dev
) + EMAC_XAHT_REGS(dev
);
423 static inline u32
*emac_iaht_base(struct emac_instance
*dev
)
425 /* IAHT registers always come before an identical number of
428 return emac_xaht_base(dev
);
431 /* Ethtool get_regs complex data.
432 * We want to get not just EMAC registers, but also MAL, ZMII, RGMII, TAH
435 * Returned BLOB consists of the ibm_emac_ethtool_regs_hdr,
436 * MAL registers, EMAC registers and optional ZMII, RGMII, TAH registers.
437 * Each register component is preceded with emac_ethtool_regs_subhdr.
438 * Order of the optional headers follows their relative bit posititions
439 * in emac_ethtool_regs_hdr.components
441 #define EMAC_ETHTOOL_REGS_ZMII 0x00000001
442 #define EMAC_ETHTOOL_REGS_RGMII 0x00000002
443 #define EMAC_ETHTOOL_REGS_TAH 0x00000004
445 struct emac_ethtool_regs_hdr
{
449 struct emac_ethtool_regs_subhdr
{
454 #define EMAC_ETHTOOL_REGS_VER 3
455 #define EMAC4_ETHTOOL_REGS_VER 4
456 #define EMAC4SYNC_ETHTOOL_REGS_VER 5
458 #endif /* __IBM_NEWEMAC_CORE_H */