Deleted Added
full compact
if_bgereg.h (146485) if_bgereg.h (147256)
1/*-
2 * Copyright (c) 2001 Wind River Systems
3 * Copyright (c) 1997, 1998, 1999, 2001
4 * Bill Paul <wpaul@windriver.com>. All rights reserved.
5 *
6 * Redistribution and use in source and binary forms, with or without
7 * modification, are permitted provided that the following conditions
8 * are met:

--- 16 unchanged lines hidden (view full) ---

25 * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
26 * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
27 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
28 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
29 * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
30 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
31 * THE POSSIBILITY OF SUCH DAMAGE.
32 *
1/*-
2 * Copyright (c) 2001 Wind River Systems
3 * Copyright (c) 1997, 1998, 1999, 2001
4 * Bill Paul <wpaul@windriver.com>. All rights reserved.
5 *
6 * Redistribution and use in source and binary forms, with or without
7 * modification, are permitted provided that the following conditions
8 * are met:

--- 16 unchanged lines hidden (view full) ---

25 * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
26 * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
27 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
28 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
29 * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
30 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
31 * THE POSSIBILITY OF SUCH DAMAGE.
32 *
33 * $FreeBSD: head/sys/dev/bge/if_bgereg.h 146485 2005-05-22 03:16:45Z silby $
33 * $FreeBSD: head/sys/dev/bge/if_bgereg.h 147256 2005-06-10 16:49:24Z brooks $
34 */
35
36/*
37 * BCM570x memory map. The internal memory layout varies somewhat
38 * depending on whether or not we have external SSRAM attached.
39 * The BCM5700 can have up to 16MB of external memory. The BCM5701
40 * is apparently not designed to use external SSRAM. The mappings
41 * up to the first 4 send rings are the same for both internal and

--- 2266 unchanged lines hidden (view full) ---

2308};
2309
2310struct bge_bcom_hack {
2311 int reg;
2312 int val;
2313};
2314
2315struct bge_softc {
34 */
35
36/*
37 * BCM570x memory map. The internal memory layout varies somewhat
38 * depending on whether or not we have external SSRAM attached.
39 * The BCM5700 can have up to 16MB of external memory. The BCM5701
40 * is apparently not designed to use external SSRAM. The mappings
41 * up to the first 4 send rings are the same for both internal and

--- 2266 unchanged lines hidden (view full) ---

2308};
2309
2310struct bge_bcom_hack {
2311 int reg;
2312 int val;
2313};
2314
2315struct bge_softc {
2316 struct arpcom arpcom; /* interface info */
2316 struct ifnet *bge_ifp; /* interface info */
2317 device_t bge_dev;
2318 struct mtx bge_mtx;
2319 device_t bge_miibus;
2320 bus_space_handle_t bge_bhandle;
2321 vm_offset_t bge_vhandle;
2322 bus_space_tag_t bge_btag;
2323 void *bge_intrhand;
2324 struct resource *bge_irq;

--- 41 unchanged lines hidden ---
2317 device_t bge_dev;
2318 struct mtx bge_mtx;
2319 device_t bge_miibus;
2320 bus_space_handle_t bge_bhandle;
2321 vm_offset_t bge_vhandle;
2322 bus_space_tag_t bge_btag;
2323 void *bge_intrhand;
2324 struct resource *bge_irq;

--- 41 unchanged lines hidden ---