From: Florian Vaussard <florian.vaussard-p8DiymsW2f8@public.gmane.org>
To: Benoit Cousson <b-cousson-l0cyMroinI0@public.gmane.org>
Cc: Afzal Mohammed <afzal-l0cyMroinI0@public.gmane.org>,
Russell King <linux-lFZ/pmaqli7XmaaqVzeoHQ@public.gmane.org>,
linux-doc-u79uwXL29TY76Z2rM5mHXA@public.gmane.org,
devicetree-discuss-uLR06cmDAlY/bJ5BZ2RsiQ@public.gmane.org,
linux-kernel-u79uwXL29TY76Z2rM5mHXA@public.gmane.org,
Rob Herring <rob.herring-bsGFqQB8/DxBDgjK7y7TUQ@public.gmane.org>,
Ankur Kishore <a-kishore-l0cyMroinI0@public.gmane.org>,
Grant Likely
<grant.likely-QSEj5FYQhm4dnm+yROfE0A@public.gmane.org>,
Benoit Cousson
<benoit.cousson-QSEj5FYQhm4dnm+yROfE0A@public.gmane.org>,
linux-omap-u79uwXL29TY76Z2rM5mHXA@public.gmane.org,
linux-arm-kernel-IAPFreCvJWM7uuMidbF8XUB+6BGkLq7r@public.gmane.org
Subject: Re: [PATCH v2 14/14] ARM: dts: AM43x: initial support
Date: Wed, 29 May 2013 10:57:18 +0200 [thread overview]
Message-ID: <51A5C2EE.4060607@epfl.ch> (raw)
In-Reply-To: <51A5C1F3.2070605-l0cyMroinI0@public.gmane.org>
Hello,
On 05/29/2013 10:53 AM, Benoit Cousson wrote:
> + Florian
>
> Hi Afzal,
>
> On 05/27/2013 04:37 PM, Afzal Mohammed wrote:
>> DT source (minimal) for AM4372 SoC to represent AM43x SoC's. Those
>> represented here are the minimal DT nodes necessary to get kernel
>> booting.
>>
>> In DT nodes, "ti,hwmod" property has not been added, this would be
>> added along with PRCM support for AM43x.
>>
>> Signed-off-by: Ankur Kishore <a-kishore-l0cyMroinI0@public.gmane.org>
>> Signed-off-by: Afzal Mohammed <afzal-l0cyMroinI0@public.gmane.org>
>> ---
>>
>> v2: Add gptimer 1ms, timer2, synctimer and remove twd local timer
>>
>> arch/arm/boot/dts/am4372.dtsi | 66 +++++++++++++++++++++++++++++++++++++++++++
>> 1 file changed, 66 insertions(+)
>> create mode 100644 arch/arm/boot/dts/am4372.dtsi
>>
>> diff --git a/arch/arm/boot/dts/am4372.dtsi b/arch/arm/boot/dts/am4372.dtsi
>> new file mode 100644
>> index 0000000..1d58298
>> --- /dev/null
>> +++ b/arch/arm/boot/dts/am4372.dtsi
>> @@ -0,0 +1,66 @@
>> +/*
>> + * Device Tree Source for AM4372 SoC
>> + *
>> + * Copyright (C) 2013 Texas Instruments Incorporated - http://www.ti.com/
>> + *
>> + * This file is licensed under the terms of the GNU General Public License
>> + * version 2. This program is licensed "as is" without any warranty of any
>> + * kind, whether express or implied.
>> + */
>> +
>> +/include/ "skeleton.dtsi"
>
> You can now use the C preprocessor statement instead of this one.
> Florian already started doing the change [1].
>
> Beside that detail, that patch looks good to me.
> I'll pull it separately of the series.
>
If you pull the patch in your branch, I can take care of the changes
when I rebase
my series. This will allow me to clean the 'interrupts' statements below
as well.
Regards,
Florian
> Regards,
> Benoit
>
> [1] http://thread.gmane.org/gmane.linux.ports.arm.omap/98320
>
>> +
>> +/ {
>> + compatible = "ti,am4372", "ti,am43";
>> + interrupt-parent = <&gic>;
>> +
>> +
>> + aliases {
>> + serial0 = &uart1;
>> + };
>> +
>> + cpus {
>> + cpu@0 {
>> + compatible = "arm,cortex-a9";
>> + };
>> + };
>> +
>> + gic: interrupt-controller@48241000 {
>> + compatible = "arm,cortex-a9-gic";
>> + interrupt-controller;
>> + #interrupt-cells = <3>;
>> + reg = <0x48241000 0x1000>,
>> + <0x48240100 0x0100>;
>> + };
>> +
>> + ocp {
>> + compatible = "simple-bus";
>> + #address-cells = <1>;
>> + #size-cells = <1>;
>> + ranges;
>> +
>> + uart1: serial@44e09000 {
>> + compatible = "ti,am4372-uart","ti,omap2-uart";
>> + reg = <0x44e09000 0x2000>;
>> + interrupts = <0 72 0x4>;
>> + };
>> +
>> + timer1: timer@44e31000 {
>> + compatible = "ti,am4372-timer-1ms","ti,am335x-timer-1ms";
>> + reg = <0x44e31000 0x400>;
>> + interrupts = <0 67 0x4>;
>> + ti,timer-alwon;
>> + };
>> +
>> + timer2: timer@48040000 {
>> + compatible = "ti,am4372-timer","ti,am335x-timer";
>> + reg = <0x48040000 0x400>;
>> + interrupts = <0 68 0x4>;
>> + };
>> +
>> + counter32k: counter@44e86000 {
>> + compatible = "ti,am4372-counter32k","ti,omap-counter32k";
>> + reg = <0x44e86000 0x40>;
>> + };
>> + };
>> +};
>>
>
next prev parent reply other threads:[~2013-05-29 8:57 UTC|newest]
Thread overview: 38+ messages / expand[flat|nested] mbox.gz Atom feed top
2013-05-27 14:33 [PATCH v2 00/14] ARM: OMAP2+: AM43x initial support Afzal Mohammed
2013-05-27 14:35 ` [PATCH v2 01/14] ARM: OMAP2+: separate out OMAP4 restart Afzal Mohammed
2013-05-27 14:35 ` [PATCH v2 02/14] ARM: OMAP2+: AM43x: Kconfig Afzal Mohammed
2013-06-12 17:12 ` Tony Lindgren
2013-06-13 6:58 ` Mohammed, Afzal
2013-06-13 9:54 ` Tony Lindgren
2013-06-13 10:02 ` Mohammed, Afzal
2013-06-13 10:17 ` Tony Lindgren
2013-05-27 14:35 ` [PATCH v2 03/14] ARM: OMAP2+: AM43x: kbuild Afzal Mohammed
2013-05-27 14:36 ` [PATCH v2 05/14] ARM: OMAP2+: AM437x: SoC revision detection Afzal Mohammed
2013-05-27 14:36 ` [PATCH v2 06/14] ARM: OMAP2+: AM43x: static mapping Afzal Mohammed
2013-05-27 14:36 ` [PATCH v2 07/14] ARM: OMAP2+: AM43x: early init Afzal Mohammed
2013-06-12 17:14 ` Tony Lindgren
2013-05-27 14:36 ` [PATCH v2 09/14] ARM: OMAP2+: AM43x: SRAM base and size Afzal Mohammed
2013-05-27 14:36 ` [PATCH v2 10/14] ARM: OMAP2+: AM43x: basic dt support Afzal Mohammed
2013-05-27 14:37 ` [PATCH v2 11/14] Documentation: dt: binding: omap: am43x timer Afzal Mohammed
2013-05-28 21:25 ` Jon Hunter
2013-05-28 22:05 ` Stephen Warren
2013-05-29 8:06 ` Mohammed, Afzal
[not found] ` <C8443D0743D26F4388EA172BF4E2A7A93EAFB044-yXqyApvAXouIQmiDNMet8wC/G2K4zDHf@public.gmane.org>
2013-05-29 8:39 ` Benoit Cousson
2013-05-29 9:58 ` Mohammed, Afzal
2013-05-29 13:35 ` Benoit Cousson
2013-06-03 7:49 ` Mohammed, Afzal
2013-06-03 9:53 ` Benoit Cousson
2013-05-29 15:27 ` Stephen Warren
2013-05-30 11:44 ` Benoit Cousson
2013-05-29 20:17 ` Jon Hunter
[not found] ` <cover.1369658705.git.afzal-l0cyMroinI0@public.gmane.org>
2013-05-27 14:35 ` [PATCH v2 04/14] ARM: OMAP2+: AM43x: soc_is support Afzal Mohammed
2013-05-27 14:36 ` [PATCH v2 08/14] ARM: OMAP2+: AM43x: GP or HS ? Afzal Mohammed
2013-05-27 14:37 ` [PATCH v2 12/14] Documentation: dt: binding: omap: am43x counter Afzal Mohammed
2013-05-28 21:26 ` Jon Hunter
2013-05-29 8:08 ` Mohammed, Afzal
2013-05-27 14:37 ` [PATCH v2 13/14] Documentation: dt: binding: serial: omap: am43x Afzal Mohammed
2013-05-27 14:37 ` [PATCH v2 14/14] ARM: dts: AM43x: initial support Afzal Mohammed
2013-05-29 8:53 ` Benoit Cousson
[not found] ` <51A5C1F3.2070605-l0cyMroinI0@public.gmane.org>
2013-05-29 8:57 ` Florian Vaussard [this message]
2013-05-29 9:05 ` Benoit Cousson
2013-06-04 11:25 ` [PATCH v2 00/14] ARM: OMAP2+: AM43x " Mohammed, Afzal
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=51A5C2EE.4060607@epfl.ch \
--to=florian.vaussard-p8diymsw2f8@public.gmane.org \
--cc=a-kishore-l0cyMroinI0@public.gmane.org \
--cc=afzal-l0cyMroinI0@public.gmane.org \
--cc=b-cousson-l0cyMroinI0@public.gmane.org \
--cc=benoit.cousson-QSEj5FYQhm4dnm+yROfE0A@public.gmane.org \
--cc=devicetree-discuss-uLR06cmDAlY/bJ5BZ2RsiQ@public.gmane.org \
--cc=grant.likely-QSEj5FYQhm4dnm+yROfE0A@public.gmane.org \
--cc=linux-arm-kernel-IAPFreCvJWM7uuMidbF8XUB+6BGkLq7r@public.gmane.org \
--cc=linux-doc-u79uwXL29TY76Z2rM5mHXA@public.gmane.org \
--cc=linux-kernel-u79uwXL29TY76Z2rM5mHXA@public.gmane.org \
--cc=linux-lFZ/pmaqli7XmaaqVzeoHQ@public.gmane.org \
--cc=linux-omap-u79uwXL29TY76Z2rM5mHXA@public.gmane.org \
--cc=rob.herring-bsGFqQB8/DxBDgjK7y7TUQ@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).