aboutsummaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorGravatar Bartosz Golaszewski <bartosz.golaszewski@linaro.org> 2023-06-19 11:24:00 +0200
committerGravatar Jakub Kicinski <kuba@kernel.org> 2023-06-20 20:44:38 -0700
commitaa571b6275fb60da443c490ebeef021a6897d332 (patch)
tree8492718a3638a52cddd4d4c85d2dccfc71003f46 /include
parentnet: stmmac: dwmac-qcom-ethqos: add support for SGMII (diff)
downloadlinux-aa571b6275fb60da443c490ebeef021a6897d332.tar.gz
linux-aa571b6275fb60da443c490ebeef021a6897d332.tar.bz2
linux-aa571b6275fb60da443c490ebeef021a6897d332.zip
net: stmmac: add new switch to struct plat_stmmacenet_data
On some platforms, the PCS can be integrated in the MAC so the driver will not see any PCS link activity. Add a switch that allows the platform drivers to let the core code know. Signed-off-by: Bartosz Golaszewski <bartosz.golaszewski@linaro.org> Reviewed-by: Jose Abreu <Jose.Abreu@synopsys.com> Signed-off-by: Jakub Kicinski <kuba@kernel.org>
Diffstat (limited to 'include')
-rw-r--r--include/linux/stmmac.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/include/linux/stmmac.h b/include/linux/stmmac.h
index 225751a8fd8e..06090538fe2d 100644
--- a/include/linux/stmmac.h
+++ b/include/linux/stmmac.h
@@ -293,5 +293,6 @@ struct plat_stmmacenet_data {
bool sph_disable;
bool serdes_up_after_phy_linkup;
const struct dwmac4_addrs *dwmac4_addrs;
+ bool has_integrated_pcs;
};
#endif