All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH v2] nand: brcmnand: add iproc support
@ 2023-03-08 21:42 Linus Walleij
  2023-03-11  1:03 ` William Zhang
  0 siblings, 1 reply; 9+ messages in thread
From: Linus Walleij @ 2023-03-08 21:42 UTC (permalink / raw)
  To: u-boot, Tom Rini, Michael Nazzareno Trimarchi, William Zhang
  Cc: Anand Gore, Kursad Oney, Joel Peshkin, Philippe Reynes,
	Rafał Miłecki, Linus Walleij, Dario Binacchi

Add support for the iproc Broadcom NAND controller,
used in Northstar SoCs for example. Based on the Linux
driver.

Cc: Philippe Reynes <philippe.reynes@softathome.com>
Cc: Dario Binacchi <dario.binacchi@amarulasolutions.com>
Reviewed-by: Michael Trimarchi <michael@amarulasolutions.com>
Signed-off-by: Linus Walleij <linus.walleij@linaro.org>
---
ChangeLog v1->v2:
- Check return value of dev_read_resource()
- Use devm_ioremap()
- Collect Michael's Review tag
---
 drivers/mtd/nand/raw/Kconfig               |   7 +
 drivers/mtd/nand/raw/brcmnand/Makefile     |   1 +
 drivers/mtd/nand/raw/brcmnand/iproc_nand.c | 148 +++++++++++++++++++++
 3 files changed, 156 insertions(+)
 create mode 100644 drivers/mtd/nand/raw/brcmnand/iproc_nand.c

diff --git a/drivers/mtd/nand/raw/Kconfig b/drivers/mtd/nand/raw/Kconfig
index 5b35da45f584..6a13bc1e228a 100644
--- a/drivers/mtd/nand/raw/Kconfig
+++ b/drivers/mtd/nand/raw/Kconfig
@@ -156,6 +156,13 @@ config NAND_BRCMNAND_63158
        help
          Enable support for broadcom nand driver on bcm63158.
 
+config NAND_BRCMNAND_IPROC
+       bool "Support Broadcom NAND controller on the iproc family"
+       depends on NAND_BRCMNAND
+       help
+         Enable support for broadcom nand driver on the Broadcom
+         iproc family such as Northstar (BCM5301x, BCM4708...)
+
 config NAND_DAVINCI
 	bool "Support TI Davinci NAND controller"
 	select SYS_NAND_SELF_INIT if TARGET_DA850EVM
diff --git a/drivers/mtd/nand/raw/brcmnand/Makefile b/drivers/mtd/nand/raw/brcmnand/Makefile
index f46a7edae321..0c6325aaa618 100644
--- a/drivers/mtd/nand/raw/brcmnand/Makefile
+++ b/drivers/mtd/nand/raw/brcmnand/Makefile
@@ -6,5 +6,6 @@ obj-$(CONFIG_NAND_BRCMNAND_6753) += bcm6753_nand.o
 obj-$(CONFIG_NAND_BRCMNAND_68360) += bcm68360_nand.o
 obj-$(CONFIG_NAND_BRCMNAND_6838) += bcm6838_nand.o
 obj-$(CONFIG_NAND_BRCMNAND_6858) += bcm6858_nand.o
+obj-$(CONFIG_NAND_BRCMNAND_IPROC) += iproc_nand.o
 obj-$(CONFIG_NAND_BRCMNAND) += brcmnand.o
 obj-$(CONFIG_NAND_BRCMNAND) += brcmnand_compat.o
diff --git a/drivers/mtd/nand/raw/brcmnand/iproc_nand.c b/drivers/mtd/nand/raw/brcmnand/iproc_nand.c
new file mode 100644
index 000000000000..69711d98ce1b
--- /dev/null
+++ b/drivers/mtd/nand/raw/brcmnand/iproc_nand.c
@@ -0,0 +1,148 @@
+// SPDX-License-Identifier: GPL-2.0
+/*
+ * Code borrowed from the Linux driver
+ * Copyright (C) 2015 Broadcom Corporation
+ */
+
+#include <common.h>
+#include <asm/io.h>
+#include <memalign.h>
+#include <nand.h>
+#include <linux/bitops.h>
+#include <linux/err.h>
+#include <linux/errno.h>
+#include <linux/io.h>
+#include <linux/ioport.h>
+#include <dm.h>
+
+#include "brcmnand.h"
+
+struct iproc_nand_soc {
+	struct brcmnand_soc soc;
+	void __iomem *idm_base;
+	void __iomem *ext_base;
+};
+
+#define IPROC_NAND_CTLR_READY_OFFSET	0x10
+#define IPROC_NAND_CTLR_READY		BIT(0)
+
+#define IPROC_NAND_IO_CTRL_OFFSET	0x00
+#define IPROC_NAND_APB_LE_MODE		BIT(24)
+#define IPROC_NAND_INT_CTRL_READ_ENABLE	BIT(6)
+
+static bool iproc_nand_intc_ack(struct brcmnand_soc *soc)
+{
+	struct iproc_nand_soc *priv =
+			container_of(soc, struct iproc_nand_soc, soc);
+	void __iomem *mmio = priv->ext_base + IPROC_NAND_CTLR_READY_OFFSET;
+	u32 val = brcmnand_readl(mmio);
+
+	if (val & IPROC_NAND_CTLR_READY) {
+		brcmnand_writel(IPROC_NAND_CTLR_READY, mmio);
+		return true;
+	}
+
+	return false;
+}
+
+static void iproc_nand_intc_set(struct brcmnand_soc *soc, bool en)
+{
+	struct iproc_nand_soc *priv =
+			container_of(soc, struct iproc_nand_soc, soc);
+	void __iomem *mmio = priv->idm_base + IPROC_NAND_IO_CTRL_OFFSET;
+	u32 val = brcmnand_readl(mmio);
+
+	if (en)
+		val |= IPROC_NAND_INT_CTRL_READ_ENABLE;
+	else
+		val &= ~IPROC_NAND_INT_CTRL_READ_ENABLE;
+
+	brcmnand_writel(val, mmio);
+}
+
+static void iproc_nand_apb_access(struct brcmnand_soc *soc, bool prepare,
+				  bool is_param)
+{
+	struct iproc_nand_soc *priv =
+		container_of(soc, struct iproc_nand_soc, soc);
+	void __iomem *mmio = priv->idm_base + IPROC_NAND_IO_CTRL_OFFSET;
+	u32 val;
+
+	val = brcmnand_readl(mmio);
+
+	/*
+	 * In the case of BE or when dealing with NAND data, always configure
+	 * the APB bus to LE mode before accessing the FIFO and back to BE mode
+	 * after the access is done
+	 */
+	if (IS_ENABLED(CONFIG_SYS_BIG_ENDIAN) || !is_param) {
+		if (prepare)
+			val |= IPROC_NAND_APB_LE_MODE;
+		else
+			val &= ~IPROC_NAND_APB_LE_MODE;
+	} else { /* when in LE accessing the parameter page, keep APB in BE */
+		val &= ~IPROC_NAND_APB_LE_MODE;
+	}
+
+	brcmnand_writel(val, mmio);
+}
+
+static int iproc_nand_probe(struct udevice *dev)
+{
+	struct udevice *pdev = dev;
+	struct iproc_nand_soc *priv = dev_get_priv(dev);
+	struct brcmnand_soc *soc;
+	struct resource res;
+	int ret;
+
+	soc = &priv->soc;
+
+	ret = dev_read_resource_byname(pdev, "iproc-idm", &res);
+	if (ret)
+		return ret;
+
+	priv->idm_base = devm_ioremap(dev, res.start, resource_size(&res));
+	if (IS_ERR(priv->idm_base))
+		return PTR_ERR(priv->idm_base);
+
+	ret = dev_read_resource_byname(pdev, "iproc-ext", &res);
+	if (ret)
+		return ret;
+
+	priv->ext_base = devm_ioremap(dev, res.start, resource_size(&res));
+	if (IS_ERR(priv->ext_base))
+		return PTR_ERR(priv->ext_base);
+
+	soc->ctlrdy_ack = iproc_nand_intc_ack;
+	soc->ctlrdy_set_enabled = iproc_nand_intc_set;
+	soc->prepare_data_bus = iproc_nand_apb_access;
+
+	return brcmnand_probe(pdev, soc);
+}
+
+static const struct udevice_id iproc_nand_dt_ids[] = {
+	{
+		.compatible = "brcm,nand-iproc",
+	},
+	{ /* sentinel */ }
+};
+
+U_BOOT_DRIVER(iproc_nand) = {
+	.name = "iproc-nand",
+	.id = UCLASS_MTD,
+	.of_match = iproc_nand_dt_ids,
+	.probe = iproc_nand_probe,
+	.priv_auto = sizeof(struct iproc_nand_soc),
+};
+
+void board_nand_init(void)
+{
+	struct udevice *dev;
+	int ret;
+
+	ret = uclass_get_device_by_driver(UCLASS_MTD,
+					  DM_DRIVER_GET(iproc_nand), &dev);
+	if (ret && ret != -ENODEV)
+		pr_err("Failed to initialize %s. (error %d)\n", dev->name,
+		       ret);
+}
-- 
2.39.1


^ permalink raw reply related	[flat|nested] 9+ messages in thread

* Re: [PATCH v2] nand: brcmnand: add iproc support
  2023-03-08 21:42 [PATCH v2] nand: brcmnand: add iproc support Linus Walleij
@ 2023-03-11  1:03 ` William Zhang
  2023-04-17  8:37   ` Dario Binacchi
  0 siblings, 1 reply; 9+ messages in thread
From: William Zhang @ 2023-03-11  1:03 UTC (permalink / raw)
  To: Linus Walleij, u-boot, Tom Rini, Michael Nazzareno Trimarchi
  Cc: Anand Gore, Kursad Oney, Joel Peshkin, Philippe Reynes,
	Rafał Miłecki, Dario Binacchi

[-- Attachment #1: Type: text/plain, Size: 6496 bytes --]



On 03/08/2023 01:42 PM, Linus Walleij wrote:
> Add support for the iproc Broadcom NAND controller,
> used in Northstar SoCs for example. Based on the Linux
> driver.
> 
> Cc: Philippe Reynes <philippe.reynes@softathome.com>
> Cc: Dario Binacchi <dario.binacchi@amarulasolutions.com>
> Reviewed-by: Michael Trimarchi <michael@amarulasolutions.com>
> Signed-off-by: Linus Walleij <linus.walleij@linaro.org>
> ---
> ChangeLog v1->v2:
> - Check return value of dev_read_resource()
> - Use devm_ioremap()
> - Collect Michael's Review tag
> ---
>   drivers/mtd/nand/raw/Kconfig               |   7 +
>   drivers/mtd/nand/raw/brcmnand/Makefile     |   1 +
>   drivers/mtd/nand/raw/brcmnand/iproc_nand.c | 148 +++++++++++++++++++++
>   3 files changed, 156 insertions(+)
>   create mode 100644 drivers/mtd/nand/raw/brcmnand/iproc_nand.c
> 
> diff --git a/drivers/mtd/nand/raw/Kconfig b/drivers/mtd/nand/raw/Kconfig
> index 5b35da45f584..6a13bc1e228a 100644
> --- a/drivers/mtd/nand/raw/Kconfig
> +++ b/drivers/mtd/nand/raw/Kconfig
> @@ -156,6 +156,13 @@ config NAND_BRCMNAND_63158
>          help
>            Enable support for broadcom nand driver on bcm63158.
>   
> +config NAND_BRCMNAND_IPROC
> +       bool "Support Broadcom NAND controller on the iproc family"
> +       depends on NAND_BRCMNAND
> +       help
> +         Enable support for broadcom nand driver on the Broadcom
> +         iproc family such as Northstar (BCM5301x, BCM4708...)
> +
>   config NAND_DAVINCI
>   	bool "Support TI Davinci NAND controller"
>   	select SYS_NAND_SELF_INIT if TARGET_DA850EVM
> diff --git a/drivers/mtd/nand/raw/brcmnand/Makefile b/drivers/mtd/nand/raw/brcmnand/Makefile
> index f46a7edae321..0c6325aaa618 100644
> --- a/drivers/mtd/nand/raw/brcmnand/Makefile
> +++ b/drivers/mtd/nand/raw/brcmnand/Makefile
> @@ -6,5 +6,6 @@ obj-$(CONFIG_NAND_BRCMNAND_6753) += bcm6753_nand.o
>   obj-$(CONFIG_NAND_BRCMNAND_68360) += bcm68360_nand.o
>   obj-$(CONFIG_NAND_BRCMNAND_6838) += bcm6838_nand.o
>   obj-$(CONFIG_NAND_BRCMNAND_6858) += bcm6858_nand.o
> +obj-$(CONFIG_NAND_BRCMNAND_IPROC) += iproc_nand.o
>   obj-$(CONFIG_NAND_BRCMNAND) += brcmnand.o
>   obj-$(CONFIG_NAND_BRCMNAND) += brcmnand_compat.o
> diff --git a/drivers/mtd/nand/raw/brcmnand/iproc_nand.c b/drivers/mtd/nand/raw/brcmnand/iproc_nand.c
> new file mode 100644
> index 000000000000..69711d98ce1b
> --- /dev/null
> +++ b/drivers/mtd/nand/raw/brcmnand/iproc_nand.c
> @@ -0,0 +1,148 @@
> +// SPDX-License-Identifier: GPL-2.0
> +/*
> + * Code borrowed from the Linux driver
> + * Copyright (C) 2015 Broadcom Corporation
> + */
> +
> +#include <common.h>
> +#include <asm/io.h>
> +#include <memalign.h>
> +#include <nand.h>
> +#include <linux/bitops.h>
> +#include <linux/err.h>
> +#include <linux/errno.h>
> +#include <linux/io.h>
> +#include <linux/ioport.h>
> +#include <dm.h>
> +
> +#include "brcmnand.h"
> +
> +struct iproc_nand_soc {
> +	struct brcmnand_soc soc;
> +	void __iomem *idm_base;
> +	void __iomem *ext_base;
> +};
> +
> +#define IPROC_NAND_CTLR_READY_OFFSET	0x10
> +#define IPROC_NAND_CTLR_READY		BIT(0)
> +
> +#define IPROC_NAND_IO_CTRL_OFFSET	0x00
> +#define IPROC_NAND_APB_LE_MODE		BIT(24)
> +#define IPROC_NAND_INT_CTRL_READ_ENABLE	BIT(6)
> +
> +static bool iproc_nand_intc_ack(struct brcmnand_soc *soc)
> +{
> +	struct iproc_nand_soc *priv =
> +			container_of(soc, struct iproc_nand_soc, soc);
> +	void __iomem *mmio = priv->ext_base + IPROC_NAND_CTLR_READY_OFFSET;
> +	u32 val = brcmnand_readl(mmio);
> +
> +	if (val & IPROC_NAND_CTLR_READY) {
> +		brcmnand_writel(IPROC_NAND_CTLR_READY, mmio);
> +		return true;
> +	}
> +
> +	return false;
> +}
> +
> +static void iproc_nand_intc_set(struct brcmnand_soc *soc, bool en)
> +{
> +	struct iproc_nand_soc *priv =
> +			container_of(soc, struct iproc_nand_soc, soc);
> +	void __iomem *mmio = priv->idm_base + IPROC_NAND_IO_CTRL_OFFSET;
> +	u32 val = brcmnand_readl(mmio);
> +
> +	if (en)
> +		val |= IPROC_NAND_INT_CTRL_READ_ENABLE;
> +	else
> +		val &= ~IPROC_NAND_INT_CTRL_READ_ENABLE;
> +
> +	brcmnand_writel(val, mmio);
> +}
> +
> +static void iproc_nand_apb_access(struct brcmnand_soc *soc, bool prepare,
> +				  bool is_param)
> +{
> +	struct iproc_nand_soc *priv =
> +		container_of(soc, struct iproc_nand_soc, soc);
> +	void __iomem *mmio = priv->idm_base + IPROC_NAND_IO_CTRL_OFFSET;
> +	u32 val;
> +
> +	val = brcmnand_readl(mmio);
> +
> +	/*
> +	 * In the case of BE or when dealing with NAND data, always configure
> +	 * the APB bus to LE mode before accessing the FIFO and back to BE mode
> +	 * after the access is done
> +	 */
> +	if (IS_ENABLED(CONFIG_SYS_BIG_ENDIAN) || !is_param) {
> +		if (prepare)
> +			val |= IPROC_NAND_APB_LE_MODE;
> +		else
> +			val &= ~IPROC_NAND_APB_LE_MODE;
> +	} else { /* when in LE accessing the parameter page, keep APB in BE */
> +		val &= ~IPROC_NAND_APB_LE_MODE;
> +	}
> +
> +	brcmnand_writel(val, mmio);
> +}
> +
> +static int iproc_nand_probe(struct udevice *dev)
> +{
> +	struct udevice *pdev = dev;
> +	struct iproc_nand_soc *priv = dev_get_priv(dev);
> +	struct brcmnand_soc *soc;
> +	struct resource res;
> +	int ret;
> +
> +	soc = &priv->soc;
> +
> +	ret = dev_read_resource_byname(pdev, "iproc-idm", &res);
> +	if (ret)
> +		return ret;
> +
> +	priv->idm_base = devm_ioremap(dev, res.start, resource_size(&res));
> +	if (IS_ERR(priv->idm_base))
> +		return PTR_ERR(priv->idm_base);
> +
> +	ret = dev_read_resource_byname(pdev, "iproc-ext", &res);
> +	if (ret)
> +		return ret;
> +
> +	priv->ext_base = devm_ioremap(dev, res.start, resource_size(&res));
> +	if (IS_ERR(priv->ext_base))
> +		return PTR_ERR(priv->ext_base);
> +
> +	soc->ctlrdy_ack = iproc_nand_intc_ack;
> +	soc->ctlrdy_set_enabled = iproc_nand_intc_set;
> +	soc->prepare_data_bus = iproc_nand_apb_access;
> +
> +	return brcmnand_probe(pdev, soc);
> +}
> +
> +static const struct udevice_id iproc_nand_dt_ids[] = {
> +	{
> +		.compatible = "brcm,nand-iproc",
> +	},
> +	{ /* sentinel */ }
> +};
> +
> +U_BOOT_DRIVER(iproc_nand) = {
> +	.name = "iproc-nand",
> +	.id = UCLASS_MTD,
> +	.of_match = iproc_nand_dt_ids,
> +	.probe = iproc_nand_probe,
> +	.priv_auto = sizeof(struct iproc_nand_soc),
> +};
> +
> +void board_nand_init(void)
> +{
> +	struct udevice *dev;
> +	int ret;
> +
> +	ret = uclass_get_device_by_driver(UCLASS_MTD,
> +					  DM_DRIVER_GET(iproc_nand), &dev);
> +	if (ret && ret != -ENODEV)
> +		pr_err("Failed to initialize %s. (error %d)\n", dev->name,
> +		       ret);
> +}
> 

Acked-by: William Zhang <william.zhang@broadcom.com>

[-- Attachment #2: S/MIME Cryptographic Signature --]
[-- Type: application/pkcs7-signature, Size: 4212 bytes --]

^ permalink raw reply	[flat|nested] 9+ messages in thread

* Re: [PATCH v2] nand: brcmnand: add iproc support
  2023-03-11  1:03 ` William Zhang
