FreeBSD Bugzilla – Attachment 132818 Details for
Bug 177184
[bge] Enable wake on lan (WoL)
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
Remember
[x]
|
Forgot Password
Login:
[x]
[patch]
file.diff
file.diff (text/plain), 1.84 KB, created by
Hielke Christian Braun
on 2013-03-21 10:30:00 UTC
(
hide
)
Description:
file.diff
Filename:
MIME Type:
Creator:
Hielke Christian Braun
Created:
2013-03-21 10:30:00 UTC
Size:
1.84 KB
patch
obsolete
>--- if_bge.c.orig 2013-03-13 23:42:26.000000000 +0100 >+++ if_bge.c 2013-03-14 13:30:08.000000000 +0100 >@@ -469,6 +469,7 @@ > static void bge_stop_fw(struct bge_softc *); > static int bge_reset(struct bge_softc *); > static void bge_link_upd(struct bge_softc *); >+static void bge_setwol(struct bge_softc *); > > /* > * The BGE_REGISTER_DEBUG option is only for low-level debugging. It may >@@ -3335,7 +3336,7 @@ > IFQ_SET_READY(&ifp->if_snd); > ifp->if_hwassist = sc->bge_csum_features; > ifp->if_capabilities = IFCAP_HWCSUM | IFCAP_VLAN_HWTAGGING | >- IFCAP_VLAN_MTU; >+ IFCAP_VLAN_MTU | IFCAP_WOL_MAGIC; > if ((sc->bge_flags & (BGE_FLAG_TSO | BGE_FLAG_TSO3)) != 0) { > ifp->if_hwassist |= CSUM_TSO; > ifp->if_capabilities |= IFCAP_TSO4 | IFCAP_VLAN_HWTSO; >@@ -5537,6 +5538,7 @@ > BGE_LOCK(sc); > bge_stop(sc); > bge_reset(sc); >+ bge_setwol(sc); > BGE_UNLOCK(sc); > > return (0); >@@ -6206,3 +6208,34 @@ > } > return (*func == NULL ? ENXIO : 0); > } >+ >+static void >+bge_setwol(struct bge_softc *sc) >+{ >+ struct ifnet *ifp; >+ uint16_t pmstat; >+ int pmc; >+ >+ ifp = sc->bge_ifp; >+ >+ if ((ifp->if_capenable & IFCAP_WOL_MAGIC) == 0) >+ return; >+ >+ if (pci_find_cap(sc->bge_dev, PCIY_PMG, &pmc) != 0) >+ return; >+ >+ BGE_SETBIT(sc, BGE_MAC_MODE, BGE_MACMODE_MAGIC_PKT_ENB); >+ >+ BGE_CLRBIT(sc, BGE_MAC_MODE, BGE_MACMODE_PORTMODE); >+ BGE_SETBIT(sc, BGE_MAC_MODE, BGE_PORTMODE_GMII); >+ >+ BGE_SETBIT(sc, BGE_RX_MODE, BGE_RXMODE_ENABLE); >+ >+ /* Request PME. */ >+ pmstat = pci_read_config(sc->bge_dev, >+ pmc + PCIR_POWER_STATUS, 2); >+ pmstat |= PCIM_PSTAT_PME | PCIM_PSTAT_PMEENABLE; >+ pci_write_config(sc->bge_dev, >+ pmc + PCIR_POWER_STATUS, pmstat, 2); >+} >+
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Diff
View Attachment As Raw
Actions:
View
|
Diff
Attachments on
bug 177184
:
132818
|
156970