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

The following changes since commit 8a9d088f66f84d7317b4adc64d3d3114f1ee8583:

  ARM: davinci: clk: add set_parent callback for mux clocks (2016-04-14 15:31:48 +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.7/soc-part2

for you to fetch changes up to 3f2a09d57bb12ca55f92209b3ef0c0684cdb20b0:

  ARM: davinci: da850: use clk->set_parent for async3 (2016-04-27 16:04:41 +0530)

----------------------------------------------------------------
These patches provide ability to add non-PSC
clocks to DaVinci clock framwork and are
required to support USB PHY clock setting from
USB PHY driver.

----------------------------------------------------------------
David Lechner (2):
      ARM: davinci: Move clock init after ioremap.
      ARM: davinci: da850: use clk->set_parent for async3

 arch/arm/mach-davinci/clock.c  |  2 +-
 arch/arm/mach-davinci/common.c |  6 ---
 arch/arm/mach-davinci/da830.c  |  2 +
 arch/arm/mach-davinci/da850.c  | 83 ++++++++++++++++++------------------------
 arch/arm/mach-davinci/dm355.c  |  1 +
 arch/arm/mach-davinci/dm365.c  |  1 +
 arch/arm/mach-davinci/dm644x.c |  1 +
 arch/arm/mach-davinci/dm646x.c |  1 +
 8 files changed, 42 insertions(+), 55 deletions(-)

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

* [GIT PULL 2/4] DaVinci DT updates for v4.7 (part 2)
  2016-04-29 12:07 [GIT PULL 1/4] DaVinci SoC updates for v4.7 (part 2) Sekhar Nori
@ 2016-04-29 12:07 ` Sekhar Nori
  2016-05-10 13:40   ` Arnd Bergmann
  2016-04-29 12:07 ` [GIT PULL 3/4] DaVinci defconfig updates for v4.7 Sekhar Nori
                   ` (2 subsequent siblings)
  3 siblings, 1 reply; 8+ messages in thread
From: Sekhar Nori @ 2016-04-29 12:07 UTC (permalink / raw)
  To: linux-arm-kernel

The following changes since commit 6c8f73592203b8611c6ba5d4c670c82a059ecf27:

  ARM: davinci: da8xx-dt: add OF_DEV_AUXDATA entry for i2c1 (2016-04-14 11:41:04 +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.7/dt-part2

for you to fetch changes up to c6d3b5dd8e6fd802a354590314df28d6024906d8:

  ARM: dts: da850: There are 101 interrupts. (2016-04-25 18:59:16 +0530)

----------------------------------------------------------------
Second set of DT updates for DaVinci
adding support for SPI0 and some low
priority fixes for ethernet and interrupt
controller.

----------------------------------------------------------------
David Lechner (4):
      ARM: dts: da850: add spi0 to device tree
      ARM: davinci: da8xx-dt: Add spi0 lookup for clock matching
      ARM: dts: da850: disable mdio and eth0 in da850.dtsi
      ARM: dts: da850: There are 101 interrupts.

 arch/arm/boot/dts/da850-enbw-cmc.dts |  6 ++++++
 arch/arm/boot/dts/da850.dtsi         | 28 ++++++++++++++++++++++++++--
 arch/arm/mach-davinci/da8xx-dt.c     |  1 +
 3 files changed, 33 insertions(+), 2 deletions(-)

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

* [GIT PULL 3/4] DaVinci defconfig updates for v4.7
  2016-04-29 12:07 [GIT PULL 1/4] DaVinci SoC updates for v4.7 (part 2) Sekhar Nori
  2016-04-29 12:07 ` [GIT PULL 2/4] DaVinci DT " Sekhar Nori
@ 2016-04-29 12:07 ` Sekhar Nori
  2016-05-10 12:04   ` Arnd Bergmann
  2016-04-29 12:07 ` [GIT PULL 4/4] DaVinci documentation update " Sekhar Nori
  2016-05-09 13:59 ` [GIT PULL 1/4] DaVinci SoC updates for v4.7 (part 2) Arnd Bergmann
  3 siblings, 1 reply; 8+ messages in thread
From: Sekhar Nori @ 2016-04-29 12:07 UTC (permalink / raw)
  To: linux-arm-kernel

The following changes since commit f55532a0c0b8bb6148f4e07853b876ef73bc69ca:

  Linux 4.6-rc1 (2016-03-26 16:03:24 -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.7/defconfig

for you to fetch changes up to 8b182f395aa6e41973eff14619f3cdd36a6c67de:

  ARM: davinci_all_defconfig: enable SPI and NOR as modules (2016-04-25 18:37:57 +0530)

----------------------------------------------------------------
Some defconfig updates to support systemd
based filesystems, SPI NOR and GPIO sysfs
entries.

----------------------------------------------------------------
Kevin Hilman (1):
      ARM: davinci_all_defconfig: enable SPI and NOR as modules

Sekhar Nori (2):
      ARM: davinci_all_defconfig: enable GPIO_SYSFS
      ARM: davinci_all_defconfig: support systemd

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

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

* [GIT PULL 4/4] DaVinci documentation update for v4.7
  2016-04-29 12:07 [GIT PULL 1/4] DaVinci SoC updates for v4.7 (part 2) Sekhar Nori
  2016-04-29 12:07 ` [GIT PULL 2/4] DaVinci DT " Sekhar Nori
  2016-04-29 12:07 ` [GIT PULL 3/4] DaVinci defconfig updates for v4.7 Sekhar Nori
@ 2016-04-29 12:07 ` Sekhar Nori
  2016-05-09 14:10   ` Arnd Bergmann
  2016-05-09 13:59 ` [GIT PULL 1/4] DaVinci SoC updates for v4.7 (part 2) Arnd Bergmann
  3 siblings, 1 reply; 8+ messages in thread
From: Sekhar Nori @ 2016-04-29 12:07 UTC (permalink / raw)
  To: linux-arm-kernel

The following changes since commit f55532a0c0b8bb6148f4e07853b876ef73bc69ca:

  Linux 4.6-rc1 (2016-03-26 16:03:24 -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.7/doc

for you to fetch changes up to 42c031dfaaadc48d0e7a8484b5ea383fe6054de0:

  MAINTAINERS: fix stale TI DaVinci entries (2016-04-25 18:17:13 +0530)

----------------------------------------------------------------
MAINTAINERS file update to fix some
stale entries.

----------------------------------------------------------------
Sekhar Nori (1):
      MAINTAINERS: fix stale TI DaVinci entries

 MAINTAINERS | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

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

* [GIT PULL 1/4] DaVinci SoC updates for v4.7 (part 2)
  2016-04-29 12:07 [GIT PULL 1/4] DaVinci SoC updates for v4.7 (part 2) Sekhar Nori
                   ` (2 preceding siblings ...)
  2016-04-29 12:07 ` [GIT PULL 4/4] DaVinci documentation update " Sekhar Nori
@ 2016-05-09 13:59 ` Arnd Bergmann
  3 siblings, 0 replies; 8+ messages in thread
From: Arnd Bergmann @ 2016-05-09 13:59 UTC (permalink / raw)
  To: linux-arm-kernel

On Friday 29 April 2016 17:37:04 Sekhar Nori wrote:
> These patches provide ability to add non-PSC
> clocks to DaVinci clock framwork and are
> required to support USB PHY clock setting from
> USB PHY driver.
> 

Merged into next/soc, thanks!

	Arnd

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

* [GIT PULL 4/4] DaVinci documentation update for v4.7
  2016-04-29 12:07 ` [GIT PULL 4/4] DaVinci documentation update " Sekhar Nori
@ 2016-05-09 14:10   ` Arnd Bergmann
  0 siblings, 0 replies; 8+ messages in thread
From: Arnd Bergmann @ 2016-05-09 14:10 UTC (permalink / raw)
  To: linux-arm-kernel

On Friday 29 April 2016 17:37:07 Sekhar Nori wrote:
> MAINTAINERS file update to fix some
> stale entries.
> 
> 

Merged into next/soc, thanks!

	Arnd

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

* [GIT PULL 3/4] DaVinci defconfig updates for v4.7
  2016-04-29 12:07 ` [GIT PULL 3/4] DaVinci defconfig updates for v4.7 Sekhar Nori
@ 2016-05-10 12:04   ` Arnd Bergmann
  0 siblings, 0 replies; 8+ messages in thread
From: Arnd Bergmann @ 2016-05-10 12:04 UTC (permalink / raw)
  To: linux-arm-kernel

On Friday 29 April 2016 17:37:06 Sekhar Nori wrote:
> Some defconfig updates to support systemd
> based filesystems, SPI NOR and GPIO sysfs
> entries.
> 

Merged into next/defconfig, thanks!

	Arnd

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

* [GIT PULL 2/4] DaVinci DT updates for v4.7 (part 2)
  2016-04-29 12:07 ` [GIT PULL 2/4] DaVinci DT " Sekhar Nori
@ 2016-05-10 13:40   ` Arnd Bergmann
  0 siblings, 0 replies; 8+ messages in thread
From: Arnd Bergmann @ 2016-05-10 13:40 UTC (permalink / raw)
  To: linux-arm-kernel

On Friday 29 April 2016 17:37:05 Sekhar Nori wrote:
> Second set of DT updates for DaVinci
> adding support for SPI0 and some low
> priority fixes for ethernet and interrupt
> controller.
> 

Pulled into next/dt, thanks!

	Arnd

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

end of thread, other threads:[~2016-05-10 13:40 UTC | newest]

Thread overview: 8+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2016-04-29 12:07 [GIT PULL 1/4] DaVinci SoC updates for v4.7 (part 2) Sekhar Nori
2016-04-29 12:07 ` [GIT PULL 2/4] DaVinci DT " Sekhar Nori
2016-05-10 13:40   ` Arnd Bergmann
2016-04-29 12:07 ` [GIT PULL 3/4] DaVinci defconfig updates for v4.7 Sekhar Nori
2016-05-10 12:04   ` Arnd Bergmann
2016-04-29 12:07 ` [GIT PULL 4/4] DaVinci documentation update " Sekhar Nori
2016-05-09 14:10   ` Arnd Bergmann
2016-05-09 13:59 ` [GIT PULL 1/4] DaVinci SoC updates for v4.7 (part 2) Arnd Bergmann

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.