blob: a0f1c59e058ce74ab6fb14be8aaa5e63d3bbe845 [file] [log] [blame]
Tom Rini10e47792018-05-06 17:58:06 -04001// SPDX-License-Identifier: GPL-2.0+
Andy Fleming422effd2011-04-08 02:10:54 -05002/*
Claudiu Manoil401b94f2013-09-30 12:44:43 +03003 * Copyright 2009-2010, 2013 Freescale Semiconductor, Inc.
Andy Fleming422effd2011-04-08 02:10:54 -05004 * Jun-jie Zhang <b18070@freescale.com>
5 * Mingkai Hu <Mingkai.hu@freescale.com>
Andy Fleming422effd2011-04-08 02:10:54 -05006 */
Bin Meng79cd33a2016-01-11 22:41:18 -08007
Andy Fleming422effd2011-04-08 02:10:54 -05008#include <miiphy.h>
9#include <phy.h>
10#include <fsl_mdio.h>
11#include <asm/io.h>
Masahiro Yamada56a931c2016-09-21 11:28:55 +090012#include <linux/errno.h>
Hou Zhiqiang0a355792020-07-16 18:09:11 +080013#include <tsec.h>
Andy Fleming422effd2011-04-08 02:10:54 -050014
Madalin Bucurdbfdad62020-04-30 15:59:59 +030015#ifdef CONFIG_DM_MDIO
16struct tsec_mdio_priv {
17 struct tsec_mii_mng __iomem *regs;
18};
19#endif
20
Claudiu Manoil401b94f2013-09-30 12:44:43 +030021void tsec_local_mdio_write(struct tsec_mii_mng __iomem *phyregs, int port_addr,
Andy Fleming422effd2011-04-08 02:10:54 -050022 int dev_addr, int regnum, int value)
23{
24 int timeout = 1000000;
25
26 out_be32(&phyregs->miimadd, (port_addr << 8) | (regnum & 0x1f));
27 out_be32(&phyregs->miimcon, value);
Alison Wang884f1c12014-09-05 13:52:37 +080028 /* Memory barrier */
29 mb();
Andy Fleming422effd2011-04-08 02:10:54 -050030
31 while ((in_be32(&phyregs->miimind) & MIIMIND_BUSY) && timeout--)
32 ;
33}
34
Claudiu Manoil401b94f2013-09-30 12:44:43 +030035int tsec_local_mdio_read(struct tsec_mii_mng __iomem *phyregs, int port_addr,
Andy Fleming422effd2011-04-08 02:10:54 -050036 int dev_addr, int regnum)
37{
38 int value;
39 int timeout = 1000000;
40
Bin Meng79cd33a2016-01-11 22:41:18 -080041 /* Put the address of the phy, and the register number into MIIMADD */
Andy Fleming422effd2011-04-08 02:10:54 -050042 out_be32(&phyregs->miimadd, (port_addr << 8) | (regnum & 0x1f));
43
44 /* Clear the command register, and wait */
45 out_be32(&phyregs->miimcom, 0);
Alison Wang884f1c12014-09-05 13:52:37 +080046 /* Memory barrier */
47 mb();
Andy Fleming422effd2011-04-08 02:10:54 -050048
49 /* Initiate a read command, and wait */
50 out_be32(&phyregs->miimcom, MIIMCOM_READ_CYCLE);
Alison Wang884f1c12014-09-05 13:52:37 +080051 /* Memory barrier */
52 mb();
Andy Fleming422effd2011-04-08 02:10:54 -050053
54 /* Wait for the the indication that the read is done */
55 while ((in_be32(&phyregs->miimind) & (MIIMIND_NOTVALID | MIIMIND_BUSY))
56 && timeout--)
57 ;
58
59 /* Grab the value read from the PHY */
60 value = in_be32(&phyregs->miimstat);
61
62 return value;
63}
64
Madalin Bucurdbfdad62020-04-30 15:59:59 +030065#if defined(CONFIG_PHYLIB)
Andy Fleming422effd2011-04-08 02:10:54 -050066static int fsl_pq_mdio_reset(struct mii_dev *bus)
67{
Madalin Bucurdbfdad62020-04-30 15:59:59 +030068 struct tsec_mii_mng __iomem *regs;
69#ifndef CONFIG_DM_MDIO
70 regs = (struct tsec_mii_mng __iomem *)bus->priv;
71#else
72 struct tsec_mdio_priv *priv;
73
74 if (!bus->priv)
75 return -EINVAL;
76
77 priv = dev_get_priv(bus->priv);
78 regs = priv->regs;
79#endif
Andy Fleming422effd2011-04-08 02:10:54 -050080
81 /* Reset MII (due to new addresses) */
82 out_be32(&regs->miimcfg, MIIMCFG_RESET_MGMT);
83
84 out_be32(&regs->miimcfg, MIIMCFG_INIT_VALUE);
85
86 while (in_be32(&regs->miimind) & MIIMIND_BUSY)
87 ;
88
89 return 0;
90}
Madalin Bucurdbfdad62020-04-30 15:59:59 +030091#endif
Andy Fleming422effd2011-04-08 02:10:54 -050092
93int tsec_phy_read(struct mii_dev *bus, int addr, int dev_addr, int regnum)
94{
Madalin Bucurdbfdad62020-04-30 15:59:59 +030095 struct tsec_mii_mng __iomem *phyregs;
96#ifndef CONFIG_DM_MDIO
97 phyregs = (struct tsec_mii_mng __iomem *)bus->priv;
98#else
99 struct tsec_mdio_priv *priv;
100
101 if (!bus->priv)
102 return -EINVAL;
103
104 priv = dev_get_priv(bus->priv);
105 phyregs = priv->regs;
106#endif
Andy Fleming422effd2011-04-08 02:10:54 -0500107
108 return tsec_local_mdio_read(phyregs, addr, dev_addr, regnum);
109}
110
111int tsec_phy_write(struct mii_dev *bus, int addr, int dev_addr, int regnum,
112 u16 value)
113{
Madalin Bucurdbfdad62020-04-30 15:59:59 +0300114 struct tsec_mii_mng __iomem *phyregs;
115#ifndef CONFIG_DM_MDIO
116 phyregs = (struct tsec_mii_mng __iomem *)bus->priv;
117#else
118 struct tsec_mdio_priv *priv;
119
120 if (!bus->priv)
121 return -EINVAL;
122
123 priv = dev_get_priv(bus->priv);
124 phyregs = priv->regs;
125#endif
Andy Fleming422effd2011-04-08 02:10:54 -0500126
127 tsec_local_mdio_write(phyregs, addr, dev_addr, regnum, value);
128
129 return 0;
130}
131
Madalin Bucurdbfdad62020-04-30 15:59:59 +0300132#ifndef CONFIG_DM_MDIO
Masahiro Yamadaf7ed78b2020-06-26 15:13:33 +0900133int fsl_pq_mdio_init(struct bd_info *bis, struct fsl_pq_mdio_info *info)
Andy Fleming422effd2011-04-08 02:10:54 -0500134{
135 struct mii_dev *bus = mdio_alloc();
136
137 if (!bus) {
138 printf("Failed to allocate FSL MDIO bus\n");
139 return -1;
140 }
141
142 bus->read = tsec_phy_read;
143 bus->write = tsec_phy_write;
144 bus->reset = fsl_pq_mdio_reset;
Ben Whitten34fd6c92015-12-30 13:05:58 +0000145 strcpy(bus->name, info->name);
Andy Fleming422effd2011-04-08 02:10:54 -0500146
Claudiu Manoil401b94f2013-09-30 12:44:43 +0300147 bus->priv = (void *)info->regs;
Andy Fleming422effd2011-04-08 02:10:54 -0500148
149 return mdio_register(bus);
150}
Madalin Bucurdbfdad62020-04-30 15:59:59 +0300151#else /* CONFIG_DM_MDIO */
152#if defined(CONFIG_PHYLIB)
153static int tsec_mdio_read(struct udevice *dev, int addr, int devad, int reg)
154{
155 struct mdio_perdev_priv *pdata = (dev) ? dev_get_uclass_priv(dev) :
156 NULL;
157
158 if (pdata && pdata->mii_bus)
159 return tsec_phy_read(pdata->mii_bus, addr, devad, reg);
160
161 return -1;
162}
163
164static int tsec_mdio_write(struct udevice *dev, int addr, int devad, int reg,
165 u16 val)
166{
167 struct mdio_perdev_priv *pdata = (dev) ? dev_get_uclass_priv(dev) :
168 NULL;
169
170 if (pdata && pdata->mii_bus)
171 return tsec_phy_write(pdata->mii_bus, addr, devad, reg, val);
172
173 return -1;
174}
175
176static int tsec_mdio_reset(struct udevice *dev)
177{
178 struct mdio_perdev_priv *pdata = (dev) ? dev_get_uclass_priv(dev) :
179 NULL;
180
181 if (pdata && pdata->mii_bus)
182 return fsl_pq_mdio_reset(pdata->mii_bus);
183
184 return -1;
185}
186
187static const struct mdio_ops tsec_mdio_ops = {
188 .read = tsec_mdio_read,
189 .write = tsec_mdio_write,
190 .reset = tsec_mdio_reset,
191};
192
Hou Zhiqiang0a355792020-07-16 18:09:11 +0800193static struct fsl_pq_mdio_data etsec2_data = {
194 .mdio_regs_off = TSEC_MDIO_REGS_OFFSET,
195};
196
197static struct fsl_pq_mdio_data gianfar_data = {
198 .mdio_regs_off = 0x0,
199};
200
201static struct fsl_pq_mdio_data fman_data = {
202 .mdio_regs_off = 0x0,
203};
204
Madalin Bucurdbfdad62020-04-30 15:59:59 +0300205static const struct udevice_id tsec_mdio_ids[] = {
Hou Zhiqiang0a355792020-07-16 18:09:11 +0800206 { .compatible = "fsl,gianfar-tbi", .data = (ulong)&gianfar_data },
207 { .compatible = "fsl,gianfar-mdio", .data = (ulong)&gianfar_data },
208 { .compatible = "fsl,etsec2-tbi", .data = (ulong)&etsec2_data },
209 { .compatible = "fsl,etsec2-mdio", .data = (ulong)&etsec2_data },
210 { .compatible = "fsl,fman-mdio", .data = (ulong)&fman_data },
Madalin Bucurdbfdad62020-04-30 15:59:59 +0300211 {}
212};
213
214static int tsec_mdio_probe(struct udevice *dev)
215{
Hou Zhiqiang0a355792020-07-16 18:09:11 +0800216 struct fsl_pq_mdio_data *data;
Madalin Bucurdbfdad62020-04-30 15:59:59 +0300217 struct tsec_mdio_priv *priv = (dev) ? dev_get_priv(dev) : NULL;
218 struct mdio_perdev_priv *pdata = (dev) ? dev_get_uclass_priv(dev) :
219 NULL;
220
221 if (!dev) {
222 printf("%s dev = NULL\n", __func__);
223 return -1;
224 }
225 if (!priv) {
226 printf("dev_get_priv(dev %p) = NULL\n", dev);
227 return -1;
228 }
Hou Zhiqiang0a355792020-07-16 18:09:11 +0800229
230 data = (struct fsl_pq_mdio_data *)dev_get_driver_data(dev);
231 priv->regs = dev_remap_addr(dev) + data->mdio_regs_off;
Madalin Bucurdbfdad62020-04-30 15:59:59 +0300232 debug("%s priv %p @ regs %p, pdata %p\n", __func__,
233 priv, priv->regs, pdata);
234
235 return 0;
236}
237
238static int tsec_mdio_remove(struct udevice *dev)
239{
240 return 0;
241}
242
243U_BOOT_DRIVER(tsec_mdio) = {
244 .name = "tsec_mdio",
245 .id = UCLASS_MDIO,
246 .of_match = tsec_mdio_ids,
247 .probe = tsec_mdio_probe,
248 .remove = tsec_mdio_remove,
249 .ops = &tsec_mdio_ops,
Simon Glass8a2b47f2020-12-03 16:55:17 -0700250 .priv_auto = sizeof(struct tsec_mdio_priv),
Simon Glass71fa5b42020-12-03 16:55:18 -0700251 .plat_auto = sizeof(struct mdio_perdev_priv),
Madalin Bucurdbfdad62020-04-30 15:59:59 +0300252};
253#endif /* CONFIG_PHYLIB */
254#endif /* CONFIG_DM_MDIO */