From: Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com>
To: Jisheng Zhang <jszhang@marvell.com>
Cc: Russell King <linux@arm.linux.org.uk>,
Arnd Bergmann <arnd@arndb.de>, Kevin Hilman <khilman@kernel.org>,
"linux-kernel@vger.kernel.org" <linux-kernel@vger.kernel.org>,
Olof Johansson <olof@lixom.net>,
"linux-arm-kernel@lists.infradead.org"
<linux-arm-kernel@lists.infradead.org>
Subject: Re: [PATCH v3 9/9] ARM: add initial support for Marvell Berlin SoCs
Date: Thu, 07 Nov 2013 11:12:49 +0100 [thread overview]
Message-ID: <527B67A1.3020803@gmail.com> (raw)
In-Reply-To: <20131107134033.59bd127a@xhacker>
On 11/07/13 06:40, Jisheng Zhang wrote:
> On Tue, 5 Nov 2013 06:28:43 -0800
> Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com> wrote:
>
>> This adds initial support for the Marvell Berlin SoC family with
>> Armada 1500 (88DE3100) and Armada 1500-mini (88DE3005) SoCs.
>>
>> Signed-off-by: Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com>
>> Reviewed-by: Jason Cooper <jason@lakedaemon.net>
>> Reviewed-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
>> Reviewed-by: Arnd Bergmann <arnd@arndb.de>
>> ---
[...]
>> diff --git a/arch/arm/mach-berlin/Kconfig b/arch/arm/mach-berlin/Kconfig
>> new file mode 100644
>> index 0000000..c5b39b1
>> --- /dev/null
>> +++ b/arch/arm/mach-berlin/Kconfig
>> @@ -0,0 +1,30 @@
>> +config ARCH_BERLIN
>> + bool "Marvell Berlin SoCs" if ARCH_MULTI_V7
>> + select GENERIC_CLOCKEVENTS
>> + select GENERIC_IRQ_CHIP
>> + select COMMON_CLK
>> + select DW_APB_ICTL
>> + select DW_APB_TIMER_OF
>> +
>> +if ARCH_BERLIN
>> +
>> +menu "Marvell Berlin SoC variants"
>> +
>> +config MACH_BERLIN_BG2
>> + bool "Marvell Armada 1500 (BG2)"
>> + select ARM_GIC
> ARM_GIC is common on berlin SoCs. we can put it below ARCH_BERLIN?
Sure, I guess BG3 is also using GIC?
>> + select CACHE_L2X0
> ditto
You already re-replied to that. I leave L2X0 here, BG3 will be
different, as you stated.
>> + select CPU_PJ4B
>> + select HAVE_ARM_TWD
>> + select HAVE_SMP
>> +
>> +config MACH_BERLIN_BG2CD
>> + bool "Marvell Armada 1500-mini (BG2CD)"
>> + select ARM_GIC
>> + select CACHE_L2X0
>> + select CPU_V7
>> + select HAVE_ARM_TWD
> BG2CD is single core, I'm not sure it have twd. I will check with SoC people.
> But can twd be really used in single CA9 system?
From a quick view into Cortex-A9 MPCore TRM, I cannot see why it
shouldn't be there even for single-core. If you can get more info,
that would be great.
Actually, IIRC smp_twd does not compile without SMP set, so the above
should at least be 'HAVE_ARM_TWD if SMP'. If you shrink MULTI_V7 down
to non-SMP cores, you can disable it and it will fail to compile.
>> +
>> +endmenu
>> +
>> +endif
>> diff --git a/arch/arm/mach-berlin/Makefile b/arch/arm/mach-berlin/Makefile
>> new file mode 100644
>> index 0000000..ab69fe9
>> --- /dev/null
>> +++ b/arch/arm/mach-berlin/Makefile
>> @@ -0,0 +1 @@
>> +obj-y += berlin.o
>> diff --git a/arch/arm/mach-berlin/berlin.c b/arch/arm/mach-berlin/berlin.c
>> new file mode 100644
>> index 0000000..16c2942
>> --- /dev/null
>> +++ b/arch/arm/mach-berlin/berlin.c
>> @@ -0,0 +1,39 @@
>> +/*
>> + * Device Tree support for Marvell Berlin SoCs.
>> + *
>> + * Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com>
>> + *
>> + * based on GPL'ed 2.6 kernel sources
>> + * (c) Marvell International Ltd.
>> + *
>> + * 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 <linux/init.h>
>> +#include <linux/io.h>
>> +#include <linux/kernel.h>
>> +#include <linux/of_platform.h>
>> +#include <asm/hardware/cache-l2x0.h>
>> +#include <asm/mach/arch.h>
>> +
>> +static void __init berlin_init_machine(void)
>> +{
>> + /*
>> + * with DT probing for L2CCs, berlin_init_machine can be removed.
>> + * Note: 88DE3005 (Armada 1500-mini) uses pl310 l2cc
>> + */
>> + l2x0_of_init(0x70c00000, 0xfeffffff);
> Per my experience, put l2x0 initialization in init_machine is too late. It
> did cause some boot stability problems during our product massive bootup test.
> In our internal 3.10.y tree, we put it in init_early, I also suggest we do
> this too in mainline.
Ok.
>> + of_platform_populate(NULL, of_default_bus_match_table, NULL, NULL);
> If l2 initialization is put in init_early, this is not needed any more.
Right, that's already in the comment right above l2x0_of_init ;)
>> +}
>> +
>> +static const char * const berlin_dt_compat[] = {
>> + "marvell,berlin",
>> + NULL,
>> +};
>> +
>> +DT_MACHINE_START(BERLIN_DT, "Marvell Berlin")
>> + .dt_compat = berlin_dt_compat,
>> + .init_machine = berlin_init_machine,
>> +MACHINE_END
>
next prev parent reply other threads:[~2013-11-07 10:13 UTC|newest]
Thread overview: 86+ messages / expand[flat|nested] mbox.gz Atom feed top
2013-10-08 12:24 [PATCH 0/8] ARM: Initial support for Marvell Berlin SoCs Sebastian Hesselbarth
2013-10-08 12:24 ` [PATCH 1/8] irqchip: add DesignWare APB ICTL interrupt controller Sebastian Hesselbarth
2013-10-08 13:24 ` Mark Rutland
2013-10-08 15:51 ` Sebastian Hesselbarth
2013-10-11 9:30 ` Jisheng Zhang
2013-10-17 6:37 ` [PATCH v2 " Sebastian Hesselbarth
2013-10-25 21:30 ` Sebastian Hesselbarth
2013-10-08 12:24 ` [PATCH 2/8] MAINTAINERS: add ARM Marvell Berlin SoC Sebastian Hesselbarth
2013-10-08 13:57 ` Jason Cooper
2013-10-08 12:24 ` [PATCH 3/8] ARM: l2x0: add Marvell Tauros3 compatible Sebastian Hesselbarth
2013-10-08 13:41 ` Mark Rutland
2013-10-08 16:05 ` Sebastian Hesselbarth
2013-10-08 16:33 ` Gregory CLEMENT
2013-10-09 8:50 ` Mark Rutland
2013-10-09 9:14 ` Gregory CLEMENT
2013-10-09 19:27 ` Sebastian Hesselbarth
2013-10-11 9:05 ` Lennert Buytenhek
2013-10-17 6:37 ` [PATCH v2 3/8] ARM: l2x0: add Marvell Tauros3 support Sebastian Hesselbarth
2013-10-08 12:24 ` [PATCH 4/8] ARM: add Marvell Berlin SoC familiy to Marvell doc Sebastian Hesselbarth
2013-10-14 23:09 ` Sebastian Hesselbarth
2013-10-15 3:10 ` Jisheng Zhang
2013-10-15 17:09 ` Sebastian Hesselbarth
2013-10-08 12:24 ` [PATCH 5/8] ARM: add Marvell Berlin and Armada 1500 to multi_v7_defconfig Sebastian Hesselbarth
2013-10-08 12:24 ` [PATCH 6/8] ARM: add Marvell Berlin UART0 lowlevel debug Sebastian Hesselbarth
2013-10-08 12:24 ` [PATCH 7/8] ARM: add Armada 1500 and Sony NSZ-GS7 device tree files Sebastian Hesselbarth
2013-10-14 23:13 ` Sebastian Hesselbarth
2013-10-14 23:18 ` Sebastian Hesselbarth
2013-10-15 3:06 ` Jisheng Zhang
2013-10-17 6:37 ` [PATCH v2 " Sebastian Hesselbarth
2013-10-08 12:24 ` [PATCH 8/8] ARM: add initial support for Marvell Berlin SoCs Sebastian Hesselbarth
2013-10-08 23:24 ` Dinh Nguyen
2013-10-09 7:08 ` Sebastian Hesselbarth
2013-10-09 3:20 ` Jisheng Zhang
2013-10-09 7:20 ` Sebastian Hesselbarth
2013-10-09 9:24 ` Gregory CLEMENT
2013-10-17 6:37 ` [PATCH v2 " Sebastian Hesselbarth
2013-11-05 14:28 ` [PATCH v3 0/9] ARM: Initial " Sebastian Hesselbarth
2013-11-05 14:28 ` [PATCH v3 1/9] irqchip: add DesignWare APB ICTL interrupt controller Sebastian Hesselbarth
2013-11-06 11:34 ` Thomas Gleixner
2013-11-05 14:28 ` [PATCH v3 2/9] MAINTAINERS: add ARM Marvell Berlin SoC Sebastian Hesselbarth
2013-11-05 14:28 ` [PATCH v3 3/9] ARM: l2x0: add Marvell Tauros3 support Sebastian Hesselbarth
2013-11-05 14:28 ` [PATCH v3 4/9] ARM: add Marvell Berlin SoC familiy to Marvell doc Sebastian Hesselbarth
2013-11-07 5:56 ` Jisheng Zhang
2013-11-07 10:12 ` Sebastian Hesselbarth
2013-11-05 14:28 ` [PATCH v3 5/9] ARM: add Marvell Berlin SoCs to multi_v7_defconfig Sebastian Hesselbarth
2013-11-05 14:28 ` [PATCH v3 6/9] ARM: add Marvell Berlin UART0 lowlevel debug Sebastian Hesselbarth
2013-11-05 14:28 ` [PATCH v3 7/9] ARM: add Armada 1500 and Sony NSZ-GS7 device tree files Sebastian Hesselbarth
2013-11-08 16:13 ` Kumar Gala
2013-11-08 16:57 ` Jason Cooper
2013-11-08 18:06 ` Kumar Gala
2013-11-08 18:24 ` Jason Cooper
2013-11-08 19:14 ` Olof Johansson
2013-11-08 19:17 ` Sebastian Hesselbarth
2013-11-08 19:19 ` Olof Johansson
2013-11-08 19:30 ` Jason Cooper
2013-11-08 20:10 ` Olof Johansson
2013-11-08 20:29 ` Jason Cooper
2013-11-08 19:15 ` Sebastian Hesselbarth
2013-11-05 14:28 ` [PATCH v3 8/9] ARM: add Armada 1500-mini and Chromecast " Sebastian Hesselbarth
2013-11-07 5:48 ` Jisheng Zhang
2013-11-07 10:12 ` Sebastian Hesselbarth
2013-11-05 14:28 ` [PATCH v3 9/9] ARM: add initial support for Marvell Berlin SoCs Sebastian Hesselbarth
2013-11-07 5:40 ` Jisheng Zhang
2013-11-07 7:01 ` Jisheng Zhang
2013-11-07 10:12 ` Sebastian Hesselbarth [this message]
2013-11-07 16:20 ` Arnd Bergmann
2013-11-07 21:22 ` Sebastian Hesselbarth
2013-11-07 22:11 ` Arnd Bergmann
2013-11-08 0:58 ` Jisheng Zhang
2013-11-08 8:54 ` Sebastian Hesselbarth
2013-12-08 14:13 ` [PATCH v4 0/9] ARM: Initial " Sebastian Hesselbarth
2013-12-08 14:13 ` [PATCH v4 1/9] irqchip: add DesignWare APB ICTL interrupt controller Sebastian Hesselbarth
2013-12-08 14:13 ` [PATCH v4 2/9] MAINTAINERS: add ARM Marvell Berlin SoC Sebastian Hesselbarth
2013-12-08 14:14 ` [PATCH v4 3/9] ARM: l2x0: add Marvell Tauros3 support Sebastian Hesselbarth
2013-12-08 14:14 ` [PATCH v4 4/9] ARM: add Marvell Berlin SoC familiy to Marvell doc Sebastian Hesselbarth
2013-12-08 14:14 ` [PATCH v4 5/9] ARM: add Marvell Berlin SoCs to multi_v7_defconfig Sebastian Hesselbarth
2013-12-08 14:14 ` [PATCH v4 6/9] ARM: add Marvell Berlin UART0 lowlevel debug Sebastian Hesselbarth
2013-12-08 14:14 ` [PATCH v4 7/9] ARM: add Armada 1500 and Sony NSZ-GS7 device tree files Sebastian Hesselbarth
2013-12-08 14:14 ` [PATCH v4 8/9] ARM: add Armada 1500-mini and Chromecast " Sebastian Hesselbarth
2013-12-08 14:14 ` [PATCH v4 9/9] ARM: add initial support for Marvell Berlin SoCs Sebastian Hesselbarth
2013-12-10 1:40 ` [PATCH v4 0/9] ARM: Initial " Olof Johansson
2013-12-10 1:57 ` Sebastian Hesselbarth
2013-12-10 19:16 ` Olof Johansson
2013-12-10 19:33 ` Arnd Bergmann
2013-12-10 19:38 ` Olof Johansson
2013-12-10 20:02 ` Sebastian Hesselbarth
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=527B67A1.3020803@gmail.com \
--to=sebastian.hesselbarth@gmail.com \
--cc=arnd@arndb.de \
--cc=jszhang@marvell.com \
--cc=khilman@kernel.org \
--cc=linux-arm-kernel@lists.infradead.org \
--cc=linux-kernel@vger.kernel.org \
--cc=linux@arm.linux.org.uk \
--cc=olof@lixom.net \
/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).