xref: /illumos-gate/usr/src/uts/common/io/rge/rge.h (revision 581cede61ac9c14d8d4ea452562a567189eead78)
1 /*
2  * CDDL HEADER START
3  *
4  * The contents of this file are subject to the terms of the
5  * Common Development and Distribution License (the "License").
6  * You may not use this file except in compliance with the License.
7  *
8  * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
9  * or http://www.opensolaris.org/os/licensing.
10  * See the License for the specific language governing permissions
11  * and limitations under the License.
12  *
13  * When distributing Covered Code, include this CDDL HEADER in each
14  * file and include the License file at usr/src/OPENSOLARIS.LICENSE.
15  * If applicable, add the following below this CDDL HEADER, with the
16  * fields enclosed by brackets "[]" replaced with your own identifying
17  * information: Portions Copyright [yyyy] [name of copyright owner]
18  *
19  * CDDL HEADER END
20  */
21 /*
22  * Copyright 2008 Sun Microsystems, Inc.  All rights reserved.
23  * Use is subject to license terms.
24  */
25 
26 #ifndef _RGE_H
27 #define	_RGE_H
28 
29 #ifdef __cplusplus
30 extern "C" {
31 #endif
32 
33 #include <sys/types.h>
34 #include <sys/stream.h>
35 #include <sys/strsun.h>
36 #include <sys/strsubr.h>
37 #include <sys/stat.h>
38 #include <sys/pci.h>
39 #include <sys/note.h>
40 #include <sys/modctl.h>
41 #include <sys/kstat.h>
42 #include <sys/ethernet.h>
43 #include <sys/vlan.h>
44 #include <sys/errno.h>
45 #include <sys/dlpi.h>
46 #include <sys/devops.h>
47 #include <sys/debug.h>
48 #include <sys/conf.h>
49 
50 #include <netinet/ip6.h>
51 #include <inet/common.h>
52 #include <inet/ip.h>
53 #include <inet/mi.h>
54 #include <inet/nd.h>
55 #include <sys/pattr.h>
56 
57 #include <sys/ddi.h>
58 #include <sys/sunddi.h>
59 
60 #include <sys/mac_provider.h>
61 #include <sys/mac_ether.h>
62 
63 /*
64  * Reconfiguring the network devices requires the net_config privilege
65  * in Solaris 10+.
66  */
67 extern int secpolicy_net_config(const cred_t *, boolean_t);
68 
69 #include <sys/netlb.h>			/* originally from cassini	*/
70 #include <sys/miiregs.h>		/* by fjlite out of intel 	*/
71 
72 #include "rge_hw.h"
73 
74 /*
75  * Name of the driver
76  */
77 #define	RGE_DRIVER_NAME		"rge"
78 
79 /*
80  * The driver supports the NDD ioctls ND_GET/ND_SET, and the loopback
81  * ioctls LB_GET_INFO_SIZE/LB_GET_INFO/LB_GET_MODE/LB_SET_MODE
82  *
83  * These are the values to use with LD_SET_MODE.
84  */
85 #define	RGE_LOOP_NONE		0
86 #define	RGE_LOOP_INTERNAL_PHY	1
87 #define	RGE_LOOP_INTERNAL_MAC	2
88 
89 /*
90  * RGE-specific ioctls ...
91  */
92 #define	RGE_IOC			((((('R' << 8) + 'G') << 8) + 'E') << 8)
93 
94 /*
95  * PHY register read/write ioctls, used by cable test software
96  */
97 #define	RGE_MII_READ		(RGE_IOC|1)
98 #define	RGE_MII_WRITE		(RGE_IOC|2)
99 
100 struct rge_mii_rw {
101 	uint32_t	mii_reg;	/* PHY register number [0..31]	*/
102 	uint32_t	mii_data;	/* data to write/data read	*/
103 };
104 
105 /*
106  * These diagnostic IOCTLS are enabled only in DEBUG drivers
107  */
108 #define	RGE_DIAG		(RGE_IOC|10)	/* currently a no-op	*/
109 #define	RGE_PEEK		(RGE_IOC|11)
110 #define	RGE_POKE		(RGE_IOC|12)
111 #define	RGE_PHY_RESET		(RGE_IOC|13)
112 #define	RGE_SOFT_RESET		(RGE_IOC|14)
113 #define	RGE_HARD_RESET		(RGE_IOC|15)
114 
115 typedef struct {
116 	uint64_t		pp_acc_size;	/* in bytes: 1,2,4,8	*/
117 	uint64_t		pp_acc_space;	/* See #defines below	*/
118 	uint64_t		pp_acc_offset;
119 	uint64_t		pp_acc_data;	/* output for peek	*/
120 						/* input for poke	*/
121 } rge_peekpoke_t;
122 
123 #define	RGE_PP_SPACE_CFG	0		/* PCI config space	*/
124 #define	RGE_PP_SPACE_REG	1		/* PCI memory space	*/
125 #define	RGE_PP_SPACE_MII	2		/* PHY's MII registers	*/
126 #define	RGE_PP_SPACE_RGE	3		/* driver's soft state	*/
127 #define	RGE_PP_SPACE_TXDESC	4		/* TX descriptors	*/
128 #define	RGE_PP_SPACE_TXBUFF	5		/* TX buffers		*/
129 #define	RGE_PP_SPACE_RXDESC	6		/* RX descriptors	*/
130 #define	RGE_PP_SPACE_RXBUFF	7		/* RX buffers		*/
131 #define	RGE_PP_SPACE_STATISTICS	8		/* statistics block	*/
132 
133 /*
134  * RTL8169 CRC poly
135  */
136 #define	RGE_HASH_POLY		0x04C11DB7	/* 0x04C11DB6 */
137 #define	RGE_HASH_CRC		0xFFFFFFFFU
138 #define	RGE_MCAST_BUF_SIZE	64	/* multicast hash table size in bits */
139 
140 /*
141  * Rx/Tx buffer parameters
142  */
143 #define	RGE_BUF_SLOTS		2048
144 #define	RGE_RECV_COPY_SIZE	256
145 #define	RGE_HEADROOM		6
146 
147 /*
148  * Driver chip operation parameters
149  */
150 #define	RGE_CYCLIC_PERIOD	(1000000000)	/* ~1s */
151 #define	CHIP_RESET_LOOP		1000
152 #define	PHY_RESET_LOOP		10
153 #define	STATS_DUMP_LOOP		1000
154 #define	RXBUFF_FREE_LOOP	1000
155 #define	RGE_RX_INT_TIME		128
156 #define	RGE_RX_INT_PKTS		8
157 
158 /*
159  * Named Data (ND) Parameter Management Structure
160  */
161 typedef struct {
162 	int			ndp_info;
163 	int			ndp_min;
164 	int			ndp_max;
165 	int			ndp_val;
166 	char			*ndp_name;
167 } nd_param_t;				/* 0x18 (24) bytes	*/
168 
169 /*
170  * NDD parameter indexes, divided into:
171  *
172  *	read-only parameters describing the hardware's capabilities
173  *	read-write parameters controlling the advertised capabilities
174  *	read-only parameters describing the partner's capabilities
175  *	read-only parameters describing the link state
176  */
177 enum {
178 	PARAM_AUTONEG_CAP = 0,
179 	PARAM_PAUSE_CAP,
180 	PARAM_ASYM_PAUSE_CAP,
181 	PARAM_1000FDX_CAP,
182 	PARAM_1000HDX_CAP,
183 	PARAM_100T4_CAP,
184 	PARAM_100FDX_CAP,
185 	PARAM_100HDX_CAP,
186 	PARAM_10FDX_CAP,
187 	PARAM_10HDX_CAP,
188 
189 	PARAM_ADV_AUTONEG_CAP,
190 	PARAM_ADV_PAUSE_CAP,
191 	PARAM_ADV_ASYM_PAUSE_CAP,
192 	PARAM_ADV_1000FDX_CAP,
193 	PARAM_ADV_1000HDX_CAP,
194 	PARAM_ADV_100T4_CAP,
195 	PARAM_ADV_100FDX_CAP,
196 	PARAM_ADV_100HDX_CAP,
197 	PARAM_ADV_10FDX_CAP,
198 	PARAM_ADV_10HDX_CAP,
199 
200 	PARAM_LINK_STATUS,
201 	PARAM_LINK_SPEED,
202 	PARAM_LINK_DUPLEX,
203 
204 	PARAM_LOOP_MODE,
205 
206 	PARAM_COUNT
207 };
208 
209 enum rge_chip_state {
210 	RGE_CHIP_FAULT = -2,			/* fault, need reset	*/
211 	RGE_CHIP_ERROR,				/* error, want reset	*/
212 	RGE_CHIP_INITIAL,			/* Initial state only	*/
213 	RGE_CHIP_RESET,				/* reset, need init	*/
214 	RGE_CHIP_STOPPED,			/* Tx/Rx stopped	*/
215 	RGE_CHIP_RUNNING			/* with interrupts	*/
216 };
217 
218 enum rge_mac_state {
219 	RGE_MAC_ATTACH = 0,
220 	RGE_MAC_STOPPED,
221 	RGE_MAC_STARTED,
222 	RGE_MAC_UNATTACH
223 };
224 
225 enum rge_sync_op {
226 	RGE_OP_NULL,
227 	RGE_GET_MAC,				/* get mac address operation */
228 	RGE_SET_MAC,				/* set mac address operation */
229 	RGE_SET_MUL,				/* set multicast address op */
230 	RGE_SET_PROMISC				/* set promisc mode */
231 };
232 
233 /*
234  * (Internal) return values from ioctl subroutines
235  */
236 enum ioc_reply {
237 	IOC_INVAL = -1,				/* bad, NAK with EINVAL	*/
238 	IOC_DONE,				/* OK, reply sent	*/
239 	IOC_ACK,				/* OK, just send ACK	*/
240 	IOC_REPLY,				/* OK, just send reply	*/
241 	IOC_RESTART_ACK,			/* OK, restart & ACK	*/
242 	IOC_RESTART_REPLY			/* OK, restart & reply	*/
243 };
244 
245 /*
246  * (Internal) enumeration of this driver's kstats
247  */
248 enum {
249 	RGE_KSTAT_DRIVER = 0,
250 	RGE_KSTAT_COUNT
251 };
252 
253 /*
254  * Basic data types, for clarity in distinguishing 'numbers'
255  * used for different purposes ...
256  *
257  * A <rge_regno_t> is a register 'address' (offset) in any one of
258  * various address spaces (PCI config space, PCI memory-mapped I/O
259  * register space, MII registers, etc).  None of these exceeds 64K,
260  * so we could use a 16-bit representation but pointer-sized objects
261  * are more "natural" in most architectures; they seem to be handled
262  * more efficiently on SPARC and no worse on x86.
263  *
264  * RGE_REGNO_NONE represents the non-existent value in this space.
265  */
266 typedef uintptr_t rge_regno_t;			/* register # (offset)	*/
267 #define	RGE_REGNO_NONE		(~(uintptr_t)0u)
268 
269 /*
270  * Describes one chunk of allocated DMA-able memory
271  *
272  * In some cases, this is a single chunk as allocated from the system;
273  * but we also use this structure to represent slices carved off such
274  * a chunk.  Even when we don't really need all the information, we
275  * use this structure as a convenient way of correlating the various
276  * ways of looking at a piece of memory (kernel VA, IO space DVMA,
277  * handle+offset, etc).
278  */
279 typedef struct {
280 	ddi_acc_handle_t	acc_hdl;	/* handle for memory	*/
281 	void			*mem_va;	/* CPU VA of memory	*/
282 	uint32_t		nslots;		/* number of slots	*/
283 	uint32_t		size;		/* size per slot	*/
284 	size_t			alength;	/* allocated size */
285 	ddi_dma_handle_t	dma_hdl;	/* DMA handle */
286 	offset_t		offset;		/* relative to handle	*/
287 	ddi_dma_cookie_t	cookie;		/* associated cookie */
288 	uint32_t		ncookies;	/* must be 1 */
289 	uint32_t		token;		/* arbitrary identifier	*/
290 } dma_area_t;
291 
292 /*
293  * Software version of the Receive Buffer Descriptor
294  */
295 typedef struct {
296 	caddr_t			private;	/* pointer to rge */
297 	dma_area_t		pbuf;		/* (const) related	*/
298 						/* buffer area		*/
299 	frtn_t			rx_recycle;	/* recycle function */
300 	mblk_t			*mp;
301 } dma_buf_t;
302 
303 typedef struct sw_rbd {
304 	dma_buf_t		*rx_buf;
305 	uint8_t			flags;
306 } sw_rbd_t;
307 
308 /*
309  * Software version of the Send Buffer Descriptor
310  */
311 typedef struct sw_sbd {
312 	dma_area_t		desc;		/* (const) related h/w	*/
313 						/* descriptor area	*/
314 	dma_area_t		pbuf;		/* (const) related	*/
315 						/* buffer area		*/
316 } sw_sbd_t;
317 
318 
319 #define	HW_RBD_INIT(rbd, slot)					\
320 	rbd->flags_len |= RGE_BSWAP_32(BD_FLAG_HW_OWN);		\
321 	rbd->vlan_tag = 0;					\
322 	if (slot == (RGE_RECV_SLOTS -1))			\
323 		rbd->flags_len |= RGE_BSWAP_32(BD_FLAG_EOR);
324 #define	HW_SBD_INIT(sbd, slot)					\
325 	sbd->flags_len = 0;					\
326 	if (slot == (RGE_SEND_SLOTS -1))			\
327 		sbd->flags_len |= RGE_BSWAP_32(BD_FLAG_EOR);
328 #define	HW_SBD_SET(sbd, slot)					\
329 	sbd->flags_len |= RGE_BSWAP_32(SBD_FLAG_TX_PKT);	\
330 	if (slot == (RGE_SEND_SLOTS -1))			\
331 		sbd->flags_len |= RGE_BSWAP_32(BD_FLAG_EOR);
332 
333 /*
334  * Describes the characteristics of a specific chip
335  */
336 typedef struct {
337 	uint16_t		command;	/* saved during attach	*/
338 	uint16_t		vendor;		/* vendor-id		*/
339 	uint16_t		device;		/* device-id		*/
340 	uint16_t		subven;		/* subsystem-vendor-id	*/
341 	uint16_t		subdev;		/* subsystem-id		*/
342 	uint8_t			revision;	/* revision-id		*/
343 	uint8_t			clsize;		/* cache-line-size	*/
344 	uint8_t			latency;	/* latency-timer	*/
345 	boolean_t		is_pcie;
346 	uint32_t		mac_ver;
347 	uint32_t		phy_ver;
348 	uint32_t		rxconfig;
349 	uint32_t		txconfig;
350 } chip_id_t;
351 
352 typedef struct rge_stats {
353 	uint64_t	rpackets;
354 	uint64_t	rbytes;
355 	uint64_t	opackets;
356 	uint64_t	obytes;
357 	uint32_t	overflow;
358 	uint32_t	defer;		/* dot3StatsDeferredTransmissions */
359 	uint32_t	crc_err;	/* dot3StatsFCSErrors */
360 	uint32_t	in_short;
361 	uint32_t	no_rcvbuf;	/* ifInDiscards */
362 	uint32_t	intr;		/* interrupt count */
363 	uint16_t	chip_reset;
364 	uint16_t	phy_reset;
365 	boolean_t	tx_pre_ismax;
366 	boolean_t	tx_cur_ismax;
367 } rge_stats_t;
368 
369 /*
370  * Per-instance soft-state structure
371  */
372 typedef struct rge {
373 	dev_info_t		*devinfo;	/* device instance	*/
374 	mac_handle_t		mh;		/* mac module handle	*/
375 	ddi_acc_handle_t	cfg_handle;	/* DDI I/O handle	*/
376 	ddi_acc_handle_t	io_handle;	/* DDI I/O handle	*/
377 	caddr_t			io_regs;	/* mapped registers	*/
378 	ddi_periodic_t		periodic_id;	/* periodical callback	*/
379 	ddi_softint_handle_t	resched_hdl;	/* reschedule callback	*/
380 	ddi_softint_handle_t	factotum_hdl;	/* factotum callback	*/
381 	uint_t			soft_pri;
382 	ddi_intr_handle_t 	*htable;	/* For array of interrupts */
383 	int			intr_type;	/* What type of interrupt */
384 	int			intr_rqst;	/* # of request intrs count */
385 	int			intr_cnt;	/* # of intrs count returned */
386 	uint_t			intr_pri;	/* Interrupt priority	*/
387 	int			intr_cap;	/* Interrupt capabilities */
388 	boolean_t		msi_enable;
389 
390 	uint32_t		ethmax_size;
391 	uint32_t		default_mtu;
392 	uint32_t		rxbuf_size;
393 	uint32_t		txbuf_size;
394 	uint32_t		chip_flags;
395 	uint32_t		head_room;
396 	char			ifname[8];	/* "rge0" ... "rge999"	*/
397 	int32_t			instance;
398 	uint32_t		progress;	/* attach tracking	*/
399 	uint32_t		debug;		/* per-instance debug	*/
400 	chip_id_t		chipid;
401 
402 	/*
403 	 * These structures describe the blocks of memory allocated during
404 	 * attach().  They remain unchanged thereafter, although the memory
405 	 * they describe is carved up into various separate regions and may
406 	 * therefore be described by other structures as well.
407 	 */
408 	dma_area_t		dma_area_rxdesc;
409 	dma_area_t		dma_area_txdesc;
410 	dma_area_t		dma_area_stats;
411 				/* describes hardware statistics area	*/
412 
413 	uint8_t			netaddr[ETHERADDRL];	/* mac address	*/
414 	uint16_t		int_mask;	/* interrupt mask	*/
415 
416 	/* used for multicast/promisc mode set */
417 	char			mcast_refs[RGE_MCAST_BUF_SIZE];
418 	uint8_t			mcast_hash[RGE_MCAST_NUM];
419 	boolean_t		promisc;	/* promisc state flag	*/
420 
421 	/* used for recv */
422 	rge_bd_t		*rx_ring;
423 	dma_area_t		rx_desc;
424 	boolean_t		rx_bcopy;
425 	uint32_t		rx_next;	/* current rx bd index	*/
426 	sw_rbd_t		*sw_rbds;
427 	sw_rbd_t		*free_srbds;
428 	uint32_t		rf_next;	/* current free buf index */
429 	uint32_t		rc_next;	/* current recycle buf index */
430 	uint32_t		rx_free;	/* number of rx free buf */
431 
432 	/* used for send */
433 	rge_bd_t		*tx_ring;
434 	dma_area_t		tx_desc;
435 	uint32_t		tx_free;	/* number of free tx bd */
436 	uint32_t		tx_next;	/* current tx bd index	*/
437 	uint32_t		tc_next;	/* current tx recycle index */
438 	uint32_t		tx_flow;
439 	uint32_t		tc_tail;
440 	sw_sbd_t		*sw_sbds;
441 
442 	/* mutex */
443 	kmutex_t		genlock[1];	/* i/o reg access	*/
444 	krwlock_t		errlock[1];	/* rge restart */
445 	kmutex_t		tx_lock[1];	/* send access		*/
446 	kmutex_t		tc_lock[1];	/* send recycle access */
447 	kmutex_t		rx_lock[1];	/* receive access	*/
448 	kmutex_t		rc_lock[1];	/* receive recycle access */
449 
450 	/*
451 	 * Miscellaneous operating variables (not synchronised)
452 	 */
453 	uint32_t		watchdog;	/* watches for Tx stall	*/
454 	boolean_t		resched_needed;
455 	uint32_t		factotum_flag;	/* softint pending	*/
456 
457 	/*
458 	 * Physical layer
459 	 */
460 	rge_regno_t		phy_mii_addr;	/* should be (const) 1!	*/
461 	uint16_t		link_down_count;
462 
463 	/*
464 	 * NDD parameters (protected by genlock)
465 	 */
466 	caddr_t			nd_data_p;
467 	nd_param_t		nd_params[PARAM_COUNT];
468 
469 	/*
470 	 * Driver kstats, protected by <genlock> where necessary
471 	 */
472 	kstat_t			*rge_kstats[RGE_KSTAT_COUNT];
473 
474 	/* H/W statistics */
475 	rge_hw_stats_t		*hw_stats;
476 	rge_stats_t		stats;
477 	enum rge_mac_state	rge_mac_state;	/* definitions above	*/
478 	enum rge_chip_state	rge_chip_state;	/* definitions above	*/
479 
480 	boolean_t		suspended;
481 } rge_t;
482 
483 /*
484  * 'Progress' bit flags ...
485  */
486 #define	PROGRESS_CFG		0x0001	/* config space mapped		*/
487 #define	PROGRESS_REGS		0x0002	/* registers mapped		*/
488 #define	PROGRESS_RESCHED	0x0010	/* resched softint registered	*/
489 #define	PROGRESS_FACTOTUM	0x0020	/* factotum softint registered	*/
490 #define	PROGRESS_INTR		0X0040	/* h/w interrupt registered	*/
491 					/* and mutexen initialised	*/
492 #define	PROGRESS_INIT		0x0080	/* rx/buf/tx ring initialised	*/
493 #define	PROGRESS_PHY		0x0100	/* PHY initialised		*/
494 #define	PROGRESS_NDD		0x1000	/* NDD parameters set up	*/
495 #define	PROGRESS_KSTATS		0x2000	/* kstats created		*/
496 #define	PROGRESS_READY		0x8000	/* ready for work		*/
497 
498 /*
499  * Special chip flags
500  */
501 #define	CHIP_FLAG_FORCE_BCOPY	0x10000000
502 
503 /*
504  * Shorthand for the NDD parameters
505  */
506 #define	param_adv_autoneg	nd_params[PARAM_ADV_AUTONEG_CAP].ndp_val
507 #define	param_adv_pause		nd_params[PARAM_ADV_PAUSE_CAP].ndp_val
508 #define	param_adv_asym_pause	nd_params[PARAM_ADV_ASYM_PAUSE_CAP].ndp_val
509 #define	param_adv_1000fdx	nd_params[PARAM_ADV_1000FDX_CAP].ndp_val
510 #define	param_adv_1000hdx	nd_params[PARAM_ADV_1000HDX_CAP].ndp_val
511 #define	param_adv_100fdx	nd_params[PARAM_ADV_100FDX_CAP].ndp_val
512 #define	param_adv_100hdx	nd_params[PARAM_ADV_100HDX_CAP].ndp_val
513 #define	param_adv_10fdx		nd_params[PARAM_ADV_10FDX_CAP].ndp_val
514 #define	param_adv_10hdx		nd_params[PARAM_ADV_10HDX_CAP].ndp_val
515 
516 #define	param_link_up		nd_params[PARAM_LINK_STATUS].ndp_val
517 #define	param_link_speed	nd_params[PARAM_LINK_SPEED].ndp_val
518 #define	param_link_duplex	nd_params[PARAM_LINK_DUPLEX].ndp_val
519 
520 #define	param_loop_mode		nd_params[PARAM_LOOP_MODE].ndp_val
521 
522 /*
523  * Sync a DMA area described by a dma_area_t
524  */
525 #define	DMA_SYNC(area, flag)	((void) ddi_dma_sync((area).dma_hdl,	\
526 				    (area).offset, (area).alength, (flag)))
527 
528 /*
529  * Find the (kernel virtual) address of block of memory
530  * described by a dma_area_t
531  */
532 #define	DMA_VPTR(area)		((area).mem_va)
533 
534 /*
535  * Zero a block of memory described by a dma_area_t
536  */
537 #define	DMA_ZERO(area)		bzero(DMA_VPTR(area), (area).alength)
538 
539 /*
540  * Next/Last value of a cyclic index
541  */
542 #define	NEXT(index, limit)	((index)+1 < (limit) ? (index)+1 : 0);
543 #define	LAST(index, limit)	((index) ? (index)-1 : (limit - 1));
544 /*
545  * Property lookups
546  */
547 #define	RGE_PROP_EXISTS(d, n)	ddi_prop_exists(DDI_DEV_T_ANY, (d),	\
548 					DDI_PROP_DONTPASS, (n))
549 #define	RGE_PROP_GET_INT(d, n)	ddi_prop_get_int(DDI_DEV_T_ANY, (d),	\
550 					DDI_PROP_DONTPASS, (n), -1)
551 
552 /*
553  * Endian swap
554  */
555 #ifdef	_BIG_ENDIAN
556 #define	RGE_BSWAP_16(x)		((((x) & 0xff00) >> 8)	|		\
557 				    (((x) & 0x00ff) << 8))
558 #define	RGE_BSWAP_32(x)		((((x) & 0xff000000) >> 24)	|	\
559 				    (((x) & 0x00ff0000) >> 8)	|	\
560 				    (((x) & 0x0000ff00) << 8)	|	\
561 				    (((x) & 0x000000ff) << 24))
562 #define	RGE_BSWAP_64(x)		(RGE_BSWAP_32((x) >> 32)	|	\
563 				    (RGE_BSWAP_32(x) << 32))
564 #else
565 #define	RGE_BSWAP_16(x)		(x)
566 #define	RGE_BSWAP_32(x)		(x)
567 #define	RGE_BSWAP_64(x)		(x)
568 #endif
569 
570 /*
571  * Bit test macros, returning boolean_t values
572  */
573 #define	BIS(w, b)	(((w) & (b)) ? B_TRUE : B_FALSE)
574 #define	BIC(w, b)	(((w) & (b)) ? B_FALSE : B_TRUE)
575 #define	UPORDOWN(x)	((x) ? "up" : "down")
576 
577 /*
578  * Bit flags in the 'debug' word ...
579  */
580 #define	RGE_DBG_STOP		0x00000001	/* early debug_enter()	*/
581 #define	RGE_DBG_TRACE		0x00000002	/* general flow tracing	*/
582 
583 #define	RGE_DBG_REGS		0x00000010	/* low-level accesses	*/
584 #define	RGE_DBG_MII		0x00000020	/* low-level MII access	*/
585 #define	RGE_DBG_SEEPROM		0x00000040	/* low-level SEEPROM IO	*/
586 #define	RGE_DBG_CHIP		0x00000080	/* low(ish)-level code	*/
587 
588 #define	RGE_DBG_RECV		0x00000100	/* receive-side code	*/
589 #define	RGE_DBG_SEND		0x00000200	/* packet-send code	*/
590 
591 #define	RGE_DBG_INT		0x00001000	/* interrupt handler	*/
592 #define	RGE_DBG_FACT		0x00002000	/* factotum (softint)	*/
593 
594 #define	RGE_DBG_PHY		0x00010000	/* Copper PHY code	*/
595 #define	RGE_DBG_SERDES		0x00020000	/* SerDes code		*/
596 #define	RGE_DBG_PHYS		0x00040000	/* Physical layer code	*/
597 #define	RGE_DBG_LINK		0x00080000	/* Link status check	*/
598 
599 #define	RGE_DBG_INIT		0x00100000	/* initialisation	*/
600 #define	RGE_DBG_NEMO		0x00200000	/* nemo interaction	*/
601 #define	RGE_DBG_ADDR		0x00400000	/* address-setting code	*/
602 #define	RGE_DBG_STATS		0x00800000	/* statistics		*/
603 
604 #define	RGE_DBG_IOCTL		0x01000000	/* ioctl handling	*/
605 #define	RGE_DBG_LOOP		0x02000000	/* loopback ioctl code	*/
606 #define	RGE_DBG_PPIO		0x04000000	/* Peek/poke ioctls	*/
607 #define	RGE_DBG_BADIOC		0x08000000	/* unknown ioctls	*/
608 
609 #define	RGE_DBG_MCTL		0x10000000	/* mctl (csum) code	*/
610 #define	RGE_DBG_NDD		0x20000000	/* NDD operations	*/
611 
612 /*
613  * Debugging ...
614  */
615 #ifdef	DEBUG
616 #define	RGE_DEBUGGING		1
617 #else
618 #define	RGE_DEBUGGING		0
619 #endif	/* DEBUG */
620 
621 
622 /*
623  * 'Do-if-debugging' macro.  The parameter <command> should be one or more
624  * C statements (but without the *final* semicolon), which will either be
625  * compiled inline or completely ignored, depending on the RGE_DEBUGGING
626  * compile-time flag.
627  *
628  * You should get a compile-time error (at least on a DEBUG build) if
629  * your statement isn't actually a statement, rather than unexpected
630  * run-time behaviour caused by unintended matching of if-then-elses etc.
631  *
632  * Note that the RGE_DDB() macro itself can only be used as a statement,
633  * not an expression, and should always be followed by a semicolon.
634  */
635 #if	RGE_DEBUGGING
636 #define	RGE_DDB(command)	do {					\
637 					{ command; }			\
638 					_NOTE(CONSTANTCONDITION)	\
639 				} while (0)
640 #else 	/* RGE_DEBUGGING */
641 #define	RGE_DDB(command)	do {					\
642 					{ _NOTE(EMPTY); }		\
643 					_NOTE(CONSTANTCONDITION)	\
644 				} while (0)
645 #endif	/* RGE_DEBUGGING */
646 
647 /*
648  * 'Internal' macros used to construct the TRACE/DEBUG macros below.
649  * These provide the primitive conditional-call capability required.
650  * Note: the parameter <args> is a parenthesised list of the actual
651  * printf-style arguments to be passed to the debug function ...
652  */
653 #define	RGE_XDB(b, w, f, args)	RGE_DDB(if ((b) & (w)) f args)
654 #define	RGE_GDB(b, args)	RGE_XDB(b, rge_debug, (*rge_gdb()), args)
655 #define	RGE_LDB(b, args)	RGE_XDB(b, rgep->debug, (*rge_db(rgep)), args)
656 #define	RGE_CDB(f, args)	RGE_XDB(RGE_DBG, rgep->debug, f, args)
657 
658 /*
659  * Conditional-print macros.
660  *
661  * Define RGE_DBG to be the relevant member of the set of RGE_DBG_* values
662  * above before using the RGE_GDEBUG() or RGE_DEBUG() macros.  The 'G'
663  * versions look at the Global debug flag word (rge_debug); the non-G
664  * versions look in the per-instance data (rgep->debug) and so require a
665  * variable called 'rgep' to be in scope (and initialised!) before use.
666  *
667  * You could redefine RGE_TRC too if you really need two different
668  * flavours of debugging output in the same area of code, but I don't
669  * really recommend it.
670  *
671  * Note: the parameter <args> is a parenthesised list of the actual
672  * arguments to be passed to the debug function, usually a printf-style
673  * format string and corresponding values to be formatted.
674  */
675 
676 #define	RGE_TRC			RGE_DBG_TRACE	/* default 'trace' bit	*/
677 #define	RGE_GTRACE(args)	RGE_GDB(RGE_TRC, args)
678 #define	RGE_GDEBUG(args)	RGE_GDB(RGE_DBG, args)
679 #define	RGE_TRACE(args)		RGE_LDB(RGE_TRC, args)
680 #define	RGE_DEBUG(args)		RGE_LDB(RGE_DBG, args)
681 
682 /*
683  * Debug-only action macros
684  */
685 #define	RGE_BRKPT(rgep, s)	RGE_DDB(rge_dbg_enter(rgep, s))
686 #define	RGE_MARK(rgep)		RGE_DDB(rge_led_mark(rgep))
687 #define	RGE_PCICHK(rgep)	RGE_DDB(rge_pci_check(rgep))
688 #define	RGE_PKTDUMP(args)	RGE_DDB(rge_pkt_dump args)
689 #define	RGE_REPORT(args)	RGE_DDB(rge_log args)
690 
691 /*
692  * Inter-source-file linkage ...
693  */
694 
695 /* rge_chip.c */
696 uint16_t rge_mii_get16(rge_t *rgep, uintptr_t mii);
697 void rge_mii_put16(rge_t *rgep, uintptr_t mii, uint16_t data);
698 void rge_chip_cfg_init(rge_t *rgep, chip_id_t *cidp);
699 void rge_chip_ident(rge_t *rgep);
700 int rge_chip_reset(rge_t *rgep);
701 void rge_chip_init(rge_t *rgep);
702 void rge_chip_start(rge_t *rgep);
703 void rge_chip_stop(rge_t *rgep, boolean_t fault);
704 void rge_chip_sync(rge_t *rgep, enum rge_sync_op todo);
705 void rge_chip_blank(void *arg, time_t ticks, uint_t count, int flag);
706 void rge_tx_trigger(rge_t *rgep);
707 void rge_hw_stats_dump(rge_t *rgep);
708 uint_t rge_intr(caddr_t arg1, caddr_t arg2);
709 uint_t rge_chip_factotum(caddr_t arg1, caddr_t arg2);
710 void rge_chip_cyclic(void *arg);
711 enum ioc_reply rge_chip_ioctl(rge_t *rgep, queue_t *wq, mblk_t *mp,
712 	struct iocblk *iocp);
713 boolean_t rge_phy_reset(rge_t *rgep);
714 void rge_phy_init(rge_t *rgep);
715 void rge_phy_update(rge_t *rgep);
716 
717 /* rge_kstats.c */
718 void rge_init_kstats(rge_t *rgep, int instance);
719 void rge_fini_kstats(rge_t *rgep);
720 int rge_m_stat(void *arg, uint_t stat, uint64_t *val);
721 
722 /* rge_log.c */
723 #if	RGE_DEBUGGING
724 void (*rge_db(rge_t *rgep))(const char *fmt, ...);
725 void (*rge_gdb(void))(const char *fmt, ...);
726 void rge_pkt_dump(rge_t *rgep, rge_bd_t *hbp, sw_rbd_t *sdp, const char *msg);
727 void rge_dbg_enter(rge_t *rgep, const char *msg);
728 #endif	/* RGE_DEBUGGING */
729 void rge_problem(rge_t *rgep, const char *fmt, ...);
730 void rge_notice(rge_t *rgep, const char *fmt, ...);
731 void rge_log(rge_t *rgep, const char *fmt, ...);
732 void rge_error(rge_t *rgep, const char *fmt, ...);
733 extern kmutex_t rge_log_mutex[1];
734 extern uint32_t rge_debug;
735 
736 /* rge_main.c */
737 void rge_restart(rge_t *rgep);
738 
739 /* rge_ndd.c */
740 int rge_nd_init(rge_t *rgep);
741 enum ioc_reply rge_nd_ioctl(rge_t *rgep, queue_t *wq, mblk_t *mp,
742 	struct iocblk *iocp);
743 void rge_nd_cleanup(rge_t *rgep);
744 
745 /* rge_rxtx.c */
746 void rge_rx_recycle(caddr_t arg);
747 void rge_receive(rge_t *rgep);
748 mblk_t *rge_m_tx(void *arg, mblk_t *mp);
749 uint_t rge_reschedule(caddr_t arg1, caddr_t arg2);
750 
751 #ifdef __cplusplus
752 }
753 #endif
754 
755 #endif	/* _RGE_H */
756