All of lore.kernel.org
 help / color / mirror / Atom feed
From: jun.nie@linaro.org (Jun Nie)
To: linux-arm-kernel@lists.infradead.org
Subject: [PATCH v4 0/7] Basic support to ZTE ZX296702
Date: Thu, 07 May 2015 09:34:22 +0800	[thread overview]
Message-ID: <554AC11E.2030800@linaro.org> (raw)
In-Reply-To: <1430212691-16009-1-git-send-email-jun.nie@linaro.org>

On 2015?04?28? 17:18, Jun Nie wrote:
> Rebase patches of v2 to 4.0-rc1. Ready for merge.

Hi Arnd,

Do you see any issue in this patch set? Or could you help drive merge? 
Thank you very much!

Jun

> Change in v4 vs v3: Fix minor defconfig issue.
>
> Jun Nie (7):
>    ARM: zx: add basic support for ZTE ZX296702
>    MAINTAINERS: add entry for ARM ZTE architecture
>    ARM: zx: add low level debug support for zx296702
>    ARM: dts: zx: add an initial zx296702 dts and doc
>    clk: zx: add clock support to zx296702
>    ARM: zx: enable SMP and hotplug for zx296702
>    ARM: zx: Add basic defconfig support for ZX296702
>
>   Documentation/devicetree/bindings/arm/zte.txt      |  15 +
>   .../devicetree/bindings/clock/zx296702-clk.txt     |  35 ++
>   Documentation/devicetree/bindings/serial/pl011.txt |   2 +-
>   .../devicetree/bindings/vendor-prefixes.txt        |   1 +
>   MAINTAINERS                                        |   9 +
>   arch/arm/Kconfig                                   |   2 +
>   arch/arm/Kconfig.debug                             |  14 +
>   arch/arm/Makefile                                  |   1 +
>   arch/arm/boot/dts/Makefile                         |   1 +
>   arch/arm/boot/dts/zx296702-ad1.dts                 |  48 ++
>   arch/arm/boot/dts/zx296702.dtsi                    | 139 +++++
>   arch/arm/configs/zx_defconfig                      | 130 ++++
>   arch/arm/include/debug/pl01x.S                     |   7 +
>   arch/arm/mach-zx/Kconfig                           |  18 +
>   arch/arm/mach-zx/Makefile                          |   2 +
>   arch/arm/mach-zx/core.h                            |  19 +
>   arch/arm/mach-zx/headsmp.S                         |  32 +
>   arch/arm/mach-zx/platsmp.c                         | 189 ++++++
>   arch/arm/mach-zx/zx296702.c                        |  31 +
>   drivers/clk/Makefile                               |   1 +
>   drivers/clk/zte/Makefile                           |   2 +
>   drivers/clk/zte/clk-pll.c                          | 180 ++++++
>   drivers/clk/zte/clk-zx296702.c                     | 658 +++++++++++++++++++++
>   drivers/clk/zte/clk.h                              |  30 +
>   include/dt-bindings/clock/zx296702-clock.h         | 162 +++++
>   25 files changed, 1727 insertions(+), 1 deletion(-)
>   create mode 100644 Documentation/devicetree/bindings/arm/zte.txt
>   create mode 100644 Documentation/devicetree/bindings/clock/zx296702-clk.txt
>   create mode 100644 arch/arm/boot/dts/zx296702-ad1.dts
>   create mode 100644 arch/arm/boot/dts/zx296702.dtsi
>   create mode 100644 arch/arm/configs/zx_defconfig
>   create mode 100644 arch/arm/mach-zx/Kconfig
>   create mode 100644 arch/arm/mach-zx/Makefile
>   create mode 100644 arch/arm/mach-zx/core.h
>   create mode 100644 arch/arm/mach-zx/headsmp.S
>   create mode 100644 arch/arm/mach-zx/platsmp.c
>   create mode 100644 arch/arm/mach-zx/zx296702.c
>   create mode 100644 drivers/clk/zte/Makefile
>   create mode 100644 drivers/clk/zte/clk-pll.c
>   create mode 100644 drivers/clk/zte/clk-zx296702.c
>   create mode 100644 drivers/clk/zte/clk.h
>   create mode 100644 include/dt-bindings/clock/zx296702-clock.h
>

      parent reply	other threads:[~2015-05-07  1:34 UTC|newest]

Thread overview: 22+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2015-04-28  9:18 [PATCH v4 0/7] Basic support to ZTE ZX296702 Jun Nie
2015-04-28  9:18 ` [PATCH v4 1/7] ARM: zx: add basic support for " Jun Nie
2015-05-15 19:57   ` Arnd Bergmann
2015-05-16  6:59     ` Jun Nie
2015-04-28  9:18 ` [PATCH v4 2/7] MAINTAINERS: add entry for ARM ZTE architecture Jun Nie
2015-04-28  9:18 ` [PATCH v4 3/7] ARM: zx: add low level debug support for zx296702 Jun Nie
2015-04-28  9:18 ` [PATCH v4 4/7] ARM: dts: zx: add an initial zx296702 dts and doc Jun Nie
2015-05-15 19:59   ` Arnd Bergmann
2015-05-15 20:19     ` Arnd Bergmann
2015-05-16  7:05       ` Jun Nie
2015-05-16 13:14         ` Shawn Guo
2015-04-28  9:18 ` [PATCH v4 5/7] clk: zx: add clock support to zx296702 Jun Nie
2015-05-15 20:32   ` Arnd Bergmann
2015-05-16 13:07     ` Shawn Guo
2015-05-16 19:13       ` Arnd Bergmann
2015-05-18  1:18   ` Jun Nie
2015-05-25 10:04     ` Jun Nie
2015-05-28 22:16     ` Stephen Boyd
2015-04-28  9:18 ` [PATCH v4 6/7] ARM: zx: enable SMP and hotplug for zx296702 Jun Nie
2015-04-28  9:18 ` [PATCH v4 7/7] ARM: zx: Add basic defconfig support for ZX296702 Jun Nie
2015-05-15 20:03   ` Arnd Bergmann
2015-05-07  1:34 ` Jun Nie [this message]

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=554AC11E.2030800@linaro.org \
    --to=jun.nie@linaro.org \
    --cc=linux-arm-kernel@lists.infradead.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
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.