From: Huan He <hehuan1@xxxxxxxxxxxxxxxxxx> Implements support for the Eswin eic7700 SoC sata controller. Provides basic functionality to initialize and manage the sata controller for the eic7700 SoC. Integrates with the Linux AHCI subsystem for standardized SATA host control and scalability. Supported chips: Eswin eic7700 SoC. Test: I tested this patch on the Sifive HiFive Premier P550 (which uses the EIC7700 SoC), Ensure the hard drive is properly connected via the SATA interface on the hardware, and confirm that the SATA controller within the chip can read/write to the hard drive normally. The SATA driver patch is working properly. Huan He (2): dt-bindings: sata: eswin: Document for EIC7700 SoC sata: eswin: Add eic7700 sata driver .../bindings/ata/eswin,eic7700-sata.yaml | 80 ++++++ drivers/ata/Kconfig | 12 + drivers/ata/Makefile | 1 + drivers/ata/ahci_eic7700.c | 248 ++++++++++++++++++ 4 files changed, 341 insertions(+) create mode 100644 Documentation/devicetree/bindings/ata/eswin,eic7700-sata.yaml create mode 100644 drivers/ata/ahci_eic7700.c -- 2.25.1