All of lore.kernel.org
 help / color / mirror / Atom feed
* [GIT PULL 1/2] ZTE arm64 device tree changes for 4.11
@ 2017-01-29  4:33 Shawn Guo
  2017-01-29  4:33 ` [GIT PULL 2/2] ZTE PM domain driver support " Shawn Guo
  2017-01-30  5:16 ` [GIT PULL 1/2] ZTE arm64 device tree changes " Olof Johansson
  0 siblings, 2 replies; 4+ messages in thread
From: Shawn Guo @ 2017-01-29  4:33 UTC (permalink / raw)
  To: linux-arm-kernel

The following changes since commit 0c744ea4f77d72b3dcebb7a8f2684633ec79be88:

  Linux 4.10-rc2 (2017-01-01 14:31:53 -0800)

are available in the git repository at:

  git://git.kernel.org/pub/scm/linux/kernel/git/shawnguo/linux.git tags/zte-dt64-4.11

for you to fetch changes up to eb2e2a816834cab13311d627844d77bb22bb5787:

  arm64: dts: zx: support cpu-freq for zx296718 (2017-01-03 15:33:15 +0800)

----------------------------------------------------------------
ZTE arm64 device tree update for 4.11:
 - Enable cpufreq support for zx296718 by using new operating-points-v2
   bindings, so that it works with the generic cpufreq-dt driver.

----------------------------------------------------------------
Baoyou Xie (1):
      arm64: dts: zx: support cpu-freq for zx296718

 arch/arm64/boot/dts/zte/zx296718.dtsi | 39 +++++++++++++++++++++++++++++++++++
 1 file changed, 39 insertions(+)

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

* [GIT PULL 2/2] ZTE PM domain driver support for 4.11
  2017-01-29  4:33 [GIT PULL 1/2] ZTE arm64 device tree changes for 4.11 Shawn Guo
@ 2017-01-29  4:33 ` Shawn Guo
  2017-01-30  5:17   ` Olof Johansson
  2017-01-30  5:16 ` [GIT PULL 1/2] ZTE arm64 device tree changes " Olof Johansson
  1 sibling, 1 reply; 4+ messages in thread
From: Shawn Guo @ 2017-01-29  4:33 UTC (permalink / raw)
  To: linux-arm-kernel

The following changes since commit 0c744ea4f77d72b3dcebb7a8f2684633ec79be88:

  Linux 4.10-rc2 (2017-01-01 14:31:53 -0800)

are available in the git repository at:

  git://git.kernel.org/pub/scm/linux/kernel/git/shawnguo/linux.git tags/zte-pd-4.11

for you to fetch changes up to 3755584a91c1cb1e50dd24a456e2953fbd276adf:

  soc: zte: pm_domains: Add support for zx296718 (2017-01-11 16:21:14 +0800)

----------------------------------------------------------------
ZTE PM domain driver support for 4.11:
 - It includes a series which adds DT bindings and PM domain driver for
   PCU (Power Control Unit) block found on ZTE ZX2967 family SoC.

----------------------------------------------------------------
Baoyou Xie (5):
      dt-bindings: zte: add bindings document for zx2967 power domain controller
      MAINTAINERS: add zx2967 SoC drivers to ARM ZTE architecture
      soc: zte: Add header for PM domains specifiers
      soc: zte: pm_domains: Prepare for supporting ARMv8 zx2967 family
      soc: zte: pm_domains: Add support for zx296718

 .../devicetree/bindings/soc/zte/pd-2967xx.txt      |  19 +++
 MAINTAINERS                                        |   4 +
 drivers/soc/Kconfig                                |   1 +
 drivers/soc/Makefile                               |   1 +
 drivers/soc/zte/Kconfig                            |  13 ++
 drivers/soc/zte/Makefile                           |   5 +
 drivers/soc/zte/zx296718_pm_domains.c              | 182 +++++++++++++++++++++
 drivers/soc/zte/zx2967_pm_domains.c                | 143 ++++++++++++++++
 drivers/soc/zte/zx2967_pm_domains.h                |  44 +++++
 include/dt-bindings/soc/zte,pm_domains.h           |  24 +++
 10 files changed, 436 insertions(+)
 create mode 100644 Documentation/devicetree/bindings/soc/zte/pd-2967xx.txt
 create mode 100644 drivers/soc/zte/Kconfig
 create mode 100644 drivers/soc/zte/Makefile
 create mode 100644 drivers/soc/zte/zx296718_pm_domains.c
 create mode 100644 drivers/soc/zte/zx2967_pm_domains.c
 create mode 100644 drivers/soc/zte/zx2967_pm_domains.h
 create mode 100644 include/dt-bindings/soc/zte,pm_domains.h

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

* [GIT PULL 1/2] ZTE arm64 device tree changes for 4.11
  2017-01-29  4:33 [GIT PULL 1/2] ZTE arm64 device tree changes for 4.11 Shawn Guo
  2017-01-29  4:33 ` [GIT PULL 2/2] ZTE PM domain driver support " Shawn Guo