@ 2023-04-17  8:37   ` Dario Binacchi
  2023-04-19 13:04     ` Linus Walleij
  0 siblings, 1 reply; 9+ messages in thread
From: Dario Binacchi @ 2023-04-17  8:37 UTC (permalink / raw)
  To: William Zhang
  Cc: Linus Walleij, u-boot, Tom Rini, Michael Nazzareno Trimarchi,
	Anand Gore, Kursad Oney, Joel Peshkin, Philippe Reynes,
	Rafał Miłecki

Hi Linus,

On Sat, Mar 11, 2023 at 2:03 AM William Zhang
<william.zhang@broadcom.com> wrote:
>
>
>
> On 03/08/2023 01:42 PM, Linus Walleij wrote:
> > Add support for the iproc Broadcom NAND controller,
> > used in Northstar SoCs for example. Based on the Linux
> > driver.
> >
> > Cc: Philippe Reynes <philippe.reynes@softathome.com>
> > Cc: Dario Binacchi <dario.binacchi@amarulasolutions.com>
> > Reviewed-by: Michael Trimarchi <michael@amarulasolutions.com>
> > Signed-off-by: Linus Walleij <linus.walleij@linaro.org>
> > ---
> > ChangeLog v1->v2:
> > - Check return value of dev_read_resource()
> > - Use devm_ioremap()
> > - Collect Michael's Review tag
> > ---
> >   drivers/mtd/nand/raw/Kconfig               |   7 +
> >   drivers/mtd/nand/raw/brcmnand/Makefile     |   1 +
> >   drivers/mtd/nand/raw/brcmnand/iproc_nand.c | 148 +++++++++++++++++++++
> >   3 files changed, 156 insertions(+)
> >   create mode 100644 drivers/mtd/nand/raw/brcmnand/iproc_nand.c
> >
> > diff --git a/drivers/mtd/nand/raw/Kconfig b/drivers/mtd/nand/raw/Kconfig
> > index 5b35da45f584..6a13bc1e228a 100644
> > --- a/drivers/mtd/nand/raw/Kconfig
> > +++ b/drivers/mtd/nand/raw/Kconfig
> > @@ -156,6 +156,13 @@ config NAND_BRCMNAND_63158
> >          help
> >            Enable support for broadcom nand driver on bcm63158.
> >
> > +config NAND_BRCMNAND_IPROC
> > +       bool "Support Broadcom NAND controller on the iproc family"
> > +       depends on NAND_BRCMNAND
> > +       help
> > +         Enable support for broadcom nand driver on the Broadcom
> > +         iproc family such as Northstar (BCM5301x, BCM4708...)
> > +
> >   config NAND_DAVINCI
> >       bool "Support TI Davinci NAND controller"
> >       select SYS_NAND_SELF_INIT if TARGET_DA850EVM
> > diff --git a/drivers/mtd/nand/raw/brcmnand/Makefile b/drivers/mtd/nand/raw/brcmnand/Makefile
> > index f46a7edae321..0c6325aaa618 100644
> > --- a/drivers/mtd/nand/raw/brcmnand/Makefile
> > +++ b/drivers/mtd/nand/raw/brcmnand/Makefile
> > @@ -6,5 +6,6 @@ obj-$(CONFIG_NAND_BRCMNAND_6753) += bcm6753_nand.o
> >   obj-$(CONFIG_NAND_BRCMNAND_68360) += bcm68360_nand.o
> >   obj-$(CONFIG_NAND_BRCMNAND_6838) += bcm6838_nand.o
> >   obj-$(CONFIG_NAND_BRCMNAND_6858) += bcm6858_nand.o
> > +obj-$(CONFIG_NAND_BRCMNAND_IPROC) += iproc_nand.o
> >   obj-$(CONFIG_NAND_BRCMNAND) += brcmnand.o
> >   obj-$(CONFIG_NAND_BRCMNAND) += brcmnand_compat.o
> > diff --git a/drivers/mtd/nand/raw/brcmnand/iproc_nand.c b/drivers/mtd/nand/raw/brcmnand/iproc_nand.c
> > new file mode 100644
> > index 000000000000..69711d98ce1b
> > --- /dev/null
> > +++ b/drivers/mtd/nand/raw/brcmnand/iproc_nand.c
> > @@ -0,0 +1,148 @@
> > +// SPDX-License-Identifier: GPL-2.0
> > +/*
> > + * Code borrowed from the Linux driver
> > + * Copyright (C) 2015 Broadcom Corporation
> > + */
> > +
> > +#include <common.h>
> > +#include <asm/io.h>
> > +#include <memalign.h>
> > +#include <nand.h>
> > +#include <linux/bitops.h>
> > +#include <linux/err.h>
> > +#include <linux/errno.h>
> > +#include <linux/io.h>
> > +#include <linux/ioport.h>
> > +#include <dm.h>
> > +
> > +#include "brcmnand.h"
> > +
> > +struct iproc_nand_soc {
> > +     struct brcmnand_soc soc;
> > +     void __iomem *idm_base;
> > +     void __iomem *ext_base;
> > +};
> > +
> > +#define IPROC_NAND_CTLR_READY_OFFSET 0x10
> > +#define IPROC_NAND_CTLR_READY                BIT(0)
> > +
> > +#define IPROC_NAND_IO_CTRL_OFFSET    0x00
> > +#define IPROC_NAND_APB_LE_MODE               BIT(24)
> > +#define IPROC_NAND_INT_CTRL_READ_ENABLE      BIT(6)
> > +
> > +static bool iproc_nand_intc_ack(struct brcmnand_soc *soc)
> > +{
> > +     struct iproc_nand_soc *priv =
> > +                     container_of(soc, struct iproc_nand_soc, soc);
> > +     void __iomem *mmio = priv->ext_base + IPROC_NAND_CTLR_READY_OFFSET;
> > +     u32 val = brcmnand_readl(mmio);
> > +
> > +     if (val & IPROC_NAND_CTLR_READY) {
> > +             brcmnand_writel(IPROC_NAND_CTLR_READY, mmio);
> > +             return true;
> > +     }
> > +
> > +     return false;
> > +}
> > +
> > +static void iproc_nand_intc_set(struct brcmnand_soc *soc, bool en)
> > +{
> > +     struct iproc_nand_soc *priv =
> > +                     container_of(soc, struct iproc_nand_soc, soc);
> > +     void __iomem *mmio = priv->idm_base + IPROC_NAND_IO_CTRL_OFFSET;
> > +     u32 val = brcmnand_readl(mmio);
> > +
> > +     if (en)
> > +             val |= IPROC_NAND_INT_CTRL_READ_ENABLE;
> > +     else
> > +             val &= ~IPROC_NAND_INT_CTRL_READ_ENABLE;
> > +
> > +     brcmnand_writel(val, mmio);
> > +}
> > +
> > +static void iproc_nand_apb_access(struct brcmnand_soc *soc, bool prepare,
> > +                               bool is_param)
> > +{
> > +     struct iproc_nand_soc *priv =
> > +             container_of(soc, struct iproc_nand_soc, soc);
> > +     void __iomem *mmio = priv->idm_base + IPROC_NAND_IO_CTRL_OFFSET;
> > +     u32 val;
> > +
> > +     val = brcmnand_readl(mmio);
> > +
> > +     /*
> > +      * In the case of BE or when dealing with NAND data, always configure
> > +      * the APB bus to LE mode before accessing the FIFO and back to BE mode
> > +      * after the access is done
> > +      */
> > +     if (IS_ENABLED(CONFIG_SYS_BIG_ENDIAN) || !is_param) {
> > +             if (prepare)
> > +                     val |= IPROC_NAND_APB_LE_MODE;
> > +             else
> > +                     val &= ~IPROC_NAND_APB_LE_MODE;
> > +     } else { /* when in LE accessing the parameter page, keep APB in BE */
> > +             val &= ~IPROC_NAND_APB_LE_MODE;
> > +     }
> > +
> > +     brcmnand_writel(val, mmio);
> > +}
> > +
> > +static int iproc_nand_probe(struct udevice *dev)
> > +{
> > +     struct udevice *pdev = dev;
> > +     struct iproc_nand_soc *priv = dev_get_priv(dev);
> > +     struct brcmnand_soc *soc;
> > +     struct resource res;
> > +     int ret;
> > +
> > +     soc = &priv->soc;
> > +
> > +     ret = dev_read_resource_byname(pdev, "iproc-idm", &res);
> > +     if (ret)
> > +             return ret;
> > +
> > +     priv->idm_base = devm_ioremap(dev, res.start, resource_size(&res));
> > +     if (IS_ERR(priv->idm_base))
> > +             return PTR_ERR(priv->idm_base);
> > +
> > +     ret = dev_read_resource_byname(pdev, "iproc-ext", &res);
> > +     if (ret)
> > +             return ret;
> > +
> > +     priv->ext_base = devm_ioremap(dev, res.start, resource_size(&res));
> > +     if (IS_ERR(priv->ext_base))
> > +             return PTR_ERR(priv->ext_base);
> > +
> > +     soc->ctlrdy_ack = iproc_nand_intc_ack;
> > +     soc->ctlrdy_set_enabled = iproc_nand_intc_set;
> > +     soc->prepare_data_bus = iproc_nand_apb_access;
> > +
> > +     return brcmnand_probe(pdev, soc);
> > +}
> > +
> > +static const struct udevice_id iproc_nand_dt_ids[] = {
> > +     {
> > +             .compatible = "brcm,nand-iproc",
> > +     },
> > +     { /* sentinel */ }
> > +};
> > +
> > +U_BOOT_DRIVER(iproc_nand) = {
> > +     .name = "iproc-nand",
> > +     .id = UCLASS_MTD,
> > +     .of_match = iproc_nand_dt_ids,
> > +     .probe = iproc_nand_probe,
> > +     .priv_auto = sizeof(struct iproc_nand_soc),
> > +};
> > +
> > +void board_nand_init(void)
> > +{
> > +     struct udevice *dev;
> > +     int ret;
> > +
> > +     ret = uclass_get_device_by_driver(UCLASS_MTD,
> > +                                       DM_DRIVER_GET(iproc_nand), &dev);
> > +     if (ret && ret != -ENODEV)
> > +             pr_err("Failed to initialize %s. (error %d)\n", dev->name,
> > +                    ret);
> > +}
> >
>
> Acked-by: William Zhang <william.zhang@broadcom.com>


