]> git.dujemihanovic.xyz Git - u-boot.git/commit
net: phy: Add support for TI PHY init
authorDan Murphy <dmurphy@ti.com>
Mon, 4 May 2020 21:14:39 +0000 (16:14 -0500)
committerTom Rini <trini@konsulko.com>
Fri, 12 Jun 2020 17:17:23 +0000 (13:17 -0400)
commitbc0e578f903d24b5291d34959ad534138ced0780
treeff72aabb0c421770aab7ecd9613925ade24151cc
parent535247a9e455a165943efcdbb7e144e816d6e904
net: phy: Add support for TI PHY init

ti_phy_init function was allocated to the DP83867 PHY.  This function
name is to generic for a specific PHY.  The function can be moved to a
TI specific file that can register all TI PHYs that are defined in the
defconfig.  The ti_phy_init file will contain all TI PHYs initialization
so that only phy_ti_init can be called from the framework.

In addition to the above the config flag for the DP83867 needs to be changed
in the Kconfig and dependent defconfig files. The config flag that was
used for the DP83867 was also generic in nature so a more specific
config flag for the DP83867 was created.

Acked-by: Michal Simek <michal.simek@xilinx.com>
Signed-off-by: Dan Murphy <dmurphy@ti.com>
15 files changed:
configs/am65x_evm_a53_defconfig
configs/am65x_hs_evm_a53_defconfig
configs/dra7xx_evm_defconfig
configs/dra7xx_hs_evm_defconfig
configs/dra7xx_hs_evm_usb_defconfig
configs/j721e_evm_a72_defconfig
configs/j721e_hs_evm_a72_defconfig
configs/k2g_evm_defconfig
configs/xilinx_versal_virt_defconfig
configs/xilinx_zynqmp_virt_defconfig
drivers/net/phy/Kconfig
drivers/net/phy/Makefile
drivers/net/phy/dp83867.c
drivers/net/phy/ti_phy_init.c [new file with mode: 0644]
drivers/net/phy/ti_phy_init.h [new file with mode: 0644]