@@ -308,6 +308,29 @@ static void tegra_eqos_remove(struct platform_device *pdev)
gpiod_set_value(eqos->reset, 1);
}
+static int fsd_eqos_probe(struct platform_device *pdev,
+ struct plat_stmmacenet_data *data,
+ struct stmmac_resources *res)
+{
+ struct clk *clk_rx1 = NULL;
+ struct clk *clk_rx2 = NULL;
+
+ for (int i = 0; i < data->num_clks; i++) {
+ if (strcmp(data->clks[i].id, "slave_bus") == 0)
+ data->stmmac_clk = data->clks[i].clk;
+ else if (strcmp(data->clks[i].id, "eqos_rxclk_mux") == 0)
+ clk_rx1 = data->clks[i].clk;
+ else if (strcmp(data->clks[i].id, "eqos_phyrxclk") == 0)
+ clk_rx2 = data->clks[i].clk;
+ }
+
+ /* Eth0 RX clock doesn't support MUX */
+ if (clk_rx1)
+ clk_set_parent(clk_rx1, clk_rx2);
+
+ return 0;
+}
+
struct dwc_eth_dwmac_data {
int (*probe)(struct platform_device *pdev,
struct plat_stmmacenet_data *data,
@@ -324,6 +347,10 @@ static const struct dwc_eth_dwmac_data tegra_eqos_data = {
.remove = tegra_eqos_remove,
};
+static const struct dwc_eth_dwmac_data fsd_eqos_data = {
+ .probe = fsd_eqos_probe,
+};
+
static int dwc_eth_dwmac_probe(struct platform_device *pdev)
{
const struct dwc_eth_dwmac_data *data;
@@ -402,6 +429,7 @@ static void dwc_eth_dwmac_remove(struct platform_device *pdev)
static const struct of_device_id dwc_eth_dwmac_match[] = {
{ .compatible = "snps,dwc-qos-ethernet-4.10", .data = &dwc_qos_data },
{ .compatible = "nvidia,tegra186-eqos", .data = &tegra_eqos_data },
+ { .compatible = "tesla,fsd-ethqos", .data = &fsd_eqos_data },
{ }
};
MODULE_DEVICE_TABLE(of, dwc_eth_dwmac_match);
The FSD SoC contains two instance of the Synopsys DWC ethernet QOS IP core. The binding that it uses is slightly different from existing ones because of the integration (clocks, resets). Signed-off-by: Swathi K S <swathi.ks@samsung.com> --- .../stmicro/stmmac/dwmac-dwc-qos-eth.c | 28 +++++++++++++++++++ 1 file changed, 28 insertions(+)