mbox

[U-Boot] Pull request: u-boot-spi/master

Message ID 1468078216-16061-1-git-send-email-jteki@openedev.com
State Accepted
Delegated to: Tom Rini
Headers show

Pull-request

git://git.denx.de/u-boot-spi.git master

Message

Jagan Teki July 9, 2016, 3:30 p.m. UTC
Hi Tom,

Please take this series.

thanks!
Jagan.

The following changes since commit e8009beff6d5c55c1bf1ae8184791f167e6378b0:

  Merge git://git.denx.de/u-boot-arc (2016-07-04 11:46:21 -0400)

are available in the git repository at:

  git://git.denx.de/u-boot-spi.git master

for you to fetch changes up to 96907c0fe50a856f66f60ade68864a2d7949bf15:

  dm: spi: Read default speed and mode values from DT (2016-07-09 20:16:34 +0530)

----------------------------------------------------------------
Anatolij Gustschin (1):
      spi: spi-uclass: fix typo in debug output

Vignesh R (18):
      dm: core: implement dev_map_physmem()
      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
      spi: cadence_qspi_apb: Support 32 bit AHB address
      spi: cadence_quadspi: Enable QUAD mode based on DT data
      ARM: dts: K2G: Add support for QSPI controller
      defconfig: k2g_evm_defconfig: Enable Cadence QSPI controller
      ARM: dts: dra7x: Support QSPI MODE-0 operation at 64MHz
      dm: spi: Read default speed and mode values from DT

 arch/arm/dts/dra7-evm.dts            |   6 +-
 arch/arm/dts/dra72-evm.dts           |   6 +-
 arch/arm/dts/k2e-evm.dts             |   3 +-
 arch/arm/dts/k2g-evm.dts             |  69 ++++++++
 arch/arm/dts/k2g.dtsi                |  61 +++++++
 arch/arm/dts/k2hk-evm.dts            |   3 +-
 arch/arm/dts/k2l-evm.dts             |   3 +-
 arch/arm/dts/keystone.dtsi           |   3 +
 cmd/sf.c                             |   2 +
 common/env_sf.c                      |   8 +-
 configs/k2e_evm_defconfig            |   2 +
 configs/k2g_evm_defconfig            |   4 +
 configs/k2hk_evm_defconfig           |   2 +
 configs/k2l_evm_defconfig            |   2 +
 drivers/core/device.c                |  11 ++
 drivers/spi/cadence_qspi.c           |   3 +-
 drivers/spi/cadence_qspi.h           |   2 +-
 drivers/spi/cadence_qspi_apb.c       |  15 +-
 drivers/spi/davinci_spi.c            | 329 +++++++++++++++++++++++++----------
 drivers/spi/spi-uclass.c             |  10 +-
 include/configs/k2g_evm.h            |   6 +
 include/configs/ti_armv7_keystone2.h |   4 +
 include/dm/device.h                  |  13 ++
 23 files changed, 450 insertions(+), 117 deletions(-)

Comments

Tom Rini July 9, 2016, 4:06 p.m. UTC | #1
On Sat, Jul 09, 2016 at 09:00:16PM +0530, Jagan Teki wrote:

> Hi Tom,
> 
> Please take this series.

We are about 2 days from release.  None of these changes are clearly 
critical for release bug fixes.  I will pick this up after the release,
thanks.

> 
> thanks!
> Jagan.
> 
> The following changes since commit e8009beff6d5c55c1bf1ae8184791f167e6378b0:
> 
>   Merge git://git.denx.de/u-boot-arc (2016-07-04 11:46:21 -0400)
> 
> are available in the git repository at:
> 
>   git://git.denx.de/u-boot-spi.git master
> 
> for you to fetch changes up to 96907c0fe50a856f66f60ade68864a2d7949bf15:
> 
>   dm: spi: Read default speed and mode values from DT (2016-07-09 20:16:34 +0530)
> 
> ----------------------------------------------------------------
> Anatolij Gustschin (1):
>       spi: spi-uclass: fix typo in debug output
> 
> Vignesh R (18):
>       dm: core: implement dev_map_physmem()
>       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
>       spi: cadence_qspi_apb: Support 32 bit AHB address
>       spi: cadence_quadspi: Enable QUAD mode based on DT data
>       ARM: dts: K2G: Add support for QSPI controller
>       defconfig: k2g_evm_defconfig: Enable Cadence QSPI controller
>       ARM: dts: dra7x: Support QSPI MODE-0 operation at 64MHz
>       dm: spi: Read default speed and mode values from DT
> 
>  arch/arm/dts/dra7-evm.dts            |   6 +-
>  arch/arm/dts/dra72-evm.dts           |   6 +-
>  arch/arm/dts/k2e-evm.dts             |   3 +-
>  arch/arm/dts/k2g-evm.dts             |  69 ++++++++
>  arch/arm/dts/k2g.dtsi                |  61 +++++++
>  arch/arm/dts/k2hk-evm.dts            |   3 +-
>  arch/arm/dts/k2l-evm.dts             |   3 +-
>  arch/arm/dts/keystone.dtsi           |   3 +
>  cmd/sf.c                             |   2 +
>  common/env_sf.c                      |   8 +-
>  configs/k2e_evm_defconfig            |   2 +
>  configs/k2g_evm_defconfig            |   4 +
>  configs/k2hk_evm_defconfig           |   2 +
>  configs/k2l_evm_defconfig            |   2 +
>  drivers/core/device.c                |  11 ++
>  drivers/spi/cadence_qspi.c           |   3 +-
>  drivers/spi/cadence_qspi.h           |   2 +-
>  drivers/spi/cadence_qspi_apb.c       |  15 +-
>  drivers/spi/davinci_spi.c            | 329 +++++++++++++++++++++++++----------
>  drivers/spi/spi-uclass.c             |  10 +-
>  include/configs/k2g_evm.h            |   6 +
>  include/configs/ti_armv7_keystone2.h |   4 +
>  include/dm/device.h                  |  13 ++
>  23 files changed, 450 insertions(+), 117 deletions(-)
Tom Rini July 12, 2016, 5:59 p.m. UTC | #2
On Sat, Jul 09, 2016 at 09:00:16PM +0530, Jagan Teki wrote:

> Hi Tom,
> 
> Please take this series.
> 
> thanks!
> Jagan.
> 
> The following changes since commit e8009beff6d5c55c1bf1ae8184791f167e6378b0:
> 
>   Merge git://git.denx.de/u-boot-arc (2016-07-04 11:46:21 -0400)
> 
> are available in the git repository at:
> 
>   git://git.denx.de/u-boot-spi.git master
> 
> for you to fetch changes up to 96907c0fe50a856f66f60ade68864a2d7949bf15:
> 
>   dm: spi: Read default speed and mode values from DT (2016-07-09 20:16:34 +0530)
> 

Applied to u-boot/master, thanks!