aboutsummaryrefslogtreecommitdiff
path: root/drivers/phy/Kconfig
diff options
context:
space:
mode:
authorJean-Jacques Hiblot <jjhiblot@ti.com>2017-04-24 11:51:28 +0200
committerSimon Glass <sjg@chromium.org>2017-05-09 12:14:16 -0600
commit86322f5982206f431ee4678a74182859c249aac4 (patch)
tree02c1bc73ed86147120b77818d09021f8b6d81f90 /drivers/phy/Kconfig
parent72e5016f878d142e925f0016cee4ee7cbf42ae5b (diff)
downloadu-boot-86322f5982206f431ee4678a74182859c249aac4.zip
u-boot-86322f5982206f431ee4678a74182859c249aac4.tar.gz
u-boot-86322f5982206f431ee4678a74182859c249aac4.tar.bz2
dm: test: Add tests for the generic PHY uclass
Those tests check: - the ability for a phy-user to get a phy based on its name or its index - the ability of a phy device (provider) to manage multiple ports - the ability to perform operations on the phy (init,deinit,on,off) - the behavior of the uclass when optional operations are not implemented Signed-off-by: Jean-Jacques Hiblot <jjhiblot@ti.com> Reviewed-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'drivers/phy/Kconfig')
-rw-r--r--drivers/phy/Kconfig8
1 files changed, 8 insertions, 0 deletions
diff --git a/drivers/phy/Kconfig b/drivers/phy/Kconfig
index 0a74920..75f459d 100644
--- a/drivers/phy/Kconfig
+++ b/drivers/phy/Kconfig
@@ -33,4 +33,12 @@ config SPL_PHY
compatible as possible with the equivalent framework found in the
linux kernel.
+config PHY_SANDBOX
+ bool "Sandbox PHY support"
+ depends on SANDBOX
+ depends on PHY
+ help
+ This select a dummy sandbox PHY driver. It used only to implement
+ the unit tests for the phy framework
+
endmenu