Skip to content

Commit

Permalink
phy: intel: Add driver support for ComboPhy
Browse files Browse the repository at this point in the history
ComboPhy subsystem provides PHYs for various
controllers like PCIe, SATA and EMAC.

Signed-off-by: Dilip Kota <eswara.kota@linux.intel.com>
Acked-By: Vinod Koul <vkoul@kernel.org>
Link: https://lore.kernel.org/r/7b313826f46b9006a3ba98c0613e8f88f293a074.1589868358.git.eswara.kota@linux.intel.com
Signed-off-by: Kishon Vijay Abraham I <kishon@ti.com>
  • Loading branch information
Dilip Kota authored and Kishon Vijay Abraham I committed May 19, 2020
1 parent 1d51a2c commit ac0a95a
Show file tree
Hide file tree
Showing 3 changed files with 647 additions and 0 deletions.
14 changes: 14 additions & 0 deletions drivers/phy/intel/Kconfig
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,20 @@
#
# Phy drivers for Intel Lightning Mountain(LGM) platform
#
config PHY_INTEL_COMBO
bool "Intel ComboPHY driver"
depends on X86 || COMPILE_TEST
depends on OF && HAS_IOMEM
select MFD_SYSCON
select GENERIC_PHY
select REGMAP
help
Enable this to support Intel ComboPhy.

This driver configures ComboPhy subsystem on Intel gateway
chipsets which provides PHYs for various controllers, EMAC,
SATA and PCIe.

config PHY_INTEL_EMMC
tristate "Intel EMMC PHY driver"
depends on X86 || COMPILE_TEST
Expand Down
1 change: 1 addition & 0 deletions drivers/phy/intel/Makefile
Original file line number Diff line number Diff line change
@@ -1,2 +1,3 @@
# SPDX-License-Identifier: GPL-2.0
obj-$(CONFIG_PHY_INTEL_COMBO) += phy-intel-combo.o
obj-$(CONFIG_PHY_INTEL_EMMC) += phy-intel-emmc.o
Loading

0 comments on commit ac0a95a

Please sign in to comment.