All of lore.kernel.org
 help / color / mirror / Atom feed
* [U-Boot] [PATCH 1/3] spi: davinci: Add platdata support
@ 2018-09-03 17:30 Jagan Teki
  2018-09-03 17:30 ` [U-Boot] [PATCH 2/3] board: da8xxevm: Add SPL DM for serial, spi Jagan Teki
                   ` (3 more replies)
  0 siblings, 4 replies; 11+ messages in thread
From: Jagan Teki @ 2018-09-03 17:30 UTC (permalink / raw)
  To: u-boot

Davanci spi driver has DM support already, this patch
add support for platdata so-that SPL can use it for
low foot-print.

Signed-off-by: Jagan Teki <jagan@amarulasolutions.com>
---
 drivers/spi/davinci_spi.c              | 47 +++++++++++++++-----------
 include/dm/platform_data/spi_davinci.h | 15 ++++++++
 2 files changed, 43 insertions(+), 19 deletions(-)
 create mode 100644 include/dm/platform_data/spi_davinci.h

diff --git a/drivers/spi/davinci_spi.c b/drivers/spi/davinci_spi.c
index a822858323..07fa5e3b8a 100644
--- a/drivers/spi/davinci_spi.c
+++ b/drivers/spi/davinci_spi.c
@@ -14,6 +14,7 @@
 #include <asm/io.h>
 #include <asm/arch/hardware.h>
 #include <dm.h>
+#include <dm/platform_data/spi_davinci.h>
 
 /* SPIGCR0 */
 #define SPIGCR0_SPIENA_MASK	0x1
@@ -529,50 +530,58 @@ static int davinci_spi_xfer(struct udevice *dev, unsigned int bitlen,
 	return __davinci_spi_xfer(ds, bitlen, dout, din, flags);
 }
 
+static const struct dm_spi_ops davinci_spi_ops = {
+	.claim_bus	= davinci_spi_claim_bus,
+	.release_bus	= davinci_spi_release_bus,
+	.xfer		= davinci_spi_xfer,
+	.set_speed	= davinci_spi_set_speed,
+	.set_mode	= davinci_spi_set_mode,
+};
+
 static int davinci_spi_probe(struct udevice *bus)
 {
-	/* Nothing to do */
+	struct davinci_spi_slave *ds = dev_get_priv(bus);
+	struct davinci_spi_platdata *plat = bus->platdata;
+	ds->regs = plat->regs;
+	ds->num_cs = plat->num_cs;
+
 	return 0;
 }
 
+#if CONFIG_IS_ENABLED(OF_CONTROL) && !CONFIG_IS_ENABLED(OF_PLATDATA)
 static int davinci_ofdata_to_platadata(struct udevice *bus)
 {
-	struct davinci_spi_slave *ds = dev_get_priv(bus);
-	const void *blob = gd->fdt_blob;
-	int node = dev_of_offset(bus);
+	struct davinci_spi_platdata *plat = bus->platdata;
+	fdt_addr_t addr;
 
-	ds->regs = devfdt_map_physmem(bus, sizeof(struct davinci_spi_regs));
-	if (!ds->regs) {
-		printf("%s: could not map device address\n", __func__);
+	addr = devfdt_get_addr(bus);
+	if (addr == FDT_ADDR_T_NONE)
 		return -EINVAL;
-	}
-	ds->num_cs = fdtdec_get_int(blob, node, "num-cs", 4);
+
+	plat->regs = (struct davinci_spi_regs *)addr;
+	plat->num_cs = fdtdec_get_int(gd->fdt_blob, dev_of_offset(bus), "num-cs", 4);
 
 	return 0;
 }
 
-static const struct dm_spi_ops davinci_spi_ops = {
-	.claim_bus	= davinci_spi_claim_bus,
-	.release_bus	= davinci_spi_release_bus,
-	.xfer		= davinci_spi_xfer,
-	.set_speed	= davinci_spi_set_speed,
-	.set_mode	= davinci_spi_set_mode,
-};
-
 static const struct udevice_id davinci_spi_ids[] = {
 	{ .compatible = "ti,keystone-spi" },
 	{ .compatible = "ti,dm6441-spi" },
 	{ .compatible = "ti,da830-spi" },
 	{ }
 };
+#endif
 
 U_BOOT_DRIVER(davinci_spi) = {
 	.name = "davinci_spi",
 	.id = UCLASS_SPI,
+#if CONFIG_IS_ENABLED(OF_CONTROL) && !CONFIG_IS_ENABLED(OF_PLATDATA)
 	.of_match = davinci_spi_ids,
-	.ops = &davinci_spi_ops,
 	.ofdata_to_platdata = davinci_ofdata_to_platadata,
-	.priv_auto_alloc_size = sizeof(struct davinci_spi_slave),
+        .platdata_auto_alloc_size = sizeof(struct davinci_spi_platdata),
+#endif
 	.probe = davinci_spi_probe,
+	.ops = &davinci_spi_ops,
+	.priv_auto_alloc_size = sizeof(struct davinci_spi_slave),
 };
 #endif
diff --git a/include/dm/platform_data/spi_davinci.h b/include/dm/platform_data/spi_davinci.h
new file mode 100644
index 0000000000..fbc62c262a
--- /dev/null
+++ b/include/dm/platform_data/spi_davinci.h
@@ -0,0 +1,15 @@
+/*
+ * Copyright (C) 2018 Jagan Teki <jagan@amarulasolutions.com>
+ *
+ * SPDX-License-Identifier:	GPL-2.0+
+ */
+
+#ifndef __spi_davinci_h
+#define __spi_davinci_h
+
+struct davinci_spi_platdata {
+	struct davinci_spi_regs *regs;
+	u8 num_cs;	   /* total no. of CS available */
+};
+
+#endif /* __spi_davinci_h */
-- 
2.18.0.321.gffc6fa0e3

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

* [U-Boot] [PATCH 2/3] board: da8xxevm: Add SPL DM for serial, spi
  2018-09-03 17:30 [U-Boot] [PATCH 1/3] spi: davinci: Add platdata support Jagan Teki