Applied to nand-next ( as well as the patch "mtd: rawnand: nand_base:
Handle algorithm selection").

Thanks and regards,
Dario

-- 

Dario Binacchi

Senior Embedded Linux Developer

dario.binacchi@amarulasolutions.com

__________________________________


Amarula Solutions SRL

Via Le Canevare 30, 31100 Treviso, Veneto, IT

T. +39 042 243 5310
info@amarulasolutions.com

www.amarulasolutions.com

^ permalink raw reply	[flat|nested] 9+ messages in thread

* Re: [PATCH v2] nand: brcmnand: add iproc support
  2023-04-17  8:37   ` Dario Binacchi
@ 2023-04-19 13:04     ` Linus Walleij
  2023-04-19 13:19       ` Dario Binacchi
  0 siblings, 1 reply; 9+ messages in thread
From: Linus Walleij @ 2023-04-19 13:04 UTC (permalink / raw)
  To: Dario Binacchi
  Cc: William Zhang, u-boot, Tom Rini, Michael Nazzareno Trimarchi,
	Anand Gore, Kursad Oney, Joel Peshkin, Philippe Reynes,
	Rafał Miłecki

On Mon, Apr 17, 2023 at 10:37 AM Dario Binacchi
<dario.binacchi@amarulasolutions.com> wrote:

> Applied to nand-next ( as well as the patch "mtd: rawnand: nand_base:
> Handle algorithm selection").

1) Sweet! Thanks.

2) Did you use the latest versions that I resent as part of the
NorthStar support?

https://lore.kernel.org/u-boot/20230407134008.1939717-2-linus.walleij@linaro.org/
https://lore.kernel.org/u-boot/20230407134008.1939717-3-linus.walleij@linaro.org/

Otherwise please use these versions instead, because the second
patch needed some fixing for Tom's system. Thanks a lot!

Yours,
Linus Walleij

^ permalink raw reply	[flat|nested] 9+ messages in thread

* Re: [PATCH v2] nand: brcmnand: add iproc support
  2023-04-19 13:04     ` Linus Walleij
@ 2023-04-19 13:19       ` Dario Binacchi
  2023-04-19 14:00         ` Linus Walleij
  0 siblings, 1 reply; 9+ messages in thread
From: Dario Binacchi @ 2023-04-19 13:19 UTC (permalink / raw)
  To: Linus Walleij
  Cc: William Zhang, u-boot, Tom Rini, Michael Nazzareno Trimarchi,
	Anand Gore, Kursad Oney, Joel Peshkin, Philippe Reynes,
	Rafał Miłecki

Hi Linus,

On Wed, Apr 19, 2023 at 3:04 PM Linus Walleij <linus.walleij@linaro.org> wrote:
>
> On Mon, Apr 17, 2023 at 10:37 AM Dario Binacchi
> <dario.binacchi@amarulasolutions.com> wrote:
>
> > Applied to nand-next ( as well as the patch "mtd: rawnand: nand_base:
> > Handle algorithm selection").
>
> 1) Sweet! Thanks.
>
> 2) Did you use the latest versions that I resent as part of the
> NorthStar support?

