mirror of
https://source.denx.de/u-boot/u-boot.git
synced 2025-08-13 18:56:59 +02:00
net: fec_mxc: support i.MX93
Support i.MX93 in fec_mxc driver Reviewed-by: Ramon Fried <rfried.dev@gmail.com> Signed-off-by: Peng Fan <peng.fan@nxp.com>
This commit is contained in:
parent
feaf8e0cf0
commit
09de565f76
@ -349,7 +349,7 @@ config FEC_MXC_MDIO_BASE
|
|||||||
|
|
||||||
config FEC_MXC
|
config FEC_MXC
|
||||||
bool "FEC Ethernet controller"
|
bool "FEC Ethernet controller"
|
||||||
depends on MX28 || MX5 || MX6 || MX7 || IMX8 || IMX8M || IMX8ULP || VF610
|
depends on MX28 || MX5 || MX6 || MX7 || IMX8 || IMX8M || IMX8ULP || IMX93 || VF610
|
||||||
help
|
help
|
||||||
This driver supports the 10/100 Fast Ethernet controller for
|
This driver supports the 10/100 Fast Ethernet controller for
|
||||||
NXP i.MX processors.
|
NXP i.MX processors.
|
||||||
|
@ -598,7 +598,8 @@ static int fecmxc_init(struct udevice *dev)
|
|||||||
writel(0x00000000, &fec->eth->gaddr2);
|
writel(0x00000000, &fec->eth->gaddr2);
|
||||||
|
|
||||||
/* Do not access reserved register */
|
/* Do not access reserved register */
|
||||||
if (!is_mx6ul() && !is_mx6ull() && !is_imx8() && !is_imx8m() && !is_imx8ulp()) {
|
if (!is_mx6ul() && !is_mx6ull() && !is_imx8() && !is_imx8m() && !is_imx8ulp() &&
|
||||||
|
!is_imx93()) {
|
||||||
/* clear MIB RAM */
|
/* clear MIB RAM */
|
||||||
for (i = mib_ptr; i <= mib_ptr + 0xfc; i += 4)
|
for (i = mib_ptr; i <= mib_ptr + 0xfc; i += 4)
|
||||||
writel(0, i);
|
writel(0, i);
|
||||||
@ -1357,6 +1358,7 @@ static const struct udevice_id fecmxc_ids[] = {
|
|||||||
{ .compatible = "fsl,imx53-fec" },
|
{ .compatible = "fsl,imx53-fec" },
|
||||||
{ .compatible = "fsl,imx7d-fec" },
|
{ .compatible = "fsl,imx7d-fec" },
|
||||||
{ .compatible = "fsl,mvf600-fec" },
|
{ .compatible = "fsl,mvf600-fec" },
|
||||||
|
{ .compatible = "fsl,imx93-fec" },
|
||||||
{ }
|
{ }
|
||||||
};
|
};
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user