All of lore.kernel.org
 help / color / mirror / Atom feed
* [GIT PULL 1/3] DaVinci SoC updates for v4.18
@ 2018-05-17 13:08 Sekhar Nori
  2018-05-17 13:08 ` [GIT PULL 2/3] DaVinci device-tree " Sekhar Nori
                   ` (2 more replies)
  0 siblings, 3 replies; 6+ messages in thread
From: Sekhar Nori @ 2018-05-17 13:08 UTC (permalink / raw)
  To: linux-arm-kernel

The following changes since commit 60cc43fc888428bb2f18f08997432d426a243338:

  Linux 4.17-rc1 (2018-04-15 18:24:20 -0700)

are available in the Git repository at:

  git://git.kernel.org/pub/scm/linux/kernel/git/nsekhar/linux-davinci.git tags/davinci-for-v4.18/soc

for you to fetch changes up to ccfadbb759bed3cc40336e2c486e619e3bf8590b:

  Merge branch 'v4.18/nand-cs-simplification' into v4.18/soc (2018-05-02 15:04:15 +0530)

----------------------------------------------------------------
DaVinci SoC support updates for v4.18

Mainly contains patches to move NAND chipselect to platform data
(currently platform device id is being used). These patches have
been acked by NAND maintainer and because of the driver dependency
an immutable branch has been provided to Boris.

The other patch is to remove an unnecessary postcore_initcall() on
DM644x which is needed for common clock framework conversion.

----------------------------------------------------------------
Bartosz Golaszewski (12):
      mtd: rawnand: davinci: store the core chipselect number in platform data
      ARM: davinci: da830-evm: specify the chipselect in davinci_nand_pdata
      ARM: davinci: da850-evm: specify the chipselect in davinci_nand_pdata
      ARM: davinci: dm355-evm: specify the chipselect in davinci_nand_pdata
      ARM: davinci: dm355-leopard: specify the chipselect in davinci_nand_pdata
      ARM: davinci: dm365-evm: specify the chipselect in davinci_nand_pdata
      ARM: davinci: dm644x-evm: specify the chipselect in davinci_nand_pdata
      ARM: davinci: mityomapl138: specify the chipselect in davinci_nand_pdata
      ARM: davinci: dm646x-evm: specify the chipselect in davinci_nand_pdata
      ARM: davinci: neuros-osd2: specify the chipselect in davinci_nand_pdata
      mtd: rawnand: davinci: stop using pdev->id as chipselect
      ARM: davinci: aemif: stop using pdev->id as nand chipselect

Sekhar Nori (2):
      ARM: davinci: dm644x: remove unnecessary postcore_initcall()
      Merge branch 'v4.18/nand-cs-simplification' into v4.18/soc

 arch/arm/mach-davinci/aemif.c               |  8 ++++----
 arch/arm/mach-davinci/board-da830-evm.c     |  1 +
 arch/arm/mach-davinci/board-da850-evm.c     |  1 +
 arch/arm/mach-davinci/board-dm355-evm.c     |  1 +
 arch/arm/mach-davinci/board-dm355-leopard.c |  1 +
 arch/arm/mach-davinci/board-dm365-evm.c     |  1 +
 arch/arm/mach-davinci/board-dm644x-evm.c    |  3 +++
 arch/arm/mach-davinci/board-dm646x-evm.c    |  1 +
 arch/arm/mach-davinci/board-mityomapl138.c  |  1 +
 arch/arm/mach-davinci/board-neuros-osd2.c   |  3 +++
 arch/arm/mach-davinci/board-sffsdr.c        |  2 ++
 arch/arm/mach-davinci/davinci.h             |  1 +
 arch/arm/mach-davinci/dm644x.c              | 13 +++----------
 drivers/mtd/nand/raw/davinci_nand.c         |  6 +++---
 include/linux/platform_data/mtd-davinci.h   | 10 ++++++++++
 15 files changed, 36 insertions(+), 17 deletions(-)

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

* [GIT PULL 2/3] DaVinci device-tree updates for v4.18
  2018-05-17 13:08 [GIT PULL 1/3] DaVinci SoC updates for v4.18 Sekhar Nori
@ 2018-05-17 13:08 ` Sekhar Nori
  2018-05-25 11:59   ` Olof Johansson
  2018-05-17 13:08 ` [GIT PULL 3/3] DaVinci defconfig " Sekhar Nori
  2018-05-25 11:58 ` [GIT PULL 1/3] DaVinci SoC " Olof Johansson
  2 siblings, 1 reply; 6+ messages in thread
From: Sekhar Nori @ 2018-05-17 13:08 UTC (permalink / raw)
  To: linux-arm-kernel

The following changes since commit 60cc43fc888428bb2f18f08997432d426a243338:

  Linux 4.17-rc1 (2018-04-15 18:24:20 -0700)

are available in the Git repository at:

  git://git.kernel.org/pub/scm/linux/kernel/git/nsekhar/linux-davinci.git tags/davinci-for-v4.18/dt

for you to fetch changes up to fe9d2a40d995dc1da042a4fcd7813239d063554d:

  ARM: dts: da850-evm: add WP and CD to MMC (2018-05-16 16:36:51 +0530)

----------------------------------------------------------------
DaVinci device-tree updates for v4.18

* DA850 EVM gains USB support, SD card write-protect, card detect
  and some clean-up
* Support for gpio-ranges makes using gpios from DT much easier
* Lego EV3 clean-up

----------------------------------------------------------------
Adam Ford (3):
      ARM: dts: da850-evm: Enable usb_phy, usb0 and usb1
      ARM: dts: da850-evm: use phandles to extend nodes
      ARM: dts: da850-evm: add WP and CD to MMC

David Lechner (2):
      ARM: dts: da850: use gpio-ranges
      ARM: dts: da850-lego-ev3: remove unnecessary gpio-keys properties

 arch/arm/boot/dts/da850-evm.dts      | 298 +++++++++++++++++++----------------
 arch/arm/boot/dts/da850-lego-ev3.dts |  83 +---------
 arch/arm/boot/dts/da850.dtsi         | 154 ++++++++++++++++++
 3 files changed, 319 insertions(+), 216 deletions(-)

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

* [GIT PULL 3/3] DaVinci defconfig updates for v4.18
  2018-05-17 13:08 [GIT PULL 1/3] DaVinci SoC updates for v4.18 Sekhar Nori
  2018-05-17 13:08 ` [GIT PULL 2/3] DaVinci device-tree " Sekhar Nori
@ 2018-05-17 13:08 ` Sekhar Nori
  2018-05-25 11:59   ` Olof Johansson
  2018-05-25 11:58 ` [GIT PULL 1/3] DaVinci SoC " Olof Johansson
  2 siblings, 1 reply; 6+ messages in thread
From: Sekhar Nori @ 2018-05-17 13:08 UTC (permalink / raw)
  To: linux-arm-kernel

The following changes since commit 60cc43fc888428bb2f18f08997432d426a243338:

  Linux 4.17-rc1 (2018-04-15 18:24:20 -0700)

are available in the Git repository at:

  git://git.kernel.org/pub/scm/linux/kernel/git/nsekhar/linux-davinci.git tags/davinci-for-v4.18/defconfig

for you to fetch changes up to e081c754ad4b8665364fcfb07b8bec5289f23dd8:

  ARM: davinci_all_defconfig: enable support for remoteproc drivers (2018-04-23 20:24:23 +0530)

----------------------------------------------------------------
Enable DA8XX remoteproc driver support in davinci_all_defconfig

----------------------------------------------------------------
Bartosz Golaszewski (1):
      ARM: davinci_all_defconfig: enable support for remoteproc drivers

 arch/arm/configs/davinci_all_defconfig | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

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

* [GIT PULL 1/3] DaVinci SoC updates for v4.18
  2018-05-17 13:08 [GIT PULL 1/3] DaVinci SoC updates for v4.18 Sekhar Nori
  2018-05-17 13:08 ` [GIT PULL 2/3] DaVinci device-tree " Sekhar Nori
  2018-05-17 13:08 ` [GIT PULL 3/3] DaVinci defconfig " Sekhar Nori
