From: Christian Marangi <ansuelsmth@gmail.com>
To: Christian Marangi <ansuelsmth@gmail.com>,
Vinod Koul <vkoul@kernel.org>,
Kishon Vijay Abraham I <kishon@kernel.org>,
Rob Herring <robh@kernel.org>,
Krzysztof Kozlowski <krzk+dt@kernel.org>,
Conor Dooley <conor+dt@kernel.org>,
Lorenzo Bianconi <lorenzo@kernel.org>,
AngeloGioacchino Del Regno
<angelogioacchino.delregno@collabora.com>,
linux-arm-kernel@lists.infradead.org,
linux-phy@lists.infradead.org, devicetree@vger.kernel.org,
linux-kernel@vger.kernel.org
Subject: [PATCH 0/4] phy: airoha: add support for AN7583 PCIe PHY driver
Date: Fri, 6 Jun 2025 21:22:01 +0200 [thread overview]
Message-ID: <20250606192208.26465-1-ansuelsmth@gmail.com> (raw)
This small series move the current Airoha EN7581 PCIe PHY driver
to a dedicated directory and introduce support for Airoha AN7583 PCIe PHY.
It's not possible to reuse the EN7581 code as the register changed between
the 2 SoC and also the setup method changed (different calibration logic)
Moving the PHY in a dedicated directory is also needed for other series
current pending that will add USB PHY support.
Also a dedicated schema is added as the register names is entirely
different compared to EN7581.
Christian Marangi (4):
phy: move Airoha PCIe PHY driver to dedicated directory
phy: airoha: add EN7581 tag to PCIe PHY driver
dt-bindings: phy: airoha: Document support for AN7583 PCIe PHY
phy: airoha: add support for AN7583 PCIe PHY driver
.../bindings/phy/airoha,an7583-pcie-phy.yaml | 72 ++
MAINTAINERS | 14 +-
drivers/phy/Kconfig | 11 +-
drivers/phy/Makefile | 4 +-
drivers/phy/airoha/Kconfig | 23 +
drivers/phy/airoha/Makefile | 3 +
.../phy/airoha/phy-airoha-an7583-pcie-regs.h | 550 +++++++++
drivers/phy/airoha/phy-airoha-an7583-pcie.c | 1069 +++++++++++++++++
.../phy-airoha-en7581-pcie-regs.h} | 0
.../phy-airoha-en7581-pcie.c} | 6 +-
10 files changed, 1734 insertions(+), 18 deletions(-)
create mode 100644 Documentation/devicetree/bindings/phy/airoha,an7583-pcie-phy.yaml
create mode 100644 drivers/phy/airoha/Kconfig
create mode 100644 drivers/phy/airoha/Makefile
create mode 100644 drivers/phy/airoha/phy-airoha-an7583-pcie-regs.h
create mode 100644 drivers/phy/airoha/phy-airoha-an7583-pcie.c
rename drivers/phy/{phy-airoha-pcie-regs.h => airoha/phy-airoha-en7581-pcie-regs.h} (100%)
rename drivers/phy/{phy-airoha-pcie.c => airoha/phy-airoha-en7581-pcie.c} (99%)
--
2.48.1
WARNING: multiple messages have this Message-ID (diff)
From: Christian Marangi <ansuelsmth@gmail.com>
To: Christian Marangi <ansuelsmth@gmail.com>,
Vinod Koul <vkoul@kernel.org>,
Kishon Vijay Abraham I <kishon@kernel.org>,
Rob Herring <robh@kernel.org>,
Krzysztof Kozlowski <krzk+dt@kernel.org>,
Conor Dooley <conor+dt@kernel.org>,
Lorenzo Bianconi <lorenzo@kernel.org>,
AngeloGioacchino Del Regno
<angelogioacchino.delregno@collabora.com>,
linux-arm-kernel@lists.infradead.org,
linux-phy@lists.infradead.org, devicetree@vger.kernel.org,
linux-kernel@vger.kernel.org
Subject: [PATCH 0/4] phy: airoha: add support for AN7583 PCIe PHY driver
Date: Fri, 6 Jun 2025 21:22:01 +0200 [thread overview]
Message-ID: <20250606192208.26465-1-ansuelsmth@gmail.com> (raw)
This small series move the current Airoha EN7581 PCIe PHY driver
to a dedicated directory and introduce support for Airoha AN7583 PCIe PHY.
It's not possible to reuse the EN7581 code as the register changed between
the 2 SoC and also the setup method changed (different calibration logic)
Moving the PHY in a dedicated directory is also needed for other series
current pending that will add USB PHY support.
Also a dedicated schema is added as the register names is entirely
different compared to EN7581.
Christian Marangi (4):
phy: move Airoha PCIe PHY driver to dedicated directory
phy: airoha: add EN7581 tag to PCIe PHY driver
dt-bindings: phy: airoha: Document support for AN7583 PCIe PHY
phy: airoha: add support for AN7583 PCIe PHY driver
.../bindings/phy/airoha,an7583-pcie-phy.yaml | 72 ++
MAINTAINERS | 14 +-
drivers/phy/Kconfig | 11 +-
drivers/phy/Makefile | 4 +-
drivers/phy/airoha/Kconfig | 23 +
drivers/phy/airoha/Makefile | 3 +
.../phy/airoha/phy-airoha-an7583-pcie-regs.h | 550 +++++++++
drivers/phy/airoha/phy-airoha-an7583-pcie.c | 1069 +++++++++++++++++
.../phy-airoha-en7581-pcie-regs.h} | 0
.../phy-airoha-en7581-pcie.c} | 6 +-
10 files changed, 1734 insertions(+), 18 deletions(-)
create mode 100644 Documentation/devicetree/bindings/phy/airoha,an7583-pcie-phy.yaml
create mode 100644 drivers/phy/airoha/Kconfig
create mode 100644 drivers/phy/airoha/Makefile
create mode 100644 drivers/phy/airoha/phy-airoha-an7583-pcie-regs.h
create mode 100644 drivers/phy/airoha/phy-airoha-an7583-pcie.c
rename drivers/phy/{phy-airoha-pcie-regs.h => airoha/phy-airoha-en7581-pcie-regs.h} (100%)
rename drivers/phy/{phy-airoha-pcie.c => airoha/phy-airoha-en7581-pcie.c} (99%)
--
2.48.1
--
linux-phy mailing list
linux-phy@lists.infradead.org
https://lists.infradead.org/mailman/listinfo/linux-phy
next reply other threads:[~2025-06-06 19:24 UTC|newest]
Thread overview: 20+ messages / expand[flat|nested] mbox.gz Atom feed top
2025-06-06 19:22 Christian Marangi [this message]
2025-06-06 19:22 ` [PATCH 0/4] phy: airoha: add support for AN7583 PCIe PHY driver Christian Marangi
2025-06-06 19:22 ` [PATCH 1/4] phy: move Airoha PCIe PHY driver to dedicated directory Christian Marangi
2025-06-06 19:22 ` Christian Marangi
2025-06-06 19:22 ` [PATCH 2/4] phy: airoha: add EN7581 tag to PCIe PHY driver Christian Marangi
2025-06-06 19:22 ` Christian Marangi
2025-06-06 19:22 ` [PATCH 3/4] dt-bindings: phy: airoha: Document support for AN7583 PCIe PHY Christian Marangi
2025-06-06 19:22 ` Christian Marangi
2025-06-09 16:51 ` Conor Dooley
2025-06-09 16:51 ` Conor Dooley
2025-06-17 13:57 ` Christian Marangi
2025-06-17 13:57 ` Christian Marangi
2025-06-17 16:29 ` Conor Dooley
2025-06-17 16:29 ` Conor Dooley
2025-06-06 19:22 ` [PATCH 4/4] phy: airoha: add support for AN7583 PCIe PHY driver Christian Marangi
2025-06-06 19:22 ` Christian Marangi
2025-06-10 7:50 ` neil.armstrong
2025-06-10 7:50 ` neil.armstrong
2025-06-17 13:59 ` Christian Marangi
2025-06-17 13:59 ` Christian Marangi
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20250606192208.26465-1-ansuelsmth@gmail.com \
--to=ansuelsmth@gmail.com \
--cc=angelogioacchino.delregno@collabora.com \
--cc=conor+dt@kernel.org \
--cc=devicetree@vger.kernel.org \
--cc=kishon@kernel.org \
--cc=krzk+dt@kernel.org \
--cc=linux-arm-kernel@lists.infradead.org \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-phy@lists.infradead.org \
--cc=lorenzo@kernel.org \
--cc=robh@kernel.org \
--cc=vkoul@kernel.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.