Page Menu
Home
FreeBSD
Search
Configure Global Search
Log In
Files
F116018650
D42643.diff
No One
Temporary
Actions
View File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Flag For Later
Award Token
Size
2 KB
Referenced Files
None
Subscribers
None
D42643.diff
View Options
diff --git a/sys/dev/dpaa2/dpaa2_ni.c b/sys/dev/dpaa2/dpaa2_ni.c
--- a/sys/dev/dpaa2/dpaa2_ni.c
+++ b/sys/dev/dpaa2/dpaa2_ni.c
@@ -116,6 +116,9 @@
mtx_assert(&(__sc)->lock, MA_OWNED); \
mtx_unlock(&(__sc)->lock); \
} while (0)
+#define DPNI_LOCK_ASSERT(__sc) do { \
+ mtx_assert(&(__sc)->lock, MA_OWNED); \
+} while (0)
#define DPAA2_TX_RING(sc, chan, tc) \
(&(sc)->channels[(chan)]->txc_queue.tx_rings[(tc)])
@@ -2269,6 +2272,16 @@
if (sc->fixed_link || sc->mii == NULL) {
return;
}
+ if ((if_getdrvflags(sc->ifp) & IFF_DRV_RUNNING) == 0) {
+ /*
+ * We will receive calls and adjust the changes but
+ * not have setup everything (called before dpaa2_ni_init()
+ * really). This will then setup the link and internal
+ * sc->link_state and not trigger the update once needed,
+ * so basically dpmac never knows about it.
+ */
+ return;
+ }
/*
* Note: ifp link state will only be changed AFTER we are called so we
@@ -2344,23 +2357,33 @@
* @brief Callback function to process media change request.
*/
static int
-dpaa2_ni_media_change(if_t ifp)
+dpaa2_ni_media_change_locked(struct dpaa2_ni_softc *sc)
{
- struct dpaa2_ni_softc *sc = if_getsoftc(ifp);
- DPNI_LOCK(sc);
+ DPNI_LOCK_ASSERT(sc);
if (sc->mii) {
mii_mediachg(sc->mii);
sc->media_status = sc->mii->mii_media.ifm_media;
} else if (sc->fixed_link) {
- if_printf(ifp, "%s: can't change media in fixed mode\n",
+ if_printf(sc->ifp, "%s: can't change media in fixed mode\n",
__func__);
}
- DPNI_UNLOCK(sc);
return (0);
}
+static int
+dpaa2_ni_media_change(if_t ifp)
+{
+ struct dpaa2_ni_softc *sc = if_getsoftc(ifp);
+ int error;
+
+ DPNI_LOCK(sc);
+ error = dpaa2_ni_media_change_locked(sc);
+ DPNI_UNLOCK(sc);
+ return (error);
+}
+
/**
* @brief Callback function to process media status request.
*/
@@ -2443,17 +2466,20 @@
}
DPNI_LOCK(sc);
+ /* Announce we are up and running and can queue packets. */
+ if_setdrvflagbits(ifp, IFF_DRV_RUNNING, IFF_DRV_OACTIVE);
+
if (sc->mii) {
- mii_mediachg(sc->mii);
+ /*
+ * mii_mediachg() will trigger a call into
+ * dpaa2_ni_miibus_statchg() to setup link state.
+ */
+ dpaa2_ni_media_change_locked(sc);
}
callout_reset(&sc->mii_callout, hz, dpaa2_ni_media_tick, sc);
- if_setdrvflagbits(ifp, IFF_DRV_RUNNING, IFF_DRV_OACTIVE);
DPNI_UNLOCK(sc);
- /* Force link-state update to initilize things. */
- dpaa2_ni_miibus_statchg(dev);
-
(void)DPAA2_CMD_NI_CLOSE(dev, child, DPAA2_CMD_TK(&cmd, ni_token));
(void)DPAA2_CMD_RC_CLOSE(dev, child, DPAA2_CMD_TK(&cmd, rc_token));
return;
File Metadata
Details
Attached
Mime Type
text/plain
Expires
Fri, May 2, 4:43 PM (13 h, 40 m)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
17908153
Default Alt Text
D42643.diff (2 KB)
Attached To
Mode
D42643: dpaa2: defer link_state updates until we are up
Attached
Detach File
Event Timeline
Log In to Comment