All of lore.kernel.org
 help / color / mirror / Atom feed
From: Wan Zongshun <vw@iommu.org>
To: linux-arm-kernel@lists.infradead.org,
	Russell King <linux@armlinux.org.uk>,
	devicetree@vger.kernel.org
Cc: Arnd Bergmann <arnd@arndb.de>,
	Daniel Lezcano <daniel.lezcano@linaro.org>,
	Thomas Gleixner <tglx@linutronix.de>,
	linux-kernel@vger.kernel.org, Wan Zongshun <vw@iommu.org>
Subject: [PATCH 0/6] ARM: NUC900: Add NUC970 SoC support
Date: Sat, 25 Jun 2016 18:32:24 +0800	[thread overview]
Message-ID: <1466850744-21909-1-git-send-email-vw@iommu.org> (raw)

Hi,

This patch series added Nuvoton new SoC NUC970 development board
support, this nuc970 belongs to nuc900 series, but many features are
not compatible with old nuc900 SoCs like nuc910, nuc920.

Those patches are basing on old w90x900 codes, and are using standard
linux subsystem interface, such as dts, driver/clk, driver/clocksource
, driver/irqchip drivers.

The old w90x900 plat such as nuc910,nuc960 codes will also be changed
to new style according to nuc970 codes after those patches was accepted.

Wan Zongshun (6):
  ARM: NUC900: Add nuc970 machine support
  ARM: dts: nuc900: Add nuc970 dts files
  Clocksource: add nuc970 clocksource driver
  irqchip: add irqchip driver for nuc900
  clk: add Clock driver for nuc970
  nuc900: add nuc970 platform defconfig file

 .../devicetree/bindings/arm/nuvoton/nuc970.txt     |   30 +
 arch/arm/boot/dts/Makefile                         |    1 +
 arch/arm/boot/dts/nuc970-evb.dts                   |   20 +
 arch/arm/boot/dts/nuc970.dtsi                      |   93 ++
 arch/arm/configs/nuc970_defconfig                  | 1278 ++++++++++++++++++++
 arch/arm/mach-w90x900/Kconfig                      |   25 +
 arch/arm/mach-w90x900/Makefile                     |    3 +
 arch/arm/mach-w90x900/include/mach/irqs.h          |   69 ++
 .../mach-w90x900/include/mach/nuc970-regs-aic.h    |   53 +
 .../mach-w90x900/include/mach/nuc970-regs-gcr.h    |   56 +
 .../mach-w90x900/include/mach/nuc970-regs-timer.h  |   44 +
 arch/arm/mach-w90x900/mach-nuc970.c                |  144 +++
 drivers/clk/Makefile                               |    1 +
 drivers/clk/nuc900/Makefile                        |    6 +
 drivers/clk/nuc900/clk-apll.c                      |  168 +++
 drivers/clk/nuc900/clk-ccf.h                       |   53 +
 drivers/clk/nuc900/clk-nuc970.c                    |  920 ++++++++++++++
 drivers/clk/nuc900/clk-upll.c                      |   83 ++
 drivers/clocksource/Kconfig                        |    8 +
 drivers/clocksource/Makefile                       |    1 +
 drivers/clocksource/timer-nuc900.c                 |  207 ++++
 drivers/irqchip/Makefile                           |    1 +
 drivers/irqchip/irq-nuc900.c                       |  104 ++
 include/dt-bindings/clock/nuc970-clock.h           |  233 ++++
 24 files changed, 3601 insertions(+)
 create mode 100644 Documentation/devicetree/bindings/arm/nuvoton/nuc970.txt
 create mode 100644 arch/arm/boot/dts/nuc970-evb.dts
 create mode 100644 arch/arm/boot/dts/nuc970.dtsi
 create mode 100644 arch/arm/configs/nuc970_defconfig
 create mode 100644 arch/arm/mach-w90x900/include/mach/nuc970-regs-aic.h
 create mode 100644 arch/arm/mach-w90x900/include/mach/nuc970-regs-gcr.h
 create mode 100644 arch/arm/mach-w90x900/include/mach/nuc970-regs-timer.h
 create mode 100644 arch/arm/mach-w90x900/mach-nuc970.c
 create mode 100644 drivers/clk/nuc900/Makefile
 create mode 100644 drivers/clk/nuc900/clk-apll.c
 create mode 100644 drivers/clk/nuc900/clk-ccf.h
 create mode 100644 drivers/clk/nuc900/clk-nuc970.c
 create mode 100644 drivers/clk/nuc900/clk-upll.c
 create mode 100644 drivers/clocksource/timer-nuc900.c
 create mode 100644 drivers/irqchip/irq-nuc900.c
 create mode 100644 include/dt-bindings/clock/nuc970-clock.h

-- 
2.7.4

WARNING: multiple messages have this Message-ID (diff)
From: vw@iommu.org (Wan Zongshun)
To: linux-arm-kernel@lists.infradead.org
Subject: [PATCH 0/6] ARM: NUC900: Add NUC970 SoC support
Date: Sat, 25 Jun 2016 18:32:24 +0800	[thread overview]
Message-ID: <1466850744-21909-1-git-send-email-vw@iommu.org> (raw)

Hi,