@ 2018-09-03 17:30 ` Jagan Teki
  2018-10-01 21:58   ` Adam Ford
  2018-10-10  6:11   ` Jagan Teki
  2018-09-03 17:30 ` [U-Boot] [PATCH 3/3] configs: omapl138_lcdk: Enable DM_SPI, DM_SPI_FLASH Jagan Teki
                   ` (2 subsequent siblings)
  3 siblings, 2 replies; 11+ messages in thread
From: Jagan Teki @ 2018-09-03 17:30 UTC (permalink / raw)
  To: u-boot

This patch add SPL DM support for da8xxevm boards
with SPL serial, SPI drivers supported via platdata.

Cc: Adam Ford <aford173@gmail.com>
Signed-off-by: Jagan Teki <jagan@amarulasolutions.com>
---
 board/davinci/da8xxevm/da850evm.c | 27 +++++++++++++++++++++++++++
 configs/da850_am18xxevm_defconfig |  3 +++
 configs/da850evm_defconfig        |  3 +++
 include/configs/da850evm.h        |  3 ---
 4 files changed, 33 insertions(+), 3 deletions(-)

diff --git a/board/davinci/da8xxevm/da850evm.c b/board/davinci/da8xxevm/da850evm.c
index 5583b45792..4cecb53124 100644
--- a/board/davinci/da8xxevm/da850evm.c
+++ b/board/davinci/da8xxevm/da850evm.c
@@ -49,6 +49,33 @@ DECLARE_GLOBAL_DATA_PTR;
 
 #define CFG_MAC_ADDR_OFFSET	(flash->size - SZ_64K)
 
+#ifdef CONFIG_SPL_BUILD
+#include <ns16550.h>
+#include <dm/platform_data/spi_davinci.h>
+
+static const struct ns16550_platdata da850evm_serial = {
+	.base = DAVINCI_UART2_BASE,
+	.reg_shift = 2,
+	.clock = 150000000,
+	.fcr = UART_FCR_DEFVAL,
+};
+
+U_BOOT_DEVICE(da850evm_uart) = {
+	.name = "ns16550_serial",
+	.platdata = &da850evm_serial,
+};
+
+static const struct davinci_spi_platdata davinci_spi_data = {
+        .regs = (struct davinci_spi_regs *)0x01f0e000,
+        .num_cs = 4,
+};
+
+U_BOOT_DEVICE(davinci_spi) = {
+        .name = "davinci_spi",
+        .platdata = &davinci_spi_data,
+};
+#endif
+
 #ifdef CONFIG_MAC_ADDR_IN_SPIFLASH
 static int get_mac_addr(u8 *addr)
 {
diff --git a/configs/da850_am18xxevm_defconfig b/configs/da850_am18xxevm_defconfig
index c61d78e2fe..07bfcc15f5 100644
--- a/configs/da850_am18xxevm_defconfig
+++ b/configs/da850_am18xxevm_defconfig
@@ -8,6 +8,7 @@ CONFIG_SPL_LIBCOMMON_SUPPORT=y
 CONFIG_SPL_LIBGENERIC_SUPPORT=y
 CONFIG_SPL_SERIAL_SUPPORT=y
 CONFIG_SPL=y
+CONFIG_SPL_DM=y
 CONFIG_SPL_SPI_FLASH_SUPPORT=y
 CONFIG_SPL_SPI_SUPPORT=y
 CONFIG_DEFAULT_DEVICE_TREE="da850-evm"
@@ -35,6 +36,8 @@ CONFIG_CRC32_VERIFY=y
 # CONFIG_CMD_FS_GENERIC is not set
 CONFIG_CMD_DIAG=y
 CONFIG_OF_CONTROL=y
+CONFIG_SPL_OF_CONTROL=y
+CONFIG_SPL_OF_PLATDATA=y
 CONFIG_ENV_IS_IN_SPI_FLASH=y
 CONFIG_DM=y
 CONFIG_DA8XX_GPIO=y
diff --git a/configs/da850evm_defconfig b/configs/da850evm_defconfig
index 0b8bf2ad36..053173f2b1 100644
--- a/configs/da850evm_defconfig
+++ b/configs/da850evm_defconfig
@@ -7,6 +7,7 @@ CONFIG_SPL_LIBCOMMON_SUPPORT=y
 CONFIG_SPL_LIBGENERIC_SUPPORT=y
 CONFIG_SPL_SERIAL_SUPPORT=y
 CONFIG_SPL=y
+CONFIG_SPL_DM=y
 CONFIG_SPL_SPI_FLASH_SUPPORT=y
 CONFIG_SPL_SPI_SUPPORT=y
 CONFIG_DEFAULT_DEVICE_TREE="da850-evm"
@@ -37,6 +38,8 @@ CONFIG_MTDIDS_DEFAULT="nor0=spi0.0"
 CONFIG_MTDPARTS_DEFAULT="mtdparts=spi0.0:512k(u-boot.ais),64k(u-boot-env),7552k(kernel-spare),64k(MAC-Address)"
 CONFIG_CMD_DIAG=y
 CONFIG_OF_CONTROL=y
+CONFIG_SPL_OF_CONTROL=y
+CONFIG_SPL_OF_PLATDATA=y
 CONFIG_ENV_IS_IN_SPI_FLASH=y
 CONFIG_DM=y
 CONFIG_DM_GPIO=y
diff --git a/include/configs/da850evm.h b/include/configs/da850evm.h
index 7e52fea2a1..ebdadb44a8 100644
--- a/include/configs/da850evm.h
+++ b/include/configs/da850evm.h
@@ -23,8 +23,6 @@
 * DM support in SPL
 */
 #ifdef CONFIG_SPL_BUILD
-#undef CONFIG_DM_SPI
-#undef CONFIG_DM_SPI_FLASH
 #undef CONFIG_DM_I2C
 #undef CONFIG_DM_I2C_COMPAT
 #endif
@@ -117,7 +115,6 @@
 
 #if defined(CONFIG_SPL_BUILD) || defined(CONFIG_DIRECT_NOR_BOOT)
 #define CONFIG_SYS_NS16550_SERIAL
-#define CONFIG_SYS_NS16550_REG_SIZE	-4	/* NS16550 register size */
 #define CONFIG_SYS_NS16550_COM1	DAVINCI_UART2_BASE /* Base address of UART2 */
 #endif
 #define CONFIG_SYS_NS16550_CLK	clk_get(DAVINCI_UART2_CLKID)
-- 
2.18.0.321.gffc6fa0e3

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

* [U-Boot] [PATCH 3/3] configs: omapl138_lcdk: Enable DM_SPI, DM_SPI_FLASH
  2018-09-03 17:30 [U-Boot] [PATCH 1/3] spi: davinci: Add platdata support Jagan Teki
  2018-09-03 17:30 ` [U-Boot] [PATCH 2/3] board: da8xxevm: Add SPL DM for serial, spi Jagan Teki
@ 2018-09-03 17:30 ` Jagan Teki
  2018-09-03 22:21 ` [U-Boot] [PATCH 1/3] spi: davinci: Add platdata support Adam Ford
  2018-10-10  6:10 ` Jagan Teki
  3 siblings, 0 replies; 11+ messages in thread
From: Jagan Teki @ 2018-09-03 17:30 UTC (permalink / raw)
  To: u-boot

Enable DM_SPI and DM_SPI_FLASH for omapl138_lcdk board.

Cc: Peter Howard <phoward@gme.net.au>
Signed-off-by: Jagan Teki <jagan@amarulasolutions.com>
---
Note:
This would need spi DT node.

 configs/omapl138_lcdk_defconfig | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/configs/omapl138_lcdk_defconfig b/configs/omapl138_lcdk_defconfig
index e8c6cf03bc..de92a1af87 100644
--- a/configs/omapl138_lcdk_defconfig
+++ b/configs/omapl138_lcdk_defconfig
@@ -43,6 +43,7 @@ CONFIG_SYS_NAND_BUSWIDTH_16BIT=y
 CONFIG_SYS_NAND_U_BOOT_LOCATIONS=y
 CONFIG_SYS_NAND_U_BOOT_OFFS=0x28000
 CONFIG_SPL_NAND_SIMPLE=y
+CONFIG_DM_SPI_FLASH=y
 CONFIG_SPI_FLASH=y
 CONFIG_SPI_FLASH_STMICRO=y
 CONFIG_SPI_FLASH_WINBOND=y
@@ -51,4 +52,5 @@ CONFIG_DRIVER_TI_EMAC=y
 CONFIG_DM_SERIAL=y
 CONFIG_SYS_NS16550=y
 CONFIG_SPI=y
+CONFIG_DM_SPI=y
 CONFIG_DAVINCI_SPI=y
-- 
2.18.0.321.gffc6fa0e3

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

* [U-Boot] [PATCH 1/3] spi: davinci: Add platdata support
  2018-09-03 17:30 [U-Boot] [PATCH 1/3] spi: davinci: Add platdata support Jagan Teki
  2018-09-03 17:30 ` [U-Boot] [PATCH 2/3] board: da8xxevm: Add SPL DM for serial, spi Jagan Teki
  2018-09-03 17:30 ` [U-Boot] [PATCH 3/3] configs: omapl138_lcdk: Enable DM_SPI, DM_SPI_FLASH Jagan Teki
@ 2018-09-03 22:21 ` Adam Ford
  2018-09-03 22:22   ` Adam Ford
  2018-10-10  6:10 ` Jagan Teki
  3 siblings, 1 reply; 11+ messages in thread
From: Adam Ford @ 2018-09-03 22:21 UTC (permalink / raw)
  To: u-boot

On Mon, Sep 3, 2018 at 12:30 PM Jagan Teki <jagan@amarulasolutions.com> wrote:
>
> Davanci spi driver has DM support already, this patch
> add support for platdata so-that SPL can use it for
> low foot-print.
>

In order for this to work, I had to apply a patch [1] that I submitted before.
That patch disabled the manual initialization of the UART in da850_lowlevel.c
to not conflict with the DM version of initialization.