I applied v2:
https://patchwork.ozlabs.org/project/uboot/patch/20230308214231.378013-1-linus.walleij@linaro.org/
https://patchwork.ozlabs.org/project/uboot/patch/20230308212851.370939-1-linus.walleij@linaro.org/

Thanks and regards,
Dario

>
> https://lore.kernel.org/u-boot/20230407134008.1939717-2-linus.walleij@linaro.org/
> https://lore.kernel.org/u-boot/20230407134008.1939717-3-linus.walleij@linaro.org/
>
> Otherwise please use these versions instead, because the second
> patch needed some fixing for Tom's system. Thanks a lot!
>
> Yours,
> Linus Walleij



-- 

Dario Binacchi

Senior Embedded Linux Developer

dario.binacchi@amarulasolutions.com

__________________________________


Amarula Solutions SRL

Via Le Canevare 30, 31100 Treviso, Veneto, IT

T. +39 042 243 5310
info@amarulasolutions.com

www.amarulasolutions.com

^ permalink raw reply	[flat|nested] 9+ messages in thread

* Re: [PATCH v2] nand: brcmnand: add iproc support
  2023-04-19 13:19       ` Dario Binacchi
@ 2023-04-19 14:00         ` Linus Walleij
  2023-04-19 16:13           ` Dario Binacchi
  0 siblings, 1 reply; 9+ messages in thread
From: Linus Walleij @ 2023-04-19 14:00 UTC (permalink / raw)
  To: Dario Binacchi
  Cc: William Zhang, u-boot, Tom Rini, Michael Nazzareno Trimarchi,
	Anand Gore, Kursad Oney, Joel Peshkin, Philippe Reynes,
	Rafał Miłecki

On Wed, Apr 19, 2023 at 3:19 PM Dario Binacchi
<dario.binacchi@amarulasolutions.com> wrote:
> On Wed, Apr 19, 2023 at 3:04 PM Linus Walleij <linus.walleij@linaro.org> wrote:
> >
> > On Mon, Apr 17, 2023 at 10:37 AM Dario Binacchi
> > <dario.binacchi@amarulasolutions.com> wrote:
> >
> > > Applied to nand-next ( as well as the patch "mtd: rawnand: nand_base:
> > > Handle algorithm selection").
> >
> > 1) Sweet! Thanks.
> >
> > 2) Did you use the latest versions that I resent as part of the
> > NorthStar support?
>
> I applied v2:
> https://patchwork.ozlabs.org/project/uboot/patch/20230308214231.378013-1-linus.walleij@linaro.org/
> https://patchwork.ozlabs.org/project/uboot/patch/20230308212851.370939-1-linus.walleij@linaro.org/

The second patch will be problematic, can you switch it to the newer
versions?

I'm sorry for messing things up by moving the patches over to a
different series :(

Thanks,
Linus Walleij

^ permalink raw reply	[flat|nested] 9+ messages in thread

* Re: [PATCH v2] nand: brcmnand: add iproc support
  2023-04-19 14:00         ` Linus Walleij
