* [PATCH 0/6] ARM: imx6q{dl}: add the WEIM driver @ 2013-05-20 8:48 Huang Shijie 2013-05-20 8:48 ` [PATCH 1/6] drivers: bus: add a new driver for WEIM Huang Shijie ` (5 more replies) 0 siblings, 6 replies; 17+ messages in thread From: Huang Shijie @ 2013-05-20 8:48 UTC (permalink / raw) To: grant.likely Cc: rob.herring, arnd, devicetree-discuss, linux-kernel, linux-arm-kernel, shawn.guo, Huang Shijie This patch set adds a new driver for WEIM in the imx6q{dl}-sabreauto boards. The WEIM(Wireless External Interface Module) works like a bus. You can attach many different devices on it, such as NOR, onenand. In the case of i.MX6q-sabreauto, only the NOR is connected to WEIM. Huang Shijie (6): drivers: bus: add a new driver for WEIM ARM: dts: imx6q{dl}: fix the pin conflict between SPI and WEIM ARM: dts: imx6qdl: add more information for WEIM ARM: dts: imx6q: add pinctrl for WEIM NOR ARM: dts: imx6ql: add a pinctrl for WEIM NOR ARM: dts: imx6qdl: enable the WEIM NOR Documentation/devicetree/bindings/bus/imx-weim.txt | 69 +++++++++ arch/arm/boot/dts/imx6dl-sabreauto.dts | 9 +- arch/arm/boot/dts/imx6dl.dtsi | 57 ++++++++ arch/arm/boot/dts/imx6q-sabreauto.dts | 9 +- arch/arm/boot/dts/imx6q.dtsi | 58 ++++++++ arch/arm/boot/dts/imx6qdl-sabreauto.dtsi | 23 +++- arch/arm/boot/dts/imx6qdl.dtsi | 4 +- drivers/bus/Kconfig | 9 ++ drivers/bus/Makefile | 1 + drivers/bus/imx-weim.c | 145 ++++++++++++++++++++ 10 files changed, 380 insertions(+), 4 deletions(-) create mode 100644 Documentation/devicetree/bindings/bus/imx-weim.txt create mode 100644 drivers/bus/imx-weim.c ^ permalink raw reply [flat|nested] 17+ messages in thread
* [PATCH 1/6] drivers: bus: add a new driver for WEIM 2013-05-20 8:48 [PATCH 0/6] ARM: imx6q{dl}: add the WEIM driver Huang Shijie @ 2013-05-20 8:48 ` Huang Shijie [not found] ` <1369039742-10893-2-git-send-email-b32955-KZfg59tc24xl57MIdRCFDg@public.gmane.org> [not found] ` <1369039742-10893-1-git-send-email-b32955-KZfg59tc24xl57MIdRCFDg@public.gmane.org> ` (4 subsequent siblings) 5 siblings, 1 reply; 17+ messages in thread From: Huang Shijie @ 2013-05-20 8:48 UTC (permalink / raw) To: grant.likely Cc: rob.herring, arnd, devicetree-discuss, linux-kernel, linux-arm-kernel, shawn.guo, Huang Shijie The WEIM(Wireless External Interface Module) works like a bus. You can attach many different devices on it, such as NOR, onenand. In the case of i.MX6q-sabreauto, the NOR is connected to WEIM. This patch also adds the devicetree binding document. The driver only works when the devicetree is enabled. Signed-off-by: Huang Shijie <b32955@freescale.com> --- Documentation/devicetree/bindings/bus/imx-weim.txt | 69 +++++++++ drivers/bus/Kconfig | 9 ++ drivers/bus/Makefile | 1 + drivers/bus/imx-weim.c | 145 ++++++++++++++++++++ 4 files changed, 224 insertions(+), 0 deletions(-) create mode 100644 Documentation/devicetree/bindings/bus/imx-weim.txt create mode 100644 drivers/bus/imx-weim.c diff --git a/Documentation/devicetree/bindings/bus/imx-weim.txt b/Documentation/devicetree/bindings/bus/imx-weim.txt new file mode 100644 index 0000000..9913454 --- /dev/null +++ b/Documentation/devicetree/bindings/bus/imx-weim.txt @@ -0,0 +1,69 @@ +Device tree bindings for i.MX Wireless External Interface Module (WEIM) + +The term âwirelessâ does not imply that the WEIM is literally an interface +without wires. It simply means that this module was originally designed for +wireless and mobile applications that use low-power technology. + +The actual devices are instantiated from the child nodes of a WEIM node. +But now we only have the NOR device. + +NOR flash connected to the WEIM (found on i.MX boards) are represented as +child nodes with a name of "nor". + +Required properties: + + - compatible: Should be set to "fsl, imx6q-weim" + - reg: A resource specifier for the register space + (see the example below) + - interrupts: the interrupt number, see the example below. + - clocks: the clock, see the example below. + - #address-cells: Must be set to 2 to allow memory address translation + - #size-cells: Must be set to 1 to allow CS address passing + - ranges: Must be set up to reflect the memory layout with four + integer values for each chip-select line in use: + + <cs-number> 0 <physical address of mapping> <size> + +Timing properties for child nodes. All are mandatory, not optional. + + -weim-cs-index: The CS index which the device is attaching on. + -weim-cs-timing: The timing array, contains 6 timing values for the + weim-cs-index. + +Example for an i.MX6q-sabreauto board: + weim: weim@021b8000 { + compatible = "fsl,imx6q-weim"; + reg = <0x021b8000 0x4000>; + interrupts = <0 14 0x04>; + clocks = <&clks 196>; + #address-cells = <2>; + #size-cells = <1>; + ranges = <0 0 0x08000000 0x08000000>; + + nor@0,0 { + compatible = "cfi-flash"; + reg = <0 0 0x02000000>; + #address-cells = <1>; + #size-cells = <1>; + bank-width = <2>; + + weim-cs-index = <0>; + weim-cs-timing = <0x00620081 0x00000001 0x1C022000 + 0x0000C000 0x1404a38e 0x00000000>; + partition@0 { + label = "U-Boot"; + reg = <0x0 0x40000>; + }; + + partition@40000 { + label = "U-Boot-ENV"; + reg = <0x40000 0x10000>; + read-only; + }; + + partition@50000 { + label = "Kernel"; + reg = <0x50000 0x3b0000>; + }; + }; + }; diff --git a/drivers/bus/Kconfig b/drivers/bus/Kconfig index b05ecab..0f997af 100644 --- a/drivers/bus/Kconfig +++ b/drivers/bus/Kconfig @@ -4,6 +4,15 @@ menu "Bus devices" +config IMX_WEIM + tristate "Freescale EIM DRIVER" + depends on ARCH_MXC && MTD_PHYSMAP_OF + help + Driver for i.MX6 WEIM controller. + The WEIM(Wireless External Interface Module) works like a bus. + You can attach many different devices on it, such as NOR, onenand. + But now, we only support the Parallel NOR. + config MVEBU_MBUS bool depends on PLAT_ORION diff --git a/drivers/bus/Makefile b/drivers/bus/Makefile index 3c7b53c..436bbcc 100644 --- a/drivers/bus/Makefile +++ b/drivers/bus/Makefile @@ -2,6 +2,7 @@ # Makefile for the bus drivers. # +obj-$(CONFIG_IMX_WEIM) += imx-weim.o obj-$(CONFIG_MVEBU_MBUS) += mvebu-mbus.o obj-$(CONFIG_OMAP_OCP2SCP) += omap-ocp2scp.o diff --git a/drivers/bus/imx-weim.c b/drivers/bus/imx-weim.c new file mode 100644 index 0000000..8bd9362 --- /dev/null +++ b/drivers/bus/imx-weim.c @@ -0,0 +1,145 @@ +/* + * EIM driver for Freescale's i.MX chips + * + * Copyright (C) 2013 Freescale Semiconductor, Inc. + * + * This file is licensed under the terms of the GNU General Public + * License version 2. This program is licensed "as is" without any + * warranty of any kind, whether express or implied. + */ +#include <linux/module.h> +#include <linux/clk.h> +#include <linux/io.h> +#include <linux/of_device.h> + +struct imx_weim { + void __iomem *base; + struct clk *clk; +}; + +static const struct of_device_id weim_id_table[] = { + { .compatible = "fsl,imx6q-weim", }, + {} +}; +MODULE_DEVICE_TABLE(of, weim_id_table); + +#define CS_TIMING_LEN 6 +#define CS_REG_RANGE 0x18 +/* Parse and set the timing for this device. */ +static int weim_timing(struct platform_device *pdev, struct device_node *np) +{ + struct imx_weim *weim = platform_get_drvdata(pdev); + u32 value[CS_TIMING_LEN]; + u32 cs_idx; + int ret; + int i; + + ret = of_property_read_u32(np, "weim-cs-index", &cs_idx); + if (ret) + goto weim_parse_err; + + ret = of_property_read_u32_array(np, "weim-cs-timing", + value, CS_TIMING_LEN); + if (ret) + goto weim_parse_err; + + /* set the timing for WEIM */ + for (i = 0; i < CS_TIMING_LEN; i++) + writel(value[i], weim->base + cs_idx * CS_REG_RANGE + i * 4); + return 0; + +weim_parse_err: + return ret; +} + +static int weim_parse_dt(struct platform_device *pdev) +{ + struct device_node *child; + int ret; + + /* We only support the Parallel NOR now. We may add more in future. */ + child = of_find_node_by_name(NULL, "nor"); + if (child) { + ret = weim_timing(pdev, child); + if (ret) + goto parse_fail; + + if (!of_platform_device_create(child, NULL, &pdev->dev)) { + ret = -EINVAL; + goto parse_fail; + } + } + return 0; + +parse_fail: + return ret; +} + +static int weim_probe(struct platform_device *pdev) +{ + struct imx_weim *weim; + struct resource *res; + int ret = -EINVAL; + + weim = devm_kzalloc(&pdev->dev, sizeof(*weim), GFP_KERNEL); + if (!weim) { + ret = -ENOMEM; + goto weim_err; + } + platform_set_drvdata(pdev, weim); + + /* get the resource */ + res = platform_get_resource(pdev, IORESOURCE_MEM, 0); + if (!res) { + ret = -ENOENT; + goto weim_err; + } + + weim->base = devm_ioremap_resource(&pdev->dev, res); + if (IS_ERR(weim->base)) { + ret = PTR_ERR(weim->base); + goto weim_err; + } + + /* get the clock */ + weim->clk = devm_clk_get(&pdev->dev, NULL); + if (IS_ERR(weim->clk)) + goto weim_err; + + clk_prepare_enable(weim->clk); + + /* parse the device node */ + ret = weim_parse_dt(pdev); + if (ret) { + clk_disable_unprepare(weim->clk); + goto weim_err; + } + + dev_info(&pdev->dev, "WEIM driver registered.\n"); + return 0; + +weim_err: + return ret; +} + +static int weim_remove(struct platform_device *pdev) +{ + struct imx_weim *weim = platform_get_drvdata(pdev); + + clk_disable_unprepare(weim->clk); + return 0; +} + +static struct platform_driver weim_driver = { + .driver = { + .name = "imx-weim", + .of_match_table = weim_id_table, + }, + .probe = weim_probe, + .remove = weim_remove, +}; + +module_platform_driver(weim_driver); +MODULE_AUTHOR("Freescale Inc."); +MODULE_DESCRIPTION("i.MX EIM Controller Driver"); +MODULE_LICENSE("GPL"); -- 1.7.1 ^ permalink raw reply related [flat|nested] 17+ messages in thread
[parent not found: <1369039742-10893-2-git-send-email-b32955-KZfg59tc24xl57MIdRCFDg@public.gmane.org>]
* Re: [PATCH 1/6] drivers: bus: add a new driver for WEIM [not found] ` <1369039742-10893-2-git-send-email-b32955-KZfg59tc24xl57MIdRCFDg@public.gmane.org> @ 2013-05-20 13:18 ` Sascha Hauer [not found] ` <20130520131827.GB32299-bIcnvbaLZ9MEGnE8C9+IrQ@public.gmane.org> 2013-05-21 5:43 ` Shawn Guo 1 sibling, 1 reply; 17+ messages in thread From: Sascha Hauer @ 2013-05-20 13:18 UTC (permalink / raw) To: Huang Shijie Cc: grant.likely-QSEj5FYQhm4dnm+yROfE0A, devicetree-discuss-uLR06cmDAlY/bJ5BZ2RsiQ, linux-kernel-u79uwXL29TY76Z2rM5mHXA, rob.herring-bsGFqQB8/DxBDgjK7y7TUQ, linux-arm-kernel-IAPFreCvJWM7uuMidbF8XUB+6BGkLq7r On Mon, May 20, 2013 at 04:48:57PM +0800, Huang Shijie wrote: > The WEIM(Wireless External Interface Module) works like a bus. > You can attach many different devices on it, such as NOR, onenand. > > In the case of i.MX6q-sabreauto, the NOR is connected to WEIM. > > This patch also adds the devicetree binding document. > The driver only works when the devicetree is enabled. > > Signed-off-by: Huang Shijie <b32955-KZfg59tc24xl57MIdRCFDg@public.gmane.org> > --- > Documentation/devicetree/bindings/bus/imx-weim.txt | 69 +++++++++ > drivers/bus/Kconfig | 9 ++ > drivers/bus/Makefile | 1 + > drivers/bus/imx-weim.c | 145 ++++++++++++++++++++ > 4 files changed, 224 insertions(+), 0 deletions(-) > create mode 100644 Documentation/devicetree/bindings/bus/imx-weim.txt > create mode 100644 drivers/bus/imx-weim.c > > diff --git a/Documentation/devicetree/bindings/bus/imx-weim.txt b/Documentation/devicetree/bindings/bus/imx-weim.txt > new file mode 100644 > index 0000000..9913454 > --- /dev/null > +++ b/Documentation/devicetree/bindings/bus/imx-weim.txt > @@ -0,0 +1,69 @@ > +Device tree bindings for i.MX Wireless External Interface Module (WEIM) > + > +The term ???wireless??? does not imply that the WEIM is literally an interface > +without wires. It simply means that this module was originally designed for > +wireless and mobile applications that use low-power technology. > + > +The actual devices are instantiated from the child nodes of a WEIM node. > +But now we only have the NOR device. > + > +NOR flash connected to the WEIM (found on i.MX boards) are represented as > +child nodes with a name of "nor". > + > +Required properties: > + > + - compatible: Should be set to "fsl, imx6q-weim" > + - reg: A resource specifier for the register space > + (see the example below) > + - interrupts: the interrupt number, see the example below. > + - clocks: the clock, see the example below. > + - #address-cells: Must be set to 2 to allow memory address translation > + - #size-cells: Must be set to 1 to allow CS address passing > + - ranges: Must be set up to reflect the memory layout with four > + integer values for each chip-select line in use: > + > + <cs-number> 0 <physical address of mapping> <size> > + > +Timing properties for child nodes. All are mandatory, not optional. > + > + -weim-cs-index: The CS index which the device is attaching on. > + -weim-cs-timing: The timing array, contains 6 timing values for the > + weim-cs-index. > + > +Example for an i.MX6q-sabreauto board: > + weim: weim@021b8000 { > + compatible = "fsl,imx6q-weim"; > + reg = <0x021b8000 0x4000>; > + interrupts = <0 14 0x04>; > + clocks = <&clks 196>; > + #address-cells = <2>; Why is address cells 2 in this example? > + #size-cells = <1>; > + ranges = <0 0 0x08000000 0x08000000>; > + > + nor@0,0 { > + compatible = "cfi-flash"; > + reg = <0 0 0x02000000>; > + #address-cells = <1>; > + #size-cells = <1>; > + bank-width = <2>; > + > + weim-cs-index = <0>; > + weim-cs-timing = <0x00620081 0x00000001 0x1C022000 > + 0x0000C000 0x1404a38e 0x00000000>; > + partition@0 { > + label = "U-Boot"; > + reg = <0x0 0x40000>; > + }; > + > + partition@40000 { > + label = "U-Boot-ENV"; > + reg = <0x40000 0x10000>; > + read-only; > + }; > + > + partition@50000 { > + label = "Kernel"; > + reg = <0x50000 0x3b0000>; > + }; The partitions are unnecessary to understand the example. Please drop them. > +#define CS_TIMING_LEN 6 > +#define CS_REG_RANGE 0x18 > +/* Parse and set the timing for this device. */ > +static int weim_timing(struct platform_device *pdev, struct device_node *np) > +{ > + struct imx_weim *weim = platform_get_drvdata(pdev); > + u32 value[CS_TIMING_LEN]; > + u32 cs_idx; > + int ret; > + int i; > + > + ret = of_property_read_u32(np, "weim-cs-index", &cs_idx); > + if (ret) > + goto weim_parse_err; It would be nice to check for cs_idx being valid. > + > + ret = of_property_read_u32_array(np, "weim-cs-timing", > + value, CS_TIMING_LEN); > + if (ret) > + goto weim_parse_err; > + > + /* set the timing for WEIM */ > + for (i = 0; i < CS_TIMING_LEN; i++) > + writel(value[i], weim->base + cs_idx * CS_REG_RANGE + i * 4); > + return 0; > + > +weim_parse_err: > + return ret; > +} > + > +static int weim_parse_dt(struct platform_device *pdev) > +{ > + struct device_node *child; > + int ret; > + > + /* We only support the Parallel NOR now. We may add more in future. */ > + child = of_find_node_by_name(NULL, "nor"); > + if (child) { > + ret = weim_timing(pdev, child); > + if (ret) > + goto parse_fail; > + > + if (!of_platform_device_create(child, NULL, &pdev->dev)) { > + ret = -EINVAL; > + goto parse_fail; > + } > + } What you want to do here is: - iterate over your child nodes - call weim_timing() for each of them - call of_platform_device_create for each child (or even of_platform_populate() with the parent node) > + return 0; > + > +parse_fail: > + return ret; > +} > + > +static int weim_probe(struct platform_device *pdev) > +{ > + struct imx_weim *weim; > + struct resource *res; > + int ret = -EINVAL; > + > + weim = devm_kzalloc(&pdev->dev, sizeof(*weim), GFP_KERNEL); > + if (!weim) { > + ret = -ENOMEM; > + goto weim_err; > + } > + platform_set_drvdata(pdev, weim); > + > + /* get the resource */ > + res = platform_get_resource(pdev, IORESOURCE_MEM, 0); > + if (!res) { > + ret = -ENOENT; > + goto weim_err; > + } No need to do error checking here. devm_ioremap_resource() will do this for you and also print an error message. > + > + weim->base = devm_ioremap_resource(&pdev->dev, res); > + if (IS_ERR(weim->base)) { > + ret = PTR_ERR(weim->base); > + goto weim_err; > + } > + > + /* get the clock */ > + weim->clk = devm_clk_get(&pdev->dev, NULL); > + if (IS_ERR(weim->clk)) > + goto weim_err; > + > + clk_prepare_enable(weim->clk); what is this clock used for? Is it necessary for the register access or is it necessary for the chipselects on the WEIM to work? 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 | ^ permalink raw reply [flat|nested] 17+ messages in thread
[parent not found: <20130520131827.GB32299-bIcnvbaLZ9MEGnE8C9+IrQ@public.gmane.org>]
* Re: [PATCH 1/6] drivers: bus: add a new driver for WEIM [not found] ` <20130520131827.GB32299-bIcnvbaLZ9MEGnE8C9+IrQ@public.gmane.org> @ 2013-05-22 8:30 ` Huang Shijie 0 siblings, 0 replies; 17+ messages in thread From: Huang Shijie @ 2013-05-22 8:30 UTC (permalink / raw) To: Sascha Hauer Cc: grant.likely-QSEj5FYQhm4dnm+yROfE0A, devicetree-discuss-uLR06cmDAlY/bJ5BZ2RsiQ, linux-kernel-u79uwXL29TY76Z2rM5mHXA, rob.herring-bsGFqQB8/DxBDgjK7y7TUQ, linux-arm-kernel-IAPFreCvJWM7uuMidbF8XUB+6BGkLq7r 于 2013年05月20日 21:18, Sascha Hauer 写道: > On Mon, May 20, 2013 at 04:48:57PM +0800, Huang Shijie wrote: >> weim-cs-index. >> + >> +Example for an i.MX6q-sabreauto board: >> + weim: weim@021b8000 { >> + compatible = "fsl,imx6q-weim"; >> + reg =<0x021b8000 0x4000>; >> + interrupts =<0 14 0x04>; >> + clocks =<&clks 196>; >> + #address-cells =<2>; > Why is address cells 2 in this example? Must be set to 2 to allow memory address translation. >> + #size-cells =<1>; >> + ranges =<0 0 0x08000000 0x08000000>; >> + >> + nor@0,0 { >> + compatible = "cfi-flash"; >> + reg =<0 0 0x02000000>; >> + #address-cells =<1>; >> + #size-cells =<1>; >> + bank-width =<2>; >> + >> + weim-cs-index =<0>; >> + weim-cs-timing =<0x00620081 0x00000001 0x1C022000 >> + 0x0000C000 0x1404a38e 0x00000000>; >> + partition@0 { >> + label = "U-Boot"; >> + reg =<0x0 0x40000>; >> + }; >> + >> + partition@40000 { >> + label = "U-Boot-ENV"; >> + reg =<0x40000 0x10000>; >> + read-only; >> + }; >> + >> + partition@50000 { >> + label = "Kernel"; >> + reg =<0x50000 0x3b0000>; >> + }; > The partitions are unnecessary to understand the example. Please drop them. okay. >> +#define CS_TIMING_LEN 6 >> +#define CS_REG_RANGE 0x18 >> +/* Parse and set the timing for this device. */ >> +static int weim_timing(struct platform_device *pdev, struct device_node *np) >> +{ >> + struct imx_weim *weim = platform_get_drvdata(pdev); >> + u32 value[CS_TIMING_LEN]; >> + u32 cs_idx; >> + int ret; >> + int i; >> + >> + ret = of_property_read_u32(np, "weim-cs-index",&cs_idx); >> + if (ret) >> + goto weim_parse_err; > It would be nice to check for cs_idx being valid. > >> + >> + ret = of_property_read_u32_array(np, "weim-cs-timing", >> + value, CS_TIMING_LEN); >> + if (ret) >> + goto weim_parse_err; >> + >> + /* set the timing for WEIM */ >> + for (i = 0; i< CS_TIMING_LEN; i++) >> + writel(value[i], weim->base + cs_idx * CS_REG_RANGE + i * 4); >> + return 0; >> + >> +weim_parse_err: >> + return ret; >> +} >> + >> +static int weim_parse_dt(struct platform_device *pdev) >> +{ >> + struct device_node *child; >> + int ret; >> + >> + /* We only support the Parallel NOR now. We may add more in future. */ >> + child = of_find_node_by_name(NULL, "nor"); >> + if (child) { >> + ret = weim_timing(pdev, child); >> + if (ret) >> + goto parse_fail; >> + >> + if (!of_platform_device_create(child, NULL,&pdev->dev)) { >> + ret = -EINVAL; >> + goto parse_fail; >> + } >> + } > What you want to do here is: > > - iterate over your child nodes > - call weim_timing() for each of them > - call of_platform_device_create for each child (or even > of_platform_populate() with the parent node) > yes. >> + return 0; >> + >> +parse_fail: >> + return ret; >> +} >> + >> +static int weim_probe(struct platform_device *pdev) >> +{ >> + struct imx_weim *weim; >> + struct resource *res; >> + int ret = -EINVAL; >> + >> + weim = devm_kzalloc(&pdev->dev, sizeof(*weim), GFP_KERNEL); >> + if (!weim) { >> + ret = -ENOMEM; >> + goto weim_err; >> + } >> + platform_set_drvdata(pdev, weim); >> + >> + /* get the resource */ >> + res = platform_get_resource(pdev, IORESOURCE_MEM, 0); >> + if (!res) { >> + ret = -ENOENT; >> + goto weim_err; >> + } > No need to do error checking here. devm_ioremap_resource() will do this > for you and also print an error message. > >> + >> + weim->base = devm_ioremap_resource(&pdev->dev, res); >> + if (IS_ERR(weim->base)) { >> + ret = PTR_ERR(weim->base); >> + goto weim_err; >> + } >> + >> + /* get the clock */ >> + weim->clk = devm_clk_get(&pdev->dev, NULL); >> + if (IS_ERR(weim->clk)) >> + goto weim_err; >> + >> + clk_prepare_enable(weim->clk); > what is this clock used for? Is it necessary for the register access or > is it necessary for the chipselects on the WEIM to work? > > yes. We need this clock. in actually, this clock is just a clock gate for several clocks, including clock for register access, and other necessary clocks. thanks Huang Shijie . _______________________________________________ devicetree-discuss mailing list devicetree-discuss@lists.ozlabs.org https://lists.ozlabs.org/listinfo/devicetree-discuss ^ permalink raw reply [flat|nested] 17+ messages in thread
* Re: [PATCH 1/6] drivers: bus: add a new driver for WEIM [not found] ` <1369039742-10893-2-git-send-email-b32955-KZfg59tc24xl57MIdRCFDg@public.gmane.org> 2013-05-20 13:18 ` Sascha Hauer @ 2013-05-21 5:43 ` Shawn Guo 2013-05-22 8:16 ` Huang Shijie 1 sibling, 1 reply; 17+ messages in thread From: Shawn Guo @ 2013-05-21 5:43 UTC (permalink / raw) To: Huang Shijie Cc: devicetree-discuss-uLR06cmDAlY/bJ5BZ2RsiQ, linux-kernel-u79uwXL29TY76Z2rM5mHXA, rob.herring-bsGFqQB8/DxBDgjK7y7TUQ, grant.likely-QSEj5FYQhm4dnm+yROfE0A, linux-arm-kernel-IAPFreCvJWM7uuMidbF8XUB+6BGkLq7r On Mon, May 20, 2013 at 04:48:57PM +0800, Huang Shijie wrote: > The WEIM(Wireless External Interface Module) works like a bus. > You can attach many different devices on it, such as NOR, onenand. > > In the case of i.MX6q-sabreauto, the NOR is connected to WEIM. > > This patch also adds the devicetree binding document. > The driver only works when the devicetree is enabled. > > Signed-off-by: Huang Shijie <b32955-KZfg59tc24xl57MIdRCFDg@public.gmane.org> > --- > Documentation/devicetree/bindings/bus/imx-weim.txt | 69 +++++++++ > drivers/bus/Kconfig | 9 ++ > drivers/bus/Makefile | 1 + > drivers/bus/imx-weim.c | 145 ++++++++++++++++++++ > 4 files changed, 224 insertions(+), 0 deletions(-) > create mode 100644 Documentation/devicetree/bindings/bus/imx-weim.txt > create mode 100644 drivers/bus/imx-weim.c > > diff --git a/Documentation/devicetree/bindings/bus/imx-weim.txt b/Documentation/devicetree/bindings/bus/imx-weim.txt > new file mode 100644 > index 0000000..9913454 > --- /dev/null > +++ b/Documentation/devicetree/bindings/bus/imx-weim.txt > @@ -0,0 +1,69 @@ > +Device tree bindings for i.MX Wireless External Interface Module (WEIM) > + > +The term ???wireless??? does not imply that the WEIM is literally an interface "wireless" > +without wires. It simply means that this module was originally designed for > +wireless and mobile applications that use low-power technology. > + > +The actual devices are instantiated from the child nodes of a WEIM node. > +But now we only have the NOR device. > + > +NOR flash connected to the WEIM (found on i.MX boards) are represented as > +child nodes with a name of "nor". I doubt that WEIM should care the particular device type connected on it. > + > +Required properties: > + > + - compatible: Should be set to "fsl, imx6q-weim" Drop the space in middle of compatible string. > + - reg: A resource specifier for the register space > + (see the example below) > + - interrupts: the interrupt number, see the example below. > + - clocks: the clock, see the example below. > + - #address-cells: Must be set to 2 to allow memory address translation > + - #size-cells: Must be set to 1 to allow CS address passing > + - ranges: Must be set up to reflect the memory layout with four > + integer values for each chip-select line in use: > + > + <cs-number> 0 <physical address of mapping> <size> > + > +Timing properties for child nodes. All are mandatory, not optional. > + > + -weim-cs-index: The CS index which the device is attaching on. It seems we can find it out from "reg" property, so that we can save this property? > + -weim-cs-timing: The timing array, contains 6 timing values for the > + weim-cs-index. This is a vendor specific property, and should have a vendor (fsl) perfix. Also please put a space after the first "-" which acts as a bullet symbol here. > + > +Example for an i.MX6q-sabreauto board: You can write it as i.MX6Q SABRE Auto or imx6q-sabreauto. > + weim: weim@021b8000 { > + compatible = "fsl,imx6q-weim"; > + reg = <0x021b8000 0x4000>; > + interrupts = <0 14 0x04>; > + clocks = <&clks 196>; > + #address-cells = <2>; > + #size-cells = <1>; > + ranges = <0 0 0x08000000 0x08000000>; > + > + nor@0,0 { > + compatible = "cfi-flash"; > + reg = <0 0 0x02000000>; > + #address-cells = <1>; > + #size-cells = <1>; > + bank-width = <2>; > + > + weim-cs-index = <0>; > + weim-cs-timing = <0x00620081 0x00000001 0x1C022000 > + 0x0000C000 0x1404a38e 0x00000000>; > + partition@0 { > + label = "U-Boot"; > + reg = <0x0 0x40000>; > + }; > + > + partition@40000 { > + label = "U-Boot-ENV"; > + reg = <0x40000 0x10000>; > + read-only; > + }; > + > + partition@50000 { > + label = "Kernel"; > + reg = <0x50000 0x3b0000>; > + }; > + }; > + }; > diff --git a/drivers/bus/Kconfig b/drivers/bus/Kconfig > index b05ecab..0f997af 100644 > --- a/drivers/bus/Kconfig > +++ b/drivers/bus/Kconfig > @@ -4,6 +4,15 @@ > > menu "Bus devices" > > +config IMX_WEIM > + tristate "Freescale EIM DRIVER" > + depends on ARCH_MXC && MTD_PHYSMAP_OF I do not see how this driver depends on MTD_PHYSMAP_OF. > + help > + Driver for i.MX6 WEIM controller. > + The WEIM(Wireless External Interface Module) works like a bus. > + You can attach many different devices on it, such as NOR, onenand. > + But now, we only support the Parallel NOR. > + > config MVEBU_MBUS > bool > depends on PLAT_ORION > diff --git a/drivers/bus/Makefile b/drivers/bus/Makefile > index 3c7b53c..436bbcc 100644 > --- a/drivers/bus/Makefile > +++ b/drivers/bus/Makefile > @@ -2,6 +2,7 @@ > # Makefile for the bus drivers. > # > > +obj-$(CONFIG_IMX_WEIM) += imx-weim.o > obj-$(CONFIG_MVEBU_MBUS) += mvebu-mbus.o > obj-$(CONFIG_OMAP_OCP2SCP) += omap-ocp2scp.o > > diff --git a/drivers/bus/imx-weim.c b/drivers/bus/imx-weim.c > new file mode 100644 > index 0000000..8bd9362 > --- /dev/null > +++ b/drivers/bus/imx-weim.c > @@ -0,0 +1,145 @@ > +/* > + * EIM driver for Freescale's i.MX chips > + * > + * Copyright (C) 2013 Freescale Semiconductor, Inc. > + * > + * This file is licensed under the terms of the GNU General Public > + * License version 2. This program is licensed "as is" without any > + * warranty of any kind, whether express or implied. > + */ > +#include <linux/module.h> > +#include <linux/clk.h> > +#include <linux/io.h> > +#include <linux/of_device.h> > + > +struct imx_weim { > + void __iomem *base; > + struct clk *clk; > +}; > + > +static const struct of_device_id weim_id_table[] = { > + { .compatible = "fsl,imx6q-weim", }, > + {} > +}; > +MODULE_DEVICE_TABLE(of, weim_id_table); > + > +#define CS_TIMING_LEN 6 > +#define CS_REG_RANGE 0x18 Nit: put a blank line here. > +/* Parse and set the timing for this device. */ > +static int weim_timing(struct platform_device *pdev, struct device_node *np) Name the function weim_timing_setup for better? > +{ > + struct imx_weim *weim = platform_get_drvdata(pdev); > + u32 value[CS_TIMING_LEN]; > + u32 cs_idx; > + int ret; > + int i; > + > + ret = of_property_read_u32(np, "weim-cs-index", &cs_idx); > + if (ret) > + goto weim_parse_err; Why not simply "return ret;"? > + > + ret = of_property_read_u32_array(np, "weim-cs-timing", > + value, CS_TIMING_LEN); > + if (ret) > + goto weim_parse_err; Ditto > + > + /* set the timing for WEIM */ > + for (i = 0; i < CS_TIMING_LEN; i++) > + writel(value[i], weim->base + cs_idx * CS_REG_RANGE + i * 4); > + return 0; > + > +weim_parse_err: > + return ret; > +} > + > +static int weim_parse_dt(struct platform_device *pdev) > +{ > + struct device_node *child; > + int ret; > + > + /* We only support the Parallel NOR now. We may add more in future. */ > + child = of_find_node_by_name(NULL, "nor"); > + if (child) { > + ret = weim_timing(pdev, child); > + if (ret) > + goto parse_fail; > + > + if (!of_platform_device_create(child, NULL, &pdev->dev)) { > + ret = -EINVAL; > + goto parse_fail; > + } > + } > + return 0; > + > +parse_fail: > + return ret; > +} I second Sascha's comments on this function. > + > +static int weim_probe(struct platform_device *pdev) > +{ > + struct imx_weim *weim; > + struct resource *res; > + int ret = -EINVAL; > + > + weim = devm_kzalloc(&pdev->dev, sizeof(*weim), GFP_KERNEL); > + if (!weim) { > + ret = -ENOMEM; > + goto weim_err; > + } > + platform_set_drvdata(pdev, weim); > + > + /* get the resource */ > + res = platform_get_resource(pdev, IORESOURCE_MEM, 0); > + if (!res) { > + ret = -ENOENT; > + goto weim_err; > + } > + > + weim->base = devm_ioremap_resource(&pdev->dev, res); > + if (IS_ERR(weim->base)) { > + ret = PTR_ERR(weim->base); > + goto weim_err; > + } > + > + /* get the clock */ > + weim->clk = devm_clk_get(&pdev->dev, NULL); > + if (IS_ERR(weim->clk)) > + goto weim_err; > + > + clk_prepare_enable(weim->clk); > + > + /* parse the device node */ > + ret = weim_parse_dt(pdev); > + if (ret) { > + clk_disable_unprepare(weim->clk); > + goto weim_err; > + } > + > + dev_info(&pdev->dev, "WEIM driver registered.\n"); > + return 0; > + > +weim_err: > + return ret; > +} > + > +static int weim_remove(struct platform_device *pdev) > +{ > + struct imx_weim *weim = platform_get_drvdata(pdev); > + > + clk_disable_unprepare(weim->clk); > + return 0; > +} > + > +static struct platform_driver weim_driver = { > + .driver = { > + .name = "imx-weim", > + .of_match_table = weim_id_table, > + }, > + .probe = weim_probe, > + .remove = weim_remove, > +}; > + > +module_platform_driver(weim_driver); > +MODULE_AUTHOR("Freescale Inc."); "Freescale Semiconductor, Inc." Shawn > +MODULE_DESCRIPTION("i.MX EIM Controller Driver"); > +MODULE_LICENSE("GPL"); > -- > 1.7.1 > > ^ permalink raw reply [flat|nested] 17+ messages in thread
* Re: [PATCH 1/6] drivers: bus: add a new driver for WEIM 2013-05-21 5:43 ` Shawn Guo @ 2013-05-22 8:16 ` Huang Shijie [not found] ` <519C7ED3.3030004-KZfg59tc24xl57MIdRCFDg@public.gmane.org> 0 siblings, 1 reply; 17+ messages in thread From: Huang Shijie @ 2013-05-22 8:16 UTC (permalink / raw) To: Shawn Guo Cc: grant.likely, rob.herring, arnd, devicetree-discuss, linux-kernel, linux-arm-kernel 于 2013年05月21日 13:43, Shawn Guo 写道: > It seems we can find it out from "reg" property, so that we can save > this property? > we may have several devices attaching to the weim, each device has its own CS index. it's better to keep this property, make it more clear. thanks Huang Shijie ^ permalink raw reply [flat|nested] 17+ messages in thread
[parent not found: <519C7ED3.3030004-KZfg59tc24xl57MIdRCFDg@public.gmane.org>]
* Re: [PATCH 1/6] drivers: bus: add a new driver for WEIM [not found] ` <519C7ED3.3030004-KZfg59tc24xl57MIdRCFDg@public.gmane.org> @ 2013-05-22 12:59 ` Arnd Bergmann [not found] ` <201305221459.34859.arnd-r2nGTMty4D4@public.gmane.org> 0 siblings, 1 reply; 17+ messages in thread From: Arnd Bergmann @ 2013-05-22 12:59 UTC (permalink / raw) To: Huang Shijie Cc: devicetree-discuss-uLR06cmDAlY/bJ5BZ2RsiQ, linux-kernel-u79uwXL29TY76Z2rM5mHXA, rob.herring-bsGFqQB8/DxBDgjK7y7TUQ, grant.likely-QSEj5FYQhm4dnm+yROfE0A, linux-arm-kernel-IAPFreCvJWM7uuMidbF8XUB+6BGkLq7r On Wednesday 22 May 2013, Huang Shijie wrote: > 于 2013年05月21日 13:43, Shawn Guo 写道: > > It seems we can find it out from "reg" property, so that we can save > > this property? > > > we may have several devices attaching to the weim, each device has its > own CS index. > it's better to keep this property, make it more clear. I agree with Shawn, we should not have this property when it is the same as the upper half of the "reg" property. Arnd _______________________________________________ devicetree-discuss mailing list devicetree-discuss@lists.ozlabs.org https://lists.ozlabs.org/listinfo/devicetree-discuss ^ permalink raw reply [flat|nested] 17+ messages in thread
[parent not found: <201305221459.34859.arnd-r2nGTMty4D4@public.gmane.org>]
* Re: [PATCH 1/6] drivers: bus: add a new driver for WEIM [not found] ` <201305221459.34859.arnd-r2nGTMty4D4@public.gmane.org> @ 2013-05-23 2:17 ` Huang Shijie 0 siblings, 0 replies; 17+ messages in thread From: Huang Shijie @ 2013-05-23 2:17 UTC (permalink / raw) To: Arnd Bergmann Cc: devicetree-discuss-uLR06cmDAlY/bJ5BZ2RsiQ, linux-kernel-u79uwXL29TY76Z2rM5mHXA, rob.herring-bsGFqQB8/DxBDgjK7y7TUQ, grant.likely-QSEj5FYQhm4dnm+yROfE0A, linux-arm-kernel-IAPFreCvJWM7uuMidbF8XUB+6BGkLq7r 于 2013年05月22日 20:59, Arnd Bergmann 写道: > On Wednesday 22 May 2013, Huang Shijie wrote: >> 于 2013年05月21日 13:43, Shawn Guo 写道: >>> It seems we can find it out from "reg" property, so that we can save >>> this property? >>> >> we may have several devices attaching to the weim, each device has its >> own CS index. >> it's better to keep this property, make it more clear. > I agree with Shawn, we should not have this property when it is the > same as the upper half of the "reg" property. okay. I will remove this property. thanks Huang Shijie _______________________________________________ devicetree-discuss mailing list devicetree-discuss@lists.ozlabs.org https://lists.ozlabs.org/listinfo/devicetree-discuss ^ permalink raw reply [flat|nested] 17+ messages in thread
[parent not found: <1369039742-10893-1-git-send-email-b32955-KZfg59tc24xl57MIdRCFDg@public.gmane.org>]
* [PATCH 2/6] ARM: dts: imx6q{dl}: fix the pin conflict between SPI and WEIM [not found] ` <1369039742-10893-1-git-send-email-b32955-KZfg59tc24xl57MIdRCFDg@public.gmane.org> @ 2013-05-20 8:48 ` Huang Shijie [not found] ` <1369039742-10893-3-git-send-email-b32955-KZfg59tc24xl57MIdRCFDg@public.gmane.org> 0 siblings, 1 reply; 17+ messages in thread From: Huang Shijie @ 2013-05-20 8:48 UTC (permalink / raw) To: grant.likely-QSEj5FYQhm4dnm+yROfE0A Cc: devicetree-discuss-uLR06cmDAlY/bJ5BZ2RsiQ, linux-kernel-u79uwXL29TY76Z2rM5mHXA, rob.herring-bsGFqQB8/DxBDgjK7y7TUQ, Huang Shijie, linux-arm-kernel-IAPFreCvJWM7uuMidbF8XUB+6BGkLq7r In the imx6q-sabreauto and imx6dl-sabreauto boards, the pin MX6Q{DL}_PAD_EIM_D19 is used as a GPIO for SPI NOR, but it is used as a data pin for the WEIM NOR. In order to fix the conflict, this patch removes the pin from the hog, and adds a new pinctrl item: pinctrl_ecspi1_2. The SPI NOR selects this pinctrl_ecspi1_2 when it is enabled. Signed-off-by: Huang Shijie <b32955-KZfg59tc24xl57MIdRCFDg@public.gmane.org> --- arch/arm/boot/dts/imx6dl-sabreauto.dts | 9 ++++++++- arch/arm/boot/dts/imx6q-sabreauto.dts | 9 ++++++++- arch/arm/boot/dts/imx6qdl-sabreauto.dtsi | 2 +- 3 files changed, 17 insertions(+), 3 deletions(-) diff --git a/arch/arm/boot/dts/imx6dl-sabreauto.dts b/arch/arm/boot/dts/imx6dl-sabreauto.dts index 60f3038..7695f70 100644 --- a/arch/arm/boot/dts/imx6dl-sabreauto.dts +++ b/arch/arm/boot/dts/imx6dl-sabreauto.dts @@ -25,7 +25,14 @@ fsl,pins = < MX6DL_PAD_NANDF_CS2__GPIO6_IO15 0x80000000 MX6DL_PAD_SD2_DAT2__GPIO1_IO13 0x80000000 - MX6DL_PAD_EIM_D19__GPIO3_IO19 0x80000000 + >; + }; + }; + + ecspi1 { + pinctrl_ecspi1_2: ecspi1grp-2 { + fsl,pins = < + MX6DL_PAD_EIM_D19__GPIO3_IO19 0x80000000 >; }; }; diff --git a/arch/arm/boot/dts/imx6q-sabreauto.dts b/arch/arm/boot/dts/imx6q-sabreauto.dts index 9fb3e99..67a3a6b 100644 --- a/arch/arm/boot/dts/imx6q-sabreauto.dts +++ b/arch/arm/boot/dts/imx6q-sabreauto.dts @@ -29,7 +29,14 @@ fsl,pins = < MX6Q_PAD_NANDF_CS2__GPIO6_IO15 0x80000000 MX6Q_PAD_SD2_DAT2__GPIO1_IO13 0x80000000 - MX6Q_PAD_EIM_D19__GPIO3_IO19 0x80000000 + >; + }; + }; + + ecspi1 { + pinctrl_ecspi1_2: ecspi1grp-2 { + fsl,pins = < + MX6Q_PAD_EIM_D19__GPIO3_IO19 0x80000000 >; }; }; diff --git a/arch/arm/boot/dts/imx6qdl-sabreauto.dtsi b/arch/arm/boot/dts/imx6qdl-sabreauto.dtsi index d6baa51..eb293f5 100644 --- a/arch/arm/boot/dts/imx6qdl-sabreauto.dtsi +++ b/arch/arm/boot/dts/imx6qdl-sabreauto.dtsi @@ -20,7 +20,7 @@ fsl,spi-num-chipselects = <1>; cs-gpios = <&gpio3 19 0>; pinctrl-names = "default"; - pinctrl-0 = <&pinctrl_ecspi1_1>; + pinctrl-0 = <&pinctrl_ecspi1_1 &pinctrl_ecspi1_2>; status = "disabled"; /* pin conflict with WEIM NOR */ flash: m25p80@0 { -- 1.7.1 ^ permalink raw reply related [flat|nested] 17+ messages in thread
[parent not found: <1369039742-10893-3-git-send-email-b32955-KZfg59tc24xl57MIdRCFDg@public.gmane.org>]
* Re: [PATCH 2/6] ARM: dts: imx6q{dl}: fix the pin conflict between SPI and WEIM [not found] ` <1369039742-10893-3-git-send-email-b32955-KZfg59tc24xl57MIdRCFDg@public.gmane.org> @ 2013-05-21 5:49 ` Shawn Guo 2013-05-21 5:53 ` Huang Shijie 0 siblings, 1 reply; 17+ messages in thread From: Shawn Guo @ 2013-05-21 5:49 UTC (permalink / raw) To: Huang Shijie Cc: devicetree-discuss-uLR06cmDAlY/bJ5BZ2RsiQ, linux-kernel-u79uwXL29TY76Z2rM5mHXA, rob.herring-bsGFqQB8/DxBDgjK7y7TUQ, grant.likely-QSEj5FYQhm4dnm+yROfE0A, linux-arm-kernel-IAPFreCvJWM7uuMidbF8XUB+6BGkLq7r On Mon, May 20, 2013 at 04:48:58PM +0800, Huang Shijie wrote: > In the imx6q-sabreauto and imx6dl-sabreauto boards, > the pin MX6Q{DL}_PAD_EIM_D19 is used as a GPIO for SPI NOR, but > it is used as a data pin for the WEIM NOR. > > In order to fix the conflict, this patch removes the pin from the hog, > and adds a new pinctrl item: pinctrl_ecspi1_2. > > The SPI NOR selects this pinctrl_ecspi1_2 when it is enabled. > > Signed-off-by: Huang Shijie <b32955-KZfg59tc24xl57MIdRCFDg@public.gmane.org> > --- > arch/arm/boot/dts/imx6dl-sabreauto.dts | 9 ++++++++- > arch/arm/boot/dts/imx6q-sabreauto.dts | 9 ++++++++- > arch/arm/boot/dts/imx6qdl-sabreauto.dtsi | 2 +- > 3 files changed, 17 insertions(+), 3 deletions(-) > > diff --git a/arch/arm/boot/dts/imx6dl-sabreauto.dts b/arch/arm/boot/dts/imx6dl-sabreauto.dts > index 60f3038..7695f70 100644 > --- a/arch/arm/boot/dts/imx6dl-sabreauto.dts > +++ b/arch/arm/boot/dts/imx6dl-sabreauto.dts > @@ -25,7 +25,14 @@ > fsl,pins = < > MX6DL_PAD_NANDF_CS2__GPIO6_IO15 0x80000000 > MX6DL_PAD_SD2_DAT2__GPIO1_IO13 0x80000000 > - MX6DL_PAD_EIM_D19__GPIO3_IO19 0x80000000 > + >; > + }; > + }; > + > + ecspi1 { > + pinctrl_ecspi1_2: ecspi1grp-2 { The naming sounds like another ecspi1 pin groups beside pinctrl_ecspi1_1, both of which should be ecspi1 pin groups defined by SoC. Please encode the board name in there to suggest this is a board specific pin setup for ecspi1, something like pinctrl_ecspi1_sabreauto. Shawn > + fsl,pins = < > + MX6DL_PAD_EIM_D19__GPIO3_IO19 0x80000000 > >; > }; > }; > diff --git a/arch/arm/boot/dts/imx6q-sabreauto.dts b/arch/arm/boot/dts/imx6q-sabreauto.dts > index 9fb3e99..67a3a6b 100644 > --- a/arch/arm/boot/dts/imx6q-sabreauto.dts > +++ b/arch/arm/boot/dts/imx6q-sabreauto.dts > @@ -29,7 +29,14 @@ > fsl,pins = < > MX6Q_PAD_NANDF_CS2__GPIO6_IO15 0x80000000 > MX6Q_PAD_SD2_DAT2__GPIO1_IO13 0x80000000 > - MX6Q_PAD_EIM_D19__GPIO3_IO19 0x80000000 > + >; > + }; > + }; > + > + ecspi1 { > + pinctrl_ecspi1_2: ecspi1grp-2 { > + fsl,pins = < > + MX6Q_PAD_EIM_D19__GPIO3_IO19 0x80000000 > >; > }; > }; > diff --git a/arch/arm/boot/dts/imx6qdl-sabreauto.dtsi b/arch/arm/boot/dts/imx6qdl-sabreauto.dtsi > index d6baa51..eb293f5 100644 > --- a/arch/arm/boot/dts/imx6qdl-sabreauto.dtsi > +++ b/arch/arm/boot/dts/imx6qdl-sabreauto.dtsi > @@ -20,7 +20,7 @@ > fsl,spi-num-chipselects = <1>; > cs-gpios = <&gpio3 19 0>; > pinctrl-names = "default"; > - pinctrl-0 = <&pinctrl_ecspi1_1>; > + pinctrl-0 = <&pinctrl_ecspi1_1 &pinctrl_ecspi1_2>; > status = "disabled"; /* pin conflict with WEIM NOR */ > > flash: m25p80@0 { > -- > 1.7.1 > > ^ permalink raw reply [flat|nested] 17+ messages in thread
* Re: [PATCH 2/6] ARM: dts: imx6q{dl}: fix the pin conflict between SPI and WEIM 2013-05-21 5:49 ` Shawn Guo @ 2013-05-21 5:53 ` Huang Shijie 0 siblings, 0 replies; 17+ messages in thread From: Huang Shijie @ 2013-05-21 5:53 UTC (permalink / raw) To: Shawn Guo Cc: grant.likely, rob.herring, arnd, devicetree-discuss, linux-kernel, linux-arm-kernel 于 2013年05月21日 13:49, Shawn Guo 写道: > specific pin setup for ecspi1, something like pinctrl_ecspi1_sabreauto. ok. thanks Huang Shijie ^ permalink raw reply [flat|nested] 17+ messages in thread
* [PATCH 3/6] ARM: dts: imx6qdl: add more information for WEIM 2013-05-20 8:48 [PATCH 0/6] ARM: imx6q{dl}: add the WEIM driver Huang Shijie 2013-05-20 8:48 ` [PATCH 1/6] drivers: bus: add a new driver for WEIM Huang Shijie [not found] ` <1369039742-10893-1-git-send-email-b32955-KZfg59tc24xl57MIdRCFDg@public.gmane.org> @ 2013-05-20 8:48 ` Huang Shijie 2013-05-20 8:49 ` [PATCH 4/6] ARM: dts: imx6q: add pinctrl for WEIM NOR Huang Shijie ` (2 subsequent siblings) 5 siblings, 0 replies; 17+ messages in thread From: Huang Shijie @ 2013-05-20 8:48 UTC (permalink / raw) To: grant.likely Cc: rob.herring, arnd, devicetree-discuss, linux-kernel, linux-arm-kernel, shawn.guo, Huang Shijie Add the clock and compatible information for the weim. Also adds the weim label. Signed-off-by: Huang Shijie <b32955@freescale.com> --- arch/arm/boot/dts/imx6qdl.dtsi | 4 +++- 1 files changed, 3 insertions(+), 1 deletions(-) diff --git a/arch/arm/boot/dts/imx6qdl.dtsi b/arch/arm/boot/dts/imx6qdl.dtsi index 42e461c..f21d259 100644 --- a/arch/arm/boot/dts/imx6qdl.dtsi +++ b/arch/arm/boot/dts/imx6qdl.dtsi @@ -744,9 +744,11 @@ reg = <0x021b4000 0x4000>; }; - weim@021b8000 { + weim: weim@021b8000 { + compatible = "fsl,imx6q-weim"; reg = <0x021b8000 0x4000>; interrupts = <0 14 0x04>; + clocks = <&clks 196>; }; ocotp@021bc000 { -- 1.7.1 ^ permalink raw reply related [flat|nested] 17+ messages in thread
* [PATCH 4/6] ARM: dts: imx6q: add pinctrl for WEIM NOR 2013-05-20 8:48 [PATCH 0/6] ARM: imx6q{dl}: add the WEIM driver Huang Shijie ` (2 preceding siblings ...) 2013-05-20 8:48 ` [PATCH 3/6] ARM: dts: imx6qdl: add more information for WEIM Huang Shijie @ 2013-05-20 8:49 ` Huang Shijie 2013-05-20 8:49 ` [PATCH 5/6] ARM: dts: imx6ql: add a " Huang Shijie 2013-05-20 8:49 ` [PATCH 6/6] ARM: dts: imx6qdl: enable the " Huang Shijie 5 siblings, 0 replies; 17+ messages in thread From: Huang Shijie @ 2013-05-20 8:49 UTC (permalink / raw) To: grant.likely Cc: rob.herring, arnd, devicetree-discuss, linux-kernel, linux-arm-kernel, shawn.guo, Huang Shijie Add a pinctrl for WEIM nor. Signed-off-by: Huang Shijie <b32955@freescale.com> --- arch/arm/boot/dts/imx6q.dtsi | 58 ++++++++++++++++++++++++++++++++++++++++++ 1 files changed, 58 insertions(+), 0 deletions(-) diff --git a/arch/arm/boot/dts/imx6q.dtsi b/arch/arm/boot/dts/imx6q.dtsi index ed11bcf..e6174c7 100644 --- a/arch/arm/boot/dts/imx6q.dtsi +++ b/arch/arm/boot/dts/imx6q.dtsi @@ -323,6 +323,64 @@ >; }; }; + + weim { + pinctrl_weim_nor_1: weim_norgrp-1 { + fsl,pins = < + MX6Q_PAD_EIM_OE__EIM_OE_B 0x10 + MX6Q_PAD_EIM_RW__EIM_RW 0x10 + MX6Q_PAD_EIM_CS0__EIM_CS0_B 0x10 + MX6Q_PAD_EIM_LBA__EIM_LBA_B 0x10 + MX6Q_PAD_EIM_WAIT__EIM_WAIT_B 0x8000 + MX6Q_PAD_EIM_BCLK__EIM_BCLK 0x8000 + + /* data */ + MX6Q_PAD_EIM_D16__EIM_DATA16 0x1b0b0 + MX6Q_PAD_EIM_D17__EIM_DATA17 0x1b0b0 + MX6Q_PAD_EIM_D18__EIM_DATA18 0x1b0b0 + MX6Q_PAD_EIM_D19__EIM_DATA19 0x1b0b0 + MX6Q_PAD_EIM_D20__EIM_DATA20 0x1b0b0 + MX6Q_PAD_EIM_D21__EIM_DATA21 0x1b0b0 + MX6Q_PAD_EIM_D22__EIM_DATA22 0x1b0b0 + MX6Q_PAD_EIM_D23__EIM_DATA23 0x1b0b0 + MX6Q_PAD_EIM_D24__EIM_DATA24 0x1b0b0 + MX6Q_PAD_EIM_D25__EIM_DATA25 0x1b0b0 + MX6Q_PAD_EIM_D26__EIM_DATA26 0x1b0b0 + MX6Q_PAD_EIM_D27__EIM_DATA27 0x1b0b0 + MX6Q_PAD_EIM_D28__EIM_DATA28 0x1b0b0 + MX6Q_PAD_EIM_D29__EIM_DATA29 0x1b0b0 + MX6Q_PAD_EIM_D30__EIM_DATA30 0x1b0b0 + MX6Q_PAD_EIM_D31__EIM_DATA31 0x1b0b0 + + /* address */ + MX6Q_PAD_EIM_A23__EIM_ADDR23 0xb0b1 + MX6Q_PAD_EIM_A22__EIM_ADDR22 0xb0b1 + MX6Q_PAD_EIM_A21__EIM_ADDR21 0xb0b1 + MX6Q_PAD_EIM_A20__EIM_ADDR20 0xb0b1 + MX6Q_PAD_EIM_A19__EIM_ADDR19 0xb0b1 + MX6Q_PAD_EIM_A18__EIM_ADDR18 0xb0b1 + MX6Q_PAD_EIM_A17__EIM_ADDR17 0xb0b1 + MX6Q_PAD_EIM_A16__EIM_ADDR16 0xb0b1 + MX6Q_PAD_EIM_DA15__EIM_AD15 0xb0b1 + MX6Q_PAD_EIM_DA14__EIM_AD14 0xb0b1 + MX6Q_PAD_EIM_DA13__EIM_AD13 0xb0b1 + MX6Q_PAD_EIM_DA12__EIM_AD12 0xb0b1 + MX6Q_PAD_EIM_DA11__EIM_AD11 0xb0b1 + MX6Q_PAD_EIM_DA10__EIM_AD10 0xb0b1 + MX6Q_PAD_EIM_DA9__EIM_AD09 0xb0b1 + MX6Q_PAD_EIM_DA8__EIM_AD08 0xb0b1 + MX6Q_PAD_EIM_DA7__EIM_AD07 0xb0b1 + MX6Q_PAD_EIM_DA6__EIM_AD06 0xb0b1 + MX6Q_PAD_EIM_DA5__EIM_AD05 0xb0b1 + MX6Q_PAD_EIM_DA4__EIM_AD04 0xb0b1 + MX6Q_PAD_EIM_DA3__EIM_AD03 0xb0b1 + MX6Q_PAD_EIM_DA2__EIM_AD02 0xb0b1 + MX6Q_PAD_EIM_DA1__EIM_AD01 0xb0b1 + MX6Q_PAD_EIM_DA0__EIM_AD00 0xb0b1 + >; + }; + + }; }; }; -- 1.7.1 ^ permalink raw reply related [flat|nested] 17+ messages in thread
* [PATCH 5/6] ARM: dts: imx6ql: add a pinctrl for WEIM NOR 2013-05-20 8:48 [PATCH 0/6] ARM: imx6q{dl}: add the WEIM driver Huang Shijie ` (3 preceding siblings ...) 2013-05-20 8:49 ` [PATCH 4/6] ARM: dts: imx6q: add pinctrl for WEIM NOR Huang Shijie @ 2013-05-20 8:49 ` Huang Shijie 2013-05-20 8:49 ` [PATCH 6/6] ARM: dts: imx6qdl: enable the " Huang Shijie 5 siblings, 0 replies; 17+ messages in thread From: Huang Shijie @ 2013-05-20 8:49 UTC (permalink / raw) To: grant.likely Cc: rob.herring, arnd, devicetree-discuss, linux-kernel, linux-arm-kernel, shawn.guo, Huang Shijie Add a new pinctrl for WEIN NOR. Signed-off-by: Huang Shijie <b32955@freescale.com> --- arch/arm/boot/dts/imx6dl.dtsi | 57 +++++++++++++++++++++++++++++++++++++++++ 1 files changed, 57 insertions(+), 0 deletions(-) diff --git a/arch/arm/boot/dts/imx6dl.dtsi b/arch/arm/boot/dts/imx6dl.dtsi index 4b13454..e51c5b7 100644 --- a/arch/arm/boot/dts/imx6dl.dtsi +++ b/arch/arm/boot/dts/imx6dl.dtsi @@ -183,6 +183,63 @@ }; }; + weim { + pinctrl_weim_nor_1: weim_norgrp-1 { + fsl,pins = < + MX6DL_PAD_EIM_OE__EIM_OE_B 0x10 + MX6DL_PAD_EIM_RW__EIM_RW 0x10 + MX6DL_PAD_EIM_CS0__EIM_CS0_B 0x10 + MX6DL_PAD_EIM_LBA__EIM_LBA_B 0x10 + MX6DL_PAD_EIM_WAIT__EIM_WAIT_B 0x8000 + MX6DL_PAD_EIM_BCLK__EIM_BCLK 0x8000 + + /* data */ + MX6DL_PAD_EIM_D16__EIM_DATA16 0x1b0b0 + MX6DL_PAD_EIM_D17__EIM_DATA17 0x1b0b0 + MX6DL_PAD_EIM_D18__EIM_DATA18 0x1b0b0 + MX6DL_PAD_EIM_D19__EIM_DATA19 0x1b0b0 + MX6DL_PAD_EIM_D20__EIM_DATA20 0x1b0b0 + MX6DL_PAD_EIM_D21__EIM_DATA21 0x1b0b0 + MX6DL_PAD_EIM_D22__EIM_DATA22 0x1b0b0 + MX6DL_PAD_EIM_D23__EIM_DATA23 0x1b0b0 + MX6DL_PAD_EIM_D24__EIM_DATA24 0x1b0b0 + MX6DL_PAD_EIM_D25__EIM_DATA25 0x1b0b0 + MX6DL_PAD_EIM_D26__EIM_DATA26 0x1b0b0 + MX6DL_PAD_EIM_D27__EIM_DATA27 0x1b0b0 + MX6DL_PAD_EIM_D28__EIM_DATA28 0x1b0b0 + MX6DL_PAD_EIM_D29__EIM_DATA29 0x1b0b0 + MX6DL_PAD_EIM_D30__EIM_DATA30 0x1b0b0 + MX6DL_PAD_EIM_D31__EIM_DATA31 0x1b0b0 + + /* address */ + MX6DL_PAD_EIM_A23__EIM_ADDR23 0xb0b1 + MX6DL_PAD_EIM_A22__EIM_ADDR22 0xb0b1 + MX6DL_PAD_EIM_A21__EIM_ADDR21 0xb0b1 + MX6DL_PAD_EIM_A20__EIM_ADDR20 0xb0b1 + MX6DL_PAD_EIM_A19__EIM_ADDR19 0xb0b1 + MX6DL_PAD_EIM_A18__EIM_ADDR18 0xb0b1 + MX6DL_PAD_EIM_A17__EIM_ADDR17 0xb0b1 + MX6DL_PAD_EIM_A16__EIM_ADDR16 0xb0b1 + MX6DL_PAD_EIM_DA15__EIM_AD15 0xb0b1 + MX6DL_PAD_EIM_DA14__EIM_AD14 0xb0b1 + MX6DL_PAD_EIM_DA13__EIM_AD13 0xb0b1 + MX6DL_PAD_EIM_DA12__EIM_AD12 0xb0b1 + MX6DL_PAD_EIM_DA11__EIM_AD11 0xb0b1 + MX6DL_PAD_EIM_DA10__EIM_AD10 0xb0b1 + MX6DL_PAD_EIM_DA9__EIM_AD09 0xb0b1 + MX6DL_PAD_EIM_DA8__EIM_AD08 0xb0b1 + MX6DL_PAD_EIM_DA7__EIM_AD07 0xb0b1 + MX6DL_PAD_EIM_DA6__EIM_AD06 0xb0b1 + MX6DL_PAD_EIM_DA5__EIM_AD05 0xb0b1 + MX6DL_PAD_EIM_DA4__EIM_AD04 0xb0b1 + MX6DL_PAD_EIM_DA3__EIM_AD03 0xb0b1 + MX6DL_PAD_EIM_DA2__EIM_AD02 0xb0b1 + MX6DL_PAD_EIM_DA1__EIM_AD01 0xb0b1 + MX6DL_PAD_EIM_DA0__EIM_AD00 0xb0b1 + >; + }; + + }; }; -- 1.7.1 ^ permalink raw reply related [flat|nested] 17+ messages in thread
* [PATCH 6/6] ARM: dts: imx6qdl: enable the WEIM NOR 2013-05-20 8:48 [PATCH 0/6] ARM: imx6q{dl}: add the WEIM driver Huang Shijie ` (4 preceding siblings ...) 2013-05-20 8:49 ` [PATCH 5/6] ARM: dts: imx6ql: add a " Huang Shijie @ 2013-05-20 8:49 ` Huang Shijie 5 siblings, 0 replies; 17+ messages in thread From: Huang Shijie @ 2013-05-20 8:49 UTC (permalink / raw) To: grant.likely Cc: rob.herring, arnd, devicetree-discuss, linux-kernel, linux-arm-kernel, shawn.guo, Huang Shijie Enable the WEIM NOR for imx6q{dl} boards. For the pin conflict with SPI NOR, its status is set to "disabled". Signed-off-by: Huang Shijie <b32955@freescale.com> --- arch/arm/boot/dts/imx6qdl-sabreauto.dtsi | 21 +++++++++++++++++++++ 1 files changed, 21 insertions(+), 0 deletions(-) diff --git a/arch/arm/boot/dts/imx6qdl-sabreauto.dtsi b/arch/arm/boot/dts/imx6qdl-sabreauto.dtsi index eb293f5..9ce7c1d 100644 --- a/arch/arm/boot/dts/imx6qdl-sabreauto.dtsi +++ b/arch/arm/boot/dts/imx6qdl-sabreauto.dtsi @@ -58,3 +58,24 @@ wp-gpios = <&gpio1 13 0>; status = "okay"; }; + +&weim { + pinctrl-names = "default"; + pinctrl-0 = <&pinctrl_weim_nor_1>; + #address-cells = <2>; + #size-cells = <1>; + ranges = <0 0 0x08000000 0x08000000>; + status = "disabled"; /* pin conflict with SPI NOR */ + + nor@0,0 { + compatible = "cfi-flash"; + reg = <0 0 0x02000000>; + #address-cells = <1>; + #size-cells = <1>; + bank-width = <2>; + + weim-cs-index = <0>; + weim-cs-timing = <0x00620081 0x00000001 0x1C022000 + 0x0000C000 0x1404a38e 0x00000000>; + }; +}; -- 1.7.1 ^ permalink raw reply related [flat|nested] 17+ messages in thread
* Re: [PATCH 1/6] drivers: bus: add a new driver for WEIM @ 2013-05-21 16:29 Chaiken, Alison [not found] ` <60BA5429A0E1584BA3633194F6F993B50252C924-0dz9ie/QGrnnlEkxMdpx1dQH9K4/4qFeAL8bYrjMMd8@public.gmane.org> 0 siblings, 1 reply; 17+ messages in thread From: Chaiken, Alison @ 2013-05-21 16:29 UTC (permalink / raw) To: devicetree-discuss-uLR06cmDAlY/bJ5BZ2RsiQ@public.gmane.org Cc: b32955-KZfg59tc24xl57MIdRCFDg@public.gmane.org > + weim: weim at 021b8000 { > + compatible = "fsl,imx6q-weim"; > + reg = <0x021b8000 0x4000>; > + interrupts = <0 14 0x04>; > + clocks = <&clks 196>; > + #address-cells = <2>; > + #size-cells = <1>; > + ranges = <0 0 0x08000000 0x08000000>; > + > + nor at 0,0 { > + compatible = "cfi-flash"; Why not use compatible = "micron,M29W256G", "cfi-flash"; since that's what's on the SABRE-AI board? > diff --git a/drivers/bus/Kconfig b/drivers/bus/Kconfig > index b05ecab..0f997af 100644 > --- a/drivers/bus/Kconfig > +++ b/drivers/bus/Kconfig > @@ -4,6 +4,15 @@ > > menu "Bus devices" > > +config IMX_WEIM > + tristate "Freescale EIM DRIVER" > + depends on ARCH_MXC && MTD_PHYSMAP_OF Shawn Guo: I do not see how this driver depends on MTD_PHYSMAP_OF. physmap_of is the module that provides the mapping driver for the cfi-flash that associates memory with the "reg" properties of the nor node. However, since EIM can also attach Bluetooth module or GPS, the EIM driver itself certainly does not depend on the map module. -- Alison Chaiken alison_chaiken-nmGgyN9QBj3QT0dZR+AlfA@public.gmane.org ^ permalink raw reply [flat|nested] 17+ messages in thread
[parent not found: <60BA5429A0E1584BA3633194F6F993B50252C924-0dz9ie/QGrnnlEkxMdpx1dQH9K4/4qFeAL8bYrjMMd8@public.gmane.org>]
* Re: [PATCH 1/6] drivers: bus: add a new driver for WEIM [not found] ` <60BA5429A0E1584BA3633194F6F993B50252C924-0dz9ie/QGrnnlEkxMdpx1dQH9K4/4qFeAL8bYrjMMd8@public.gmane.org> @ 2013-05-22 8:01 ` Huang Shijie 0 siblings, 0 replies; 17+ messages in thread From: Huang Shijie @ 2013-05-22 8:01 UTC (permalink / raw) To: Chaiken, Alison Cc: devicetree-discuss-uLR06cmDAlY/bJ5BZ2RsiQ@public.gmane.org 于 2013年05月22日 00:29, Chaiken, Alison 写道: >> + weim: weim at 021b8000 { >> + compatible = "fsl,imx6q-weim"; >> + reg =<0x021b8000 0x4000>; >> + interrupts =<0 14 0x04>; >> + clocks =<&clks 196>; >> + #address-cells =<2>; >> + #size-cells =<1>; >> + ranges =<0 0 0x08000000 0x08000000>; >> + >> + nor at 0,0 { >> + compatible = "cfi-flash"; > Why not use > > compatible = "micron,M29W256G", "cfi-flash"; > > since that's what's on the SABRE-AI board? > we may use other NOR. :) so it's better do not bind the specific NOR, even for SABRE-AI. I even tested Spanion NOR in the SABRE-AI boards. >> diff --git a/drivers/bus/Kconfig b/drivers/bus/Kconfig >> index b05ecab..0f997af 100644 >> --- a/drivers/bus/Kconfig >> +++ b/drivers/bus/Kconfig >> @@ -4,6 +4,15 @@ >> >> menu "Bus devices" >> >> +config IMX_WEIM >> + tristate "Freescale EIM DRIVER" >> + depends on ARCH_MXC&& MTD_PHYSMAP_OF > Shawn Guo: > I do not see how this driver depends on MTD_PHYSMAP_OF. > > physmap_of is the module that provides the mapping driver for the cfi-flash that associates memory with the "reg" properties of the nor node. However, since EIM can also attach Bluetooth module or GPS, the EIM driver itself certainly does not depend on the map module. > ok. i will remove it in next version. thanks for the comment and review. Huang Shijie _______________________________________________ devicetree-discuss mailing list devicetree-discuss@lists.ozlabs.org https://lists.ozlabs.org/listinfo/devicetree-discuss ^ permalink raw reply [flat|nested] 17+ messages in thread
end of thread, other threads:[~2013-05-23 2:17 UTC | newest] Thread overview: 17+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2013-05-20 8:48 [PATCH 0/6] ARM: imx6q{dl}: add the WEIM driver Huang Shijie 2013-05-20 8:48 ` [PATCH 1/6] drivers: bus: add a new driver for WEIM Huang Shijie [not found] ` <1369039742-10893-2-git-send-email-b32955-KZfg59tc24xl57MIdRCFDg@public.gmane.org> 2013-05-20 13:18 ` Sascha Hauer [not found] ` <20130520131827.GB32299-bIcnvbaLZ9MEGnE8C9+IrQ@public.gmane.org> 2013-05-22 8:30 ` Huang Shijie 2013-05-21 5:43 ` Shawn Guo 2013-05-22 8:16 ` Huang Shijie [not found] ` <519C7ED3.3030004-KZfg59tc24xl57MIdRCFDg@public.gmane.org> 2013-05-22 12:59 ` Arnd Bergmann [not found] ` <201305221459.34859.arnd-r2nGTMty4D4@public.gmane.org> 2013-05-23 2:17 ` Huang Shijie [not found] ` <1369039742-10893-1-git-send-email-b32955-KZfg59tc24xl57MIdRCFDg@public.gmane.org> 2013-05-20 8:48 ` [PATCH 2/6] ARM: dts: imx6q{dl}: fix the pin conflict between SPI and WEIM Huang Shijie [not found] ` <1369039742-10893-3-git-send-email-b32955-KZfg59tc24xl57MIdRCFDg@public.gmane.org> 2013-05-21 5:49 ` Shawn Guo 2013-05-21 5:53 ` Huang Shijie 2013-05-20 8:48 ` [PATCH 3/6] ARM: dts: imx6qdl: add more information for WEIM Huang Shijie 2013-05-20 8:49 ` [PATCH 4/6] ARM: dts: imx6q: add pinctrl for WEIM NOR Huang Shijie 2013-05-20 8:49 ` [PATCH 5/6] ARM: dts: imx6ql: add a " Huang Shijie 2013-05-20 8:49 ` [PATCH 6/6] ARM: dts: imx6qdl: enable the " Huang Shijie -- strict thread matches above, loose matches on Subject: below -- 2013-05-21 16:29 [PATCH 1/6] drivers: bus: add a new driver for WEIM Chaiken, Alison [not found] ` <60BA5429A0E1584BA3633194F6F993B50252C924-0dz9ie/QGrnnlEkxMdpx1dQH9K4/4qFeAL8bYrjMMd8@public.gmane.org> 2013-05-22 8:01 ` Huang Shijie
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).