Assuming that [1] gets applied first then this, you can add me as
'tested-by' on
both patches 1 of 3 and 2 of 3.  I don't have the hardware to test 3 of 3.

[1] - https://patchwork.ozlabs.org/patch/957336/

adam

> Signed-off-by: Jagan Teki <jagan@amarulasolutions.com>
> ---
>  drivers/spi/davinci_spi.c              | 47 +++++++++++++++-----------
>  include/dm/platform_data/spi_davinci.h | 15 ++++++++
>  2 files changed, 43 insertions(+), 19 deletions(-)
>  create mode 100644 include/dm/platform_data/spi_davinci.h
>
> diff --git a/drivers/spi/davinci_spi.c b/drivers/spi/davinci_spi.c
> index a822858323..07fa5e3b8a 100644
> --- a/drivers/spi/davinci_spi.c
> +++ b/drivers/spi/davinci_spi.c
> @@ -14,6 +14,7 @@
>  #include <asm/io.h>
>  #include <asm/arch/hardware.h>
>  #include <dm.h>
> +#include <dm/platform_data/spi_davinci.h>
>
>  /* SPIGCR0 */
>  #define SPIGCR0_SPIENA_MASK    0x1
> @@ -529,50 +530,58 @@ static int davinci_spi_xfer(struct udevice *dev, unsigned int bitlen,
>         return __davinci_spi_xfer(ds, bitlen, dout, din, flags);
>  }
>
> +static const struct dm_spi_ops davinci_spi_ops = {
> +       .claim_bus      = davinci_spi_claim_bus,
> +       .release_bus    = davinci_spi_release_bus,
> +       .xfer           = davinci_spi_xfer,
> +       .set_speed      = davinci_spi_set_speed,
> +       .set_mode       = davinci_spi_set_mode,
> +};
> +
>  static int davinci_spi_probe(struct udevice *bus)
>  {
> -       /* Nothing to do */
> +       struct davinci_spi_slave *ds = dev_get_priv(bus);
> +       struct davinci_spi_platdata *plat = bus->platdata;
> +       ds->regs = plat->regs;
> +       ds->num_cs = plat->num_cs;
> +
>         return 0;
>  }
>
> +#if CONFIG_IS_ENABLED(OF_CONTROL) && !CONFIG_IS_ENABLED(OF_PLATDATA)
>  static int davinci_ofdata_to_platadata(struct udevice *bus)
>  {
> -       struct davinci_spi_slave *ds = dev_get_priv(bus);
> -       const void *blob = gd->fdt_blob;
> -       int node = dev_of_offset(bus);
> +       struct davinci_spi_platdata *plat = bus->platdata;
> +       fdt_addr_t addr;
>
> -       ds->regs = devfdt_map_physmem(bus, sizeof(struct davinci_spi_regs));
> -       if (!ds->regs) {
> -               printf("%s: could not map device address\n", __func__);
> +       addr = devfdt_get_addr(bus);
> +       if (addr == FDT_ADDR_T_NONE)
>                 return -EINVAL;
> -       }
> -       ds->num_cs = fdtdec_get_int(blob, node, "num-cs", 4);
> +
> +       plat->regs = (struct davinci_spi_regs *)addr;
> +       plat->num_cs = fdtdec_get_int(gd->fdt_blob, dev_of_offset(bus), "num-cs", 4);
>
>         return 0;
>  }
>
> -static const struct dm_spi_ops davinci_spi_ops = {
> -       .claim_bus      = davinci_spi_claim_bus,
> -       .release_bus    = davinci_spi_release_bus,
> -       .xfer           = davinci_spi_xfer,
> -       .set_speed      = davinci_spi_set_speed,
> -       .set_mode       = davinci_spi_set_mode,
> -};
> -
>  static const struct udevice_id davinci_spi_ids[] = {
>         { .compatible = "ti,keystone-spi" },
>         { .compatible = "ti,dm6441-spi" },
>         { .compatible = "ti,da830-spi" },
>         { }
>  };
> +#endif
>
>  U_BOOT_DRIVER(davinci_spi) = {
>         .name = "davinci_spi",
>         .id = UCLASS_SPI,
> +#if CONFIG_IS_ENABLED(OF_CONTROL) && !CONFIG_IS_ENABLED(OF_PLATDATA)
>         .of_match = davinci_spi_ids,
> -       .ops = &davinci_spi_ops,
>         .ofdata_to_platdata = davinci_ofdata_to_platadata,
> -       .priv_auto_alloc_size = sizeof(struct davinci_spi_slave),
> +        .platdata_auto_alloc_size = sizeof(struct davinci_spi_platdata),
> +#endif
>         .probe = davinci_spi_probe,
> +       .ops = &davinci_spi_ops,
> +       .priv_auto_alloc_size = sizeof(struct davinci_spi_slave),
>  };
>  #endif
> diff --git a/include/dm/platform_data/spi_davinci.h b/include/dm/platform_data/spi_davinci.h
> new file mode 100644
> index 0000000000..fbc62c262a
> --- /dev/null
> +++ b/include/dm/platform_data/spi_davinci.h
> @@ -0,0 +1,15 @@
> +/*
> + * Copyright (C) 2018 Jagan Teki <jagan@amarulasolutions.com>
> + *
> + * SPDX-License-Identifier:    GPL-2.0+
> + */
> +
> +#ifndef __spi_davinci_h
> +#define __spi_davinci_h
> +
> +struct davinci_spi_platdata {
> +       struct davinci_spi_regs *regs;
> +       u8 num_cs;         /* total no. of CS available */
> +};
> +
> +#endif /* __spi_davinci_h */
> --
> 2.18.0.321.gffc6fa0e3
>

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

* [U-Boot] [PATCH 1/3] spi: davinci: Add platdata support
  2018-09-03 22:21 ` [U-Boot] [PATCH 1/3] spi: davinci: Add platdata support Adam Ford
@ 2018-09-03 22:22   ` Adam Ford
  2018-10-01 12:54     ` Adam Ford
  0 siblings, 1 reply; 11+ messages in thread
From: Adam Ford @ 2018-09-03 22:22 UTC (permalink / raw)
  To: u-boot

On Mon, Sep 3, 2018 at 5:21 PM Adam Ford <aford173@gmail.com> wrote:
>
> On Mon, Sep 3, 2018 at 12:30 PM Jagan Teki <jagan@amarulasolutions.com> wrote:
> >
> > Davanci spi driver has DM support already, this patch
> > add support for platdata so-that SPL can use it for
> > low foot-print.
> >
>
> In order for this to work, I had to apply a patch [1] that I submitted before.
> That patch disabled the manual initialization of the UART in da850_lowlevel.c
> to not conflict with the DM version of initialization.
>
> Assuming that [1] gets applied first then this, you can add me as
> 'tested-by' on
> both patches 1 of 3 and 2 of 3.  I don't have the hardware to test 3 of 3.
>
> [1] - https://patchwork.ozlabs.org/patch/957336/
>
> adam
>

I should have stated, that without the [1] patch, this does does not work.

adam
> > Signed-off-by: Jagan Teki <jagan@amarulasolutions.com>
> > ---
> >  drivers/spi/davinci_spi.c              | 47 +++++++++++++++-----------
> >  include/dm/platform_data/spi_davinci.h | 15 ++++++++
> >  2 files changed, 43 insertions(+), 19 deletions(-)
> >  create mode 100644 include/dm/platform_data/spi_davinci.h
> >
> > diff --git a/drivers/spi/davinci_spi.c b/drivers/spi/davinci_spi.c
> > index a822858323..07fa5e3b8a 100644
> > --- a/drivers/spi/davinci_spi.c
> > +++ b/drivers/spi/davinci_spi.c
> > @@ -14,6 +14,7 @@
> >  #include <asm/io.h>
> >  #include <asm/arch/hardware.h>
> >  #include <dm.h>
> > +#include <dm/platform_data/spi_davinci.h>
> >
> >  /* SPIGCR0 */
> >  #define SPIGCR0_SPIENA_MASK    0x1
> > @@ -529,50 +530,58 @@ static int davinci_spi_xfer(struct udevice *dev, unsigned int bitlen,
> >         return __davinci_spi_xfer(ds, bitlen, dout, din, flags);
> >  }
> >
> > +static const struct dm_spi_ops davinci_spi_ops = {
> > +       .claim_bus      = davinci_spi_claim_bus,
> > +       .release_bus    = davinci_spi_release_bus,
> > +       .xfer           = davinci_spi_xfer,
> > +       .set_speed      = davinci_spi_set_speed,
> > +       .set_mode       = davinci_spi_set_mode,
> > +};
> > +
> >  static int davinci_spi_probe(struct udevice *bus)
> >  {
> > -       /* Nothing to do */
> > +       struct davinci_spi_slave *ds = dev_get_priv(bus);
> > +       struct davinci_spi_platdata *plat = bus->platdata;
> > +       ds->regs = plat->regs;
> > +       ds->num_cs = plat->num_cs;
> > +
> >         return 0;
> >  }
> >
> > +#if CONFIG_IS_ENABLED(OF_CONTROL) && !CONFIG_IS_ENABLED(OF_PLATDATA)
> >  static int davinci_ofdata_to_platadata(struct udevice *bus)
> >  {
> > -       struct davinci_spi_slave *ds = dev_get_priv(bus);
> > -       const void *blob = gd->fdt_blob;
> > -       int node = dev_of_offset(bus);
> > +       struct davinci_spi_platdata *plat = bus->platdata;
> > +       fdt_addr_t addr;
> >
> > -       ds->regs = devfdt_map_physmem(bus, sizeof(struct davinci_spi_regs));
> > -       if (!ds->regs) {
> > -               printf("%s: could not map device address\n", __func__);
> > +       addr = devfdt_get_addr(bus);
> > +       if (addr == FDT_ADDR_T_NONE)
> >                 return -EINVAL;
> > -       }
> > -       ds->num_cs = fdtdec_get_int(blob, node, "num-cs", 4);
> > +
> > +       plat->regs = (struct davinci_spi_regs *)addr;
> > +       plat->num_cs = fdtdec_get_int(gd->fdt_blob, dev_of_offset(bus), "num-cs", 4);
> >
> >         return 0;
> >  }
> >
> > -static const struct dm_spi_ops davinci_spi_ops = {
> > -       .claim_bus      = davinci_spi_claim_bus,
> > -       .release_bus    = davinci_spi_release_bus,
> > -       .xfer           = davinci_spi_xfer,
> > -       .set_speed      = davinci_spi_set_speed,
> > -       .set_mode       = davinci_spi_set_mode,
> > -};
> > -
> >  static const struct udevice_id davinci_spi_ids[] = {
> >         { .compatible = "ti,keystone-spi" },
> >         { .compatible = "ti,dm6441-spi" },
> >         { .compatible = "ti,da830-spi" },
> >         { }
> >  };
> > +#endif
> >
> >  U_BOOT_DRIVER(davinci_spi) = {
> >         .name = "davinci_spi",
> >         .id = UCLASS_SPI,
> > +#if CONFIG_IS_ENABLED(OF_CONTROL) && !CONFIG_IS_ENABLED(OF_PLATDATA)
> >         .of_match = davinci_spi_ids,
> > -       .ops = &davinci_spi_ops,
> >         .ofdata_to_platdata = davinci_ofdata_to_platadata,
> > -       .priv_auto_alloc_size = sizeof(struct davinci_spi_slave),
> > +        .platdata_auto_alloc_size = sizeof(struct davinci_spi_platdata),
> > +#endif
> >         .probe = davinci_spi_probe,
> > +       .ops = &davinci_spi_ops,
> > +       .priv_auto_alloc_size = sizeof(struct davinci_spi_slave),
> >  };
> >  #endif
> > diff --git a/include/dm/platform_data/spi_davinci.h b/include/dm/platform_data/spi_davinci.h
> > new file mode 100644
> > index 0000000000..fbc62c262a
> > --- /dev/null
> > +++ b/include/dm/platform_data/spi_davinci.h
> > @@ -0,0 +1,15 @@
> > +/*
> > + * Copyright (C) 2018 Jagan Teki <jagan@amarulasolutions.com>
> > + *
> > + * SPDX-License-Identifier:    GPL-2.0+
> > + */
> > +
> > +#ifndef __spi_davinci_h
> > +#define __spi_davinci_h
> > +
> > +struct davinci_spi_platdata {
> > +       struct davinci_spi_regs *regs;
> > +       u8 num_cs;         /* total no. of CS available */
> > +};
> > +
> > +#endif /* __spi_davinci_h */
> > --
> > 2.18.0.321.gffc6fa0e3
> >

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

* [U-Boot] [PATCH 1/3] spi: davinci: Add platdata support
  2018-09-03 22:22   ` Adam Ford
@ 2018-10-01 12:54     ` Adam Ford
  2018-10-01 21:57       ` Adam Ford
  0 siblings, 1 reply; 11+ messages in thread
From: Adam Ford @ 2018-10-01 12:54 UTC (permalink / raw)
  To: u-boot

On Mon, Sep 3, 2018 at 5:22 PM Adam Ford <aford173@gmail.com> wrote:
>
> On Mon, Sep 3, 2018 at 5:21 PM Adam Ford <aford173@gmail.com> wrote:
> >
> > On Mon, Sep 3, 2018 at 12:30 PM Jagan Teki <jagan@amarulasolutions.com> wrote:
> > >
> > > Davanci spi driver has DM support already, this patch
> > > add support for platdata so-that SPL can use it for
> > > low foot-print.
> > >
> >
> > In order for this to work, I had to apply a patch [1] that I submitted before.
> > That patch disabled the manual initialization of the UART in da850_lowlevel.c
> > to not conflict with the DM version of initialization.
> >
> > Assuming that [1] gets applied first then this, you can add me as
> > 'tested-by' on
> > both patches 1 of 3 and 2 of 3.  I don't have the hardware to test 3 of 3.
> >
> > [1] - https://patchwork.ozlabs.org/patch/957336/
> >
> > adam
> >
>
> I should have stated, that without the [1] patch, this does does not work.

The patch I mentioned is applied.  I am back in the US and ready and
willing to test/retest  anything.
If you want me to just retest this patch as-is, I can do so, if you
want to rebase against master and sent out updated patches, I can do
that too.  If you have a git repo you want me to pull, I can test from
there too.

As of 30 September 2018, the master branch booted the da850-evm and
the concern I had about DM_SERIAL has been applied, so I am confident
for at least the da850-evm your patch series should allow us to enable
DM and boot both SPL (with OF_PLATDATA) and U-Boot.

adam

