From: maxime.ripard@free-electrons.com (Maxime Ripard)
To: linux-arm-kernel@lists.infradead.org
Subject: [PATCH 1/4] ARM: sunxi: Restructure sunxi dts/dtsi files
Date: Mon, 19 Nov 2012 16:22:08 +0100 [thread overview]
Message-ID: <50AA4EA0.7080309@free-electrons.com> (raw)
In-Reply-To: <1353323383-11827-1-git-send-email-sr@denx.de>
Le 19/11/2012 12:09, Stefan Roese a ?crit :
> For the new sun4i/Cubieboard (A10) support, lets re-strucure the
> sun5i dts files to make it more generic. Those are the new
> dts/dtsi files:
>
> sunxi.dtsi - Devices common to all Allwinner sunXi SoC's
> sun4i.dtsi - sun4i Devices, will include sunxi.dtsi
> sun5i.dtsi - sun5i Devices, will include sunxi.dtsi
> board.dts - will include either sun4i.dtsi or sun5i.dtsi
>
> Additionally the "duart" label in the olinuxino.dts is changed to
> "uart1".
>
> Signed-off-by: Stefan Roese <sr@denx.de>
> Cc: Maxime Ripard <maxime.ripard@free-electrons.com>
> Cc: Arnd Bergmann <arnd@arndb.de>
> ---
> arch/arm/boot/dts/sun5i-olinuxino.dts | 6 +++-
> arch/arm/boot/dts/sun5i.dtsi | 56 +----------------------------
> arch/arm/boot/dts/sunxi.dtsi | 66 +++++++++++++++++++++++++++++++++++
> 3 files changed, 72 insertions(+), 56 deletions(-)
> create mode 100644 arch/arm/boot/dts/sunxi.dtsi
>
> diff --git a/arch/arm/boot/dts/sun5i-olinuxino.dts b/arch/arm/boot/dts/sun5i-olinuxino.dts
> index 3b1cce3..d6ff889 100644
> --- a/arch/arm/boot/dts/sun5i-olinuxino.dts
> +++ b/arch/arm/boot/dts/sun5i-olinuxino.dts
> @@ -18,8 +18,12 @@
> model = "Olimex A13-Olinuxino";
> compatible = "olimex,a13-olinuxino", "allwinner,sun5i";
>
> + chosen {
> + bootargs = "earlyprintk console=ttyS0,115200";
> + };
> +
> soc {
> - duart: uart at 01c28400 {
> + uart1: uart at 01c28400 {
> status = "okay";
> };
> };
> diff --git a/arch/arm/boot/dts/sun5i.dtsi b/arch/arm/boot/dts/sun5i.dtsi
> index 4bedf3e..59a2d26 100644
> --- a/arch/arm/boot/dts/sun5i.dtsi
> +++ b/arch/arm/boot/dts/sun5i.dtsi
> @@ -11,64 +11,10 @@
> * http://www.gnu.org/copyleft/gpl.html
> */
>
> -/include/ "skeleton.dtsi"
> +/include/ "sunxi.dtsi"
>
> / {
> - interrupt-parent = <&intc>;
> -
> - cpus {
> - cpu at 0 {
> - compatible = "arm,cortex-a8";
> - };
> - };
> -
> - chosen {
> - bootargs = "earlyprintk console=ttyS0,115200";
> - };
> -
> memory {
> reg = <0x40000000 0x20000000>;
> };
> -
> - clocks {
> - #address-cells = <1>;
> - #size-cells = <0>;
> -
> - osc: oscillator {
> - #clock-cells = <0>;
> - compatible = "fixed-clock";
> - clock-frequency = <24000000>;
> - };
> - };
> -
> - soc {
> - compatible = "simple-bus";
> - #address-cells = <1>;
> - #size-cells = <1>;
> - reg = <0x01c20000 0x300000>;
> - ranges;
> -
> - timer at 01c20c00 {
> - compatible = "allwinner,sunxi-timer";
> - reg = <0x01c20c00 0x400>;
> - interrupts = <22>;
> - clocks = <&osc>;
> - };
> -
> - intc: interrupt-controller at 01c20400 {
> - compatible = "allwinner,sunxi-ic";
> - reg = <0x01c20400 0x400>;
> - interrupt-controller;
> - #interrupt-cells = <1>;
> - };
> -
> - uart1: uart at 01c28400 {
> - compatible = "ns8250";
> - reg = <0x01c28400 0x400>;
> - interrupts = <2>;
> - reg-shift = <2>;
> - clock-frequency = <24000000>;
> - status = "disabled";
> - };
> - };
> };
> diff --git a/arch/arm/boot/dts/sunxi.dtsi b/arch/arm/boot/dts/sunxi.dtsi
> new file mode 100644
> index 0000000..9e476de
> --- /dev/null
> +++ b/arch/arm/boot/dts/sunxi.dtsi
> @@ -0,0 +1,66 @@
> +/*
> + * Copyright 2012 Maxime Ripard
> + *
> + * Maxime Ripard <maxime.ripard@free-electrons.com>
> + *
> + * The code contained herein is licensed under the GNU General Public
> + * License. You may obtain a copy of the GNU General Public License
> + * Version 2 or later at the following locations:
> + *
> + * http://www.opensource.org/licenses/gpl-license.html
> + * http://www.gnu.org/copyleft/gpl.html
> + */
> +
> +/include/ "skeleton.dtsi"
> +
> +/ {
> + interrupt-parent = <&intc>;
> +
> + cpus {
> + cpu at 0 {
> + compatible = "arm,cortex-a8";
> + };
> + };
> +
> + clocks {
> + #address-cells = <1>;
> + #size-cells = <0>;
> +
> + osc: oscillator {
> + #clock-cells = <0>;
> + compatible = "fixed-clock";
> + clock-frequency = <24000000>;
> + };
> + };
> +
> + soc {
> + compatible = "simple-bus";
> + #address-cells = <1>;
> + #size-cells = <1>;
> + reg = <0x01c20000 0x300000>;
> + ranges;
> +
> + timer at 01c20c00 {
> + compatible = "allwinner,sunxi-timer";
> + reg = <0x01c20c00 0x400>;
> + interrupts = <22>;
> + clocks = <&osc>;
> + };
> +
> + intc: interrupt-controller at 01c20400 {
> + compatible = "allwinner,sunxi-ic";
> + reg = <0x01c20400 0x400>;
> + interrupt-controller;
> + #interrupt-cells = <1>;
> + };
> +
> + uart1: uart at 01c28400 {
> + compatible = "ns8250";
> + reg = <0x01c28400 0x400>;
> + interrupts = <2>;
> + reg-shift = <2>;
> + clock-frequency = <24000000>;
> + status = "disabled";
> + };
> + };
> +};
>
Applied, thanks!
--
Maxime Ripard, Free Electrons
Kernel, drivers, real-time and embedded Linux
development, consulting, training and support.
http://free-electrons.com
next prev parent reply other threads:[~2012-11-19 15:22 UTC|newest]
Thread overview: 13+ messages / expand[flat|nested] mbox.gz Atom feed top
2012-11-19 11:09 [PATCH 1/4] ARM: sunxi: Restructure sunxi dts/dtsi files Stefan Roese
2012-11-19 11:09 ` [PATCH 2/4] ARM: sunxi: Add earlyprintk support for UART0 (sun4i) Stefan Roese
2012-11-19 15:22 ` Maxime Ripard
2012-11-19 15:53 ` Arnd Bergmann
2012-11-19 11:09 ` [PATCH 3/4] ARM: sunxi: Add sun4i and cubieboard support Stefan Roese
2012-11-19 15:22 ` Maxime Ripard
2012-11-19 15:53 ` Arnd Bergmann
2012-11-19 11:09 ` [PATCH 4/4] ARM: sunxi: Add sunxi restart function via onchip watchdog Stefan Roese
2012-11-19 15:43 ` Maxime Ripard
2012-11-19 16:13 ` Stefan Roese
2012-11-19 15:55 ` Arnd Bergmann
2012-11-19 15:22 ` Maxime Ripard [this message]
2012-11-19 15:52 ` [PATCH 1/4] ARM: sunxi: Restructure sunxi dts/dtsi files 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=50AA4EA0.7080309@free-electrons.com \
--to=maxime.ripard@free-electrons.com \
--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.