* [PATCH v9 0/2] Add driver support for Eswin EIC7700 SoC PCIe controller
@ 2025-12-29 11:30 zhangsenchuan
2025-12-29 11:31 ` [PATCH v9 1/2] dt-bindings: PCI: eic7700: Add Eswin PCIe host controller zhangsenchuan
2025-12-29 11:32 ` [PATCH v9 2/2] PCI: eic7700: Add Eswin PCIe host controller driver zhangsenchuan
0 siblings, 2 replies; 15+ messages in thread
From: zhangsenchuan @ 2025-12-29 11:30 UTC (permalink / raw)
To: bhelgaas, mani, krzk+dt, conor+dt, lpieralisi, kwilczynski, robh,
p.zabel, jingoohan1, gustavo.pimentel, linux-pci, devicetree,
linux-kernel, christian.bruel, mayank.rana, shradha.t,
krishna.chundru, thippeswamy.havalige, inochiama, Frank.li
Cc: ningyu, linmin, pinkesh.vaghela, ouyanghui, Senchuan Zhang
From: Senchuan Zhang <zhangsenchuan@eswincomputing.com>
Changes in v9:
- Updates: eswin,eic7700-pcie.yaml
- None
- Updates: pcie-eic7700.c
- Update comment, s/Rort/Port/.
- Link to V8: https://lore.kernel.org/all/20251215095928.1712-1-zhangsenchuan@eswincomputing.com/
Changes in v8:
- Updates: eswin,eic7700-pcie.yaml
- None
- Updates: pcie-eic7700.c
- Remove dw_pcie_suspend_noirq/dw_pcie_resume_noirq API and add a
comment, and remove .deinit.
- Remove no_pme_handshake flag.
- Add dw_pcie_dbi_ro_wr_en/dw_pcie_dbi_ro_wr_dis API.
- Add eic7700_pcie_assert helper function.
- Update NOIRQ_SYSTEM_SLEEP_PM_OPS to DEFINE_NOIRQ_DEV_PM_OPS.
- Link to V7: https://lore.kernel.org/all/20251202090225.1602-1-zhangsenchuan@eswincomputing.com/
Changes in v7:
- Updates: eswin,eic7700-pcie.yaml
- None
- Updates: pcie-eic7700.c
- Update "config PCIE_EIC7700" bool to tristate.
- Remove fix MSI-X code, depend on new commit [1].
- Add set no_pme_handshake flag.
- Update -EINVAL to -ENODATA and add PM runtime function.
- Add ".probe_type = PROBE_PREFER_ASYNCHRONOUS,".
- Update eic7700_pcie_perst_deassert function name to
eic7700_pcie_perst_reset.
- Update readw to dw_pcie_readw_dbi function.
- Add comments above reset_control_bulk_deassert function.
- Updates: pcie-designware.h pcie-designware-host.c
- The ESWIN EIC7700 SoC lacks hardware support for the L2/L3 low-power
link states. It cannot enter the L2/L3 ready state through the
PME_Turn_Off/PME_To_Ack handshake protocol. To address this, add a
no_pme_handshake flag skip PME_Turn_Off broadcast and link state check
code, other driver can reuse this flag if meet the similar situation.
- Link to V6: https://lore.kernel.org/linux-pci/20251120101018.1477-1-zhangsenchuan@eswincomputing.com/
- Link to: https://lore.kernel.org/linux-pci/20251109-remove_cap-v1-3-2208f46f4dc2@oss.qualcomm.com/ [1]
Changes in v6:
- Updates: eswin,eic7700-pcie.yaml
- Add Reviewed-by: Rob Herring (Arm) <robh@kernel.org>.
- Updates: pcie-eic7700.c
- Remove pci_root_ports_have_device function judgment during suspend.
- Remove eic7700_pcie_pme_turn_off and eic7700_pcie_get_ltssm function.
- Add set no_suspport_L2 flag.
- Updates: pcie-designware.h pcie-designware-host.c
- The ESWIN EIC7700 soc does not support enter L2 link state. Therefore
add no_suspport_L2 flag skip PME_Turn_Off broadcast and link state
check code, other driver can reuse this flag if meet the similar
situation.
- Link to V5: https://lore.kernel.org/all/20251110090716.1392-1-zhangsenchuan@eswincomputing.com/
- Link to: https://lore.kernel.org/all/e7plmtwtkkd4ymrt2hkztcqdx4ugfjk64oksjyf6lpi2oui53d@vhuo5occyref/
Changes in v5:
- Updates: eswin,eic7700-pcie.yaml
- Modify reg-names: update mgmt to elbi.
- Modify clock-names: update pclk to phy_reg.
- Modify reset-names: update powerup to pwr.
- Remove powerup modify in "snps,dw-pcie-common.yaml" file.
- Updates: pcie-eic7700.c
- Update the driver submission comment, mention EIC7700 in the
"config PCIE_EIC7700" and in the driver title.
- Update some comments, for examples: "s/PME_TURN_OFF/PME_Turn_Off/",
"s/INTX/INTx/", "s/PERST/PERST#/", "s/perst/PERST#/", "s/id/ID/".
- Update "struct *_pcie" name and function name, add the eic7700 prefix.
- Use PCIEELBI_CTRL0_DEV_TYPE macro and update comment, use FIELD_PREP.
- Add eic7700_pcie_data pointer in struct eic7700_pcie.
- Update .deinit callback function name and removed the dw_pcie_link_up
judgment, add pci_root_ports_have_device function judgment.
- Remove devm_platform_ioremap_resource_byname function get mgmt, use
platform_get_resource_byname function get elbi in "pcie-designware.c".
- Update of_reset_control_get to of_reset_control_get_exclusive, use
devm_reset_control_bulk_get_exclusive function get resets, update use
reset_control_bulk_assert/reset_control_bulk_deassert function.
- Link to V4: https://lore.kernel.org/all/20251030082900.1304-1-zhangsenchuan@eswincomputing.com/
- Link to https://git.kernel.org/pub/scm/linux/kernel/git/pci/pci.git/tree/?h=controller/dwc
Changes in v4:
- Updates: eswin,eic7700-pcie.yaml
- Use snps,dw-pcie.yaml instead pci-host-bridge.yaml.
- Updates: snps,dw-pcie-common.yaml
- Add powerup reset property, our powerup property is somewhat different
from the general attributes defined by Synopsys DWC binding.
- Updates: pcie-eic7700.c
- Update the driver submission comment.
- Alphabetize so the menuconfig entries remain sorted by vendor.
- Update use PCI_CAP_LIST_NEXT_MASK macro.
- Use readl_poll_timeout function.
- Update eswin_pcie_suspend/eswin_pcie_resume name to
eswin_pcie_suspend_noirq/eswin_pcie_resume_noirq.
- PM use dw_pcie_suspend_noirq and dw_pcie_resume_noirq function and add
eswin_pcie_get_ltssm, eswin_pcie_pme_turn_off, eswin_pcie_host_exit
function adapt to PM.
- Link to V3: https://lore.kernel.org/linux-pci/20250923120946.1218-1-zhangsenchuan@eswincomputing.com/
Changes in v3:
- Updates: eswin,eic7700-pcie.yaml
- Based on the last patch yaml file, devicetree separates the root port
node, changing it significantly. Therefore, "Reviewed-by: Krzysztof
Kozlowski <krzysztof.kozlowski@linaro.org>" is not added.
- Clock and reset drivers are under review. In yaml, macro definitions
used in clock and reset can only be replaced by constant values.
- Move the num-lanes and perst resets to the PCIe Root Port node, make
it easier to support multiple Root Ports in future versions of the
hardware.
- Update the num-lanes attribute and modify define num-lanes as decimal.
- Optimize the ranges attribute and clear the relocatable flag (bit 31)
for any regions.
- Update comment: inte~inth are actual interrupts and these names align
with the interrupt names in the hardware IP, inte~inth interrupts
corresponds to Deassert_INTA~Deassert_INTD.
- Add Signed-off-by: Yanghui Ou <ouyanghui@eswincomputing.com>.
- Updates: pcie-eic7700.c
- Update the submission comment and add DWC IP revision, data rate, lane
information.
- Optimize the "config PCIE_EIC7700" configuration.
- Optimize the macro definition, add bitfield definition for the mask,
and remove redundant comments. optimize comments, make use of 80
columns for comments.
- Use the dw_pcie_find_capability function to obtain the offset by
traversing the function list.
- Remove the sets MPS code and configure it by PCI core.
- Alphabetize so the menuconfig entries remain sorted by vendor.
- Configure ESWIN VID:DID for Root Port as the default values are
invalid,and remove the redundant lane config.
- Use reverse Xmas order for all local variables in this driver
- Hardware doesn't support MSI-X but it advertises MSI-X capability, set
a flag and clear it conditionally.
- Resets are all necessary, Update the interface function for resets.
- Since driver does not depend on any parent to power on any resource,
the pm runtime related functions are removed.
- Remove "eswin_pcie_shutdown" function, our comment on the shutdown
function is incorrect. Moreover, when the host powers reboots,it will
enter the shutdown function, we are using host reset and do not need
to assert perst. Therefore, the shutdown function is not necessary.
- remove "eswin_pcie_remove", because it is not safe to remove it during
runtime, and this driver has been modified to builtin_platform_driver
and does not support hot plugging, therefore, the remove function is
not needed.
- The Suspend function adds link state judgment, and for controllers
with active devices, resources cannot be turned off.
- Add Signed-off-by: Yanghui Ou <ouyanghui@eswincomputing.com>.
- Link to V2: https://lore.kernel.org/linux-pci/20250829082021.49-1-zhangsenchuan@eswincomputing.com/
Changes in v2:
- Updates: eswin,eic7700-pcie.yaml
- Optimize the naming of "clock-names" and "reset-names".
- Add a reference to "$ref: /schemas/pci/pci-host-bridge.yaml#".
(The name of the reset attribute in the "snps,dw-pcie-common.yaml"
file is different from our reset attribute and "snps,dw-pcie.yaml"
file cannot be directly referenced)
- Follow DTS coding style to optimize yaml attributes.
- Remove status = "disabled" from yaml.
- Updates: pcie-eic7700.c
- Remove unnecessary imported header files.
- Use dev_err instead of pr_err and remove the WARN_ON function.
- The eswin_evb_socket_power_on function is removed and not supported.
- The eswin_pcie_remove function is placed after the probe function.
- Optimize function alignment.
- Manage the clock using the devm_clk_bulk_get_all_enabled function.
- Handle the release of resources after the dw_pcie_host_init function
call fails.
- Remove the dev_dbg function and remove __exit_p.
- Add support for the system pm function.
- Link to V1: https://lore.kernel.org/all/20250516094057.1300-1-zhangsenchuan@eswincomputing.com/
Senchuan Zhang (2):
dt-bindings: PCI: eic7700: Add Eswin PCIe host controller
PCI: eic7700: Add Eswin PCIe host controller driver
.../bindings/pci/eswin,eic7700-pcie.yaml | 167 ++++++++
drivers/pci/controller/dwc/Kconfig | 11 +
drivers/pci/controller/dwc/Makefile | 1 +
drivers/pci/controller/dwc/pcie-eic7700.c | 393 ++++++++++++++++++
4 files changed, 572 insertions(+)
create mode 100644 Documentation/devicetree/bindings/pci/eswin,eic7700-pcie.yaml
create mode 100644 drivers/pci/controller/dwc/pcie-eic7700.c
--
2.25.1
^ permalink raw reply [flat|nested] 15+ messages in thread
* [PATCH v9 1/2] dt-bindings: PCI: eic7700: Add Eswin PCIe host controller
2025-12-29 11:30 [PATCH v9 0/2] Add driver support for Eswin EIC7700 SoC PCIe controller zhangsenchuan
@ 2025-12-29 11:31 ` zhangsenchuan
2025-12-29 11:32 ` [PATCH v9 2/2] PCI: eic7700: Add Eswin PCIe host controller driver zhangsenchuan
1 sibling, 0 replies; 15+ messages in thread
From: zhangsenchuan @ 2025-12-29 11:31 UTC (permalink / raw)
To: bhelgaas, mani, krzk+dt, conor+dt, lpieralisi, kwilczynski, robh,
p.zabel, jingoohan1, gustavo.pimentel, linux-pci, devicetree,
linux-kernel, christian.bruel, mayank.rana, shradha.t,
krishna.chundru, thippeswamy.havalige, inochiama, Frank.li
Cc: ningyu, linmin, pinkesh.vaghela, ouyanghui, Senchuan Zhang
From: Senchuan Zhang <zhangsenchuan@eswincomputing.com>
Add Device Tree binding documentation for the Eswin EIC7700 PCIe
controller module, the PCIe controller enables the core to correctly
initialize and manage the PCIe bus and connected devices.
Signed-off-by: Yu Ning <ningyu@eswincomputing.com>
Signed-off-by: Yanghui Ou <ouyanghui@eswincomputing.com>
Signed-off-by: Senchuan Zhang <zhangsenchuan@eswincomputing.com>
Reviewed-by: Rob Herring (Arm) <robh@kernel.org>
---
.../bindings/pci/eswin,eic7700-pcie.yaml | 167 ++++++++++++++++++
1 file changed, 167 insertions(+)
create mode 100644 Documentation/devicetree/bindings/pci/eswin,eic7700-pcie.yaml
diff --git a/Documentation/devicetree/bindings/pci/eswin,eic7700-pcie.yaml b/Documentation/devicetree/bindings/pci/eswin,eic7700-pcie.yaml
new file mode 100644
index 000000000000..9c0150834e6d
--- /dev/null
+++ b/Documentation/devicetree/bindings/pci/eswin,eic7700-pcie.yaml
@@ -0,0 +1,167 @@
+# SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause)
+%YAML 1.2
+---
+$id: http://devicetree.org/schemas/pci/eswin,eic7700-pcie.yaml#
+$schema: http://devicetree.org/meta-schemas/core.yaml#
+
+title: Eswin EIC7700 PCIe host controller
+
+maintainers:
+ - Yu Ning <ningyu@eswincomputing.com>
+ - Senchuan Zhang <zhangsenchuan@eswincomputing.com>
+ - Yanghui Ou <ouyanghui@eswincomputing.com>
+
+description:
+ Eswin EIC7700 SoC PCIe root complex controller is based on the Synopsys
+ DesignWare PCIe IP.
+
+properties:
+ compatible:
+ const: eswin,eic7700-pcie
+
+ reg:
+ maxItems: 3
+
+ reg-names:
+ items:
+ - const: dbi
+ - const: config
+ - const: elbi
+
+ ranges:
+ maxItems: 3
+
+ '#interrupt-cells':
+ const: 1
+
+ interrupt-names:
+ items:
+ - const: msi
+ - const: inta
+ - const: intb
+ - const: intc
+ - const: intd
+
+ interrupt-map:
+ maxItems: 4
+
+ interrupt-map-mask:
+ items:
+ - const: 0
+ - const: 0
+ - const: 0
+ - const: 7
+
+ clocks:
+ maxItems: 4
+
+ clock-names:
+ items:
+ - const: mstr
+ - const: dbi
+ - const: phy_reg
+ - const: aux
+
+ resets:
+ maxItems: 2
+
+ reset-names:
+ items:
+ - const: dbi
+ - const: pwr
+
+patternProperties:
+ "^pcie@":
+ type: object
+ $ref: /schemas/pci/pci-pci-bridge.yaml#
+
+ properties:
+ reg:
+ maxItems: 1
+
+ num-lanes:
+ maximum: 4
+
+ resets:
+ maxItems: 1
+
+ reset-names:
+ items:
+ - const: perst
+
+ required:
+ - reg
+ - ranges
+ - num-lanes
+ - resets
+ - reset-names
+
+ unevaluatedProperties: false
+
+required:
+ - compatible
+ - reg
+ - ranges
+ - interrupts
+ - interrupt-names
+ - interrupt-map-mask
+ - interrupt-map
+ - '#interrupt-cells'
+ - clocks
+ - clock-names
+ - resets
+ - reset-names
+
+allOf:
+ - $ref: /schemas/pci/snps,dw-pcie.yaml#
+
+unevaluatedProperties: false
+
+examples:
+ - |
+ soc {
+ #address-cells = <2>;
+ #size-cells = <2>;
+
+ pcie@54000000 {
+ compatible = "eswin,eic7700-pcie";
+ reg = <0x0 0x54000000 0x0 0x4000000>,
+ <0x0 0x40000000 0x0 0x800000>,
+ <0x0 0x50000000 0x0 0x100000>;
+ reg-names = "dbi", "config", "elbi";
+ #address-cells = <3>;
+ #size-cells = <2>;
+ #interrupt-cells = <1>;
+ ranges = <0x01000000 0x0 0x40800000 0x0 0x40800000 0x0 0x800000>,
+ <0x02000000 0x0 0x41000000 0x0 0x41000000 0x0 0xf000000>,
+ <0x43000000 0x80 0x00000000 0x80 0x00000000 0x2 0x00000000>;
+ bus-range = <0x00 0xff>;
+ clocks = <&clock 144>,
+ <&clock 145>,
+ <&clock 146>,
+ <&clock 147>;
+ clock-names = "mstr", "dbi", "phy_reg", "aux";
+ resets = <&reset 97>,
+ <&reset 98>;
+ reset-names = "dbi", "pwr";
+ interrupts = <220>, <179>, <180>, <181>, <182>, <183>, <184>, <185>, <186>;
+ interrupt-names = "msi", "inta", "intb", "intc", "intd";
+ interrupt-parent = <&plic>;
+ interrupt-map-mask = <0x0 0x0 0x0 0x7>;
+ interrupt-map = <0x0 0x0 0x0 0x1 &plic 179>,
+ <0x0 0x0 0x0 0x2 &plic 180>,
+ <0x0 0x0 0x0 0x3 &plic 181>,
+ <0x0 0x0 0x0 0x4 &plic 182>;
+ device_type = "pci";
+ pcie@0 {
+ reg = <0x0 0x0 0x0 0x0 0x0>;
+ #address-cells = <3>;
+ #size-cells = <2>;
+ ranges;
+ device_type = "pci";
+ num-lanes = <4>;
+ resets = <&reset 99>;
+ reset-names = "perst";
+ };
+ };
+ };
--
2.25.1
^ permalink raw reply related [flat|nested] 15+ messages in thread
* [PATCH v9 2/2] PCI: eic7700: Add Eswin PCIe host controller driver
2025-12-29 11:30 [PATCH v9 0/2] Add driver support for Eswin EIC7700 SoC PCIe controller zhangsenchuan
2025-12-29 11:31 ` [PATCH v9 1/2] dt-bindings: PCI: eic7700: Add Eswin PCIe host controller zhangsenchuan
@ 2025-12-29 11:32 ` zhangsenchuan
2025-12-29 12:28 ` Christophe JAILLET
2026-01-05 22:30 ` Bjorn Helgaas
1 sibling, 2 replies; 15+ messages in thread
From: zhangsenchuan @ 2025-12-29 11:32 UTC (permalink / raw)
To: bhelgaas, mani, krzk+dt, conor+dt, lpieralisi, kwilczynski, robh,
p.zabel, jingoohan1, gustavo.pimentel, linux-pci, devicetree,
linux-kernel, christian.bruel, mayank.rana, shradha.t,
krishna.chundru, thippeswamy.havalige, inochiama, Frank.li
Cc: ningyu, linmin, pinkesh.vaghela, ouyanghui, Senchuan Zhang
From: Senchuan Zhang <zhangsenchuan@eswincomputing.com>
Add driver for the Eswin EIC7700 PCIe host controller, which is based on
the DesignWare PCIe core, IP revision 5.96a. The PCIe Gen.3 controller
supports a data rate of 8 GT/s and 4 channels, support INTx and MSI
interrupts.
Signed-off-by: Yu Ning <ningyu@eswincomputing.com>
Signed-off-by: Yanghui Ou <ouyanghui@eswincomputing.com>
Signed-off-by: Senchuan Zhang <zhangsenchuan@eswincomputing.com>
---
drivers/pci/controller/dwc/Kconfig | 11 +
drivers/pci/controller/dwc/Makefile | 1 +
drivers/pci/controller/dwc/pcie-eic7700.c | 393 ++++++++++++++++++++++
3 files changed, 405 insertions(+)
create mode 100644 drivers/pci/controller/dwc/pcie-eic7700.c
diff --git a/drivers/pci/controller/dwc/Kconfig b/drivers/pci/controller/dwc/Kconfig
index 519b59422b47..c837cb5947b6 100644
--- a/drivers/pci/controller/dwc/Kconfig
+++ b/drivers/pci/controller/dwc/Kconfig
@@ -93,6 +93,17 @@ config PCIE_BT1
Enables support for the PCIe controller in the Baikal-T1 SoC to work
in host mode. It's based on the Synopsys DWC PCIe v4.60a IP-core.
+config PCIE_EIC7700
+ tristate "Eswin EIC7700 PCIe controller"
+ depends on ARCH_ESWIN || COMPILE_TEST
+ depends on PCI_MSI
+ select PCIE_DW_HOST
+ help
+ Say Y here if you want PCIe controller support for the Eswin EIC7700.
+ The PCIe controller on EIC7700 is based on DesignWare hardware,
+ enables support for the PCIe controller in the EIC7700 SoC to work in
+ host mode.
+
config PCI_IMX6
bool
diff --git a/drivers/pci/controller/dwc/Makefile b/drivers/pci/controller/dwc/Makefile
index 67ba59c02038..7c5a5186ea83 100644
--- a/drivers/pci/controller/dwc/Makefile
+++ b/drivers/pci/controller/dwc/Makefile
@@ -6,6 +6,7 @@ obj-$(CONFIG_PCIE_DW_EP) += pcie-designware-ep.o
obj-$(CONFIG_PCIE_DW_PLAT) += pcie-designware-plat.o
obj-$(CONFIG_PCIE_AMD_MDB) += pcie-amd-mdb.o
obj-$(CONFIG_PCIE_BT1) += pcie-bt1.o
+obj-$(CONFIG_PCIE_EIC7700) += pcie-eic7700.o
obj-$(CONFIG_PCI_DRA7XX) += pci-dra7xx.o
obj-$(CONFIG_PCI_EXYNOS) += pci-exynos.o
obj-$(CONFIG_PCIE_FU740) += pcie-fu740.o
diff --git a/drivers/pci/controller/dwc/pcie-eic7700.c b/drivers/pci/controller/dwc/pcie-eic7700.c
new file mode 100644
index 000000000000..b9c49805fd2f
--- /dev/null
+++ b/drivers/pci/controller/dwc/pcie-eic7700.c
@@ -0,0 +1,393 @@
+// SPDX-License-Identifier: GPL-2.0
+/*
+ * ESWIN EIC7700 PCIe root complex driver
+ *
+ * Copyright 2025, Beijing ESWIN Computing Technology Co., Ltd.
+ *
+ * Authors: Yu Ning <ningyu@eswincomputing.com>
+ * Senchuan Zhang <zhangsenchuan@eswincomputing.com>
+ * Yanghui Ou <ouyanghui@eswincomputing.com>
+ */
+
+#include <linux/interrupt.h>
+#include <linux/iopoll.h>
+#include <linux/module.h>
+#include <linux/of.h>
+#include <linux/pci.h>
+#include <linux/platform_device.h>
+#include <linux/pm_runtime.h>
+#include <linux/resource.h>
+#include <linux/reset.h>
+#include <linux/types.h>
+
+#include "pcie-designware.h"
+
+/* ELBI registers */
+#define PCIEELBI_CTRL0_OFFSET 0x0
+#define PCIEELBI_STATUS0_OFFSET 0x100
+
+/* LTSSM register fields */
+#define PCIEELBI_APP_LTSSM_ENABLE BIT(5)
+
+/* APP_HOLD_PHY_RST register fields */
+#define PCIEELBI_APP_HOLD_PHY_RST BIT(6)
+
+/* PM_SEL_AUX_CLK register fields */
+#define PCIEELBI_PM_SEL_AUX_CLK BIT(16)
+
+/* DEV_TYPE register fields */
+#define PCIEELBI_CTRL0_DEV_TYPE GENMASK(3, 0)
+
+/* Vendor and device ID value */
+#define PCI_VENDOR_ID_ESWIN 0x1fe1
+#define PCI_DEVICE_ID_ESWIN 0x2030
+
+#define EIC7700_NUM_RSTS ARRAY_SIZE(eic7700_pcie_rsts)
+
+static const char * const eic7700_pcie_rsts[] = {
+ "pwr",
+ "dbi",
+};
+
+struct eic7700_pcie_port {
+ struct list_head list;
+ struct reset_control *perst;
+ int num_lanes;
+};
+
+struct eic7700_pcie {
+ struct dw_pcie pci;
+ struct clk_bulk_data *clks;
+ struct reset_control_bulk_data resets[EIC7700_NUM_RSTS];
+ struct list_head ports;
+ int num_clks;
+};
+
+#define to_eic7700_pcie(x) dev_get_drvdata((x)->dev)
+
+static int eic7700_pcie_start_link(struct dw_pcie *pci)
+{
+ u32 val;
+
+ /* Enable LTSSM */
+ val = readl_relaxed(pci->elbi_base + PCIEELBI_CTRL0_OFFSET);
+ val |= PCIEELBI_APP_LTSSM_ENABLE;
+ writel_relaxed(val, pci->elbi_base + PCIEELBI_CTRL0_OFFSET);
+
+ return 0;
+}
+
+static bool eic7700_pcie_link_up(struct dw_pcie *pci)
+{
+ u16 offset = dw_pcie_find_capability(pci, PCI_CAP_ID_EXP);
+ u16 val = dw_pcie_readw_dbi(pci, offset + PCI_EXP_LNKSTA);
+
+ return val & PCI_EXP_LNKSTA_DLLLA;
+}
+
+static int eic7700_pcie_perst_reset(struct eic7700_pcie_port *port,
+ struct eic7700_pcie *pcie)
+{
+ int ret;
+
+ ret = reset_control_assert(port->perst);
+ if (ret) {
+ dev_err(pcie->pci.dev, "Failed to assert PERST#\n");
+ return ret;
+ }
+
+ /* Ensure that PERST# has been asserted for at least 100 ms */
+ msleep(PCIE_T_PVPERL_MS);
+
+ ret = reset_control_deassert(port->perst);
+ if (ret) {
+ dev_err(pcie->pci.dev, "Failed to deassert PERST#\n");
+ return ret;
+ }
+
+ return 0;
+}
+
+static void eic7700_pcie_assert(struct eic7700_pcie *pcie)
+{
+ struct eic7700_pcie_port *port;
+
+ list_for_each_entry(port, &pcie->ports, list)
+ reset_control_assert(port->perst);
+ reset_control_bulk_assert(EIC7700_NUM_RSTS, pcie->resets);
+}
+
+static int eic7700_pcie_parse_port(struct eic7700_pcie *pcie,
+ struct device_node *node)
+{
+ struct device *dev = pcie->pci.dev;
+ struct eic7700_pcie_port *port;
+
+ port = devm_kzalloc(dev, sizeof(*port), GFP_KERNEL);
+ if (!port)
+ return -ENOMEM;
+
+ port->perst = of_reset_control_get_exclusive(node, "perst");
+ if (IS_ERR(port->perst)) {
+ dev_err(dev, "Failed to get PERST# reset\n");
+ return PTR_ERR(port->perst);
+ }
+
+ /*
+ * TODO: Since the Root Port node is separated out by pcie devicetree,
+ * the DWC core initialization code can't parse the num-lanes attribute
+ * in the Root Port. Before entering the DWC core initialization code,
+ * the platform driver code parses the Root Port node. The EIC7700 only
+ * supports one Root Port node, and the num-lanes attribute is suitable
+ * for the case of one Root Port.
+ */
+ if (!of_property_read_u32(node, "num-lanes", &port->num_lanes))
+ pcie->pci.num_lanes = port->num_lanes;
+
+ INIT_LIST_HEAD(&port->list);
+ list_add_tail(&port->list, &pcie->ports);
+
+ return 0;
+}
+
+static int eic7700_pcie_parse_ports(struct eic7700_pcie *pcie)
+{
+ struct eic7700_pcie_port *port, *tmp;
+ struct device *dev = pcie->pci.dev;
+ int ret;
+
+ for_each_available_child_of_node_scoped(dev->of_node, of_port) {
+ ret = eic7700_pcie_parse_port(pcie, of_port);
+ if (ret)
+ goto err_port;
+ }
+
+ return 0;
+
+err_port:
+ list_for_each_entry_safe(port, tmp, &pcie->ports, list)
+ list_del(&port->list);
+
+ return ret;
+}
+
+static int eic7700_pcie_host_init(struct dw_pcie_rp *pp)
+{
+ struct dw_pcie *pci = to_dw_pcie_from_pp(pp);
+ struct eic7700_pcie *pcie = to_eic7700_pcie(pci);
+ struct eic7700_pcie_port *port;
+ u32 val;
+ int ret;
+
+ pcie->num_clks = devm_clk_bulk_get_all_enabled(pci->dev, &pcie->clks);
+ if (pcie->num_clks < 0)
+ return dev_err_probe(pci->dev, pcie->num_clks,
+ "Failed to get pcie clocks\n");
+
+ /*
+ * The PWR and DBI reset signals are respectively used to reset the
+ * PCIe controller and the DBI register.
+ *
+ * The PERST# signal is a reset signal that simultaneously controls the
+ * PCIe controller, PHY, and Endpoint. Before configuring the PHY, the
+ * PERST# signal must first be deasserted.
+ *
+ * The external reference clock is supplied simultaneously to the PHY
+ * and EP. When the PHY is configurable, the entire chip already has
+ * stable power and reference clock. The PHY will be ready within 20ms
+ * after writing app_hold_phy_rst register bit of ELBI register space.
+ */
+ ret = reset_control_bulk_deassert(EIC7700_NUM_RSTS, pcie->resets);
+ if (ret) {
+ dev_err(pcie->pci.dev, "Failed to deassert resets\n");
+ return ret;
+ }
+
+ /* Configure Root Port type */
+ val = readl_relaxed(pci->elbi_base + PCIEELBI_CTRL0_OFFSET);
+ val &= ~PCIEELBI_CTRL0_DEV_TYPE;
+ val |= FIELD_PREP(PCIEELBI_CTRL0_DEV_TYPE, PCI_EXP_TYPE_ROOT_PORT);
+ writel_relaxed(val, pci->elbi_base + PCIEELBI_CTRL0_OFFSET);
+
+ list_for_each_entry(port, &pcie->ports, list) {
+ ret = eic7700_pcie_perst_reset(port, pcie);
+ if (ret)
+ goto err_perst;
+ }
+
+ /* Configure app_hold_phy_rst */
+ val = readl_relaxed(pci->elbi_base + PCIEELBI_CTRL0_OFFSET);
+ val &= ~PCIEELBI_APP_HOLD_PHY_RST;
+ writel_relaxed(val, pci->elbi_base + PCIEELBI_CTRL0_OFFSET);
+
+ /* The maximum waiting time for the clock switch lock is 20ms */
+ ret = readl_poll_timeout(pci->elbi_base + PCIEELBI_STATUS0_OFFSET, val,
+ !(val & PCIEELBI_PM_SEL_AUX_CLK), 1000,
+ 20000);
+ if (ret) {
+ dev_err(pci->dev, "Timeout waiting for PM_SEL_AUX_CLK ready\n");
+ goto err_phy_init;
+ }
+
+ /*
+ * Configure ESWIN VID:DID for Root Port as the default values are
+ * invalid.
+ */
+ dw_pcie_dbi_ro_wr_en(pci);
+ dw_pcie_writew_dbi(pci, PCI_VENDOR_ID, PCI_VENDOR_ID_ESWIN);
+ dw_pcie_writew_dbi(pci, PCI_DEVICE_ID, PCI_DEVICE_ID_ESWIN);
+ dw_pcie_dbi_ro_wr_dis(pci);
+
+ return 0;
+
+err_phy_init:
+ list_for_each_entry(port, &pcie->ports, list)
+ reset_control_assert(port->perst);
+err_perst:
+ reset_control_bulk_assert(EIC7700_NUM_RSTS, pcie->resets);
+
+ return ret;
+}
+
+static const struct dw_pcie_host_ops eic7700_pcie_host_ops = {
+ .init = eic7700_pcie_host_init,
+};
+
+static const struct dw_pcie_ops dw_pcie_ops = {
+ .start_link = eic7700_pcie_start_link,
+ .link_up = eic7700_pcie_link_up,
+};
+
+static int eic7700_pcie_probe(struct platform_device *pdev)
+{
+ struct eic7700_pcie_port *port, *tmp;
+ struct device *dev = &pdev->dev;
+ struct eic7700_pcie *pcie;
+ struct dw_pcie *pci;
+ int ret, i;
+
+ pcie = devm_kzalloc(dev, sizeof(*pcie), GFP_KERNEL);
+ if (!pcie)
+ return -ENOMEM;
+
+ INIT_LIST_HEAD(&pcie->ports);
+
+ pci = &pcie->pci;
+ pci->dev = dev;
+ pci->ops = &dw_pcie_ops;
+ pci->pp.ops = &eic7700_pcie_host_ops;
+
+ for (i = 0; i < EIC7700_NUM_RSTS; i++)
+ pcie->resets[i].id = eic7700_pcie_rsts[i];
+
+ ret = devm_reset_control_bulk_get_exclusive(dev, EIC7700_NUM_RSTS,
+ pcie->resets);
+ if (ret)
+ return dev_err_probe(dev, ret, "Failed to get resets\n");
+
+ ret = eic7700_pcie_parse_ports(pcie);
+ if (ret)
+ return dev_err_probe(dev, ret, "Failed to parse Root Port\n");
+
+ platform_set_drvdata(pdev, pcie);
+
+ pm_runtime_no_callbacks(dev);
+ devm_pm_runtime_enable(dev);
+ ret = pm_runtime_get_sync(dev);
+ if (ret < 0)
+ goto err_pm_runtime_put;
+
+ ret = dw_pcie_host_init(&pci->pp);
+ if (ret) {
+ dev_err(dev, "Failed to init host\n");
+ goto err_pm_runtime_put;
+ }
+
+ return 0;
+
+err_pm_runtime_put:
+ list_for_each_entry_safe(port, tmp, &pcie->ports, list) {
+ reset_control_put(port->perst);
+ list_del(&port->list);
+ }
+ pm_runtime_put(dev);
+
+ return ret;
+}
+
+static int eic7700_pcie_suspend_noirq(struct device *dev)
+{
+ struct eic7700_pcie *pcie = dev_get_drvdata(dev);
+
+ /*
+ * The ESWIN EIC7700 SoC lacks hardware support for the L2/L3 low-power
+ * link states. It cannot enter the L2/L3 Ready state through the
+ * PME_Turn_Off/PME_To_Ack handshake protocol. To avoid this problem,
+ * the dw_pcie_suspend_noirq API is not used.
+ */
+ eic7700_pcie_assert(pcie);
+ clk_bulk_disable_unprepare(pcie->num_clks, pcie->clks);
+
+ return 0;
+}
+
+static int eic7700_pcie_resume_noirq(struct device *dev)
+{
+ struct eic7700_pcie *pcie = dev_get_drvdata(dev);
+ struct eic7700_pcie_port *port, *tmp;
+ int ret;
+
+ ret = eic7700_pcie_host_init(&pcie->pci.pp);
+ if (ret) {
+ dev_err(dev, "Host init failed: %d\n", ret);
+ goto err_init;
+ }
+
+ ret = dw_pcie_setup_rc(&pcie->pci.pp);
+ if (ret)
+ goto err_setup_rc;
+
+ ret = eic7700_pcie_start_link(&pcie->pci);
+ if (ret)
+ goto err_setup_rc;
+
+ dw_pcie_wait_for_link(&pcie->pci);
+
+ return 0;
+
+err_setup_rc:
+ eic7700_pcie_assert(pcie);
+err_init:
+ list_for_each_entry_safe(port, tmp, &pcie->ports, list) {
+ reset_control_put(port->perst);
+ list_del(&port->list);
+ }
+
+ return ret;
+}
+
+DEFINE_NOIRQ_DEV_PM_OPS(eic7700_pcie_pm, eic7700_pcie_suspend_noirq,
+ eic7700_pcie_resume_noirq);
+
+static const struct of_device_id eic7700_pcie_of_match[] = {
+ { .compatible = "eswin,eic7700-pcie" },
+ {},
+};
+
+static struct platform_driver eic7700_pcie_driver = {
+ .probe = eic7700_pcie_probe,
+ .driver = {
+ .name = "eic7700-pcie",
+ .of_match_table = eic7700_pcie_of_match,
+ .suppress_bind_attrs = true,
+ .pm = &eic7700_pcie_pm,
+ .probe_type = PROBE_PREFER_ASYNCHRONOUS,
+ },
+};
+builtin_platform_driver(eic7700_pcie_driver);
+
+MODULE_DESCRIPTION("Eswin EIC7700 PCIe host controller driver");
+MODULE_AUTHOR("Yu Ning <ningyu@eswincomputing.com>");
+MODULE_AUTHOR("Senchuan Zhang <zhangsenchuan@eswincomputing.com>");
+MODULE_AUTHOR("Yanghui Ou <ouyanghui@eswincomputing.com>");
+MODULE_LICENSE("GPL");
--
2.25.1
^ permalink raw reply related [flat|nested] 15+ messages in thread
* Re: [PATCH v9 2/2] PCI: eic7700: Add Eswin PCIe host controller driver
2025-12-29 11:32 ` [PATCH v9 2/2] PCI: eic7700: Add Eswin PCIe host controller driver zhangsenchuan
@ 2025-12-29 12:28 ` Christophe JAILLET
2025-12-30 12:21 ` zhangsenchuan
2026-01-05 22:30 ` Bjorn Helgaas
1 sibling, 1 reply; 15+ messages in thread
From: Christophe JAILLET @ 2025-12-29 12:28 UTC (permalink / raw)
To: zhangsenchuan, bhelgaas, mani, krzk+dt, conor+dt, lpieralisi,
kwilczynski, robh, p.zabel, jingoohan1, gustavo.pimentel,
linux-pci, devicetree, linux-kernel, christian.bruel, mayank.rana,
shradha.t, krishna.chundru, thippeswamy.havalige, inochiama,
Frank.li
Cc: ningyu, linmin, pinkesh.vaghela, ouyanghui
Le 29/12/2025 à 12:32, zhangsenchuan@eswincomputing.com a écrit :
> From: Senchuan Zhang <zhangsenchuan@eswincomputing.com>
>
> Add driver for the Eswin EIC7700 PCIe host controller, which is based on
> the DesignWare PCIe core, IP revision 5.96a. The PCIe Gen.3 controller
> supports a data rate of 8 GT/s and 4 channels, support INTx and MSI
> interrupts.
>
> Signed-off-by: Yu Ning <ningyu@eswincomputing.com>
> Signed-off-by: Yanghui Ou <ouyanghui@eswincomputing.com>
> Signed-off-by: Senchuan Zhang <zhangsenchuan@eswincomputing.com>
> ---
Hi,
> +static int eic7700_pcie_host_init(struct dw_pcie_rp *pp)
> +{
> + struct dw_pcie *pci = to_dw_pcie_from_pp(pp);
> + struct eic7700_pcie *pcie = to_eic7700_pcie(pci);
> + struct eic7700_pcie_port *port;
> + u32 val;
> + int ret;
> +
> + pcie->num_clks = devm_clk_bulk_get_all_enabled(pci->dev, &pcie->clks);
Is this the correct place to call this function?
eic7700_pcie_host_init() is called from eic7700_pcie_resume_noirq() and
calling a devm function from a resume function is really unusual and is
likely to leak memory.
> + if (pcie->num_clks < 0)
> + return dev_err_probe(pci->dev, pcie->num_clks,
> + "Failed to get pcie clocks\n");
> +
> + /*
> + * The PWR and DBI reset signals are respectively used to reset the
> + * PCIe controller and the DBI register.
> + *
> + * The PERST# signal is a reset signal that simultaneously controls the
> + * PCIe controller, PHY, and Endpoint. Before configuring the PHY, the
> + * PERST# signal must first be deasserted.
> + *
> + * The external reference clock is supplied simultaneously to the PHY
> + * and EP. When the PHY is configurable, the entire chip already has
> + * stable power and reference clock. The PHY will be ready within 20ms
> + * after writing app_hold_phy_rst register bit of ELBI register space.
> + */
> + ret = reset_control_bulk_deassert(EIC7700_NUM_RSTS, pcie->resets);
> + if (ret) {
> + dev_err(pcie->pci.dev, "Failed to deassert resets\n");
> + return ret;
> + }
> +
> + /* Configure Root Port type */
> + val = readl_relaxed(pci->elbi_base + PCIEELBI_CTRL0_OFFSET);
> + val &= ~PCIEELBI_CTRL0_DEV_TYPE;
> + val |= FIELD_PREP(PCIEELBI_CTRL0_DEV_TYPE, PCI_EXP_TYPE_ROOT_PORT);
> + writel_relaxed(val, pci->elbi_base + PCIEELBI_CTRL0_OFFSET);
> +
> + list_for_each_entry(port, &pcie->ports, list) {
> + ret = eic7700_pcie_perst_reset(port, pcie);
> + if (ret)
> + goto err_perst;
> + }
> +
> + /* Configure app_hold_phy_rst */
> + val = readl_relaxed(pci->elbi_base + PCIEELBI_CTRL0_OFFSET);
> + val &= ~PCIEELBI_APP_HOLD_PHY_RST;
> + writel_relaxed(val, pci->elbi_base + PCIEELBI_CTRL0_OFFSET);
> +
> + /* The maximum waiting time for the clock switch lock is 20ms */
> + ret = readl_poll_timeout(pci->elbi_base + PCIEELBI_STATUS0_OFFSET, val,
> + !(val & PCIEELBI_PM_SEL_AUX_CLK), 1000,
> + 20000);
> + if (ret) {
> + dev_err(pci->dev, "Timeout waiting for PM_SEL_AUX_CLK ready\n");
> + goto err_phy_init;
> + }
> +
> + /*
> + * Configure ESWIN VID:DID for Root Port as the default values are
> + * invalid.
> + */
> + dw_pcie_dbi_ro_wr_en(pci);
> + dw_pcie_writew_dbi(pci, PCI_VENDOR_ID, PCI_VENDOR_ID_ESWIN);
> + dw_pcie_writew_dbi(pci, PCI_DEVICE_ID, PCI_DEVICE_ID_ESWIN);
> + dw_pcie_dbi_ro_wr_dis(pci);
> +
> + return 0;
> +
> +err_phy_init:
> + list_for_each_entry(port, &pcie->ports, list)
> + reset_control_assert(port->perst);
> +err_perst:
> + reset_control_bulk_assert(EIC7700_NUM_RSTS, pcie->resets);
> +
> + return ret;
> +}
...
> +DEFINE_NOIRQ_DEV_PM_OPS(eic7700_pcie_pm, eic7700_pcie_suspend_noirq,
> + eic7700_pcie_resume_noirq);
> +
> +static const struct of_device_id eic7700_pcie_of_match[] = {
> + { .compatible = "eswin,eic7700-pcie" },
> + {},
Nitpick: No need for trailing comma after a terminator.
> +};
CJ
^ permalink raw reply [flat|nested] 15+ messages in thread
* Re: Re: [PATCH v9 2/2] PCI: eic7700: Add Eswin PCIe host controller driver
2025-12-29 12:28 ` Christophe JAILLET
@ 2025-12-30 12:21 ` zhangsenchuan
0 siblings, 0 replies; 15+ messages in thread
From: zhangsenchuan @ 2025-12-30 12:21 UTC (permalink / raw)
To: Christophe JAILLET
Cc: bhelgaas, mani, krzk+dt, conor+dt, lpieralisi, kwilczynski, robh,
p.zabel, jingoohan1, gustavo.pimentel, linux-pci, devicetree,
linux-kernel, christian.bruel, mayank.rana, shradha.t,
krishna.chundru, thippeswamy.havalige, inochiama, Frank.li,
ningyu, linmin, pinkesh.vaghela, ouyanghui
> > From: Senchuan Zhang <zhangsenchuan@eswincomputing.com>
> >
> > Add driver for the Eswin EIC7700 PCIe host controller, which is based on
> > the DesignWare PCIe core, IP revision 5.96a. The PCIe Gen.3 controller
> > supports a data rate of 8 GT/s and 4 channels, support INTx and MSI
> > interrupts.
> >
> > Signed-off-by: Yu Ning <ningyu@eswincomputing.com>
> > Signed-off-by: Yanghui Ou <ouyanghui@eswincomputing.com>
> > Signed-off-by: Senchuan Zhang <zhangsenchuan@eswincomputing.com>
> > ---
>
> Hi,
>
> > +static int eic7700_pcie_host_init(struct dw_pcie_rp *pp)
> > +{
> > + struct dw_pcie *pci = to_dw_pcie_from_pp(pp);
> > + struct eic7700_pcie *pcie = to_eic7700_pcie(pci);
> > + struct eic7700_pcie_port *port;
> > + u32 val;
> > + int ret;
> > +
> > + pcie->num_clks = devm_clk_bulk_get_all_enabled(pci->dev, &pcie->clks);
>
> Is this the correct place to call this function?
Thanks for your suggestion.
There may be cases where memory is allocated but not released. I will fix it
in the next patch.
>
> eic7700_pcie_host_init() is called from eic7700_pcie_resume_noirq() and
> calling a devm function from a resume function is really unusual and is
> likely to leak memory.
>
> > + if (pcie->num_clks < 0)
> > + return dev_err_probe(pci->dev, pcie->num_clks,
> > + "Failed to get pcie clocks\n");
> > +
> > + /*
> > + * The PWR and DBI reset signals are respectively used to reset the
> > + * PCIe controller and the DBI register.
> > + *
> > + * The PERST# signal is a reset signal that simultaneously controls the
> > + * PCIe controller, PHY, and Endpoint. Before configuring the PHY, the
> > + * PERST# signal must first be deasserted.
> > + *
> > + * The external reference clock is supplied simultaneously to the PHY
> > + * and EP. When the PHY is configurable, the entire chip already has
> > + * stable power and reference clock. The PHY will be ready within 20ms
> > + * after writing app_hold_phy_rst register bit of ELBI register space.
> > + */
> > + ret = reset_control_bulk_deassert(EIC7700_NUM_RSTS, pcie->resets);
> > + if (ret) {
> > + dev_err(pcie->pci.dev, "Failed to deassert resets\n");
> > + return ret;
> > + }
> > +
> > + /* Configure Root Port type */
> > + val = readl_relaxed(pci->elbi_base + PCIEELBI_CTRL0_OFFSET);
> > + val &= ~PCIEELBI_CTRL0_DEV_TYPE;
> > + val |= FIELD_PREP(PCIEELBI_CTRL0_DEV_TYPE, PCI_EXP_TYPE_ROOT_PORT);
> > + writel_relaxed(val, pci->elbi_base + PCIEELBI_CTRL0_OFFSET);
> > +
> > + list_for_each_entry(port, &pcie->ports, list) {
> > + ret = eic7700_pcie_perst_reset(port, pcie);
> > + if (ret)
> > + goto err_perst;
> > + }
> > +
> > + /* Configure app_hold_phy_rst */
> > + val = readl_relaxed(pci->elbi_base + PCIEELBI_CTRL0_OFFSET);
> > + val &= ~PCIEELBI_APP_HOLD_PHY_RST;
> > + writel_relaxed(val, pci->elbi_base + PCIEELBI_CTRL0_OFFSET);
> > +
> > + /* The maximum waiting time for the clock switch lock is 20ms */
> > + ret = readl_poll_timeout(pci->elbi_base + PCIEELBI_STATUS0_OFFSET, val,
> > + !(val & PCIEELBI_PM_SEL_AUX_CLK), 1000,
> > + 20000);
> > + if (ret) {
> > + dev_err(pci->dev, "Timeout waiting for PM_SEL_AUX_CLK ready\n");
> > + goto err_phy_init;
> > + }
> > +
> > + /*
> > + * Configure ESWIN VID:DID for Root Port as the default values are
> > + * invalid.
> > + */
> > + dw_pcie_dbi_ro_wr_en(pci);
> > + dw_pcie_writew_dbi(pci, PCI_VENDOR_ID, PCI_VENDOR_ID_ESWIN);
> > + dw_pcie_writew_dbi(pci, PCI_DEVICE_ID, PCI_DEVICE_ID_ESWIN);
> > + dw_pcie_dbi_ro_wr_dis(pci);
> > +
> > + return 0;
> > +
> > +err_phy_init:
> > + list_for_each_entry(port, &pcie->ports, list)
> > + reset_control_assert(port->perst);
> > +err_perst:
> > + reset_control_bulk_assert(EIC7700_NUM_RSTS, pcie->resets);
> > +
> > + return ret;
> > +}
>
> ...
>
> > +DEFINE_NOIRQ_DEV_PM_OPS(eic7700_pcie_pm, eic7700_pcie_suspend_noirq,
> > + eic7700_pcie_resume_noirq);
> > +
> > +static const struct of_device_id eic7700_pcie_of_match[] = {
> > + { .compatible = "eswin,eic7700-pcie" },
> > + {},
>
> Nitpick: No need for trailing comma after a terminator.
Okey, thanks.
Kind regards,
Senchuan Zhang
^ permalink raw reply [flat|nested] 15+ messages in thread
* Re: [PATCH v9 2/2] PCI: eic7700: Add Eswin PCIe host controller driver
2025-12-29 11:32 ` [PATCH v9 2/2] PCI: eic7700: Add Eswin PCIe host controller driver zhangsenchuan
2025-12-29 12:28 ` Christophe JAILLET
@ 2026-01-05 22:30 ` Bjorn Helgaas
2026-01-06 12:43 ` zhangsenchuan
1 sibling, 1 reply; 15+ messages in thread
From: Bjorn Helgaas @ 2026-01-05 22:30 UTC (permalink / raw)
To: zhangsenchuan
Cc: bhelgaas, mani, krzk+dt, conor+dt, lpieralisi, kwilczynski, robh,
p.zabel, jingoohan1, gustavo.pimentel, linux-pci, devicetree,
linux-kernel, christian.bruel, mayank.rana, shradha.t,
krishna.chundru, thippeswamy.havalige, inochiama, Frank.li,
ningyu, linmin, pinkesh.vaghela, ouyanghui, Niklas Cassel
[+cc Niklas, list vs array of ports]
On Mon, Dec 29, 2025 at 07:32:07PM +0800, zhangsenchuan@eswincomputing.com wrote:
> From: Senchuan Zhang <zhangsenchuan@eswincomputing.com>
>
> Add driver for the Eswin EIC7700 PCIe host controller, which is based on
> the DesignWare PCIe core, IP revision 5.96a. The PCIe Gen.3 controller
> supports a data rate of 8 GT/s and 4 channels, support INTx and MSI
> interrupts.
> +config PCIE_EIC7700
> + tristate "Eswin EIC7700 PCIe controller"
> +/* Vendor and device ID value */
> +#define PCI_VENDOR_ID_ESWIN 0x1fe1
> +#define PCI_DEVICE_ID_ESWIN 0x2030
Usually the device name is a little more than just the vendor. What
if Eswin ever makes a second device?
> +static int eic7700_pcie_parse_port(struct eic7700_pcie *pcie,
> + struct device_node *node)
> +{
> + struct device *dev = pcie->pci.dev;
> + struct eic7700_pcie_port *port;
> +
> + port = devm_kzalloc(dev, sizeof(*port), GFP_KERNEL);
> + if (!port)
> + return -ENOMEM;
> +
> + port->perst = of_reset_control_get_exclusive(node, "perst");
> + if (IS_ERR(port->perst)) {
> + dev_err(dev, "Failed to get PERST# reset\n");
> + return PTR_ERR(port->perst);
> + }
> +
> + /*
> + * TODO: Since the Root Port node is separated out by pcie devicetree,
> + * the DWC core initialization code can't parse the num-lanes attribute
> + * in the Root Port. Before entering the DWC core initialization code,
> + * the platform driver code parses the Root Port node. The EIC7700 only
> + * supports one Root Port node, and the num-lanes attribute is suitable
> + * for the case of one Root Port.
> + */
> + if (!of_property_read_u32(node, "num-lanes", &port->num_lanes))
> + pcie->pci.num_lanes = port->num_lanes;
> +
> + INIT_LIST_HEAD(&port->list);
> + list_add_tail(&port->list, &pcie->ports);
Niklas raised an interesting question about whether a list or an array
is the best data structure for the set of Root Ports:
https://lore.kernel.org/r/aVvkmkd5mWPmxeiS@ryzen
Might have to iterate over the child nodes twice (once to count, again
for eic7700_pcie_parse_port()), but otherwise the array is probably
simpler code.
> + return 0;
> +}
> +
> +static int eic7700_pcie_parse_ports(struct eic7700_pcie *pcie)
> +{
> + struct eic7700_pcie_port *port, *tmp;
> + struct device *dev = pcie->pci.dev;
> + int ret;
> +
> + for_each_available_child_of_node_scoped(dev->of_node, of_port) {
> + ret = eic7700_pcie_parse_port(pcie, of_port);
> + if (ret)
> + goto err_port;
> + }
> +
> + return 0;
> +
> +err_port:
> + list_for_each_entry_safe(port, tmp, &pcie->ports, list)
> + list_del(&port->list);
Is some kind of reset_control_put() needed to match the
of_reset_control_get_exclusive() above?
> +static struct platform_driver eic7700_pcie_driver = {
> + .probe = eic7700_pcie_probe,
This driver is tristate but has no .remove() callback. Seems like it
should have one?
> + .driver = {
> + .name = "eic7700-pcie",
> + .of_match_table = eic7700_pcie_of_match,
> + .suppress_bind_attrs = true,
> + .pm = &eic7700_pcie_pm,
> + .probe_type = PROBE_PREFER_ASYNCHRONOUS,
> + },
> +};
> +builtin_platform_driver(eic7700_pcie_driver);
^ permalink raw reply [flat|nested] 15+ messages in thread
* Re: Re: [PATCH v9 2/2] PCI: eic7700: Add Eswin PCIe host controller driver
2026-01-05 22:30 ` Bjorn Helgaas
@ 2026-01-06 12:43 ` zhangsenchuan
2026-01-06 13:19 ` Manivannan Sadhasivam
0 siblings, 1 reply; 15+ messages in thread
From: zhangsenchuan @ 2026-01-06 12:43 UTC (permalink / raw)
To: Bjorn Helgaas
Cc: bhelgaas, mani, krzk+dt, conor+dt, lpieralisi, kwilczynski, robh,
p.zabel, jingoohan1, gustavo.pimentel, linux-pci, devicetree,
linux-kernel, christian.bruel, mayank.rana, shradha.t,
krishna.chundru, thippeswamy.havalige, inochiama, Frank.li,
ningyu, linmin, pinkesh.vaghela, ouyanghui, Niklas Cassel
> Subject: Re: [PATCH v9 2/2] PCI: eic7700: Add Eswin PCIe host controller driver
>
> [+cc Niklas, list vs array of ports]
>
> On Mon, Dec 29, 2025 at 07:32:07PM +0800, zhangsenchuan@eswincomputing.com wrote:
> > From: Senchuan Zhang <zhangsenchuan@eswincomputing.com>
> >
> > Add driver for the Eswin EIC7700 PCIe host controller, which is based on
> > the DesignWare PCIe core, IP revision 5.96a. The PCIe Gen.3 controller
> > supports a data rate of 8 GT/s and 4 channels, support INTx and MSI
> > interrupts.
>
> > +config PCIE_EIC7700
> > + tristate "Eswin EIC7700 PCIe controller"
>
> > +/* Vendor and device ID value */
> > +#define PCI_VENDOR_ID_ESWIN 0x1fe1
> > +#define PCI_DEVICE_ID_ESWIN 0x2030
>
> Usually the device name is a little more than just the vendor. What
> if Eswin ever makes a second device?
Okey, thanks.
Perhaps it's a problem. Maybe PCI_DEVICE_ID_EIC7700 is better?
>
> > +static int eic7700_pcie_parse_port(struct eic7700_pcie *pcie,
> > + struct device_node *node)
> > +{
> > + struct device *dev = pcie->pci.dev;
> > + struct eic7700_pcie_port *port;
> > +
> > + port = devm_kzalloc(dev, sizeof(*port), GFP_KERNEL);
> > + if (!port)
> > + return -ENOMEM;
> > +
> > + port->perst = of_reset_control_get_exclusive(node, "perst");
> > + if (IS_ERR(port->perst)) {
> > + dev_err(dev, "Failed to get PERST# reset\n");
> > + return PTR_ERR(port->perst);
> > + }
> > +
> > + /*
> > + * TODO: Since the Root Port node is separated out by pcie devicetree,
> > + * the DWC core initialization code can't parse the num-lanes attribute
> > + * in the Root Port. Before entering the DWC core initialization code,
> > + * the platform driver code parses the Root Port node. The EIC7700 only
> > + * supports one Root Port node, and the num-lanes attribute is suitable
> > + * for the case of one Root Port.
> > + */
> > + if (!of_property_read_u32(node, "num-lanes", &port->num_lanes))
> > + pcie->pci.num_lanes = port->num_lanes;
> > +
> > + INIT_LIST_HEAD(&port->list);
> > + list_add_tail(&port->list, &pcie->ports);
>
> Niklas raised an interesting question about whether a list or an array
> is the best data structure for the set of Root Ports:
>
> https://lore.kernel.org/r/aVvkmkd5mWPmxeiS@ryzen
>
> Might have to iterate over the child nodes twice (once to count, again
> for eic7700_pcie_parse_port()), but otherwise the array is probably
> simpler code.
After reading patch's comments, lists and arrays seem to be good choices,
I don't have any particularly good ideas for the time being. Anyway, this
is a very good patch that supports multiple Root Ports resolutions.
>
> > + return 0;
> > +}
> > +
> > +static int eic7700_pcie_parse_ports(struct eic7700_pcie *pcie)
> > +{
> > + struct eic7700_pcie_port *port, *tmp;
> > + struct device *dev = pcie->pci.dev;
> > + int ret;
> > +
> > + for_each_available_child_of_node_scoped(dev->of_node, of_port) {
> > + ret = eic7700_pcie_parse_port(pcie, of_port);
> > + if (ret)
> > + goto err_port;
> > + }
> > +
> > + return 0;
> > +
> > +err_port:
> > + list_for_each_entry_safe(port, tmp, &pcie->ports, list)
> > + list_del(&port->list);
>
> Is some kind of reset_control_put() needed to match the
> of_reset_control_get_exclusive() above?
I only considered that there is currently only one Root Port. Maybe
there will be multiple Root Ports in the future.
Perhaps this is the best:
list_for_each_entry_safe(port, tmp, &pcie->ports, list){
if (!IS_ERR_OR_NULL(port->perst))
reset_control_put(port->perst);
list_del(&port->list);
}
>
> > +static struct platform_driver eic7700_pcie_driver = {
> > + .probe = eic7700_pcie_probe,
>
> This driver is tristate but has no .remove() callback. Seems like it
> should have one?
In v2 patch, I referred to Mani's comments and removed the .remove()
callback, as follows:
"Since this controller implements irqchip using the DWC core driver,
it is not safe to remove it during runtime."
https://lore.kernel.org/linux-pci/jghozurjqyhmtunivotitgs67h6xo4sb46qcycnbbwyvjcm4ek@vgq75olazmoi/
In addition, remove .remove() callback, because this driver has been
modified to builtin_platform_driver and does not support HotPlug,
therefore, the .remove() callback is not needed. Do you have any
better suggestions?
Kind regards,
Senchuan Zhang
>
> > + .driver = {
> > + .name = "eic7700-pcie",
> > + .of_match_table = eic7700_pcie_of_match,
> > + .suppress_bind_attrs = true,
> > + .pm = &eic7700_pcie_pm,
> > + .probe_type = PROBE_PREFER_ASYNCHRONOUS,
> > + },
> > +};
> > +builtin_platform_driver(eic7700_pcie_driver);
^ permalink raw reply [flat|nested] 15+ messages in thread
* Re: [PATCH v9 2/2] PCI: eic7700: Add Eswin PCIe host controller driver
2026-01-06 12:43 ` zhangsenchuan
@ 2026-01-06 13:19 ` Manivannan Sadhasivam
2026-01-06 17:43 ` Bjorn Helgaas
2026-01-09 11:23 ` zhangsenchuan
0 siblings, 2 replies; 15+ messages in thread
From: Manivannan Sadhasivam @ 2026-01-06 13:19 UTC (permalink / raw)
To: zhangsenchuan
Cc: Bjorn Helgaas, bhelgaas, krzk+dt, conor+dt, lpieralisi,
kwilczynski, robh, p.zabel, jingoohan1, gustavo.pimentel,
linux-pci, devicetree, linux-kernel, christian.bruel, mayank.rana,
shradha.t, krishna.chundru, thippeswamy.havalige, inochiama,
Frank.li, ningyu, linmin, pinkesh.vaghela, ouyanghui,
Niklas Cassel
On Tue, Jan 06, 2026 at 08:43:11PM +0800, zhangsenchuan wrote:
> > Subject: Re: [PATCH v9 2/2] PCI: eic7700: Add Eswin PCIe host controller driver
> >
> > [+cc Niklas, list vs array of ports]
> >
> > On Mon, Dec 29, 2025 at 07:32:07PM +0800, zhangsenchuan@eswincomputing.com wrote:
> > > From: Senchuan Zhang <zhangsenchuan@eswincomputing.com>
> > >
> > > Add driver for the Eswin EIC7700 PCIe host controller, which is based on
> > > the DesignWare PCIe core, IP revision 5.96a. The PCIe Gen.3 controller
> > > supports a data rate of 8 GT/s and 4 channels, support INTx and MSI
> > > interrupts.
> >
> > > +config PCIE_EIC7700
> > > + tristate "Eswin EIC7700 PCIe controller"
> >
> > > +/* Vendor and device ID value */
> > > +#define PCI_VENDOR_ID_ESWIN 0x1fe1
> > > +#define PCI_DEVICE_ID_ESWIN 0x2030
> >
> > Usually the device name is a little more than just the vendor. What
> > if Eswin ever makes a second device?
>
> Okey, thanks.
> Perhaps it's a problem. Maybe PCI_DEVICE_ID_EIC7700 is better?
>
> >
> > > +static int eic7700_pcie_parse_port(struct eic7700_pcie *pcie,
> > > + struct device_node *node)
> > > +{
> > > + struct device *dev = pcie->pci.dev;
> > > + struct eic7700_pcie_port *port;
> > > +
> > > + port = devm_kzalloc(dev, sizeof(*port), GFP_KERNEL);
> > > + if (!port)
> > > + return -ENOMEM;
> > > +
> > > + port->perst = of_reset_control_get_exclusive(node, "perst");
> > > + if (IS_ERR(port->perst)) {
> > > + dev_err(dev, "Failed to get PERST# reset\n");
> > > + return PTR_ERR(port->perst);
> > > + }
> > > +
> > > + /*
> > > + * TODO: Since the Root Port node is separated out by pcie devicetree,
> > > + * the DWC core initialization code can't parse the num-lanes attribute
> > > + * in the Root Port. Before entering the DWC core initialization code,
> > > + * the platform driver code parses the Root Port node. The EIC7700 only
> > > + * supports one Root Port node, and the num-lanes attribute is suitable
> > > + * for the case of one Root Port.
> > > + */
> > > + if (!of_property_read_u32(node, "num-lanes", &port->num_lanes))
> > > + pcie->pci.num_lanes = port->num_lanes;
> > > +
> > > + INIT_LIST_HEAD(&port->list);
> > > + list_add_tail(&port->list, &pcie->ports);
> >
> > Niklas raised an interesting question about whether a list or an array
> > is the best data structure for the set of Root Ports:
> >
> > https://lore.kernel.org/r/aVvkmkd5mWPmxeiS@ryzen
> >
> > Might have to iterate over the child nodes twice (once to count, again
> > for eic7700_pcie_parse_port()), but otherwise the array is probably
> > simpler code.
>
> After reading patch's comments, lists and arrays seem to be good choices,
> I don't have any particularly good ideas for the time being. Anyway, this
> is a very good patch that supports multiple Root Ports resolutions.
>
I still prefer using lists for the reasons mentioned in that thread.
> >
> > > + return 0;
> > > +}
> > > +
> > > +static int eic7700_pcie_parse_ports(struct eic7700_pcie *pcie)
> > > +{
> > > + struct eic7700_pcie_port *port, *tmp;
> > > + struct device *dev = pcie->pci.dev;
> > > + int ret;
> > > +
> > > + for_each_available_child_of_node_scoped(dev->of_node, of_port) {
> > > + ret = eic7700_pcie_parse_port(pcie, of_port);
> > > + if (ret)
> > > + goto err_port;
> > > + }
> > > +
> > > + return 0;
> > > +
> > > +err_port:
> > > + list_for_each_entry_safe(port, tmp, &pcie->ports, list)
> > > + list_del(&port->list);
> >
> > Is some kind of reset_control_put() needed to match the
> > of_reset_control_get_exclusive() above?
>
> I only considered that there is currently only one Root Port. Maybe
> there will be multiple Root Ports in the future.
>
> Perhaps this is the best:
> list_for_each_entry_safe(port, tmp, &pcie->ports, list){
> if (!IS_ERR_OR_NULL(port->perst))
You don't need this check since reset_control_put() does it for you.
> reset_control_put(port->perst);
> list_del(&port->list);
> }
>
> >
> > > +static struct platform_driver eic7700_pcie_driver = {
> > > + .probe = eic7700_pcie_probe,
> >
> > This driver is tristate but has no .remove() callback. Seems like it
> > should have one?
>
> In v2 patch, I referred to Mani's comments and removed the .remove()
> callback, as follows:
> "Since this controller implements irqchip using the DWC core driver,
> it is not safe to remove it during runtime."
> https://lore.kernel.org/linux-pci/jghozurjqyhmtunivotitgs67h6xo4sb46qcycnbbwyvjcm4ek@vgq75olazmoi/
>
> In addition, remove .remove() callback, because this driver has been
> modified to builtin_platform_driver and does not support HotPlug,
> therefore, the .remove() callback is not needed. Do you have any
> better suggestions?
>
Yes, builtin_platform_driver() wouldn't allow the users to remove the module. So
remove() callback will become useless. The reason why this driver is tristate is
that it could be loaded from rootfs and not always statically built to the
kernel image.
- Mani
--
மணிவண்ணன் சதாசிவம்
^ permalink raw reply [flat|nested] 15+ messages in thread
* Re: [PATCH v9 2/2] PCI: eic7700: Add Eswin PCIe host controller driver
2026-01-06 13:19 ` Manivannan Sadhasivam
@ 2026-01-06 17:43 ` Bjorn Helgaas
2026-01-09 11:22 ` zhangsenchuan
2026-01-21 12:51 ` Manivannan Sadhasivam
2026-01-09 11:23 ` zhangsenchuan
1 sibling, 2 replies; 15+ messages in thread
From: Bjorn Helgaas @ 2026-01-06 17:43 UTC (permalink / raw)
To: Manivannan Sadhasivam
Cc: zhangsenchuan, bhelgaas, krzk+dt, conor+dt, lpieralisi,
kwilczynski, robh, p.zabel, jingoohan1, gustavo.pimentel,
linux-pci, devicetree, linux-kernel, christian.bruel, mayank.rana,
shradha.t, krishna.chundru, thippeswamy.havalige, inochiama,
Frank.li, ningyu, linmin, pinkesh.vaghela, ouyanghui,
Niklas Cassel
On Tue, Jan 06, 2026 at 06:49:58PM +0530, Manivannan Sadhasivam wrote:
> On Tue, Jan 06, 2026 at 08:43:11PM +0800, zhangsenchuan wrote:
> > > On Mon, Dec 29, 2025 at 07:32:07PM +0800, zhangsenchuan@eswincomputing.com wrote:
> > > > From: Senchuan Zhang <zhangsenchuan@eswincomputing.com>
> > > >
> > > > Add driver for the Eswin EIC7700 PCIe host controller, which is based on
> > > > the DesignWare PCIe core, IP revision 5.96a. The PCIe Gen.3 controller
> > > > supports a data rate of 8 GT/s and 4 channels, support INTx and MSI
> > > > interrupts.
> > >
> > > > +config PCIE_EIC7700
> > > > + tristate "Eswin EIC7700 PCIe controller"
> > >
> > > > +/* Vendor and device ID value */
> > > > +#define PCI_VENDOR_ID_ESWIN 0x1fe1
> > > > +#define PCI_DEVICE_ID_ESWIN 0x2030
> > >
> > > Usually the device name is a little more than just the vendor. What
> > > if Eswin ever makes a second device?
> >
> > Okey, thanks.
> > Perhaps it's a problem. Maybe PCI_DEVICE_ID_EIC7700 is better?
Check pci_ids.h and follow the style used there. Device ID macros
typically include both the vendor and the device.
> > > > +static struct platform_driver eic7700_pcie_driver = {
> > > > + .probe = eic7700_pcie_probe,
> > >
> > > This driver is tristate but has no .remove() callback. Seems like it
> > > should have one?
> >
> > In v2 patch, I referred to Mani's comments and removed the .remove()
> > callback, as follows:
> > "Since this controller implements irqchip using the DWC core driver,
> > it is not safe to remove it during runtime."
> > https://lore.kernel.org/linux-pci/jghozurjqyhmtunivotitgs67h6xo4sb46qcycnbbwyvjcm4ek@vgq75olazmoi/
> >
> > In addition, remove .remove() callback, because this driver has been
> > modified to builtin_platform_driver and does not support HotPlug,
> > therefore, the .remove() callback is not needed. Do you have any
> > better suggestions?
>
> Yes, builtin_platform_driver() wouldn't allow the users to remove
> the module. So remove() callback will become useless. The reason why
> this driver is tristate is that it could be loaded from rootfs and
> not always statically built to the kernel image.
This .remove() vs IRQ thing is a perennial issue and it's hard to know
what style new drivers should copy.
There are lots of DWC-based drivers that are tristate, implement
.remove(), and use module_platform_driver() (e.g., bt1, kirin,
tegra194, rcar-gen4, exynos, k1, stm32). Is there something different
about the way they implement irqchip that makes .remove() safe?
^ permalink raw reply [flat|nested] 15+ messages in thread
* Re: Re: [PATCH v9 2/2] PCI: eic7700: Add Eswin PCIe host controller driver
2026-01-06 17:43 ` Bjorn Helgaas
@ 2026-01-09 11:22 ` zhangsenchuan
2026-01-21 12:00 ` zhangsenchuan
2026-01-21 13:08 ` Manivannan Sadhasivam
2026-01-21 12:51 ` Manivannan Sadhasivam
1 sibling, 2 replies; 15+ messages in thread
From: zhangsenchuan @ 2026-01-09 11:22 UTC (permalink / raw)
To: Bjorn Helgaas
Cc: Manivannan Sadhasivam, bhelgaas, krzk+dt, conor+dt, lpieralisi,
kwilczynski, robh, p.zabel, jingoohan1, gustavo.pimentel,
linux-pci, devicetree, linux-kernel, christian.bruel, mayank.rana,
shradha.t, krishna.chundru, thippeswamy.havalige, inochiama,
Frank.li, ningyu, linmin, pinkesh.vaghela, ouyanghui,
Niklas Cassel
> > On Tue, Jan 06, 2026 at 08:43:11PM +0800, zhangsenchuan wrote:
> > > > On Mon, Dec 29, 2025 at 07:32:07PM +0800, zhangsenchuan@eswincomputing.com wrote:
> > > > > From: Senchuan Zhang <zhangsenchuan@eswincomputing.com>
> > > > >
> > > > > Add driver for the Eswin EIC7700 PCIe host controller, which is based on
> > > > > the DesignWare PCIe core, IP revision 5.96a. The PCIe Gen.3 controller
> > > > > supports a data rate of 8 GT/s and 4 channels, support INTx and MSI
> > > > > interrupts.
> > > >
> > > > > +config PCIE_EIC7700
> > > > > + tristate "Eswin EIC7700 PCIe controller"
> > > >
> > > > > +/* Vendor and device ID value */
> > > > > +#define PCI_VENDOR_ID_ESWIN 0x1fe1
> > > > > +#define PCI_DEVICE_ID_ESWIN 0x2030
> > > >
> > > > Usually the device name is a little more than just the vendor. What
> > > > if Eswin ever makes a second device?
> > >
> > > Okey, thanks.
> > > Perhaps it's a problem. Maybe PCI_DEVICE_ID_EIC7700 is better?
>
> Check pci_ids.h and follow the style used there. Device ID macros
> typically include both the vendor and the device.
Okey, thanks.
>
> > > > > +static struct platform_driver eic7700_pcie_driver = {
> > > > > + .probe = eic7700_pcie_probe,
> > > >
> > > > This driver is tristate but has no .remove() callback. Seems like it
> > > > should have one?
> > >
> > > In v2 patch, I referred to Mani's comments and removed the .remove()
> > > callback, as follows:
> > > "Since this controller implements irqchip using the DWC core driver,
> > > it is not safe to remove it during runtime."
> > > https://lore.kernel.org/linux-pci/jghozurjqyhmtunivotitgs67h6xo4sb46qcycnbbwyvjcm4ek@vgq75olazmoi/
> > >
> > > In addition, remove .remove() callback, because this driver has been
> > > modified to builtin_platform_driver and does not support HotPlug,
> > > therefore, the .remove() callback is not needed. Do you have any
> > > better suggestions?
> >
> > Yes, builtin_platform_driver() wouldn't allow the users to remove
> > the module. So remove() callback will become useless. The reason why
> > this driver is tristate is that it could be loaded from rootfs and
> > not always statically built to the kernel image.
>
> This .remove() vs IRQ thing is a perennial issue and it's hard to know
> what style new drivers should copy.
>
> There are lots of DWC-based drivers that are tristate, implement
> .remove(), and use module_platform_driver() (e.g., bt1, kirin,
> tegra194, rcar-gen4, exynos, k1, stm32). Is there something different
> about the way they implement irqchip that makes .remove() safe?
Hi Bjorn, Mani,
The comments are as follows:
"You can make it tristate as you've used builtin_platform_driver() which
guarantees that this driver won't be removed once loaded."
https://lore.kernel.org/linux-pci/uijg47suvluvamftyxwc65kl34eo2eu2af2o5aia4nu45hanqc@grcr2bjgph2i/
Do not add the remove callback. It needs to be set to a bool:
In v6 patch, it was mentioned to set tristate. Now, after careful
consideration, setting tristate can allow loading as a module, but the
driver implementation does not have a remove function. If it exists in
the form of a module, after testing, When insmod driver is followed by
rmmod driver, the resources cannot be released, and problems will occur
when insmod driver is used again. So I think that if the remove callback
function is not provided in the form of builtin, it can only be set to
bool.
Add the remove callback. It can make it tristate:
Questions about removing it during runtime. I don't have a very good idea.
I still don't quite understand why it's not safe. Could you explain it to
me?
At present, refer to other manufacturers, i think there are two ways to
achieve it.
1.Set a bool. Do not add the remove function, module loading is not
allowed, and the driver currently does not support HotPlug.
2.Set a tristate, add .remove callback.
I think the first one might be better for me, because there is no need
to add the remove function, my understanding might also be incorrect.
Please review it for me. Thanks!
Kind regards,
Senchuan
^ permalink raw reply [flat|nested] 15+ messages in thread
* Re: Re: [PATCH v9 2/2] PCI: eic7700: Add Eswin PCIe host controller driver
2026-01-06 13:19 ` Manivannan Sadhasivam
2026-01-06 17:43 ` Bjorn Helgaas
@ 2026-01-09 11:23 ` zhangsenchuan
1 sibling, 0 replies; 15+ messages in thread
From: zhangsenchuan @ 2026-01-09 11:23 UTC (permalink / raw)
To: Manivannan Sadhasivam
Cc: Bjorn Helgaas, bhelgaas, krzk+dt, conor+dt, lpieralisi,
kwilczynski, robh, p.zabel, jingoohan1, gustavo.pimentel,
linux-pci, devicetree, linux-kernel, christian.bruel, mayank.rana,
shradha.t, krishna.chundru, thippeswamy.havalige, inochiama,
Frank.li, ningyu, linmin, pinkesh.vaghela, ouyanghui,
Niklas Cassel, sumit.kumar
+cc Sumit
> On Tue, Jan 06, 2026 at 08:43:11PM +0800, zhangsenchuan wrote:
> > > Subject: Re: [PATCH v9 2/2] PCI: eic7700: Add Eswin PCIe host controller driver
> > >
> > > [+cc Niklas, list vs array of ports]
> > >
> > > On Mon, Dec 29, 2025 at 07:32:07PM +0800, zhangsenchuan@eswincomputing.com wrote:
> > > > From: Senchuan Zhang <zhangsenchuan@eswincomputing.com>
> > > >
> > > > Add driver for the Eswin EIC7700 PCIe host controller, which is based on
> > > > the DesignWare PCIe core, IP revision 5.96a. The PCIe Gen.3 controller
> > > > supports a data rate of 8 GT/s and 4 channels, support INTx and MSI
> > > > interrupts.
> > >
> > > > +static int eic7700_pcie_parse_port(struct eic7700_pcie *pcie,
> > > > + struct device_node *node)
> > > > +{
> > > > + struct device *dev = pcie->pci.dev;
> > > > + struct eic7700_pcie_port *port;
> > > > +
> > > > + port = devm_kzalloc(dev, sizeof(*port), GFP_KERNEL);
> > > > + if (!port)
> > > > + return -ENOMEM;
> > > > +
> > > > + port->perst = of_reset_control_get_exclusive(node, "perst");
> > > > + if (IS_ERR(port->perst)) {
> > > > + dev_err(dev, "Failed to get PERST# reset\n");
> > > > + return PTR_ERR(port->perst);
> > > > + }
> > > > +
> > > > + /*
> > > > + * TODO: Since the Root Port node is separated out by pcie devicetree,
> > > > + * the DWC core initialization code can't parse the num-lanes attribute
> > > > + * in the Root Port. Before entering the DWC core initialization code,
> > > > + * the platform driver code parses the Root Port node. The EIC7700 only
> > > > + * supports one Root Port node, and the num-lanes attribute is suitable
> > > > + * for the case of one Root Port.
> > > > + */
> > > > + if (!of_property_read_u32(node, "num-lanes", &port->num_lanes))
> > > > + pcie->pci.num_lanes = port->num_lanes;
> > > > +
> > > > + INIT_LIST_HEAD(&port->list);
> > > > + list_add_tail(&port->list, &pcie->ports);
> > >
> > > Niklas raised an interesting question about whether a list or an array
> > > is the best data structure for the set of Root Ports:
> > >
> > > https://lore.kernel.org/r/aVvkmkd5mWPmxeiS@ryzen
> > >
> > > Might have to iterate over the child nodes twice (once to count, again
> > > for eic7700_pcie_parse_port()), but otherwise the array is probably
> > > simpler code.
> >
> > After reading patch's comments, lists and arrays seem to be good choices,
> > I don't have any particularly good ideas for the time being. Anyway, this
> > is a very good patch that supports multiple Root Ports resolutions.
> >
>
> I still prefer using lists for the reasons mentioned in that thread.
Lists and arrays do not have too obvious disadvantages. For me, i prefer
to use list. We can use the standard kernel linked list API, which has a
rich set of helper functions. It is developer-friendly and does not require
familiarity with other API.
In addition, I saw that the device nodes "amd,versal2-mdb-host.yaml" and
"sophgo,sg2044-pcie.yaml" have nodes that are not Port. Will this affect
the node traversal?
Kind regards,
Senchuan
>
> > >
> > > > + return 0;
> > > > +}
^ permalink raw reply [flat|nested] 15+ messages in thread
* Re: Re: Re: [PATCH v9 2/2] PCI: eic7700: Add Eswin PCIe host controller driver
2026-01-09 11:22 ` zhangsenchuan
@ 2026-01-21 12:00 ` zhangsenchuan
2026-01-21 13:12 ` Manivannan Sadhasivam
2026-01-21 13:08 ` Manivannan Sadhasivam
1 sibling, 1 reply; 15+ messages in thread
From: zhangsenchuan @ 2026-01-21 12:00 UTC (permalink / raw)
To: Bjorn Helgaas, Manivannan Sadhasivam
Cc: bhelgaas, krzk+dt, conor+dt, lpieralisi, kwilczynski, robh,
p.zabel, jingoohan1, gustavo.pimentel, linux-pci, devicetree,
linux-kernel, christian.bruel, mayank.rana, shradha.t,
krishna.chundru, thippeswamy.havalige, inochiama, Frank.li,
ningyu, linmin, pinkesh.vaghela, ouyanghui, Niklas Cassel
> Subject: Re: Re: [PATCH v9 2/2] PCI: eic7700: Add Eswin PCIe host controller driver
>
> > > On Tue, Jan 06, 2026 at 08:43:11PM +0800, zhangsenchuan wrote:
> > > > > On Mon, Dec 29, 2025 at 07:32:07PM +0800, zhangsenchuan@eswincomputing.com wrote:
> > > > > > From: Senchuan Zhang <zhangsenchuan@eswincomputing.com>
> > > > > >
> > > > > > Add driver for the Eswin EIC7700 PCIe host controller, which is based on
> > > > > > the DesignWare PCIe core, IP revision 5.96a. The PCIe Gen.3 controller
> > > > > > supports a data rate of 8 GT/s and 4 channels, support INTx and MSI
> > > > > > interrupts.
> > > > >
> > > > > > +config PCIE_EIC7700
> > > > > > + tristate "Eswin EIC7700 PCIe controller"
> > > > >
> > > > > > +/* Vendor and device ID value */
> > > > > > +#define PCI_VENDOR_ID_ESWIN 0x1fe1
> > > > > > +#define PCI_DEVICE_ID_ESWIN 0x2030
> > > > >
> > > > > Usually the device name is a little more than just the vendor. What
> > > > > if Eswin ever makes a second device?
> > > >
> > > > Okey, thanks.
> > > > Perhaps it's a problem. Maybe PCI_DEVICE_ID_EIC7700 is better?
> >
> > Check pci_ids.h and follow the style used there. Device ID macros
> > typically include both the vendor and the device.
>
> Okey, thanks.
>
> >
> > > > > > +static struct platform_driver eic7700_pcie_driver = {
> > > > > > + .probe = eic7700_pcie_probe,
> > > > >
> > > > > This driver is tristate but has no .remove() callback. Seems like it
> > > > > should have one?
> > > >
> > > > In v2 patch, I referred to Mani's comments and removed the .remove()
> > > > callback, as follows:
> > > > "Since this controller implements irqchip using the DWC core driver,
> > > > it is not safe to remove it during runtime."
> > > > https://lore.kernel.org/linux-pci/jghozurjqyhmtunivotitgs67h6xo4sb46qcycnbbwyvjcm4ek@vgq75olazmoi/
> > > >
> > > > In addition, remove .remove() callback, because this driver has been
> > > > modified to builtin_platform_driver and does not support HotPlug,
> > > > therefore, the .remove() callback is not needed. Do you have any
> > > > better suggestions?
> > >
> > > Yes, builtin_platform_driver() wouldn't allow the users to remove
> > > the module. So remove() callback will become useless. The reason why
> > > this driver is tristate is that it could be loaded from rootfs and
> > > not always statically built to the kernel image.
> >
> > This .remove() vs IRQ thing is a perennial issue and it's hard to know
> > what style new drivers should copy.
> >
> > There are lots of DWC-based drivers that are tristate, implement
> > .remove(), and use module_platform_driver() (e.g., bt1, kirin,
> > tegra194, rcar-gen4, exynos, k1, stm32). Is there something different
> > about the way they implement irqchip that makes .remove() safe?
>
> Hi Bjorn, Mani,
>
> The comments are as follows:
> "You can make it tristate as you've used builtin_platform_driver() which
> guarantees that this driver won't be removed once loaded."
> https://lore.kernel.org/linux-pci/uijg47suvluvamftyxwc65kl34eo2eu2af2o5aia4nu45hanqc@grcr2bjgph2i/
>
> Do not add the remove callback. It needs to be set to a bool:
> In v6 patch, it was mentioned to set tristate. Now, after careful
> consideration, setting tristate can allow loading as a module, but the
> driver implementation does not have a remove function. If it exists in
> the form of a module, after testing, When insmod driver is followed by
> rmmod driver, the resources cannot be released, and problems will occur
> when insmod driver is used again. So I think that if the remove callback
> function is not provided in the form of builtin, it can only be set to
> bool.
>
> Add the remove callback. It can make it tristate:
> Questions about removing it during runtime. I don't have a very good idea.
> I still don't quite understand why it's not safe. Could you explain it to
> me?
>
> At present, refer to other manufacturers, i think there are two ways to
> achieve it.
> 1.Set a bool. Do not add the remove function, module loading is not
> allowed, and the driver currently does not support HotPlug.
> 2.Set a tristate, add .remove callback.
>
> I think the first one might be better for me, because there is no need
> to add the remove function, my understanding might also be incorrect.
> Please review it for me. Thanks!
>
Hi Bjorn, Mani,
Regarding the issue of whether to add the.remove callback, could you
please help me review it again? Thanks very much!
By the way, for the patch that parses multiple Root Ports, will it be
updated later? Do I need to wait for it to send the next version?
Kind regards,
Senchuan
^ permalink raw reply [flat|nested] 15+ messages in thread
* Re: [PATCH v9 2/2] PCI: eic7700: Add Eswin PCIe host controller driver
2026-01-06 17:43 ` Bjorn Helgaas
2026-01-09 11:22 ` zhangsenchuan
@ 2026-01-21 12:51 ` Manivannan Sadhasivam
1 sibling, 0 replies; 15+ messages in thread
From: Manivannan Sadhasivam @ 2026-01-21 12:51 UTC (permalink / raw)
To: Bjorn Helgaas
Cc: zhangsenchuan, bhelgaas, krzk+dt, conor+dt, lpieralisi,
kwilczynski, robh, p.zabel, jingoohan1, gustavo.pimentel,
linux-pci, devicetree, linux-kernel, christian.bruel, mayank.rana,
shradha.t, krishna.chundru, thippeswamy.havalige, inochiama,
Frank.li, ningyu, linmin, pinkesh.vaghela, ouyanghui,
Niklas Cassel
On Tue, Jan 06, 2026 at 11:43:48AM -0600, Bjorn Helgaas wrote:
> On Tue, Jan 06, 2026 at 06:49:58PM +0530, Manivannan Sadhasivam wrote:
> > On Tue, Jan 06, 2026 at 08:43:11PM +0800, zhangsenchuan wrote:
> > > > On Mon, Dec 29, 2025 at 07:32:07PM +0800, zhangsenchuan@eswincomputing.com wrote:
> > > > > From: Senchuan Zhang <zhangsenchuan@eswincomputing.com>
> > > > >
> > > > > Add driver for the Eswin EIC7700 PCIe host controller, which is based on
> > > > > the DesignWare PCIe core, IP revision 5.96a. The PCIe Gen.3 controller
> > > > > supports a data rate of 8 GT/s and 4 channels, support INTx and MSI
> > > > > interrupts.
> > > >
> > > > > +config PCIE_EIC7700
> > > > > + tristate "Eswin EIC7700 PCIe controller"
> > > >
> > > > > +/* Vendor and device ID value */
> > > > > +#define PCI_VENDOR_ID_ESWIN 0x1fe1
> > > > > +#define PCI_DEVICE_ID_ESWIN 0x2030
> > > >
> > > > Usually the device name is a little more than just the vendor. What
> > > > if Eswin ever makes a second device?
> > >
> > > Okey, thanks.
> > > Perhaps it's a problem. Maybe PCI_DEVICE_ID_EIC7700 is better?
>
> Check pci_ids.h and follow the style used there. Device ID macros
> typically include both the vendor and the device.
>
> > > > > +static struct platform_driver eic7700_pcie_driver = {
> > > > > + .probe = eic7700_pcie_probe,
> > > >
> > > > This driver is tristate but has no .remove() callback. Seems like it
> > > > should have one?
> > >
> > > In v2 patch, I referred to Mani's comments and removed the .remove()
> > > callback, as follows:
> > > "Since this controller implements irqchip using the DWC core driver,
> > > it is not safe to remove it during runtime."
> > > https://lore.kernel.org/linux-pci/jghozurjqyhmtunivotitgs67h6xo4sb46qcycnbbwyvjcm4ek@vgq75olazmoi/
> > >
> > > In addition, remove .remove() callback, because this driver has been
> > > modified to builtin_platform_driver and does not support HotPlug,
> > > therefore, the .remove() callback is not needed. Do you have any
> > > better suggestions?
> >
> > Yes, builtin_platform_driver() wouldn't allow the users to remove
> > the module. So remove() callback will become useless. The reason why
> > this driver is tristate is that it could be loaded from rootfs and
> > not always statically built to the kernel image.
>
> This .remove() vs IRQ thing is a perennial issue and it's hard to know
> what style new drivers should copy.
>
> There are lots of DWC-based drivers that are tristate, implement
> .remove(), and use module_platform_driver() (e.g., bt1, kirin,
> tegra194, rcar-gen4, exynos, k1, stm32). Is there something different
> about the way they implement irqchip that makes .remove() safe?
Yes, there are differences currently. Mostly due to some drivers missed the
IRQ maintainers eyes when they got added (way before my involvement with PCI
controller drivers). I will fix them to maintain uniformity.
But the general undocumented rule is that if the controller driver implement
any irqchip (MSI/MSI-X/INTx), they should not get removed. So they can be
tristate, but builtin_platform_driver(). If they use any external irqchip
controller for receiving interrupts, they can safely be removed. This is the
case for dwc/pcie-stm32.
This prompts me to write the controller driver documentation that I was planning
for a while...
- Mani
--
மணிவண்ணன் சதாசிவம்
^ permalink raw reply [flat|nested] 15+ messages in thread
* Re: [PATCH v9 2/2] PCI: eic7700: Add Eswin PCIe host controller driver
2026-01-09 11:22 ` zhangsenchuan
2026-01-21 12:00 ` zhangsenchuan
@ 2026-01-21 13:08 ` Manivannan Sadhasivam
1 sibling, 0 replies; 15+ messages in thread
From: Manivannan Sadhasivam @ 2026-01-21 13:08 UTC (permalink / raw)
To: zhangsenchuan
Cc: Bjorn Helgaas, bhelgaas, krzk+dt, conor+dt, lpieralisi,
kwilczynski, robh, p.zabel, jingoohan1, gustavo.pimentel,
linux-pci, devicetree, linux-kernel, christian.bruel, mayank.rana,
shradha.t, krishna.chundru, thippeswamy.havalige, inochiama,
Frank.li, ningyu, linmin, pinkesh.vaghela, ouyanghui,
Niklas Cassel
On Fri, Jan 09, 2026 at 07:22:02PM +0800, zhangsenchuan wrote:
> > > On Tue, Jan 06, 2026 at 08:43:11PM +0800, zhangsenchuan wrote:
> > > > > On Mon, Dec 29, 2025 at 07:32:07PM +0800, zhangsenchuan@eswincomputing.com wrote:
> > > > > > From: Senchuan Zhang <zhangsenchuan@eswincomputing.com>
> > > > > >
> > > > > > Add driver for the Eswin EIC7700 PCIe host controller, which is based on
> > > > > > the DesignWare PCIe core, IP revision 5.96a. The PCIe Gen.3 controller
> > > > > > supports a data rate of 8 GT/s and 4 channels, support INTx and MSI
> > > > > > interrupts.
> > > > >
> > > > > > +config PCIE_EIC7700
> > > > > > + tristate "Eswin EIC7700 PCIe controller"
> > > > >
> > > > > > +/* Vendor and device ID value */
> > > > > > +#define PCI_VENDOR_ID_ESWIN 0x1fe1
> > > > > > +#define PCI_DEVICE_ID_ESWIN 0x2030
> > > > >
> > > > > Usually the device name is a little more than just the vendor. What
> > > > > if Eswin ever makes a second device?
> > > >
> > > > Okey, thanks.
> > > > Perhaps it's a problem. Maybe PCI_DEVICE_ID_EIC7700 is better?
> >
> > Check pci_ids.h and follow the style used there. Device ID macros
> > typically include both the vendor and the device.
>
> Okey, thanks.
>
> >
> > > > > > +static struct platform_driver eic7700_pcie_driver = {
> > > > > > + .probe = eic7700_pcie_probe,
> > > > >
> > > > > This driver is tristate but has no .remove() callback. Seems like it
> > > > > should have one?
> > > >
> > > > In v2 patch, I referred to Mani's comments and removed the .remove()
> > > > callback, as follows:
> > > > "Since this controller implements irqchip using the DWC core driver,
> > > > it is not safe to remove it during runtime."
> > > > https://lore.kernel.org/linux-pci/jghozurjqyhmtunivotitgs67h6xo4sb46qcycnbbwyvjcm4ek@vgq75olazmoi/
> > > >
> > > > In addition, remove .remove() callback, because this driver has been
> > > > modified to builtin_platform_driver and does not support HotPlug,
> > > > therefore, the .remove() callback is not needed. Do you have any
> > > > better suggestions?
> > >
> > > Yes, builtin_platform_driver() wouldn't allow the users to remove
> > > the module. So remove() callback will become useless. The reason why
> > > this driver is tristate is that it could be loaded from rootfs and
> > > not always statically built to the kernel image.
> >
> > This .remove() vs IRQ thing is a perennial issue and it's hard to know
> > what style new drivers should copy.
> >
> > There are lots of DWC-based drivers that are tristate, implement
> > .remove(), and use module_platform_driver() (e.g., bt1, kirin,
> > tegra194, rcar-gen4, exynos, k1, stm32). Is there something different
> > about the way they implement irqchip that makes .remove() safe?
>
> Hi Bjorn, Mani,
>
> The comments are as follows:
> "You can make it tristate as you've used builtin_platform_driver() which
> guarantees that this driver won't be removed once loaded."
> https://lore.kernel.org/linux-pci/uijg47suvluvamftyxwc65kl34eo2eu2af2o5aia4nu45hanqc@grcr2bjgph2i/
>
> Do not add the remove callback. It needs to be set to a bool:
> In v6 patch, it was mentioned to set tristate. Now, after careful
> consideration, setting tristate can allow loading as a module, but the
> driver implementation does not have a remove function. If it exists in
> the form of a module, after testing, When insmod driver is followed by
> rmmod driver, the resources cannot be released, and problems will occur
> when insmod driver is used again. So I think that if the remove callback
> function is not provided in the form of builtin, it can only be set to
> bool.
>
> Add the remove callback. It can make it tristate:
> Questions about removing it during runtime. I don't have a very good idea.
> I still don't quite understand why it's not safe. Could you explain it to
> me?
>
It is mostly due to IRQ disposal concern. Kernel's IRQ core gives no guarantee
that all the client drivers requested IRQs would've freed them before the
irqchip drivers like the controller drivers dispose the IRQs in their remove
callback.
More info here: https://lkml.iu.edu/hypermail/linux/kernel/2207.2/08367.html
> At present, refer to other manufacturers, i think there are two ways to
> achieve it.
> 1.Set a bool. Do not add the remove function, module loading is not
> allowed, and the driver currently does not support HotPlug.
> 2.Set a tristate, add .remove callback.
>
> I think the first one might be better for me, because there is no need
> to add the remove function, my understanding might also be incorrect.
> Please review it for me. Thanks!
>
I'd prefer to make it tristate, builtin_platform_driver() and not have
.remove() callback.
- Mani
--
மணிவண்ணன் சதாசிவம்
^ permalink raw reply [flat|nested] 15+ messages in thread
* Re: [PATCH v9 2/2] PCI: eic7700: Add Eswin PCIe host controller driver
2026-01-21 12:00 ` zhangsenchuan
@ 2026-01-21 13:12 ` Manivannan Sadhasivam
0 siblings, 0 replies; 15+ messages in thread
From: Manivannan Sadhasivam @ 2026-01-21 13:12 UTC (permalink / raw)
To: zhangsenchuan
Cc: Bjorn Helgaas, bhelgaas, krzk+dt, conor+dt, lpieralisi,
kwilczynski, robh, p.zabel, jingoohan1, gustavo.pimentel,
linux-pci, devicetree, linux-kernel, christian.bruel, mayank.rana,
shradha.t, krishna.chundru, thippeswamy.havalige, inochiama,
Frank.li, ningyu, linmin, pinkesh.vaghela, ouyanghui,
Niklas Cassel
On Wed, Jan 21, 2026 at 08:00:26PM +0800, zhangsenchuan wrote:
> > Subject: Re: Re: [PATCH v9 2/2] PCI: eic7700: Add Eswin PCIe host controller driver
> >
> > > > On Tue, Jan 06, 2026 at 08:43:11PM +0800, zhangsenchuan wrote:
> > > > > > On Mon, Dec 29, 2025 at 07:32:07PM +0800, zhangsenchuan@eswincomputing.com wrote:
> > > > > > > From: Senchuan Zhang <zhangsenchuan@eswincomputing.com>
> > > > > > >
> > > > > > > Add driver for the Eswin EIC7700 PCIe host controller, which is based on
> > > > > > > the DesignWare PCIe core, IP revision 5.96a. The PCIe Gen.3 controller
> > > > > > > supports a data rate of 8 GT/s and 4 channels, support INTx and MSI
> > > > > > > interrupts.
> > > > > >
> > > > > > > +config PCIE_EIC7700
> > > > > > > + tristate "Eswin EIC7700 PCIe controller"
> > > > > >
> > > > > > > +/* Vendor and device ID value */
> > > > > > > +#define PCI_VENDOR_ID_ESWIN 0x1fe1
> > > > > > > +#define PCI_DEVICE_ID_ESWIN 0x2030
> > > > > >
> > > > > > Usually the device name is a little more than just the vendor. What
> > > > > > if Eswin ever makes a second device?
> > > > >
> > > > > Okey, thanks.
> > > > > Perhaps it's a problem. Maybe PCI_DEVICE_ID_EIC7700 is better?
> > >
> > > Check pci_ids.h and follow the style used there. Device ID macros
> > > typically include both the vendor and the device.
> >
> > Okey, thanks.
> >
> > >
> > > > > > > +static struct platform_driver eic7700_pcie_driver = {
> > > > > > > + .probe = eic7700_pcie_probe,
> > > > > >
> > > > > > This driver is tristate but has no .remove() callback. Seems like it
> > > > > > should have one?
> > > > >
> > > > > In v2 patch, I referred to Mani's comments and removed the .remove()
> > > > > callback, as follows:
> > > > > "Since this controller implements irqchip using the DWC core driver,
> > > > > it is not safe to remove it during runtime."
> > > > > https://lore.kernel.org/linux-pci/jghozurjqyhmtunivotitgs67h6xo4sb46qcycnbbwyvjcm4ek@vgq75olazmoi/
> > > > >
> > > > > In addition, remove .remove() callback, because this driver has been
> > > > > modified to builtin_platform_driver and does not support HotPlug,
> > > > > therefore, the .remove() callback is not needed. Do you have any
> > > > > better suggestions?
> > > >
> > > > Yes, builtin_platform_driver() wouldn't allow the users to remove
> > > > the module. So remove() callback will become useless. The reason why
> > > > this driver is tristate is that it could be loaded from rootfs and
> > > > not always statically built to the kernel image.
> > >
> > > This .remove() vs IRQ thing is a perennial issue and it's hard to know
> > > what style new drivers should copy.
> > >
> > > There are lots of DWC-based drivers that are tristate, implement
> > > .remove(), and use module_platform_driver() (e.g., bt1, kirin,
> > > tegra194, rcar-gen4, exynos, k1, stm32). Is there something different
> > > about the way they implement irqchip that makes .remove() safe?
> >
> > Hi Bjorn, Mani,
> >
> > The comments are as follows:
> > "You can make it tristate as you've used builtin_platform_driver() which
> > guarantees that this driver won't be removed once loaded."
> > https://lore.kernel.org/linux-pci/uijg47suvluvamftyxwc65kl34eo2eu2af2o5aia4nu45hanqc@grcr2bjgph2i/
> >
> > Do not add the remove callback. It needs to be set to a bool:
> > In v6 patch, it was mentioned to set tristate. Now, after careful
> > consideration, setting tristate can allow loading as a module, but the
> > driver implementation does not have a remove function. If it exists in
> > the form of a module, after testing, When insmod driver is followed by
> > rmmod driver, the resources cannot be released, and problems will occur
> > when insmod driver is used again. So I think that if the remove callback
> > function is not provided in the form of builtin, it can only be set to
> > bool.
> >
> > Add the remove callback. It can make it tristate:
> > Questions about removing it during runtime. I don't have a very good idea.
> > I still don't quite understand why it's not safe. Could you explain it to
> > me?
> >
> > At present, refer to other manufacturers, i think there are two ways to
> > achieve it.
> > 1.Set a bool. Do not add the remove function, module loading is not
> > allowed, and the driver currently does not support HotPlug.
> > 2.Set a tristate, add .remove callback.
> >
> > I think the first one might be better for me, because there is no need
> > to add the remove function, my understanding might also be incorrect.
> > Please review it for me. Thanks!
> >
>
> Hi Bjorn, Mani,
>
> Regarding the issue of whether to add the.remove callback, could you
> please help me review it again? Thanks very much!
>
> By the way, for the patch that parses multiple Root Ports, will it be
> updated later? Do I need to wait for it to send the next version?
>
If you are referring to the patch from Sumit [1], then no need to wait for it as
it is not a dependency for this driver.
- Mani
[1] https://lore.kernel.org/all/20260105-dt-parser-v1-0-b11c63cb5e2c@oss.qualcomm.com/
> Kind regards,
> Senchuan
>
--
மணிவண்ணன் சதாசிவம்
^ permalink raw reply [flat|nested] 15+ messages in thread
end of thread, other threads:[~2026-01-21 13:12 UTC | newest]
Thread overview: 15+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2025-12-29 11:30 [PATCH v9 0/2] Add driver support for Eswin EIC7700 SoC PCIe controller zhangsenchuan
2025-12-29 11:31 ` [PATCH v9 1/2] dt-bindings: PCI: eic7700: Add Eswin PCIe host controller zhangsenchuan
2025-12-29 11:32 ` [PATCH v9 2/2] PCI: eic7700: Add Eswin PCIe host controller driver zhangsenchuan
2025-12-29 12:28 ` Christophe JAILLET
2025-12-30 12:21 ` zhangsenchuan
2026-01-05 22:30 ` Bjorn Helgaas
2026-01-06 12:43 ` zhangsenchuan
2026-01-06 13:19 ` Manivannan Sadhasivam
2026-01-06 17:43 ` Bjorn Helgaas
2026-01-09 11:22 ` zhangsenchuan
2026-01-21 12:00 ` zhangsenchuan
2026-01-21 13:12 ` Manivannan Sadhasivam
2026-01-21 13:08 ` Manivannan Sadhasivam
2026-01-21 12:51 ` Manivannan Sadhasivam
2026-01-09 11:23 ` zhangsenchuan
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox