Deleted Added
full compact
if_bgereg.h (199009) if_bgereg.h (199011)
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 199009 2009-11-06 22:37:29Z yongari $
33 * $FreeBSD: head/sys/dev/bge/if_bgereg.h 199011 2009-11-07 01:01:33Z yongari $
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

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

2532 bus_dma_tag_t bge_rx_return_ring_tag;
2533 bus_dma_tag_t bge_tx_ring_tag;
2534 bus_dma_tag_t bge_status_tag;
2535 bus_dma_tag_t bge_stats_tag;
2536 bus_dma_tag_t bge_rx_mtag; /* Rx mbuf mapping tag */
2537 bus_dma_tag_t bge_tx_mtag; /* Tx mbuf mapping tag */
2538 bus_dma_tag_t bge_mtag_jumbo; /* Jumbo mbuf mapping tag */
2539 bus_dmamap_t bge_tx_dmamap[BGE_TX_RING_CNT];
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

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

2532 bus_dma_tag_t bge_rx_return_ring_tag;
2533 bus_dma_tag_t bge_tx_ring_tag;
2534 bus_dma_tag_t bge_status_tag;
2535 bus_dma_tag_t bge_stats_tag;
2536 bus_dma_tag_t bge_rx_mtag; /* Rx mbuf mapping tag */
2537 bus_dma_tag_t bge_tx_mtag; /* Tx mbuf mapping tag */
2538 bus_dma_tag_t bge_mtag_jumbo; /* Jumbo mbuf mapping tag */
2539 bus_dmamap_t bge_tx_dmamap[BGE_TX_RING_CNT];
2540 bus_dmamap_t bge_rx_std_sparemap;
2540 bus_dmamap_t bge_rx_std_dmamap[BGE_STD_RX_RING_CNT];
2541 bus_dmamap_t bge_rx_std_dmamap[BGE_STD_RX_RING_CNT];
2542 bus_dmamap_t bge_rx_jumbo_sparemap;
2541 bus_dmamap_t bge_rx_jumbo_dmamap[BGE_JUMBO_RX_RING_CNT];
2542 bus_dmamap_t bge_rx_std_ring_map;
2543 bus_dmamap_t bge_rx_jumbo_ring_map;
2544 bus_dmamap_t bge_tx_ring_map;
2545 bus_dmamap_t bge_rx_return_ring_map;
2546 bus_dmamap_t bge_status_map;
2547 bus_dmamap_t bge_stats_map;
2548 struct mbuf *bge_tx_chain[BGE_TX_RING_CNT];

--- 98 unchanged lines hidden ---
2543 bus_dmamap_t bge_rx_jumbo_dmamap[BGE_JUMBO_RX_RING_CNT];
2544 bus_dmamap_t bge_rx_std_ring_map;
2545 bus_dmamap_t bge_rx_jumbo_ring_map;
2546 bus_dmamap_t bge_tx_ring_map;
2547 bus_dmamap_t bge_rx_return_ring_map;
2548 bus_dmamap_t bge_status_map;
2549 bus_dmamap_t bge_stats_map;
2550 struct mbuf *bge_tx_chain[BGE_TX_RING_CNT];

--- 98 unchanged lines hidden ---