1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
|
// SPDX-License-Identifier: GPL-2.0
/*
* NXP S32G/R GMAC glue layer
*
* Copyright 2019-2024 NXP
*
*/
#include <linux/clk.h>
#include <linux/clk-provider.h>
#include <linux/device.h>
#include <linux/ethtool.h>
#include <linux/io.h>
#include <linux/module.h>
#include <linux/of_mdio.h>
#include <linux/of_address.h>
#include <linux/phy.h>
#include <linux/phylink.h>
#include <linux/platform_device.h>
#include <linux/stmmac.h>
#include "stmmac_platform.h"
#define GMAC_INTF_RATE_125M 125000000 /* 125MHz */
/* SoC PHY interface control register */
#define PHY_INTF_SEL_MII 0x00
#define PHY_INTF_SEL_SGMII 0x01
#define PHY_INTF_SEL_RGMII 0x02
#define PHY_INTF_SEL_RMII 0x08
struct s32_priv_data {
void __iomem *ioaddr;
void __iomem *ctrl_sts;
struct device *dev;
phy_interface_t *intf_mode;
struct clk *tx_clk;
struct clk *rx_clk;
};
static int s32_gmac_write_phy_intf_select(struct s32_priv_data *gmac)
{
writel(PHY_INTF_SEL_RGMII, gmac->ctrl_sts);
dev_dbg(gmac->dev, "PHY mode set to %s\n", phy_modes(*gmac->intf_mode));
return 0;
}
static int s32_gmac_init(struct platform_device *pdev, void *priv)
{
struct s32_priv_data *gmac = priv;
int ret;
/* Set initial TX interface clock */
ret = clk_prepare_enable(gmac->tx_clk);
if (ret) {
dev_err(&pdev->dev, "Can't enable tx clock\n");
return ret;
}
ret = clk_set_rate(gmac->tx_clk, GMAC_INTF_RATE_125M);
if (ret) {
dev_err(&pdev->dev, "Can't set tx clock\n");
goto err_tx_disable;
}
/* Set initial RX interface clock */
ret = clk_prepare_enable(gmac->rx_clk);
if (ret) {
dev_err(&pdev->dev, "Can't enable rx clock\n");
goto err_tx_disable;
}
ret = clk_set_rate(gmac->rx_clk, GMAC_INTF_RATE_125M);
if (ret) {
dev_err(&pdev->dev, "Can't set rx clock\n");
goto err_txrx_disable;
}
/* Set interface mode */
ret = s32_gmac_write_phy_intf_select(gmac);
if (ret) {
dev_err(&pdev->dev, "Can't set PHY interface mode\n");
goto err_txrx_disable;
}
return 0;
err_txrx_disable:
clk_disable_unprepare(gmac->rx_clk);
err_tx_disable:
clk_disable_unprepare(gmac->tx_clk);
return ret;
}
static void s32_gmac_exit(struct platform_device *pdev, void *priv)
{
struct s32_priv_data *gmac = priv;
clk_disable_unprepare(gmac->tx_clk);
clk_disable_unprepare(gmac->rx_clk);
}
static int s32_dwmac_probe(struct platform_device *pdev)
{
struct plat_stmmacenet_data *plat;
struct device *dev = &pdev->dev;
struct stmmac_resources res;
struct s32_priv_data *gmac;
int ret;
gmac = devm_kzalloc(&pdev->dev, sizeof(*gmac), GFP_KERNEL);
if (!gmac)
return -ENOMEM;
gmac->dev = &pdev->dev;
ret = stmmac_get_platform_resources(pdev, &res);
if (ret)
return dev_err_probe(dev, ret,
"Failed to get platform resources\n");
plat = devm_stmmac_probe_config_dt(pdev, res.mac);
if (IS_ERR(plat))
return dev_err_probe(dev, PTR_ERR(plat),
"dt configuration failed\n");
/* PHY interface mode control reg */
gmac->ctrl_sts = devm_platform_get_and_ioremap_resource(pdev, 1, NULL);
if (IS_ERR(gmac->ctrl_sts))
return dev_err_probe(dev, PTR_ERR(gmac->ctrl_sts),
"S32CC config region is missing\n");
/* tx clock */
gmac->tx_clk = devm_clk_get(&pdev->dev, "tx");
if (IS_ERR(gmac->tx_clk))
return dev_err_probe(dev, PTR_ERR(gmac->tx_clk),
"tx clock not found\n");
/* rx clock */
gmac->rx_clk = devm_clk_get(&pdev->dev, "rx");
if (IS_ERR(gmac->rx_clk))
return dev_err_probe(dev, PTR_ERR(gmac->rx_clk),
"rx clock not found\n");
gmac->intf_mode = &plat->phy_interface;
gmac->ioaddr = res.addr;
/* S32CC core feature set */
plat->has_gmac4 = true;
plat->pmt = 1;
plat->flags |= STMMAC_FLAG_SPH_DISABLE;
plat->rx_fifo_size = 20480;
plat->tx_fifo_size = 20480;
plat->init = s32_gmac_init;
plat->exit = s32_gmac_exit;
plat->clk_tx_i = gmac->tx_clk;
plat->set_clk_tx_rate = stmmac_set_clk_tx_rate;
plat->bsp_priv = gmac;
return stmmac_pltfr_probe(pdev, plat, &res);
}
static const struct of_device_id s32_dwmac_match[] = {
{ .compatible = "nxp,s32g2-dwmac" },
{ }
};
MODULE_DEVICE_TABLE(of, s32_dwmac_match);
static struct platform_driver s32_dwmac_driver = {
.probe = s32_dwmac_probe,
.remove = stmmac_pltfr_remove,
.driver = {
.name = "s32-dwmac",
.pm = &stmmac_pltfr_pm_ops,
.of_match_table = s32_dwmac_match,
},
};
module_platform_driver(s32_dwmac_driver);
MODULE_AUTHOR("Jan Petrous (OSS) <jan.petrous@oss.nxp.com>");
MODULE_DESCRIPTION("NXP S32G/R common chassis GMAC driver");
MODULE_LICENSE("GPL");
|