View | Details | Raw Unified | Return to bug 263886 | Differences between
and this patch

Collapse All | Expand All

(-)b/sys/dev/dwc/if_dwc.c (-1 / +1 lines)
Lines 500-506 dwc_setup_core(struct dwc_softc *sc) Link Here
500
500
501
	/* Enable core */
501
	/* Enable core */
502
	reg = READ4(sc, MAC_CONFIGURATION);
502
	reg = READ4(sc, MAC_CONFIGURATION);
503
	reg |= (CONF_JD | CONF_ACS | CONF_BE);
503
	reg |= (CONF_JD | CONF_ACS | CONF_IPC | CONF_BE);
504
	WRITE4(sc, MAC_CONFIGURATION, reg);
504
	WRITE4(sc, MAC_CONFIGURATION, reg);
505
}
505
}
506
506
(-)b/sys/dev/dwc/if_dwc.h (+1 lines)
Lines 48-53 Link Here
48
#define	 CONF_PS		(1 << 15)	/* GMII/MII */
48
#define	 CONF_PS		(1 << 15)	/* GMII/MII */
49
#define	 CONF_FES		(1 << 14)	/* MII speed select */
49
#define	 CONF_FES		(1 << 14)	/* MII speed select */
50
#define	 CONF_DM		(1 << 11)	/* Full Duplex Enable */
50
#define	 CONF_DM		(1 << 11)	/* Full Duplex Enable */
51
#define	 CONF_IPC		(1 << 10)	/* IPC checksum offload */
51
#define	 CONF_ACS		(1 << 7)
52
#define	 CONF_ACS		(1 << 7)
52
#define	 CONF_TE		(1 << 3)
53
#define	 CONF_TE		(1 << 3)
53
#define	 CONF_RE		(1 << 2)
54
#define	 CONF_RE		(1 << 2)

Return to bug 263886