* [PATCH] bcma: use device from DT (brcm,bus-gpio) for SoC GPIO chip @ 2014-09-26 14:28 Rafał Miłecki [not found] ` <1411741733-13888-1-git-send-email-zajec5-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org> 0 siblings, 1 reply; 15+ messages in thread From: Rafał Miłecki @ 2014-09-26 14:28 UTC (permalink / raw) To: John W. Linville, linux-wireless-u79uwXL29TY76Z2rM5mHXA Cc: Hauke Mehrtens, linux-arm-kernel-IAPFreCvJWM7uuMidbF8XUB+6BGkLq7r, arnd-r2nGTMty4D4, devicetree-u79uwXL29TY76Z2rM5mHXA, Rafał Miłecki This will allow us to define GPIO-attached devices (LEDs, buttons) in the the device tree. Signed-off-by: Rafał Miłecki <zajec5-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org> --- This is based on top of [PATCH v6] bcma: register bcma as device tree driver that I hope will reach wireless-next git tree. --- Documentation/devicetree/bindings/bus/bcma.txt | 15 +++++++++++++++ drivers/bcma/driver_gpio.c | 5 +++++ 2 files changed, 20 insertions(+) diff --git a/Documentation/devicetree/bindings/bus/bcma.txt b/Documentation/devicetree/bindings/bus/bcma.txt index e9070c1..f1b381e 100644 --- a/Documentation/devicetree/bindings/bus/bcma.txt +++ b/Documentation/devicetree/bindings/bus/bcma.txt @@ -6,6 +6,15 @@ Required properties: - reg : iomem address range of chipcommon core +The top-level axi bus may contain following children: + +- gpio: GPIO chip on the SoC + + Required properties: + - compatible: "brcm,bus-gpio" + - gpio-controller : makes the node a GPIO controller + - #gpio-cells : size of the GPIO specifier, must be 2 + The cores on the AXI bus are automatically detected by bcma with the memory ranges they are using and they get registered afterwards. @@ -17,4 +26,10 @@ Example: ranges = <0x00000000 0x18000000 0x00100000>; #address-cells = <1>; #size-cells = <1>; + + gpio@0 { + compatible = "brcm,bus-gpio"; + gpio-controller; + #gpio-cells = <2>; + }; }; diff --git a/drivers/bcma/driver_gpio.c b/drivers/bcma/driver_gpio.c index 8ea497c..7ae39a8 100644 --- a/drivers/bcma/driver_gpio.c +++ b/drivers/bcma/driver_gpio.c @@ -218,6 +218,11 @@ int bcma_gpio_init(struct bcma_drv_cc *cc) #if IS_BUILTIN(CONFIG_BCM47XX) chip->to_irq = bcma_gpio_to_irq; #endif +#if IS_BUILTIN(CONFIG_OF) + if (cc->core->bus->hosttype == BCMA_HOSTTYPE_SOC) + chip->of_node = of_find_compatible_node(NULL, NULL, + "brcm,bus-gpio"); +#endif switch (cc->core->bus->chipinfo.id) { case BCMA_CHIP_ID_BCM5357: case BCMA_CHIP_ID_BCM53572: -- 1.8.4.5 -- To unsubscribe from this list: send the line "unsubscribe linux-wireless" in the body of a message to majordomo-u79uwXL29TY76Z2rM5mHXA@public.gmane.org More majordomo info at http://vger.kernel.org/majordomo-info.html ^ permalink raw reply related [flat|nested] 15+ messages in thread
[parent not found: <1411741733-13888-1-git-send-email-zajec5-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org>]
* Re: [PATCH] bcma: use device from DT (brcm,bus-gpio) for SoC GPIO chip [not found] ` <1411741733-13888-1-git-send-email-zajec5-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org> @ 2014-09-26 22:03 ` Arnd Bergmann 2014-09-27 8:05 ` Rafał Miłecki 2014-09-28 8:24 ` [PATCH V2] " Rafał Miłecki 1 sibling, 1 reply; 15+ messages in thread From: Arnd Bergmann @ 2014-09-26 22:03 UTC (permalink / raw) To: linux-arm-kernel-IAPFreCvJWM7uuMidbF8XUB+6BGkLq7r Cc: Rafał Miłecki, John W. Linville, linux-wireless-u79uwXL29TY76Z2rM5mHXA, Hauke Mehrtens, devicetree-u79uwXL29TY76Z2rM5mHXA On Friday 26 September 2014 16:28:53 Rafał Miłecki wrote: > +The top-level axi bus may contain following children: > + > +- gpio: GPIO chip on the SoC > + > + Required properties: > + - compatible: "brcm,bus-gpio" > + - gpio-controller : makes the node a GPIO controller > + - #gpio-cells : size of the GPIO specifier, must be 2 > + > I wonder if it would be better to avoid the subnode here and just make the parent itself the gpio controller. Is the gpio controller part of the bus itself in reality, or is it a device that gets probed on the bus? Arnd -- To unsubscribe from this list: send the line "unsubscribe linux-wireless" in the body of a message to majordomo-u79uwXL29TY76Z2rM5mHXA@public.gmane.org More majordomo info at http://vger.kernel.org/majordomo-info.html ^ permalink raw reply [flat|nested] 15+ messages in thread
* Re: [PATCH] bcma: use device from DT (brcm,bus-gpio) for SoC GPIO chip 2014-09-26 22:03 ` Arnd Bergmann @ 2014-09-27 8:05 ` Rafał Miłecki [not found] ` <CACna6rwwfJOdnxhmnW7MUuUC1YBPx8bmDbiaSy1+G39hF4p7OA-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org> 0 siblings, 1 reply; 15+ messages in thread From: Rafał Miłecki @ 2014-09-27 8:05 UTC (permalink / raw) To: Arnd Bergmann Cc: linux-arm-kernel-IAPFreCvJWM7uuMidbF8XUB+6BGkLq7r@public.gmane.org, John W. Linville, linux-wireless-u79uwXL29TY76Z2rM5mHXA@public.gmane.org, Hauke Mehrtens, devicetree-u79uwXL29TY76Z2rM5mHXA On 27 September 2014 00:03, Arnd Bergmann <arnd-r2nGTMty4D4@public.gmane.org> wrote: > On Friday 26 September 2014 16:28:53 Rafał Miłecki wrote: >> +The top-level axi bus may contain following children: >> + >> +- gpio: GPIO chip on the SoC >> + >> + Required properties: >> + - compatible: "brcm,bus-gpio" >> + - gpio-controller : makes the node a GPIO controller >> + - #gpio-cells : size of the GPIO specifier, must be 2 >> + >> > > I wonder if it would be better to avoid the subnode here and just > make the parent itself the gpio controller. > > Is the gpio controller part of the bus itself in reality, or is it > a device that gets probed on the bus? I'm not sure how to treat this chip. We control GPIOs using ChipCommon regs (and ChipCommon is one of cores/devices on the bus), so you could also consider GPIO chip a sub-device of ChipCommon. I believe every Broadcom bus has a GPIO chip. In the ancient (MIPS) times, even if we didn't have ChipCommon, there was an EXTIF core that used to provide access to the GPIO chip. What do you think? Should I make it separated device, even it if depends on the SoC and its ChipCommon core (device)? -- Rafał -- To unsubscribe from this list: send the line "unsubscribe linux-wireless" in the body of a message to majordomo-u79uwXL29TY76Z2rM5mHXA@public.gmane.org More majordomo info at http://vger.kernel.org/majordomo-info.html ^ permalink raw reply [flat|nested] 15+ messages in thread
[parent not found: <CACna6rwwfJOdnxhmnW7MUuUC1YBPx8bmDbiaSy1+G39hF4p7OA-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org>]
* Re: [PATCH] bcma: use device from DT (brcm,bus-gpio) for SoC GPIO chip [not found] ` <CACna6rwwfJOdnxhmnW7MUuUC1YBPx8bmDbiaSy1+G39hF4p7OA-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org> @ 2014-09-27 8:33 ` Hauke Mehrtens [not found] ` <54267661.5000401-5/S+JYg5SzeELgA04lAiVw@public.gmane.org> 0 siblings, 1 reply; 15+ messages in thread From: Hauke Mehrtens @ 2014-09-27 8:33 UTC (permalink / raw) To: Rafał Miłecki, Arnd Bergmann Cc: linux-arm-kernel-IAPFreCvJWM7uuMidbF8XUB+6BGkLq7r@public.gmane.org, John W. Linville, linux-wireless-u79uwXL29TY76Z2rM5mHXA@public.gmane.org, devicetree-u79uwXL29TY76Z2rM5mHXA On 09/27/2014 10:05 AM, Rafał Miłecki wrote: > On 27 September 2014 00:03, Arnd Bergmann <arnd-r2nGTMty4D4@public.gmane.org> wrote: >> On Friday 26 September 2014 16:28:53 Rafał Miłecki wrote: >>> +The top-level axi bus may contain following children: >>> + >>> +- gpio: GPIO chip on the SoC >>> + >>> + Required properties: >>> + - compatible: "brcm,bus-gpio" >>> + - gpio-controller : makes the node a GPIO controller >>> + - #gpio-cells : size of the GPIO specifier, must be 2 >>> + >>> >> >> I wonder if it would be better to avoid the subnode here and just >> make the parent itself the gpio controller. >> >> Is the gpio controller part of the bus itself in reality, or is it >> a device that gets probed on the bus? > > I'm not sure how to treat this chip. > We control GPIOs using ChipCommon regs (and ChipCommon is one of > cores/devices on the bus), so you could also consider GPIO chip a > sub-device of ChipCommon. > I believe every Broadcom bus has a GPIO chip. In the ancient (MIPS) > times, even if we didn't have ChipCommon, there was an EXTIF core that > used to provide access to the GPIO chip. > > What do you think? Should I make it separated device, even it if > depends on the SoC and its ChipCommon core (device)? > I would make GPIO a subdevive of chipcommon. The chipcommon core has an own IRQ which is also used for GPIO. Hauke -- To unsubscribe from this list: send the line "unsubscribe linux-wireless" in the body of a message to majordomo-u79uwXL29TY76Z2rM5mHXA@public.gmane.org More majordomo info at http://vger.kernel.org/majordomo-info.html ^ permalink raw reply [flat|nested] 15+ messages in thread
[parent not found: <54267661.5000401-5/S+JYg5SzeELgA04lAiVw@public.gmane.org>]
* Re: [PATCH] bcma: use device from DT (brcm,bus-gpio) for SoC GPIO chip [not found] ` <54267661.5000401-5/S+JYg5SzeELgA04lAiVw@public.gmane.org> @ 2014-09-27 10:37 ` Rafał Miłecki [not found] ` <CACna6rwYcSh7-uFYA+paNehNwrqddmn2az+a9ZwggVGofbDR7w-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org> 0 siblings, 1 reply; 15+ messages in thread From: Rafał Miłecki @ 2014-09-27 10:37 UTC (permalink / raw) To: Hauke Mehrtens Cc: Arnd Bergmann, linux-arm-kernel-IAPFreCvJWM7uuMidbF8XUB+6BGkLq7r@public.gmane.org, John W. Linville, linux-wireless-u79uwXL29TY76Z2rM5mHXA@public.gmane.org, devicetree-u79uwXL29TY76Z2rM5mHXA On 27 September 2014 10:33, Hauke Mehrtens <hauke-5/S+JYg5SzeELgA04lAiVw@public.gmane.org> wrote: > I would make GPIO a subdevive of chipcommon. The chipcommon core has an > own IRQ which is also used for GPIO. Which ChipCommon do yo mean? 1) chipcommonA (compatible = "simple-bus") 2) chipcommon@0 (child of axi@18000000 AKA brcm,bus-axi) It seems that for some reason both of them use IRQ 85, while the IRQ for ChipCommon is 117 I believe. -- Rafał -- To unsubscribe from this list: send the line "unsubscribe linux-wireless" in the body of a message to majordomo-u79uwXL29TY76Z2rM5mHXA@public.gmane.org More majordomo info at http://vger.kernel.org/majordomo-info.html ^ permalink raw reply [flat|nested] 15+ messages in thread
[parent not found: <CACna6rwYcSh7-uFYA+paNehNwrqddmn2az+a9ZwggVGofbDR7w-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org>]
* Re: [PATCH] bcma: use device from DT (brcm,bus-gpio) for SoC GPIO chip [not found] ` <CACna6rwYcSh7-uFYA+paNehNwrqddmn2az+a9ZwggVGofbDR7w-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org> @ 2014-09-27 20:47 ` Hauke Mehrtens 0 siblings, 0 replies; 15+ messages in thread From: Hauke Mehrtens @ 2014-09-27 20:47 UTC (permalink / raw) To: Rafał Miłecki Cc: Arnd Bergmann, linux-arm-kernel-IAPFreCvJWM7uuMidbF8XUB+6BGkLq7r@public.gmane.org, John W. Linville, linux-wireless-u79uwXL29TY76Z2rM5mHXA@public.gmane.org, devicetree-u79uwXL29TY76Z2rM5mHXA On 09/27/2014 12:37 PM, Rafał Miłecki wrote: > On 27 September 2014 10:33, Hauke Mehrtens <hauke-5/S+JYg5SzeELgA04lAiVw@public.gmane.org> wrote: >> I would make GPIO a subdevive of chipcommon. The chipcommon core has an >> own IRQ which is also used for GPIO. > > Which ChipCommon do yo mean? > 1) chipcommonA (compatible = "simple-bus") > 2) chipcommon@0 (child of axi@18000000 AKA brcm,bus-axi) We should combine this (both are describing the same core) I added chipcommonA to get some serial without adding bcma support first. When we have dts support added to bcma, I would like to remove chipcommonA from dtsi and add a chipcommon as a child of axi. > > It seems that for some reason both of them use IRQ 85, while the IRQ > for ChipCommon is 117 I believe. That's the same. In the dtsi file it says: interrupts = <GIC_SPI 85 IRQ_TYPE_LEVEL_HIGH>; this will result in the IRQ number 117, when it is GIC_SPI you have to add 32 to the irq number to get the actual number which will be given to request_irq(). Hauke -- To unsubscribe from this list: send the line "unsubscribe linux-wireless" in the body of a message to majordomo-u79uwXL29TY76Z2rM5mHXA@public.gmane.org More majordomo info at http://vger.kernel.org/majordomo-info.html ^ permalink raw reply [flat|nested] 15+ messages in thread
* [PATCH V2] bcma: use device from DT (brcm,bus-gpio) for SoC GPIO chip [not found] ` <1411741733-13888-1-git-send-email-zajec5-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org> 2014-09-26 22:03 ` Arnd Bergmann @ 2014-09-28 8:24 ` Rafał Miłecki [not found] ` <1411892641-5662-1-git-send-email-zajec5-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org> 1 sibling, 1 reply; 15+ messages in thread From: Rafał Miłecki @ 2014-09-28 8:24 UTC (permalink / raw) To: John W. Linville, linux-wireless-u79uwXL29TY76Z2rM5mHXA Cc: Hauke Mehrtens, linux-arm-kernel-IAPFreCvJWM7uuMidbF8XUB+6BGkLq7r, arnd-r2nGTMty4D4, devicetree-u79uwXL29TY76Z2rM5mHXA, Rafał Miłecki This will allow us to define GPIO-attached devices (LEDs, buttons) in the the device tree. Signed-off-by: Rafał Miłecki <zajec5-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org> --- This is based on top of [PATCH v6] bcma: register bcma as device tree driver that I hope will reach wireless-next git tree. V2: Describe axi chilren and make gpio a child of chipcommon core. --- Documentation/devicetree/bindings/bus/bcma.txt | 24 ++++++++++++++++++++++++ drivers/bcma/driver_gpio.c | 5 +++++ 2 files changed, 29 insertions(+) diff --git a/Documentation/devicetree/bindings/bus/bcma.txt b/Documentation/devicetree/bindings/bus/bcma.txt index e9070c1..26ef4b7 100644 --- a/Documentation/devicetree/bindings/bus/bcma.txt +++ b/Documentation/devicetree/bindings/bus/bcma.txt @@ -9,6 +9,22 @@ Required properties: The cores on the AXI bus are automatically detected by bcma with the memory ranges they are using and they get registered afterwards. +The top-level axi bus may contain children representing attached cores +(devices). This is needed since some hardware details can't be auto +detected (e.g. IRQ numbers). + +There is also one special core called ChipCommon that may contain some +extra sub-devices. This is because some devices (e.g. GPIO chip) are +not standalone cores and can be access using ChipCommon regs only. +Possible ChipCommon children: + +- gpio: GPIO chip on the SoC + + Required properties: + - compatible: "brcm,bus-gpio" + - gpio-controller : makes the node a GPIO controller + - #gpio-cells : size of the GPIO specifier, must be 2 + Example: axi@18000000 { @@ -17,4 +33,12 @@ Example: ranges = <0x00000000 0x18000000 0x00100000>; #address-cells = <1>; #size-cells = <1>; + + chipcommon@0 { + gpio@0 { + compatible = "brcm,bus-gpio"; + gpio-controller; + #gpio-cells = <2>; + }; + }; }; diff --git a/drivers/bcma/driver_gpio.c b/drivers/bcma/driver_gpio.c index 8ea497c..7ae39a8 100644 --- a/drivers/bcma/driver_gpio.c +++ b/drivers/bcma/driver_gpio.c @@ -218,6 +218,11 @@ int bcma_gpio_init(struct bcma_drv_cc *cc) #if IS_BUILTIN(CONFIG_BCM47XX) chip->to_irq = bcma_gpio_to_irq; #endif +#if IS_BUILTIN(CONFIG_OF) + if (cc->core->bus->hosttype == BCMA_HOSTTYPE_SOC) + chip->of_node = of_find_compatible_node(NULL, NULL, + "brcm,bus-gpio"); +#endif switch (cc->core->bus->chipinfo.id) { case BCMA_CHIP_ID_BCM5357: case BCMA_CHIP_ID_BCM53572: -- 1.8.4.5 -- To unsubscribe from this list: send the line "unsubscribe linux-wireless" in the body of a message to majordomo-u79uwXL29TY76Z2rM5mHXA@public.gmane.org More majordomo info at http://vger.kernel.org/majordomo-info.html ^ permalink raw reply related [flat|nested] 15+ messages in thread
[parent not found: <1411892641-5662-1-git-send-email-zajec5-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org>]
* Re: [PATCH V2] bcma: use device from DT (brcm, bus-gpio) for SoC GPIO chip [not found] ` <1411892641-5662-1-git-send-email-zajec5-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org> @ 2014-09-30 9:37 ` Arnd Bergmann 2014-09-30 9:56 ` Rafał Miłecki 2014-09-30 10:22 ` [PATCH V3] bcma: use device from DT (brcm,bus-chipcommon) " Rafał Miłecki 1 sibling, 1 reply; 15+ messages in thread From: Arnd Bergmann @ 2014-09-30 9:37 UTC (permalink / raw) To: linux-arm-kernel-IAPFreCvJWM7uuMidbF8XUB+6BGkLq7r Cc: Rafał Miłecki, John W. Linville, linux-wireless-u79uwXL29TY76Z2rM5mHXA, Hauke Mehrtens, devicetree-u79uwXL29TY76Z2rM5mHXA On Sunday 28 September 2014 10:24:01 Rafał Miłecki wrote: > This will allow us to define GPIO-attached devices (LEDs, buttons) in > the the device tree. > > Signed-off-by: Rafał Miłecki <zajec5-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org> > --- > This is based on top of > [PATCH v6] bcma: register bcma as device tree driver > that I hope will reach wireless-next git tree. > > V2: Describe axi chilren and make gpio a child of chipcommon core. > --- > Documentation/devicetree/bindings/bus/bcma.txt | 24 ++++++++++++++++++++++++ > drivers/bcma/driver_gpio.c | 5 +++++ > 2 files changed, 29 insertions(+) > > diff --git a/Documentation/devicetree/bindings/bus/bcma.txt b/Documentation/devicetree/bindings/bus/bcma.txt > index e9070c1..26ef4b7 100644 > --- a/Documentation/devicetree/bindings/bus/bcma.txt > +++ b/Documentation/devicetree/bindings/bus/bcma.txt > @@ -9,6 +9,22 @@ Required properties: > The cores on the AXI bus are automatically detected by bcma with the > memory ranges they are using and they get registered afterwards. > > +The top-level axi bus may contain children representing attached cores > +(devices). This is needed since some hardware details can't be auto > +detected (e.g. IRQ numbers). > + > +There is also one special core called ChipCommon that may contain some > +extra sub-devices. This is because some devices (e.g. GPIO chip) are > +not standalone cores and can be access using ChipCommon regs only. > +Possible ChipCommon children: > + > +- gpio: GPIO chip on the SoC > + > + Required properties: > + - compatible: "brcm,bus-gpio" > + - gpio-controller : makes the node a GPIO controller > + - #gpio-cells : size of the GPIO specifier, must be 2 > + > Example: > > axi@18000000 { > @@ -17,4 +33,12 @@ Example: > ranges = <0x00000000 0x18000000 0x00100000>; > #address-cells = <1>; > #size-cells = <1>; > + > + chipcommon@0 { > + gpio@0 { > + compatible = "brcm,bus-gpio"; > + gpio-controller; > + #gpio-cells = <2>; > + }; > + }; I think you should list the 'reg' property of the chipcommon area and make that match the unit address, rather than using '0', mostly for consistency. Can you have multiple gpio areas in chipcommon? If not, I'd probably leave out the extra node and mark the chipcommon device itself as a 'gpio-controller'. It can also be other things at the same time, e.g. 'interrupt-controller' or provide things like pwms or pinctrl if that's what the hardware does. No need to have separate nodes for those if it's all the same register set. > }; > diff --git a/drivers/bcma/driver_gpio.c b/drivers/bcma/driver_gpio.c > index 8ea497c..7ae39a8 100644 > --- a/drivers/bcma/driver_gpio.c > +++ b/drivers/bcma/driver_gpio.c > @@ -218,6 +218,11 @@ int bcma_gpio_init(struct bcma_drv_cc *cc) > #if IS_BUILTIN(CONFIG_BCM47XX) > chip->to_irq = bcma_gpio_to_irq; > #endif > +#if IS_BUILTIN(CONFIG_OF) > + if (cc->core->bus->hosttype == BCMA_HOSTTYPE_SOC) > + chip->of_node = of_find_compatible_node(NULL, NULL, > + "brcm,bus-gpio"); > +#endif Just commenting on the general style here, I think you can skip this step entirely, as mentioned above. You should use C syntax here: if (IS_BUILTIN(CONFIG_OF) && cc->core->bus->hosttype == BCMA_HOSTTYPE_SOC)) chip->of_node = of_find_compatible_node(NULL, NULL, "brcm,bus-gpio"); If CONFIG_OF is not set, of_find_compatible_node() is turned into an inline function that returns NULL, so you probably don't even need that. Finally, of_find_compatible_node() is a really slow operation, and "brcm,bus-gpio" is a much too generic name. If you need to look for something that is a child node, use something based on for_each_available_child_of_node(). Arnd -- To unsubscribe from this list: send the line "unsubscribe linux-wireless" in the body of a message to majordomo-u79uwXL29TY76Z2rM5mHXA@public.gmane.org More majordomo info at http://vger.kernel.org/majordomo-info.html ^ permalink raw reply [flat|nested] 15+ messages in thread
* Re: [PATCH V2] bcma: use device from DT (brcm, bus-gpio) for SoC GPIO chip 2014-09-30 9:37 ` [PATCH V2] bcma: use device from DT (brcm, bus-gpio) " Arnd Bergmann @ 2014-09-30 9:56 ` Rafał Miłecki [not found] ` <CACna6ry-mmc8QD-bYUNGLfTh07TcUepjZdPYqKyxLc3HbMPung-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org> 0 siblings, 1 reply; 15+ messages in thread From: Rafał Miłecki @ 2014-09-30 9:56 UTC (permalink / raw) To: Arnd Bergmann Cc: linux-arm-kernel-IAPFreCvJWM7uuMidbF8XUB+6BGkLq7r@public.gmane.org, John W. Linville, linux-wireless-u79uwXL29TY76Z2rM5mHXA@public.gmane.org, Hauke Mehrtens, devicetree-u79uwXL29TY76Z2rM5mHXA On 30 September 2014 11:37, Arnd Bergmann <arnd-r2nGTMty4D4@public.gmane.org> wrote: > On Sunday 28 September 2014 10:24:01 Rafał Miłecki wrote: >> @@ -17,4 +33,12 @@ Example: >> ranges = <0x00000000 0x18000000 0x00100000>; >> #address-cells = <1>; >> #size-cells = <1>; >> + >> + chipcommon@0 { >> + gpio@0 { >> + compatible = "brcm,bus-gpio"; >> + gpio-controller; >> + #gpio-cells = <2>; >> + }; >> + }; > > I think you should list the 'reg' property of the chipcommon area > and make that match the unit address, rather than using '0', mostly > for consistency. Do you mean this chipcommon@0? We propose this foo@offset syntax since V1 which was posted 1,5 month ago, it's nothing new. > Can you have multiple gpio areas in chipcommon? If not, I'd probably > leave out the extra node and mark the chipcommon device itself as > a 'gpio-controller'. It can also be other things at the same time, > e.g. 'interrupt-controller' or provide things like pwms or pinctrl > if that's what the hardware does. No need to have separate nodes > for those if it's all the same register set. OK >> @@ -218,6 +218,11 @@ int bcma_gpio_init(struct bcma_drv_cc *cc) >> #if IS_BUILTIN(CONFIG_BCM47XX) >> chip->to_irq = bcma_gpio_to_irq; >> #endif >> +#if IS_BUILTIN(CONFIG_OF) >> + if (cc->core->bus->hosttype == BCMA_HOSTTYPE_SOC) >> + chip->of_node = of_find_compatible_node(NULL, NULL, >> + "brcm,bus-gpio"); >> +#endif > > Just commenting on the general style here, I think you can skip this > step entirely, as mentioned above. > > You should use C syntax here: > > if (IS_BUILTIN(CONFIG_OF) && cc->core->bus->hosttype == BCMA_HOSTTYPE_SOC)) > chip->of_node = of_find_compatible_node(NULL, NULL, "brcm,bus-gpio"); OK > If CONFIG_OF is not set, of_find_compatible_node() is turned into an inline > function that returns NULL, so you probably don't even need that. But I need to have of_node defined. Please check out "struct gpio_chip". > Finally, of_find_compatible_node() is a really slow operation, and "brcm,bus-gpio" > is a much too generic name. If you need to look for something that is a child > node, use something based on for_each_available_child_of_node(). Will see what I can do. -- Rafał -- To unsubscribe from this list: send the line "unsubscribe linux-wireless" in the body of a message to majordomo-u79uwXL29TY76Z2rM5mHXA@public.gmane.org More majordomo info at http://vger.kernel.org/majordomo-info.html ^ permalink raw reply [flat|nested] 15+ messages in thread
[parent not found: <CACna6ry-mmc8QD-bYUNGLfTh07TcUepjZdPYqKyxLc3HbMPung-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org>]
* Re: [PATCH V2] bcma: use device from DT (brcm, bus-gpio) for SoC GPIO chip [not found] ` <CACna6ry-mmc8QD-bYUNGLfTh07TcUepjZdPYqKyxLc3HbMPung-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org> @ 2014-09-30 10:28 ` Arnd Bergmann 0 siblings, 0 replies; 15+ messages in thread From: Arnd Bergmann @ 2014-09-30 10:28 UTC (permalink / raw) To: Rafał Miłecki Cc: linux-arm-kernel-IAPFreCvJWM7uuMidbF8XUB+6BGkLq7r@public.gmane.org, John W. Linville, linux-wireless-u79uwXL29TY76Z2rM5mHXA@public.gmane.org, Hauke Mehrtens, devicetree-u79uwXL29TY76Z2rM5mHXA On Tuesday 30 September 2014 11:56:20 Rafał Miłecki wrote: > On 30 September 2014 11:37, Arnd Bergmann <arnd-r2nGTMty4D4@public.gmane.org> wrote: > > On Sunday 28 September 2014 10:24:01 Rafał Miłecki wrote: > >> @@ -17,4 +33,12 @@ Example: > >> ranges = <0x00000000 0x18000000 0x00100000>; > >> #address-cells = <1>; > >> #size-cells = <1>; > >> + > >> + chipcommon@0 { > >> + gpio@0 { > >> + compatible = "brcm,bus-gpio"; > >> + gpio-controller; > >> + #gpio-cells = <2>; > >> + }; > >> + }; > > > > I think you should list the 'reg' property of the chipcommon area > > and make that match the unit address, rather than using '0', mostly > > for consistency. > > Do you mean this chipcommon@0? We propose this foo@offset syntax since > V1 which was posted 1,5 month ago, it's nothing new. Is 'chipcommon' at the start of the 0x18000000 range? If so, that's great, but it would still be good to have the 'reg' property in there explicitly. > >> @@ -218,6 +218,11 @@ int bcma_gpio_init(struct bcma_drv_cc *cc) > >> #if IS_BUILTIN(CONFIG_BCM47XX) > >> chip->to_irq = bcma_gpio_to_irq; > >> #endif > >> +#if IS_BUILTIN(CONFIG_OF) > >> + if (cc->core->bus->hosttype == BCMA_HOSTTYPE_SOC) > >> + chip->of_node = of_find_compatible_node(NULL, NULL, > >> + "brcm,bus-gpio"); > >> +#endif > > > > Just commenting on the general style here, I think you can skip this > > step entirely, as mentioned above. > > > > You should use C syntax here: > > > > if (IS_BUILTIN(CONFIG_OF) && cc->core->bus->hosttype == BCMA_HOSTTYPE_SOC)) > > chip->of_node = of_find_compatible_node(NULL, NULL, "brcm,bus-gpio"); > > OK > > > > If CONFIG_OF is not set, of_find_compatible_node() is turned into an inline > > function that returns NULL, so you probably don't even need that. > > But I need to have of_node defined. Please check out "struct gpio_chip". I see. This is something we might want to change, but you don't need to bother with it now, so just leave this part as it is. > > Finally, of_find_compatible_node() is a really slow operation, and "brcm,bus-gpio" > > is a much too generic name. If you need to look for something that is a child > > node, use something based on for_each_available_child_of_node(). > > Will see what I can do. ok, thanks. Arnd -- To unsubscribe from this list: send the line "unsubscribe linux-wireless" in the body of a message to majordomo-u79uwXL29TY76Z2rM5mHXA@public.gmane.org More majordomo info at http://vger.kernel.org/majordomo-info.html ^ permalink raw reply [flat|nested] 15+ messages in thread
* [PATCH V3] bcma: use device from DT (brcm,bus-chipcommon) for SoC GPIO chip [not found] ` <1411892641-5662-1-git-send-email-zajec5-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org> 2014-09-30 9:37 ` [PATCH V2] bcma: use device from DT (brcm, bus-gpio) " Arnd Bergmann @ 2014-09-30 10:22 ` Rafał Miłecki [not found] ` <1412072546-3529-1-git-send-email-zajec5-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org> 1 sibling, 1 reply; 15+ messages in thread From: Rafał Miłecki @ 2014-09-30 10:22 UTC (permalink / raw) To: John W. Linville, linux-wireless-u79uwXL29TY76Z2rM5mHXA Cc: Hauke Mehrtens, linux-arm-kernel-IAPFreCvJWM7uuMidbF8XUB+6BGkLq7r, arnd-r2nGTMty4D4, devicetree-u79uwXL29TY76Z2rM5mHXA, Rafał Miłecki This will allow us to define GPIO-attached devices (LEDs, buttons) in the the device tree. Signed-off-by: Rafał Miłecki <zajec5-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org> --- This is based on top of [PATCH v6] bcma: register bcma as device tree driver that I hope will reach wireless-next git tree. V2: Describe axi chilren and make gpio a child of chipcommon core. V3: Make chipcommon a GPIO controller (avoid extra sub-child) Speed up finding OF node in driver_gpio.c --- Documentation/devicetree/bindings/bus/bcma.txt | 13 +++++++++++++ drivers/bcma/driver_gpio.c | 6 ++++++ 2 files changed, 19 insertions(+) diff --git a/Documentation/devicetree/bindings/bus/bcma.txt b/Documentation/devicetree/bindings/bus/bcma.txt index e9070c1..0538692 100644 --- a/Documentation/devicetree/bindings/bus/bcma.txt +++ b/Documentation/devicetree/bindings/bus/bcma.txt @@ -9,6 +9,11 @@ Required properties: The cores on the AXI bus are automatically detected by bcma with the memory ranges they are using and they get registered afterwards. +The top-level axi bus may contain children representing attached cores +(devices). This is needed since some hardware details can't be auto +detected (e.g. IRQ numbers). Also some of the cores may be responsible +for extra things, e.g. ChipCommon providing access to the GPIO chip. + Example: axi@18000000 { @@ -17,4 +22,12 @@ Example: ranges = <0x00000000 0x18000000 0x00100000>; #address-cells = <1>; #size-cells = <1>; + + chipcommon { + compatible = "brcm,bus-chipcommon"; + reg = <0x00000000 0x1000>; + + gpio-controller; + #gpio-cells = <2>; + }; }; diff --git a/drivers/bcma/driver_gpio.c b/drivers/bcma/driver_gpio.c index 8ea497c..28bdbe5 100644 --- a/drivers/bcma/driver_gpio.c +++ b/drivers/bcma/driver_gpio.c @@ -218,6 +218,12 @@ int bcma_gpio_init(struct bcma_drv_cc *cc) #if IS_BUILTIN(CONFIG_BCM47XX) chip->to_irq = bcma_gpio_to_irq; #endif +#if IS_BUILTIN(CONFIG_OF) + if (cc->core->bus->hosttype == BCMA_HOSTTYPE_SOC) + chip->of_node = of_find_compatible_node( + bus->host_pdev->dev.of_node, NULL, + "brcm,bus-chipcommon"); +#endif switch (cc->core->bus->chipinfo.id) { case BCMA_CHIP_ID_BCM5357: case BCMA_CHIP_ID_BCM53572: -- 1.8.4.5 -- To unsubscribe from this list: send the line "unsubscribe linux-wireless" in the body of a message to majordomo-u79uwXL29TY76Z2rM5mHXA@public.gmane.org More majordomo info at http://vger.kernel.org/majordomo-info.html ^ permalink raw reply related [flat|nested] 15+ messages in thread
[parent not found: <1412072546-3529-1-git-send-email-zajec5-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org>]
* Re: [PATCH V3] bcma: use device from DT (brcm, bus-chipcommon) for SoC GPIO chip [not found] ` <1412072546-3529-1-git-send-email-zajec5-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org> @ 2014-09-30 10:36 ` Arnd Bergmann 2014-09-30 10:41 ` Rafał Miłecki 2014-09-30 10:55 ` [PATCH V4] bcma: use chipcommon node from DT " Rafał Miłecki 1 sibling, 1 reply; 15+ messages in thread From: Arnd Bergmann @ 2014-09-30 10:36 UTC (permalink / raw) To: linux-arm-kernel-IAPFreCvJWM7uuMidbF8XUB+6BGkLq7r Cc: Rafał Miłecki, John W. Linville, linux-wireless-u79uwXL29TY76Z2rM5mHXA, Hauke Mehrtens, devicetree-u79uwXL29TY76Z2rM5mHXA On Tuesday 30 September 2014 12:22:26 Rafał Miłecki wrote: > > +The top-level axi bus may contain children representing attached cores > +(devices). This is needed since some hardware details can't be auto > +detected (e.g. IRQ numbers). Also some of the cores may be responsible > +for extra things, e.g. ChipCommon providing access to the GPIO chip. > + > Example: > > axi@18000000 { > @@ -17,4 +22,12 @@ Example: > ranges = <0x00000000 0x18000000 0x00100000>; > #address-cells = <1>; > #size-cells = <1>; > + > + chipcommon { > + compatible = "brcm,bus-chipcommon"; > + reg = <0x00000000 0x1000>; > + > + gpio-controller; > + #gpio-cells = <2>; > + }; > }; Looks good. > diff --git a/drivers/bcma/driver_gpio.c b/drivers/bcma/driver_gpio.c > index 8ea497c..28bdbe5 100644 > --- a/drivers/bcma/driver_gpio.c > +++ b/drivers/bcma/driver_gpio.c > @@ -218,6 +218,12 @@ int bcma_gpio_init(struct bcma_drv_cc *cc) > #if IS_BUILTIN(CONFIG_BCM47XX) > chip->to_irq = bcma_gpio_to_irq; > #endif > +#if IS_BUILTIN(CONFIG_OF) > + if (cc->core->bus->hosttype == BCMA_HOSTTYPE_SOC) > + chip->of_node = of_find_compatible_node( > + bus->host_pdev->dev.of_node, NULL, > + "brcm,bus-chipcommon"); > +#endif > switch (cc->core->bus->chipinfo.id) { This doesn't: you are now searching through all nodes starting at the axi node rather than searching just through the children. I think it would be better with the first change in place to set chip->of_node to cc->core->dev.of_node, and set that pointer in bcma_bus_scan by matching the 'reg' number. I think that is what an earlier version of the bcma DT support did in order to find the IRQs. We no longer need it for that purpose, but it seems like a good idea anyway, as I expect other bcma_devices to have similar requirements to add additional properties. Arnd -- To unsubscribe from this list: send the line "unsubscribe linux-wireless" in the body of a message to majordomo-u79uwXL29TY76Z2rM5mHXA@public.gmane.org More majordomo info at http://vger.kernel.org/majordomo-info.html ^ permalink raw reply [flat|nested] 15+ messages in thread
* Re: [PATCH V3] bcma: use device from DT (brcm, bus-chipcommon) for SoC GPIO chip 2014-09-30 10:36 ` [PATCH V3] bcma: use device from DT (brcm, bus-chipcommon) " Arnd Bergmann @ 2014-09-30 10:41 ` Rafał Miłecki 0 siblings, 0 replies; 15+ messages in thread From: Rafał Miłecki @ 2014-09-30 10:41 UTC (permalink / raw) To: Arnd Bergmann Cc: linux-arm-kernel-IAPFreCvJWM7uuMidbF8XUB+6BGkLq7r@public.gmane.org, John W. Linville, linux-wireless-u79uwXL29TY76Z2rM5mHXA@public.gmane.org, Hauke Mehrtens, devicetree-u79uwXL29TY76Z2rM5mHXA On 30 September 2014 12:36, Arnd Bergmann <arnd-r2nGTMty4D4@public.gmane.org> wrote: > On Tuesday 30 September 2014 12:22:26 Rafał Miłecki wrote: >> @@ -218,6 +218,12 @@ int bcma_gpio_init(struct bcma_drv_cc *cc) >> #if IS_BUILTIN(CONFIG_BCM47XX) >> chip->to_irq = bcma_gpio_to_irq; >> #endif >> +#if IS_BUILTIN(CONFIG_OF) >> + if (cc->core->bus->hosttype == BCMA_HOSTTYPE_SOC) >> + chip->of_node = of_find_compatible_node( >> + bus->host_pdev->dev.of_node, NULL, >> + "brcm,bus-chipcommon"); >> +#endif >> switch (cc->core->bus->chipinfo.id) { > > This doesn't: you are now searching through all nodes starting at the > axi node rather than searching just through the children. > > I think it would be better with the first change in place to set > chip->of_node to cc->core->dev.of_node, and set that pointer in > bcma_bus_scan by matching the 'reg' number. I think that is what > an earlier version of the bcma DT support did in order to find the > IRQs. We no longer need it for that purpose, but it seems like a > good idea anyway, as I expect other bcma_devices to have similar > requirements to add additional properties. Ohh, of course, I didn't notice that [PATCH v6] bcma: register bcma as device tree driver already contains bcma_of_fill_device. This will simplify my search a lot! -- Rafał -- To unsubscribe from this list: send the line "unsubscribe linux-wireless" in the body of a message to majordomo-u79uwXL29TY76Z2rM5mHXA@public.gmane.org More majordomo info at http://vger.kernel.org/majordomo-info.html ^ permalink raw reply [flat|nested] 15+ messages in thread
* [PATCH V4] bcma: use chipcommon node from DT for SoC GPIO chip [not found] ` <1412072546-3529-1-git-send-email-zajec5-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org> 2014-09-30 10:36 ` [PATCH V3] bcma: use device from DT (brcm, bus-chipcommon) " Arnd Bergmann @ 2014-09-30 10:55 ` Rafał Miłecki [not found] ` <1412074548-14614-1-git-send-email-zajec5-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org> 1 sibling, 1 reply; 15+ messages in thread From: Rafał Miłecki @ 2014-09-30 10:55 UTC (permalink / raw) To: John W. Linville, linux-wireless-u79uwXL29TY76Z2rM5mHXA Cc: Hauke Mehrtens, linux-arm-kernel-IAPFreCvJWM7uuMidbF8XUB+6BGkLq7r, arnd-r2nGTMty4D4, devicetree-u79uwXL29TY76Z2rM5mHXA, Rafał Miłecki This will allow us to define GPIO-attached devices (LEDs, buttons) in the the device tree. Signed-off-by: Rafał Miłecki <zajec5-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org> --- This is based on top of [PATCH v6] bcma: register bcma as device tree driver that I hope will reach wireless-next git tree. V2: Describe axi chilren and make gpio a child of chipcommon core. V3: Make chipcommon a GPIO controller (avoid extra sub-child) Speed up finding OF node in driver_gpio.c V4: Simplify setting of_node in driver_gpio.c --- Documentation/devicetree/bindings/bus/bcma.txt | 12 ++++++++++++ drivers/bcma/driver_gpio.c | 4 ++++ 2 files changed, 16 insertions(+) diff --git a/Documentation/devicetree/bindings/bus/bcma.txt b/Documentation/devicetree/bindings/bus/bcma.txt index e9070c1..62a4834 100644 --- a/Documentation/devicetree/bindings/bus/bcma.txt +++ b/Documentation/devicetree/bindings/bus/bcma.txt @@ -9,6 +9,11 @@ Required properties: The cores on the AXI bus are automatically detected by bcma with the memory ranges they are using and they get registered afterwards. +The top-level axi bus may contain children representing attached cores +(devices). This is needed since some hardware details can't be auto +detected (e.g. IRQ numbers). Also some of the cores may be responsible +for extra things, e.g. ChipCommon providing access to the GPIO chip. + Example: axi@18000000 { @@ -17,4 +22,11 @@ Example: ranges = <0x00000000 0x18000000 0x00100000>; #address-cells = <1>; #size-cells = <1>; + + chipcommon { + reg = <0x00000000 0x1000>; + + gpio-controller; + #gpio-cells = <2>; + }; }; diff --git a/drivers/bcma/driver_gpio.c b/drivers/bcma/driver_gpio.c index 8ea497c..57ce5fe 100644 --- a/drivers/bcma/driver_gpio.c +++ b/drivers/bcma/driver_gpio.c @@ -218,6 +218,10 @@ int bcma_gpio_init(struct bcma_drv_cc *cc) #if IS_BUILTIN(CONFIG_BCM47XX) chip->to_irq = bcma_gpio_to_irq; #endif +#if IS_BUILTIN(CONFIG_OF) + if (cc->core->bus->hosttype == BCMA_HOSTTYPE_SOC) + chip->of_node = cc->core->dev.of_node; +#endif switch (cc->core->bus->chipinfo.id) { case BCMA_CHIP_ID_BCM5357: case BCMA_CHIP_ID_BCM53572: -- 1.8.4.5 -- To unsubscribe from this list: send the line "unsubscribe linux-wireless" in the body of a message to majordomo-u79uwXL29TY76Z2rM5mHXA@public.gmane.org More majordomo info at http://vger.kernel.org/majordomo-info.html ^ permalink raw reply related [flat|nested] 15+ messages in thread
[parent not found: <1412074548-14614-1-git-send-email-zajec5-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org>]
* Re: [PATCH V4] bcma: use chipcommon node from DT for SoC GPIO chip [not found] ` <1412074548-14614-1-git-send-email-zajec5-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org> @ 2014-09-30 11:08 ` Arnd Bergmann 0 siblings, 0 replies; 15+ messages in thread From: Arnd Bergmann @ 2014-09-30 11:08 UTC (permalink / raw) To: Rafał Miłecki Cc: John W. Linville, linux-wireless-u79uwXL29TY76Z2rM5mHXA, Hauke Mehrtens, linux-arm-kernel-IAPFreCvJWM7uuMidbF8XUB+6BGkLq7r, devicetree-u79uwXL29TY76Z2rM5mHXA On Tuesday 30 September 2014 12:55:48 Rafał Miłecki wrote: > This will allow us to define GPIO-attached devices (LEDs, buttons) in > the the device tree. > > Signed-off-by: Rafał Miłecki <zajec5-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org> > --- > This is based on top of > [PATCH v6] bcma: register bcma as device tree driver > that I hope will reach wireless-next git tree. > > V2: Describe axi chilren and make gpio a child of chipcommon core. > V3: Make chipcommon a GPIO controller (avoid extra sub-child) > Speed up finding OF node in driver_gpio.c > V4: Simplify setting of_node in driver_gpio.c > Acked-by: Arnd Bergmann <arnd-r2nGTMty4D4@public.gmane.org> -- To unsubscribe from this list: send the line "unsubscribe linux-wireless" in the body of a message to majordomo-u79uwXL29TY76Z2rM5mHXA@public.gmane.org More majordomo info at http://vger.kernel.org/majordomo-info.html ^ permalink raw reply [flat|nested] 15+ messages in thread
end of thread, other threads:[~2014-09-30 11:08 UTC | newest] Thread overview: 15+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2014-09-26 14:28 [PATCH] bcma: use device from DT (brcm,bus-gpio) for SoC GPIO chip Rafał Miłecki [not found] ` <1411741733-13888-1-git-send-email-zajec5-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org> 2014-09-26 22:03 ` Arnd Bergmann 2014-09-27 8:05 ` Rafał Miłecki [not found] ` <CACna6rwwfJOdnxhmnW7MUuUC1YBPx8bmDbiaSy1+G39hF4p7OA-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org> 2014-09-27 8:33 ` Hauke Mehrtens [not found] ` <54267661.5000401-5/S+JYg5SzeELgA04lAiVw@public.gmane.org> 2014-09-27 10:37 ` Rafał Miłecki [not found] ` <CACna6rwYcSh7-uFYA+paNehNwrqddmn2az+a9ZwggVGofbDR7w-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org> 2014-09-27 20:47 ` Hauke Mehrtens 2014-09-28 8:24 ` [PATCH V2] " Rafał Miłecki [not found] ` <1411892641-5662-1-git-send-email-zajec5-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org> 2014-09-30 9:37 ` [PATCH V2] bcma: use device from DT (brcm, bus-gpio) " Arnd Bergmann 2014-09-30 9:56 ` Rafał Miłecki [not found] ` <CACna6ry-mmc8QD-bYUNGLfTh07TcUepjZdPYqKyxLc3HbMPung-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org> 2014-09-30 10:28 ` Arnd Bergmann 2014-09-30 10:22 ` [PATCH V3] bcma: use device from DT (brcm,bus-chipcommon) " Rafał Miłecki [not found] ` <1412072546-3529-1-git-send-email-zajec5-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org> 2014-09-30 10:36 ` [PATCH V3] bcma: use device from DT (brcm, bus-chipcommon) " Arnd Bergmann 2014-09-30 10:41 ` Rafał Miłecki 2014-09-30 10:55 ` [PATCH V4] bcma: use chipcommon node from DT " Rafał Miłecki [not found] ` <1412074548-14614-1-git-send-email-zajec5-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org> 2014-09-30 11:08 ` Arnd Bergmann
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).