Deleted Added
full compact
if_sisreg.h (150526) if_sisreg.h (150583)
1/*-
2 * Copyright (c) 1997, 1998, 1999
3 * Bill Paul <wpaul@ee.columbia.edu>. All rights reserved.
4 *
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions
7 * are met:
8 * 1. Redistributions of source code must retain the above copyright

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

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

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

24 * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
25 * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
26 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
27 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
28 * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
29 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
30 * THE POSSIBILITY OF SUCH DAMAGE.
31 *
32 * $FreeBSD: head/sys/pci/if_sisreg.h 150526 2005-09-24 20:46:02Z phk $
32 * $FreeBSD: head/sys/pci/if_sisreg.h 150583 2005-09-26 18:42:27Z jhb $
33 */
34
35/*
36 * Register definitions for the SiS 900 and SiS 7016 chipsets. The
37 * 7016 is actually an older chip and some of its registers differ
38 * from the 900, however the core operational registers are the same:
39 * the differences lie in the OnNow/Wake on LAN stuff which we don't
40 * use anyway. The 7016 needs an external MII compliant PHY while the

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

430#define SIS_TYPE_83816 4
431
432struct sis_softc {
433 struct ifnet *sis_ifp; /* interface info */
434 struct resource *sis_res[2];
435 void *sis_intrhand;
436 device_t sis_self;
437 device_t sis_miibus;
33 */
34
35/*
36 * Register definitions for the SiS 900 and SiS 7016 chipsets. The
37 * 7016 is actually an older chip and some of its registers differ
38 * from the 900, however the core operational registers are the same:
39 * the differences lie in the OnNow/Wake on LAN stuff which we don't
40 * use anyway. The 7016 needs an external MII compliant PHY while the

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

430#define SIS_TYPE_83816 4
431
432struct sis_softc {
433 struct ifnet *sis_ifp; /* interface info */
434 struct resource *sis_res[2];
435 void *sis_intrhand;
436 device_t sis_self;
437 device_t sis_miibus;
438 u_int8_t sis_unit;
439 u_int8_t sis_type;
440 u_int8_t sis_rev;
441 u_int8_t sis_link;
442 u_int sis_srr;
443 struct sis_desc *sis_rx_list;
444 struct sis_desc *sis_tx_list;
445 bus_dma_tag_t sis_rx_tag;
446 bus_dmamap_t sis_rx_dmamap;

--- 61 unchanged lines hidden ---
438 u_int8_t sis_type;
439 u_int8_t sis_rev;
440 u_int8_t sis_link;
441 u_int sis_srr;
442 struct sis_desc *sis_rx_list;
443 struct sis_desc *sis_tx_list;
444 bus_dma_tag_t sis_rx_tag;
445 bus_dmamap_t sis_rx_dmamap;

--- 61 unchanged lines hidden ---