blob: e62dfa2deab67565cbb6c62116f4f8b6b722384f [file] [log] [blame]
Lendacky, Thomasc5aa9e32014-06-05 09:15:06 -05001/*
2 * AMD 10Gb Ethernet driver
3 *
4 * This file is available to you under your choice of the following two
5 * licenses:
6 *
7 * License 1: GPLv2
8 *
9 * Copyright (c) 2014 Advanced Micro Devices, Inc.
10 *
11 * This file is free software; you may copy, redistribute and/or modify
12 * it under the terms of the GNU General Public License as published by
13 * the Free Software Foundation, either version 2 of the License, or (at
14 * your option) any later version.
15 *
16 * This file is distributed in the hope that it will be useful, but
17 * WITHOUT ANY WARRANTY; without even the implied warranty of
18 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
19 * General Public License for more details.
20 *
21 * You should have received a copy of the GNU General Public License
22 * along with this program. If not, see <http://www.gnu.org/licenses/>.
23 *
24 * This file incorporates work covered by the following copyright and
25 * permission notice:
26 * The Synopsys DWC ETHER XGMAC Software Driver and documentation
27 * (hereinafter "Software") is an unsupported proprietary work of Synopsys,
28 * Inc. unless otherwise expressly agreed to in writing between Synopsys
29 * and you.
30 *
31 * The Software IS NOT an item of Licensed Software or Licensed Product
32 * under any End User Software License Agreement or Agreement for Licensed
33 * Product with Synopsys or any supplement thereto. Permission is hereby
34 * granted, free of charge, to any person obtaining a copy of this software
35 * annotated with this license and the Software, to deal in the Software
36 * without restriction, including without limitation the rights to use,
37 * copy, modify, merge, publish, distribute, sublicense, and/or sell copies
38 * of the Software, and to permit persons to whom the Software is furnished
39 * to do so, subject to the following conditions:
40 *
41 * The above copyright notice and this permission notice shall be included
42 * in all copies or substantial portions of the Software.
43 *
44 * THIS SOFTWARE IS BEING DISTRIBUTED BY SYNOPSYS SOLELY ON AN "AS IS"
45 * BASIS AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
46 * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A
47 * PARTICULAR PURPOSE ARE HEREBY DISCLAIMED. IN NO EVENT SHALL SYNOPSYS
48 * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
49 * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
50 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
51 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
52 * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
53 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
54 * THE POSSIBILITY OF SUCH DAMAGE.
55 *
56 *
57 * License 2: Modified BSD
58 *
59 * Copyright (c) 2014 Advanced Micro Devices, Inc.
60 * All rights reserved.
61 *
62 * Redistribution and use in source and binary forms, with or without
63 * modification, are permitted provided that the following conditions are met:
64 * * Redistributions of source code must retain the above copyright
65 * notice, this list of conditions and the following disclaimer.
66 * * Redistributions in binary form must reproduce the above copyright
67 * notice, this list of conditions and the following disclaimer in the
68 * documentation and/or other materials provided with the distribution.
69 * * Neither the name of Advanced Micro Devices, Inc. nor the
70 * names of its contributors may be used to endorse or promote products
71 * derived from this software without specific prior written permission.
72 *
73 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
74 * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
75 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
76 * ARE DISCLAIMED. IN NO EVENT SHALL <COPYRIGHT HOLDER> BE LIABLE FOR ANY
77 * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
78 * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
79 * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
80 * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
81 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
82 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
83 *
84 * This file incorporates work covered by the following copyright and
85 * permission notice:
86 * The Synopsys DWC ETHER XGMAC Software Driver and documentation
87 * (hereinafter "Software") is an unsupported proprietary work of Synopsys,
88 * Inc. unless otherwise expressly agreed to in writing between Synopsys
89 * and you.
90 *
91 * The Software IS NOT an item of Licensed Software or Licensed Product
92 * under any End User Software License Agreement or Agreement for Licensed
93 * Product with Synopsys or any supplement thereto. Permission is hereby
94 * granted, free of charge, to any person obtaining a copy of this software
95 * annotated with this license and the Software, to deal in the Software
96 * without restriction, including without limitation the rights to use,
97 * copy, modify, merge, publish, distribute, sublicense, and/or sell copies
98 * of the Software, and to permit persons to whom the Software is furnished
99 * to do so, subject to the following conditions:
100 *
101 * The above copyright notice and this permission notice shall be included
102 * in all copies or substantial portions of the Software.
103 *
104 * THIS SOFTWARE IS BEING DISTRIBUTED BY SYNOPSYS SOLELY ON AN "AS IS"
105 * BASIS AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
106 * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A
107 * PARTICULAR PURPOSE ARE HEREBY DISCLAIMED. IN NO EVENT SHALL SYNOPSYS
108 * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
109 * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
110 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
111 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
112 * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
113 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
114 * THE POSSIBILITY OF SUCH DAMAGE.
115 */
116
117#ifndef __XGBE_H__
118#define __XGBE_H__
119
120#include <linux/dma-mapping.h>
121#include <linux/netdevice.h>
122#include <linux/workqueue.h>
123#include <linux/phy.h>
Lendacky, Thomas801c62d2014-06-24 16:19:24 -0500124#include <linux/if_vlan.h>
125#include <linux/bitops.h>
Lendacky, Thomas23e4eef2014-07-29 08:57:19 -0500126#include <linux/ptp_clock_kernel.h>
Richard Cochran74d23cc2014-12-21 19:46:56 +0100127#include <linux/timecounter.h>
Lendacky, Thomas23e4eef2014-07-29 08:57:19 -0500128#include <linux/net_tstamp.h>
Lendacky, Thomasfca2d992014-07-29 08:57:55 -0500129#include <net/dcbnl.h>
Lendacky, Thomasc5aa9e32014-06-05 09:15:06 -0500130
Lendacky, Thomasc5aa9e32014-06-05 09:15:06 -0500131#define XGBE_DRV_NAME "amd-xgbe"
132#define XGBE_DRV_VERSION "1.0.0-a"
133#define XGBE_DRV_DESC "AMD 10 Gigabit Ethernet Driver"
134
135/* Descriptor related defines */
Lendacky, Thomasd0a8ba62014-06-24 16:19:06 -0500136#define XGBE_TX_DESC_CNT 512
137#define XGBE_TX_DESC_MIN_FREE (XGBE_TX_DESC_CNT >> 3)
138#define XGBE_TX_DESC_MAX_PROC (XGBE_TX_DESC_CNT >> 1)
139#define XGBE_RX_DESC_CNT 512
Lendacky, Thomasc5aa9e32014-06-05 09:15:06 -0500140
Lendacky, Thomasd0a8ba62014-06-24 16:19:06 -0500141#define XGBE_TX_MAX_BUF_SIZE (0x3fff & ~(64 - 1))
Lendacky, Thomasc5aa9e32014-06-05 09:15:06 -0500142
Lendacky, Thomas16958a22014-11-20 11:04:08 -0600143/* Descriptors required for maximum contigous TSO/GSO packet */
144#define XGBE_TX_MAX_SPLIT ((GSO_MAX_SIZE / XGBE_TX_MAX_BUF_SIZE) + 1)
145
146/* Maximum possible descriptors needed for an SKB:
147 * - Maximum number of SKB frags
148 * - Maximum descriptors for contiguous TSO/GSO packet
149 * - Possible context descriptor
150 * - Possible TSO header descriptor
151 */
152#define XGBE_TX_MAX_DESCS (MAX_SKB_FRAGS + XGBE_TX_MAX_SPLIT + 2)
153
Lendacky, Thomasd0a8ba62014-06-24 16:19:06 -0500154#define XGBE_RX_MIN_BUF_SIZE (ETH_FRAME_LEN + ETH_FCS_LEN + VLAN_HLEN)
155#define XGBE_RX_BUF_ALIGN 64
Lendacky, Thomas08dcc472014-11-04 16:06:44 -0600156#define XGBE_SKB_ALLOC_SIZE 256
Lendacky, Thomas174fd252014-11-04 16:06:50 -0600157#define XGBE_SPH_HDSMS_SIZE 2 /* Keep in sync with SKB_ALLOC_SIZE */
Lendacky, Thomasc5aa9e32014-06-05 09:15:06 -0500158
Lendacky, Thomasd5c48582014-06-09 09:19:32 -0500159#define XGBE_MAX_DMA_CHANNELS 16
Lendacky, Thomasfca2d992014-07-29 08:57:55 -0500160#define XGBE_MAX_QUEUES 16
Lendacky, Thomas16edd342014-11-20 11:03:32 -0600161#define XGBE_DMA_STOP_TIMEOUT 5
Lendacky, Thomasd0a8ba62014-06-24 16:19:06 -0500162
163/* DMA cache settings - Outer sharable, write-back, write-allocate */
Lendacky, Thomascfa50c72014-07-02 13:04:57 -0500164#define XGBE_DMA_OS_AXDOMAIN 0x2
165#define XGBE_DMA_OS_ARCACHE 0xb
166#define XGBE_DMA_OS_AWCACHE 0xf
167
168/* DMA cache settings - System, no caches used */
169#define XGBE_DMA_SYS_AXDOMAIN 0x3
170#define XGBE_DMA_SYS_ARCACHE 0x0
171#define XGBE_DMA_SYS_AWCACHE 0x0
Lendacky, Thomasd0a8ba62014-06-24 16:19:06 -0500172
173#define XGBE_DMA_INTERRUPT_MASK 0x31c7
Lendacky, Thomasc5aa9e32014-06-05 09:15:06 -0500174
175#define XGMAC_MIN_PACKET 60
176#define XGMAC_STD_PACKET_MTU 1500
177#define XGMAC_MAX_STD_PACKET 1518
178#define XGMAC_JUMBO_PACKET_MTU 9000
179#define XGMAC_MAX_JUMBO_PACKET 9018
180
Lendacky, Thomasc5aa9e32014-06-05 09:15:06 -0500181/* MDIO bus phy name */
182#define XGBE_PHY_NAME "amd_xgbe_phy"
183#define XGBE_PRTAD 0
184
Lendacky, Thomas82a19032015-01-16 12:47:16 -0600185/* Common property names */
186#define XGBE_MAC_ADDR_PROPERTY "mac-address"
187#define XGBE_PHY_MODE_PROPERTY "phy-mode"
188#define XGBE_DMA_IRQS_PROPERTY "amd,per-channel-interrupt"
189
Lendacky, Thomas23e4eef2014-07-29 08:57:19 -0500190/* Device-tree clock names */
191#define XGBE_DMA_CLOCK "dma_clk"
192#define XGBE_PTP_CLOCK "ptp_clk"
Lendacky, Thomas82a19032015-01-16 12:47:16 -0600193
194/* ACPI property names */
195#define XGBE_ACPI_DMA_FREQ "amd,dma-freq"
196#define XGBE_ACPI_PTP_FREQ "amd,ptp-freq"
Lendacky, Thomas23e4eef2014-07-29 08:57:19 -0500197
198/* Timestamp support - values based on 50MHz PTP clock
199 * 50MHz => 20 nsec
200 */
201#define XGBE_TSTAMP_SSINC 20
202#define XGBE_TSTAMP_SNSINC 0
203
Lendacky, Thomasc5aa9e32014-06-05 09:15:06 -0500204/* Driver PMT macros */
205#define XGMAC_DRIVER_CONTEXT 1
206#define XGMAC_IOCTL_CONTEXT 2
207
Lendacky, Thomasf076f452014-08-29 13:16:56 -0500208#define XGBE_FIFO_MAX 81920
Lendacky, Thomasd0a8ba62014-06-24 16:19:06 -0500209#define XGBE_FIFO_SIZE_B(x) (x)
210#define XGBE_FIFO_SIZE_KB(x) (x * 1024)
Lendacky, Thomasc5aa9e32014-06-05 09:15:06 -0500211
Lendacky, Thomasfca2d992014-07-29 08:57:55 -0500212#define XGBE_TC_MIN_QUANTUM 10
Lendacky, Thomasc5aa9e32014-06-05 09:15:06 -0500213
214/* Helper macro for descriptor handling
Lendacky, Thomasd0a8ba62014-06-24 16:19:06 -0500215 * Always use XGBE_GET_DESC_DATA to access the descriptor data
Lendacky, Thomasc5aa9e32014-06-05 09:15:06 -0500216 * since the index is free-running and needs to be and-ed
217 * with the descriptor count value of the ring to index to
218 * the proper descriptor data.
219 */
Lendacky, Thomasd0a8ba62014-06-24 16:19:06 -0500220#define XGBE_GET_DESC_DATA(_ring, _idx) \
Lendacky, Thomasc5aa9e32014-06-05 09:15:06 -0500221 ((_ring)->rdata + \
222 ((_idx) & ((_ring)->rdesc_count - 1)))
223
Lendacky, Thomasc5aa9e32014-06-05 09:15:06 -0500224/* Default coalescing parameters */
Lendacky, Thomasc635eaa2015-03-20 11:50:28 -0500225#define XGMAC_INIT_DMA_TX_USECS 1000
Lendacky, Thomas9867e8f2014-07-02 13:04:46 -0500226#define XGMAC_INIT_DMA_TX_FRAMES 25
Lendacky, Thomasc5aa9e32014-06-05 09:15:06 -0500227
228#define XGMAC_MAX_DMA_RIWT 0xff
Lendacky, Thomas9867e8f2014-07-02 13:04:46 -0500229#define XGMAC_INIT_DMA_RX_USECS 30
230#define XGMAC_INIT_DMA_RX_FRAMES 25
Lendacky, Thomasc5aa9e32014-06-05 09:15:06 -0500231
232/* Flow control queue count */
233#define XGMAC_MAX_FLOW_CONTROL_QUEUES 8
234
Lendacky, Thomasb85e4d82014-06-24 16:19:29 -0500235/* Maximum MAC address hash table size (256 bits = 8 bytes) */
236#define XGBE_MAC_HASH_TABLE_SIZE 8
Lendacky, Thomasc5aa9e32014-06-05 09:15:06 -0500237
Lendacky, Thomas5b9dfe22014-11-04 16:07:02 -0600238/* Receive Side Scaling */
239#define XGBE_RSS_HASH_KEY_SIZE 40
240#define XGBE_RSS_MAX_TABLE_SIZE 256
241#define XGBE_RSS_LOOKUP_TABLE_TYPE 0
242#define XGBE_RSS_HASH_KEY_TYPE 1
243
Lendacky, Thomasc5aa9e32014-06-05 09:15:06 -0500244struct xgbe_prv_data;
245
246struct xgbe_packet_data {
Lendacky, Thomas16958a22014-11-20 11:04:08 -0600247 struct sk_buff *skb;
248
Lendacky, Thomasc5aa9e32014-06-05 09:15:06 -0500249 unsigned int attributes;
250
251 unsigned int errors;
252
253 unsigned int rdesc_count;
254 unsigned int length;
255
256 unsigned int header_len;
257 unsigned int tcp_header_len;
258 unsigned int tcp_payload_len;
259 unsigned short mss;
260
261 unsigned short vlan_ctag;
Lendacky, Thomas23e4eef2014-07-29 08:57:19 -0500262
263 u64 rx_tstamp;
Lendacky, Thomas5b9dfe22014-11-04 16:07:02 -0600264
265 u32 rss_hash;
266 enum pkt_hash_types rss_hash_type;
Lendacky, Thomas5fb4b862014-11-20 11:03:50 -0600267
268 unsigned int tx_packets;
269 unsigned int tx_bytes;
Lendacky, Thomasc5aa9e32014-06-05 09:15:06 -0500270};
271
272/* Common Rx and Tx descriptor mapping */
273struct xgbe_ring_desc {
Lendacky, Thomas5226cfc2014-11-12 10:37:49 -0600274 __le32 desc0;
275 __le32 desc1;
276 __le32 desc2;
277 __le32 desc3;
Lendacky, Thomasc5aa9e32014-06-05 09:15:06 -0500278};
279
Lendacky, Thomas08dcc472014-11-04 16:06:44 -0600280/* Page allocation related values */
281struct xgbe_page_alloc {
282 struct page *pages;
283 unsigned int pages_len;
284 unsigned int pages_offset;
285
286 dma_addr_t pages_dma;
287};
288
Lendacky, Thomas174fd252014-11-04 16:06:50 -0600289/* Ring entry buffer data */
290struct xgbe_buffer_data {
291 struct xgbe_page_alloc pa;
292 struct xgbe_page_alloc pa_unmap;
293
294 dma_addr_t dma;
295 unsigned int dma_len;
296};
297
Lendacky, Thomasc9f140e2014-11-20 11:03:44 -0600298/* Tx-related ring data */
299struct xgbe_tx_ring_data {
Lendacky, Thomas5fb4b862014-11-20 11:03:50 -0600300 unsigned int packets; /* BQL packet count */
301 unsigned int bytes; /* BQL byte count */
Lendacky, Thomasc9f140e2014-11-20 11:03:44 -0600302};
303
304/* Rx-related ring data */
305struct xgbe_rx_ring_data {
306 struct xgbe_buffer_data hdr; /* Header locations */
307 struct xgbe_buffer_data buf; /* Payload locations */
308
309 unsigned short hdr_len; /* Length of received header */
310 unsigned short len; /* Length of received packet */
311};
312
Lendacky, Thomasc5aa9e32014-06-05 09:15:06 -0500313/* Structure used to hold information related to the descriptor
314 * and the packet associated with the descriptor (always use
Lendacky, Thomasd0a8ba62014-06-24 16:19:06 -0500315 * use the XGBE_GET_DESC_DATA macro to access this data from the ring)
Lendacky, Thomasc5aa9e32014-06-05 09:15:06 -0500316 */
317struct xgbe_ring_data {
318 struct xgbe_ring_desc *rdesc; /* Virtual address of descriptor */
319 dma_addr_t rdesc_dma; /* DMA address of descriptor */
320
321 struct sk_buff *skb; /* Virtual address of SKB */
322 dma_addr_t skb_dma; /* DMA address of SKB data */
323 unsigned int skb_dma_len; /* Length of SKB DMA area */
Lendacky, Thomasc5aa9e32014-06-05 09:15:06 -0500324
Lendacky, Thomasc9f140e2014-11-20 11:03:44 -0600325 struct xgbe_tx_ring_data tx; /* Tx-related data */
326 struct xgbe_rx_ring_data rx; /* Rx-related data */
Lendacky, Thomasc5aa9e32014-06-05 09:15:06 -0500327
Lendacky, Thomasc5aa9e32014-06-05 09:15:06 -0500328 unsigned int mapped_as_page;
Lendacky, Thomas23e4eef2014-07-29 08:57:19 -0500329
330 /* Incomplete receive save location. If the budget is exhausted
331 * or the last descriptor (last normal descriptor or a following
332 * context descriptor) has not been DMA'd yet the current state
333 * of the receive processing needs to be saved.
334 */
335 unsigned int state_saved;
336 struct {
337 unsigned int incomplete;
338 unsigned int context_next;
339 struct sk_buff *skb;
340 unsigned int len;
341 unsigned int error;
342 } state;
Lendacky, Thomasc5aa9e32014-06-05 09:15:06 -0500343};
344
345struct xgbe_ring {
346 /* Ring lock - used just for TX rings at the moment */
347 spinlock_t lock;
348
349 /* Per packet related information */
350 struct xgbe_packet_data packet_data;
351
352 /* Virtual/DMA addresses and count of allocated descriptor memory */
353 struct xgbe_ring_desc *rdesc;
354 dma_addr_t rdesc_dma;
355 unsigned int rdesc_count;
356
357 /* Array of descriptor data corresponding the descriptor memory
Lendacky, Thomasd0a8ba62014-06-24 16:19:06 -0500358 * (always use the XGBE_GET_DESC_DATA macro to access this data)
Lendacky, Thomasc5aa9e32014-06-05 09:15:06 -0500359 */
360 struct xgbe_ring_data *rdata;
361
Lendacky, Thomas08dcc472014-11-04 16:06:44 -0600362 /* Page allocation for RX buffers */
Lendacky, Thomas174fd252014-11-04 16:06:50 -0600363 struct xgbe_page_alloc rx_hdr_pa;
364 struct xgbe_page_alloc rx_buf_pa;
Lendacky, Thomas08dcc472014-11-04 16:06:44 -0600365
Lendacky, Thomasc5aa9e32014-06-05 09:15:06 -0500366 /* Ring index values
367 * cur - Tx: index of descriptor to be used for current transfer
368 * Rx: index of descriptor to check for packet availability
369 * dirty - Tx: index of descriptor to check for transfer complete
Lendacky, Thomas270894e2015-01-16 12:46:50 -0600370 * Rx: index of descriptor to check for buffer reallocation
Lendacky, Thomasc5aa9e32014-06-05 09:15:06 -0500371 */
372 unsigned int cur;
373 unsigned int dirty;
374
375 /* Coalesce frame count used for interrupt bit setting */
376 unsigned int coalesce_count;
377
378 union {
379 struct {
380 unsigned int queue_stopped;
Lendacky, Thomas16958a22014-11-20 11:04:08 -0600381 unsigned int xmit_more;
Lendacky, Thomasc5aa9e32014-06-05 09:15:06 -0500382 unsigned short cur_mss;
383 unsigned short cur_vlan_ctag;
384 } tx;
Lendacky, Thomasc5aa9e32014-06-05 09:15:06 -0500385 };
386} ____cacheline_aligned;
387
388/* Structure used to describe the descriptor rings associated with
389 * a DMA channel.
390 */
391struct xgbe_channel {
392 char name[16];
393
394 /* Address of private data area for device */
395 struct xgbe_prv_data *pdata;
396
397 /* Queue index and base address of queue's DMA registers */
398 unsigned int queue_index;
399 void __iomem *dma_regs;
400
Lendacky, Thomas9227dc52014-11-04 16:06:56 -0600401 /* Per channel interrupt irq number */
402 int dma_irq;
Lendacky, Thomas54ceb9e2014-12-02 18:07:18 -0600403 char dma_irq_name[IFNAMSIZ + 32];
Lendacky, Thomas9227dc52014-11-04 16:06:56 -0600404
405 /* Netdev related settings */
406 struct napi_struct napi;
407
Lendacky, Thomasc5aa9e32014-06-05 09:15:06 -0500408 unsigned int saved_ier;
409
410 unsigned int tx_timer_active;
Lendacky, Thomasc635eaa2015-03-20 11:50:28 -0500411 struct timer_list tx_timer;
Lendacky, Thomasc5aa9e32014-06-05 09:15:06 -0500412
413 struct xgbe_ring *tx_ring;
414 struct xgbe_ring *rx_ring;
415} ____cacheline_aligned;
416
417enum xgbe_int {
Lendacky, Thomasc5aa9e32014-06-05 09:15:06 -0500418 XGMAC_INT_DMA_CH_SR_TI,
419 XGMAC_INT_DMA_CH_SR_TPS,
420 XGMAC_INT_DMA_CH_SR_TBU,
421 XGMAC_INT_DMA_CH_SR_RI,
422 XGMAC_INT_DMA_CH_SR_RBU,
423 XGMAC_INT_DMA_CH_SR_RPS,
Lendacky, Thomas9867e8f2014-07-02 13:04:46 -0500424 XGMAC_INT_DMA_CH_SR_TI_RI,
Lendacky, Thomasc5aa9e32014-06-05 09:15:06 -0500425 XGMAC_INT_DMA_CH_SR_FBE,
426 XGMAC_INT_DMA_ALL,
427};
428
429enum xgbe_int_state {
430 XGMAC_INT_STATE_SAVE,
431 XGMAC_INT_STATE_RESTORE,
432};
433
434enum xgbe_mtl_fifo_size {
435 XGMAC_MTL_FIFO_SIZE_256 = 0x00,
436 XGMAC_MTL_FIFO_SIZE_512 = 0x01,
437 XGMAC_MTL_FIFO_SIZE_1K = 0x03,
438 XGMAC_MTL_FIFO_SIZE_2K = 0x07,
439 XGMAC_MTL_FIFO_SIZE_4K = 0x0f,
440 XGMAC_MTL_FIFO_SIZE_8K = 0x1f,
441 XGMAC_MTL_FIFO_SIZE_16K = 0x3f,
442 XGMAC_MTL_FIFO_SIZE_32K = 0x7f,
443 XGMAC_MTL_FIFO_SIZE_64K = 0xff,
444 XGMAC_MTL_FIFO_SIZE_128K = 0x1ff,
445 XGMAC_MTL_FIFO_SIZE_256K = 0x3ff,
446};
447
448struct xgbe_mmc_stats {
449 /* Tx Stats */
450 u64 txoctetcount_gb;
451 u64 txframecount_gb;
452 u64 txbroadcastframes_g;
453 u64 txmulticastframes_g;
454 u64 tx64octets_gb;
455 u64 tx65to127octets_gb;
456 u64 tx128to255octets_gb;
457 u64 tx256to511octets_gb;
458 u64 tx512to1023octets_gb;
459 u64 tx1024tomaxoctets_gb;
460 u64 txunicastframes_gb;
461 u64 txmulticastframes_gb;
462 u64 txbroadcastframes_gb;
463 u64 txunderflowerror;
464 u64 txoctetcount_g;
465 u64 txframecount_g;
466 u64 txpauseframes;
467 u64 txvlanframes_g;
468
469 /* Rx Stats */
470 u64 rxframecount_gb;
471 u64 rxoctetcount_gb;
472 u64 rxoctetcount_g;
473 u64 rxbroadcastframes_g;
474 u64 rxmulticastframes_g;
475 u64 rxcrcerror;
476 u64 rxrunterror;
477 u64 rxjabbererror;
478 u64 rxundersize_g;
479 u64 rxoversize_g;
480 u64 rx64octets_gb;
481 u64 rx65to127octets_gb;
482 u64 rx128to255octets_gb;
483 u64 rx256to511octets_gb;
484 u64 rx512to1023octets_gb;
485 u64 rx1024tomaxoctets_gb;
486 u64 rxunicastframes_g;
487 u64 rxlengtherror;
488 u64 rxoutofrangetype;
489 u64 rxpauseframes;
490 u64 rxfifooverflow;
491 u64 rxvlanframes_gb;
492 u64 rxwatchdogerror;
493};
494
495struct xgbe_hw_if {
496 int (*tx_complete)(struct xgbe_ring_desc *);
497
Lendacky, Thomasc5aa9e32014-06-05 09:15:06 -0500498 int (*set_mac_address)(struct xgbe_prv_data *, u8 *addr);
Lendacky, Thomasb8763822015-04-09 12:11:57 -0500499 int (*config_rx_mode)(struct xgbe_prv_data *);
Lendacky, Thomasc5aa9e32014-06-05 09:15:06 -0500500
501 int (*enable_rx_csum)(struct xgbe_prv_data *);
502 int (*disable_rx_csum)(struct xgbe_prv_data *);
503
504 int (*enable_rx_vlan_stripping)(struct xgbe_prv_data *);
505 int (*disable_rx_vlan_stripping)(struct xgbe_prv_data *);
Lendacky, Thomas801c62d2014-06-24 16:19:24 -0500506 int (*enable_rx_vlan_filtering)(struct xgbe_prv_data *);
507 int (*disable_rx_vlan_filtering)(struct xgbe_prv_data *);
508 int (*update_vlan_hash_table)(struct xgbe_prv_data *);
Lendacky, Thomasc5aa9e32014-06-05 09:15:06 -0500509
510 int (*read_mmd_regs)(struct xgbe_prv_data *, int, int);
511 void (*write_mmd_regs)(struct xgbe_prv_data *, int, int, int);
512 int (*set_gmii_speed)(struct xgbe_prv_data *);
513 int (*set_gmii_2500_speed)(struct xgbe_prv_data *);
514 int (*set_xgmii_speed)(struct xgbe_prv_data *);
515
516 void (*enable_tx)(struct xgbe_prv_data *);
517 void (*disable_tx)(struct xgbe_prv_data *);
518 void (*enable_rx)(struct xgbe_prv_data *);
519 void (*disable_rx)(struct xgbe_prv_data *);
520
521 void (*powerup_tx)(struct xgbe_prv_data *);
522 void (*powerdown_tx)(struct xgbe_prv_data *);
523 void (*powerup_rx)(struct xgbe_prv_data *);
524 void (*powerdown_rx)(struct xgbe_prv_data *);
525
526 int (*init)(struct xgbe_prv_data *);
527 int (*exit)(struct xgbe_prv_data *);
528
529 int (*enable_int)(struct xgbe_channel *, enum xgbe_int);
530 int (*disable_int)(struct xgbe_channel *, enum xgbe_int);
Lendacky, Thomasa9d41982014-11-04 16:06:32 -0600531 void (*dev_xmit)(struct xgbe_channel *);
Lendacky, Thomasc5aa9e32014-06-05 09:15:06 -0500532 int (*dev_read)(struct xgbe_channel *);
533 void (*tx_desc_init)(struct xgbe_channel *);
534 void (*rx_desc_init)(struct xgbe_channel *);
Lendacky, Thomasc5aa9e32014-06-05 09:15:06 -0500535 void (*tx_desc_reset)(struct xgbe_ring_data *);
Lendacky, Thomas8dee19e2015-04-09 12:11:51 -0500536 void (*rx_desc_reset)(struct xgbe_prv_data *, struct xgbe_ring_data *,
537 unsigned int);
Lendacky, Thomasc5aa9e32014-06-05 09:15:06 -0500538 int (*is_last_desc)(struct xgbe_ring_desc *);
539 int (*is_context_desc)(struct xgbe_ring_desc *);
Lendacky, Thomas16958a22014-11-20 11:04:08 -0600540 void (*tx_start_xmit)(struct xgbe_channel *, struct xgbe_ring *);
Lendacky, Thomasc5aa9e32014-06-05 09:15:06 -0500541
542 /* For FLOW ctrl */
543 int (*config_tx_flow_control)(struct xgbe_prv_data *);
544 int (*config_rx_flow_control)(struct xgbe_prv_data *);
545
546 /* For RX coalescing */
547 int (*config_rx_coalesce)(struct xgbe_prv_data *);
548 int (*config_tx_coalesce)(struct xgbe_prv_data *);
549 unsigned int (*usec_to_riwt)(struct xgbe_prv_data *, unsigned int);
550 unsigned int (*riwt_to_usec)(struct xgbe_prv_data *, unsigned int);
551
552 /* For RX and TX threshold config */
553 int (*config_rx_threshold)(struct xgbe_prv_data *, unsigned int);
554 int (*config_tx_threshold)(struct xgbe_prv_data *, unsigned int);
555
556 /* For RX and TX Store and Forward Mode config */
557 int (*config_rsf_mode)(struct xgbe_prv_data *, unsigned int);
558 int (*config_tsf_mode)(struct xgbe_prv_data *, unsigned int);
559
560 /* For TX DMA Operate on Second Frame config */
561 int (*config_osp_mode)(struct xgbe_prv_data *);
562
563 /* For RX and TX PBL config */
564 int (*config_rx_pbl_val)(struct xgbe_prv_data *);
565 int (*get_rx_pbl_val)(struct xgbe_prv_data *);
566 int (*config_tx_pbl_val)(struct xgbe_prv_data *);
567 int (*get_tx_pbl_val)(struct xgbe_prv_data *);
568 int (*config_pblx8)(struct xgbe_prv_data *);
569
570 /* For MMC statistics */
571 void (*rx_mmc_int)(struct xgbe_prv_data *);
572 void (*tx_mmc_int)(struct xgbe_prv_data *);
573 void (*read_mmc_stats)(struct xgbe_prv_data *);
Lendacky, Thomas23e4eef2014-07-29 08:57:19 -0500574
575 /* For Timestamp config */
576 int (*config_tstamp)(struct xgbe_prv_data *, unsigned int);
577 void (*update_tstamp_addend)(struct xgbe_prv_data *, unsigned int);
578 void (*set_tstamp_time)(struct xgbe_prv_data *, unsigned int sec,
579 unsigned int nsec);
580 u64 (*get_tstamp_time)(struct xgbe_prv_data *);
581 u64 (*get_tx_tstamp)(struct xgbe_prv_data *);
Lendacky, Thomasfca2d992014-07-29 08:57:55 -0500582
583 /* For Data Center Bridging config */
584 void (*config_dcb_tc)(struct xgbe_prv_data *);
585 void (*config_dcb_pfc)(struct xgbe_prv_data *);
Lendacky, Thomas5b9dfe22014-11-04 16:07:02 -0600586
587 /* For Receive Side Scaling */
588 int (*enable_rss)(struct xgbe_prv_data *);
589 int (*disable_rss)(struct xgbe_prv_data *);
Lendacky, Thomasf6ac8622014-11-04 16:07:23 -0600590 int (*set_rss_hash_key)(struct xgbe_prv_data *, const u8 *);
591 int (*set_rss_lookup_table)(struct xgbe_prv_data *, const u32 *);
Lendacky, Thomasc5aa9e32014-06-05 09:15:06 -0500592};
593
594struct xgbe_desc_if {
595 int (*alloc_ring_resources)(struct xgbe_prv_data *);
596 void (*free_ring_resources)(struct xgbe_prv_data *);
597 int (*map_tx_skb)(struct xgbe_channel *, struct sk_buff *);
Lendacky, Thomas270894e2015-01-16 12:46:50 -0600598 int (*map_rx_buffer)(struct xgbe_prv_data *, struct xgbe_ring *,
599 struct xgbe_ring_data *);
Lendacky, Thomas08dcc472014-11-04 16:06:44 -0600600 void (*unmap_rdata)(struct xgbe_prv_data *, struct xgbe_ring_data *);
Lendacky, Thomasc5aa9e32014-06-05 09:15:06 -0500601 void (*wrapper_tx_desc_init)(struct xgbe_prv_data *);
602 void (*wrapper_rx_desc_init)(struct xgbe_prv_data *);
603};
604
605/* This structure contains flags that indicate what hardware features
606 * or configurations are present in the device.
607 */
608struct xgbe_hw_features {
Lendacky, Thomasa9a4a2d2014-08-29 13:16:50 -0500609 /* HW Version */
610 unsigned int version;
611
Lendacky, Thomasc5aa9e32014-06-05 09:15:06 -0500612 /* HW Feature Register0 */
613 unsigned int gmii; /* 1000 Mbps support */
614 unsigned int vlhash; /* VLAN Hash Filter */
615 unsigned int sma; /* SMA(MDIO) Interface */
616 unsigned int rwk; /* PMT remote wake-up packet */
617 unsigned int mgk; /* PMT magic packet */
618 unsigned int mmc; /* RMON module */
619 unsigned int aoe; /* ARP Offload */
Joe Perchesdbedd442015-03-06 20:49:12 -0800620 unsigned int ts; /* IEEE 1588-2008 Advanced Timestamp */
Lendacky, Thomasc5aa9e32014-06-05 09:15:06 -0500621 unsigned int eee; /* Energy Efficient Ethernet */
622 unsigned int tx_coe; /* Tx Checksum Offload */
623 unsigned int rx_coe; /* Rx Checksum Offload */
624 unsigned int addn_mac; /* Additional MAC Addresses */
625 unsigned int ts_src; /* Timestamp Source */
626 unsigned int sa_vlan_ins; /* Source Address or VLAN Insertion */
627
628 /* HW Feature Register1 */
629 unsigned int rx_fifo_size; /* MTL Receive FIFO Size */
630 unsigned int tx_fifo_size; /* MTL Transmit FIFO Size */
631 unsigned int adv_ts_hi; /* Advance Timestamping High Word */
Lendacky, Thomas386d3252015-03-20 11:50:22 -0500632 unsigned int dma_width; /* DMA width */
Lendacky, Thomasc5aa9e32014-06-05 09:15:06 -0500633 unsigned int dcb; /* DCB Feature */
634 unsigned int sph; /* Split Header Feature */
635 unsigned int tso; /* TCP Segmentation Offload */
636 unsigned int dma_debug; /* DMA Debug Registers */
637 unsigned int rss; /* Receive Side Scaling */
Lendacky, Thomasfca2d992014-07-29 08:57:55 -0500638 unsigned int tc_cnt; /* Number of Traffic Classes */
Lendacky, Thomasc5aa9e32014-06-05 09:15:06 -0500639 unsigned int hash_table_size; /* Hash Table Size */
640 unsigned int l3l4_filter_num; /* Number of L3-L4 Filters */
641
642 /* HW Feature Register2 */
643 unsigned int rx_q_cnt; /* Number of MTL Receive Queues */
644 unsigned int tx_q_cnt; /* Number of MTL Transmit Queues */
645 unsigned int rx_ch_cnt; /* Number of DMA Receive Channels */
646 unsigned int tx_ch_cnt; /* Number of DMA Transmit Channels */
647 unsigned int pps_out_num; /* Number of PPS outputs */
648 unsigned int aux_snap_num; /* Number of Aux snapshot inputs */
649};
650
651struct xgbe_prv_data {
652 struct net_device *netdev;
653 struct platform_device *pdev;
Lendacky, Thomas82a19032015-01-16 12:47:16 -0600654 struct acpi_device *adev;
Lendacky, Thomasc5aa9e32014-06-05 09:15:06 -0500655 struct device *dev;
656
Lendacky, Thomas82a19032015-01-16 12:47:16 -0600657 /* ACPI or DT flag */
658 unsigned int use_acpi;
659
Lendacky, Thomasc5aa9e32014-06-05 09:15:06 -0500660 /* XGMAC/XPCS related mmio registers */
661 void __iomem *xgmac_regs; /* XGMAC CSRs */
662 void __iomem *xpcs_regs; /* XPCS MMD registers */
663
664 /* Overall device lock */
665 spinlock_t lock;
666
667 /* XPCS indirect addressing mutex */
668 struct mutex xpcs_mutex;
669
Lendacky, Thomas5b9dfe22014-11-04 16:07:02 -0600670 /* RSS addressing mutex */
671 struct mutex rss_mutex;
672
Lendacky, Thomas9227dc52014-11-04 16:06:56 -0600673 int dev_irq;
674 unsigned int per_channel_irq;
Lendacky, Thomasc5aa9e32014-06-05 09:15:06 -0500675
676 struct xgbe_hw_if hw_if;
677 struct xgbe_desc_if desc_if;
678
Lendacky, Thomascfa50c72014-07-02 13:04:57 -0500679 /* AXI DMA settings */
Lendacky, Thomas82a19032015-01-16 12:47:16 -0600680 unsigned int coherent;
Lendacky, Thomascfa50c72014-07-02 13:04:57 -0500681 unsigned int axdomain;
682 unsigned int arcache;
683 unsigned int awcache;
684
Lendacky, Thomasc5aa9e32014-06-05 09:15:06 -0500685 /* Rings for Tx/Rx on a DMA channel */
686 struct xgbe_channel *channel;
687 unsigned int channel_count;
688 unsigned int tx_ring_count;
689 unsigned int tx_desc_count;
690 unsigned int rx_ring_count;
691 unsigned int rx_desc_count;
692
Lendacky, Thomas853eb162014-07-29 08:57:31 -0500693 unsigned int tx_q_count;
694 unsigned int rx_q_count;
695
Lendacky, Thomasc5aa9e32014-06-05 09:15:06 -0500696 /* Tx/Rx common settings */
697 unsigned int pblx8;
698
699 /* Tx settings */
700 unsigned int tx_sf_mode;
701 unsigned int tx_threshold;
702 unsigned int tx_pbl;
703 unsigned int tx_osp_mode;
704
705 /* Rx settings */
706 unsigned int rx_sf_mode;
707 unsigned int rx_threshold;
708 unsigned int rx_pbl;
709
710 /* Tx coalescing settings */
711 unsigned int tx_usecs;
712 unsigned int tx_frames;
713
714 /* Rx coalescing settings */
715 unsigned int rx_riwt;
Lendacky, Thomas4a57ebc2015-03-20 11:50:34 -0500716 unsigned int rx_usecs;
Lendacky, Thomasc5aa9e32014-06-05 09:15:06 -0500717 unsigned int rx_frames;
718
Lendacky, Thomas08dcc472014-11-04 16:06:44 -0600719 /* Current Rx buffer size */
Lendacky, Thomasc5aa9e32014-06-05 09:15:06 -0500720 unsigned int rx_buf_size;
721
722 /* Flow control settings */
723 unsigned int pause_autoneg;
724 unsigned int tx_pause;
725 unsigned int rx_pause;
726
Lendacky, Thomas5b9dfe22014-11-04 16:07:02 -0600727 /* Receive Side Scaling settings */
728 u8 rss_key[XGBE_RSS_HASH_KEY_SIZE];
729 u32 rss_table[XGBE_RSS_MAX_TABLE_SIZE];
730 u32 rss_options;
731
Lendacky, Thomasc5aa9e32014-06-05 09:15:06 -0500732 /* MDIO settings */
733 struct module *phy_module;
734 char *mii_bus_id;
735 struct mii_bus *mii;
736 int mdio_mmd;
737 struct phy_device *phydev;
738 int default_autoneg;
739 int default_speed;
740
741 /* Current PHY settings */
742 phy_interface_t phy_mode;
743 int phy_link;
744 int phy_speed;
745 unsigned int phy_tx_pause;
746 unsigned int phy_rx_pause;
747
748 /* Netdev related settings */
Lendacky, Thomas82a19032015-01-16 12:47:16 -0600749 unsigned char mac_addr[ETH_ALEN];
Lendacky, Thomasc5aa9e32014-06-05 09:15:06 -0500750 netdev_features_t netdev_features;
751 struct napi_struct napi;
752 struct xgbe_mmc_stats mmc_stats;
753
Lendacky, Thomas801c62d2014-06-24 16:19:24 -0500754 /* Filtering support */
755 unsigned long active_vlans[BITS_TO_LONGS(VLAN_N_VID)];
756
Lendacky, Thomas23e4eef2014-07-29 08:57:19 -0500757 /* Device clocks */
758 struct clk *sysclk;
Lendacky, Thomas82a19032015-01-16 12:47:16 -0600759 unsigned long sysclk_rate;
Lendacky, Thomas23e4eef2014-07-29 08:57:19 -0500760 struct clk *ptpclk;
Lendacky, Thomas82a19032015-01-16 12:47:16 -0600761 unsigned long ptpclk_rate;
Lendacky, Thomas23e4eef2014-07-29 08:57:19 -0500762
763 /* Timestamp support */
764 spinlock_t tstamp_lock;
765 struct ptp_clock_info ptp_clock_info;
766 struct ptp_clock *ptp_clock;
767 struct hwtstamp_config tstamp_config;
768 struct cyclecounter tstamp_cc;
769 struct timecounter tstamp_tc;
770 unsigned int tstamp_addend;
771 struct work_struct tx_tstamp_work;
772 struct sk_buff *tx_tstamp_skb;
773 u64 tx_tstamp;
Lendacky, Thomasc5aa9e32014-06-05 09:15:06 -0500774
Lendacky, Thomasfca2d992014-07-29 08:57:55 -0500775 /* DCB support */
776 struct ieee_ets *ets;
777 struct ieee_pfc *pfc;
778 unsigned int q2tc_map[XGBE_MAX_QUEUES];
779 unsigned int prio2q_map[IEEE_8021QAZ_MAX_TCS];
780
Lendacky, Thomasc5aa9e32014-06-05 09:15:06 -0500781 /* Hardware features of the device */
782 struct xgbe_hw_features hw_feat;
783
784 /* Device restart work structure */
785 struct work_struct restart_work;
786
787 /* Keeps track of power mode */
788 unsigned int power_down;
789
790#ifdef CONFIG_DEBUG_FS
791 struct dentry *xgbe_debugfs;
792
793 unsigned int debugfs_xgmac_reg;
794
795 unsigned int debugfs_xpcs_mmd;
796 unsigned int debugfs_xpcs_reg;
797#endif
798};
799
800/* Function prototypes*/
801
802void xgbe_init_function_ptrs_dev(struct xgbe_hw_if *);
803void xgbe_init_function_ptrs_desc(struct xgbe_desc_if *);
804struct net_device_ops *xgbe_get_netdev_ops(void);
805struct ethtool_ops *xgbe_get_ethtool_ops(void);
Lendacky, Thomasfca2d992014-07-29 08:57:55 -0500806#ifdef CONFIG_AMD_XGBE_DCB
807const struct dcbnl_rtnl_ops *xgbe_get_dcbnl_ops(void);
808#endif
Lendacky, Thomasc5aa9e32014-06-05 09:15:06 -0500809
810int xgbe_mdio_register(struct xgbe_prv_data *);
811void xgbe_mdio_unregister(struct xgbe_prv_data *);
812void xgbe_dump_phy_registers(struct xgbe_prv_data *);
Lendacky, Thomas23e4eef2014-07-29 08:57:19 -0500813void xgbe_ptp_register(struct xgbe_prv_data *);
814void xgbe_ptp_unregister(struct xgbe_prv_data *);
Lendacky, Thomasc5aa9e32014-06-05 09:15:06 -0500815void xgbe_dump_tx_desc(struct xgbe_ring *, unsigned int, unsigned int,
816 unsigned int);
817void xgbe_dump_rx_desc(struct xgbe_ring *, struct xgbe_ring_desc *,
818 unsigned int);
819void xgbe_print_pkt(struct net_device *, struct sk_buff *, bool);
820void xgbe_get_all_hw_features(struct xgbe_prv_data *);
821int xgbe_powerup(struct net_device *, unsigned int);
822int xgbe_powerdown(struct net_device *, unsigned int);
823void xgbe_init_rx_coalesce(struct xgbe_prv_data *);
824void xgbe_init_tx_coalesce(struct xgbe_prv_data *);
825
826#ifdef CONFIG_DEBUG_FS
827void xgbe_debugfs_init(struct xgbe_prv_data *);
828void xgbe_debugfs_exit(struct xgbe_prv_data *);
829#else
830static inline void xgbe_debugfs_init(struct xgbe_prv_data *pdata) {}
831static inline void xgbe_debugfs_exit(struct xgbe_prv_data *pdata) {}
832#endif /* CONFIG_DEBUG_FS */
833
834/* NOTE: Uncomment for TX and RX DESCRIPTOR DUMP in KERNEL LOG */
835#if 0
836#define XGMAC_ENABLE_TX_DESC_DUMP
837#define XGMAC_ENABLE_RX_DESC_DUMP
838#endif
839
840/* NOTE: Uncomment for TX and RX PACKET DUMP in KERNEL LOG */
841#if 0
842#define XGMAC_ENABLE_TX_PKT_DUMP
843#define XGMAC_ENABLE_RX_PKT_DUMP
844#endif
845
846/* NOTE: Uncomment for function trace log messages in KERNEL LOG */
847#if 0
848#define YDEBUG
849#define YDEBUG_MDIO
850#endif
851
852/* For debug prints */
853#ifdef YDEBUG
854#define DBGPR(x...) pr_alert(x)
855#define DBGPHY_REGS(x...) xgbe_dump_phy_registers(x)
856#else
857#define DBGPR(x...) do { } while (0)
858#define DBGPHY_REGS(x...) do { } while (0)
859#endif
860
861#ifdef YDEBUG_MDIO
862#define DBGPR_MDIO(x...) pr_alert(x)
863#else
864#define DBGPR_MDIO(x...) do { } while (0)
865#endif
866
867#endif