@ 2018-05-25 11:58 ` Olof Johansson
  2 siblings, 0 replies; 6+ messages in thread
From: Olof Johansson @ 2018-05-25 11:58 UTC (permalink / raw)
  To: linux-arm-kernel

On Thu, May 17, 2018 at 06:38:43PM +0530, Sekhar Nori wrote:
> The following changes since commit 60cc43fc888428bb2f18f08997432d426a243338:
> 
>   Linux 4.17-rc1 (2018-04-15 18:24:20 -0700)
> 
> are available in the Git repository at:
> 
>   git://git.kernel.org/pub/scm/linux/kernel/git/nsekhar/linux-davinci.git tags/davinci-for-v4.18/soc
> 
> for you to fetch changes up to ccfadbb759bed3cc40336e2c486e619e3bf8590b:
> 
>   Merge branch 'v4.18/nand-cs-simplification' into v4.18/soc (2018-05-02 15:04:15 +0530)
> 
> ----------------------------------------------------------------
> DaVinci SoC support updates for v4.18
> 
> Mainly contains patches to move NAND chipselect to platform data
> (currently platform device id is being used). These patches have
> been acked by NAND maintainer and because of the driver dependency
> an immutable branch has been provided to Boris.
> 
> The other patch is to remove an unnecessary postcore_initcall() on
> DM644x which is needed for common clock framework conversion.

Merged, thanks.


-Olof

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

* [GIT PULL 2/3] DaVinci device-tree updates for v4.18
  2018-05-17 13:08 ` [GIT PULL 2/3] DaVinci device-tree " Sekhar Nori
@ 2018-05-25 11:59   ` Olof Johansson
  0 siblings, 0 replies; 6+ messages in thread
From: Olof Johansson @ 2018-05-25 11:59 UTC (permalink / raw)
  To: linux-arm-kernel

On Thu, May 17, 2018 at 06:38:44PM +0530, Sekhar Nori wrote:
> The following changes since commit 60cc43fc888428bb2f18f08997432d426a243338:
> 
>   Linux 4.17-rc1 (2018-04-15 18:24:20 -0700)
> 
> are available in the Git repository at:
> 
>   git://git.kernel.org/pub/scm/linux/kernel/git/nsekhar/linux-davinci.git tags/davinci-for-v4.18/dt
> 
> for you to fetch changes up to fe9d2a40d995dc1da042a4fcd7813239d063554d:
> 
>   ARM: dts: da850-evm: add WP and CD to MMC (2018-05-16 16:36:51 +0530)
> 
> ----------------------------------------------------------------
> DaVinci device-tree updates for v4.18
> 
> * DA850 EVM gains USB support, SD card write-protect, card detect
>   and some clean-up
> * Support for gpio-ranges makes using gpios from DT much easier
> * Lego EV3 clean-up
> 
> ----------------------------------------------------------------
> Adam Ford (3):
>       ARM: dts: da850-evm: Enable usb_phy, usb0 and usb1
>       ARM: dts: da850-evm: use phandles to extend nodes
>       ARM: dts: da850-evm: add WP and CD to MMC
> 
> David Lechner (2):
>       ARM: dts: da850: use gpio-ranges
>       ARM: dts: da850-lego-ev3: remove unnecessary gpio-keys properties

Merged, thanks!

-Olof

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

* [GIT PULL 3/3] DaVinci defconfig updates for v4.18
  2018-05-17 13:08 ` [GIT PULL 3/3] DaVinci defconfig " Sekhar Nori
@ 2018-05-25 11:59   ` Olof Johansson
  0 siblings, 0 replies; 6+ messages in thread
From: Olof Johansson @ 2018-05-25 11:59 UTC (permalink / raw)
  To: linux-arm-kernel

On Thu, May 17, 2018 at 06:38:45PM +0530, Sekhar Nori wrote:
> The following changes since commit 60cc43fc888428bb2f18f08997432d426a243338:
> 
>   Linux 4.17-rc1 (2018-04-15 18:24:20 -0700)
> 
> are available in the Git repository at:
> 
>   git://git.kernel.org/pub/scm/linux/kernel/git/nsekhar/linux-davinci.git tags/davinci-for-v4.18/defconfig
> 
> for you to fetch changes up to e081c754ad4b8665364fcfb07b8bec5289f23dd8:
> 
>   ARM: davinci_all_defconfig: enable support for remoteproc drivers (2018-04-23 20:24:23 +0530)
> 
> ----------------------------------------------------------------
> Enable DA8XX remoteproc driver support in davinci_all_defconfig

Merged, thanks!


-Olof

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

end of thread, other threads:[~2018-05-25 11:59 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2018-05-17 13:08 [GIT PULL 1/3] DaVinci SoC updates for v4.18 Sekhar Nori
2018-05-17 13:08 ` [GIT PULL 2/3] DaVinci device-tree " Sekhar Nori
2018-05-25 11:59   ` Olof Johansson
2018-05-17 13:08 ` [GIT PULL 3/3] DaVinci defconfig " Sekhar Nori
2018-05-25 11:59   ` Olof Johansson
2018-05-25 11:58 ` [GIT PULL 1/3] DaVinci SoC " Olof Johansson

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.