>
> adam
> > > Signed-off-by: Jagan Teki <jagan@amarulasolutions.com>
> > > ---
> > >  drivers/spi/davinci_spi.c              | 47 +++++++++++++++-----------
> > >  include/dm/platform_data/spi_davinci.h | 15 ++++++++
> > >  2 files changed, 43 insertions(+), 19 deletions(-)
> > >  create mode 100644 include/dm/platform_data/spi_davinci.h
> > >
> > > diff --git a/drivers/spi/davinci_spi.c b/drivers/spi/davinci_spi.c
> > > index a822858323..07fa5e3b8a 100644
> > > --- a/drivers/spi/davinci_spi.c
> > > +++ b/drivers/spi/davinci_spi.c
> > > @@ -14,6 +14,7 @@
> > >  #include <asm/io.h>
> > >  #include <asm/arch/hardware.h>
> > >  #include <dm.h>
> > > +#include <dm/platform_data/spi_davinci.h>
> > >
> > >  /* SPIGCR0 */
> > >  #define SPIGCR0_SPIENA_MASK    0x1
> > > @@ -529,50 +530,58 @@ static int davinci_spi_xfer(struct udevice *dev, unsigned int bitlen,
> > >         return __davinci_spi_xfer(ds, bitlen, dout, din, flags);
> > >  }
> > >
> > > +static const struct dm_spi_ops davinci_spi_ops = {
> > > +       .claim_bus      = davinci_spi_claim_bus,
> > > +       .release_bus    = davinci_spi_release_bus,
> > > +       .xfer           = davinci_spi_xfer,
> > > +       .set_speed      = davinci_spi_set_speed,
> > > +       .set_mode       = davinci_spi_set_mode,
> > > +};
> > > +
> > >  static int davinci_spi_probe(struct udevice *bus)
> > >  {
> > > -       /* Nothing to do */
> > > +       struct davinci_spi_slave *ds = dev_get_priv(bus);
> > > +       struct davinci_spi_platdata *plat = bus->platdata;
> > > +       ds->regs = plat->regs;
> > > +       ds->num_cs = plat->num_cs;
> > > +
> > >         return 0;
> > >  }
> > >
> > > +#if CONFIG_IS_ENABLED(OF_CONTROL) && !CONFIG_IS_ENABLED(OF_PLATDATA)
> > >  static int davinci_ofdata_to_platadata(struct udevice *bus)
> > >  {
> > > -       struct davinci_spi_slave *ds = dev_get_priv(bus);
> > > -       const void *blob = gd->fdt_blob;
> > > -       int node = dev_of_offset(bus);
> > > +       struct davinci_spi_platdata *plat = bus->platdata;
> > > +       fdt_addr_t addr;
> > >
> > > -       ds->regs = devfdt_map_physmem(bus, sizeof(struct davinci_spi_regs));
> > > -       if (!ds->regs) {
> > > -               printf("%s: could not map device address\n", __func__);
> > > +       addr = devfdt_get_addr(bus);
> > > +       if (addr == FDT_ADDR_T_NONE)
> > >                 return -EINVAL;
> > > -       }
> > > -       ds->num_cs = fdtdec_get_int(blob, node, "num-cs", 4);
> > > +
> > > +       plat->regs = (struct davinci_spi_regs *)addr;
> > > +       plat->num_cs = fdtdec_get_int(gd->fdt_blob, dev_of_offset(bus), "num-cs", 4);
> > >
> > >         return 0;
> > >  }
> > >
> > > -static const struct dm_spi_ops davinci_spi_ops = {
> > > -       .claim_bus      = davinci_spi_claim_bus,
> > > -       .release_bus    = davinci_spi_release_bus,
> > > -       .xfer           = davinci_spi_xfer,
> > > -       .set_speed      = davinci_spi_set_speed,
> > > -       .set_mode       = davinci_spi_set_mode,
> > > -};
> > > -
> > >  static const struct udevice_id davinci_spi_ids[] = {
> > >         { .compatible = "ti,keystone-spi" },
> > >         { .compatible = "ti,dm6441-spi" },
> > >         { .compatible = "ti,da830-spi" },
> > >         { }
> > >  };
> > > +#endif
> > >
> > >  U_BOOT_DRIVER(davinci_spi) = {
> > >         .name = "davinci_spi",
> > >         .id = UCLASS_SPI,
> > > +#if CONFIG_IS_ENABLED(OF_CONTROL) && !CONFIG_IS_ENABLED(OF_PLATDATA)
> > >         .of_match = davinci_spi_ids,
> > > -       .ops = &davinci_spi_ops,
> > >         .ofdata_to_platdata = davinci_ofdata_to_platadata,
> > > -       .priv_auto_alloc_size = sizeof(struct davinci_spi_slave),
> > > +        .platdata_auto_alloc_size = sizeof(struct davinci_spi_platdata),
> > > +#endif
> > >         .probe = davinci_spi_probe,
> > > +       .ops = &davinci_spi_ops,
> > > +       .priv_auto_alloc_size = sizeof(struct davinci_spi_slave),
> > >  };
> > >  #endif
> > > diff --git a/include/dm/platform_data/spi_davinci.h b/include/dm/platform_data/spi_davinci.h
> > > new file mode 100644
> > > index 0000000000..fbc62c262a
> > > --- /dev/null
> > > +++ b/include/dm/platform_data/spi_davinci.h
> > > @@ -0,0 +1,15 @@
> > > +/*
> > > + * Copyright (C) 2018 Jagan Teki <jagan@amarulasolutions.com>
> > > + *
> > > + * SPDX-License-Identifier:    GPL-2.0+
> > > + */
> > > +
> > > +#ifndef __spi_davinci_h
> > > +#define __spi_davinci_h
> > > +
> > > +struct davinci_spi_platdata {
> > > +       struct davinci_spi_regs *regs;
> > > +       u8 num_cs;         /* total no. of CS available */
> > > +};
> > > +
> > > +#endif /* __spi_davinci_h */
> > > --
> > > 2.18.0.321.gffc6fa0e3
> > >

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

