All of lore.kernel.org
 help / color / mirror / Atom feed
* [GIT PULL 1/4] DaVinci cleanup for v4.10
@ 2016-11-04  6:25 Sekhar Nori
  2016-11-04  6:25 ` [GIT PULL 2/4] DaVinci SoC updates " Sekhar Nori
                   ` (3 more replies)
  0 siblings, 4 replies; 8+ messages in thread
From: Sekhar Nori @ 2016-11-04  6:25 UTC (permalink / raw)
  To: linux-arm-kernel

The following changes since commit 1001354ca34179f3db924eb66672442a173147dc:

  Linux 4.9-rc1 (2016-10-15 12:17:50 -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.10/cleanup

for you to fetch changes up to 766763dbdc1dca11deabdb00077a1c19e2803f0a:

  ARM: davinci: da8xx: Remove duplicated defines (2016-10-31 16:51:56 +0530)

----------------------------------------------------------------
Clean-up some unnecessary code from mach-davinci.

- Remove now unneeded dma resources where drivers
  are already converted to use the dma_slave_map[]
  structure.

- Remove some duplicated defines related to USB support.

----------------------------------------------------------------
Alexandre Bailon (1):
      ARM: davinci: da8xx: Remove duplicated defines

Peter Ujfalusi (4):
      ARM: davinci: devices-da8xx: Remove DMA resources for MMC and SPI
      ARM: davinci: devices: Remove DMA resources for MMC
      ARM: davinci: dm355: Remove DMA resources for SPI
      ARM: davinci: dm365: Remove DMA resources for SPI

 arch/arm/mach-davinci/board-da830-evm.c     |  5 +++--
 arch/arm/mach-davinci/board-omapl138-hawk.c |  3 ++-
 arch/arm/mach-davinci/devices-da8xx.c       | 29 -----------------------------
 arch/arm/mach-davinci/devices.c             |  3 ---
 arch/arm/mach-davinci/dm355.c               |  8 --------
 arch/arm/mach-davinci/dm365.c               |  8 --------
 include/linux/platform_data/usb-davinci.h   | 23 -----------------------
 7 files changed, 5 insertions(+), 74 deletions(-)

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

* [GIT PULL 2/4] DaVinci SoC updates for v4.10
  2016-11-04  6:25 [GIT PULL 1/4] DaVinci cleanup for v4.10 Sekhar Nori
@ 2016-11-04  6:25 ` Sekhar Nori
  2016-11-08 20:23   ` Olof Johansson
  2016-11-04  6:25 ` [GIT PULL 3/4] DaVinci device-tree " Sekhar Nori
                   ` (2 subsequent siblings)
  3 siblings, 1 reply; 8+ messages in thread
From: Sekhar Nori @ 2016-11-04  6:25 UTC (permalink / raw)
  To: linux-arm-kernel

The following changes since commit 766763dbdc1dca11deabdb00077a1c19e2803f0a:

  ARM: davinci: da8xx: Remove duplicated defines (2016-10-31 16:51:56 +0530)

are available in the git repository at:

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

for you to fetch changes up to ced95ac0815501f47a6041548d70d8900400912d:

  ARM: davinci: da8xx: register USB PHY clocks in the DT file (2016-11-01 15:24:24 +0530)

----------------------------------------------------------------
DaVinci SoC support improvements mainly towards an effort to
get to working USB support.

- use CFGCHIP syscon device to access common registers

- define platform data and device tree nodes for newly
  introduced USB phy driver

- clock lookup and auxdata lookup for USB phy and also
  for LCDC (LCD controller)

----------------------------------------------------------------
Axel Haslam (2):
      ARM: davinci: da8xx: Add full regulator constraints for non-DT boot
      ARM: davinci: da8xx: register USB PHY clocks in the DT file

David Lechner (5):
      ARM: davinci: da8xx: Add CFGCHIP syscon platform device
      ARM: davinci: da8xx: Add USB PHY platform device
      ARM: davinci: da8xx: Add USB device names to clock lookup tables
      ARM: davinci: da8xx-dt: add OF_DEV_AUXDATA entry for USB phy
      ARM: davinci: da8xx: add usb phy clocks

Karl Beldan (1):
      ARM: davinci: da8xx-dt: add OF_DEV_AUXDATA entry for lcdc

 arch/arm/mach-davinci/board-da830-evm.c     |  55 +++---
 arch/arm/mach-davinci/board-da850-evm.c     |   4 +
 arch/arm/mach-davinci/board-mityomapl138.c  |   4 +
 arch/arm/mach-davinci/board-omapl138-hawk.c |  27 ++-
 arch/arm/mach-davinci/da830.c               |   4 +-
 arch/arm/mach-davinci/da850.c               |   4 +-
 arch/arm/mach-davinci/da8xx-dt.c            |  15 ++
 arch/arm/mach-davinci/devices-da8xx.c       |  28 +++
 arch/arm/mach-davinci/include/mach/da8xx.h  |   6 +
 arch/arm/mach-davinci/usb-da8xx.c           | 276 ++++++++++++++++++++++++++--
 10 files changed, 366 insertions(+), 57 deletions(-)

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

* [GIT PULL 3/4] DaVinci device-tree updates for v4.10
  2016-11-04  6:25 [GIT PULL 1/4] DaVinci cleanup for v4.10 Sekhar Nori
  2016-11-04  6:25 ` [GIT PULL 2/4] DaVinci SoC updates " Sekhar Nori
@ 2016-11-04  6:25 ` Sekhar Nori
  2016-11-08 20:23   ` Olof Johansson
  2016-11-04  6:25 ` [GIT PULL 4/4] DaVinci defconfig " Sekhar Nori
  2016-11-08 20:22 ` [GIT PULL 1/4] DaVinci cleanup " Olof Johansson
  3 siblings, 1 reply; 8+ messages in thread
From: Sekhar Nori @ 2016-11-04  6:25 UTC (permalink / raw)
  To: linux-arm-kernel

The following changes since commit 1001354ca34179f3db924eb66672442a173147dc:

  Linux 4.9-rc1 (2016-10-15 12:17:50 -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.10/dt

for you to fetch changes up to 1b499f255589204466d8f8ab26e6b577d7b5c88f:

  ARM: dts: da850: Add cfgchip syscon node (2016-11-01 15:11:10 +0530)

----------------------------------------------------------------
DaVinci device-tree source additions for
LCD, SPI and cfgchip syscon.

----------------------------------------------------------------
David Lechner (2):
      ARM: dts: da850: Add DMA to SPI0
      ARM: dts: da850: Add cfgchip syscon node

Karl Beldan (1):
      ARM: dts: da850: add a node for the LCD controller

 arch/arm/boot/dts/da850.dtsi | 40 ++++++++++++++++++++++++++++++++++++++++
 1 file changed, 40 insertions(+)

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

* [GIT PULL 4/4] DaVinci defconfig updates for v4.10
  2016-11-04  6:25 [GIT PULL 1/4] DaVinci cleanup for v4.10 Sekhar Nori
  2016-11-04  6:25 ` [GIT PULL 2/4] DaVinci SoC updates " Sekhar Nori
  2016-11-04  6:25 ` [GIT PULL 3/4] DaVinci device-tree " Sekhar Nori
@ 2016-11-04  6:25 ` Sekhar Nori
  2016-11-08 20:24   ` Olof Johansson
  2016-11-08 20:22 ` [GIT PULL 1/4] DaVinci cleanup " Olof Johansson
  3 siblings, 1 reply; 8+ messages in thread
From: Sekhar Nori @ 2016-11-04  6:25 UTC (permalink / raw)
  To: linux-arm-kernel

The following changes since commit 1001354ca34179f3db924eb66672442a173147dc:

  Linux 4.9-rc1 (2016-10-15 12:17:50 -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.10/defconfig

for you to fetch changes up to 6e9be8608771192851a3adf59f0ba9240e3f802c:

  ARM: davinci_all_defconfig: enable LED default-on trigger (2016-11-01 11:42:54 +0530)

----------------------------------------------------------------
Some updates to davinci_all_defconfig for MMC,
LCDC and GPIO/LEDs.

----------------------------------------------------------------
Bartosz Golaszewski (1):
      ARM: davinci_all_defconfig: enable LCDC DRM driver

David Lechner (3):
      ARM: davinci_all_defconfig: enable gpio poweroff driver
      ARM: davinci_all_defconfig: build MMC into kernel
      ARM: davinci_all_defconfig: enable LED default-on trigger

 arch/arm/configs/davinci_all_defconfig | 9 +++++++--
 1 file changed, 7 insertions(+), 2 deletions(-)

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

* [GIT PULL 1/4] DaVinci cleanup for v4.10
  2016-11-04  6:25 [GIT PULL 1/4] DaVinci cleanup for v4.10 Sekhar Nori
                   ` (2 preceding siblings ...)
  2016-11-04  6:25 ` [GIT PULL 4/4] DaVinci defconfig " Sekhar Nori
@ 2016-11-08 20:22 ` Olof Johansson
  3 siblings, 0 replies; 8+ messages in thread
From: Olof Johansson @ 2016-11-08 20:22 UTC (permalink / raw)
  To: linux-arm-kernel

On Fri, Nov 04, 2016 at 11:55:32AM +0530, Sekhar Nori wrote:
> The following changes since commit 1001354ca34179f3db924eb66672442a173147dc:
> 
>   Linux 4.9-rc1 (2016-10-15 12:17:50 -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.10/cleanup
> 
> for you to fetch changes up to 766763dbdc1dca11deabdb00077a1c19e2803f0a:
> 
>   ARM: davinci: da8xx: Remove duplicated defines (2016-10-31 16:51:56 +0530)
> 
> ----------------------------------------------------------------
> Clean-up some unnecessary code from mach-davinci.
> 
> - Remove now unneeded dma resources where drivers
>   are already converted to use the dma_slave_map[]
>   structure.
> 
> - Remove some duplicated defines related to USB support.

We don't have a cleanup branch in our tree any more, but thanks for breaking
this out for us anyway! I've merged it into next/soc.


-Olof

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

* [GIT PULL 2/4] DaVinci SoC updates for v4.10
  2016-11-04  6:25 ` [GIT PULL 2/4] DaVinci SoC updates " Sekhar Nori
@ 2016-11-08 20:23   ` Olof Johansson
  0 siblings, 0 replies; 8+ messages in thread
From: Olof Johansson @ 2016-11-08 20:23 UTC (permalink / raw)
  To: linux-arm-kernel

On Fri, Nov 04, 2016 at 11:55:33AM +0530, Sekhar Nori wrote:
> The following changes since commit 766763dbdc1dca11deabdb00077a1c19e2803f0a:
> 
>   ARM: davinci: da8xx: Remove duplicated defines (2016-10-31 16:51:56 +0530)
> 
> are available in the git repository at:
> 
>   git://git.kernel.org/pub/scm/linux/kernel/git/nsekhar/linux-davinci.git tags/davinci-for-v4.10/soc
> 
> for you to fetch changes up to ced95ac0815501f47a6041548d70d8900400912d:
> 
>   ARM: davinci: da8xx: register USB PHY clocks in the DT file (2016-11-01 15:24:24 +0530)
> 
> ----------------------------------------------------------------
> DaVinci SoC support improvements mainly towards an effort to
> get to working USB support.
> 
> - use CFGCHIP syscon device to access common registers
> 
> - define platform data and device tree nodes for newly
>   introduced USB phy driver
> 
> - clock lookup and auxdata lookup for USB phy and also
>   for LCDC (LCD controller)

Merged, thanks.


-Olof

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

* [GIT PULL 3/4] DaVinci device-tree updates for v4.10
  2016-11-04  6:25 ` [GIT PULL 3/4] DaVinci device-tree " Sekhar Nori
@ 2016-11-08 20:23   ` Olof Johansson
  0 siblings, 0 replies; 8+ messages in thread
From: Olof Johansson @ 2016-11-08 20:23 UTC (permalink / raw)
  To: linux-arm-kernel

On Fri, Nov 04, 2016 at 11:55:34AM +0530, Sekhar Nori wrote:
> The following changes since commit 1001354ca34179f3db924eb66672442a173147dc:
> 
>   Linux 4.9-rc1 (2016-10-15 12:17:50 -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.10/dt
> 
> for you to fetch changes up to 1b499f255589204466d8f8ab26e6b577d7b5c88f:
> 
>   ARM: dts: da850: Add cfgchip syscon node (2016-11-01 15:11:10 +0530)
> 
> ----------------------------------------------------------------
> DaVinci device-tree source additions for
> LCD, SPI and cfgchip syscon.

Merged, thanks!


-Olof

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

* [GIT PULL 4/4] DaVinci defconfig updates for v4.10
  2016-11-04  6:25 ` [GIT PULL 4/4] DaVinci defconfig " Sekhar Nori
@ 2016-11-08 20:24   ` Olof Johansson
  0 siblings, 0 replies; 8+ messages in thread
From: Olof Johansson @ 2016-11-08 20:24 UTC (permalink / raw)
  To: linux-arm-kernel

On Fri, Nov 04, 2016 at 11:55:35AM +0530, Sekhar Nori wrote:
> The following changes since commit 1001354ca34179f3db924eb66672442a173147dc:
> 
>   Linux 4.9-rc1 (2016-10-15 12:17:50 -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.10/defconfig
> 
> for you to fetch changes up to 6e9be8608771192851a3adf59f0ba9240e3f802c:
> 
>   ARM: davinci_all_defconfig: enable LED default-on trigger (2016-11-01 11:42:54 +0530)
> 
> ----------------------------------------------------------------
> Some updates to davinci_all_defconfig for MMC,
> LCDC and GPIO/LEDs.
> 
> ----------------------------------------------------------------
> Bartosz Golaszewski (1):
>       ARM: davinci_all_defconfig: enable LCDC DRM driver
> 
> David Lechner (3):
>       ARM: davinci_all_defconfig: enable gpio poweroff driver
>       ARM: davinci_all_defconfig: build MMC into kernel
>       ARM: davinci_all_defconfig: enable LED default-on trigger

Merged, thanks.


-Olof

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

end of thread, other threads:[~2016-11-08 20:24 UTC | newest]

Thread overview: 8+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2016-11-04  6:25 [GIT PULL 1/4] DaVinci cleanup for v4.10 Sekhar Nori
2016-11-04  6:25 ` [GIT PULL 2/4] DaVinci SoC updates " Sekhar Nori
2016-11-08 20:23   ` Olof Johansson
2016-11-04  6:25 ` [GIT PULL 3/4] DaVinci device-tree " Sekhar Nori
2016-11-08 20:23   ` Olof Johansson
2016-11-04  6:25 ` [GIT PULL 4/4] DaVinci defconfig " Sekhar Nori
2016-11-08 20:24   ` Olof Johansson
2016-11-08 20:22 ` [GIT PULL 1/4] DaVinci cleanup " 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.