@ 2023-04-19 16:13           ` Dario Binacchi
  2023-04-20 20:51             ` Linus Walleij
  0 siblings, 1 reply; 9+ messages in thread
From: Dario Binacchi @ 2023-04-19 16:13 UTC (permalink / raw)
  To: Linus Walleij
  Cc: William Zhang, u-boot, Tom Rini, Michael Nazzareno Trimarchi,
	Anand Gore, Kursad Oney, Joel Peshkin, Philippe Reynes,
	Rafał Miłecki

Hi Linus,

On Wed, Apr 19, 2023 at 4:00 PM Linus Walleij <linus.walleij@linaro.org> wrote:
>
> On Wed, Apr 19, 2023 at 3:19 PM Dario Binacchi
> <dario.binacchi@amarulasolutions.com> wrote:
> > On Wed, Apr 19, 2023 at 3:04 PM Linus Walleij <linus.walleij@linaro.org> wrote:
> > >
> > > On Mon, Apr 17, 2023 at 10:37 AM Dario Binacchi
> > > <dario.binacchi@amarulasolutions.com> wrote:
> > >
> > > > Applied to nand-next ( as well as the patch "mtd: rawnand: nand_base:
> > > > Handle algorithm selection").
> > >
> > > 1) Sweet! Thanks.
> > >
> > > 2) Did you use the latest versions that I resent as part of the
> > > NorthStar support?
> >
> > I applied v2:
> > https://patchwork.ozlabs.org/project/uboot/patch/20230308214231.378013-1-linus.walleij@linaro.org/
> > https://patchwork.ozlabs.org/project/uboot/patch/20230308212851.370939-1-linus.walleij@linaro.org/
>
> The second patch will be problematic, can you switch it to the newer
> versions?