* [U-Boot] [PATCH 1/3] spi: davinci: Add platdata support
  2018-10-01 12:54     ` Adam Ford
@ 2018-10-01 21:57       ` Adam Ford
  2018-10-07  1:39         ` Adam Ford
  0 siblings, 1 reply; 11+ messages in thread
From: Adam Ford @ 2018-10-01 21:57 UTC (permalink / raw)
  To: u-boot

On Mon, Oct 1, 2018 at 7:54 AM Adam Ford <aford173@gmail.com> wrote:
>
> On Mon, Sep 3, 2018 at 5:22 PM Adam Ford <aford173@gmail.com> wrote:
> >
> > On Mon, Sep 3, 2018 at 5:21 PM Adam Ford <aford173@gmail.com> wrote:
> > >
> > > On Mon, Sep 3, 2018 at 12:30 PM Jagan Teki <jagan@amarulasolutions.com> wrote:
> > > >
> > > > Davanci spi driver has DM support already, this patch
> > > > add support for platdata so-that SPL can use it for
> > > > low foot-print.
> > > >
> > >
> > > In order for this to work, I had to apply a patch [1] that I submitted before.
> > > That patch disabled the manual initialization of the UART in da850_lowlevel.c
> > > to not conflict with the DM version of initialization.
> > >
> > > Assuming that [1] gets applied first then this, you can add me as
> > > 'tested-by' on
> > > both patches 1 of 3 and 2 of 3.  I don't have the hardware to test 3 of 3.
> > >
> > > [1] - https://patchwork.ozlabs.org/patch/957336/
> > >
> > > adam
> > >
> >
> > I should have stated, that without the [1] patch, this does does not work.
>
> The patch I mentioned is applied.  I am back in the US and ready and
> willing to test/retest  anything.
> If you want me to just retest this patch as-is, I can do so, if you
> want to rebase against master and sent out updated patches, I can do
> that too.  If you have a git repo you want me to pull, I can test from
> there too.
>
> As of 30 September 2018, the master branch booted the da850-evm and
> the concern I had about DM_SERIAL has been applied, so I am confident
> for at least the da850-evm your patch series should allow us to enable
> DM and boot both SPL (with OF_PLATDATA) and U-Boot.
>
> adam
>
> >
> > adam
> > > > Signed-off-by: Jagan Teki <jagan@amarulasolutions.com>

Tested-by: Adam Ford <aford173@gmail.com>

> > > > ---
> > > >  drivers/spi/davinci_spi.c              | 47 +++++++++++++++-----------
> > > >  include/dm/platform_data/spi_davinci.h | 15 ++++++++
> > > >  2 files changed, 43 insertions(+), 19 deletions(-)
> > > >  create mode 100644 include/dm/platform_data/spi_davinci.h
> > > >
> > > > diff --git a/drivers/spi/davinci_spi.c b/drivers/spi/davinci_spi.c
> > > > index a822858323..07fa5e3b8a 100644
> > > > --- a/drivers/spi/davinci_spi.c
> > > > +++ b/drivers/spi/davinci_spi.c
> > > > @@ -14,6 +14,7 @@
> > > >  #include <asm/io.h>
> > > >  #include <asm/arch/hardware.h>
> > > >  #include <dm.h>
> > > > +#include <dm/platform_data/spi_davinci.h>
> > > >
> > > >  /* SPIGCR0 */
> > > >  #define SPIGCR0_SPIENA_MASK    0x1
> > > > @@ -529,50 +530,58 @@ static int davinci_spi_xfer(struct udevice *dev, unsigned int bitlen,
> > > >         return __davinci_spi_xfer(ds, bitlen, dout, din, flags);
> > > >  }
> > > >
> > > > +static const struct dm_spi_ops davinci_spi_ops = {
> > > > +       .claim_bus      = davinci_spi_claim_bus,
> > > > +       .release_bus    = davinci_spi_release_bus,
> > > > +       .xfer           = davinci_spi_xfer,
> > > > +       .set_speed      = davinci_spi_set_speed,
> > > > +       .set_mode       = davinci_spi_set_mode,
> > > > +};
> > > > +
> > > >  static int davinci_spi_probe(struct udevice *bus)
> > > >  {
> > > > -       /* Nothing to do */
> > > > +       struct davinci_spi_slave *ds = dev_get_priv(bus);
> > > > +       struct davinci_spi_platdata *plat = bus->platdata;
> > > > +       ds->regs = plat->regs;
> > > > +       ds->num_cs = plat->num_cs;
> > > > +
> > > >         return 0;
> > > >  }
> > > >
> > > > +#if CONFIG_IS_ENABLED(OF_CONTROL) && !CONFIG_IS_ENABLED(OF_PLATDATA)
> > > >  static int davinci_ofdata_to_platadata(struct udevice *bus)
> > > >  {
> > > > -       struct davinci_spi_slave *ds = dev_get_priv(bus);
> > > > -       const void *blob = gd->fdt_blob;
> > > > -       int node = dev_of_offset(bus);
> > > > +       struct davinci_spi_platdata *plat = bus->platdata;
> > > > +       fdt_addr_t addr;
> > > >
> > > > -       ds->regs = devfdt_map_physmem(bus, sizeof(struct davinci_spi_regs));
> > > > -       if (!ds->regs) {
> > > > -               printf("%s: could not map device address\n", __func__);
> > > > +       addr = devfdt_get_addr(bus);
> > > > +       if (addr == FDT_ADDR_T_NONE)
> > > >                 return -EINVAL;
> > > > -       }
> > > > -       ds->num_cs = fdtdec_get_int(blob, node, "num-cs", 4);
> > > > +
> > > > +       plat->regs = (struct davinci_spi_regs *)addr;
> > > > +       plat->num_cs = fdtdec_get_int(gd->fdt_blob, dev_of_offset(bus), "num-cs", 4);
> > > >
> > > >         return 0;
> > > >  }
> > > >
> > > > -static const struct dm_spi_ops davinci_spi_ops = {
> > > > -       .claim_bus      = davinci_spi_claim_bus,
> > > > -       .release_bus    = davinci_spi_release_bus,
> > > > -       .xfer           = davinci_spi_xfer,
> > > > -       .set_speed      = davinci_spi_set_speed,
> > > > -       .set_mode       = davinci_spi_set_mode,
> > > > -};
> > > > -
> > > >  static const struct udevice_id davinci_spi_ids[] = {
> > > >         { .compatible = "ti,keystone-spi" },
> > > >         { .compatible = "ti,dm6441-spi" },
> > > >         { .compatible = "ti,da830-spi" },
> > > >         { }
> > > >  };
> > > > +#endif
> > > >
> > > >  U_BOOT_DRIVER(davinci_spi) = {
> > > >         .name = "davinci_spi",
> > > >         .id = UCLASS_SPI,
> > > > +#if CONFIG_IS_ENABLED(OF_CONTROL) && !CONFIG_IS_ENABLED(OF_PLATDATA)
> > > >         .of_match = davinci_spi_ids,
> > > > -       .ops = &davinci_spi_ops,
> > > >         .ofdata_to_platdata = davinci_ofdata_to_platadata,
> > > > -       .priv_auto_alloc_size = sizeof(struct davinci_spi_slave),
> > > > +        .platdata_auto_alloc_size = sizeof(struct davinci_spi_platdata),
> > > > +#endif
> > > >         .probe = davinci_spi_probe,
> > > > +       .ops = &davinci_spi_ops,
> > > > +       .priv_auto_alloc_size = sizeof(struct davinci_spi_slave),
> > > >  };
> > > >  #endif
> > > > diff --git a/include/dm/platform_data/spi_davinci.h b/include/dm/platform_data/spi_davinci.h
> > > > new file mode 100644
> > > > index 0000000000..fbc62c262a
> > > > --- /dev/null
> > > > +++ b/include/dm/platform_data/spi_davinci.h
> > > > @@ -0,0 +1,15 @@
> > > > +/*
> > > > + * Copyright (C) 2018 Jagan Teki <jagan@amarulasolutions.com>
> > > > + *
> > > > + * SPDX-License-Identifier:    GPL-2.0+
> > > > + */
> > > > +
> > > > +#ifndef __spi_davinci_h
> > > > +#define __spi_davinci_h
> > > > +
> > > > +struct davinci_spi_platdata {
> > > > +       struct davinci_spi_regs *regs;
> > > > +       u8 num_cs;         /* total no. of CS available */
> > > > +};
> > > > +
> > > > +#endif /* __spi_davinci_h */
> > > > --
> > > > 2.18.0.321.gffc6fa0e3
> > > >

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

* [U-Boot] [PATCH 2/3] board: da8xxevm: Add SPL DM for serial, spi
  2018-09-03 17:30 ` [U-Boot] [PATCH 2/3] board: da8xxevm: Add SPL DM for serial, spi Jagan Teki
@ 2018-10-01 21:58   ` Adam Ford
  2018-10-10  6:11   ` Jagan Teki
  1 sibling, 0 replies; 11+ messages in thread
From: Adam Ford @ 2018-10-01 21:58 UTC (permalink / raw)
  To: u-boot

On Mon, Sep 3, 2018 at 12:30 PM Jagan Teki <jagan@amarulasolutions.com> wrote:
>
> This patch add SPL DM support for da8xxevm boards
> with SPL serial, SPI drivers supported via platdata.
>
> Cc: Adam Ford <aford173@gmail.com>

I needed to massage one file a bit to get it to apply to master, but with that,

Tested-by: Adam Ford <aford173@gmail.com> #da850evm

