2 * drivers/net/ibm_newemac/core.h
4 * Driver for PowerPC 4xx on-chip ethernet controller.
6 * Copyright (c) 2004, 2005 Zultys Technologies.
7 * Eugene Surovegin <eugene.surovegin@zultys.com> or <ebs@ebshome.net>
9 * Based on original work by
10 * Armin Kuster <akuster@mvista.com>
11 * Johnnie Peters <jpeters@mvista.com>
12 * Copyright 2000, 2001 MontaVista Softare Inc.
14 * This program is free software; you can redistribute it and/or modify it
15 * under the terms of the GNU General Public License as published by the
16 * Free Software Foundation; either version 2 of the License, or (at your
17 * option) any later version.
20 #ifndef __IBM_NEWEMAC_CORE_H
21 #define __IBM_NEWEMAC_CORE_H
23 #include <linux/module.h>
24 #include <linux/init.h>
25 #include <linux/list.h>
26 #include <linux/kernel.h>
27 #include <linux/interrupt.h>
28 #include <linux/netdevice.h>
29 #include <linux/dma-mapping.h>
30 #include <linux/spinlock.h>
32 #include <asm/of_platform.h>
44 #define NUM_TX_BUFF CONFIG_IBM_NEW_EMAC_TXB
45 #define NUM_RX_BUFF CONFIG_IBM_NEW_EMAC_RXB
47 /* Simple sanity check */
48 #if NUM_TX_BUFF > 256 || NUM_RX_BUFF > 256
49 #error Invalid number of buffer descriptors (greater than 256)
52 #define EMAC_MIN_MTU 46
54 /* Maximum L2 header length (VLAN tagged, no FCS) */
55 #define EMAC_MTU_OVERHEAD (6 * 2 + 2 + 4)
57 /* RX BD size for the given MTU */
58 static inline int emac_rx_size(int mtu
)
60 if (mtu
> ETH_DATA_LEN
)
61 return MAL_MAX_RX_SIZE
;
63 return mal_rx_size(ETH_DATA_LEN
+ EMAC_MTU_OVERHEAD
);
66 #define EMAC_DMA_ALIGN(x) ALIGN((x), dma_get_cache_alignment())
68 #define EMAC_RX_SKB_HEADROOM \
69 EMAC_DMA_ALIGN(CONFIG_IBM_NEW_EMAC_RX_SKB_HEADROOM)
71 /* Size of RX skb for the given MTU */
72 static inline int emac_rx_skb_size(int mtu
)
74 int size
= max(mtu
+ EMAC_MTU_OVERHEAD
, emac_rx_size(mtu
));
75 return EMAC_DMA_ALIGN(size
+ 2) + EMAC_RX_SKB_HEADROOM
;
78 /* RX DMA sync size */
79 static inline int emac_rx_sync_size(int mtu
)
81 return EMAC_DMA_ALIGN(emac_rx_size(mtu
) + 2);
84 /* Driver statistcs is split into two parts to make it more cache friendly:
85 * - normal statistics (packet count, etc)
88 * When statistics is requested by ethtool, these parts are concatenated,
89 * normal one goes first.
91 * Please, keep these structures in sync with emac_stats_keys.
94 /* Normal TX/RX Statistics */
104 /* Error statistics */
105 struct emac_error_stats
{
108 /* Software RX Errors */
109 u64 rx_dropped_stack
;
111 u64 rx_dropped_error
;
112 u64 rx_dropped_resize
;
115 /* BD reported RX errors */
118 u64 rx_bd_bad_packet
;
119 u64 rx_bd_runt_packet
;
120 u64 rx_bd_short_event
;
121 u64 rx_bd_alignment_error
;
123 u64 rx_bd_packet_too_long
;
124 u64 rx_bd_out_of_range
;
126 /* EMAC IRQ reported RX errors */
133 u64 rx_alignment_error
;
135 u64 rx_packet_too_long
;
139 /* Software TX Errors */
141 /* BD reported TX errors */
144 u64 tx_bd_carrier_loss
;
145 u64 tx_bd_excessive_deferral
;
146 u64 tx_bd_excessive_collisions
;
147 u64 tx_bd_late_collision
;
148 u64 tx_bd_multple_collisions
;
149 u64 tx_bd_single_collision
;
152 /* EMAC IRQ reported TX errors */
159 #define EMAC_ETHTOOL_STATS_COUNT ((sizeof(struct emac_stats) + \
160 sizeof(struct emac_error_stats)) \
163 struct emac_instance
{
164 struct net_device
*ndev
;
165 struct resource rsrc_regs
;
166 struct emac_regs __iomem
*emacp
;
167 struct of_device
*ofdev
;
168 struct device_node
**blist
; /* bootlist entry */
172 struct of_device
*mal_dev
;
175 struct mal_instance
*mal
;
176 struct mal_commac commac
;
184 struct mutex link_lock
;
185 struct delayed_work link_work
;
188 /* Shared MDIO if any */
190 struct of_device
*mdio_dev
;
191 struct emac_instance
*mdio_instance
;
192 struct mutex mdio_lock
;
194 /* ZMII infos if any */
197 struct of_device
*zmii_dev
;
199 /* RGMII infos if any */
202 struct of_device
*rgmii_dev
;
204 /* TAH infos if any */
207 struct of_device
*tah_dev
;
213 /* OPB bus frequency in Mhz */
216 /* Cell index within an ASIC (for clk mgmnt) */
219 /* Max supported MTU */
222 /* Feature bits (from probe table) */
223 unsigned int features
;
225 /* Tx and Rx fifo sizes & other infos in bytes */
227 u32 tx_fifo_size_gige
;
229 u32 rx_fifo_size_gige
;
231 u32 mal_burst_size
; /* move to MAL ? */
233 /* Descriptor management
235 struct mal_descriptor
*tx_desc
;
240 struct mal_descriptor
*rx_desc
;
242 struct sk_buff
*rx_sg_skb
; /* 1 */
246 struct sk_buff
*tx_skb
[NUM_TX_BUFF
];
247 struct sk_buff
*rx_skb
[NUM_RX_BUFF
];
251 struct emac_error_stats estats
;
252 struct net_device_stats nstats
;
253 struct emac_stats stats
;
258 int stop_timeout
; /* in us */
261 struct work_struct reset_work
;
266 * Features of various EMAC implementations
270 * No flow control on 40x according to the original driver
272 #define EMAC_FTR_NO_FLOW_CONTROL_40x 0x00000001
276 #define EMAC_FTR_EMAC4 0x00000002
278 * For the 440SPe, AMCC inexplicably changed the polarity of
279 * the "operation complete" bit in the MII control register.
281 #define EMAC_FTR_STACR_OC_INVERT 0x00000004
283 * Set if we have a TAH.
285 #define EMAC_FTR_HAS_TAH 0x00000008
287 * Set if we have a ZMII.
289 #define EMAC_FTR_HAS_ZMII 0x00000010
291 * Set if we have a RGMII.
293 #define EMAC_FTR_HAS_RGMII 0x00000020
295 * Set if we have axon-type STACR
297 #define EMAC_FTR_HAS_AXON_STACR 0x00000040
300 /* Right now, we don't quite handle the always/possible masks on the
301 * most optimal way as we don't have a way to say something like
302 * always EMAC4. Patches welcome.
305 EMAC_FTRS_ALWAYS
= 0,
308 #ifdef CONFIG_IBM_NEW_EMAC_EMAC4
309 EMAC_FTR_EMAC4
| EMAC_FTR_HAS_AXON_STACR
|
310 EMAC_FTR_STACR_OC_INVERT
|
312 #ifdef CONFIG_IBM_NEW_EMAC_TAH
315 #ifdef CONFIG_IBM_NEW_EMAC_ZMII
318 #ifdef CONFIG_IBM_NEW_EMAC_RGMII
324 static inline int emac_has_feature(struct emac_instance
*dev
,
325 unsigned long feature
)
327 return (EMAC_FTRS_ALWAYS
& feature
) ||
328 (EMAC_FTRS_POSSIBLE
& dev
->features
& feature
);
332 /* Ethtool get_regs complex data.
333 * We want to get not just EMAC registers, but also MAL, ZMII, RGMII, TAH
336 * Returned BLOB consists of the ibm_emac_ethtool_regs_hdr,
337 * MAL registers, EMAC registers and optional ZMII, RGMII, TAH registers.
338 * Each register component is preceded with emac_ethtool_regs_subhdr.
339 * Order of the optional headers follows their relative bit posititions
340 * in emac_ethtool_regs_hdr.components
342 #define EMAC_ETHTOOL_REGS_ZMII 0x00000001
343 #define EMAC_ETHTOOL_REGS_RGMII 0x00000002
344 #define EMAC_ETHTOOL_REGS_TAH 0x00000004
346 struct emac_ethtool_regs_hdr
{
350 struct emac_ethtool_regs_subhdr
{
355 #endif /* __IBM_NEWEMAC_CORE_H */