This one?
https://patchwork.ozlabs.org/project/uboot/patch/20230308212851.370939-1-linus.walleij@linaro.org/
I can revert the commit
ff33d3c87c2a mtd: rawnand: nand_base: Handle algorithm selection
and apply your newer patch.
Do you agree?

Thanks and regards,
Dario
>
> I'm sorry for messing things up by moving the patches over to a
> different series :(
>
> Thanks,
> Linus Walleij



-- 

Dario Binacchi

Senior Embedded Linux Developer

dario.binacchi@amarulasolutions.com

__________________________________


Amarula Solutions SRL

Via Le Canevare 30, 31100 Treviso, Veneto, IT

T. +39 042 243 5310
info@amarulasolutions.com

www.amarulasolutions.com

^ permalink raw reply	[flat|nested] 9+ messages in thread

* Re: [PATCH v2] nand: brcmnand: add iproc support
  2023-04-19 16:13           ` Dario Binacchi
@ 2023-04-20 20:51             ` Linus Walleij
  2023-04-22 19:19               ` Tom Rini
  0 siblings, 1 reply; 9+ messages in thread
From: Linus Walleij @ 2023-04-20 20:51 UTC (permalink / raw)
  To: Dario Binacchi
  Cc: William Zhang, u-boot, Tom Rini, Michael Nazzareno Trimarchi,
	Anand Gore, Kursad Oney, Joel Peshkin, Philippe Reynes,
	Rafał Miłecki

On Wed, Apr 19, 2023 at 6:13 PM Dario Binacchi
<dario.binacchi@amarulasolutions.com> wrote:
> On Wed, Apr 19, 2023 at 4:00 PM Linus Walleij <linus.walleij@linaro.org> wrote:
> >
> > On Wed, Apr 19, 2023 at 3:19 PM Dario Binacchi
> > <dario.binacchi@amarulasolutions.com> wrote:
> > > On Wed, Apr 19, 2023 at 3:04 PM Linus Walleij <linus.walleij@linaro.org> wrote:
> > > >
> > > > On Mon, Apr 17, 2023 at 10:37 AM Dario Binacchi
> > > > <dario.binacchi@amarulasolutions.com> wrote:
> > > >
> > > > > Applied to nand-next ( as well as the patch "mtd: rawnand: nand_base:
> > > > > Handle algorithm selection").
> > > >
> > > > 1) Sweet! Thanks.
> > > >
> > > > 2) Did you use the latest versions that I resent as part of the
> > > > NorthStar support?
> > >
> > > I applied v2:
> > > https://patchwork.ozlabs.org/project/uboot/patch/20230308214231.378013-1-linus.walleij@linaro.org/
> > > https://patchwork.ozlabs.org/project/uboot/patch/20230308212851.370939-1-linus.walleij@linaro.org/
> >
> > The second patch will be problematic, can you switch it to the newer
> > versions?
>
> This one?
> https://patchwork.ozlabs.org/project/uboot/patch/20230308212851.370939-1-linus.walleij@linaro.org/
> I can revert the commit
> ff33d3c87c2a mtd: rawnand: nand_base: Handle algorithm selection
> and apply your newer patch.
> Do you agree?

Yes, thanks!

In patchwork the newer patch is this one:
https://patchwork.ozlabs.org/project/uboot/patch/20230407134008.1939717-3-linus.walleij@linaro.org/

Yours,
Linus Walleij

^ permalink raw reply	[flat|nested] 9+ messages in thread

* Re: [PATCH v2] nand: brcmnand: add iproc support
  2023-04-20 20:51             ` Linus Walleij
@ 2023-04-22 19:19               ` Tom Rini
  0 siblings, 0 replies; 9+ messages in thread
From: Tom Rini @ 2023-04-22 19:19 UTC (permalink / raw)
  To: Linus Walleij
  Cc: Dario Binacchi, William Zhang, u-boot,
	Michael Nazzareno Trimarchi, Anand Gore, Kursad Oney,
	Joel Peshkin, Philippe Reynes, Rafał Miłecki

[-- Attachment #1: Type: text/plain, Size: 1789 bytes --]

On Thu, Apr 20, 2023 at 10:51:20PM +0200, Linus Walleij wrote:
> On Wed, Apr 19, 2023 at 6:13 PM Dario Binacchi
> <dario.binacchi@amarulasolutions.com> wrote:
> > On Wed, Apr 19, 2023 at 4:00 PM Linus Walleij <linus.walleij@linaro.org> wrote:
> > >
> > > On Wed, Apr 19, 2023 at 3:19 PM Dario Binacchi
> > > <dario.binacchi@amarulasolutions.com> wrote:
> > > > On Wed, Apr 19, 2023 at 3:04 PM Linus Walleij <linus.walleij@linaro.org> wrote:
> > > > >
> > > > > On Mon, Apr 17, 2023 at 10:37 AM Dario Binacchi
> > > > > <dario.binacchi@amarulasolutions.com> wrote:
> > > > >
> > > > > > Applied to nand-next ( as well as the patch "mtd: rawnand: nand_base:
> > > > > > Handle algorithm selection").
> > > > >
> > > > > 1) Sweet! Thanks.
> > > > >
> > > > > 2) Did you use the latest versions that I resent as part of the
> > > > > NorthStar support?
> > > >
> > > > I applied v2:
> > > > https://patchwork.ozlabs.org/project/uboot/patch/20230308214231.378013-1-linus.walleij@linaro.org/
> > > > https://patchwork.ozlabs.org/project/uboot/patch/20230308212851.370939-1-linus.walleij@linaro.org/
> > >
> > > The second patch will be problematic, can you switch it to the newer
> > > versions?
> >
> > This one?
> > https://patchwork.ozlabs.org/project/uboot/patch/20230308212851.370939-1-linus.walleij@linaro.org/
> > I can revert the commit
> > ff33d3c87c2a mtd: rawnand: nand_base: Handle algorithm selection
> > and apply your newer patch.
> > Do you agree?
> 
> Yes, thanks!
> 
> In patchwork the newer patch is this one:
> https://patchwork.ozlabs.org/project/uboot/patch/20230407134008.1939717-3-linus.walleij@linaro.org/

And since this has broken part of my test lab, please and thanks for a
quick PR with the fix in it.

-- 
Tom

[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 659 bytes --]

^ permalink raw reply	[flat|nested] 9+ messages in thread

end of thread, other threads:[~2023-04-22 19:20 UTC | newest]

Thread overview: 9+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2023-03-08 21:42 [PATCH v2] nand: brcmnand: add iproc support Linus Walleij
2023-03-11  1:03 ` William Zhang
2023-04-17  8:37   ` Dario Binacchi
2023-04-19 13:04     ` Linus Walleij
2023-04-19 13:19       ` Dario Binacchi
2023-04-19 14:00         ` Linus Walleij
2023-04-19 16:13           ` Dario Binacchi
2023-04-20 20:51             ` Linus Walleij
2023-04-22 19:19               ` Tom Rini

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.