* Re: [PATCH v6 1/3] USB: chipidea: add imx usbmisc support [not found] ` <20120828145151.GJ10429-bIcnvbaLZ9MEGnE8C9+IrQ@public.gmane.org> @ 2012-08-29 2:55 ` Richard Zhao 0 siblings, 0 replies; 11+ messages in thread From: Richard Zhao @ 2012-08-29 2:55 UTC (permalink / raw) To: Michael Grzeschik Cc: marex-ynQEQJNshbs, B20596-KZfg59tc24xl57MIdRCFDg, dong.aisheng-QSEj5FYQhm4dnm+yROfE0A, fabio.estevam-KZfg59tc24xl57MIdRCFDg, alexander.shishkin-VuQAYsv1563Yd54FQh9/CA, B29397-KZfg59tc24xl57MIdRCFDg, devicetree-discuss-uLR06cmDAlY/bJ5BZ2RsiQ, linux-usb-u79uwXL29TY76Z2rM5mHXA, balbi-l0cyMroinI0, stern-nwvwT67g6+6dFdvTe/nMLpVzexx5G7lz, kernel-bIcnvbaLZ9MEGnE8C9+IrQ, gregkh-hQyY1W1yCW8ekmWlsbkhG0B+6BGkLq7r, mkl-bIcnvbaLZ9MEGnE8C9+IrQ, linux-arm-kernel-IAPFreCvJWM7uuMidbF8XUB+6BGkLq7r, linuxzsc-Re5JQEeQqe8AvxtiuMwx3w On Tue, Aug 28, 2012 at 04:51:51PM +0200, Michael Grzeschik wrote: > Hi, > > On Tue, Aug 28, 2012 at 02:58:27PM +0800, Richard Zhao wrote: > > i.MX usb controllers shares non-core registers, which may include > > SoC specific controls. We take it as a usbmisc device and usbmisc > > driver set operations needed by ci13xxx_imx driver. > > > > For example, Sabrelite board has bad over-current design, we can > > usbmisc to disable over-current detect. > > > > Signed-off-by: Richard Zhao <richard.zhao-KZfg59tc24xl57MIdRCFDg@public.gmane.org> > > Acked-by: Sascha Hauer <s.hauer-bIcnvbaLZ9MEGnE8C9+IrQ@public.gmane.org> > > --- > > .../devicetree/bindings/usb/ci13xxx-imx.txt | 5 + > > .../devicetree/bindings/usb/usbmisc-imx.txt | 14 ++ > > drivers/usb/chipidea/Makefile | 2 +- > > drivers/usb/chipidea/ci13xxx_imx.c | 64 ++++++++ > > drivers/usb/chipidea/ci13xxx_imx.h | 28 ++++ > > drivers/usb/chipidea/usbmisc_imx6q.c | 162 ++++++++++++++++++++ > > 6 files changed, 274 insertions(+), 1 deletion(-) > > create mode 100644 Documentation/devicetree/bindings/usb/usbmisc-imx.txt > > create mode 100644 drivers/usb/chipidea/ci13xxx_imx.h > > create mode 100644 drivers/usb/chipidea/usbmisc_imx6q.c > > > > diff --git a/Documentation/devicetree/bindings/usb/ci13xxx-imx.txt b/Documentation/devicetree/bindings/usb/ci13xxx-imx.txt > > index 2c29041..5778b9c 100644 > > --- a/Documentation/devicetree/bindings/usb/ci13xxx-imx.txt > > +++ b/Documentation/devicetree/bindings/usb/ci13xxx-imx.txt > > @@ -7,7 +7,10 @@ Required properties: > > > > Optional properties: > > - fsl,usbphy: phandler of usb phy that connects to the only one port > > +- fsl,usbmisc: phandler of non-core register device, with one argument > > + that indicate usb controller index > > - vbus-supply: regulator for vbus > > +- disable-over-current: disable over current detect > > > > Examples: > > usb@02184000 { /* USB OTG */ > > @@ -15,4 +18,6 @@ usb@02184000 { /* USB OTG */ > > reg = <0x02184000 0x200>; > > interrupts = <0 43 0x04>; > > fsl,usbphy = <&usbphy1>; > > + fsl,usbmisc = <&usbmisc 0>; > > + disable-over-current; > > }; > > diff --git a/Documentation/devicetree/bindings/usb/usbmisc-imx.txt b/Documentation/devicetree/bindings/usb/usbmisc-imx.txt > > new file mode 100644 > > index 0000000..97ce94e > > --- /dev/null > > +++ b/Documentation/devicetree/bindings/usb/usbmisc-imx.txt > > @@ -0,0 +1,14 @@ > > +* Freescale i.MX non-core registers > > + > > +Required properties: > > +- #index-cells: Cells used to descibe usb controller index. Should be <1> > > +- compatible: Should be one of below: > > + "fsl,imx6q-usbmisc" for imx6q > > +- reg: Should contain registers location and length > > + > > +Examples: > > +usbmisc@02184800 { > > + #index-cells = <1>; > > + compatible = "fsl,imx6q-usbmisc"; > > + reg = <0x02184800 0x200>; > > +}; > > i think we should have the devicetree-discuss Mailinglist in Cc: for > that. ccing devicetree-discuss ... Thanks Richard > > Thanks, > Michael > > -- > Pengutronix e.K. | | > Industrial Linux Solutions | http://www.pengutronix.de/ | > Peiner Str. 6-8, 31137 Hildesheim, Germany | Phone: +49-5121-206917-0 | > Amtsgericht Hildesheim, HRA 2686 | Fax: +49-5121-206917-5555 | > -- > To unsubscribe from this list: send the line "unsubscribe linux-usb" 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] 11+ messages in thread
[parent not found: <1346137109-32247-2-git-send-email-richard.zhao-KZfg59tc24xl57MIdRCFDg@public.gmane.org>]
* Re: [PATCH v6 1/3] USB: chipidea: add imx usbmisc support [not found] ` <1346137109-32247-2-git-send-email-richard.zhao-KZfg59tc24xl57MIdRCFDg@public.gmane.org> @ 2012-08-29 7:50 ` Alexander Shishkin [not found] ` <871uiqkuhb.fsf-qxRn5AmX6ZD9BXuAQUXR0fooFf0ArEBIu+b9c/7xato@public.gmane.org> 0 siblings, 1 reply; 11+ messages in thread From: Alexander Shishkin @ 2012-08-29 7:50 UTC (permalink / raw) To: linux-usb-u79uwXL29TY76Z2rM5mHXA, linux-arm-kernel-IAPFreCvJWM7uuMidbF8XUB+6BGkLq7r Cc: B29397-KZfg59tc24xl57MIdRCFDg, B20596-KZfg59tc24xl57MIdRCFDg, marex-ynQEQJNshbs, shawn.guo-QSEj5FYQhm4dnm+yROfE0A, kernel-bIcnvbaLZ9MEGnE8C9+IrQ, gregkh-hQyY1W1yCW8ekmWlsbkhG0B+6BGkLq7r, fabio.estevam-KZfg59tc24xl57MIdRCFDg, dong.aisheng-QSEj5FYQhm4dnm+yROfE0A, stern-nwvwT67g6+6dFdvTe/nMLpVzexx5G7lz, richard.zhao-KZfg59tc24xl57MIdRCFDg, linuxzsc-Re5JQEeQqe8AvxtiuMwx3w, balbi-l0cyMroinI0, mkl-bIcnvbaLZ9MEGnE8C9+IrQ, devicetree-discuss-uLR06cmDAlY/bJ5BZ2RsiQ Richard Zhao <richard.zhao-KZfg59tc24xl57MIdRCFDg@public.gmane.org> writes: > i.MX usb controllers shares non-core registers, which may include > SoC specific controls. We take it as a usbmisc device and usbmisc > driver set operations needed by ci13xxx_imx driver. > > For example, Sabrelite board has bad over-current design, we can > usbmisc to disable over-current detect. Why does this have to be part of the usb driver instead of SoC specific code? It looks like you've created a whole new device/driver infrastructure just to disable overcurrent for a specific board. And the infrastructure boils down to a complex way of passing a callback from imx driver to another imx driver, that only works if they are probed in the right order. I don't see any point in doing it like this other than inflating the device tree tables even further. Why can't this be part of the SoC code like it is done, for example in arch/arm/mach-omap2/control.c? Regards, -- Alex > Signed-off-by: Richard Zhao <richard.zhao-KZfg59tc24xl57MIdRCFDg@public.gmane.org> > Acked-by: Sascha Hauer <s.hauer-bIcnvbaLZ9MEGnE8C9+IrQ@public.gmane.org> > --- > .../devicetree/bindings/usb/ci13xxx-imx.txt | 5 + > .../devicetree/bindings/usb/usbmisc-imx.txt | 14 ++ > drivers/usb/chipidea/Makefile | 2 +- > drivers/usb/chipidea/ci13xxx_imx.c | 64 ++++++++ > drivers/usb/chipidea/ci13xxx_imx.h | 28 ++++ > drivers/usb/chipidea/usbmisc_imx6q.c | 162 ++++++++++++++++++++ > 6 files changed, 274 insertions(+), 1 deletion(-) > create mode 100644 Documentation/devicetree/bindings/usb/usbmisc-imx.txt > create mode 100644 drivers/usb/chipidea/ci13xxx_imx.h > create mode 100644 drivers/usb/chipidea/usbmisc_imx6q.c > > diff --git a/Documentation/devicetree/bindings/usb/ci13xxx-imx.txt b/Documentation/devicetree/bindings/usb/ci13xxx-imx.txt > index 2c29041..5778b9c 100644 > --- a/Documentation/devicetree/bindings/usb/ci13xxx-imx.txt > +++ b/Documentation/devicetree/bindings/usb/ci13xxx-imx.txt > @@ -7,7 +7,10 @@ Required properties: > > Optional properties: > - fsl,usbphy: phandler of usb phy that connects to the only one port > +- fsl,usbmisc: phandler of non-core register device, with one argument > + that indicate usb controller index > - vbus-supply: regulator for vbus > +- disable-over-current: disable over current detect > > Examples: > usb@02184000 { /* USB OTG */ > @@ -15,4 +18,6 @@ usb@02184000 { /* USB OTG */ > reg = <0x02184000 0x200>; > interrupts = <0 43 0x04>; > fsl,usbphy = <&usbphy1>; > + fsl,usbmisc = <&usbmisc 0>; > + disable-over-current; > }; > diff --git a/Documentation/devicetree/bindings/usb/usbmisc-imx.txt b/Documentation/devicetree/bindings/usb/usbmisc-imx.txt > new file mode 100644 > index 0000000..97ce94e > --- /dev/null > +++ b/Documentation/devicetree/bindings/usb/usbmisc-imx.txt > @@ -0,0 +1,14 @@ > +* Freescale i.MX non-core registers > + > +Required properties: > +- #index-cells: Cells used to descibe usb controller index. Should be <1> > +- compatible: Should be one of below: > + "fsl,imx6q-usbmisc" for imx6q > +- reg: Should contain registers location and length > + > +Examples: > +usbmisc@02184800 { > + #index-cells = <1>; > + compatible = "fsl,imx6q-usbmisc"; > + reg = <0x02184800 0x200>; > +}; > diff --git a/drivers/usb/chipidea/Makefile b/drivers/usb/chipidea/Makefile > index 5c66d9c..57e510f 100644 > --- a/drivers/usb/chipidea/Makefile > +++ b/drivers/usb/chipidea/Makefile > @@ -15,5 +15,5 @@ ifneq ($(CONFIG_PCI),) > endif > > ifneq ($(CONFIG_OF_DEVICE),) > - obj-$(CONFIG_USB_CHIPIDEA) += ci13xxx_imx.o > + obj-$(CONFIG_USB_CHIPIDEA) += ci13xxx_imx.o usbmisc_imx6q.o > endif > diff --git a/drivers/usb/chipidea/ci13xxx_imx.c b/drivers/usb/chipidea/ci13xxx_imx.c > index ef60d06..96ac67b 100644 > --- a/drivers/usb/chipidea/ci13xxx_imx.c > +++ b/drivers/usb/chipidea/ci13xxx_imx.c > @@ -22,6 +22,7 @@ > #include <linux/regulator/consumer.h> > > #include "ci.h" > +#include "ci13xxx_imx.h" > > #define pdev_to_phy(pdev) \ > ((struct usb_phy *)platform_get_drvdata(pdev)) > @@ -34,6 +35,55 @@ struct ci13xxx_imx_data { > struct regulator *reg_vbus; > }; > > +static const struct usbmisc_ops *usbmisc_ops; > + > +/* Common functions shared by usbmisc drivers */ > + > +int usbmisc_set_ops(const struct usbmisc_ops *ops) > +{ > + if (usbmisc_ops) > + return -EBUSY; > + > + usbmisc_ops = ops; > + > + return 0; > +} > +EXPORT_SYMBOL_GPL(usbmisc_set_ops); > + > +void usbmisc_unset_ops(const struct usbmisc_ops *ops) > +{ > + usbmisc_ops = NULL; > +} > +EXPORT_SYMBOL_GPL(usbmisc_unset_ops); > + > +int usbmisc_get_init_data(struct device *dev, struct usbmisc_usb_device *usbdev) > +{ > + struct device_node *np = dev->of_node; > + struct of_phandle_args args; > + int ret; > + > + usbdev->dev = dev; > + > + ret = of_parse_phandle_with_args(np, "fsl,usbmisc", "#index-cells", > + 0, &args); > + if (ret) { > + dev_err(dev, "Failed to parse property fsl,usbmisc, errno %d\n", > + ret); > + memset(usbdev, 0, sizeof(*usbdev)); > + return ret; > + } > + usbdev->index = args.args[0]; > + of_node_put(args.np); > + > + if (of_find_property(np, "disable-over-current", NULL)) > + usbdev->disable_oc = 1; > + > + return 0; > +} > +EXPORT_SYMBOL_GPL(usbmisc_get_init_data); > + > +/* End of common functions shared by usbmisc drivers*/ > + > static struct ci13xxx_platform_data ci13xxx_imx_platdata __devinitdata = { > .name = "ci13xxx_imx", > .flags = CI13XXX_REQUIRE_TRANSCEIVER | > @@ -51,6 +101,10 @@ static int __devinit ci13xxx_imx_probe(struct platform_device *pdev) > struct regulator *reg_vbus; > int ret; > > + if (of_find_property(pdev->dev.of_node, "fsl,usbmisc", NULL) > + && !usbmisc_ops) > + return -EPROBE_DEFER; > + > data = devm_kzalloc(&pdev->dev, sizeof(*data), GFP_KERNEL); > if (!data) { > dev_err(&pdev->dev, "Failed to allocate CI13xxx-IMX data!\n"); > @@ -120,6 +174,16 @@ static int __devinit ci13xxx_imx_probe(struct platform_device *pdev) > *pdev->dev.dma_mask = DMA_BIT_MASK(32); > dma_set_coherent_mask(&pdev->dev, *pdev->dev.dma_mask); > } > + > + if (usbmisc_ops && usbmisc_ops->init) { > + ret = usbmisc_ops->init(&pdev->dev); > + if (ret) { > + dev_err(&pdev->dev, > + "usbmisc init failed, ret=%d\n", ret); > + goto err; > + } > + } > + > plat_ci = ci13xxx_add_device(&pdev->dev, > pdev->resource, pdev->num_resources, > &ci13xxx_imx_platdata); > diff --git a/drivers/usb/chipidea/ci13xxx_imx.h b/drivers/usb/chipidea/ci13xxx_imx.h > new file mode 100644 > index 0000000..2e88acc > --- /dev/null > +++ b/drivers/usb/chipidea/ci13xxx_imx.h > @@ -0,0 +1,28 @@ > +/* > + * Copyright 2012 Freescale Semiconductor, Inc. > + * > + * The code contained herein is licensed under the GNU General Public > + * License. You may obtain a copy of the GNU General Public License > + * Version 2 or later at the following locations: > + * > + * http://www.opensource.org/licenses/gpl-license.html > + * http://www.gnu.org/copyleft/gpl.html > + */ > + > +/* Used to set SoC specific callbacks */ > +struct usbmisc_ops { > + /* It's called once when probe a usb device */ > + int (*init)(struct device *dev); > +}; > + > +struct usbmisc_usb_device { > + struct device *dev; /* usb controller device */ > + int index; > + > + int disable_oc:1; /* over current detect disabled */ > +}; > + > +int usbmisc_set_ops(const struct usbmisc_ops *ops); > +void usbmisc_unset_ops(const struct usbmisc_ops *ops); > +int > +usbmisc_get_init_data(struct device *dev, struct usbmisc_usb_device *usbdev); > diff --git a/drivers/usb/chipidea/usbmisc_imx6q.c b/drivers/usb/chipidea/usbmisc_imx6q.c > new file mode 100644 > index 0000000..416e3fc > --- /dev/null > +++ b/drivers/usb/chipidea/usbmisc_imx6q.c > @@ -0,0 +1,162 @@ > +/* > + * Copyright 2012 Freescale Semiconductor, Inc. > + * > + * The code contained herein is licensed under the GNU General Public > + * License. You may obtain a copy of the GNU General Public License > + * Version 2 or later at the following locations: > + * > + * http://www.opensource.org/licenses/gpl-license.html > + * http://www.gnu.org/copyleft/gpl.html > + */ > + > +#include <linux/module.h> > +#include <linux/of_platform.h> > +#include <linux/clk.h> > +#include <linux/err.h> > +#include <linux/io.h> > + > +#include "ci13xxx_imx.h" > + > +#define USB_DEV_MAX 4 > + > +#define BM_OVER_CUR_DIS BIT(7) > + > +struct imx6q_usbmisc { > + void __iomem *base; > + spinlock_t lock; > + struct clk *clk; > + struct usbmisc_usb_device usbdev[USB_DEV_MAX]; > +}; > + > +static struct imx6q_usbmisc *usbmisc; > + > +static struct usbmisc_usb_device *get_usbdev(struct device *dev) > +{ > + int i, ret; > + > + for (i = 0; i < USB_DEV_MAX; i++) { > + if (usbmisc->usbdev[i].dev == dev) > + return &usbmisc->usbdev[i]; > + else if (!usbmisc->usbdev[i].dev) > + break; > + } > + > + if (i >= USB_DEV_MAX) > + return ERR_PTR(-EBUSY); > + > + ret = usbmisc_get_init_data(dev, &usbmisc->usbdev[i]); > + if (ret) > + return ERR_PTR(ret); > + > + return &usbmisc->usbdev[i]; > +} > + > +static int usbmisc_imx6q_init(struct device *dev) > +{ > + > + struct usbmisc_usb_device *usbdev; > + unsigned long flags; > + u32 reg; > + > + usbdev = get_usbdev(dev); > + if (IS_ERR(usbdev)) > + return PTR_ERR(usbdev); > + > + if (usbdev->disable_oc) { > + spin_lock_irqsave(&usbmisc->lock, flags); > + reg = readl(usbmisc->base + usbdev->index * 4); > + writel(reg | BM_OVER_CUR_DIS, > + usbmisc->base + usbdev->index * 4); > + spin_unlock_irqrestore(&usbmisc->lock, flags); > + } > + > + return 0; > +} > + > +static const struct usbmisc_ops imx6q_usbmisc_ops = { > + .init = usbmisc_imx6q_init, > +}; > + > +static const struct of_device_id usbmisc_imx6q_dt_ids[] = { > + { .compatible = "fsl,imx6q-usbmisc"}, > + { /* sentinel */ } > +}; > + > +static int __devinit usbmisc_imx6q_probe(struct platform_device *pdev) > +{ > + struct resource *res; > + struct imx6q_usbmisc *data; > + int ret; > + > + if (usbmisc) > + return -EBUSY; > + > + data = devm_kzalloc(&pdev->dev, sizeof(*data), GFP_KERNEL); > + if (!data) > + return -ENOMEM; > + > + spin_lock_init(&data->lock); > + > + res = platform_get_resource(pdev, IORESOURCE_MEM, 0); > + data->base = devm_request_and_ioremap(&pdev->dev, res); > + if (!data->base) > + return -EADDRNOTAVAIL; > + > + data->clk = devm_clk_get(&pdev->dev, NULL); > + if (IS_ERR(data->clk)) { > + dev_err(&pdev->dev, > + "failed to get clock, err=%ld\n", PTR_ERR(data->clk)); > + return PTR_ERR(data->clk); > + } > + > + ret = clk_prepare_enable(data->clk); > + if (ret) { > + dev_err(&pdev->dev, > + "clk_prepare_enable failed, err=%d\n", ret); > + return ret; > + } > + > + ret = usbmisc_set_ops(&imx6q_usbmisc_ops); > + if (ret) { > + clk_disable_unprepare(data->clk); > + return ret; > + } > + > + usbmisc = data; > + > + return 0; > +} > + > +static int __devexit usbmisc_imx6q_remove(struct platform_device *pdev) > +{ > + usbmisc_unset_ops(&imx6q_usbmisc_ops); > + clk_disable_unprepare(usbmisc->clk); > + return 0; > +} > + > +static struct platform_driver usbmisc_imx6q_driver = { > + .probe = usbmisc_imx6q_probe, > + .remove = __devexit_p(usbmisc_imx6q_remove), > + .driver = { > + .name = "usbmisc_imx6q", > + .owner = THIS_MODULE, > + .of_match_table = usbmisc_imx6q_dt_ids, > + }, > +}; > + > +int __init usbmisc_imx6q_drv_init(void) > +{ > + return platform_driver_register(&usbmisc_imx6q_driver); > +} > +subsys_initcall(usbmisc_imx6q_drv_init); > + > +void __exit usbmisc_imx6q_drv_exit(void) > +{ > + platform_driver_unregister(&usbmisc_imx6q_driver); > +} > +module_exit(usbmisc_imx6q_drv_exit); > + > +MODULE_ALIAS("platform:usbmisc-imx6q"); > +MODULE_LICENSE("GPL v2"); > +MODULE_DESCRIPTION("driver for imx6q usb non-core registers"); > +MODULE_AUTHOR("Richard Zhao <richard.zhao-KZfg59tc24xl57MIdRCFDg@public.gmane.org>"); > -- > 1.7.9.5 -- To unsubscribe from this list: send the line "unsubscribe linux-usb" 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] 11+ messages in thread
[parent not found: <871uiqkuhb.fsf-qxRn5AmX6ZD9BXuAQUXR0fooFf0ArEBIu+b9c/7xato@public.gmane.org>]
* Re: [PATCH v6 1/3] USB: chipidea: add imx usbmisc support [not found] ` <871uiqkuhb.fsf-qxRn5AmX6ZD9BXuAQUXR0fooFf0ArEBIu+b9c/7xato@public.gmane.org> @ 2012-08-29 8:10 ` Sascha Hauer [not found] ` <20120829081020.GX26594-bIcnvbaLZ9MEGnE8C9+IrQ@public.gmane.org> 2012-08-29 8:13 ` Richard Zhao 1 sibling, 1 reply; 11+ messages in thread From: Sascha Hauer @ 2012-08-29 8:10 UTC (permalink / raw) To: Alexander Shishkin Cc: Richard Zhao, linux-usb-u79uwXL29TY76Z2rM5mHXA, linux-arm-kernel-IAPFreCvJWM7uuMidbF8XUB+6BGkLq7r, B29397-KZfg59tc24xl57MIdRCFDg, B20596-KZfg59tc24xl57MIdRCFDg, marex-ynQEQJNshbs, shawn.guo-QSEj5FYQhm4dnm+yROfE0A, kernel-bIcnvbaLZ9MEGnE8C9+IrQ, gregkh-hQyY1W1yCW8ekmWlsbkhG0B+6BGkLq7r, fabio.estevam-KZfg59tc24xl57MIdRCFDg, dong.aisheng-QSEj5FYQhm4dnm+yROfE0A, stern-nwvwT67g6+6dFdvTe/nMLpVzexx5G7lz, linuxzsc-Re5JQEeQqe8AvxtiuMwx3w, balbi-l0cyMroinI0, mkl-bIcnvbaLZ9MEGnE8C9+IrQ, devicetree-discuss-uLR06cmDAlY/bJ5BZ2RsiQ On Wed, Aug 29, 2012 at 10:50:08AM +0300, Alexander Shishkin wrote: > Richard Zhao <richard.zhao-KZfg59tc24xl57MIdRCFDg@public.gmane.org> writes: > > > i.MX usb controllers shares non-core registers, which may include > > SoC specific controls. We take it as a usbmisc device and usbmisc > > driver set operations needed by ci13xxx_imx driver. > > > > For example, Sabrelite board has bad over-current design, we can > > usbmisc to disable over-current detect. > > Why does this have to be part of the usb driver instead of SoC specific > code? It looks like you've created a whole new device/driver > infrastructure just to disable overcurrent for a specific board. Richards code indeed only handles overcurrent for a specific board, but there are more bits to configure in the longer run: power pin polarities, ULPI/serial mode select and some more. > > And the infrastructure boils down to a complex way of passing a callback > from imx driver to another imx driver, that only works if they are > probed in the right order. I don't see any point in doing it like this > other than inflating the device tree tables even further. > > Why can't this be part of the SoC code like it is done, for example in > arch/arm/mach-omap2/control.c? The settings are board specific, so there must be some way to configure them in the devicetree. Sascha -- Pengutronix e.K. | | Industrial Linux Solutions | http://www.pengutronix.de/ | Peiner Str. 6-8, 31137 Hildesheim, Germany | Phone: +49-5121-206917-0 | Amtsgericht Hildesheim, HRA 2686 | Fax: +49-5121-206917-5555 | -- To unsubscribe from this list: send the line "unsubscribe linux-usb" 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] 11+ messages in thread
[parent not found: <20120829081020.GX26594-bIcnvbaLZ9MEGnE8C9+IrQ@public.gmane.org>]
* Re: [PATCH v6 1/3] USB: chipidea: add imx usbmisc support [not found] ` <20120829081020.GX26594-bIcnvbaLZ9MEGnE8C9+IrQ@public.gmane.org> @ 2012-08-29 10:18 ` Alexander Shishkin [not found] ` <87ehmqj925.fsf-qxRn5AmX6ZD9BXuAQUXR0fooFf0ArEBIu+b9c/7xato@public.gmane.org> 0 siblings, 1 reply; 11+ messages in thread From: Alexander Shishkin @ 2012-08-29 10:18 UTC (permalink / raw) To: Sascha Hauer Cc: Richard Zhao, linux-usb-u79uwXL29TY76Z2rM5mHXA, linux-arm-kernel-IAPFreCvJWM7uuMidbF8XUB+6BGkLq7r, B29397-KZfg59tc24xl57MIdRCFDg, B20596-KZfg59tc24xl57MIdRCFDg, marex-ynQEQJNshbs, shawn.guo-QSEj5FYQhm4dnm+yROfE0A, kernel-bIcnvbaLZ9MEGnE8C9+IrQ, gregkh-hQyY1W1yCW8ekmWlsbkhG0B+6BGkLq7r, fabio.estevam-KZfg59tc24xl57MIdRCFDg, dong.aisheng-QSEj5FYQhm4dnm+yROfE0A, stern-nwvwT67g6+6dFdvTe/nMLpVzexx5G7lz, linuxzsc-Re5JQEeQqe8AvxtiuMwx3w, balbi-l0cyMroinI0, mkl-bIcnvbaLZ9MEGnE8C9+IrQ, devicetree-discuss-uLR06cmDAlY/bJ5BZ2RsiQ Sascha Hauer <s.hauer-bIcnvbaLZ9MEGnE8C9+IrQ@public.gmane.org> writes: > On Wed, Aug 29, 2012 at 10:50:08AM +0300, Alexander Shishkin wrote: >> Richard Zhao <richard.zhao-KZfg59tc24xl57MIdRCFDg@public.gmane.org> writes: >> >> > i.MX usb controllers shares non-core registers, which may include >> > SoC specific controls. We take it as a usbmisc device and usbmisc >> > driver set operations needed by ci13xxx_imx driver. >> > >> > For example, Sabrelite board has bad over-current design, we can >> > usbmisc to disable over-current detect. >> >> Why does this have to be part of the usb driver instead of SoC specific >> code? It looks like you've created a whole new device/driver >> infrastructure just to disable overcurrent for a specific board. > > Richards code indeed only handles overcurrent for a specific board, but > there are more bits to configure in the longer run: power pin > polarities, ULPI/serial mode select and some more. Sounds to me like these things that should be taken care of by the phy driver, which will likely be simpler from both driver's and devicetree's perspective. > >> >> And the infrastructure boils down to a complex way of passing a callback >> from imx driver to another imx driver, that only works if they are >> probed in the right order. I don't see any point in doing it like this >> other than inflating the device tree tables even further. >> >> Why can't this be part of the SoC code like it is done, for example in >> arch/arm/mach-omap2/control.c? > > The settings are board specific, so there must be some way to configure > them in the devicetree. But I'm sure there's a way to control board-specific settings/kludges from devicetree? Regards, -- Alex -- To unsubscribe from this list: send the line "unsubscribe linux-usb" 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] 11+ messages in thread
[parent not found: <87ehmqj925.fsf-qxRn5AmX6ZD9BXuAQUXR0fooFf0ArEBIu+b9c/7xato@public.gmane.org>]
* Re: [PATCH v6 1/3] USB: chipidea: add imx usbmisc support [not found] ` <87ehmqj925.fsf-qxRn5AmX6ZD9BXuAQUXR0fooFf0ArEBIu+b9c/7xato@public.gmane.org> @ 2012-08-29 10:57 ` Richard Zhao 2012-08-29 11:01 ` Sascha Hauer 1 sibling, 0 replies; 11+ messages in thread From: Richard Zhao @ 2012-08-29 10:57 UTC (permalink / raw) To: Alexander Shishkin Cc: marex-ynQEQJNshbs, B20596-KZfg59tc24xl57MIdRCFDg, dong.aisheng-QSEj5FYQhm4dnm+yROfE0A, fabio.estevam-KZfg59tc24xl57MIdRCFDg, B29397-KZfg59tc24xl57MIdRCFDg, Sascha Hauer, linux-usb-u79uwXL29TY76Z2rM5mHXA, balbi-l0cyMroinI0, stern-nwvwT67g6+6dFdvTe/nMLpVzexx5G7lz, kernel-bIcnvbaLZ9MEGnE8C9+IrQ, gregkh-hQyY1W1yCW8ekmWlsbkhG0B+6BGkLq7r, mkl-bIcnvbaLZ9MEGnE8C9+IrQ, devicetree-discuss-uLR06cmDAlY/bJ5BZ2RsiQ, linux-arm-kernel-IAPFreCvJWM7uuMidbF8XUB+6BGkLq7r, linuxzsc-Re5JQEeQqe8AvxtiuMwx3w On Wed, Aug 29, 2012 at 01:18:10PM +0300, Alexander Shishkin wrote: > Sascha Hauer <s.hauer-bIcnvbaLZ9MEGnE8C9+IrQ@public.gmane.org> writes: > > > On Wed, Aug 29, 2012 at 10:50:08AM +0300, Alexander Shishkin wrote: > >> Richard Zhao <richard.zhao-KZfg59tc24xl57MIdRCFDg@public.gmane.org> writes: > >> > >> > i.MX usb controllers shares non-core registers, which may include > >> > SoC specific controls. We take it as a usbmisc device and usbmisc > >> > driver set operations needed by ci13xxx_imx driver. > >> > > >> > For example, Sabrelite board has bad over-current design, we can > >> > usbmisc to disable over-current detect. > >> > >> Why does this have to be part of the usb driver instead of SoC specific > >> code? It looks like you've created a whole new device/driver > >> infrastructure just to disable overcurrent for a specific board. > > > > Richards code indeed only handles overcurrent for a specific board, but > > there are more bits to configure in the longer run: power pin > > polarities, ULPI/serial mode select and some more. > > Sounds to me like these things that should be taken care of by the phy > driver, which will likely be simpler from both driver's and devicetree's > perspective. No, it's controlled by a set of usb misc registers, which is not in phy IP or usb controller IP. Thanks Richard > > > > >> > >> And the infrastructure boils down to a complex way of passing a callback > >> from imx driver to another imx driver, that only works if they are > >> probed in the right order. I don't see any point in doing it like this > >> other than inflating the device tree tables even further. > >> > >> Why can't this be part of the SoC code like it is done, for example in > >> arch/arm/mach-omap2/control.c? > > > > The settings are board specific, so there must be some way to configure > > them in the devicetree. > > But I'm sure there's a way to control board-specific settings/kludges > from devicetree? > > Regards, > -- > Alex > ^ permalink raw reply [flat|nested] 11+ messages in thread
* Re: [PATCH v6 1/3] USB: chipidea: add imx usbmisc support [not found] ` <87ehmqj925.fsf-qxRn5AmX6ZD9BXuAQUXR0fooFf0ArEBIu+b9c/7xato@public.gmane.org> 2012-08-29 10:57 ` Richard Zhao @ 2012-08-29 11:01 ` Sascha Hauer [not found] ` <20120829110137.GA26594-bIcnvbaLZ9MEGnE8C9+IrQ@public.gmane.org> 1 sibling, 1 reply; 11+ messages in thread From: Sascha Hauer @ 2012-08-29 11:01 UTC (permalink / raw) To: Alexander Shishkin Cc: Richard Zhao, linux-usb-u79uwXL29TY76Z2rM5mHXA, linux-arm-kernel-IAPFreCvJWM7uuMidbF8XUB+6BGkLq7r, B29397-KZfg59tc24xl57MIdRCFDg, B20596-KZfg59tc24xl57MIdRCFDg, marex-ynQEQJNshbs, shawn.guo-QSEj5FYQhm4dnm+yROfE0A, kernel-bIcnvbaLZ9MEGnE8C9+IrQ, gregkh-hQyY1W1yCW8ekmWlsbkhG0B+6BGkLq7r, fabio.estevam-KZfg59tc24xl57MIdRCFDg, dong.aisheng-QSEj5FYQhm4dnm+yROfE0A, stern-nwvwT67g6+6dFdvTe/nMLpVzexx5G7lz, linuxzsc-Re5JQEeQqe8AvxtiuMwx3w, balbi-l0cyMroinI0, mkl-bIcnvbaLZ9MEGnE8C9+IrQ, devicetree-discuss-uLR06cmDAlY/bJ5BZ2RsiQ On Wed, Aug 29, 2012 at 01:18:10PM +0300, Alexander Shishkin wrote: > Sascha Hauer <s.hauer-bIcnvbaLZ9MEGnE8C9+IrQ@public.gmane.org> writes: > > > On Wed, Aug 29, 2012 at 10:50:08AM +0300, Alexander Shishkin wrote: > >> Richard Zhao <richard.zhao-KZfg59tc24xl57MIdRCFDg@public.gmane.org> writes: > >> > >> > i.MX usb controllers shares non-core registers, which may include > >> > SoC specific controls. We take it as a usbmisc device and usbmisc > >> > driver set operations needed by ci13xxx_imx driver. > >> > > >> > For example, Sabrelite board has bad over-current design, we can > >> > usbmisc to disable over-current detect. > >> > >> Why does this have to be part of the usb driver instead of SoC specific > >> code? It looks like you've created a whole new device/driver > >> infrastructure just to disable overcurrent for a specific board. > > > > Richards code indeed only handles overcurrent for a specific board, but > > there are more bits to configure in the longer run: power pin > > polarities, ULPI/serial mode select and some more. > > Sounds to me like these things that should be taken care of by the phy > driver, which will likely be simpler from both driver's and devicetree's > perspective. Most i.MX SoCs have three instances of the chipidea core. These cores share a single register space for controlling the mentioned bits (the usbmisc register space). The usbmisc looks different on the different SoCs. Indeed they control some phy specific aspects, but the phy itself may also be an external ULPI or UTMI phy with a separate driver. So if we integrate the usbmisc into the phy wouldn't that mean that it has to be integrated into all possible phy drivers? >From a devicetrees perspective it makes sense to integrate the flags into the chipidea nodes, because there is one node per chipidea core, but only one usbmisc unit for all ports on the SoC. So we can do a: chipidea@ofs { disable-overcurrent = <1>; }; instead of usbmisc@ofs { disable-overcurrent-port0 = <1>; disable-overcurrent-port1 = <0>; ... }; > > > > >> > >> And the infrastructure boils down to a complex way of passing a callback > >> from imx driver to another imx driver, that only works if they are > >> probed in the right order. I don't see any point in doing it like this > >> other than inflating the device tree tables even further. > >> > >> Why can't this be part of the SoC code like it is done, for example in > >> arch/arm/mach-omap2/control.c? > > > > The settings are board specific, so there must be some way to configure > > them in the devicetree. > > But I'm sure there's a way to control board-specific settings/kludges > from devicetree? Hm, yes. That's what Richard does, right? I may be misunderstanding you here. Sascha -- Pengutronix e.K. | | Industrial Linux Solutions | http://www.pengutronix.de/ | Peiner Str. 6-8, 31137 Hildesheim, Germany | Phone: +49-5121-206917-0 | Amtsgericht Hildesheim, HRA 2686 | Fax: +49-5121-206917-5555 | -- To unsubscribe from this list: send the line "unsubscribe linux-usb" 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] 11+ messages in thread
[parent not found: <20120829110137.GA26594-bIcnvbaLZ9MEGnE8C9+IrQ@public.gmane.org>]
* Re: [PATCH v6 1/3] USB: chipidea: add imx usbmisc support [not found] ` <20120829110137.GA26594-bIcnvbaLZ9MEGnE8C9+IrQ@public.gmane.org> @ 2012-08-29 20:00 ` Marc Kleine-Budde [not found] ` <503E74E0.6040503-bIcnvbaLZ9MEGnE8C9+IrQ@public.gmane.org> 0 siblings, 1 reply; 11+ messages in thread From: Marc Kleine-Budde @ 2012-08-29 20:00 UTC (permalink / raw) To: Sascha Hauer Cc: Alexander Shishkin, Richard Zhao, linux-usb-u79uwXL29TY76Z2rM5mHXA, linux-arm-kernel-IAPFreCvJWM7uuMidbF8XUB+6BGkLq7r, B29397-KZfg59tc24xl57MIdRCFDg, B20596-KZfg59tc24xl57MIdRCFDg, marex-ynQEQJNshbs, shawn.guo-QSEj5FYQhm4dnm+yROfE0A, kernel-bIcnvbaLZ9MEGnE8C9+IrQ, gregkh-hQyY1W1yCW8ekmWlsbkhG0B+6BGkLq7r, fabio.estevam-KZfg59tc24xl57MIdRCFDg, dong.aisheng-QSEj5FYQhm4dnm+yROfE0A, stern-nwvwT67g6+6dFdvTe/nMLpVzexx5G7lz, linuxzsc-Re5JQEeQqe8AvxtiuMwx3w, balbi-l0cyMroinI0, devicetree-discuss-uLR06cmDAlY/bJ5BZ2RsiQ [-- Attachment #1: Type: text/plain, Size: 3328 bytes --] On 08/29/2012 01:01 PM, Sascha Hauer wrote: > On Wed, Aug 29, 2012 at 01:18:10PM +0300, Alexander Shishkin wrote: >> Sascha Hauer <s.hauer-bIcnvbaLZ9MEGnE8C9+IrQ@public.gmane.org> writes: >> >>> On Wed, Aug 29, 2012 at 10:50:08AM +0300, Alexander Shishkin wrote: >>>> Richard Zhao <richard.zhao-KZfg59tc24xl57MIdRCFDg@public.gmane.org> writes: >>>> >>>>> i.MX usb controllers shares non-core registers, which may include >>>>> SoC specific controls. We take it as a usbmisc device and usbmisc >>>>> driver set operations needed by ci13xxx_imx driver. >>>>> >>>>> For example, Sabrelite board has bad over-current design, we can >>>>> usbmisc to disable over-current detect. >>>> >>>> Why does this have to be part of the usb driver instead of SoC specific >>>> code? It looks like you've created a whole new device/driver >>>> infrastructure just to disable overcurrent for a specific board. >>> >>> Richards code indeed only handles overcurrent for a specific board, but >>> there are more bits to configure in the longer run: power pin >>> polarities, ULPI/serial mode select and some more. We already have a patch adding a usbmisc_imx53_init() function to that driver. >> Sounds to me like these things that should be taken care of by the phy >> driver, which will likely be simpler from both driver's and devicetree's >> perspective. > > Most i.MX SoCs have three instances of the chipidea core. These cores > share a single register space for controlling the mentioned bits (the > usbmisc register space). The usbmisc looks different on the different > SoCs. > Indeed they control some phy specific aspects, but the phy itself may > also be an external ULPI or UTMI phy with a separate driver. So if we > integrate the usbmisc into the phy wouldn't that mean that it has to > be integrated into all possible phy drivers? > > From a devicetrees perspective it makes sense to integrate the flags > into the chipidea nodes, because there is one node per chipidea core, > but only one usbmisc unit for all ports on the SoC. So we can do a: > > chipidea@ofs { > disable-overcurrent = <1>; > }; > > instead of > > usbmisc@ofs { > disable-overcurrent-port0 = <1>; > disable-overcurrent-port1 = <0>; > ... > }; +1 IMHO looks much cleaner. >>>> And the infrastructure boils down to a complex way of passing a callback >>>> from imx driver to another imx driver, that only works if they are >>>> probed in the right order. I don't see any point in doing it like this >>>> other than inflating the device tree tables even further. >>>> >>>> Why can't this be part of the SoC code like it is done, for example in >>>> arch/arm/mach-omap2/control.c? >>> >>> The settings are board specific, so there must be some way to configure >>> them in the devicetree. >> >> But I'm sure there's a way to control board-specific settings/kludges >> from devicetree? > > Hm, yes. That's what Richard does, right? I may be misunderstanding you > here. > > Sascha Marc -- Pengutronix e.K. | Marc Kleine-Budde | Industrial Linux Solutions | Phone: +49-231-2826-924 | Vertretung West/Dortmund | Fax: +49-5121-206917-5555 | Amtsgericht Hildesheim, HRA 2686 | http://www.pengutronix.de | [-- Attachment #2: OpenPGP digital signature --] [-- Type: application/pgp-signature, Size: 259 bytes --] ^ permalink raw reply [flat|nested] 11+ messages in thread
[parent not found: <503E74E0.6040503-bIcnvbaLZ9MEGnE8C9+IrQ@public.gmane.org>]
* Re: [PATCH v6 1/3] USB: chipidea: add imx usbmisc support [not found] ` <503E74E0.6040503-bIcnvbaLZ9MEGnE8C9+IrQ@public.gmane.org> @ 2012-09-04 14:10 ` Richard Zhao 2012-09-11 10:42 ` Alexander Shishkin 0 siblings, 1 reply; 11+ messages in thread From: Richard Zhao @ 2012-09-04 14:10 UTC (permalink / raw) To: Marc Kleine-Budde Cc: Sascha Hauer, Alexander Shishkin, Richard Zhao, linux-usb-u79uwXL29TY76Z2rM5mHXA, linux-arm-kernel-IAPFreCvJWM7uuMidbF8XUB+6BGkLq7r, B29397-KZfg59tc24xl57MIdRCFDg, B20596-KZfg59tc24xl57MIdRCFDg, marex-ynQEQJNshbs, shawn.guo-QSEj5FYQhm4dnm+yROfE0A, kernel-bIcnvbaLZ9MEGnE8C9+IrQ, gregkh-hQyY1W1yCW8ekmWlsbkhG0B+6BGkLq7r, fabio.estevam-KZfg59tc24xl57MIdRCFDg, dong.aisheng-QSEj5FYQhm4dnm+yROfE0A, stern-nwvwT67g6+6dFdvTe/nMLpVzexx5G7lz, balbi-l0cyMroinI0, devicetree-discuss-uLR06cmDAlY/bJ5BZ2RsiQ On Wed, Aug 29, 2012 at 10:00:32PM +0200, Marc Kleine-Budde wrote: > On 08/29/2012 01:01 PM, Sascha Hauer wrote: > > On Wed, Aug 29, 2012 at 01:18:10PM +0300, Alexander Shishkin wrote: > >> Sascha Hauer <s.hauer-bIcnvbaLZ9MEGnE8C9+IrQ@public.gmane.org> writes: > >> > >>> On Wed, Aug 29, 2012 at 10:50:08AM +0300, Alexander Shishkin wrote: > >>>> Richard Zhao <richard.zhao-KZfg59tc24xl57MIdRCFDg@public.gmane.org> writes: > >>>> > >>>>> i.MX usb controllers shares non-core registers, which may include > >>>>> SoC specific controls. We take it as a usbmisc device and usbmisc > >>>>> driver set operations needed by ci13xxx_imx driver. > >>>>> > >>>>> For example, Sabrelite board has bad over-current design, we can > >>>>> usbmisc to disable over-current detect. > >>>> > >>>> Why does this have to be part of the usb driver instead of SoC specific > >>>> code? It looks like you've created a whole new device/driver > >>>> infrastructure just to disable overcurrent for a specific board. > >>> > >>> Richards code indeed only handles overcurrent for a specific board, but > >>> there are more bits to configure in the longer run: power pin > >>> polarities, ULPI/serial mode select and some more. > > We already have a patch adding a usbmisc_imx53_init() function to that > driver. > > >> Sounds to me like these things that should be taken care of by the phy > >> driver, which will likely be simpler from both driver's and devicetree's > >> perspective. > > > > Most i.MX SoCs have three instances of the chipidea core. These cores > > share a single register space for controlling the mentioned bits (the > > usbmisc register space). The usbmisc looks different on the different > > SoCs. > > Indeed they control some phy specific aspects, but the phy itself may > > also be an external ULPI or UTMI phy with a separate driver. So if we > > integrate the usbmisc into the phy wouldn't that mean that it has to > > be integrated into all possible phy drivers? > > > > From a devicetrees perspective it makes sense to integrate the flags > > into the chipidea nodes, because there is one node per chipidea core, > > but only one usbmisc unit for all ports on the SoC. So we can do a: > > > > chipidea@ofs { > > disable-overcurrent = <1>; > > }; > > > > instead of > > > > usbmisc@ofs { > > disable-overcurrent-port0 = <1>; > > disable-overcurrent-port1 = <0>; > > ... > > }; > > +1 > > IMHO looks much cleaner. So, Marc agree on the patch too. Maybe you can give a reviewed-by? :) Hi Alex, What do you think? Thanks Richard > > >>>> And the infrastructure boils down to a complex way of passing a callback > >>>> from imx driver to another imx driver, that only works if they are > >>>> probed in the right order. I don't see any point in doing it like this > >>>> other than inflating the device tree tables even further. > >>>> > >>>> Why can't this be part of the SoC code like it is done, for example in > >>>> arch/arm/mach-omap2/control.c? > >>> > >>> The settings are board specific, so there must be some way to configure > >>> them in the devicetree. > >> > >> But I'm sure there's a way to control board-specific settings/kludges > >> from devicetree? > > > > Hm, yes. That's what Richard does, right? I may be misunderstanding you > > here. > > > > Sascha > > Marc > > > -- > Pengutronix e.K. | Marc Kleine-Budde | > Industrial Linux Solutions | Phone: +49-231-2826-924 | > Vertretung West/Dortmund | Fax: +49-5121-206917-5555 | > Amtsgericht Hildesheim, HRA 2686 | http://www.pengutronix.de | > -- To unsubscribe from this list: send the line "unsubscribe linux-usb" 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] 11+ messages in thread
* Re: [PATCH v6 1/3] USB: chipidea: add imx usbmisc support 2012-09-04 14:10 ` Richard Zhao @ 2012-09-11 10:42 ` Alexander Shishkin [not found] ` <87fw6orgcm.fsf-qxRn5AmX6ZD9BXuAQUXR0fooFf0ArEBIu+b9c/7xato@public.gmane.org> 0 siblings, 1 reply; 11+ messages in thread From: Alexander Shishkin @ 2012-09-11 10:42 UTC (permalink / raw) To: Richard Zhao, Marc Kleine-Budde Cc: Sascha Hauer, Richard Zhao, linux-usb-u79uwXL29TY76Z2rM5mHXA, linux-arm-kernel-IAPFreCvJWM7uuMidbF8XUB+6BGkLq7r, B29397-KZfg59tc24xl57MIdRCFDg, B20596-KZfg59tc24xl57MIdRCFDg, marex-ynQEQJNshbs, shawn.guo-QSEj5FYQhm4dnm+yROfE0A, kernel-bIcnvbaLZ9MEGnE8C9+IrQ, gregkh-hQyY1W1yCW8ekmWlsbkhG0B+6BGkLq7r, fabio.estevam-KZfg59tc24xl57MIdRCFDg, dong.aisheng-QSEj5FYQhm4dnm+yROfE0A, stern-nwvwT67g6+6dFdvTe/nMLpVzexx5G7lz, balbi-l0cyMroinI0, devicetree-discuss-uLR06cmDAlY/bJ5BZ2RsiQ Richard Zhao <linuxzsc-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org> writes: > On Wed, Aug 29, 2012 at 10:00:32PM +0200, Marc Kleine-Budde wrote: >> On 08/29/2012 01:01 PM, Sascha Hauer wrote: >> > On Wed, Aug 29, 2012 at 01:18:10PM +0300, Alexander Shishkin wrote: >> >> Sascha Hauer <s.hauer-bIcnvbaLZ9MEGnE8C9+IrQ@public.gmane.org> writes: >> >> >> >>> On Wed, Aug 29, 2012 at 10:50:08AM +0300, Alexander Shishkin wrote: >> >>>> Richard Zhao <richard.zhao-KZfg59tc24xl57MIdRCFDg@public.gmane.org> writes: >> >>>> >> >>>>> i.MX usb controllers shares non-core registers, which may include >> >>>>> SoC specific controls. We take it as a usbmisc device and usbmisc >> >>>>> driver set operations needed by ci13xxx_imx driver. >> >>>>> >> >>>>> For example, Sabrelite board has bad over-current design, we can >> >>>>> usbmisc to disable over-current detect. >> >>>> >> >>>> Why does this have to be part of the usb driver instead of SoC specific >> >>>> code? It looks like you've created a whole new device/driver >> >>>> infrastructure just to disable overcurrent for a specific board. >> >>> >> >>> Richards code indeed only handles overcurrent for a specific board, but >> >>> there are more bits to configure in the longer run: power pin >> >>> polarities, ULPI/serial mode select and some more. >> >> We already have a patch adding a usbmisc_imx53_init() function to that >> driver. >> >> >> Sounds to me like these things that should be taken care of by the phy >> >> driver, which will likely be simpler from both driver's and devicetree's >> >> perspective. >> > >> > Most i.MX SoCs have three instances of the chipidea core. These cores >> > share a single register space for controlling the mentioned bits (the >> > usbmisc register space). The usbmisc looks different on the different >> > SoCs. >> > Indeed they control some phy specific aspects, but the phy itself may >> > also be an external ULPI or UTMI phy with a separate driver. So if we >> > integrate the usbmisc into the phy wouldn't that mean that it has to >> > be integrated into all possible phy drivers? >> > >> > From a devicetrees perspective it makes sense to integrate the flags >> > into the chipidea nodes, because there is one node per chipidea core, >> > but only one usbmisc unit for all ports on the SoC. So we can do a: >> > >> > chipidea@ofs { >> > disable-overcurrent = <1>; >> > }; >> > >> > instead of >> > >> > usbmisc@ofs { >> > disable-overcurrent-port0 = <1>; >> > disable-overcurrent-port1 = <0>; >> > ... >> > }; >> >> +1 >> >> IMHO looks much cleaner. > So, Marc agree on the patch too. Maybe you can give a reviewed-by? :) > > Hi Alex, > > What do you think? Weeell, as long as this is contained in platform specific code and arm bits, I can tolerate it. What about the other two patches? I guess they can go through arm tree so we don't have to send it through Greg, right? Regards, -- Alex -- To unsubscribe from this list: send the line "unsubscribe linux-usb" 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] 11+ messages in thread
[parent not found: <87fw6orgcm.fsf-qxRn5AmX6ZD9BXuAQUXR0fooFf0ArEBIu+b9c/7xato@public.gmane.org>]
* Re: [PATCH v6 1/3] USB: chipidea: add imx usbmisc support [not found] ` <87fw6orgcm.fsf-qxRn5AmX6ZD9BXuAQUXR0fooFf0ArEBIu+b9c/7xato@public.gmane.org> @ 2012-09-11 12:20 ` Shawn Guo 0 siblings, 0 replies; 11+ messages in thread From: Shawn Guo @ 2012-09-11 12:20 UTC (permalink / raw) To: Alexander Shishkin Cc: Richard Zhao, Marc Kleine-Budde, Sascha Hauer, Richard Zhao, linux-usb-u79uwXL29TY76Z2rM5mHXA, linux-arm-kernel-IAPFreCvJWM7uuMidbF8XUB+6BGkLq7r, B29397-KZfg59tc24xl57MIdRCFDg, B20596-KZfg59tc24xl57MIdRCFDg, marex-ynQEQJNshbs, kernel-bIcnvbaLZ9MEGnE8C9+IrQ, gregkh-hQyY1W1yCW8ekmWlsbkhG0B+6BGkLq7r, fabio.estevam-KZfg59tc24xl57MIdRCFDg, dong.aisheng-QSEj5FYQhm4dnm+yROfE0A, stern-nwvwT67g6+6dFdvTe/nMLpVzexx5G7lz, balbi-l0cyMroinI0, devicetree-discuss-uLR06cmDAlY/bJ5BZ2RsiQ On Tue, Sep 11, 2012 at 01:42:01PM +0300, Alexander Shishkin wrote: > What about the other two patches? I guess they can go through arm tree > so we don't have to send it through Greg, right? > Right, those two will go via arm-soc tree once the first one gets applied on usb tree. -- Regards, Shawn -- To unsubscribe from this list: send the line "unsubscribe linux-usb" 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] 11+ messages in thread
* Re: [PATCH v6 1/3] USB: chipidea: add imx usbmisc support [not found] ` <871uiqkuhb.fsf-qxRn5AmX6ZD9BXuAQUXR0fooFf0ArEBIu+b9c/7xato@public.gmane.org> 2012-08-29 8:10 ` Sascha Hauer @ 2012-08-29 8:13 ` Richard Zhao 1 sibling, 0 replies; 11+ messages in thread From: Richard Zhao @ 2012-08-29 8:13 UTC (permalink / raw) To: Alexander Shishkin Cc: linux-usb-u79uwXL29TY76Z2rM5mHXA, linux-arm-kernel-IAPFreCvJWM7uuMidbF8XUB+6BGkLq7r, B29397-KZfg59tc24xl57MIdRCFDg, B20596-KZfg59tc24xl57MIdRCFDg, marex-ynQEQJNshbs, shawn.guo-QSEj5FYQhm4dnm+yROfE0A, kernel-bIcnvbaLZ9MEGnE8C9+IrQ, gregkh-hQyY1W1yCW8ekmWlsbkhG0B+6BGkLq7r, fabio.estevam-KZfg59tc24xl57MIdRCFDg, dong.aisheng-QSEj5FYQhm4dnm+yROfE0A, stern-nwvwT67g6+6dFdvTe/nMLpVzexx5G7lz, linuxzsc-Re5JQEeQqe8AvxtiuMwx3w, balbi-l0cyMroinI0, mkl-bIcnvbaLZ9MEGnE8C9+IrQ, devicetree-discuss-uLR06cmDAlY/bJ5BZ2RsiQ On Wed, Aug 29, 2012 at 10:50:08AM +0300, Alexander Shishkin wrote: > Richard Zhao <richard.zhao-KZfg59tc24xl57MIdRCFDg@public.gmane.org> writes: > > > i.MX usb controllers shares non-core registers, which may include > > SoC specific controls. We take it as a usbmisc device and usbmisc > > driver set operations needed by ci13xxx_imx driver. > > > > For example, Sabrelite board has bad over-current design, we can > > usbmisc to disable over-current detect. > > Why does this have to be part of the usb driver instead of SoC specific > code? It looks like you've created a whole new device/driver > infrastructure just to disable overcurrent for a specific board. > > And the infrastructure boils down to a complex way of passing a callback > from imx driver to another imx driver, that only works if they are > probed in the right order. I don't see any point in doing it like this > other than inflating the device tree tables even further. The goal is to let ci13xxx_imx can call usbmisc function at runtime. The disable over current can be set once at boot time, but there's other callbacks which is not yet in the mainline have to be called dynamically. Thanks Richard > > Why can't this be part of the SoC code like it is done, for example in > arch/arm/mach-omap2/control.c? > > Regards, > -- > Alex > > > Signed-off-by: Richard Zhao <richard.zhao-KZfg59tc24xl57MIdRCFDg@public.gmane.org> > > Acked-by: Sascha Hauer <s.hauer-bIcnvbaLZ9MEGnE8C9+IrQ@public.gmane.org> > > --- > > .../devicetree/bindings/usb/ci13xxx-imx.txt | 5 + > > .../devicetree/bindings/usb/usbmisc-imx.txt | 14 ++ > > drivers/usb/chipidea/Makefile | 2 +- > > drivers/usb/chipidea/ci13xxx_imx.c | 64 ++++++++ > > drivers/usb/chipidea/ci13xxx_imx.h | 28 ++++ > > drivers/usb/chipidea/usbmisc_imx6q.c | 162 ++++++++++++++++++++ > > 6 files changed, 274 insertions(+), 1 deletion(-) > > create mode 100644 Documentation/devicetree/bindings/usb/usbmisc-imx.txt > > create mode 100644 drivers/usb/chipidea/ci13xxx_imx.h > > create mode 100644 drivers/usb/chipidea/usbmisc_imx6q.c > > > > diff --git a/Documentation/devicetree/bindings/usb/ci13xxx-imx.txt b/Documentation/devicetree/bindings/usb/ci13xxx-imx.txt > > index 2c29041..5778b9c 100644 > > --- a/Documentation/devicetree/bindings/usb/ci13xxx-imx.txt > > +++ b/Documentation/devicetree/bindings/usb/ci13xxx-imx.txt > > @@ -7,7 +7,10 @@ Required properties: > > > > Optional properties: > > - fsl,usbphy: phandler of usb phy that connects to the only one port > > +- fsl,usbmisc: phandler of non-core register device, with one argument > > + that indicate usb controller index > > - vbus-supply: regulator for vbus > > +- disable-over-current: disable over current detect > > > > Examples: > > usb@02184000 { /* USB OTG */ > > @@ -15,4 +18,6 @@ usb@02184000 { /* USB OTG */ > > reg = <0x02184000 0x200>; > > interrupts = <0 43 0x04>; > > fsl,usbphy = <&usbphy1>; > > + fsl,usbmisc = <&usbmisc 0>; > > + disable-over-current; > > }; > > diff --git a/Documentation/devicetree/bindings/usb/usbmisc-imx.txt b/Documentation/devicetree/bindings/usb/usbmisc-imx.txt > > new file mode 100644 > > index 0000000..97ce94e > > --- /dev/null > > +++ b/Documentation/devicetree/bindings/usb/usbmisc-imx.txt > > @@ -0,0 +1,14 @@ > > +* Freescale i.MX non-core registers > > + > > +Required properties: > > +- #index-cells: Cells used to descibe usb controller index. Should be <1> > > +- compatible: Should be one of below: > > + "fsl,imx6q-usbmisc" for imx6q > > +- reg: Should contain registers location and length > > + > > +Examples: > > +usbmisc@02184800 { > > + #index-cells = <1>; > > + compatible = "fsl,imx6q-usbmisc"; > > + reg = <0x02184800 0x200>; > > +}; > > diff --git a/drivers/usb/chipidea/Makefile b/drivers/usb/chipidea/Makefile > > index 5c66d9c..57e510f 100644 > > --- a/drivers/usb/chipidea/Makefile > > +++ b/drivers/usb/chipidea/Makefile > > @@ -15,5 +15,5 @@ ifneq ($(CONFIG_PCI),) > > endif > > > > ifneq ($(CONFIG_OF_DEVICE),) > > - obj-$(CONFIG_USB_CHIPIDEA) += ci13xxx_imx.o > > + obj-$(CONFIG_USB_CHIPIDEA) += ci13xxx_imx.o usbmisc_imx6q.o > > endif > > diff --git a/drivers/usb/chipidea/ci13xxx_imx.c b/drivers/usb/chipidea/ci13xxx_imx.c > > index ef60d06..96ac67b 100644 > > --- a/drivers/usb/chipidea/ci13xxx_imx.c > > +++ b/drivers/usb/chipidea/ci13xxx_imx.c > > @@ -22,6 +22,7 @@ > > #include <linux/regulator/consumer.h> > > > > #include "ci.h" > > +#include "ci13xxx_imx.h" > > > > #define pdev_to_phy(pdev) \ > > ((struct usb_phy *)platform_get_drvdata(pdev)) > > @@ -34,6 +35,55 @@ struct ci13xxx_imx_data { > > struct regulator *reg_vbus; > > }; > > > > +static const struct usbmisc_ops *usbmisc_ops; > > + > > +/* Common functions shared by usbmisc drivers */ > > + > > +int usbmisc_set_ops(const struct usbmisc_ops *ops) > > +{ > > + if (usbmisc_ops) > > + return -EBUSY; > > + > > + usbmisc_ops = ops; > > + > > + return 0; > > +} > > +EXPORT_SYMBOL_GPL(usbmisc_set_ops); > > + > > +void usbmisc_unset_ops(const struct usbmisc_ops *ops) > > +{ > > + usbmisc_ops = NULL; > > +} > > +EXPORT_SYMBOL_GPL(usbmisc_unset_ops); > > + > > +int usbmisc_get_init_data(struct device *dev, struct usbmisc_usb_device *usbdev) > > +{ > > + struct device_node *np = dev->of_node; > > + struct of_phandle_args args; > > + int ret; > > + > > + usbdev->dev = dev; > > + > > + ret = of_parse_phandle_with_args(np, "fsl,usbmisc", "#index-cells", > > + 0, &args); > > + if (ret) { > > + dev_err(dev, "Failed to parse property fsl,usbmisc, errno %d\n", > > + ret); > > + memset(usbdev, 0, sizeof(*usbdev)); > > + return ret; > > + } > > + usbdev->index = args.args[0]; > > + of_node_put(args.np); > > + > > + if (of_find_property(np, "disable-over-current", NULL)) > > + usbdev->disable_oc = 1; > > + > > + return 0; > > +} > > +EXPORT_SYMBOL_GPL(usbmisc_get_init_data); > > + > > +/* End of common functions shared by usbmisc drivers*/ > > + > > static struct ci13xxx_platform_data ci13xxx_imx_platdata __devinitdata = { > > .name = "ci13xxx_imx", > > .flags = CI13XXX_REQUIRE_TRANSCEIVER | > > @@ -51,6 +101,10 @@ static int __devinit ci13xxx_imx_probe(struct platform_device *pdev) > > struct regulator *reg_vbus; > > int ret; > > > > + if (of_find_property(pdev->dev.of_node, "fsl,usbmisc", NULL) > > + && !usbmisc_ops) > > + return -EPROBE_DEFER; > > + > > data = devm_kzalloc(&pdev->dev, sizeof(*data), GFP_KERNEL); > > if (!data) { > > dev_err(&pdev->dev, "Failed to allocate CI13xxx-IMX data!\n"); > > @@ -120,6 +174,16 @@ static int __devinit ci13xxx_imx_probe(struct platform_device *pdev) > > *pdev->dev.dma_mask = DMA_BIT_MASK(32); > > dma_set_coherent_mask(&pdev->dev, *pdev->dev.dma_mask); > > } > > + > > + if (usbmisc_ops && usbmisc_ops->init) { > > + ret = usbmisc_ops->init(&pdev->dev); > > + if (ret) { > > + dev_err(&pdev->dev, > > + "usbmisc init failed, ret=%d\n", ret); > > + goto err; > > + } > > + } > > + > > plat_ci = ci13xxx_add_device(&pdev->dev, > > pdev->resource, pdev->num_resources, > > &ci13xxx_imx_platdata); > > diff --git a/drivers/usb/chipidea/ci13xxx_imx.h b/drivers/usb/chipidea/ci13xxx_imx.h > > new file mode 100644 > > index 0000000..2e88acc > > --- /dev/null > > +++ b/drivers/usb/chipidea/ci13xxx_imx.h > > @@ -0,0 +1,28 @@ > > +/* > > + * Copyright 2012 Freescale Semiconductor, Inc. > > + * > > + * The code contained herein is licensed under the GNU General Public > > + * License. You may obtain a copy of the GNU General Public License > > + * Version 2 or later at the following locations: > > + * > > + * http://www.opensource.org/licenses/gpl-license.html > > + * http://www.gnu.org/copyleft/gpl.html > > + */ > > + > > +/* Used to set SoC specific callbacks */ > > +struct usbmisc_ops { > > + /* It's called once when probe a usb device */ > > + int (*init)(struct device *dev); > > +}; > > + > > +struct usbmisc_usb_device { > > + struct device *dev; /* usb controller device */ > > + int index; > > + > > + int disable_oc:1; /* over current detect disabled */ > > +}; > > + > > +int usbmisc_set_ops(const struct usbmisc_ops *ops); > > +void usbmisc_unset_ops(const struct usbmisc_ops *ops); > > +int > > +usbmisc_get_init_data(struct device *dev, struct usbmisc_usb_device *usbdev); > > diff --git a/drivers/usb/chipidea/usbmisc_imx6q.c b/drivers/usb/chipidea/usbmisc_imx6q.c > > new file mode 100644 > > index 0000000..416e3fc > > --- /dev/null > > +++ b/drivers/usb/chipidea/usbmisc_imx6q.c > > @@ -0,0 +1,162 @@ > > +/* > > + * Copyright 2012 Freescale Semiconductor, Inc. > > + * > > + * The code contained herein is licensed under the GNU General Public > > + * License. You may obtain a copy of the GNU General Public License > > + * Version 2 or later at the following locations: > > + * > > + * http://www.opensource.org/licenses/gpl-license.html > > + * http://www.gnu.org/copyleft/gpl.html > > + */ > > + > > +#include <linux/module.h> > > +#include <linux/of_platform.h> > > +#include <linux/clk.h> > > +#include <linux/err.h> > > +#include <linux/io.h> > > + > > +#include "ci13xxx_imx.h" > > + > > +#define USB_DEV_MAX 4 > > + > > +#define BM_OVER_CUR_DIS BIT(7) > > + > > +struct imx6q_usbmisc { > > + void __iomem *base; > > + spinlock_t lock; > > + struct clk *clk; > > + struct usbmisc_usb_device usbdev[USB_DEV_MAX]; > > +}; > > + > > +static struct imx6q_usbmisc *usbmisc; > > + > > +static struct usbmisc_usb_device *get_usbdev(struct device *dev) > > +{ > > + int i, ret; > > + > > + for (i = 0; i < USB_DEV_MAX; i++) { > > + if (usbmisc->usbdev[i].dev == dev) > > + return &usbmisc->usbdev[i]; > > + else if (!usbmisc->usbdev[i].dev) > > + break; > > + } > > + > > + if (i >= USB_DEV_MAX) > > + return ERR_PTR(-EBUSY); > > + > > + ret = usbmisc_get_init_data(dev, &usbmisc->usbdev[i]); > > + if (ret) > > + return ERR_PTR(ret); > > + > > + return &usbmisc->usbdev[i]; > > +} > > + > > +static int usbmisc_imx6q_init(struct device *dev) > > +{ > > + > > + struct usbmisc_usb_device *usbdev; > > + unsigned long flags; > > + u32 reg; > > + > > + usbdev = get_usbdev(dev); > > + if (IS_ERR(usbdev)) > > + return PTR_ERR(usbdev); > > + > > + if (usbdev->disable_oc) { > > + spin_lock_irqsave(&usbmisc->lock, flags); > > + reg = readl(usbmisc->base + usbdev->index * 4); > > + writel(reg | BM_OVER_CUR_DIS, > > + usbmisc->base + usbdev->index * 4); > > + spin_unlock_irqrestore(&usbmisc->lock, flags); > > + } > > + > > + return 0; > > +} > > + > > +static const struct usbmisc_ops imx6q_usbmisc_ops = { > > + .init = usbmisc_imx6q_init, > > +}; > > + > > +static const struct of_device_id usbmisc_imx6q_dt_ids[] = { > > + { .compatible = "fsl,imx6q-usbmisc"}, > > + { /* sentinel */ } > > +}; > > + > > +static int __devinit usbmisc_imx6q_probe(struct platform_device *pdev) > > +{ > > + struct resource *res; > > + struct imx6q_usbmisc *data; > > + int ret; > > + > > + if (usbmisc) > > + return -EBUSY; > > + > > + data = devm_kzalloc(&pdev->dev, sizeof(*data), GFP_KERNEL); > > + if (!data) > > + return -ENOMEM; > > + > > + spin_lock_init(&data->lock); > > + > > + res = platform_get_resource(pdev, IORESOURCE_MEM, 0); > > + data->base = devm_request_and_ioremap(&pdev->dev, res); > > + if (!data->base) > > + return -EADDRNOTAVAIL; > > + > > + data->clk = devm_clk_get(&pdev->dev, NULL); > > + if (IS_ERR(data->clk)) { > > + dev_err(&pdev->dev, > > + "failed to get clock, err=%ld\n", PTR_ERR(data->clk)); > > + return PTR_ERR(data->clk); > > + } > > + > > + ret = clk_prepare_enable(data->clk); > > + if (ret) { > > + dev_err(&pdev->dev, > > + "clk_prepare_enable failed, err=%d\n", ret); > > + return ret; > > + } > > + > > + ret = usbmisc_set_ops(&imx6q_usbmisc_ops); > > + if (ret) { > > + clk_disable_unprepare(data->clk); > > + return ret; > > + } > > + > > + usbmisc = data; > > + > > + return 0; > > +} > > + > > +static int __devexit usbmisc_imx6q_remove(struct platform_device *pdev) > > +{ > > + usbmisc_unset_ops(&imx6q_usbmisc_ops); > > + clk_disable_unprepare(usbmisc->clk); > > + return 0; > > +} > > + > > +static struct platform_driver usbmisc_imx6q_driver = { > > + .probe = usbmisc_imx6q_probe, > > + .remove = __devexit_p(usbmisc_imx6q_remove), > > + .driver = { > > + .name = "usbmisc_imx6q", > > + .owner = THIS_MODULE, > > + .of_match_table = usbmisc_imx6q_dt_ids, > > + }, > > +}; > > + > > +int __init usbmisc_imx6q_drv_init(void) > > +{ > > + return platform_driver_register(&usbmisc_imx6q_driver); > > +} > > +subsys_initcall(usbmisc_imx6q_drv_init); > > + > > +void __exit usbmisc_imx6q_drv_exit(void) > > +{ > > + platform_driver_unregister(&usbmisc_imx6q_driver); > > +} > > +module_exit(usbmisc_imx6q_drv_exit); > > + > > +MODULE_ALIAS("platform:usbmisc-imx6q"); > > +MODULE_LICENSE("GPL v2"); > > +MODULE_DESCRIPTION("driver for imx6q usb non-core registers"); > > +MODULE_AUTHOR("Richard Zhao <richard.zhao-KZfg59tc24xl57MIdRCFDg@public.gmane.org>"); > > -- > > 1.7.9.5 > -- > To unsubscribe from this list: send the line "unsubscribe linux-usb" in > the body of a message to majordomo-u79uwXL29TY76Z2rM5mHXA@public.gmane.org > More majordomo info at http://vger.kernel.org/majordomo-info.html > -- To unsubscribe from this list: send the line "unsubscribe linux-usb" 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] 11+ messages in thread
end of thread, other threads:[~2012-09-11 12:20 UTC | newest] Thread overview: 11+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- [not found] <1346137109-32247-1-git-send-email-richard.zhao@freescale.com> [not found] ` <1346137109-32247-2-git-send-email-richard.zhao@freescale.com> [not found] ` <20120828145151.GJ10429@pengutronix.de> [not found] ` <20120828145151.GJ10429-bIcnvbaLZ9MEGnE8C9+IrQ@public.gmane.org> 2012-08-29 2:55 ` [PATCH v6 1/3] USB: chipidea: add imx usbmisc support Richard Zhao [not found] ` <1346137109-32247-2-git-send-email-richard.zhao-KZfg59tc24xl57MIdRCFDg@public.gmane.org> 2012-08-29 7:50 ` Alexander Shishkin [not found] ` <871uiqkuhb.fsf-qxRn5AmX6ZD9BXuAQUXR0fooFf0ArEBIu+b9c/7xato@public.gmane.org> 2012-08-29 8:10 ` Sascha Hauer [not found] ` <20120829081020.GX26594-bIcnvbaLZ9MEGnE8C9+IrQ@public.gmane.org> 2012-08-29 10:18 ` Alexander Shishkin [not found] ` <87ehmqj925.fsf-qxRn5AmX6ZD9BXuAQUXR0fooFf0ArEBIu+b9c/7xato@public.gmane.org> 2012-08-29 10:57 ` Richard Zhao 2012-08-29 11:01 ` Sascha Hauer [not found] ` <20120829110137.GA26594-bIcnvbaLZ9MEGnE8C9+IrQ@public.gmane.org> 2012-08-29 20:00 ` Marc Kleine-Budde [not found] ` <503E74E0.6040503-bIcnvbaLZ9MEGnE8C9+IrQ@public.gmane.org> 2012-09-04 14:10 ` Richard Zhao 2012-09-11 10:42 ` Alexander Shishkin [not found] ` <87fw6orgcm.fsf-qxRn5AmX6ZD9BXuAQUXR0fooFf0ArEBIu+b9c/7xato@public.gmane.org> 2012-09-11 12:20 ` Shawn Guo 2012-08-29 8:13 ` Richard Zhao
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).