> Signed-off-by: Jagan Teki <jagan@amarulasolutions.com>
> ---
>  board/davinci/da8xxevm/da850evm.c | 27 +++++++++++++++++++++++++++
>  configs/da850_am18xxevm_defconfig |  3 +++
>  configs/da850evm_defconfig        |  3 +++
>  include/configs/da850evm.h        |  3 ---
>  4 files changed, 33 insertions(+), 3 deletions(-)
>
> diff --git a/board/davinci/da8xxevm/da850evm.c b/board/davinci/da8xxevm/da850evm.c
> index 5583b45792..4cecb53124 100644
> --- a/board/davinci/da8xxevm/da850evm.c
> +++ b/board/davinci/da8xxevm/da850evm.c
> @@ -49,6 +49,33 @@ DECLARE_GLOBAL_DATA_PTR;
>
>  #define CFG_MAC_ADDR_OFFSET    (flash->size - SZ_64K)
>
> +#ifdef CONFIG_SPL_BUILD
> +#include <ns16550.h>
> +#include <dm/platform_data/spi_davinci.h>
> +
> +static const struct ns16550_platdata da850evm_serial = {
> +       .base = DAVINCI_UART2_BASE,
> +       .reg_shift = 2,
> +       .clock = 150000000,
> +       .fcr = UART_FCR_DEFVAL,
> +};
> +
> +U_BOOT_DEVICE(da850evm_uart) = {
> +       .name = "ns16550_serial",
> +       .platdata = &da850evm_serial,
> +};
> +
> +static const struct davinci_spi_platdata davinci_spi_data = {
> +        .regs = (struct davinci_spi_regs *)0x01f0e000,
> +        .num_cs = 4,
> +};
> +
> +U_BOOT_DEVICE(davinci_spi) = {
> +        .name = "davinci_spi",
> +        .platdata = &davinci_spi_data,
> +};
> +#endif
> +
>  #ifdef CONFIG_MAC_ADDR_IN_SPIFLASH
>  static int get_mac_addr(u8 *addr)
>  {
> diff --git a/configs/da850_am18xxevm_defconfig b/configs/da850_am18xxevm_defconfig
> index c61d78e2fe..07bfcc15f5 100644
> --- a/configs/da850_am18xxevm_defconfig
> +++ b/configs/da850_am18xxevm_defconfig
> @@ -8,6 +8,7 @@ CONFIG_SPL_LIBCOMMON_SUPPORT=y
>  CONFIG_SPL_LIBGENERIC_SUPPORT=y
>  CONFIG_SPL_SERIAL_SUPPORT=y
>  CONFIG_SPL=y
> +CONFIG_SPL_DM=y
>  CONFIG_SPL_SPI_FLASH_SUPPORT=y
>  CONFIG_SPL_SPI_SUPPORT=y
>  CONFIG_DEFAULT_DEVICE_TREE="da850-evm"
> @@ -35,6 +36,8 @@ CONFIG_CRC32_VERIFY=y
>  # CONFIG_CMD_FS_GENERIC is not set
>  CONFIG_CMD_DIAG=y
>  CONFIG_OF_CONTROL=y
> +CONFIG_SPL_OF_CONTROL=y
> +CONFIG_SPL_OF_PLATDATA=y
>  CONFIG_ENV_IS_IN_SPI_FLASH=y
>  CONFIG_DM=y
>  CONFIG_DA8XX_GPIO=y
> diff --git a/configs/da850evm_defconfig b/configs/da850evm_defconfig
> index 0b8bf2ad36..053173f2b1 100644
> --- a/configs/da850evm_defconfig
> +++ b/configs/da850evm_defconfig
> @@ -7,6 +7,7 @@ CONFIG_SPL_LIBCOMMON_SUPPORT=y
>  CONFIG_SPL_LIBGENERIC_SUPPORT=y
>  CONFIG_SPL_SERIAL_SUPPORT=y
>  CONFIG_SPL=y
> +CONFIG_SPL_DM=y
>  CONFIG_SPL_SPI_FLASH_SUPPORT=y
>  CONFIG_SPL_SPI_SUPPORT=y
>  CONFIG_DEFAULT_DEVICE_TREE="da850-evm"
> @@ -37,6 +38,8 @@ CONFIG_MTDIDS_DEFAULT="nor0=spi0.0"
>  CONFIG_MTDPARTS_DEFAULT="mtdparts=spi0.0:512k(u-boot.ais),64k(u-boot-env),7552k(kernel-spare),64k(MAC-Address)"
>  CONFIG_CMD_DIAG=y
>  CONFIG_OF_CONTROL=y
> +CONFIG_SPL_OF_CONTROL=y
> +CONFIG_SPL_OF_PLATDATA=y
>  CONFIG_ENV_IS_IN_SPI_FLASH=y
>  CONFIG_DM=y
>  CONFIG_DM_GPIO=y
> diff --git a/include/configs/da850evm.h b/include/configs/da850evm.h
> index 7e52fea2a1..ebdadb44a8 100644
> --- a/include/configs/da850evm.h
> +++ b/include/configs/da850evm.h
> @@ -23,8 +23,6 @@
>  * DM support in SPL
>  */
>  #ifdef CONFIG_SPL_BUILD
> -#undef CONFIG_DM_SPI
> -#undef CONFIG_DM_SPI_FLASH
>  #undef CONFIG_DM_I2C
>  #undef CONFIG_DM_I2C_COMPAT
>  #endif
> @@ -117,7 +115,6 @@
>
>  #if defined(CONFIG_SPL_BUILD) || defined(CONFIG_DIRECT_NOR_BOOT)
>  #define CONFIG_SYS_NS16550_SERIAL
> -#define CONFIG_SYS_NS16550_REG_SIZE    -4      /* NS16550 register size */
>  #define CONFIG_SYS_NS16550_COM1        DAVINCI_UART2_BASE /* Base address of UART2 */
>  #endif
>  #define CONFIG_SYS_NS16550_CLK clk_get(DAVINCI_UART2_CLKID)
> --
> 2.18.0.321.gffc6fa0e3
>

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

* [U-Boot] [PATCH 1/3] spi: davinci: Add platdata support
  2018-10-01 21:57       ` Adam Ford
@ 2018-10-07  1:39         ` Adam Ford
  0 siblings, 0 replies; 11+ messages in thread
From: Adam Ford @ 2018-10-07  1:39 UTC (permalink / raw)
  To: u-boot

On Mon, Oct 1, 2018 at 4:57 PM Adam Ford <aford173@gmail.com> wrote:
>
> On Mon, Oct 1, 2018 at 7:54 AM Adam Ford <aford173@gmail.com> wrote:
> >
> > On Mon, Sep 3, 2018 at 5:22 PM Adam Ford <aford173@gmail.com> wrote:
> > >
> > > On Mon, Sep 3, 2018 at 5:21 PM Adam Ford <aford173@gmail.com> wrote:
> > > >
> > > > On Mon, Sep 3, 2018 at 12:30 PM Jagan Teki <jagan@amarulasolutions.com> wrote:
> > > > >
> > > > > Davanci spi driver has DM support already, this patch
> > > > > add support for platdata so-that SPL can use it for
> > > > > low foot-print.
> > > > >
> > > >
> > > > In order for this to work, I had to apply a patch [1] that I submitted before.
> > > > That patch disabled the manual initialization of the UART in da850_lowlevel.c
> > > > to not conflict with the DM version of initialization.
> > > >
> > > > Assuming that [1] gets applied first then this, you can add me as
> > > > 'tested-by' on
> > > > both patches 1 of 3 and 2 of 3.  I don't have the hardware to test 3 of 3.
> > > >
> > > > [1] - https://patchwork.ozlabs.org/patch/957336/
> > > >
> > > > adam
> > > >
> > >
> > > I should have stated, that without the [1] patch, this does does not work.
> >
> > The patch I mentioned is applied.  I am back in the US and ready and
> > willing to test/retest  anything.
> > If you want me to just retest this patch as-is, I can do so, if you
> > want to rebase against master and sent out updated patches, I can do
> > that too.  If you have a git repo you want me to pull, I can test from
> > there too.
> >
> > As of 30 September 2018, the master branch booted the da850-evm and
> > the concern I had about DM_SERIAL has been applied, so I am confident
> > for at least the da850-evm your patch series should allow us to enable
> > DM and boot both SPL (with OF_PLATDATA) and U-Boot.
> >
> > adam
> >
> > >
> > > adam
> > > > > Signed-off-by: Jagan Teki <jagan@amarulasolutions.com>
>
> Tested-by: Adam Ford <aford173@gmail.com>
>

Is this patch series going to be acceptable as-is?  I'm very happy and
excited about it as it helps migrate more and more into DM.

thanks

adam
> > > > > ---
> > > > >  drivers/spi/davinci_spi.c              | 47 +++++++++++++++-----------
> > > > >  include/dm/platform_data/spi_davinci.h | 15 ++++++++
> > > > >  2 files changed, 43 insertions(+), 19 deletions(-)
> > > > >  create mode 100644 include/dm/platform_data/spi_davinci.h
> > > > >
> > > > > diff --git a/drivers/spi/davinci_spi.c b/drivers/spi/davinci_spi.c
> > > > > index a822858323..07fa5e3b8a 100644
> > > > > --- a/drivers/spi/davinci_spi.c
> > > > > +++ b/drivers/spi/davinci_spi.c
> > > > > @@ -14,6 +14,7 @@
> > > > >  #include <asm/io.h>
> > > > >  #include <asm/arch/hardware.h>
> > > > >  #include <dm.h>
> > > > > +#include <dm/platform_data/spi_davinci.h>
> > > > >
> > > > >  /* SPIGCR0 */
> > > > >  #define SPIGCR0_SPIENA_MASK    0x1
> > > > > @@ -529,50 +530,58 @@ static int davinci_spi_xfer(struct udevice *dev, unsigned int bitlen,
> > > > >         return __davinci_spi_xfer(ds, bitlen, dout, din, flags);
> > > > >  }
> > > > >
> > > > > +static const struct dm_spi_ops davinci_spi_ops = {
> > > > > +       .claim_bus      = davinci_spi_claim_bus,
> > > > > +       .release_bus    = davinci_spi_release_bus,
> > > > > +       .xfer           = davinci_spi_xfer,
> > > > > +       .set_speed      = davinci_spi_set_speed,
> > > > > +       .set_mode       = davinci_spi_set_mode,
> > > > > +};
> > > > > +
> > > > >  static int davinci_spi_probe(struct udevice *bus)
> > > > >  {
> > > > > -       /* Nothing to do */
> > > > > +       struct davinci_spi_slave *ds = dev_get_priv(bus);
> > > > > +       struct davinci_spi_platdata *plat = bus->platdata;
> > > > > +       ds->regs = plat->regs;
> > > > > +       ds->num_cs = plat->num_cs;
> > > > > +
> > > > >         return 0;
> > > > >  }
> > > > >
> > > > > +#if CONFIG_IS_ENABLED(OF_CONTROL) && !CONFIG_IS_ENABLED(OF_PLATDATA)
> > > > >  static int davinci_ofdata_to_platadata(struct udevice *bus)
> > > > >  {
> > > > > -       struct davinci_spi_slave *ds = dev_get_priv(bus);
> > > > > -       const void *blob = gd->fdt_blob;
> > > > > -       int node = dev_of_offset(bus);
> > > > > +       struct davinci_spi_platdata *plat = bus->platdata;
> > > > > +       fdt_addr_t addr;
> > > > >
> > > > > -       ds->regs = devfdt_map_physmem(bus, sizeof(struct davinci_spi_regs));
> > > > > -       if (!ds->regs) {
> > > > > -               printf("%s: could not map device address\n", __func__);
> > > > > +       addr = devfdt_get_addr(bus);
> > > > > +       if (addr == FDT_ADDR_T_NONE)
> > > > >                 return -EINVAL;
> > > > > -       }
> > > > > -       ds->num_cs = fdtdec_get_int(blob, node, "num-cs", 4);
> > > > > +
> > > > > +       plat->regs = (struct davinci_spi_regs *)addr;
> > > > > +       plat->num_cs = fdtdec_get_int(gd->fdt_blob, dev_of_offset(bus), "num-cs", 4);
> > > > >
> > > > >         return 0;
> > > > >  }
> > > > >
> > > > > -static const struct dm_spi_ops davinci_spi_ops = {
> > > > > -       .claim_bus      = davinci_spi_claim_bus,
> > > > > -       .release_bus    = davinci_spi_release_bus,
> > > > > -       .xfer           = davinci_spi_xfer,
> > > > > -       .set_speed      = davinci_spi_set_speed,
> > > > > -       .set_mode       = davinci_spi_set_mode,
> > > > > -};
> > > > > -
> > > > >  static const struct udevice_id davinci_spi_ids[] = {
> > > > >         { .compatible = "ti,keystone-spi" },
> > > > >         { .compatible = "ti,dm6441-spi" },
> > > > >         { .compatible = "ti,da830-spi" },
> > > > >         { }
> > > > >  };
> > > > > +#endif
> > > > >
> > > > >  U_BOOT_DRIVER(davinci_spi) = {
> > > > >         .name = "davinci_spi",
> > > > >         .id = UCLASS_SPI,
> > > > > +#if CONFIG_IS_ENABLED(OF_CONTROL) && !CONFIG_IS_ENABLED(OF_PLATDATA)
> > > > >         .of_match = davinci_spi_ids,
> > > > > -       .ops = &davinci_spi_ops,
> > > > >         .ofdata_to_platdata = davinci_ofdata_to_platadata,
> > > > > -       .priv_auto_alloc_size = sizeof(struct davinci_spi_slave),
> > > > > +        .platdata_auto_alloc_size = sizeof(struct davinci_spi_platdata),
> > > > > +#endif
> > > > >         .probe = davinci_spi_probe,
> > > > > +       .ops = &davinci_spi_ops,
> > > > > +       .priv_auto_alloc_size = sizeof(struct davinci_spi_slave),
> > > > >  };
> > > > >  #endif
> > > > > diff --git a/include/dm/platform_data/spi_davinci.h b/include/dm/platform_data/spi_davinci.h
> > > > > new file mode 100644
> > > > > index 0000000000..fbc62c262a
> > > > > --- /dev/null
> > > > > +++ b/include/dm/platform_data/spi_davinci.h
> > > > > @@ -0,0 +1,15 @@
> > > > > +/*
> > > > > + * Copyright (C) 2018 Jagan Teki <jagan@amarulasolutions.com>
> > > > > + *
> > > > > + * SPDX-License-Identifier:    GPL-2.0+
> > > > > + */
> > > > > +
> > > > > +#ifndef __spi_davinci_h
> > > > > +#define __spi_davinci_h
> > > > > +
> > > > > +struct davinci_spi_platdata {
> > > > > +       struct davinci_spi_regs *regs;
> > > > > +       u8 num_cs;         /* total no. of CS available */
> > > > > +};
> > > > > +
> > > > > +#endif /* __spi_davinci_h */
> > > > > --
> > > > > 2.18.0.321.gffc6fa0e3
> > > > >

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

* [U-Boot] [PATCH 1/3] spi: davinci: Add platdata support
  2018-09-03 17:30 [U-Boot] [PATCH 1/3] spi: davinci: Add platdata support Jagan Teki
                   ` (2 preceding siblings ...)
  2018-09-03 22:21 ` [U-Boot] [PATCH 1/3] spi: davinci: Add platdata support Adam Ford
@ 2018-10-10  6:10 ` Jagan Teki
  3 siblings, 0 replies; 11+ messages in thread
From: Jagan Teki @ 2018-10-10  6:10 UTC (permalink / raw)
  To: u-boot

On Mon, Sep 3, 2018 at 11:00 PM Jagan Teki <jagan@amarulasolutions.com> wrote:
>
> Davanci spi driver has DM support already, this patch
> add support for platdata so-that SPL can use it for
> low foot-print.
>
> Signed-off-by: Jagan Teki <jagan@amarulasolutions.com>
> ---

Applied to u-boot-spi/master

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

* [U-Boot] [PATCH 2/3] board: da8xxevm: Add SPL DM for serial, spi
  2018-09-03 17:30 ` [U-Boot] [PATCH 2/3] board: da8xxevm: Add SPL DM for serial, spi Jagan Teki
  2018-10-01 21:58   ` Adam Ford
@ 2018-10-10  6:11   ` Jagan Teki
  1 sibling, 0 replies; 11+ messages in thread
From: Jagan Teki @ 2018-10-10  6:11 UTC (permalink / raw)
  To: u-boot

On Mon, Sep 3, 2018 at 11:00 PM Jagan Teki <jagan@amarulasolutions.com> wrote:
>
> This patch add SPL DM support for da8xxevm boards
> with SPL serial, SPI drivers supported via platdata.
>
> Cc: Adam Ford <aford173@gmail.com>
> Signed-off-by: Jagan Teki <jagan@amarulasolutions.com>
> ---

Applied to u-boot-spi/master

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

end of thread, other threads:[~2018-10-10  6:11 UTC | newest]

Thread overview: 11+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2018-09-03 17:30 [U-Boot] [PATCH 1/3] spi: davinci: Add platdata support Jagan Teki
2018-09-03 17:30 ` [U-Boot] [PATCH 2/3] board: da8xxevm: Add SPL DM for serial, spi Jagan Teki
2018-10-01 21:58   ` Adam Ford
2018-10-10  6:11   ` Jagan Teki
2018-09-03 17:30 ` [U-Boot] [PATCH 3/3] configs: omapl138_lcdk: Enable DM_SPI, DM_SPI_FLASH Jagan Teki
2018-09-03 22:21 ` [U-Boot] [PATCH 1/3] spi: davinci: Add platdata support Adam Ford
2018-09-03 22:22   ` Adam Ford
2018-10-01 12:54     ` Adam Ford
2018-10-01 21:57       ` Adam Ford
2018-10-07  1:39         ` Adam Ford
2018-10-10  6:10 ` Jagan Teki

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.