xref: /onnv-gate/usr/src/uts/common/io/rge/rge_main.c (revision 7656:2621e50fdf4a)
1744Sgs150176 /*
2744Sgs150176  * CDDL HEADER START
3744Sgs150176  *
4744Sgs150176  * The contents of this file are subject to the terms of the
52311Sseb  * Common Development and Distribution License (the "License").
62311Sseb  * You may not use this file except in compliance with the License.
7744Sgs150176  *
8744Sgs150176  * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
9744Sgs150176  * or http://www.opensolaris.org/os/licensing.
10744Sgs150176  * See the License for the specific language governing permissions
11744Sgs150176  * and limitations under the License.
12744Sgs150176  *
13744Sgs150176  * When distributing Covered Code, include this CDDL HEADER in each
14744Sgs150176  * file and include the License file at usr/src/OPENSOLARIS.LICENSE.
15744Sgs150176  * If applicable, add the following below this CDDL HEADER, with the
16744Sgs150176  * fields enclosed by brackets "[]" replaced with your own identifying
17744Sgs150176  * information: Portions Copyright [yyyy] [name of copyright owner]
18744Sgs150176  *
19744Sgs150176  * CDDL HEADER END
20744Sgs150176  */
21744Sgs150176 /*
225895Syz147064  * Copyright 2008 Sun Microsystems, Inc.  All rights reserved.
23744Sgs150176  * Use is subject to license terms.
24744Sgs150176  */
25744Sgs150176 
26744Sgs150176 #include "rge.h"
27744Sgs150176 
28744Sgs150176 /*
29744Sgs150176  * This is the string displayed by modinfo, etc.
30744Sgs150176  * Make sure you keep the version ID up to date!
31744Sgs150176  */
32*7656SSherry.Moore@Sun.COM static char rge_ident[] = "Realtek 1Gb Ethernet";
33744Sgs150176 
34744Sgs150176 /*
35744Sgs150176  * Used for buffers allocated by ddi_dma_mem_alloc()
36744Sgs150176  */
37744Sgs150176 static ddi_dma_attr_t dma_attr_buf = {
38744Sgs150176 	DMA_ATTR_V0,		/* dma_attr version */
39744Sgs150176 	(uint32_t)0,		/* dma_attr_addr_lo */
40744Sgs150176 	(uint32_t)0xFFFFFFFF,	/* dma_attr_addr_hi */
41744Sgs150176 	(uint32_t)0xFFFFFFFF,	/* dma_attr_count_max */
42744Sgs150176 	(uint32_t)16,		/* dma_attr_align */
43744Sgs150176 	0xFFFFFFFF,		/* dma_attr_burstsizes */
44744Sgs150176 	1,			/* dma_attr_minxfer */
45744Sgs150176 	(uint32_t)0xFFFFFFFF,	/* dma_attr_maxxfer */
46744Sgs150176 	(uint32_t)0xFFFFFFFF,	/* dma_attr_seg */
47744Sgs150176 	1,			/* dma_attr_sgllen */
48744Sgs150176 	1,			/* dma_attr_granular */
49744Sgs150176 	0,			/* dma_attr_flags */
50744Sgs150176 };
51744Sgs150176 
52744Sgs150176 /*
53744Sgs150176  * Used for BDs allocated by ddi_dma_mem_alloc()
54744Sgs150176  */
55744Sgs150176 static ddi_dma_attr_t dma_attr_desc = {
56744Sgs150176 	DMA_ATTR_V0,		/* dma_attr version */
57744Sgs150176 	(uint32_t)0,		/* dma_attr_addr_lo */
58744Sgs150176 	(uint32_t)0xFFFFFFFF,	/* dma_attr_addr_hi */
59744Sgs150176 	(uint32_t)0xFFFFFFFF,	/* dma_attr_count_max */
60744Sgs150176 	(uint32_t)256,		/* dma_attr_align */
61744Sgs150176 	0xFFFFFFFF,		/* dma_attr_burstsizes */
62744Sgs150176 	1,			/* dma_attr_minxfer */
63744Sgs150176 	(uint32_t)0xFFFFFFFF,	/* dma_attr_maxxfer */
64744Sgs150176 	(uint32_t)0xFFFFFFFF,	/* dma_attr_seg */
65744Sgs150176 	1,			/* dma_attr_sgllen */
66744Sgs150176 	1,			/* dma_attr_granular */
67744Sgs150176 	0,			/* dma_attr_flags */
68744Sgs150176 };
69744Sgs150176 
70744Sgs150176 /*
71744Sgs150176  * PIO access attributes for registers
72744Sgs150176  */
73744Sgs150176 static ddi_device_acc_attr_t rge_reg_accattr = {
74744Sgs150176 	DDI_DEVICE_ATTR_V0,
75744Sgs150176 	DDI_STRUCTURE_LE_ACC,
76744Sgs150176 	DDI_STRICTORDER_ACC,
77744Sgs150176 	DDI_DEFAULT_ACC
78744Sgs150176 };
79744Sgs150176 
80744Sgs150176 /*
81744Sgs150176  * DMA access attributes for descriptors
82744Sgs150176  */
83744Sgs150176 static ddi_device_acc_attr_t rge_desc_accattr = {
84744Sgs150176 	DDI_DEVICE_ATTR_V0,
85744Sgs150176 	DDI_NEVERSWAP_ACC,
86744Sgs150176 	DDI_STRICTORDER_ACC,
87744Sgs150176 	DDI_DEFAULT_ACC
88744Sgs150176 };
89744Sgs150176 
90744Sgs150176 /*
91744Sgs150176  * DMA access attributes for data
92744Sgs150176  */
93744Sgs150176 static ddi_device_acc_attr_t rge_buf_accattr = {
94744Sgs150176 	DDI_DEVICE_ATTR_V0,
95744Sgs150176 	DDI_NEVERSWAP_ACC,
96744Sgs150176 	DDI_STRICTORDER_ACC,
97744Sgs150176 	DDI_DEFAULT_ACC
98744Sgs150176 };
99744Sgs150176 
100744Sgs150176 /*
101744Sgs150176  * Property names
102744Sgs150176  */
1032544Sgs150176 static char debug_propname[] = "rge_debug_flags";
1042544Sgs150176 static char mtu_propname[] = "default_mtu";
1052544Sgs150176 static char msi_propname[] = "msi_enable";
106744Sgs150176 
1072311Sseb static int		rge_m_start(void *);
1082311Sseb static void		rge_m_stop(void *);
1092311Sseb static int		rge_m_promisc(void *, boolean_t);
1102311Sseb static int		rge_m_multicst(void *, boolean_t, const uint8_t *);
1112311Sseb static int		rge_m_unicst(void *, const uint8_t *);
1122311Sseb static void		rge_m_resources(void *);
1132311Sseb static void		rge_m_ioctl(void *, queue_t *, mblk_t *);
1142311Sseb static boolean_t	rge_m_getcapab(void *, mac_capab_t, void *);
1152311Sseb 
1162311Sseb #define	RGE_M_CALLBACK_FLAGS	(MC_RESOURCES | MC_IOCTL | MC_GETCAPAB)
1172311Sseb 
1182311Sseb static mac_callbacks_t rge_m_callbacks = {
1192311Sseb 	RGE_M_CALLBACK_FLAGS,
1202311Sseb 	rge_m_stat,
1212311Sseb 	rge_m_start,
1222311Sseb 	rge_m_stop,
1232311Sseb 	rge_m_promisc,
1242311Sseb 	rge_m_multicst,
1252311Sseb 	rge_m_unicst,
1262311Sseb 	rge_m_tx,
1272311Sseb 	rge_m_resources,
1282311Sseb 	rge_m_ioctl,
1292311Sseb 	rge_m_getcapab
1302311Sseb };
131744Sgs150176 
132744Sgs150176 /*
133744Sgs150176  * Allocate an area of memory and a DMA handle for accessing it
134744Sgs150176  */
135744Sgs150176 static int
136744Sgs150176 rge_alloc_dma_mem(rge_t *rgep, size_t memsize, ddi_dma_attr_t *dma_attr_p,
137744Sgs150176 	ddi_device_acc_attr_t *acc_attr_p, uint_t dma_flags, dma_area_t *dma_p)
138744Sgs150176 {
139744Sgs150176 	caddr_t vaddr;
140744Sgs150176 	int err;
141744Sgs150176 
142744Sgs150176 	/*
143744Sgs150176 	 * Allocate handle
144744Sgs150176 	 */
145744Sgs150176 	err = ddi_dma_alloc_handle(rgep->devinfo, dma_attr_p,
1465107Seota 	    DDI_DMA_SLEEP, NULL, &dma_p->dma_hdl);
147744Sgs150176 	if (err != DDI_SUCCESS) {
148744Sgs150176 		dma_p->dma_hdl = NULL;
149744Sgs150176 		return (DDI_FAILURE);
150744Sgs150176 	}
151744Sgs150176 
152744Sgs150176 	/*
153744Sgs150176 	 * Allocate memory
154744Sgs150176 	 */
155744Sgs150176 	err = ddi_dma_mem_alloc(dma_p->dma_hdl, memsize, acc_attr_p,
156744Sgs150176 	    dma_flags & (DDI_DMA_CONSISTENT | DDI_DMA_STREAMING),
157744Sgs150176 	    DDI_DMA_SLEEP, NULL, &vaddr, &dma_p->alength, &dma_p->acc_hdl);
158744Sgs150176 	if (err != DDI_SUCCESS) {
159744Sgs150176 		ddi_dma_free_handle(&dma_p->dma_hdl);
160744Sgs150176 		dma_p->dma_hdl = NULL;
161744Sgs150176 		dma_p->acc_hdl = NULL;
162744Sgs150176 		return (DDI_FAILURE);
163744Sgs150176 	}
164744Sgs150176 
165744Sgs150176 	/*
166744Sgs150176 	 * Bind the two together
167744Sgs150176 	 */
168744Sgs150176 	dma_p->mem_va = vaddr;
169744Sgs150176 	err = ddi_dma_addr_bind_handle(dma_p->dma_hdl, NULL,
170744Sgs150176 	    vaddr, dma_p->alength, dma_flags, DDI_DMA_SLEEP, NULL,
171744Sgs150176 	    &dma_p->cookie, &dma_p->ncookies);
172744Sgs150176 	if (err != DDI_DMA_MAPPED || dma_p->ncookies != 1) {
173744Sgs150176 		ddi_dma_mem_free(&dma_p->acc_hdl);
174744Sgs150176 		ddi_dma_free_handle(&dma_p->dma_hdl);
175744Sgs150176 		dma_p->acc_hdl = NULL;
176744Sgs150176 		dma_p->dma_hdl = NULL;
177744Sgs150176 		return (DDI_FAILURE);
178744Sgs150176 	}
179744Sgs150176 
180744Sgs150176 	dma_p->nslots = ~0U;
181744Sgs150176 	dma_p->size = ~0U;
182744Sgs150176 	dma_p->token = ~0U;
183744Sgs150176 	dma_p->offset = 0;
184744Sgs150176 	return (DDI_SUCCESS);
185744Sgs150176 }
186744Sgs150176 
187744Sgs150176 /*
188744Sgs150176  * Free one allocated area of DMAable memory
189744Sgs150176  */
190744Sgs150176 static void
191744Sgs150176 rge_free_dma_mem(dma_area_t *dma_p)
192744Sgs150176 {
193744Sgs150176 	if (dma_p->dma_hdl != NULL) {
194744Sgs150176 		if (dma_p->ncookies) {
195744Sgs150176 			(void) ddi_dma_unbind_handle(dma_p->dma_hdl);
196744Sgs150176 			dma_p->ncookies = 0;
197744Sgs150176 		}
198744Sgs150176 		ddi_dma_free_handle(&dma_p->dma_hdl);
199744Sgs150176 		dma_p->dma_hdl = NULL;
200744Sgs150176 	}
201744Sgs150176 
202744Sgs150176 	if (dma_p->acc_hdl != NULL) {
203744Sgs150176 		ddi_dma_mem_free(&dma_p->acc_hdl);
204744Sgs150176 		dma_p->acc_hdl = NULL;
205744Sgs150176 	}
206744Sgs150176 }
207744Sgs150176 
208744Sgs150176 /*
209744Sgs150176  * Utility routine to carve a slice off a chunk of allocated memory,
210744Sgs150176  * updating the chunk descriptor accordingly.  The size of the slice
211744Sgs150176  * is given by the product of the <qty> and <size> parameters.
212744Sgs150176  */
213744Sgs150176 static void
214744Sgs150176 rge_slice_chunk(dma_area_t *slice, dma_area_t *chunk,
215744Sgs150176 	uint32_t qty, uint32_t size)
216744Sgs150176 {
217744Sgs150176 	static uint32_t sequence = 0xbcd5704a;
218744Sgs150176 	size_t totsize;
219744Sgs150176 
220744Sgs150176 	totsize = qty*size;
221744Sgs150176 	ASSERT(totsize <= chunk->alength);
222744Sgs150176 
223744Sgs150176 	*slice = *chunk;
224744Sgs150176 	slice->nslots = qty;
225744Sgs150176 	slice->size = size;
226744Sgs150176 	slice->alength = totsize;
227744Sgs150176 	slice->token = ++sequence;
228744Sgs150176 
229744Sgs150176 	chunk->mem_va = (caddr_t)chunk->mem_va + totsize;
230744Sgs150176 	chunk->alength -= totsize;
231744Sgs150176 	chunk->offset += totsize;
232744Sgs150176 	chunk->cookie.dmac_laddress += totsize;
233744Sgs150176 	chunk->cookie.dmac_size -= totsize;
234744Sgs150176 }
235744Sgs150176 
236744Sgs150176 static int
237744Sgs150176 rge_alloc_bufs(rge_t *rgep)
238744Sgs150176 {
239744Sgs150176 	size_t txdescsize;
240744Sgs150176 	size_t rxdescsize;
241744Sgs150176 	int err;
242744Sgs150176 
243744Sgs150176 	/*
244744Sgs150176 	 * Allocate memory & handle for packet statistics
245744Sgs150176 	 */
246744Sgs150176 	err = rge_alloc_dma_mem(rgep,
247744Sgs150176 	    RGE_STATS_DUMP_SIZE,
248744Sgs150176 	    &dma_attr_desc,
249744Sgs150176 	    &rge_desc_accattr,
250744Sgs150176 	    DDI_DMA_RDWR | DDI_DMA_CONSISTENT,
251744Sgs150176 	    &rgep->dma_area_stats);
252744Sgs150176 	if (err != DDI_SUCCESS)
253744Sgs150176 		return (DDI_FAILURE);
254744Sgs150176 	rgep->hw_stats = DMA_VPTR(rgep->dma_area_stats);
255744Sgs150176 
256744Sgs150176 	/*
257744Sgs150176 	 * Allocate memory & handle for Tx descriptor ring
258744Sgs150176 	 */
259744Sgs150176 	txdescsize = RGE_SEND_SLOTS * sizeof (rge_bd_t);
260744Sgs150176 	err = rge_alloc_dma_mem(rgep,
261744Sgs150176 	    txdescsize,
262744Sgs150176 	    &dma_attr_desc,
263744Sgs150176 	    &rge_desc_accattr,
264744Sgs150176 	    DDI_DMA_RDWR | DDI_DMA_CONSISTENT,
265744Sgs150176 	    &rgep->dma_area_txdesc);
266744Sgs150176 	if (err != DDI_SUCCESS)
267744Sgs150176 		return (DDI_FAILURE);
268744Sgs150176 
269744Sgs150176 	/*
270744Sgs150176 	 * Allocate memory & handle for Rx descriptor ring
271744Sgs150176 	 */
272744Sgs150176 	rxdescsize = RGE_RECV_SLOTS * sizeof (rge_bd_t);
273744Sgs150176 	err = rge_alloc_dma_mem(rgep,
274744Sgs150176 	    rxdescsize,
275744Sgs150176 	    &dma_attr_desc,
276744Sgs150176 	    &rge_desc_accattr,
277744Sgs150176 	    DDI_DMA_RDWR | DDI_DMA_CONSISTENT,
278744Sgs150176 	    &rgep->dma_area_rxdesc);
279744Sgs150176 	if (err != DDI_SUCCESS)
280744Sgs150176 		return (DDI_FAILURE);
281744Sgs150176 
282744Sgs150176 	return (DDI_SUCCESS);
283744Sgs150176 }
284744Sgs150176 
285744Sgs150176 /*
286744Sgs150176  * rge_free_bufs() -- free descriptors/buffers allocated for this
287744Sgs150176  * device instance.
288744Sgs150176  */
289744Sgs150176 static void
290744Sgs150176 rge_free_bufs(rge_t *rgep)
291744Sgs150176 {
292744Sgs150176 	rge_free_dma_mem(&rgep->dma_area_stats);
293744Sgs150176 	rge_free_dma_mem(&rgep->dma_area_txdesc);
294744Sgs150176 	rge_free_dma_mem(&rgep->dma_area_rxdesc);
295744Sgs150176 }
296744Sgs150176 
297744Sgs150176 /*
298744Sgs150176  * ========== Transmit and receive ring reinitialisation ==========
299744Sgs150176  */
300744Sgs150176 
301744Sgs150176 /*
302744Sgs150176  * These <reinit> routines each reset the rx/tx rings to an initial
303744Sgs150176  * state, assuming that the corresponding <init> routine has already
304744Sgs150176  * been called exactly once.
305744Sgs150176  */
306744Sgs150176 static void
307744Sgs150176 rge_reinit_send_ring(rge_t *rgep)
308744Sgs150176 {
309744Sgs150176 	sw_sbd_t *ssbdp;
310744Sgs150176 	rge_bd_t *bdp;
311744Sgs150176 	uint32_t slot;
312744Sgs150176 
313744Sgs150176 	/*
314744Sgs150176 	 * re-init send ring
315744Sgs150176 	 */
316744Sgs150176 	DMA_ZERO(rgep->tx_desc);
317744Sgs150176 	ssbdp = rgep->sw_sbds;
318744Sgs150176 	bdp = rgep->tx_ring;
319744Sgs150176 	for (slot = 0; slot < RGE_SEND_SLOTS; slot++) {
320744Sgs150176 		bdp->host_buf_addr =
321744Sgs150176 		    RGE_BSWAP_32(ssbdp->pbuf.cookie.dmac_laddress);
322744Sgs150176 		bdp->host_buf_addr_hi =
323744Sgs150176 		    RGE_BSWAP_32(ssbdp->pbuf.cookie.dmac_laddress >> 32);
324744Sgs150176 		/* last BD in Tx ring */
325744Sgs150176 		if (slot == (RGE_SEND_SLOTS - 1))
326744Sgs150176 			bdp->flags_len = RGE_BSWAP_32(BD_FLAG_EOR);
327744Sgs150176 		ssbdp++;
328744Sgs150176 		bdp++;
329744Sgs150176 	}
330744Sgs150176 	DMA_SYNC(rgep->tx_desc, DDI_DMA_SYNC_FORDEV);
331744Sgs150176 	rgep->tx_next = 0;
332744Sgs150176 	rgep->tc_next = 0;
333744Sgs150176 	rgep->tc_tail = 0;
334744Sgs150176 	rgep->tx_flow = 0;
335744Sgs150176 	rgep->tx_free = RGE_SEND_SLOTS;
336744Sgs150176 }
337744Sgs150176 
338744Sgs150176 static void
339744Sgs150176 rge_reinit_recv_ring(rge_t *rgep)
340744Sgs150176 {
341744Sgs150176 	rge_bd_t *bdp;
342744Sgs150176 	sw_rbd_t *srbdp;
343744Sgs150176 	dma_area_t *pbuf;
344744Sgs150176 	uint32_t slot;
345744Sgs150176 
346744Sgs150176 	/*
347744Sgs150176 	 * re-init receive ring
348744Sgs150176 	 */
349744Sgs150176 	DMA_ZERO(rgep->rx_desc);
350744Sgs150176 	srbdp = rgep->sw_rbds;
351744Sgs150176 	bdp = rgep->rx_ring;
352744Sgs150176 	for (slot = 0; slot < RGE_RECV_SLOTS; slot++) {
353744Sgs150176 		pbuf = &srbdp->rx_buf->pbuf;
354744Sgs150176 		bdp->host_buf_addr =
3552544Sgs150176 		    RGE_BSWAP_32(pbuf->cookie.dmac_laddress + rgep->head_room);
356744Sgs150176 		bdp->host_buf_addr_hi =
357744Sgs150176 		    RGE_BSWAP_32(pbuf->cookie.dmac_laddress >> 32);
358744Sgs150176 		bdp->flags_len = RGE_BSWAP_32(BD_FLAG_HW_OWN |
3592544Sgs150176 		    (rgep->rxbuf_size - rgep->head_room));
360744Sgs150176 		/* last BD in Tx ring */
361744Sgs150176 		if (slot == (RGE_RECV_SLOTS - 1))
362744Sgs150176 			bdp->flags_len |= RGE_BSWAP_32(BD_FLAG_EOR);
363744Sgs150176 		srbdp++;
364744Sgs150176 		bdp++;
365744Sgs150176 	}
366744Sgs150176 	DMA_SYNC(rgep->rx_desc, DDI_DMA_SYNC_FORDEV);
367744Sgs150176 	rgep->watchdog = 0;
368744Sgs150176 	rgep->rx_next = 0;
369744Sgs150176 }
370744Sgs150176 
371744Sgs150176 static void
372744Sgs150176 rge_reinit_buf_ring(rge_t *rgep)
373744Sgs150176 {
3742544Sgs150176 
3752544Sgs150176 	if (rgep->chip_flags & CHIP_FLAG_FORCE_BCOPY)
3762544Sgs150176 		return;
3772544Sgs150176 
378744Sgs150176 	/*
3792544Sgs150176 	 * If all the up-sending buffers haven't been returned to driver,
3802544Sgs150176 	 * use bcopy() only in rx process.
381744Sgs150176 	 */
382744Sgs150176 	if (rgep->rx_free != RGE_BUF_SLOTS)
383744Sgs150176 		rgep->rx_bcopy = B_TRUE;
384744Sgs150176 }
385744Sgs150176 
386744Sgs150176 static void
387744Sgs150176 rge_reinit_rings(rge_t *rgep)
388744Sgs150176 {
389744Sgs150176 	rge_reinit_send_ring(rgep);
390744Sgs150176 	rge_reinit_recv_ring(rgep);
391744Sgs150176 	rge_reinit_buf_ring(rgep);
392744Sgs150176 }
393744Sgs150176 
394744Sgs150176 static void
3952544Sgs150176 rge_fini_send_ring(rge_t *rgep)
3962544Sgs150176 {
3972544Sgs150176 	sw_sbd_t *ssbdp;
3982544Sgs150176 	uint32_t slot;
3992544Sgs150176 
4002544Sgs150176 	ssbdp = rgep->sw_sbds;
4012544Sgs150176 	for (slot = 0; slot < RGE_SEND_SLOTS; ++slot) {
4022544Sgs150176 		rge_free_dma_mem(&ssbdp->pbuf);
4032544Sgs150176 		ssbdp++;
4042544Sgs150176 	}
4052544Sgs150176 
4062544Sgs150176 	kmem_free(rgep->sw_sbds, RGE_SEND_SLOTS * sizeof (sw_sbd_t));
4072544Sgs150176 	rgep->sw_sbds = NULL;
4082544Sgs150176 }
4092544Sgs150176 
4102544Sgs150176 static void
4112544Sgs150176 rge_fini_recv_ring(rge_t *rgep)
4122544Sgs150176 {
4132544Sgs150176 	sw_rbd_t *srbdp;
4142544Sgs150176 	uint32_t slot;
4152544Sgs150176 
4162544Sgs150176 	srbdp = rgep->sw_rbds;
4172544Sgs150176 	for (slot = 0; slot < RGE_RECV_SLOTS; ++srbdp, ++slot) {
4182544Sgs150176 		if (srbdp->rx_buf) {
4192544Sgs150176 			if (srbdp->rx_buf->mp != NULL) {
4202544Sgs150176 				freemsg(srbdp->rx_buf->mp);
4212544Sgs150176 				srbdp->rx_buf->mp = NULL;
4222544Sgs150176 			}
4232544Sgs150176 			rge_free_dma_mem(&srbdp->rx_buf->pbuf);
4242544Sgs150176 			kmem_free(srbdp->rx_buf, sizeof (dma_buf_t));
4252544Sgs150176 			srbdp->rx_buf = NULL;
4262544Sgs150176 		}
4272544Sgs150176 	}
4282544Sgs150176 
4292544Sgs150176 	kmem_free(rgep->sw_rbds, RGE_RECV_SLOTS * sizeof (sw_rbd_t));
4302544Sgs150176 	rgep->sw_rbds = NULL;
4312544Sgs150176 }
4322544Sgs150176 
4332544Sgs150176 static void
4342544Sgs150176 rge_fini_buf_ring(rge_t *rgep)
4352544Sgs150176 {
4362544Sgs150176 	sw_rbd_t *srbdp;
4372544Sgs150176 	uint32_t slot;
4382544Sgs150176 
4392544Sgs150176 	if (rgep->chip_flags & CHIP_FLAG_FORCE_BCOPY)
4402544Sgs150176 		return;
4412544Sgs150176 
4422544Sgs150176 	ASSERT(rgep->rx_free == RGE_BUF_SLOTS);
4432544Sgs150176 
4442544Sgs150176 	srbdp = rgep->free_srbds;
4452544Sgs150176 	for (slot = 0; slot < RGE_BUF_SLOTS; ++srbdp, ++slot) {
4462544Sgs150176 		if (srbdp->rx_buf != NULL) {
4472544Sgs150176 			if (srbdp->rx_buf->mp != NULL) {
4482544Sgs150176 				freemsg(srbdp->rx_buf->mp);
4492544Sgs150176 				srbdp->rx_buf->mp = NULL;
4502544Sgs150176 			}
4512544Sgs150176 			rge_free_dma_mem(&srbdp->rx_buf->pbuf);
4522544Sgs150176 			kmem_free(srbdp->rx_buf, sizeof (dma_buf_t));
4532544Sgs150176 			srbdp->rx_buf = NULL;
4542544Sgs150176 		}
4552544Sgs150176 	}
4562544Sgs150176 
4572544Sgs150176 	kmem_free(rgep->free_srbds, RGE_BUF_SLOTS * sizeof (sw_rbd_t));
4582544Sgs150176 	rgep->free_srbds = NULL;
4592544Sgs150176 }
4602544Sgs150176 
4612544Sgs150176 static void
4622544Sgs150176 rge_fini_rings(rge_t *rgep)
4632544Sgs150176 {
4642544Sgs150176 	rge_fini_send_ring(rgep);
4652544Sgs150176 	rge_fini_recv_ring(rgep);
4662544Sgs150176 	rge_fini_buf_ring(rgep);
4672544Sgs150176 }
4682544Sgs150176 
4692544Sgs150176 static int
470744Sgs150176 rge_init_send_ring(rge_t *rgep)
471744Sgs150176 {
472744Sgs150176 	uint32_t slot;
473744Sgs150176 	sw_sbd_t *ssbdp;
474744Sgs150176 	dma_area_t *pbuf;
4752544Sgs150176 	dma_area_t desc;
4762544Sgs150176 	int err;
477744Sgs150176 
478744Sgs150176 	/*
479744Sgs150176 	 * Allocate the array of s/w Tx Buffer Descriptors
480744Sgs150176 	 */
481744Sgs150176 	ssbdp = kmem_zalloc(RGE_SEND_SLOTS*sizeof (*ssbdp), KM_SLEEP);
482744Sgs150176 	rgep->sw_sbds = ssbdp;
483744Sgs150176 
484744Sgs150176 	/*
485744Sgs150176 	 * Init send ring
486744Sgs150176 	 */
487744Sgs150176 	rgep->tx_desc = rgep->dma_area_txdesc;
488744Sgs150176 	DMA_ZERO(rgep->tx_desc);
4892544Sgs150176 	rgep->tx_ring = rgep->tx_desc.mem_va;
4902544Sgs150176 
4912544Sgs150176 	desc = rgep->tx_desc;
4922544Sgs150176 	for (slot = 0; slot < RGE_SEND_SLOTS; slot++) {
4932544Sgs150176 		rge_slice_chunk(&ssbdp->desc, &desc, 1, sizeof (rge_bd_t));
4942544Sgs150176 
4952544Sgs150176 		/*
4962544Sgs150176 		 * Allocate memory & handle for Tx buffers
4972544Sgs150176 		 */
4982544Sgs150176 		pbuf = &ssbdp->pbuf;
4992544Sgs150176 		err = rge_alloc_dma_mem(rgep, rgep->txbuf_size,
5002544Sgs150176 		    &dma_attr_buf, &rge_buf_accattr,
5012544Sgs150176 		    DDI_DMA_WRITE | DDI_DMA_STREAMING, pbuf);
5022544Sgs150176 		if (err != DDI_SUCCESS) {
5032544Sgs150176 			rge_error(rgep,
5042544Sgs150176 			    "rge_init_send_ring: alloc tx buffer failed");
5052544Sgs150176 			rge_fini_send_ring(rgep);
5062544Sgs150176 			return (DDI_FAILURE);
507744Sgs150176 		}
5082544Sgs150176 		ssbdp++;
509744Sgs150176 	}
5102544Sgs150176 	ASSERT(desc.alength == 0);
5112544Sgs150176 
512744Sgs150176 	DMA_SYNC(rgep->tx_desc, DDI_DMA_SYNC_FORDEV);
5132544Sgs150176 	return (DDI_SUCCESS);
514744Sgs150176 }
515744Sgs150176 
516744Sgs150176 static int
517744Sgs150176 rge_init_recv_ring(rge_t *rgep)
518744Sgs150176 {
519744Sgs150176 	uint32_t slot;
520744Sgs150176 	sw_rbd_t *srbdp;
521744Sgs150176 	dma_buf_t *rx_buf;
522744Sgs150176 	dma_area_t *pbuf;
5232544Sgs150176 	int err;
524744Sgs150176 
525744Sgs150176 	/*
526744Sgs150176 	 * Allocate the array of s/w Rx Buffer Descriptors
527744Sgs150176 	 */
528744Sgs150176 	srbdp = kmem_zalloc(RGE_RECV_SLOTS*sizeof (*srbdp), KM_SLEEP);
529744Sgs150176 	rgep->sw_rbds = srbdp;
530744Sgs150176 
531744Sgs150176 	/*
532744Sgs150176 	 * Init receive ring
533744Sgs150176 	 */
534744Sgs150176 	rgep->rx_next = 0;
535744Sgs150176 	rgep->rx_desc = rgep->dma_area_rxdesc;
536744Sgs150176 	DMA_ZERO(rgep->rx_desc);
5372544Sgs150176 	rgep->rx_ring = rgep->rx_desc.mem_va;
5382544Sgs150176 
5392544Sgs150176 	for (slot = 0; slot < RGE_RECV_SLOTS; slot++) {
5402544Sgs150176 		srbdp->rx_buf = rx_buf =
5412544Sgs150176 		    kmem_zalloc(sizeof (dma_buf_t), KM_SLEEP);
5422544Sgs150176 
5432544Sgs150176 		/*
5442544Sgs150176 		 * Allocate memory & handle for Rx buffers
5452544Sgs150176 		 */
5462544Sgs150176 		pbuf = &rx_buf->pbuf;
5472544Sgs150176 		err = rge_alloc_dma_mem(rgep, rgep->rxbuf_size,
5482544Sgs150176 		    &dma_attr_buf, &rge_buf_accattr,
5492544Sgs150176 		    DDI_DMA_READ | DDI_DMA_STREAMING, pbuf);
5502544Sgs150176 		if (err != DDI_SUCCESS) {
5512544Sgs150176 			rge_fini_recv_ring(rgep);
5522544Sgs150176 			rge_error(rgep,
5532544Sgs150176 			    "rge_init_recv_ring: alloc rx buffer failed");
5542544Sgs150176 			return (DDI_FAILURE);
5552544Sgs150176 		}
5562544Sgs150176 
5572544Sgs150176 		pbuf->alength -= rgep->head_room;
5582544Sgs150176 		pbuf->offset += rgep->head_room;
5592544Sgs150176 		if (!(rgep->chip_flags & CHIP_FLAG_FORCE_BCOPY)) {
560744Sgs150176 			rx_buf->rx_recycle.free_func = rge_rx_recycle;
561744Sgs150176 			rx_buf->rx_recycle.free_arg = (caddr_t)rx_buf;
562744Sgs150176 			rx_buf->private = (caddr_t)rgep;
563744Sgs150176 			rx_buf->mp = desballoc(DMA_VPTR(rx_buf->pbuf),
564744Sgs150176 			    rgep->rxbuf_size, 0, &rx_buf->rx_recycle);
565744Sgs150176 			if (rx_buf->mp == NULL) {
5662544Sgs150176 				rge_fini_recv_ring(rgep);
567744Sgs150176 				rge_problem(rgep,
568744Sgs150176 				    "rge_init_recv_ring: desballoc() failed");
569744Sgs150176 				return (DDI_FAILURE);
570744Sgs150176 			}
571744Sgs150176 		}
5722544Sgs150176 		srbdp++;
573744Sgs150176 	}
574744Sgs150176 	DMA_SYNC(rgep->rx_desc, DDI_DMA_SYNC_FORDEV);
575744Sgs150176 	return (DDI_SUCCESS);
576744Sgs150176 }
577744Sgs150176 
578744Sgs150176 static int
579744Sgs150176 rge_init_buf_ring(rge_t *rgep)
580744Sgs150176 {
581744Sgs150176 	uint32_t slot;
5822544Sgs150176 	sw_rbd_t *free_srbdp;
583744Sgs150176 	dma_buf_t *rx_buf;
584744Sgs150176 	dma_area_t *pbuf;
5852544Sgs150176 	int err;
5862544Sgs150176 
5872544Sgs150176 	if (rgep->chip_flags & CHIP_FLAG_FORCE_BCOPY) {
5882544Sgs150176 		rgep->rx_bcopy = B_TRUE;
5892544Sgs150176 		return (DDI_SUCCESS);
5902544Sgs150176 	}
591744Sgs150176 
592744Sgs150176 	/*
593744Sgs150176 	 * Allocate the array of s/w free Buffer Descriptors
594744Sgs150176 	 */
5952544Sgs150176 	free_srbdp = kmem_zalloc(RGE_BUF_SLOTS*sizeof (*free_srbdp), KM_SLEEP);
5962544Sgs150176 	rgep->free_srbds = free_srbdp;
597744Sgs150176 
598744Sgs150176 	/*
599744Sgs150176 	 * Init free buffer ring
600744Sgs150176 	 */
601744Sgs150176 	rgep->rc_next = 0;
602744Sgs150176 	rgep->rf_next = 0;
603744Sgs150176 	rgep->rx_bcopy = B_FALSE;
604744Sgs150176 	rgep->rx_free = RGE_BUF_SLOTS;
6052544Sgs150176 	for (slot = 0; slot < RGE_BUF_SLOTS; slot++) {
6062544Sgs150176 		free_srbdp->rx_buf = rx_buf =
6072544Sgs150176 		    kmem_zalloc(sizeof (dma_buf_t), KM_SLEEP);
6082544Sgs150176 
6092544Sgs150176 		/*
6102544Sgs150176 		 * Allocate memory & handle for free Rx buffers
6112544Sgs150176 		 */
6122544Sgs150176 		pbuf = &rx_buf->pbuf;
6132544Sgs150176 		err = rge_alloc_dma_mem(rgep, rgep->rxbuf_size,
6142544Sgs150176 		    &dma_attr_buf, &rge_buf_accattr,
6152544Sgs150176 		    DDI_DMA_READ | DDI_DMA_STREAMING, pbuf);
6162544Sgs150176 		if (err != DDI_SUCCESS) {
6172544Sgs150176 			rge_fini_buf_ring(rgep);
6182544Sgs150176 			rge_error(rgep,
6192544Sgs150176 			    "rge_init_buf_ring: alloc rx free buffer failed");
6202544Sgs150176 			return (DDI_FAILURE);
621744Sgs150176 		}
6222544Sgs150176 		pbuf->alength -= rgep->head_room;
6232544Sgs150176 		pbuf->offset += rgep->head_room;
6242544Sgs150176 		rx_buf->rx_recycle.free_func = rge_rx_recycle;
6252544Sgs150176 		rx_buf->rx_recycle.free_arg = (caddr_t)rx_buf;
6262544Sgs150176 		rx_buf->private = (caddr_t)rgep;
6272544Sgs150176 		rx_buf->mp = desballoc(DMA_VPTR(rx_buf->pbuf),
6282544Sgs150176 		    rgep->rxbuf_size, 0, &rx_buf->rx_recycle);
6292544Sgs150176 		if (rx_buf->mp == NULL) {
6302544Sgs150176 			rge_fini_buf_ring(rgep);
6312544Sgs150176 			rge_problem(rgep,
6322544Sgs150176 			    "rge_init_buf_ring: desballoc() failed");
6332544Sgs150176 			return (DDI_FAILURE);
6342544Sgs150176 		}
6352544Sgs150176 		free_srbdp++;
636744Sgs150176 	}
637744Sgs150176 	return (DDI_SUCCESS);
638744Sgs150176 }
639744Sgs150176 
640744Sgs150176 static int
641744Sgs150176 rge_init_rings(rge_t *rgep)
642744Sgs150176 {
643744Sgs150176 	int err;
644744Sgs150176 
6452544Sgs150176 	err = rge_init_send_ring(rgep);
6462544Sgs150176 	if (err != DDI_SUCCESS)
6472544Sgs150176 		return (DDI_FAILURE);
648744Sgs150176 
6492544Sgs150176 	err = rge_init_recv_ring(rgep);
6502544Sgs150176 	if (err != DDI_SUCCESS) {
6512544Sgs150176 		rge_fini_send_ring(rgep);
6522544Sgs150176 		return (DDI_FAILURE);
6532544Sgs150176 	}
654744Sgs150176 
6552544Sgs150176 	err = rge_init_buf_ring(rgep);
6562544Sgs150176 	if (err != DDI_SUCCESS) {
6572544Sgs150176 		rge_fini_send_ring(rgep);
6582544Sgs150176 		rge_fini_recv_ring(rgep);
6592544Sgs150176 		return (DDI_FAILURE);
6602544Sgs150176 	}
661744Sgs150176 
6622544Sgs150176 	return (DDI_SUCCESS);
663744Sgs150176 }
664744Sgs150176 
665744Sgs150176 /*
666744Sgs150176  * ========== Internal state management entry points ==========
667744Sgs150176  */
668744Sgs150176 
669744Sgs150176 #undef	RGE_DBG
670744Sgs150176 #define	RGE_DBG		RGE_DBG_NEMO	/* debug flag for this code	*/
671744Sgs150176 
672744Sgs150176 /*
673744Sgs150176  * These routines provide all the functionality required by the
674744Sgs150176  * corresponding MAC layer entry points, but don't update the
675744Sgs150176  * MAC state so they can be called internally without disturbing
676744Sgs150176  * our record of what NEMO thinks we should be doing ...
677744Sgs150176  */
678744Sgs150176 
679744Sgs150176 /*
680744Sgs150176  *	rge_reset() -- reset h/w & rings to initial state
681744Sgs150176  */
682744Sgs150176 static void
683744Sgs150176 rge_reset(rge_t *rgep)
684744Sgs150176 {
685744Sgs150176 	ASSERT(mutex_owned(rgep->genlock));
686744Sgs150176 
687744Sgs150176 	/*
688744Sgs150176 	 * Grab all the other mutexes in the world (this should
689744Sgs150176 	 * ensure no other threads are manipulating driver state)
690744Sgs150176 	 */
691744Sgs150176 	mutex_enter(rgep->rx_lock);
692744Sgs150176 	mutex_enter(rgep->rc_lock);
693744Sgs150176 	rw_enter(rgep->errlock, RW_WRITER);
694744Sgs150176 
695744Sgs150176 	(void) rge_chip_reset(rgep);
696744Sgs150176 	rge_reinit_rings(rgep);
697744Sgs150176 	rge_chip_init(rgep);
698744Sgs150176 
699744Sgs150176 	/*
700744Sgs150176 	 * Free the world ...
701744Sgs150176 	 */
702744Sgs150176 	rw_exit(rgep->errlock);
703744Sgs150176 	mutex_exit(rgep->rc_lock);
704744Sgs150176 	mutex_exit(rgep->rx_lock);
705744Sgs150176 
7066410Smx205022 	rgep->stats.rpackets = 0;
7076410Smx205022 	rgep->stats.rbytes = 0;
7086410Smx205022 	rgep->stats.opackets = 0;
7096410Smx205022 	rgep->stats.obytes = 0;
7106410Smx205022 	rgep->stats.tx_pre_ismax = B_FALSE;
7116410Smx205022 	rgep->stats.tx_cur_ismax = B_FALSE;
7126410Smx205022 
713744Sgs150176 	RGE_DEBUG(("rge_reset($%p) done", (void *)rgep));
714744Sgs150176 }
715744Sgs150176 
716744Sgs150176 /*
717744Sgs150176  *	rge_stop() -- stop processing, don't reset h/w or rings
718744Sgs150176  */
719744Sgs150176 static void
720744Sgs150176 rge_stop(rge_t *rgep)
721744Sgs150176 {
722744Sgs150176 	ASSERT(mutex_owned(rgep->genlock));
723744Sgs150176 
724744Sgs150176 	rge_chip_stop(rgep, B_FALSE);
725744Sgs150176 
726744Sgs150176 	RGE_DEBUG(("rge_stop($%p) done", (void *)rgep));
727744Sgs150176 }
728744Sgs150176 
729744Sgs150176 /*
730744Sgs150176  *	rge_start() -- start transmitting/receiving
731744Sgs150176  */
732744Sgs150176 static void
733744Sgs150176 rge_start(rge_t *rgep)
734744Sgs150176 {
735744Sgs150176 	ASSERT(mutex_owned(rgep->genlock));
736744Sgs150176 
737744Sgs150176 	/*
738744Sgs150176 	 * Start chip processing, including enabling interrupts
739744Sgs150176 	 */
740744Sgs150176 	rge_chip_start(rgep);
741744Sgs150176 	rgep->watchdog = 0;
742744Sgs150176 }
743744Sgs150176 
744744Sgs150176 /*
745744Sgs150176  * rge_restart - restart transmitting/receiving after error or suspend
746744Sgs150176  */
747744Sgs150176 void
748744Sgs150176 rge_restart(rge_t *rgep)
749744Sgs150176 {
750744Sgs150176 	uint32_t i;
751744Sgs150176 
752744Sgs150176 	ASSERT(mutex_owned(rgep->genlock));
753744Sgs150176 	/*
754744Sgs150176 	 * Wait for posted buffer to be freed...
755744Sgs150176 	 */
756744Sgs150176 	if (!rgep->rx_bcopy) {
757744Sgs150176 		for (i = 0; i < RXBUFF_FREE_LOOP; i++) {
758744Sgs150176 			if (rgep->rx_free == RGE_BUF_SLOTS)
759744Sgs150176 				break;
760744Sgs150176 			drv_usecwait(1000);
761744Sgs150176 			RGE_DEBUG(("rge_restart: waiting for rx buf free..."));
762744Sgs150176 		}
763744Sgs150176 	}
764744Sgs150176 	rge_reset(rgep);
765744Sgs150176 	rgep->stats.chip_reset++;
766744Sgs150176 	if (rgep->rge_mac_state == RGE_MAC_STARTED) {
767744Sgs150176 		rge_start(rgep);
7682544Sgs150176 		rgep->resched_needed = B_TRUE;
7692544Sgs150176 		(void) ddi_intr_trigger_softint(rgep->resched_hdl, NULL);
770744Sgs150176 	}
771744Sgs150176 }
772744Sgs150176 
773744Sgs150176 
774744Sgs150176 /*
775744Sgs150176  * ========== Nemo-required management entry points ==========
776744Sgs150176  */
777744Sgs150176 
778744Sgs150176 #undef	RGE_DBG
779744Sgs150176 #define	RGE_DBG		RGE_DBG_NEMO	/* debug flag for this code	*/
780744Sgs150176 
781744Sgs150176 /*
782744Sgs150176  *	rge_m_stop() -- stop transmitting/receiving
783744Sgs150176  */
784744Sgs150176 static void
785744Sgs150176 rge_m_stop(void *arg)
786744Sgs150176 {
787744Sgs150176 	rge_t *rgep = arg;		/* private device info	*/
788744Sgs150176 	uint32_t i;
789744Sgs150176 
790744Sgs150176 	/*
791744Sgs150176 	 * Just stop processing, then record new MAC state
792744Sgs150176 	 */
793744Sgs150176 	mutex_enter(rgep->genlock);
7946764Smx205022 	if (rgep->suspended) {
7956764Smx205022 		ASSERT(rgep->rge_mac_state == RGE_MAC_STOPPED);
7966764Smx205022 		mutex_exit(rgep->genlock);
7976764Smx205022 		return;
7986764Smx205022 	}
799744Sgs150176 	rge_stop(rgep);
800744Sgs150176 	/*
801744Sgs150176 	 * Wait for posted buffer to be freed...
802744Sgs150176 	 */
803744Sgs150176 	if (!rgep->rx_bcopy) {
804744Sgs150176 		for (i = 0; i < RXBUFF_FREE_LOOP; i++) {
805744Sgs150176 			if (rgep->rx_free == RGE_BUF_SLOTS)
806744Sgs150176 				break;
807744Sgs150176 			drv_usecwait(1000);
808744Sgs150176 			RGE_DEBUG(("rge_m_stop: waiting for rx buf free..."));
809744Sgs150176 		}
810744Sgs150176 	}
811744Sgs150176 	rgep->rge_mac_state = RGE_MAC_STOPPED;
812744Sgs150176 	RGE_DEBUG(("rge_m_stop($%p) done", arg));
813744Sgs150176 	mutex_exit(rgep->genlock);
814744Sgs150176 }
815744Sgs150176 
816744Sgs150176 /*
817744Sgs150176  *	rge_m_start() -- start transmitting/receiving
818744Sgs150176  */
819744Sgs150176 static int
820744Sgs150176 rge_m_start(void *arg)
821744Sgs150176 {
822744Sgs150176 	rge_t *rgep = arg;		/* private device info	*/
823744Sgs150176 
824744Sgs150176 	mutex_enter(rgep->genlock);
8256764Smx205022 	if (rgep->suspended) {
8266764Smx205022 		mutex_exit(rgep->genlock);
8276764Smx205022 		return (DDI_FAILURE);
8286764Smx205022 	}
829744Sgs150176 	/*
830744Sgs150176 	 * Clear hw/sw statistics
831744Sgs150176 	 */
832744Sgs150176 	DMA_ZERO(rgep->dma_area_stats);
833744Sgs150176 	bzero(&rgep->stats, sizeof (rge_stats_t));
834744Sgs150176 
835744Sgs150176 	/*
836744Sgs150176 	 * Start processing and record new MAC state
837744Sgs150176 	 */
838744Sgs150176 	rge_reset(rgep);
839744Sgs150176 	rge_start(rgep);
840744Sgs150176 	rgep->rge_mac_state = RGE_MAC_STARTED;
841744Sgs150176 	RGE_DEBUG(("rge_m_start($%p) done", arg));
842744Sgs150176 
843744Sgs150176 	mutex_exit(rgep->genlock);
844744Sgs150176 
845744Sgs150176 	return (0);
846744Sgs150176 }
847744Sgs150176 
848744Sgs150176 /*
849744Sgs150176  *	rge_m_unicst_set() -- set the physical network address
850744Sgs150176  */
851744Sgs150176 static int
852744Sgs150176 rge_m_unicst(void *arg, const uint8_t *macaddr)
853744Sgs150176 {
854744Sgs150176 	rge_t *rgep = arg;		/* private device info	*/
855744Sgs150176 
856744Sgs150176 	/*
857744Sgs150176 	 * Remember the new current address in the driver state
858744Sgs150176 	 * Sync the chip's idea of the address too ...
859744Sgs150176 	 */
860744Sgs150176 	mutex_enter(rgep->genlock);
861744Sgs150176 	bcopy(macaddr, rgep->netaddr, ETHERADDRL);
8626764Smx205022 
8636764Smx205022 	if (rgep->suspended) {
8646764Smx205022 		mutex_exit(rgep->genlock);
8656764Smx205022 		return (DDI_SUCCESS);
8666764Smx205022 	}
8676764Smx205022 
868744Sgs150176 	rge_chip_sync(rgep, RGE_SET_MAC);
869744Sgs150176 	mutex_exit(rgep->genlock);
870744Sgs150176 
871744Sgs150176 	return (0);
872744Sgs150176 }
873744Sgs150176 
874744Sgs150176 /*
875744Sgs150176  * Compute the index of the required bit in the multicast hash map.
876744Sgs150176  * This must mirror the way the hardware actually does it!
877744Sgs150176  */
878744Sgs150176 static uint32_t
879744Sgs150176 rge_hash_index(const uint8_t *mca)
880744Sgs150176 {
8812544Sgs150176 	uint32_t crc = (uint32_t)RGE_HASH_CRC;
882744Sgs150176 	uint32_t const POLY = RGE_HASH_POLY;
883744Sgs150176 	uint32_t msb;
884744Sgs150176 	int bytes;
885744Sgs150176 	uchar_t currentbyte;
886744Sgs150176 	uint32_t index;
887744Sgs150176 	int bit;
888744Sgs150176 
889744Sgs150176 	for (bytes = 0; bytes < ETHERADDRL; bytes++) {
890744Sgs150176 		currentbyte = mca[bytes];
891744Sgs150176 		for (bit = 0; bit < 8; bit++) {
892744Sgs150176 			msb = crc >> 31;
893744Sgs150176 			crc <<= 1;
8942544Sgs150176 			if (msb ^ (currentbyte & 1))
895744Sgs150176 				crc ^= POLY;
896744Sgs150176 			currentbyte >>= 1;
897744Sgs150176 		}
898744Sgs150176 	}
899744Sgs150176 	index = crc >> 26;
9002544Sgs150176 		/* the index value is between 0 and 63(0x3f) */
901744Sgs150176 
902744Sgs150176 	return (index);
903744Sgs150176 }
904744Sgs150176 
905744Sgs150176 /*
906744Sgs150176  *	rge_m_multicst_add() -- enable/disable a multicast address
907744Sgs150176  */
908744Sgs150176 static int
909744Sgs150176 rge_m_multicst(void *arg, boolean_t add, const uint8_t *mca)
910744Sgs150176 {
911744Sgs150176 	rge_t *rgep = arg;		/* private device info	*/
912744Sgs150176 	struct ether_addr *addr;
913744Sgs150176 	uint32_t index;
9142544Sgs150176 	uint32_t reg;
9152544Sgs150176 	uint8_t *hashp;
916744Sgs150176 
917744Sgs150176 	mutex_enter(rgep->genlock);
918744Sgs150176 	hashp = rgep->mcast_hash;
919744Sgs150176 	addr = (struct ether_addr *)mca;
9202544Sgs150176 	/*
9212544Sgs150176 	 * Calculate the Multicast address hash index value
9222544Sgs150176 	 *	Normally, the position of MAR0-MAR7 is
9232544Sgs150176 	 *	MAR0: offset 0x08, ..., MAR7: offset 0x0F.
9242544Sgs150176 	 *
9252544Sgs150176 	 *	For pcie chipset, the position of MAR0-MAR7 is
9262544Sgs150176 	 *	different from others:
9272544Sgs150176 	 *	MAR0: offset 0x0F, ..., MAR7: offset 0x08.
9282544Sgs150176 	 */
929744Sgs150176 	index = rge_hash_index(addr->ether_addr_octet);
9302544Sgs150176 	if (rgep->chipid.is_pcie)
9312544Sgs150176 		reg = (~(index / RGE_MCAST_NUM)) & 0x7;
9322544Sgs150176 	else
9332544Sgs150176 		reg = index / RGE_MCAST_NUM;
934744Sgs150176 
935744Sgs150176 	if (add) {
936744Sgs150176 		if (rgep->mcast_refs[index]++) {
937744Sgs150176 			mutex_exit(rgep->genlock);
938744Sgs150176 			return (0);
939744Sgs150176 		}
9402544Sgs150176 		hashp[reg] |= 1 << (index % RGE_MCAST_NUM);
941744Sgs150176 	} else {
942744Sgs150176 		if (--rgep->mcast_refs[index]) {
943744Sgs150176 			mutex_exit(rgep->genlock);
944744Sgs150176 			return (0);
945744Sgs150176 		}
9462544Sgs150176 		hashp[reg] &= ~ (1 << (index % RGE_MCAST_NUM));
947744Sgs150176 	}
948744Sgs150176 
9496764Smx205022 	if (rgep->suspended) {
9506764Smx205022 		mutex_exit(rgep->genlock);
9516764Smx205022 		return (DDI_SUCCESS);
9526764Smx205022 	}
9536764Smx205022 
954744Sgs150176 	/*
955744Sgs150176 	 * Set multicast register
956744Sgs150176 	 */
957744Sgs150176 	rge_chip_sync(rgep, RGE_SET_MUL);
958744Sgs150176 
959744Sgs150176 	mutex_exit(rgep->genlock);
960744Sgs150176 	return (0);
961744Sgs150176 }
962744Sgs150176 
963744Sgs150176 /*
964744Sgs150176  * rge_m_promisc() -- set or reset promiscuous mode on the board
965744Sgs150176  *
966744Sgs150176  *	Program the hardware to enable/disable promiscuous and/or
967744Sgs150176  *	receive-all-multicast modes.
968744Sgs150176  */
969744Sgs150176 static int
970744Sgs150176 rge_m_promisc(void *arg, boolean_t on)
971744Sgs150176 {
972744Sgs150176 	rge_t *rgep = arg;
973744Sgs150176 
974744Sgs150176 	/*
975744Sgs150176 	 * Store MAC layer specified mode and pass to chip layer to update h/w
976744Sgs150176 	 */
977744Sgs150176 	mutex_enter(rgep->genlock);
978744Sgs150176 
979744Sgs150176 	if (rgep->promisc == on) {
980744Sgs150176 		mutex_exit(rgep->genlock);
981744Sgs150176 		return (0);
982744Sgs150176 	}
983744Sgs150176 	rgep->promisc = on;
9846764Smx205022 
9856764Smx205022 	if (rgep->suspended) {
9866764Smx205022 		mutex_exit(rgep->genlock);
9876764Smx205022 		return (DDI_SUCCESS);
9886764Smx205022 	}
9896764Smx205022 
990744Sgs150176 	rge_chip_sync(rgep, RGE_SET_PROMISC);
991744Sgs150176 	RGE_DEBUG(("rge_m_promisc_set($%p) done", arg));
992744Sgs150176 	mutex_exit(rgep->genlock);
993744Sgs150176 	return (0);
994744Sgs150176 }
995744Sgs150176 
996744Sgs150176 /*
997744Sgs150176  * Loopback ioctl code
998744Sgs150176  */
999744Sgs150176 
1000744Sgs150176 static lb_property_t loopmodes[] = {
1001744Sgs150176 	{ normal,	"normal",	RGE_LOOP_NONE		},
1002744Sgs150176 	{ internal,	"PHY",		RGE_LOOP_INTERNAL_PHY	},
1003744Sgs150176 	{ internal,	"MAC",		RGE_LOOP_INTERNAL_MAC	}
1004744Sgs150176 };
1005744Sgs150176 
1006744Sgs150176 static enum ioc_reply
1007744Sgs150176 rge_set_loop_mode(rge_t *rgep, uint32_t mode)
1008744Sgs150176 {
1009744Sgs150176 	/*
1010744Sgs150176 	 * If the mode isn't being changed, there's nothing to do ...
1011744Sgs150176 	 */
1012744Sgs150176 	if (mode == rgep->param_loop_mode)
1013744Sgs150176 		return (IOC_ACK);
1014744Sgs150176 
1015744Sgs150176 	/*
1016744Sgs150176 	 * Validate the requested mode and prepare a suitable message
1017744Sgs150176 	 * to explain the link down/up cycle that the change will
1018744Sgs150176 	 * probably induce ...
1019744Sgs150176 	 */
1020744Sgs150176 	switch (mode) {
1021744Sgs150176 	default:
1022744Sgs150176 		return (IOC_INVAL);
1023744Sgs150176 
1024744Sgs150176 	case RGE_LOOP_NONE:
1025744Sgs150176 	case RGE_LOOP_INTERNAL_PHY:
1026744Sgs150176 	case RGE_LOOP_INTERNAL_MAC:
1027744Sgs150176 		break;
1028744Sgs150176 	}
1029744Sgs150176 
1030744Sgs150176 	/*
1031744Sgs150176 	 * All OK; tell the caller to reprogram
1032744Sgs150176 	 * the PHY and/or MAC for the new mode ...
1033744Sgs150176 	 */
1034744Sgs150176 	rgep->param_loop_mode = mode;
1035744Sgs150176 	return (IOC_RESTART_ACK);
1036744Sgs150176 }
1037744Sgs150176 
1038744Sgs150176 static enum ioc_reply
1039744Sgs150176 rge_loop_ioctl(rge_t *rgep, queue_t *wq, mblk_t *mp, struct iocblk *iocp)
1040744Sgs150176 {
1041744Sgs150176 	lb_info_sz_t *lbsp;
1042744Sgs150176 	lb_property_t *lbpp;
1043744Sgs150176 	uint32_t *lbmp;
1044744Sgs150176 	int cmd;
1045744Sgs150176 
1046744Sgs150176 	_NOTE(ARGUNUSED(wq))
1047744Sgs150176 
1048744Sgs150176 	/*
1049744Sgs150176 	 * Validate format of ioctl
1050744Sgs150176 	 */
1051744Sgs150176 	if (mp->b_cont == NULL)
1052744Sgs150176 		return (IOC_INVAL);
1053744Sgs150176 
1054744Sgs150176 	cmd = iocp->ioc_cmd;
1055744Sgs150176 	switch (cmd) {
1056744Sgs150176 	default:
1057744Sgs150176 		/* NOTREACHED */
1058744Sgs150176 		rge_error(rgep, "rge_loop_ioctl: invalid cmd 0x%x", cmd);
1059744Sgs150176 		return (IOC_INVAL);
1060744Sgs150176 
1061744Sgs150176 	case LB_GET_INFO_SIZE:
1062744Sgs150176 		if (iocp->ioc_count != sizeof (lb_info_sz_t))
1063744Sgs150176 			return (IOC_INVAL);
1064744Sgs150176 		lbsp = (lb_info_sz_t *)mp->b_cont->b_rptr;
1065744Sgs150176 		*lbsp = sizeof (loopmodes);
1066744Sgs150176 		return (IOC_REPLY);
1067744Sgs150176 
1068744Sgs150176 	case LB_GET_INFO:
1069744Sgs150176 		if (iocp->ioc_count != sizeof (loopmodes))
1070744Sgs150176 			return (IOC_INVAL);
1071744Sgs150176 		lbpp = (lb_property_t *)mp->b_cont->b_rptr;
1072744Sgs150176 		bcopy(loopmodes, lbpp, sizeof (loopmodes));
1073744Sgs150176 		return (IOC_REPLY);
1074744Sgs150176 
1075744Sgs150176 	case LB_GET_MODE:
1076744Sgs150176 		if (iocp->ioc_count != sizeof (uint32_t))
1077744Sgs150176 			return (IOC_INVAL);
1078744Sgs150176 		lbmp = (uint32_t *)mp->b_cont->b_rptr;
1079744Sgs150176 		*lbmp = rgep->param_loop_mode;
1080744Sgs150176 		return (IOC_REPLY);
1081744Sgs150176 
1082744Sgs150176 	case LB_SET_MODE:
1083744Sgs150176 		if (iocp->ioc_count != sizeof (uint32_t))
1084744Sgs150176 			return (IOC_INVAL);
1085744Sgs150176 		lbmp = (uint32_t *)mp->b_cont->b_rptr;
1086744Sgs150176 		return (rge_set_loop_mode(rgep, *lbmp));
1087744Sgs150176 	}
1088744Sgs150176 }
1089744Sgs150176 
1090744Sgs150176 /*
1091744Sgs150176  * Specific rge IOCTLs, the MAC layer handles the generic ones.
1092744Sgs150176  */
1093744Sgs150176 static void
1094744Sgs150176 rge_m_ioctl(void *arg, queue_t *wq, mblk_t *mp)
1095744Sgs150176 {
1096744Sgs150176 	rge_t *rgep = arg;
1097744Sgs150176 	struct iocblk *iocp;
1098744Sgs150176 	enum ioc_reply status;
1099744Sgs150176 	boolean_t need_privilege;
1100744Sgs150176 	int err;
1101744Sgs150176 	int cmd;
1102744Sgs150176 
1103744Sgs150176 	/*
11046764Smx205022 	 * If suspended, we might actually be able to do some of
11056764Smx205022 	 * these ioctls, but it is harder to make sure they occur
11066764Smx205022 	 * without actually putting the hardware in an undesireable
11076764Smx205022 	 * state.  So just NAK it.
11086764Smx205022 	 */
11096764Smx205022 	mutex_enter(rgep->genlock);
11106764Smx205022 	if (rgep->suspended) {
11116764Smx205022 		miocnak(wq, mp, 0, EINVAL);
11126764Smx205022 		mutex_exit(rgep->genlock);
11136764Smx205022 		return;
11146764Smx205022 	}
11156764Smx205022 	mutex_exit(rgep->genlock);
11166764Smx205022 
11176764Smx205022 	/*
1118744Sgs150176 	 * Validate the command before bothering with the mutex ...
1119744Sgs150176 	 */
1120744Sgs150176 	iocp = (struct iocblk *)mp->b_rptr;
1121744Sgs150176 	iocp->ioc_error = 0;
1122744Sgs150176 	need_privilege = B_TRUE;
1123744Sgs150176 	cmd = iocp->ioc_cmd;
1124744Sgs150176 	switch (cmd) {
1125744Sgs150176 	default:
1126744Sgs150176 		miocnak(wq, mp, 0, EINVAL);
1127744Sgs150176 		return;
1128744Sgs150176 
1129744Sgs150176 	case RGE_MII_READ:
1130744Sgs150176 	case RGE_MII_WRITE:
1131744Sgs150176 	case RGE_DIAG:
1132744Sgs150176 	case RGE_PEEK:
1133744Sgs150176 	case RGE_POKE:
1134744Sgs150176 	case RGE_PHY_RESET:
1135744Sgs150176 	case RGE_SOFT_RESET:
1136744Sgs150176 	case RGE_HARD_RESET:
1137744Sgs150176 		break;
1138744Sgs150176 
1139744Sgs150176 	case LB_GET_INFO_SIZE:
1140744Sgs150176 	case LB_GET_INFO:
1141744Sgs150176 	case LB_GET_MODE:
1142744Sgs150176 		need_privilege = B_FALSE;
1143744Sgs150176 		/* FALLTHRU */
1144744Sgs150176 	case LB_SET_MODE:
1145744Sgs150176 		break;
1146744Sgs150176 
1147744Sgs150176 	case ND_GET:
1148744Sgs150176 		need_privilege = B_FALSE;
1149744Sgs150176 		/* FALLTHRU */
1150744Sgs150176 	case ND_SET:
1151744Sgs150176 		break;
1152744Sgs150176 	}
1153744Sgs150176 
1154744Sgs150176 	if (need_privilege) {
1155744Sgs150176 		/*
11562544Sgs150176 		 * Check for specific net_config privilege
1157744Sgs150176 		 */
11582544Sgs150176 		err = secpolicy_net_config(iocp->ioc_cr, B_FALSE);
1159744Sgs150176 		if (err != 0) {
1160744Sgs150176 			miocnak(wq, mp, 0, err);
1161744Sgs150176 			return;
1162744Sgs150176 		}
1163744Sgs150176 	}
1164744Sgs150176 
1165744Sgs150176 	mutex_enter(rgep->genlock);
1166744Sgs150176 
1167744Sgs150176 	switch (cmd) {
1168744Sgs150176 	default:
1169744Sgs150176 		_NOTE(NOTREACHED)
1170744Sgs150176 		status = IOC_INVAL;
1171744Sgs150176 		break;
1172744Sgs150176 
1173744Sgs150176 	case RGE_MII_READ:
1174744Sgs150176 	case RGE_MII_WRITE:
1175744Sgs150176 	case RGE_DIAG:
1176744Sgs150176 	case RGE_PEEK:
1177744Sgs150176 	case RGE_POKE:
1178744Sgs150176 	case RGE_PHY_RESET:
1179744Sgs150176 	case RGE_SOFT_RESET:
1180744Sgs150176 	case RGE_HARD_RESET:
1181744Sgs150176 		status = rge_chip_ioctl(rgep, wq, mp, iocp);
1182744Sgs150176 		break;
1183744Sgs150176 
1184744Sgs150176 	case LB_GET_INFO_SIZE:
1185744Sgs150176 	case LB_GET_INFO:
1186744Sgs150176 	case LB_GET_MODE:
1187744Sgs150176 	case LB_SET_MODE:
1188744Sgs150176 		status = rge_loop_ioctl(rgep, wq, mp, iocp);
1189744Sgs150176 		break;
1190744Sgs150176 
1191744Sgs150176 	case ND_GET:
1192744Sgs150176 	case ND_SET:
1193744Sgs150176 		status = rge_nd_ioctl(rgep, wq, mp, iocp);
1194744Sgs150176 		break;
1195744Sgs150176 	}
1196744Sgs150176 
1197744Sgs150176 	/*
1198744Sgs150176 	 * Do we need to reprogram the PHY and/or the MAC?
1199744Sgs150176 	 * Do it now, while we still have the mutex.
1200744Sgs150176 	 *
1201744Sgs150176 	 * Note: update the PHY first, 'cos it controls the
1202744Sgs150176 	 * speed/duplex parameters that the MAC code uses.
1203744Sgs150176 	 */
1204744Sgs150176 	switch (status) {
1205744Sgs150176 	case IOC_RESTART_REPLY:
1206744Sgs150176 	case IOC_RESTART_ACK:
1207744Sgs150176 		rge_phy_update(rgep);
1208744Sgs150176 		break;
1209744Sgs150176 	}
1210744Sgs150176 
1211744Sgs150176 	mutex_exit(rgep->genlock);
1212744Sgs150176 
1213744Sgs150176 	/*
1214744Sgs150176 	 * Finally, decide how to reply
1215744Sgs150176 	 */
1216744Sgs150176 	switch (status) {
1217744Sgs150176 	default:
1218744Sgs150176 	case IOC_INVAL:
1219744Sgs150176 		/*
1220744Sgs150176 		 * Error, reply with a NAK and EINVAL or the specified error
1221744Sgs150176 		 */
1222744Sgs150176 		miocnak(wq, mp, 0, iocp->ioc_error == 0 ?
12235107Seota 		    EINVAL : iocp->ioc_error);
1224744Sgs150176 		break;
1225744Sgs150176 
1226744Sgs150176 	case IOC_DONE:
1227744Sgs150176 		/*
1228744Sgs150176 		 * OK, reply already sent
1229744Sgs150176 		 */
1230744Sgs150176 		break;
1231744Sgs150176 
1232744Sgs150176 	case IOC_RESTART_ACK:
1233744Sgs150176 	case IOC_ACK:
1234744Sgs150176 		/*
1235744Sgs150176 		 * OK, reply with an ACK
1236744Sgs150176 		 */
1237744Sgs150176 		miocack(wq, mp, 0, 0);
1238744Sgs150176 		break;
1239744Sgs150176 
1240744Sgs150176 	case IOC_RESTART_REPLY:
1241744Sgs150176 	case IOC_REPLY:
1242744Sgs150176 		/*
1243744Sgs150176 		 * OK, send prepared reply as ACK or NAK
1244744Sgs150176 		 */
1245744Sgs150176 		mp->b_datap->db_type = iocp->ioc_error == 0 ?
12465107Seota 		    M_IOCACK : M_IOCNAK;
1247744Sgs150176 		qreply(wq, mp);
1248744Sgs150176 		break;
1249744Sgs150176 	}
1250744Sgs150176 }
1251744Sgs150176 
1252744Sgs150176 static void
1253744Sgs150176 rge_m_resources(void *arg)
1254744Sgs150176 {
1255744Sgs150176 	rge_t *rgep = arg;
1256744Sgs150176 	mac_rx_fifo_t mrf;
1257744Sgs150176 
1258744Sgs150176 	mutex_enter(rgep->genlock);
1259744Sgs150176 
1260744Sgs150176 	/*
1261744Sgs150176 	 * Register Rx rings as resources and save mac
1262744Sgs150176 	 * resource id for future reference
1263744Sgs150176 	 */
1264744Sgs150176 	mrf.mrf_type = MAC_RX_FIFO;
1265744Sgs150176 	mrf.mrf_blank = rge_chip_blank;
1266744Sgs150176 	mrf.mrf_arg = (void *)rgep;
1267744Sgs150176 	mrf.mrf_normal_blank_time = RGE_RX_INT_TIME;
1268744Sgs150176 	mrf.mrf_normal_pkt_count = RGE_RX_INT_PKTS;
12692311Sseb 	rgep->handle = mac_resource_add(rgep->mh, (mac_resource_t *)&mrf);
1270744Sgs150176 
1271744Sgs150176 	mutex_exit(rgep->genlock);
1272744Sgs150176 }
1273744Sgs150176 
12742311Sseb /* ARGSUSED */
12752311Sseb static boolean_t
12762311Sseb rge_m_getcapab(void *arg, mac_capab_t cap, void *cap_data)
12772311Sseb {
12787516SYong.Tan@Sun.COM 	rge_t *rgep = arg;
12797516SYong.Tan@Sun.COM 
12802311Sseb 	switch (cap) {
12812311Sseb 	case MAC_CAPAB_HCKSUM: {
12822311Sseb 		uint32_t *hcksum_txflags = cap_data;
12837516SYong.Tan@Sun.COM 		switch (rgep->chipid.mac_ver) {
12847516SYong.Tan@Sun.COM 		case MAC_VER_8169:
12857516SYong.Tan@Sun.COM 		case MAC_VER_8169S_D:
12867516SYong.Tan@Sun.COM 		case MAC_VER_8169S_E:
12877516SYong.Tan@Sun.COM 		case MAC_VER_8169SB:
12887516SYong.Tan@Sun.COM 		case MAC_VER_8169SC:
12897516SYong.Tan@Sun.COM 		case MAC_VER_8168:
12907516SYong.Tan@Sun.COM 		case MAC_VER_8168B_B:
12917516SYong.Tan@Sun.COM 		case MAC_VER_8168B_C:
12927516SYong.Tan@Sun.COM 		case MAC_VER_8101E:
12937516SYong.Tan@Sun.COM 			*hcksum_txflags = HCKSUM_INET_FULL_V4 |
12947516SYong.Tan@Sun.COM 			    HCKSUM_IPHDRCKSUM;
12957516SYong.Tan@Sun.COM 			break;
12967516SYong.Tan@Sun.COM 		case MAC_VER_8168B_D:
12977516SYong.Tan@Sun.COM 		case MAC_VER_8101E_B:
12987516SYong.Tan@Sun.COM 		case MAC_VER_8101E_C:
12997516SYong.Tan@Sun.COM 		default:
13007516SYong.Tan@Sun.COM 			*hcksum_txflags = 0;
13017516SYong.Tan@Sun.COM 			break;
13027516SYong.Tan@Sun.COM 		}
13032311Sseb 		break;
13042311Sseb 	}
13052311Sseb 	case MAC_CAPAB_POLL:
13062311Sseb 		/*
13072311Sseb 		 * There's nothing for us to fill in, simply returning
13082311Sseb 		 * B_TRUE stating that we support polling is sufficient.
13092311Sseb 		 */
13102311Sseb 		break;
13112311Sseb 	default:
13122311Sseb 		return (B_FALSE);
13132311Sseb 	}
13142311Sseb 	return (B_TRUE);
13152311Sseb }
13162311Sseb 
1317744Sgs150176 /*
13182544Sgs150176  * ============ Init MSI/Fixed Interrupt routines ==============
13192544Sgs150176  */
13202544Sgs150176 
13212544Sgs150176 /*
13222544Sgs150176  * rge_add_intrs:
13232544Sgs150176  *
13242544Sgs150176  * Register FIXED or MSI interrupts.
13252544Sgs150176  */
13262544Sgs150176 static int
13272544Sgs150176 rge_add_intrs(rge_t *rgep, int intr_type)
13282544Sgs150176 {
13292544Sgs150176 	dev_info_t *dip = rgep->devinfo;
13302544Sgs150176 	int avail;
13312544Sgs150176 	int actual;
13322544Sgs150176 	int intr_size;
13332544Sgs150176 	int count;
13342544Sgs150176 	int i, j;
13352544Sgs150176 	int ret;
13362544Sgs150176 
13372544Sgs150176 	/* Get number of interrupts */
13382544Sgs150176 	ret = ddi_intr_get_nintrs(dip, intr_type, &count);
13392544Sgs150176 	if ((ret != DDI_SUCCESS) || (count == 0)) {
13402544Sgs150176 		rge_error(rgep, "ddi_intr_get_nintrs() failure, ret: %d, "
13412544Sgs150176 		    "count: %d", ret, count);
13422544Sgs150176 		return (DDI_FAILURE);
13432544Sgs150176 	}
13442544Sgs150176 
13452544Sgs150176 	/* Get number of available interrupts */
13462544Sgs150176 	ret = ddi_intr_get_navail(dip, intr_type, &avail);
13472544Sgs150176 	if ((ret != DDI_SUCCESS) || (avail == 0)) {
13482544Sgs150176 		rge_error(rgep, "ddi_intr_get_navail() failure, "
13492544Sgs150176 		    "ret: %d, avail: %d\n", ret, avail);
13502544Sgs150176 		return (DDI_FAILURE);
13512544Sgs150176 	}
13522544Sgs150176 
13532544Sgs150176 	/* Allocate an array of interrupt handles */
13542544Sgs150176 	intr_size = count * sizeof (ddi_intr_handle_t);
13552544Sgs150176 	rgep->htable = kmem_alloc(intr_size, KM_SLEEP);
13562544Sgs150176 	rgep->intr_rqst = count;
13572544Sgs150176 
13582544Sgs150176 	/* Call ddi_intr_alloc() */
13592544Sgs150176 	ret = ddi_intr_alloc(dip, rgep->htable, intr_type, 0,
13602544Sgs150176 	    count, &actual, DDI_INTR_ALLOC_NORMAL);
13612544Sgs150176 	if (ret != DDI_SUCCESS || actual == 0) {
13622544Sgs150176 		rge_error(rgep, "ddi_intr_alloc() failed %d\n", ret);
13632544Sgs150176 		kmem_free(rgep->htable, intr_size);
13642544Sgs150176 		return (DDI_FAILURE);
13652544Sgs150176 	}
13662544Sgs150176 	if (actual < count) {
13672544Sgs150176 		rge_log(rgep, "ddi_intr_alloc() Requested: %d, Received: %d\n",
13682544Sgs150176 		    count, actual);
13692544Sgs150176 	}
13702544Sgs150176 	rgep->intr_cnt = actual;
13712544Sgs150176 
13722544Sgs150176 	/*
13732544Sgs150176 	 * Get priority for first msi, assume remaining are all the same
13742544Sgs150176 	 */
13752544Sgs150176 	if ((ret = ddi_intr_get_pri(rgep->htable[0], &rgep->intr_pri)) !=
13762544Sgs150176 	    DDI_SUCCESS) {
13772544Sgs150176 		rge_error(rgep, "ddi_intr_get_pri() failed %d\n", ret);
13782544Sgs150176 		/* Free already allocated intr */
13792544Sgs150176 		for (i = 0; i < actual; i++) {
13802544Sgs150176 			(void) ddi_intr_free(rgep->htable[i]);
13812544Sgs150176 		}
13822544Sgs150176 		kmem_free(rgep->htable, intr_size);
13832544Sgs150176 		return (DDI_FAILURE);
13842544Sgs150176 	}
13852544Sgs150176 
13862544Sgs150176 	/* Test for high level mutex */
13872544Sgs150176 	if (rgep->intr_pri >= ddi_intr_get_hilevel_pri()) {
13882544Sgs150176 		rge_error(rgep, "rge_add_intrs:"
13892544Sgs150176 		    "Hi level interrupt not supported");
13902544Sgs150176 		for (i = 0; i < actual; i++)
13912544Sgs150176 			(void) ddi_intr_free(rgep->htable[i]);
13922544Sgs150176 		kmem_free(rgep->htable, intr_size);
13932544Sgs150176 		return (DDI_FAILURE);
13942544Sgs150176 	}
13952544Sgs150176 
13962544Sgs150176 	/* Call ddi_intr_add_handler() */
13972544Sgs150176 	for (i = 0; i < actual; i++) {
13982544Sgs150176 		if ((ret = ddi_intr_add_handler(rgep->htable[i], rge_intr,
13992544Sgs150176 		    (caddr_t)rgep, (caddr_t)(uintptr_t)i)) != DDI_SUCCESS) {
14002544Sgs150176 			rge_error(rgep, "ddi_intr_add_handler() "
14012544Sgs150176 			    "failed %d\n", ret);
14022544Sgs150176 			/* Remove already added intr */
14032544Sgs150176 			for (j = 0; j < i; j++)
14042544Sgs150176 				(void) ddi_intr_remove_handler(rgep->htable[j]);
14052544Sgs150176 			/* Free already allocated intr */
14062544Sgs150176 			for (i = 0; i < actual; i++) {
14072544Sgs150176 				(void) ddi_intr_free(rgep->htable[i]);
14082544Sgs150176 			}
14092544Sgs150176 			kmem_free(rgep->htable, intr_size);
14102544Sgs150176 			return (DDI_FAILURE);
14112544Sgs150176 		}
14122544Sgs150176 	}
14132544Sgs150176 
14142544Sgs150176 	if ((ret = ddi_intr_get_cap(rgep->htable[0], &rgep->intr_cap))
14152544Sgs150176 	    != DDI_SUCCESS) {
14162544Sgs150176 		rge_error(rgep, "ddi_intr_get_cap() failed %d\n", ret);
14172544Sgs150176 		for (i = 0; i < actual; i++) {
14182544Sgs150176 			(void) ddi_intr_remove_handler(rgep->htable[i]);
14192544Sgs150176 			(void) ddi_intr_free(rgep->htable[i]);
14202544Sgs150176 		}
14212544Sgs150176 		kmem_free(rgep->htable, intr_size);
14222544Sgs150176 		return (DDI_FAILURE);
14232544Sgs150176 	}
14242544Sgs150176 
14252544Sgs150176 	return (DDI_SUCCESS);
14262544Sgs150176 }
14272544Sgs150176 
14282544Sgs150176 /*
14292544Sgs150176  * rge_rem_intrs:
14302544Sgs150176  *
14312544Sgs150176  * Unregister FIXED or MSI interrupts
14322544Sgs150176  */
14332544Sgs150176 static void
14342544Sgs150176 rge_rem_intrs(rge_t *rgep)
14352544Sgs150176 {
14362544Sgs150176 	int i;
14372544Sgs150176 
14382544Sgs150176 	/* Disable all interrupts */
14392544Sgs150176 	if (rgep->intr_cap & DDI_INTR_FLAG_BLOCK) {
14402544Sgs150176 		/* Call ddi_intr_block_disable() */
14412544Sgs150176 		(void) ddi_intr_block_disable(rgep->htable, rgep->intr_cnt);
14422544Sgs150176 	} else {
14432544Sgs150176 		for (i = 0; i < rgep->intr_cnt; i++) {
14442544Sgs150176 			(void) ddi_intr_disable(rgep->htable[i]);
14452544Sgs150176 		}
14462544Sgs150176 	}
14472544Sgs150176 
14482544Sgs150176 	/* Call ddi_intr_remove_handler() */
14492544Sgs150176 	for (i = 0; i < rgep->intr_cnt; i++) {
14502544Sgs150176 		(void) ddi_intr_remove_handler(rgep->htable[i]);
14512544Sgs150176 		(void) ddi_intr_free(rgep->htable[i]);
14522544Sgs150176 	}
14532544Sgs150176 
14542544Sgs150176 	kmem_free(rgep->htable, rgep->intr_rqst * sizeof (ddi_intr_handle_t));
14552544Sgs150176 }
14562544Sgs150176 
14572544Sgs150176 /*
1458744Sgs150176  * ========== Per-instance setup/teardown code ==========
1459744Sgs150176  */
1460744Sgs150176 
1461744Sgs150176 #undef	RGE_DBG
1462744Sgs150176 #define	RGE_DBG		RGE_DBG_INIT	/* debug flag for this code	*/
1463744Sgs150176 
1464744Sgs150176 static void
1465744Sgs150176 rge_unattach(rge_t *rgep)
1466744Sgs150176 {
1467744Sgs150176 	/*
1468744Sgs150176 	 * Flag that no more activity may be initiated
1469744Sgs150176 	 */
1470744Sgs150176 	rgep->progress &= ~PROGRESS_READY;
1471744Sgs150176 	rgep->rge_mac_state = RGE_MAC_UNATTACH;
1472744Sgs150176 
1473744Sgs150176 	/*
1474744Sgs150176 	 * Quiesce the PHY and MAC (leave it reset but still powered).
1475744Sgs150176 	 * Clean up and free all RGE data structures
1476744Sgs150176 	 */
14775107Seota 	if (rgep->periodic_id != NULL) {
14785107Seota 		ddi_periodic_delete(rgep->periodic_id);
14795107Seota 		rgep->periodic_id = NULL;
1480744Sgs150176 	}
1481744Sgs150176 
1482744Sgs150176 	if (rgep->progress & PROGRESS_KSTATS)
1483744Sgs150176 		rge_fini_kstats(rgep);
1484744Sgs150176 
1485744Sgs150176 	if (rgep->progress & PROGRESS_PHY)
1486744Sgs150176 		(void) rge_phy_reset(rgep);
1487744Sgs150176 
14882544Sgs150176 	if (rgep->progress & PROGRESS_INIT) {
1489744Sgs150176 		mutex_enter(rgep->genlock);
1490744Sgs150176 		(void) rge_chip_reset(rgep);
1491744Sgs150176 		mutex_exit(rgep->genlock);
1492744Sgs150176 		rge_fini_rings(rgep);
14932544Sgs150176 	}
14942544Sgs150176 
14952544Sgs150176 	if (rgep->progress & PROGRESS_INTR) {
14962544Sgs150176 		rge_rem_intrs(rgep);
1497744Sgs150176 		mutex_destroy(rgep->rc_lock);
1498744Sgs150176 		mutex_destroy(rgep->rx_lock);
1499744Sgs150176 		mutex_destroy(rgep->tc_lock);
1500744Sgs150176 		mutex_destroy(rgep->tx_lock);
1501744Sgs150176 		rw_destroy(rgep->errlock);
1502744Sgs150176 		mutex_destroy(rgep->genlock);
1503744Sgs150176 	}
1504744Sgs150176 
1505744Sgs150176 	if (rgep->progress & PROGRESS_FACTOTUM)
15062544Sgs150176 		(void) ddi_intr_remove_softint(rgep->factotum_hdl);
1507744Sgs150176 
1508744Sgs150176 	if (rgep->progress & PROGRESS_RESCHED)
15092544Sgs150176 		(void) ddi_intr_remove_softint(rgep->resched_hdl);
1510744Sgs150176 
1511744Sgs150176 	if (rgep->progress & PROGRESS_NDD)
1512744Sgs150176 		rge_nd_cleanup(rgep);
1513744Sgs150176 
15145735Smx205022 	rge_free_bufs(rgep);
15155735Smx205022 
1516744Sgs150176 	if (rgep->progress & PROGRESS_REGS)
1517744Sgs150176 		ddi_regs_map_free(&rgep->io_handle);
1518744Sgs150176 
1519744Sgs150176 	if (rgep->progress & PROGRESS_CFG)
1520744Sgs150176 		pci_config_teardown(&rgep->cfg_handle);
1521744Sgs150176 
1522744Sgs150176 	ddi_remove_minor_node(rgep->devinfo, NULL);
1523744Sgs150176 	kmem_free(rgep, sizeof (*rgep));
1524744Sgs150176 }
1525744Sgs150176 
1526744Sgs150176 static int
1527744Sgs150176 rge_resume(dev_info_t *devinfo)
1528744Sgs150176 {
1529744Sgs150176 	rge_t *rgep;			/* Our private data	*/
1530744Sgs150176 	chip_id_t *cidp;
1531744Sgs150176 	chip_id_t chipid;
1532744Sgs150176 
1533744Sgs150176 	rgep = ddi_get_driver_private(devinfo);
15346764Smx205022 
15356764Smx205022 	/*
15366764Smx205022 	 * If there are state inconsistancies, this is bad.  Returning
15376764Smx205022 	 * DDI_FAILURE here will eventually cause the machine to panic,
15386764Smx205022 	 * so it is best done here so that there is a possibility of
15396764Smx205022 	 * debugging the problem.
15406764Smx205022 	 */
1541744Sgs150176 	if (rgep == NULL)
15426764Smx205022 		cmn_err(CE_PANIC,
15436764Smx205022 		    "rge: ngep returned from ddi_get_driver_private was NULL");
1544744Sgs150176 
1545744Sgs150176 	/*
1546744Sgs150176 	 * Refuse to resume if the data structures aren't consistent
1547744Sgs150176 	 */
1548744Sgs150176 	if (rgep->devinfo != devinfo)
15496764Smx205022 		cmn_err(CE_PANIC,
15506764Smx205022 		    "rge: passed devinfo not the same as saved devinfo");
1551744Sgs150176 
1552744Sgs150176 	/*
1553744Sgs150176 	 * Read chip ID & set up config space command register(s)
1554744Sgs150176 	 * Refuse to resume if the chip has changed its identity!
1555744Sgs150176 	 */
1556744Sgs150176 	cidp = &rgep->chipid;
1557744Sgs150176 	rge_chip_cfg_init(rgep, &chipid);
1558744Sgs150176 	if (chipid.vendor != cidp->vendor)
1559744Sgs150176 		return (DDI_FAILURE);
1560744Sgs150176 	if (chipid.device != cidp->device)
1561744Sgs150176 		return (DDI_FAILURE);
1562744Sgs150176 	if (chipid.revision != cidp->revision)
1563744Sgs150176 		return (DDI_FAILURE);
1564744Sgs150176 
15656764Smx205022 	mutex_enter(rgep->genlock);
15666764Smx205022 
15676764Smx205022 	/*
15686764Smx205022 	 * Only in one case, this conditional branch can be executed: the port
15696764Smx205022 	 * hasn't been plumbed.
15706764Smx205022 	 */
15716764Smx205022 	if (rgep->suspended == B_FALSE) {
15726764Smx205022 		mutex_exit(rgep->genlock);
15736764Smx205022 		return (DDI_SUCCESS);
15746764Smx205022 	}
15756764Smx205022 	rgep->rge_mac_state = RGE_MAC_STARTED;
1576744Sgs150176 	/*
1577744Sgs150176 	 * All OK, reinitialise h/w & kick off NEMO scheduling
1578744Sgs150176 	 */
1579744Sgs150176 	rge_restart(rgep);
15806764Smx205022 	rgep->suspended = B_FALSE;
15816764Smx205022 
1582744Sgs150176 	mutex_exit(rgep->genlock);
15836764Smx205022 
1584744Sgs150176 	return (DDI_SUCCESS);
1585744Sgs150176 }
1586744Sgs150176 
1587744Sgs150176 
1588744Sgs150176 /*
1589744Sgs150176  * attach(9E) -- Attach a device to the system
1590744Sgs150176  *
1591744Sgs150176  * Called once for each board successfully probed.
1592744Sgs150176  */
1593744Sgs150176 static int
1594744Sgs150176 rge_attach(dev_info_t *devinfo, ddi_attach_cmd_t cmd)
1595744Sgs150176 {
1596744Sgs150176 	rge_t *rgep;			/* Our private data	*/
15972311Sseb 	mac_register_t *macp;
1598744Sgs150176 	chip_id_t *cidp;
15992544Sgs150176 	int intr_types;
1600744Sgs150176 	caddr_t regs;
1601744Sgs150176 	int instance;
16022544Sgs150176 	int i;
1603744Sgs150176 	int err;
1604744Sgs150176 
1605744Sgs150176 	/*
1606744Sgs150176 	 * we don't support high level interrupts in the driver
1607744Sgs150176 	 */
1608744Sgs150176 	if (ddi_intr_hilevel(devinfo, 0) != 0) {
1609744Sgs150176 		cmn_err(CE_WARN,
1610744Sgs150176 		    "rge_attach -- unsupported high level interrupt");
1611744Sgs150176 		return (DDI_FAILURE);
1612744Sgs150176 	}
1613744Sgs150176 
1614744Sgs150176 	instance = ddi_get_instance(devinfo);
1615744Sgs150176 	RGE_GTRACE(("rge_attach($%p, %d) instance %d",
16165107Seota 	    (void *)devinfo, cmd, instance));
1617744Sgs150176 	RGE_BRKPT(NULL, "rge_attach");
1618744Sgs150176 
1619744Sgs150176 	switch (cmd) {
1620744Sgs150176 	default:
1621744Sgs150176 		return (DDI_FAILURE);
1622744Sgs150176 
1623744Sgs150176 	case DDI_RESUME:
1624744Sgs150176 		return (rge_resume(devinfo));
1625744Sgs150176 
1626744Sgs150176 	case DDI_ATTACH:
1627744Sgs150176 		break;
1628744Sgs150176 	}
1629744Sgs150176 
1630744Sgs150176 	rgep = kmem_zalloc(sizeof (*rgep), KM_SLEEP);
1631744Sgs150176 	ddi_set_driver_private(devinfo, rgep);
1632744Sgs150176 	rgep->devinfo = devinfo;
1633744Sgs150176 
1634744Sgs150176 	/*
1635744Sgs150176 	 * Initialize more fields in RGE private data
1636744Sgs150176 	 */
16372544Sgs150176 	rgep->rge_mac_state = RGE_MAC_ATTACH;
1638744Sgs150176 	rgep->debug = ddi_prop_get_int(DDI_DEV_T_ANY, devinfo,
16395107Seota 	    DDI_PROP_DONTPASS, debug_propname, rge_debug);
16402544Sgs150176 	rgep->default_mtu = ddi_prop_get_int(DDI_DEV_T_ANY, devinfo,
16415107Seota 	    DDI_PROP_DONTPASS, mtu_propname, ETHERMTU);
16422544Sgs150176 	rgep->msi_enable = ddi_prop_get_int(DDI_DEV_T_ANY, devinfo,
16435107Seota 	    DDI_PROP_DONTPASS, msi_propname, B_TRUE);
1644744Sgs150176 	(void) snprintf(rgep->ifname, sizeof (rgep->ifname), "%s%d",
16455107Seota 	    RGE_DRIVER_NAME, instance);
1646744Sgs150176 
1647744Sgs150176 	/*
1648744Sgs150176 	 * Map config space registers
1649744Sgs150176 	 * Read chip ID & set up config space command register(s)
1650744Sgs150176 	 *
1651744Sgs150176 	 * Note: this leaves the chip accessible by Memory Space
1652744Sgs150176 	 * accesses, but with interrupts and Bus Mastering off.
1653744Sgs150176 	 * This should ensure that nothing untoward will happen
1654744Sgs150176 	 * if it has been left active by the (net-)bootloader.
1655744Sgs150176 	 * We'll re-enable Bus Mastering once we've reset the chip,
1656744Sgs150176 	 * and allow interrupts only when everything else is set up.
1657744Sgs150176 	 */
1658744Sgs150176 	err = pci_config_setup(devinfo, &rgep->cfg_handle);
1659744Sgs150176 	if (err != DDI_SUCCESS) {
1660744Sgs150176 		rge_problem(rgep, "pci_config_setup() failed");
1661744Sgs150176 		goto attach_fail;
1662744Sgs150176 	}
1663744Sgs150176 	rgep->progress |= PROGRESS_CFG;
1664744Sgs150176 	cidp = &rgep->chipid;
1665744Sgs150176 	bzero(cidp, sizeof (*cidp));
1666744Sgs150176 	rge_chip_cfg_init(rgep, cidp);
1667744Sgs150176 
1668744Sgs150176 	/*
1669744Sgs150176 	 * Map operating registers
1670744Sgs150176 	 */
1671744Sgs150176 	err = ddi_regs_map_setup(devinfo, 1, &regs,
1672744Sgs150176 	    0, 0, &rge_reg_accattr, &rgep->io_handle);
1673744Sgs150176 	if (err != DDI_SUCCESS) {
1674744Sgs150176 		rge_problem(rgep, "ddi_regs_map_setup() failed");
1675744Sgs150176 		goto attach_fail;
1676744Sgs150176 	}
1677744Sgs150176 	rgep->io_regs = regs;
1678744Sgs150176 	rgep->progress |= PROGRESS_REGS;
1679744Sgs150176 
1680744Sgs150176 	/*
1681744Sgs150176 	 * Characterise the device, so we know its requirements.
1682744Sgs150176 	 * Then allocate the appropriate TX and RX descriptors & buffers.
1683744Sgs150176 	 */
1684744Sgs150176 	rge_chip_ident(rgep);
1685744Sgs150176 	err = rge_alloc_bufs(rgep);
1686744Sgs150176 	if (err != DDI_SUCCESS) {
1687744Sgs150176 		rge_problem(rgep, "DMA buffer allocation failed");
1688744Sgs150176 		goto attach_fail;
1689744Sgs150176 	}
1690744Sgs150176 
1691744Sgs150176 	/*
16925735Smx205022 	 * Register NDD-tweakable parameters
16935735Smx205022 	 */
16945735Smx205022 	if (rge_nd_init(rgep)) {
16955735Smx205022 		rge_problem(rgep, "rge_nd_init() failed");
16965735Smx205022 		goto attach_fail;
16975735Smx205022 	}
16985735Smx205022 	rgep->progress |= PROGRESS_NDD;
16995735Smx205022 
17005735Smx205022 	/*
1701744Sgs150176 	 * Add the softint handlers:
1702744Sgs150176 	 *
1703744Sgs150176 	 * Both of these handlers are used to avoid restrictions on the
1704744Sgs150176 	 * context and/or mutexes required for some operations.  In
1705744Sgs150176 	 * particular, the hardware interrupt handler and its subfunctions
1706744Sgs150176 	 * can detect a number of conditions that we don't want to handle
1707744Sgs150176 	 * in that context or with that set of mutexes held.  So, these
1708744Sgs150176 	 * softints are triggered instead:
1709744Sgs150176 	 *
1710744Sgs150176 	 * the <resched> softint is triggered if if we have previously
1711744Sgs150176 	 * had to refuse to send a packet because of resource shortage
1712744Sgs150176 	 * (we've run out of transmit buffers), but the send completion
1713744Sgs150176 	 * interrupt handler has now detected that more buffers have
1714744Sgs150176 	 * become available.
1715744Sgs150176 	 *
1716744Sgs150176 	 * the <factotum> is triggered if the h/w interrupt handler
1717744Sgs150176 	 * sees the <link state changed> or <error> bits in the status
1718744Sgs150176 	 * block.  It's also triggered periodically to poll the link
1719744Sgs150176 	 * state, just in case we aren't getting link status change
1720744Sgs150176 	 * interrupts ...
1721744Sgs150176 	 */
17222544Sgs150176 	err = ddi_intr_add_softint(devinfo, &rgep->resched_hdl,
17235107Seota 	    DDI_INTR_SOFTPRI_MIN, rge_reschedule, (caddr_t)rgep);
1724744Sgs150176 	if (err != DDI_SUCCESS) {
17252544Sgs150176 		rge_problem(rgep, "ddi_intr_add_softint() failed");
1726744Sgs150176 		goto attach_fail;
1727744Sgs150176 	}
1728744Sgs150176 	rgep->progress |= PROGRESS_RESCHED;
17292544Sgs150176 	err = ddi_intr_add_softint(devinfo, &rgep->factotum_hdl,
17305107Seota 	    DDI_INTR_SOFTPRI_MIN, rge_chip_factotum, (caddr_t)rgep);
1731744Sgs150176 	if (err != DDI_SUCCESS) {
17322544Sgs150176 		rge_problem(rgep, "ddi_intr_add_softint() failed");
1733744Sgs150176 		goto attach_fail;
1734744Sgs150176 	}
1735744Sgs150176 	rgep->progress |= PROGRESS_FACTOTUM;
1736744Sgs150176 
1737744Sgs150176 	/*
17382544Sgs150176 	 * Get supported interrupt types
1739744Sgs150176 	 */
17402544Sgs150176 	if (ddi_intr_get_supported_types(devinfo, &intr_types)
17412544Sgs150176 	    != DDI_SUCCESS) {
17422544Sgs150176 		rge_error(rgep, "ddi_intr_get_supported_types failed\n");
1743744Sgs150176 		goto attach_fail;
1744744Sgs150176 	}
17452544Sgs150176 
17462544Sgs150176 	/*
17472544Sgs150176 	 * Add the h/w interrupt handler and initialise mutexes
17486764Smx205022 	 * RTL8101E is observed to have MSI invalidation issue after S/R.
17496764Smx205022 	 * So the FIXED interrupt is used instead.
17502544Sgs150176 	 */
17516764Smx205022 	if (rgep->chipid.mac_ver == MAC_VER_8101E)
17526764Smx205022 		rgep->msi_enable = B_FALSE;
17532544Sgs150176 	if ((intr_types & DDI_INTR_TYPE_MSI) && rgep->msi_enable) {
17542544Sgs150176 		if (rge_add_intrs(rgep, DDI_INTR_TYPE_MSI) != DDI_SUCCESS) {
17552544Sgs150176 			rge_error(rgep, "MSI registration failed, "
17562544Sgs150176 			    "trying FIXED interrupt type\n");
17572544Sgs150176 		} else {
17582544Sgs150176 			rge_log(rgep, "Using MSI interrupt type\n");
17592544Sgs150176 			rgep->intr_type = DDI_INTR_TYPE_MSI;
17602544Sgs150176 			rgep->progress |= PROGRESS_INTR;
17612544Sgs150176 		}
17622544Sgs150176 	}
17632544Sgs150176 	if (!(rgep->progress & PROGRESS_INTR) &&
17642544Sgs150176 	    (intr_types & DDI_INTR_TYPE_FIXED)) {
17652544Sgs150176 		if (rge_add_intrs(rgep, DDI_INTR_TYPE_FIXED) != DDI_SUCCESS) {
17662544Sgs150176 			rge_error(rgep, "FIXED interrupt "
17672544Sgs150176 			    "registration failed\n");
17682544Sgs150176 			goto attach_fail;
17692544Sgs150176 		}
17702544Sgs150176 		rge_log(rgep, "Using FIXED interrupt type\n");
17712544Sgs150176 		rgep->intr_type = DDI_INTR_TYPE_FIXED;
17722544Sgs150176 		rgep->progress |= PROGRESS_INTR;
17732544Sgs150176 	}
17742544Sgs150176 	if (!(rgep->progress & PROGRESS_INTR)) {
17752544Sgs150176 		rge_error(rgep, "No interrupts registered\n");
17762544Sgs150176 		goto attach_fail;
17772544Sgs150176 	}
17782544Sgs150176 	mutex_init(rgep->genlock, NULL, MUTEX_DRIVER,
17792544Sgs150176 	    DDI_INTR_PRI(rgep->intr_pri));
17802544Sgs150176 	rw_init(rgep->errlock, NULL, RW_DRIVER,
17812544Sgs150176 	    DDI_INTR_PRI(rgep->intr_pri));
17822544Sgs150176 	mutex_init(rgep->tx_lock, NULL, MUTEX_DRIVER,
17832544Sgs150176 	    DDI_INTR_PRI(rgep->intr_pri));
17842544Sgs150176 	mutex_init(rgep->tc_lock, NULL, MUTEX_DRIVER,
17852544Sgs150176 	    DDI_INTR_PRI(rgep->intr_pri));
17862544Sgs150176 	mutex_init(rgep->rx_lock, NULL, MUTEX_DRIVER,
17872544Sgs150176 	    DDI_INTR_PRI(rgep->intr_pri));
17882544Sgs150176 	mutex_init(rgep->rc_lock, NULL, MUTEX_DRIVER,
17892544Sgs150176 	    DDI_INTR_PRI(rgep->intr_pri));
1790744Sgs150176 
1791744Sgs150176 	/*
1792744Sgs150176 	 * Initialize rings
1793744Sgs150176 	 */
1794744Sgs150176 	err = rge_init_rings(rgep);
1795744Sgs150176 	if (err != DDI_SUCCESS) {
1796744Sgs150176 		rge_problem(rgep, "rge_init_rings() failed");
1797744Sgs150176 		goto attach_fail;
1798744Sgs150176 	}
17992544Sgs150176 	rgep->progress |= PROGRESS_INIT;
18002544Sgs150176 
18012544Sgs150176 	/*
18022544Sgs150176 	 * Now that mutex locks are initialized, enable interrupts.
18032544Sgs150176 	 */
18042544Sgs150176 	if (rgep->intr_cap & DDI_INTR_FLAG_BLOCK) {
18052544Sgs150176 		/* Call ddi_intr_block_enable() for MSI interrupts */
18062544Sgs150176 		(void) ddi_intr_block_enable(rgep->htable, rgep->intr_cnt);
18072544Sgs150176 	} else {
18082544Sgs150176 		/* Call ddi_intr_enable for MSI or FIXED interrupts */
18092544Sgs150176 		for (i = 0; i < rgep->intr_cnt; i++) {
18102544Sgs150176 			(void) ddi_intr_enable(rgep->htable[i]);
18112544Sgs150176 		}
18122544Sgs150176 	}
1813744Sgs150176 
1814744Sgs150176 	/*
1815744Sgs150176 	 * Initialise link state variables
1816744Sgs150176 	 * Stop, reset & reinitialise the chip.
1817744Sgs150176 	 * Initialise the (internal) PHY.
1818744Sgs150176 	 */
1819744Sgs150176 	rgep->param_link_up = LINK_STATE_UNKNOWN;
1820744Sgs150176 
1821744Sgs150176 	/*
1822744Sgs150176 	 * Reset chip & rings to initial state; also reset address
1823744Sgs150176 	 * filtering, promiscuity, loopback mode.
1824744Sgs150176 	 */
1825744Sgs150176 	mutex_enter(rgep->genlock);
1826744Sgs150176 	(void) rge_chip_reset(rgep);
1827744Sgs150176 	rge_chip_sync(rgep, RGE_GET_MAC);
1828744Sgs150176 	bzero(rgep->mcast_hash, sizeof (rgep->mcast_hash));
1829744Sgs150176 	bzero(rgep->mcast_refs, sizeof (rgep->mcast_refs));
1830744Sgs150176 	rgep->promisc = B_FALSE;
1831744Sgs150176 	rgep->param_loop_mode = RGE_LOOP_NONE;
1832744Sgs150176 	mutex_exit(rgep->genlock);
1833744Sgs150176 	rge_phy_init(rgep);
1834744Sgs150176 	rgep->progress |= PROGRESS_PHY;
1835744Sgs150176 
1836744Sgs150176 	/*
1837744Sgs150176 	 * Create & initialise named kstats
1838744Sgs150176 	 */
1839744Sgs150176 	rge_init_kstats(rgep, instance);
1840744Sgs150176 	rgep->progress |= PROGRESS_KSTATS;
1841744Sgs150176 
18422311Sseb 	if ((macp = mac_alloc(MAC_VERSION)) == NULL)
18432311Sseb 		goto attach_fail;
18442311Sseb 	macp->m_type_ident = MAC_PLUGIN_IDENT_ETHER;
18452311Sseb 	macp->m_driver = rgep;
1846744Sgs150176 	macp->m_dip = devinfo;
18472311Sseb 	macp->m_src_addr = rgep->netaddr;
18482311Sseb 	macp->m_callbacks = &rge_m_callbacks;
18492311Sseb 	macp->m_min_sdu = 0;
18502544Sgs150176 	macp->m_max_sdu = rgep->default_mtu;
18515895Syz147064 	macp->m_margin = VLAN_TAGSZ;
1852744Sgs150176 
1853744Sgs150176 	/*
1854744Sgs150176 	 * Finally, we're ready to register ourselves with the MAC layer
1855744Sgs150176 	 * interface; if this succeeds, we're all ready to start()
1856744Sgs150176 	 */
18572311Sseb 	err = mac_register(macp, &rgep->mh);
18582311Sseb 	mac_free(macp);
18592311Sseb 	if (err != 0)
1860744Sgs150176 		goto attach_fail;
1861744Sgs150176 
18625107Seota 	/*
18635107Seota 	 * Register a periodical handler.
18645107Seota 	 * reg_chip_cyclic() is invoked in kernel context.
18655107Seota 	 */
18665107Seota 	rgep->periodic_id = ddi_periodic_add(rge_chip_cyclic, rgep,
18675107Seota 	    RGE_CYCLIC_PERIOD, DDI_IPL_0);
1868744Sgs150176 
1869744Sgs150176 	rgep->progress |= PROGRESS_READY;
1870744Sgs150176 	return (DDI_SUCCESS);
1871744Sgs150176 
1872744Sgs150176 attach_fail:
1873744Sgs150176 	rge_unattach(rgep);
1874744Sgs150176 	return (DDI_FAILURE);
1875744Sgs150176 }
1876744Sgs150176 
1877744Sgs150176 /*
1878744Sgs150176  *	rge_suspend() -- suspend transmit/receive for powerdown
1879744Sgs150176  */
1880744Sgs150176 static int
1881744Sgs150176 rge_suspend(rge_t *rgep)
1882744Sgs150176 {
1883744Sgs150176 	/*
1884744Sgs150176 	 * Stop processing and idle (powerdown) the PHY ...
1885744Sgs150176 	 */
1886744Sgs150176 	mutex_enter(rgep->genlock);
18876764Smx205022 	rw_enter(rgep->errlock, RW_READER);
18886764Smx205022 
18896764Smx205022 	if (rgep->rge_mac_state != RGE_MAC_STARTED) {
18906764Smx205022 		mutex_exit(rgep->genlock);
18916764Smx205022 		return (DDI_SUCCESS);
18926764Smx205022 	}
18936764Smx205022 
18946764Smx205022 	rgep->suspended = B_TRUE;
1895744Sgs150176 	rge_stop(rgep);
18966764Smx205022 	rgep->rge_mac_state = RGE_MAC_STOPPED;
18976764Smx205022 
18986764Smx205022 	rw_exit(rgep->errlock);
1899744Sgs150176 	mutex_exit(rgep->genlock);
1900744Sgs150176 
1901744Sgs150176 	return (DDI_SUCCESS);
1902744Sgs150176 }
1903744Sgs150176 
1904744Sgs150176 /*
1905*7656SSherry.Moore@Sun.COM  * quiesce(9E) entry point.
1906*7656SSherry.Moore@Sun.COM  *
1907*7656SSherry.Moore@Sun.COM  * This function is called when the system is single-threaded at high
1908*7656SSherry.Moore@Sun.COM  * PIL with preemption disabled. Therefore, this function must not be
1909*7656SSherry.Moore@Sun.COM  * blocked.
1910*7656SSherry.Moore@Sun.COM  *
1911*7656SSherry.Moore@Sun.COM  * This function returns DDI_SUCCESS on success, or DDI_FAILURE on failure.
1912*7656SSherry.Moore@Sun.COM  * DDI_FAILURE indicates an error condition and should almost never happen.
1913*7656SSherry.Moore@Sun.COM  */
1914*7656SSherry.Moore@Sun.COM static int
1915*7656SSherry.Moore@Sun.COM rge_quiesce(dev_info_t *devinfo)
1916*7656SSherry.Moore@Sun.COM {
1917*7656SSherry.Moore@Sun.COM 	rge_t *rgep = ddi_get_driver_private(devinfo);
1918*7656SSherry.Moore@Sun.COM 
1919*7656SSherry.Moore@Sun.COM 	if (rgep == NULL)
1920*7656SSherry.Moore@Sun.COM 		return (DDI_FAILURE);
1921*7656SSherry.Moore@Sun.COM 
1922*7656SSherry.Moore@Sun.COM 	/*
1923*7656SSherry.Moore@Sun.COM 	 * Turn off debugging
1924*7656SSherry.Moore@Sun.COM 	 */
1925*7656SSherry.Moore@Sun.COM 	rge_debug = 0;
1926*7656SSherry.Moore@Sun.COM 	rgep->debug = 0;
1927*7656SSherry.Moore@Sun.COM 
1928*7656SSherry.Moore@Sun.COM 	/* Stop the chip */
1929*7656SSherry.Moore@Sun.COM 	rge_chip_stop(rgep, B_FALSE);
1930*7656SSherry.Moore@Sun.COM 
1931*7656SSherry.Moore@Sun.COM 	return (DDI_SUCCESS);
1932*7656SSherry.Moore@Sun.COM }
1933*7656SSherry.Moore@Sun.COM 
1934*7656SSherry.Moore@Sun.COM /*
1935744Sgs150176  * detach(9E) -- Detach a device from the system
1936744Sgs150176  */
1937744Sgs150176 static int
1938744Sgs150176 rge_detach(dev_info_t *devinfo, ddi_detach_cmd_t cmd)
1939744Sgs150176 {
1940744Sgs150176 	rge_t *rgep;
1941744Sgs150176 
1942744Sgs150176 	RGE_GTRACE(("rge_detach($%p, %d)", (void *)devinfo, cmd));
1943744Sgs150176 
1944744Sgs150176 	rgep = ddi_get_driver_private(devinfo);
1945744Sgs150176 
1946744Sgs150176 	switch (cmd) {
1947744Sgs150176 	default:
1948744Sgs150176 		return (DDI_FAILURE);
1949744Sgs150176 
1950744Sgs150176 	case DDI_SUSPEND:
1951744Sgs150176 		return (rge_suspend(rgep));
1952744Sgs150176 
1953744Sgs150176 	case DDI_DETACH:
1954744Sgs150176 		break;
1955744Sgs150176 	}
1956744Sgs150176 
1957744Sgs150176 	/*
1958744Sgs150176 	 * If there is any posted buffer, the driver should reject to be
1959744Sgs150176 	 * detached. Need notice upper layer to release them.
1960744Sgs150176 	 */
19612544Sgs150176 	if (!(rgep->chip_flags & CHIP_FLAG_FORCE_BCOPY) &&
19622544Sgs150176 	    rgep->rx_free != RGE_BUF_SLOTS)
1963744Sgs150176 		return (DDI_FAILURE);
1964744Sgs150176 
1965744Sgs150176 	/*
1966744Sgs150176 	 * Unregister from the MAC layer subsystem.  This can fail, in
1967744Sgs150176 	 * particular if there are DLPI style-2 streams still open -
1968744Sgs150176 	 * in which case we just return failure without shutting
1969744Sgs150176 	 * down chip operations.
1970744Sgs150176 	 */
19712311Sseb 	if (mac_unregister(rgep->mh) != 0)
1972744Sgs150176 		return (DDI_FAILURE);
1973744Sgs150176 
1974744Sgs150176 	/*
1975744Sgs150176 	 * All activity stopped, so we can clean up & exit
1976744Sgs150176 	 */
1977744Sgs150176 	rge_unattach(rgep);
1978744Sgs150176 	return (DDI_SUCCESS);
1979744Sgs150176 }
1980744Sgs150176 
1981744Sgs150176 
1982744Sgs150176 /*
1983744Sgs150176  * ========== Module Loading Data & Entry Points ==========
1984744Sgs150176  */
1985744Sgs150176 
1986744Sgs150176 #undef	RGE_DBG
1987744Sgs150176 #define	RGE_DBG		RGE_DBG_INIT	/* debug flag for this code	*/
1988744Sgs150176 DDI_DEFINE_STREAM_OPS(rge_dev_ops, nulldev, nulldev, rge_attach, rge_detach,
1989*7656SSherry.Moore@Sun.COM     nodev, NULL, D_MP, NULL, rge_quiesce);
1990744Sgs150176 
1991744Sgs150176 static struct modldrv rge_modldrv = {
1992744Sgs150176 	&mod_driverops,		/* Type of module.  This one is a driver */
1993744Sgs150176 	rge_ident,		/* short description */
1994744Sgs150176 	&rge_dev_ops		/* driver specific ops */
1995744Sgs150176 };
1996744Sgs150176 
1997744Sgs150176 static struct modlinkage modlinkage = {
1998744Sgs150176 	MODREV_1, (void *)&rge_modldrv, NULL
1999744Sgs150176 };
2000744Sgs150176 
2001744Sgs150176 
2002744Sgs150176 int
2003744Sgs150176 _info(struct modinfo *modinfop)
2004744Sgs150176 {
2005744Sgs150176 	return (mod_info(&modlinkage, modinfop));
2006744Sgs150176 }
2007744Sgs150176 
2008744Sgs150176 int
2009744Sgs150176 _init(void)
2010744Sgs150176 {
2011744Sgs150176 	int status;
2012744Sgs150176 
2013744Sgs150176 	mac_init_ops(&rge_dev_ops, "rge");
2014744Sgs150176 	status = mod_install(&modlinkage);
2015744Sgs150176 	if (status == DDI_SUCCESS)
2016744Sgs150176 		mutex_init(rge_log_mutex, NULL, MUTEX_DRIVER, NULL);
2017744Sgs150176 	else
2018744Sgs150176 		mac_fini_ops(&rge_dev_ops);
2019744Sgs150176 
2020744Sgs150176 	return (status);
2021744Sgs150176 }
2022744Sgs150176 
2023744Sgs150176 int
2024744Sgs150176 _fini(void)
2025744Sgs150176 {
2026744Sgs150176 	int status;
2027744Sgs150176 
2028744Sgs150176 	status = mod_remove(&modlinkage);
2029744Sgs150176 	if (status == DDI_SUCCESS) {
2030744Sgs150176 		mac_fini_ops(&rge_dev_ops);
2031744Sgs150176 		mutex_destroy(rge_log_mutex);
2032744Sgs150176 	}
2033744Sgs150176 	return (status);
2034744Sgs150176 }
2035