This patch series added Nuvoton new SoC NUC970 development board
support, this nuc970 belongs to nuc900 series, but many features are
not compatible with old nuc900 SoCs like nuc910, nuc920.

Those patches are basing on old w90x900 codes, and are using standard
linux subsystem interface, such as dts, driver/clk, driver/clocksource
, driver/irqchip drivers.

The old w90x900 plat such as nuc910,nuc960 codes will also be changed
to new style according to nuc970 codes after those patches was accepted.

Wan Zongshun (6):
  ARM: NUC900: Add nuc970 machine support
  ARM: dts: nuc900: Add nuc970 dts files
  Clocksource: add nuc970 clocksource driver
  irqchip: add irqchip driver for nuc900
  clk: add Clock driver for nuc970
  nuc900: add nuc970 platform defconfig file

 .../devicetree/bindings/arm/nuvoton/nuc970.txt     |   30 +
 arch/arm/boot/dts/Makefile                         |    1 +
 arch/arm/boot/dts/nuc970-evb.dts                   |   20 +
 arch/arm/boot/dts/nuc970.dtsi                      |   93 ++
 arch/arm/configs/nuc970_defconfig                  | 1278 ++++++++++++++++++++
 arch/arm/mach-w90x900/Kconfig                      |   25 +
 arch/arm/mach-w90x900/Makefile                     |    3 +
 arch/arm/mach-w90x900/include/mach/irqs.h          |   69 ++
 .../mach-w90x900/include/mach/nuc970-regs-aic.h    |   53 +
 .../mach-w90x900/include/mach/nuc970-regs-gcr.h    |   56 +
 .../mach-w90x900/include/mach/nuc970-regs-timer.h  |   44 +
 arch/arm/mach-w90x900/mach-nuc970.c                |  144 +++
 drivers/clk/Makefile                               |    1 +
 drivers/clk/nuc900/Makefile                        |    6 +
 drivers/clk/nuc900/clk-apll.c                      |  168 +++
 drivers/clk/nuc900/clk-ccf.h                       |   53 +
 drivers/clk/nuc900/clk-nuc970.c                    |  920 ++++++++++++++
 drivers/clk/nuc900/clk-upll.c                      |   83 ++
 drivers/clocksource/Kconfig                        |    8 +
 drivers/clocksource/Makefile                       |    1 +
 drivers/clocksource/timer-nuc900.c                 |  207 ++++
 drivers/irqchip/Makefile                           |    1 +
 drivers/irqchip/irq-nuc900.c                       |  104 ++
 include/dt-bindings/clock/nuc970-clock.h           |  233 ++++
 24 files changed, 3601 insertions(+)
 create mode 100644 Documentation/devicetree/bindings/arm/nuvoton/nuc970.txt
 create mode 100644 arch/arm/boot/dts/nuc970-evb.dts
 create mode 100644 arch/arm/boot/dts/nuc970.dtsi
 create mode 100644 arch/arm/configs/nuc970_defconfig
 create mode 100644 arch/arm/mach-w90x900/include/mach/nuc970-regs-aic.h
 create mode 100644 arch/arm/mach-w90x900/include/mach/nuc970-regs-gcr.h
 create mode 100644 arch/arm/mach-w90x900/include/mach/nuc970-regs-timer.h
 create mode 100644 arch/arm/mach-w90x900/mach-nuc970.c
 create mode 100644 drivers/clk/nuc900/Makefile
 create mode 100644 drivers/clk/nuc900/clk-apll.c
 create mode 100644 drivers/clk/nuc900/clk-ccf.h
 create mode 100644 drivers/clk/nuc900/clk-nuc970.c
 create mode 100644 drivers/clk/nuc900/clk-upll.c
 create mode 100644 drivers/clocksource/timer-nuc900.c
 create mode 100644 drivers/irqchip/irq-nuc900.c
 create mode 100644 include/dt-bindings/clock/nuc970-clock.h

-- 
2.7.4

             reply	other threads:[~2016-06-25 10:32 UTC|newest]

Thread overview: 13+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2016-06-25 10:32 Wan Zongshun [this message]
2016-06-25 10:32 ` [PATCH 0/6] ARM: NUC900: Add NUC970 SoC support Wan Zongshun
2016-06-25 10:34 Wan Zongshun
2016-06-25 10:34 ` Wan Zongshun
2016-06-25 10:35 Wan Zongshun
2016-06-25 10:35 ` Wan Zongshun
2016-06-25 10:35 ` Wan Zongshun
2016-06-25 10:37 Wan Zongshun
2016-06-25 10:37 ` Wan Zongshun
2016-06-25 10:37 ` Wan Zongshun
2016-06-29 15:32 ` Arnd Bergmann
2016-06-29 15:32   ` Arnd Bergmann
2016-06-29 15:32   ` Arnd Bergmann

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=1466850744-21909-1-git-send-email-vw@iommu.org \
    --to=vw@iommu.org \
    --cc=arnd@arndb.de \
    --cc=daniel.lezcano@linaro.org \
    --cc=devicetree@vger.kernel.org \
    --cc=linux-arm-kernel@lists.infradead.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=linux@armlinux.org.uk \
    --cc=tglx@linutronix.de \
    /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.