public inbox for u-boot@lists.denx.de
 help / color / mirror / Atom feed
* [U-Boot] [PATCH v3 00/12] Convert davinci_spi to DM
@ 2016-05-04 11:19 Vignesh R
  2016-05-04 11:19 ` [U-Boot] [PATCH v3 01/12] dm: core: implement dev_map_phsymem() Vignesh R
                   ` (13 more replies)
  0 siblings, 14 replies; 36+ messages in thread
From: Vignesh R @ 2016-05-04 11:19 UTC (permalink / raw)
  To: u-boot


This series converts davinci_spi driver to adapt to driver model
framework. And enables the driver on k2l, k2e, k2hk evms. Also,
added support for davinci_spi on k2g evm.

Tested on k2l, k2e, k2hk and k2g evms.

Rebased on top of v2016.05-rc3

Vignesh R (12):
  dm: core: implement dev_map_phsymem()
  spi: davinci_spi: Convert to driver to adapt to DM
  keystone2: spi: do not define DM_SPI and DM_SPI_FLASH for SPL build
  ARM: dts: keystone2: add SPI aliases for davinci SPI nodes
  ARM: dts: k2hk: Enable Davinci SPI controller
  defconfig: k2hk_evm_defconfig: enable SPI driver model
  ARM: dts: k2e: Enable Davinci SPI controller
  defconfig: k2e_evm_defconfig: enable SPI driver model
  ARM: dts: k2l: Enable Davinci SPI controller
  defconfig: k2l_evm_defconfig: enable SPI driver model
  ARM: dts: k2g: add support for Davinci SPI controller
  defconfig: k2g_evm_defconfig: enable SPI driver model

 arch/arm/dts/k2e-evm.dts             |   3 +-
 arch/arm/dts/k2g-evm.dts             |  24 +++
 arch/arm/dts/k2g.dtsi                |  47 +++++
 arch/arm/dts/k2hk-evm.dts            |   3 +-
 arch/arm/dts/k2l-evm.dts             |   3 +-
 arch/arm/dts/keystone.dtsi           |   3 +
 configs/k2e_evm_defconfig            |   2 +
 configs/k2g_evm_defconfig            |   2 +
 configs/k2hk_evm_defconfig           |   2 +
 configs/k2l_evm_defconfig            |   2 +
 drivers/core/device.c                |   6 +
 drivers/spi/davinci_spi.c            | 327 +++++++++++++++++++++++++----------
 include/configs/ti_armv7_keystone2.h |   4 +
 include/dm/device.h                  |   9 +
 14 files changed, 344 insertions(+), 93 deletions(-)

-- 
2.8.2

^ permalink raw reply	[flat|nested] 36+ messages in thread
* [U-Boot] [PATCH v6 02/12] spi: davinci_spi: Convert to driver to adapt to DM
@ 2016-06-16 22:10 Jagan Teki
  2016-06-17  4:51 ` Vignesh R
  0 siblings, 1 reply; 36+ messages in thread
From: Jagan Teki @ 2016-06-16 22:10 UTC (permalink / raw)
  To: u-boot

On Jun 16, 2016 4:12 PM, Vignesh R <vigneshr@ti.com> wrote:
>
>
>
> On Tuesday 24 May 2016 09:54 AM, Vignesh R wrote: 
> > Convert davinci_spi driver so that it complies with SPI DM framework. 
> > 
> > Signed-off-by: Vignesh R <vigneshr@ti.com> 
> > --- 
> > 
> > v6: Fix retval on dev_map_physmem() failure. 
>
>
> Gentle ping....

OK, will work this weekend.

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

end of thread, other threads:[~2016-06-17  4:51 UTC | newest]

Thread overview: 36+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2016-05-04 11:19 [U-Boot] [PATCH v3 00/12] Convert davinci_spi to DM Vignesh R
2016-05-04 11:19 ` [U-Boot] [PATCH v3 01/12] dm: core: implement dev_map_phsymem() Vignesh R
2016-05-05 17:44   ` Jagan Teki
2016-05-06  3:58   ` [U-Boot] [PATCH v4] " Vignesh R
2016-05-06 15:30     ` Jagan Teki
2016-05-06 15:46       ` R, Vignesh
2016-05-06 16:30         ` Jagan Teki
2016-05-09  4:09           ` Vignesh R
2016-05-14 19:34   ` [U-Boot] [PATCH v3 01/12] " Simon Glass
2016-05-16  9:18     ` Vignesh R
2016-05-16  9:16   ` [U-Boot] [PATCH v5] dm: core: implement dev_map_physmem() Vignesh R
2016-05-19  4:02     ` Simon Glass
2016-05-04 11:19 ` [U-Boot] [PATCH v3 02/12] spi: davinci_spi: Convert to driver to adapt to DM Vignesh R
2016-05-06 17:49   ` Tom Rini
2016-05-16  9:38   ` [U-Boot] [PATCH v4 " Vignesh R
2016-05-20 15:23     ` Simon Glass
2016-05-20  5:01   ` [U-Boot] [PATCH v5 " Vignesh R
2016-05-20 15:24     ` Simon Glass
2016-05-24  4:26       ` Vignesh R
2016-05-24  4:24   ` [U-Boot] [PATCH v6 " Vignesh R
2016-06-16 10:42     ` Vignesh R
2016-06-16 23:29     ` Simon Glass
2016-05-04 11:19 ` [U-Boot] [PATCH v3 03/12] keystone2: spi: do not define DM_SPI and DM_SPI_FLASH for SPL build Vignesh R
2016-05-04 11:19 ` [U-Boot] [PATCH v3 04/12] ARM: dts: keystone2: add SPI aliases for davinci SPI nodes Vignesh R
2016-05-04 11:19 ` [U-Boot] [PATCH v3 05/12] ARM: dts: k2hk: Enable Davinci SPI controller Vignesh R
2016-05-04 11:19 ` [U-Boot] [PATCH v3 06/12] defconfig: k2hk_evm_defconfig: enable SPI driver model Vignesh R
2016-05-04 11:19 ` [U-Boot] [PATCH v3 07/12] ARM: dts: k2e: Enable Davinci SPI controller Vignesh R
2016-05-04 11:19 ` [U-Boot] [PATCH v3 08/12] defconfig: k2e_evm_defconfig: enable SPI driver model Vignesh R
2016-05-04 11:19 ` [U-Boot] [PATCH v3 09/12] ARM: dts: k2l: Enable Davinci SPI controller Vignesh R
2016-05-04 11:19 ` [U-Boot] [PATCH v3 10/12] defconfig: k2l_evm_defconfig: enable SPI driver model Vignesh R
2016-05-04 11:19 ` [U-Boot] [PATCH v3 11/12] ARM: dts: k2g: add support for Davinci SPI controller Vignesh R
2016-05-04 11:19 ` [U-Boot] [PATCH v3 12/12] defconfig: k2g_evm_defconfig: enable SPI driver model Vignesh R
2016-05-05 18:02 ` [U-Boot] [PATCH v3 00/12] Convert davinci_spi to DM Jagan Teki
2016-06-01 13:43 ` Vignesh R
  -- strict thread matches above, loose matches on Subject: below --
2016-06-16 22:10 [U-Boot] [PATCH v6 02/12] spi: davinci_spi: Convert to driver to adapt " Jagan Teki
2016-06-17  4:51 ` Vignesh R

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox