mirror of
https://source.denx.de/u-boot/u-boot.git
synced 2026-05-04 20:26:13 +02:00
Add PHY driver for Multi-Protocol PHY present on Renesas R-Car X5H
R8A78000 SoC. Currently, the PHY driver only supports configuring
the MPPHY for ethernet operation.
Signed-off-by: Thanh Quan <thanh.quan.xn@renesas.com>
Signed-off-by: Phong Hoang <phong.hoang.wz@renesas.com>
Signed-off-by: Hai Pham <hai.pham.ud@renesas.com> #Fix License-Identifier
Signed-off-by: Marek Vasut <marek.vasut+renesas@mailbox.org>
[Marek: Clean up macros, indent, clock and reset handling in probe,
rename the driver and add r8a78000- into compatible string,
update commit message.]
22 lines
618 B
Plaintext
22 lines
618 B
Plaintext
# SPDX-License-Identifier: GPL-2.0
|
|
#
|
|
# Phy drivers for Renesas platforms
|
|
|
|
config PHY_R8A779F0_ETHERNET_SERDES
|
|
tristate "Renesas R-Car S4-8 Ethernet SERDES driver"
|
|
depends on RCAR_64 && PHY
|
|
help
|
|
Support for Ethernet SERDES found on Renesas R-Car S4-8 SoCs.
|
|
|
|
config PHY_R8A78000_ETHERNET_PCS
|
|
tristate "Renesas R-Car X5H Ethernet PCS driver"
|
|
depends on RCAR_64 && PHY
|
|
help
|
|
Support for Ethernet PCS found on Renesas R-Car X5H SoCs.
|
|
|
|
config PHY_R8A78000_MP_PHY
|
|
tristate "Renesas R-Car X5H Multi-Protocol PHY driver"
|
|
depends on RCAR_64 && PHY
|
|
help
|
|
Support for Multi-Protocol PHY on Renesas R-Car X5H SoCs.
|