public inbox for u-boot@lists.denx.de
 help / color / mirror / Atom feed
From: Vignesh R <vigneshr@ti.com>
To: u-boot@lists.denx.de
Subject: [U-Boot] [PATCH v3 00/12] Convert davinci_spi to DM
Date: Wed, 1 Jun 2016 19:13:32 +0530	[thread overview]
Message-ID: <574EE684.50004@ti.com> (raw)
In-Reply-To: <1462360772-27542-1-git-send-email-vigneshr@ti.com>



On 05/04/2016 04:49 PM, Vignesh R wrote:
> 
> 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
> 

Gentle ping on the series...

> 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(-)
> 

-- 
Regards
Vignesh

      parent reply	other threads:[~2016-06-01 13:43 UTC|newest]

Thread overview: 34+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
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 [this message]

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=574EE684.50004@ti.com \
    --to=vigneshr@ti.com \
    --cc=u-boot@lists.denx.de \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox