From: Lars Persson <lars.persson-VrBV9hrLPhE@public.gmane.org>
To: arm-DgEjT+Ai2ygdnm+yROfE0A@public.gmane.org,
linux-arm-kernel-IAPFreCvJWM7uuMidbF8XUB+6BGkLq7r@public.gmane.org,
devicetree-u79uwXL29TY76Z2rM5mHXA@public.gmane.org
Cc: robh+dt-DgEjT+Ai2ygdnm+yROfE0A@public.gmane.org,
pawel.moll-5wv7dgnIgG8@public.gmane.org,
mark.rutland-5wv7dgnIgG8@public.gmane.org,
ijc+devicetree-KcIKpvwj1kUDXYZnReoRVg@public.gmane.org,
galak-sgV2jX0FEOL9JmXXK+q4OQ@public.gmane.org,
linux-kernel-u79uwXL29TY76Z2rM5mHXA@public.gmane.org,
Lars Persson <larper-VrBV9hrLPhE@public.gmane.org>
Subject: [PATCH v3 0/6] arm: Add Artpec-6 SoC
Date: Thu, 11 Feb 2016 17:06:15 +0100 [thread overview]
Message-ID: <cover.1455205057.git.larper@axis.com> (raw)
Basic support for the Axis Artpec-6 ARM SoC. Timers, interrupts, UARTs and
ethernet are wired up.
Changes since v2:
- Create a syscon binding for the system controller.
- Clock patches split out to new patch series "clk: Add Artpec-6 SoC support".
Changes since v1:
- Corrected bindings for axis,artpec6-pll1-clock.
- Moved the uart aliases to the board dts.
- Kconfig cleanup.
- Added a device tree binding for the dma configuration.
- Added CONFIG_SYNOPSYS_DWC_ETH_QOS to multi_v7_defconfig.
- Added binding documentation for axis,artpec6-dev-board.
Lars Persson (6):
arm: add device-tree SoC bindings for Axis Artpec-6
arm: dts: add Artpec-6 SoC dtsi file
arm: dts: add Artpec-6 development board dts
arm: initial machine port for artpec-6 SoC
arm: multi_v7_defconfig: add MACH_ARTPEC6
arm: mach-artpec: add entry to MAINTAINERS
Documentation/devicetree/bindings/arm/axis.txt | 29 +++
MAINTAINERS | 10 ++
arch/arm/Kconfig | 2 +
arch/arm/Makefile | 1 +
arch/arm/boot/dts/Makefile | 2 +
arch/arm/boot/dts/artpec6-devboard.dts | 64 +++++++
arch/arm/boot/dts/artpec6.dtsi | 236 +++++++++++++++++++++++++
arch/arm/configs/multi_v7_defconfig | 3 +
arch/arm/mach-artpec/Kconfig | 20 +++
arch/arm/mach-artpec/Makefile | 1 +
arch/arm/mach-artpec/board-artpec6.c | 72 ++++++++
11 files changed, 440 insertions(+)
create mode 100644 Documentation/devicetree/bindings/arm/axis.txt
create mode 100644 arch/arm/boot/dts/artpec6-devboard.dts
create mode 100644 arch/arm/boot/dts/artpec6.dtsi
create mode 100644 arch/arm/mach-artpec/Kconfig
create mode 100644 arch/arm/mach-artpec/Makefile
create mode 100644 arch/arm/mach-artpec/board-artpec6.c
--
2.1.4
--
To unsubscribe from this list: send the line "unsubscribe devicetree" in
the body of a message to majordomo-u79uwXL29TY76Z2rM5mHXA@public.gmane.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
next reply other threads:[~2016-02-11 16:06 UTC|newest]
Thread overview: 11+ messages / expand[flat|nested] mbox.gz Atom feed top
2016-02-11 16:06 Lars Persson [this message]
2016-02-11 16:06 ` [PATCH v3 1/6] arm: add device-tree SoC bindings for Axis Artpec-6 Lars Persson
[not found] ` <0a38251ad8ad1895a1744f43a58f6b161676af09.1455205057.git.larper-VrBV9hrLPhE@public.gmane.org>
2016-02-12 16:40 ` Rob Herring
2016-02-11 16:06 ` [PATCH v3 2/6] arm: dts: add Artpec-6 SoC dtsi file Lars Persson
2016-02-25 0:29 ` Olof Johansson
2016-02-11 16:06 ` [PATCH v3 3/6] arm: dts: add Artpec-6 development board dts Lars Persson
2016-02-11 16:06 ` [PATCH v3 4/6] arm: initial machine port for artpec-6 SoC Lars Persson
2016-02-11 16:06 ` [PATCH v3 5/6] arm: multi_v7_defconfig: add MACH_ARTPEC6 Lars Persson
2016-02-11 16:06 ` [PATCH v3 6/6] arm: mach-artpec: add entry to MAINTAINERS Lars Persson
2016-02-11 16:20 ` [PATCH v3 0/6] arm: Add Artpec-6 SoC Arnd Bergmann
2016-02-24 22:00 ` Olof Johansson
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=cover.1455205057.git.larper@axis.com \
--to=lars.persson-vrbv9hrlphe@public.gmane.org \
--cc=arm-DgEjT+Ai2ygdnm+yROfE0A@public.gmane.org \
--cc=devicetree-u79uwXL29TY76Z2rM5mHXA@public.gmane.org \
--cc=galak-sgV2jX0FEOL9JmXXK+q4OQ@public.gmane.org \
--cc=ijc+devicetree-KcIKpvwj1kUDXYZnReoRVg@public.gmane.org \
--cc=larper-VrBV9hrLPhE@public.gmane.org \
--cc=linux-arm-kernel-IAPFreCvJWM7uuMidbF8XUB+6BGkLq7r@public.gmane.org \
--cc=linux-kernel-u79uwXL29TY76Z2rM5mHXA@public.gmane.org \
--cc=mark.rutland-5wv7dgnIgG8@public.gmane.org \
--cc=pawel.moll-5wv7dgnIgG8@public.gmane.org \
--cc=robh+dt-DgEjT+Ai2ygdnm+yROfE0A@public.gmane.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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).