diff options
| author | Vinod Koul <vkoul@kernel.org> | 2026-01-14 18:52:57 +0530 |
|---|---|---|
| committer | Vinod Koul <vkoul@kernel.org> | 2026-01-14 18:52:57 +0530 |
| commit | a699808928937000e550a7cd5355db93ef99e236 (patch) | |
| tree | 95ac832821553ac811652bf1ddfe78795db3cf06 /drivers/phy/Kconfig | |
| parent | be9d2cf10b46bc2c177aa9cb27b71d665d1e0e7e (diff) | |
| parent | e7556b59ba65179612bce3fa56bb53d1b4fb20db (diff) | |
Merge tag 'phy_common_properties' into next
phy common properties
Vladimir Oltean <vladimir.oltean@nxp.com> wrote:
Introduce "rx-polarity" and "tx-polarity" device tree properties with
Kunit tests
Diffstat (limited to 'drivers/phy/Kconfig')
| -rw-r--r-- | drivers/phy/Kconfig | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/drivers/phy/Kconfig b/drivers/phy/Kconfig index c9ff4e78633c..69c3c32f1820 100644 --- a/drivers/phy/Kconfig +++ b/drivers/phy/Kconfig @@ -5,6 +5,28 @@ menu "PHY Subsystem" +config PHY_COMMON_PROPS + bool + help + This parses properties common between generic PHYs and Ethernet PHYs. + + Select this from consumer drivers to gain access to helpers for + parsing properties from the + Documentation/devicetree/bindings/phy/phy-common-props.yaml schema. + +config PHY_COMMON_PROPS_TEST + tristate "KUnit tests for PHY common props" if !KUNIT_ALL_TESTS + select PHY_COMMON_PROPS + depends on KUNIT + default KUNIT_ALL_TESTS + help + This builds KUnit tests for the PHY common property API. + + For more information on KUnit and unit tests in general, + please refer to the KUnit documentation in Documentation/dev-tools/kunit/. + + When in doubt, say N. + config GENERIC_PHY bool "PHY Core" help |
