diff options
author | Christine Gharzuzi <chrisg@marvell.com> | 2018-05-23 12:10:36 +0300 |
---|---|---|
committer | Stefan Roese <sr@denx.de> | 2021-04-29 07:45:24 +0200 |
commit | f596b01b9a69a8fd486468a11f6b2dbf07984c5f (patch) | |
tree | f0b4ca893345d2a1c3751486741ec618a2182719 | |
parent | 5f41aaf4c3e727bb5a0421c8b9e14548267dccee (diff) | |
download | u-boot-f596b01b9a69a8fd486468a11f6b2dbf07984c5f.zip u-boot-f596b01b9a69a8fd486468a11f6b2dbf07984c5f.tar.gz u-boot-f596b01b9a69a8fd486468a11f6b2dbf07984c5f.tar.bz2 |
phy: marvell: fix handling of unconnected comphy
- the default value of comphy pipe selector is set to PCIe (x4)
in case of unconnected comphy the default value remains 0x4
which may lead to several issues with comphy initialization.
- this patch adds SMC call that powers off the comphy lane in case of
unconnected comphy.
Change-Id: I196b2916518dd8df3b159ffa85e2989b8e483087
Signed-off-by: Christine Gharzuzi <chrisg@marvell.com>
Signed-off-by: Igal Liberman <igall@marvell.com>
Reviewed-by: Grzegorz Jaszczyk <jaz@semihalf.com>
-rw-r--r-- | drivers/phy/marvell/comphy_cp110.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/drivers/phy/marvell/comphy_cp110.c b/drivers/phy/marvell/comphy_cp110.c index 5520288..d9a94f9 100644 --- a/drivers/phy/marvell/comphy_cp110.c +++ b/drivers/phy/marvell/comphy_cp110.c @@ -553,6 +553,10 @@ int comphy_cp110_init(struct chip_serdes_phy_config *ptr_chip_cfg, } switch (ptr_comphy_map->type) { case COMPHY_TYPE_UNCONNECTED: + ret = comphy_smc(MV_SIP_COMPHY_POWER_OFF, + ptr_chip_cfg->comphy_base_addr, + lane, + ptr_comphy_map->type); case COMPHY_TYPE_IGNORE: continue; break; |