Add driver support for Eswin EIC7700 SoC SATA Controller and PHY
From: | Yulin Lu <luyulin-AT-eswincomputing.com> | |
To: | dlemoal-AT-kernel.org, cassel-AT-kernel.org, robh-AT-kernel.org, krzk+dt-AT-kernel.org, conor+dt-AT-kernel.org, linux-ide-AT-vger.kernel.org, devicetree-AT-vger.kernel.org, linux-kernel-AT-vger.kernel.org, vkoul-AT-kernel.org, kishon-AT-kernel.org, linux-phy-AT-lists.infradead.org | |
Subject: | [PATCH v5 0/3] Add driver support for Eswin EIC7700 SoC SATA Controller and PHY | |
Date: | Tue, 30 Sep 2025 16:37:54 +0800 | |
Message-ID: | <20250930083754.15-1-luyulin@eswincomputing.com> | |
Cc: | ningyu-AT-eswincomputing.com, zhengyu-AT-eswincomputing.com, linmin-AT-eswincomputing.com, huangyifeng-AT-eswincomputing.com, fenglin-AT-eswincomputing.com, lianghujun-AT-eswincomputing.com, Yulin Lu <luyulin-AT-eswincomputing.com> | |
Archive-link: | Article |
This series depends on the config option patch [1]. [1] Https://git.kernel.org/pub/scm/linux/kernel/git/next/linux-next.git/commit/?h=next-20250929&id=ce2d00c6e192b588ddc3d1efb72b0ea00ab5538f Updates: v5 -> v4: - eswin,eic7700-ahci.yaml - Add "dt-bindings: ata:" prefix to the subject. - Wrap at 80 characters in the YAML description field. - Link to v4: https://lore.kernel.org/lkml/20250915125902.375-1-luyulin... Yulin Lu (3): dt-bindings: ata: eswin: Document for EIC7700 SoC ahci dt-bindings: phy: eswin: Document the EIC7700 SoC SATA PHY phy: eswin: Create eswin directory and add EIC7700 SATA PHY driver .../bindings/ata/eswin,eic7700-ahci.yaml | 79 +++++++ .../bindings/phy/eswin,eic7700-sata-phy.yaml | 36 ++++ drivers/phy/Kconfig | 1 + drivers/phy/Makefile | 1 + drivers/phy/eswin/Kconfig | 14 ++ drivers/phy/eswin/Makefile | 2 + drivers/phy/eswin/phy-eic7700-sata.c | 192 ++++++++++++++++++ 7 files changed, 325 insertions(+) create mode 100644 Documentation/devicetree/bindings/ata/eswin,eic7700-ahci.yaml create mode 100644 Documentation/devicetree/bindings/phy/eswin,eic7700-sata-phy.yaml create mode 100644 drivers/phy/eswin/Kconfig create mode 100644 drivers/phy/eswin/Makefile create mode 100644 drivers/phy/eswin/phy-eic7700-sata.c -- 2.25.1