@ 2017-01-30  5:16 ` Olof Johansson
  1 sibling, 0 replies; 4+ messages in thread
From: Olof Johansson @ 2017-01-30  5:16 UTC (permalink / raw)
  To: linux-arm-kernel

On Sun, Jan 29, 2017 at 12:33:31PM +0800, Shawn Guo wrote:
> The following changes since commit 0c744ea4f77d72b3dcebb7a8f2684633ec79be88:
> 
>   Linux 4.10-rc2 (2017-01-01 14:31:53 -0800)
> 
> are available in the git repository at:
> 
>   git://git.kernel.org/pub/scm/linux/kernel/git/shawnguo/linux.git tags/zte-dt64-4.11
> 
> for you to fetch changes up to eb2e2a816834cab13311d627844d77bb22bb5787:
> 
>   arm64: dts: zx: support cpu-freq for zx296718 (2017-01-03 15:33:15 +0800)
> 
> ----------------------------------------------------------------
> ZTE arm64 device tree update for 4.11:
>  - Enable cpufreq support for zx296718 by using new operating-points-v2
>    bindings, so that it works with the generic cpufreq-dt driver.
> 
> ----------------------------------------------------------------
> Baoyou Xie (1):
>       arm64: dts: zx: support cpu-freq for zx296718

Merged, thanks.


-Olof

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

* [GIT PULL 2/2] ZTE PM domain driver support for 4.11
  2017-01-29  4:33 ` [GIT PULL 2/2] ZTE PM domain driver support " Shawn Guo
@ 2017-01-30  5:17   ` Olof Johansson
  0 siblings, 0 replies; 4+ messages in thread
From: Olof Johansson @ 2017-01-30  5:17 UTC (permalink / raw)
  To: linux-arm-kernel

On Sun, Jan 29, 2017 at 12:33:32PM +0800, Shawn Guo wrote:
> The following changes since commit 0c744ea4f77d72b3dcebb7a8f2684633ec79be88:
> 
>   Linux 4.10-rc2 (2017-01-01 14:31:53 -0800)
> 
> are available in the git repository at:
> 
>   git://git.kernel.org/pub/scm/linux/kernel/git/shawnguo/linux.git tags/zte-pd-4.11
> 
> for you to fetch changes up to 3755584a91c1cb1e50dd24a456e2953fbd276adf:
> 
>   soc: zte: pm_domains: Add support for zx296718 (2017-01-11 16:21:14 +0800)
> 
> ----------------------------------------------------------------
> ZTE PM domain driver support for 4.11:
>  - It includes a series which adds DT bindings and PM domain driver for
>    PCU (Power Control Unit) block found on ZTE ZX2967 family SoC.
> 
> ----------------------------------------------------------------
> Baoyou Xie (5):
>       dt-bindings: zte: add bindings document for zx2967 power domain controller
>       MAINTAINERS: add zx2967 SoC drivers to ARM ZTE architecture
>       soc: zte: Add header for PM domains specifiers
>       soc: zte: pm_domains: Prepare for supporting ARMv8 zx2967 family
>       soc: zte: pm_domains: Add support for zx296718

Merged, thanks!


-Olof

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

end of thread, other threads:[~2017-01-30  5:17 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2017-01-29  4:33 [GIT PULL 1/2] ZTE arm64 device tree changes for 4.11 Shawn Guo
2017-01-29  4:33 ` [GIT PULL 2/2] ZTE PM domain driver support " Shawn Guo
2017-01-30  5:17   ` Olof Johansson
2017-01-30  5:16 ` [GIT PULL 1/2] ZTE arm64 device tree changes " 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.