Home
last modified time | relevance | path

Searched +full:salvo +full:- +full:phy (Results 1 – 4 of 4) sorted by relevance

/linux-5.10/Documentation/devicetree/bindings/phy/
Dcdns,salvo-phy.yaml1 # SPDX-License-Identifier: (GPL-2.0 OR BSD-2-Clause)
4 ---
5 $id: "http://devicetree.org/schemas/phy/cdns,salvo-phy.yaml#"
6 $schema: "http://devicetree.org/meta-schemas/core.yaml#"
8 title: Cadence SALVO PHY
11 - Peter Chen <peter.chen@nxp.com>
16 - nxp,salvo-phy
24 clock-names:
26 - const: salvo_phy_clk
28 power-domains:
[all …]
/linux-5.10/drivers/phy/cadence/
DKconfig1 # SPDX-License-Identifier: GPL-2.0-only
3 # Phy drivers for Cadence PHYs
7 tristate "Cadence Torrent PHY driver"
12 Support for Cadence Torrent PHY.
15 tristate "Cadence D-PHY Support"
20 Choose this option if you have a Cadence D-PHY in your
22 cdns-dphy.
25 tristate "Cadence Sierra PHY Driver"
29 Enable this to support the Cadence Sierra PHY driver
32 tristate "Cadence Salvo PHY Driver"
[all …]
Dphy-cadence-salvo.c1 // SPDX-License-Identifier: GPL-2.0+
3 * Salvo PHY is a 28nm PHY, it is a legacy PHY, and only
6 * Copyright (c) 2019-2020 NXP
12 #include <linux/phy/phy.h>
18 /* PHY register definition */
105 struct phy *phy; member
114 return (u16)readl(salvo_phy->base + in cdns_salvo_read()
115 reg * (1 << salvo_phy->data->reg_offset_shift)); in cdns_salvo_read()
121 writel(val, salvo_phy->base + in cdns_salvo_write()
122 reg * (1 << salvo_phy->data->reg_offset_shift)); in cdns_salvo_write()
[all …]
DMakefile1 # SPDX-License-Identifier: GPL-2.0-only
2 obj-$(CONFIG_PHY_CADENCE_TORRENT) += phy-cadence-torrent.o
3 obj-$(CONFIG_PHY_CADENCE_DPHY) += cdns-dphy.o
4 obj-$(CONFIG_PHY_CADENCE_SIERRA) += phy-cadence-sierra.o
5 obj-$(CONFIG_PHY_CADENCE_SALVO) += phy-cadence-salvo.o