* [PATCH 0/2] PCI hotplug feature @ 2017-08-08 4:44 Oza Pawandeep 2017-08-08 4:44 ` [PATCH 1/2] PCI: iproc: Implement PCI hotplug support Oza Pawandeep 2017-08-08 4:44 ` [PATCH 2/2] PCI: iproc: Add optional brcm,pci-hotplug Oza Pawandeep 0 siblings, 2 replies; 9+ messages in thread From: Oza Pawandeep @ 2017-08-08 4:44 UTC (permalink / raw) To: Bjorn Helgaas, Rob Herring, Mark Rutland, Ray Jui, Scott Branden, Jon Mason, bcm-kernel-feedback-list, Oza Pawandeep, Andy Gospodarek, linux-pci, linux-kernel, Oza Pawandeep These patches bring in PCI hotplug support for iproc family chipsets. It includes DT binding documentation update and, implementation in iproc pcie RC driver. These patch set is made on top of following patches. [PATCH v6 2/2] PCI: iproc: add device shutdown for PCI RC [PATCH v6 1/2] PCI: iproc: Retry request when CRS returned from EP Oza Pawandeep (2): PCI: iproc: Implement PCI hotplug support PCI: iproc: Add optional brcm,pci-hotplug .../devicetree/bindings/pci/brcm,iproc-pcie.txt | 23 ++++ drivers/pci/host/pcie-iproc-platform.c | 3 + drivers/pci/host/pcie-iproc.c | 130 ++++++++++++++++++++- drivers/pci/host/pcie-iproc.h | 7 ++ 4 files changed, 157 insertions(+), 6 deletions(-) -- 1.9.1 ^ permalink raw reply [flat|nested] 9+ messages in thread
* [PATCH 1/2] PCI: iproc: Implement PCI hotplug support 2017-08-08 4:44 [PATCH 0/2] PCI hotplug feature Oza Pawandeep @ 2017-08-08 4:44 ` Oza Pawandeep 2017-08-08 4:44 ` [PATCH 2/2] PCI: iproc: Add optional brcm,pci-hotplug Oza Pawandeep 1 sibling, 0 replies; 9+ messages in thread From: Oza Pawandeep @ 2017-08-08 4:44 UTC (permalink / raw) To: Bjorn Helgaas, Rob Herring, Mark Rutland, Ray Jui, Scott Branden, Jon Mason, bcm-kernel-feedback-list, Oza Pawandeep, Andy Gospodarek, linux-pci, linux-kernel, Oza Pawandeep This patch implements PCI hotplug support for iproc family chipsets. Iproc based SOC (e.g. Stingray) does not have hotplug controller integrated. Hence, standard PCI hotplug framework hooks can-not be used. e.g. controlled power up/down of slot. The mechanism, for e.g. Stingray has adopted for PCI hotplug is as follows: PCI present lines are input to GPIOs depending on the type of connector (x2, x4, x8). GPIO array needs to be present if hotplug is supported. HW implementation is SOC/Board specific, and also it depends on how add-in card is designed (e.g. how many present pins are implemented). If x8 card is connected, then it might be possible that all the 3 present pins could go low, or at least one pin goes low. If x4 card is connected, then it might be possible that 2 present pins go low, or at least one pin goes low. The implementation essentially takes care of following: > Initializing hotplug irq thread. > Detecting the endpoint device based on link state. > Handling PERST and detecting the plugged devices. > Ordered hot plug-out, where User is expected to write 1 to /sys/bus/pci/devices/<pci_dev>/remove > Handling spurious interrupt > Handling multiple interrupts and makes sure that card is enumerated only once. Signed-off-by: Oza Pawandeep <oza.oza@broadcom.com> Reviewed-by: Ray Jui <ray.jui@broadcom.com> diff --git a/drivers/pci/host/pcie-iproc-platform.c b/drivers/pci/host/pcie-iproc-platform.c index 9512960..e51bbd2 100644 --- a/drivers/pci/host/pcie-iproc-platform.c +++ b/drivers/pci/host/pcie-iproc-platform.c @@ -89,6 +89,9 @@ static int iproc_pcie_pltfm_probe(struct platform_device *pdev) pcie->need_ob_cfg = true; } + if (of_property_read_bool(np, "brcm,pci-hotplug")) + pcie->enable_hotplug = true; + /* PHY use is optional */ pcie->phy = devm_phy_get(dev, "pcie-phy"); if (IS_ERR(pcie->phy)) { diff --git a/drivers/pci/host/pcie-iproc.c b/drivers/pci/host/pcie-iproc.c index ee40651..c6d1add 100644 --- a/drivers/pci/host/pcie-iproc.c +++ b/drivers/pci/host/pcie-iproc.c @@ -28,6 +28,7 @@ #include <linux/of_irq.h> #include <linux/of_platform.h> #include <linux/phy/phy.h> +#include <linux/gpio.h> #include "pcie-iproc.h" @@ -65,6 +66,17 @@ #define PCIE_DL_ACTIVE_SHIFT 2 #define PCIE_DL_ACTIVE BIT(PCIE_DL_ACTIVE_SHIFT) +#define CFG_RC_LTSSM 0x1cf8 +#define CFG_RC_PHY_CTL 0x1804 +#define CFG_RC_LTSSM_TIMEOUT 1000 +#define CFG_RC_LTSSM_STATE_MASK 0xff +#define CFG_RC_LTSSM_STATE_L1 0x1 + +#define CFG_RC_CLR_LTSSM_HIST_SHIFT 29 +#define CFG_RC_CLR_LTSSM_HIST_MASK BIT(CFG_RC_CLR_LTSSM_HIST_SHIFT) +#define CFG_RC_CLR_RECOV_HIST_SHIFT 31 +#define CFG_RC_CLR_RECOV_HIST_MASK BIT(CFG_RC_CLR_RECOV_HIST_SHIFT) + #define APB_ERR_EN_SHIFT 0 #define APB_ERR_EN BIT(APB_ERR_EN_SHIFT) @@ -1306,12 +1318,106 @@ static int iproc_pcie_rev_init(struct iproc_pcie *pcie) return 0; } +static bool iproc_pci_hp_check_ltssm(struct iproc_pcie *pcie) +{ + struct pci_bus *bus = pcie->root_bus; + u32 val, timeout = CFG_RC_LTSSM_TIMEOUT; + + /* Clear LTSSM history. */ + pci_bus_read_config_dword(pcie->root_bus, 0, + CFG_RC_PHY_CTL, &val); + pci_bus_write_config_dword(bus, 0, CFG_RC_PHY_CTL, + val | CFG_RC_CLR_RECOV_HIST_MASK | + CFG_RC_CLR_LTSSM_HIST_MASK); + /* write back the origional value. */ + pci_bus_write_config_dword(bus, 0, CFG_RC_PHY_CTL, val); + + do { + pci_bus_read_config_dword(pcie->root_bus, 0, + CFG_RC_LTSSM, &val); + /* check link state to see if link moved to L1 state. */ + if ((val & CFG_RC_LTSSM_STATE_MASK) == + CFG_RC_LTSSM_STATE_L1) + return true; + timeout--; + usleep_range(500, 1000); + } while (timeout); + + return false; +} + +static irqreturn_t iproc_pci_hotplug_thread(int irq, void *data) +{ + struct iproc_pcie *pcie = data; + struct pci_bus *bus = pcie->root_bus, *child; + bool link_status; + + iproc_pcie_perst_ctrl(pcie, true); + iproc_pcie_perst_ctrl(pcie, false); + + link_status = iproc_pci_hp_check_ltssm(pcie); + + if (link_status && + !iproc_pcie_check_link(pcie, bus) && + !pcie->ep_is_present) { + pci_rescan_bus(bus); + list_for_each_entry(child, &bus->children, node) + pcie_bus_configure_settings(child); + pcie->ep_is_present = true; + dev_info(pcie->dev, + "PCI Hotplug: <device detected and enumerated>\n"); + } else if (link_status && pcie->ep_is_present) + /* + * ep_is_present makes sure, enumuration done only once. + * So it can handle spurious intrrupts, and also if we + * get multiple interrupts for all the implemented pins, + * we handle it only once. + */ + dev_info(pcie->dev, + "PCI Hotplug: <device already present>\n"); + else { + iproc_pcie_perst_ctrl(pcie, true); + pcie->ep_is_present = false; + dev_info(pcie->dev, + "PCI Hotplug: <device removed>\n"); + } + return IRQ_HANDLED; +} + +static int iproc_pci_hp_gpio_irq_get(struct iproc_pcie *pcie) +{ + struct gpio_descs *hp_gpiod; + struct device *dev = pcie->dev; + int i; + + hp_gpiod = devm_gpiod_get_array(dev, "brcm,prsnt", GPIOD_IN); + if (PTR_ERR(hp_gpiod) == -EPROBE_DEFER) + return -EPROBE_DEFER; + + if (!IS_ERR(hp_gpiod) && (hp_gpiod->ndescs > 0)) { + for (i = 0; i < hp_gpiod->ndescs; ++i) { + gpiod_direction_input(hp_gpiod->desc[i]); + if (request_threaded_irq(gpiod_to_irq + (hp_gpiod->desc[i]), + NULL, iproc_pci_hotplug_thread, + IRQF_TRIGGER_FALLING, + "PCI-hotplug", pcie)) + dev_err(dev, + "PCI hotplug prsnt: request irq failed\n"); + } + } + pcie->ep_is_present = false; + + return 0; +} + int iproc_pcie_setup(struct iproc_pcie *pcie, struct list_head *res) { struct device *dev; int ret; void *sysdata; struct pci_bus *bus, *child; + bool is_link_active; dev = pcie->dev; @@ -1337,6 +1443,12 @@ int iproc_pcie_setup(struct iproc_pcie *pcie, struct list_head *res) goto err_exit_phy; } + if (pcie->enable_hotplug) { + ret = iproc_pci_hp_gpio_irq_get(pcie); + if (ret < 0) + return ret; + } + iproc_pcie_perst_ctrl(pcie, true); iproc_pcie_perst_ctrl(pcie, false); @@ -1367,8 +1479,11 @@ int iproc_pcie_setup(struct iproc_pcie *pcie, struct list_head *res) } pcie->root_bus = bus; - ret = iproc_pcie_check_link(pcie, bus); - if (ret) { + is_link_active = iproc_pcie_check_link(pcie, bus); + if (is_link_active && pcie->enable_hotplug) { + dev_err(dev, "no PCIe EP device detected\n"); + iproc_pcie_perst_ctrl(pcie, true); + } else if (is_link_active) { dev_err(dev, "no PCIe EP device detected\n"); goto err_rm_root_bus; } @@ -1379,14 +1494,17 @@ int iproc_pcie_setup(struct iproc_pcie *pcie, struct list_head *res) if (iproc_pcie_msi_enable(pcie)) dev_info(dev, "not using iProc MSI\n"); - pci_scan_child_bus(bus); - pci_assign_unassigned_bus_resources(bus); + if (!is_link_active) { + pci_scan_child_bus(bus); + pci_assign_unassigned_bus_resources(bus); + } if (pcie->map_irq) pci_fixup_irqs(pci_common_swizzle, pcie->map_irq); - list_for_each_entry(child, &bus->children, node) - pcie_bus_configure_settings(child); + if (!is_link_active) + list_for_each_entry(child, &bus->children, node) + pcie_bus_configure_settings(child); pci_bus_add_devices(bus); diff --git a/drivers/pci/host/pcie-iproc.h b/drivers/pci/host/pcie-iproc.h index a6b55ce..e5d0cd4 100644 --- a/drivers/pci/host/pcie-iproc.h +++ b/drivers/pci/host/pcie-iproc.h @@ -77,6 +77,10 @@ struct iproc_pcie_ib { * @ib: inbound mapping related parameters * @ib_map: outbound mapping region related parameters * + * @enable_hotplug: indicates PCI hotplug feature is enabled + * @ep_is_present: when PCIe hotplug is enabled, this flag is used to + * indicate whether or not the endpoint device is present + * * @need_msi_steer: indicates additional configuration of the iProc PCIe * controller is required to steer MSI writes to external interrupt controller * @msi: MSI data @@ -104,6 +108,9 @@ struct iproc_pcie { struct iproc_pcie_ib ib; const struct iproc_pcie_ib_map *ib_map; + bool enable_hotplug; + bool ep_is_present; + bool need_msi_steer; struct iproc_msi *msi; }; -- 1.9.1 ^ permalink raw reply related [flat|nested] 9+ messages in thread
* [PATCH 2/2] PCI: iproc: Add optional brcm,pci-hotplug 2017-08-08 4:44 [PATCH 0/2] PCI hotplug feature Oza Pawandeep 2017-08-08 4:44 ` [PATCH 1/2] PCI: iproc: Implement PCI hotplug support Oza Pawandeep @ 2017-08-08 4:44 ` Oza Pawandeep 2017-08-08 14:20 ` Rob Herring 1 sibling, 1 reply; 9+ messages in thread From: Oza Pawandeep @ 2017-08-08 4:44 UTC (permalink / raw) To: Bjorn Helgaas, Rob Herring, Mark Rutland, Ray Jui, Scott Branden, Jon Mason, bcm-kernel-feedback-list, Oza Pawandeep, Andy Gospodarek, linux-pci, linux-kernel, Oza Pawandeep Add description for optional device tree property 'brcm,pci-hotplug' for PCI hotplug feature. Signed-off-by: Oza Pawandeep <oza.oza@broadcom.com> Reviewed-by: Ray Jui <ray.jui@broadcom.com> diff --git a/Documentation/devicetree/bindings/pci/brcm,iproc-pcie.txt b/Documentation/devicetree/bindings/pci/brcm,iproc-pcie.txt index b8e48b4..a3bad24 100644 --- a/Documentation/devicetree/bindings/pci/brcm,iproc-pcie.txt +++ b/Documentation/devicetree/bindings/pci/brcm,iproc-pcie.txt @@ -72,6 +72,29 @@ Optional properties: - brcm,pcie-msi-inten: Needs to be present for some older iProc platforms that require the interrupt enable registers to be set explicitly to enable MSI +Optional properties: +- brcm,pci-hotplug: PCI hotplug feature is supported. + +If the brcm,pcie-hotplug property is present, the following properties become +effective: + +- brcm,prsnt-gpio: Array of gpios, needs to be present if Hotplug is supported. + +PCI hotplug implementation is SOC/Board specific, and also it depends on +how add-in card is designed (e.g. how many present pins are implemented). + +If x8 card is connected, then it might be possible that all the +3 present pins could go low, or at least one pin goes low. + +If x4 card is connected, then it might be possible that 2 present +pins go low, or at least one pin goes low. + +Example: +brcm,prsnt-gpio: <&pca9505 32 1>, <&pca9505 33 1>; +This is x4 connector: monitoring max 2 present lines. +brcm,prsnt-gpio: <&pca9505 32 1>, <&pca9505 33 1>, <&pca9505 34 1>; +This is x8 connector: monitoring max 3 present lines. + Example: pcie0: pcie@18012000 { compatible = "brcm,iproc-pcie"; -- 1.9.1 ^ permalink raw reply related [flat|nested] 9+ messages in thread
* Re: [PATCH 2/2] PCI: iproc: Add optional brcm,pci-hotplug 2017-08-08 4:44 ` [PATCH 2/2] PCI: iproc: Add optional brcm,pci-hotplug Oza Pawandeep @ 2017-08-08 14:20 ` Rob Herring 2017-08-09 5:22 ` Oza Oza 0 siblings, 1 reply; 9+ messages in thread From: Rob Herring @ 2017-08-08 14:20 UTC (permalink / raw) To: Oza Pawandeep Cc: Bjorn Helgaas, Mark Rutland, Ray Jui, Scott Branden, Jon Mason, bcm-kernel-feedback-list@broadcom.com, Andy Gospodarek, linux-pci@vger.kernel.org, linux-kernel@vger.kernel.org, Oza Pawandeep, devicetree@vger.kernel.org Please send bindings to DT list. On Mon, Aug 7, 2017 at 11:44 PM, Oza Pawandeep <oza.oza@broadcom.com> wrote: > Add description for optional device tree property > 'brcm,pci-hotplug' for PCI hotplug feature. > > Signed-off-by: Oza Pawandeep <oza.oza@broadcom.com> > Reviewed-by: Ray Jui <ray.jui@broadcom.com> > > diff --git a/Documentation/devicetree/bindings/pci/brcm,iproc-pcie.txt b/Documentation/devicetree/bindings/pci/brcm,iproc-pcie.txt > index b8e48b4..a3bad24 100644 > --- a/Documentation/devicetree/bindings/pci/brcm,iproc-pcie.txt > +++ b/Documentation/devicetree/bindings/pci/brcm,iproc-pcie.txt > @@ -72,6 +72,29 @@ Optional properties: > - brcm,pcie-msi-inten: Needs to be present for some older iProc platforms that > require the interrupt enable registers to be set explicitly to enable MSI > > +Optional properties: > +- brcm,pci-hotplug: PCI hotplug feature is supported. I think we should make this a common property. We already have "ibm,slot-pluggable", so I'd propose "slot-pluggable". There's also "hotpluggable" for memory nodes defined, so we could reuse that here. > + > +If the brcm,pcie-hotplug property is present, the following properties become > +effective: > + > +- brcm,prsnt-gpio: Array of gpios, needs to be present if Hotplug is supported. prsnt-gpios > + > +PCI hotplug implementation is SOC/Board specific, and also it depends on > +how add-in card is designed (e.g. how many present pins are implemented). > + > +If x8 card is connected, then it might be possible that all the > +3 present pins could go low, or at least one pin goes low. > + > +If x4 card is connected, then it might be possible that 2 present > +pins go low, or at least one pin goes low. > + > +Example: > +brcm,prsnt-gpio: <&pca9505 32 1>, <&pca9505 33 1>; > +This is x4 connector: monitoring max 2 present lines. > +brcm,prsnt-gpio: <&pca9505 32 1>, <&pca9505 33 1>, <&pca9505 34 1>; > +This is x8 connector: monitoring max 3 present lines. > + > Example: > pcie0: pcie@18012000 { > compatible = "brcm,iproc-pcie"; > -- > 1.9.1 > ^ permalink raw reply [flat|nested] 9+ messages in thread
* Re: [PATCH 2/2] PCI: iproc: Add optional brcm,pci-hotplug 2017-08-08 14:20 ` Rob Herring @ 2017-08-09 5:22 ` Oza Oza 2017-08-09 5:27 ` Ray Jui 0 siblings, 1 reply; 9+ messages in thread From: Oza Oza @ 2017-08-09 5:22 UTC (permalink / raw) To: Rob Herring Cc: Bjorn Helgaas, Mark Rutland, Ray Jui, Scott Branden, Jon Mason, bcm-kernel-feedback-list@broadcom.com, Andy Gospodarek, linux-pci@vger.kernel.org, linux-kernel@vger.kernel.org, Oza Pawandeep, devicetree@vger.kernel.org On Tue, Aug 8, 2017 at 7:50 PM, Rob Herring <robh+dt@kernel.org> wrote: > Please send bindings to DT list. Sure, will do that. > > On Mon, Aug 7, 2017 at 11:44 PM, Oza Pawandeep <oza.oza@broadcom.com> wrote: >> Add description for optional device tree property >> 'brcm,pci-hotplug' for PCI hotplug feature. >> >> Signed-off-by: Oza Pawandeep <oza.oza@broadcom.com> >> Reviewed-by: Ray Jui <ray.jui@broadcom.com> >> >> diff --git a/Documentation/devicetree/bindings/pci/brcm,iproc-pcie.txt b/Documentation/devicetree/bindings/pci/brcm,iproc-pcie.txt >> index b8e48b4..a3bad24 100644 >> --- a/Documentation/devicetree/bindings/pci/brcm,iproc-pcie.txt >> +++ b/Documentation/devicetree/bindings/pci/brcm,iproc-pcie.txt >> @@ -72,6 +72,29 @@ Optional properties: >> - brcm,pcie-msi-inten: Needs to be present for some older iProc platforms that >> require the interrupt enable registers to be set explicitly to enable MSI >> >> +Optional properties: >> +- brcm,pci-hotplug: PCI hotplug feature is supported. > > I think we should make this a common property. We already have > "ibm,slot-pluggable", so I'd propose "slot-pluggable". > > There's also "hotpluggable" for memory nodes defined, so we could > reuse that here. > ok I will rename this to brcm,slot-pluggable >> + >> +If the brcm,pcie-hotplug property is present, the following properties become >> +effective: >> + >> +- brcm,prsnt-gpio: Array of gpios, needs to be present if Hotplug is supported. > > prsnt-gpios will take care. > >> + >> +PCI hotplug implementation is SOC/Board specific, and also it depends on >> +how add-in card is designed (e.g. how many present pins are implemented). >> + >> +If x8 card is connected, then it might be possible that all the >> +3 present pins could go low, or at least one pin goes low. >> + >> +If x4 card is connected, then it might be possible that 2 present >> +pins go low, or at least one pin goes low. >> + >> +Example: >> +brcm,prsnt-gpio: <&pca9505 32 1>, <&pca9505 33 1>; >> +This is x4 connector: monitoring max 2 present lines. >> +brcm,prsnt-gpio: <&pca9505 32 1>, <&pca9505 33 1>, <&pca9505 34 1>; >> +This is x8 connector: monitoring max 3 present lines. >> + >> Example: >> pcie0: pcie@18012000 { >> compatible = "brcm,iproc-pcie"; >> -- >> 1.9.1 >> ^ permalink raw reply [flat|nested] 9+ messages in thread
* Re: [PATCH 2/2] PCI: iproc: Add optional brcm,pci-hotplug 2017-08-09 5:22 ` Oza Oza @ 2017-08-09 5:27 ` Ray Jui 2017-08-09 5:43 ` Oza Oza 0 siblings, 1 reply; 9+ messages in thread From: Ray Jui @ 2017-08-09 5:27 UTC (permalink / raw) To: Oza Oza, Rob Herring Cc: Bjorn Helgaas, Mark Rutland, Ray Jui, Scott Branden, Jon Mason, bcm-kernel-feedback-list@broadcom.com, Andy Gospodarek, linux-pci@vger.kernel.org, linux-kernel@vger.kernel.org, Oza Pawandeep, devicetree@vger.kernel.org On 8/8/2017 10:22 PM, Oza Oza wrote: > On Tue, Aug 8, 2017 at 7:50 PM, Rob Herring <robh+dt@kernel.org> wrote: >> Please send bindings to DT list. > Sure, will do that. > >> On Mon, Aug 7, 2017 at 11:44 PM, Oza Pawandeep <oza.oza@broadcom.com> wrote: >>> Add description for optional device tree property >>> 'brcm,pci-hotplug' for PCI hotplug feature. >>> >>> Signed-off-by: Oza Pawandeep <oza.oza@broadcom.com> >>> Reviewed-by: Ray Jui <ray.jui@broadcom.com> >>> >>> diff --git a/Documentation/devicetree/bindings/pci/brcm,iproc-pcie.txt b/Documentation/devicetree/bindings/pci/brcm,iproc-pcie.txt >>> index b8e48b4..a3bad24 100644 >>> --- a/Documentation/devicetree/bindings/pci/brcm,iproc-pcie.txt >>> +++ b/Documentation/devicetree/bindings/pci/brcm,iproc-pcie.txt >>> @@ -72,6 +72,29 @@ Optional properties: >>> - brcm,pcie-msi-inten: Needs to be present for some older iProc platforms that >>> require the interrupt enable registers to be set explicitly to enable MSI >>> >>> +Optional properties: >>> +- brcm,pci-hotplug: PCI hotplug feature is supported. >> I think we should make this a common property. We already have >> "ibm,slot-pluggable", so I'd propose "slot-pluggable". >> >> There's also "hotpluggable" for memory nodes defined, so we could >> reuse that here. >> > ok I will rename this to > brcm,slot-pluggable How's brcm,slot-pluggable a common property? It's still brcm specific. Didn't Rob propose either "slot-pluggable" or "hotpluggable"? And note it goes to the generic PCI binding instead iProc PCIe specific binding. ^ permalink raw reply [flat|nested] 9+ messages in thread
* Re: [PATCH 2/2] PCI: iproc: Add optional brcm,pci-hotplug 2017-08-09 5:27 ` Ray Jui @ 2017-08-09 5:43 ` Oza Oza 2017-08-09 5:52 ` Oza Oza 0 siblings, 1 reply; 9+ messages in thread From: Oza Oza @ 2017-08-09 5:43 UTC (permalink / raw) To: Ray Jui Cc: Rob Herring, Bjorn Helgaas, Mark Rutland, Ray Jui, Scott Branden, Jon Mason, bcm-kernel-feedback-list@broadcom.com, Andy Gospodarek, linux-pci@vger.kernel.org, linux-kernel@vger.kernel.org, Oza Pawandeep, devicetree@vger.kernel.org On Wed, Aug 9, 2017 at 10:57 AM, Ray Jui <ray.jui@broadcom.com> wrote: > > > On 8/8/2017 10:22 PM, Oza Oza wrote: >> >> On Tue, Aug 8, 2017 at 7:50 PM, Rob Herring <robh+dt@kernel.org> wrote: >>> >>> Please send bindings to DT list. >> >> Sure, will do that. >> >>> On Mon, Aug 7, 2017 at 11:44 PM, Oza Pawandeep <oza.oza@broadcom.com> >>> wrote: >>>> >>>> Add description for optional device tree property >>>> 'brcm,pci-hotplug' for PCI hotplug feature. >>>> >>>> Signed-off-by: Oza Pawandeep <oza.oza@broadcom.com> >>>> Reviewed-by: Ray Jui <ray.jui@broadcom.com> >>>> >>>> diff --git a/Documentation/devicetree/bindings/pci/brcm,iproc-pcie.txt >>>> b/Documentation/devicetree/bindings/pci/brcm,iproc-pcie.txt >>>> index b8e48b4..a3bad24 100644 >>>> --- a/Documentation/devicetree/bindings/pci/brcm,iproc-pcie.txt >>>> +++ b/Documentation/devicetree/bindings/pci/brcm,iproc-pcie.txt >>>> @@ -72,6 +72,29 @@ Optional properties: >>>> - brcm,pcie-msi-inten: Needs to be present for some older iProc >>>> platforms that >>>> require the interrupt enable registers to be set explicitly to enable >>>> MSI >>>> >>>> +Optional properties: >>>> +- brcm,pci-hotplug: PCI hotplug feature is supported. >>> >>> I think we should make this a common property. We already have >>> "ibm,slot-pluggable", so I'd propose "slot-pluggable". >>> >>> There's also "hotpluggable" for memory nodes defined, so we could >>> reuse that here. >>> >> ok I will rename this to >> brcm,slot-pluggable > > > How's brcm,slot-pluggable a common property? It's still brcm specific. > Didn't Rob propose either "slot-pluggable" or "hotpluggable"? > > And note it goes to the generic PCI binding instead iProc PCIe specific > binding. > Initially I thought, Rob suggested either "slot-pluggable". followed by, "hotpluggable" since memory node already has such property. but not sure in which generic pci binding I should add ? should it be part of Documentation/devicetree/bindings/pci/host-generic-pci.txt Can you please clarify Rob ? Regards, Oza. ^ permalink raw reply [flat|nested] 9+ messages in thread
* Re: [PATCH 2/2] PCI: iproc: Add optional brcm,pci-hotplug 2017-08-09 5:43 ` Oza Oza @ 2017-08-09 5:52 ` Oza Oza 2017-08-10 18:00 ` Rob Herring 0 siblings, 1 reply; 9+ messages in thread From: Oza Oza @ 2017-08-09 5:52 UTC (permalink / raw) To: Ray Jui Cc: Rob Herring, Bjorn Helgaas, Mark Rutland, Ray Jui, Scott Branden, Jon Mason, bcm-kernel-feedback-list@broadcom.com, Andy Gospodarek, linux-pci@vger.kernel.org, linux-kernel@vger.kernel.org, Oza Pawandeep, devicetree@vger.kernel.org On Wed, Aug 9, 2017 at 11:13 AM, Oza Oza <oza.oza@broadcom.com> wrote: > On Wed, Aug 9, 2017 at 10:57 AM, Ray Jui <ray.jui@broadcom.com> wrote: >> >> >> On 8/8/2017 10:22 PM, Oza Oza wrote: >>> >>> On Tue, Aug 8, 2017 at 7:50 PM, Rob Herring <robh+dt@kernel.org> wrote: >>>> >>>> Please send bindings to DT list. >>> >>> Sure, will do that. >>> >>>> On Mon, Aug 7, 2017 at 11:44 PM, Oza Pawandeep <oza.oza@broadcom.com> >>>> wrote: >>>>> >>>>> Add description for optional device tree property >>>>> 'brcm,pci-hotplug' for PCI hotplug feature. >>>>> >>>>> Signed-off-by: Oza Pawandeep <oza.oza@broadcom.com> >>>>> Reviewed-by: Ray Jui <ray.jui@broadcom.com> >>>>> >>>>> diff --git a/Documentation/devicetree/bindings/pci/brcm,iproc-pcie.txt >>>>> b/Documentation/devicetree/bindings/pci/brcm,iproc-pcie.txt >>>>> index b8e48b4..a3bad24 100644 >>>>> --- a/Documentation/devicetree/bindings/pci/brcm,iproc-pcie.txt >>>>> +++ b/Documentation/devicetree/bindings/pci/brcm,iproc-pcie.txt >>>>> @@ -72,6 +72,29 @@ Optional properties: >>>>> - brcm,pcie-msi-inten: Needs to be present for some older iProc >>>>> platforms that >>>>> require the interrupt enable registers to be set explicitly to enable >>>>> MSI >>>>> >>>>> +Optional properties: >>>>> +- brcm,pci-hotplug: PCI hotplug feature is supported. >>>> >>>> I think we should make this a common property. We already have >>>> "ibm,slot-pluggable", so I'd propose "slot-pluggable". >>>> >>>> There's also "hotpluggable" for memory nodes defined, so we could >>>> reuse that here. >>>> >>> ok I will rename this to >>> brcm,slot-pluggable >> >> >> How's brcm,slot-pluggable a common property? It's still brcm specific. >> Didn't Rob propose either "slot-pluggable" or "hotpluggable"? >> >> And note it goes to the generic PCI binding instead iProc PCIe specific >> binding. >> > > Initially I thought, Rob suggested either "slot-pluggable". > followed by, "hotpluggable" since memory node already has such property. > > but not sure in which generic pci binding I should add ? > should it be part of > Documentation/devicetree/bindings/pci/host-generic-pci.txt > > Can you please clarify Rob ? > > Regards, > Oza. To add, every SOC might have different way of implementing hotplug. so I suppose both the binding documents have to be updated. Documentation/devicetree/bindings/pci/host-generic-pci.txt which can have common boolean property named "hotpluggable" and SOC specific implementation can stay here for e.g. Documentation/devicetree/bindings/pci/brcm,iproc-pcie.txt brcm,prsnt-gpios Rob and Ray: please let me know how this sounds. Regards, Oza. ^ permalink raw reply [flat|nested] 9+ messages in thread
* Re: [PATCH 2/2] PCI: iproc: Add optional brcm,pci-hotplug 2017-08-09 5:52 ` Oza Oza @ 2017-08-10 18:00 ` Rob Herring 0 siblings, 0 replies; 9+ messages in thread From: Rob Herring @ 2017-08-10 18:00 UTC (permalink / raw) To: Oza Oza Cc: Ray Jui, Bjorn Helgaas, Mark Rutland, Ray Jui, Scott Branden, Jon Mason, bcm-kernel-feedback-list@broadcom.com, Andy Gospodarek, linux-pci@vger.kernel.org, linux-kernel@vger.kernel.org, Oza Pawandeep, devicetree@vger.kernel.org On Wed, Aug 9, 2017 at 12:52 AM, Oza Oza <oza.oza@broadcom.com> wrote: > On Wed, Aug 9, 2017 at 11:13 AM, Oza Oza <oza.oza@broadcom.com> wrote: >> On Wed, Aug 9, 2017 at 10:57 AM, Ray Jui <ray.jui@broadcom.com> wrote: >>> >>> >>> On 8/8/2017 10:22 PM, Oza Oza wrote: >>>> >>>> On Tue, Aug 8, 2017 at 7:50 PM, Rob Herring <robh+dt@kernel.org> wrote: >>>>> >>>>> Please send bindings to DT list. >>>> >>>> Sure, will do that. >>>> >>>>> On Mon, Aug 7, 2017 at 11:44 PM, Oza Pawandeep <oza.oza@broadcom.com> >>>>> wrote: >>>>>> >>>>>> Add description for optional device tree property >>>>>> 'brcm,pci-hotplug' for PCI hotplug feature. >>>>>> >>>>>> Signed-off-by: Oza Pawandeep <oza.oza@broadcom.com> >>>>>> Reviewed-by: Ray Jui <ray.jui@broadcom.com> >>>>>> >>>>>> diff --git a/Documentation/devicetree/bindings/pci/brcm,iproc-pcie.txt >>>>>> b/Documentation/devicetree/bindings/pci/brcm,iproc-pcie.txt >>>>>> index b8e48b4..a3bad24 100644 >>>>>> --- a/Documentation/devicetree/bindings/pci/brcm,iproc-pcie.txt >>>>>> +++ b/Documentation/devicetree/bindings/pci/brcm,iproc-pcie.txt >>>>>> @@ -72,6 +72,29 @@ Optional properties: >>>>>> - brcm,pcie-msi-inten: Needs to be present for some older iProc >>>>>> platforms that >>>>>> require the interrupt enable registers to be set explicitly to enable >>>>>> MSI >>>>>> >>>>>> +Optional properties: >>>>>> +- brcm,pci-hotplug: PCI hotplug feature is supported. >>>>> >>>>> I think we should make this a common property. We already have >>>>> "ibm,slot-pluggable", so I'd propose "slot-pluggable". >>>>> >>>>> There's also "hotpluggable" for memory nodes defined, so we could >>>>> reuse that here. >>>>> >>>> ok I will rename this to >>>> brcm,slot-pluggable >>> >>> >>> How's brcm,slot-pluggable a common property? It's still brcm specific. >>> Didn't Rob propose either "slot-pluggable" or "hotpluggable"? >>> >>> And note it goes to the generic PCI binding instead iProc PCIe specific >>> binding. >>> >> >> Initially I thought, Rob suggested either "slot-pluggable". >> followed by, "hotpluggable" since memory node already has such property. I didn't say which because I'm fine with either one. Pick the color of the bikeshed. >> >> but not sure in which generic pci binding I should add ? >> should it be part of >> Documentation/devicetree/bindings/pci/host-generic-pci.txt That's for generic CAM/ECAM hosts. pci.txt would be the place. >> >> Can you please clarify Rob ? >> >> Regards, >> Oza. > > To add, every SOC might have different way of implementing hotplug. > so I suppose both the binding documents have to be updated. > > Documentation/devicetree/bindings/pci/host-generic-pci.txt > which can have common boolean property > named "hotpluggable" > > and SOC specific implementation can stay here > for e.g. > Documentation/devicetree/bindings/pci/brcm,iproc-pcie.txt > brcm,prsnt-gpios PRSNT# is a standard signal though, right? The h/w specific part would be whether it is connected to GPIOs or the host controller has some built-in controls. So yes, it should be documented if iproc-pcie uses "prsnt-gpios", but it can still be a common property. Rob ^ permalink raw reply [flat|nested] 9+ messages in thread
end of thread, other threads:[~2017-08-10 18:00 UTC | newest] Thread overview: 9+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2017-08-08 4:44 [PATCH 0/2] PCI hotplug feature Oza Pawandeep 2017-08-08 4:44 ` [PATCH 1/2] PCI: iproc: Implement PCI hotplug support Oza Pawandeep 2017-08-08 4:44 ` [PATCH 2/2] PCI: iproc: Add optional brcm,pci-hotplug Oza Pawandeep 2017-08-08 14:20 ` Rob Herring 2017-08-09 5:22 ` Oza Oza 2017-08-09 5:27 ` Ray Jui 2017-08-09 5:43 ` Oza Oza 2017-08-09 5:52 ` Oza Oza 2017-08-10 18:00 ` Rob Herring
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox; as well as URLs for NNTP newsgroup(s).