Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1752863AbaB0Mp5 (ORCPT ); Thu, 27 Feb 2014 07:45:57 -0500 Received: from eu1sys200aog112.obsmtp.com ([207.126.144.133]:51230 "EHLO eu1sys200aog112.obsmtp.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751382AbaB0Mp4 (ORCPT ); Thu, 27 Feb 2014 07:45:56 -0500 Message-ID: <530F2E26.1040304@st.com> Date: Thu, 27 Feb 2014 13:23:02 +0100 From: Maxime Coquelin User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:24.0) Gecko/20100101 Thunderbird/24.3.0 MIME-Version: 1.0 To: Patrice CHOTARD , Srinivas Kandagatla , Stuart Menefy , Russell King , , , , Linus Walleij , Grant Likely , Rob Herring , Cc: , Giuseppe Cavallaro Subject: Re: [PATCH 1/4] ARM: STi: add stid127 soc support References: <1391093744-19905-1-git-send-email-patrice.chotard@st.com> <1391093744-19905-2-git-send-email-patrice.chotard@st.com> In-Reply-To: <1391093744-19905-2-git-send-email-patrice.chotard@st.com> Content-Type: text/plain; charset="ISO-8859-1"; format=flowed Content-Transfer-Encoding: 7bit X-Originating-IP: [10.201.23.80] Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Hi Patrice, Could you add an overview documentation as it has been done for other STi platforms? See Documentation/arm/sti/stih416-overview.txt Thanks, Maxime On 01/30/2014 03:55 PM, Patrice CHOTARD wrote: > From: Alexandre TORGUE > > This patch adds support to STiD127 SoC. > The main adaptation is the L2 cache way size compare to STiH41x SoCs. > > Signed-off-by: alexandre torgue > Signed-off-by: Patrice Chotard > --- > arch/arm/mach-sti/board-dt.c | 6 ++++++ > 1 file changed, 6 insertions(+) > > diff --git a/arch/arm/mach-sti/board-dt.c b/arch/arm/mach-sti/board-dt.c > index 1217fb5..be018a9 100644 > --- a/arch/arm/mach-sti/board-dt.c > +++ b/arch/arm/mach-sti/board-dt.c > @@ -9,6 +9,7 @@ > > #include > #include > +#include > #include > #include > > @@ -18,6 +19,10 @@ void __init stih41x_l2x0_init(void) > { > u32 way_size = 0x4; > u32 aux_ctrl; > + > + if (of_machine_is_compatible("st,stid127")) > + way_size = 0x3; > + > /* may be this can be encoded in macros like BIT*() */ > aux_ctrl = (0x1 << L2X0_AUX_CTRL_SHARE_OVERRIDE_SHIFT) | > (0x1 << L2X0_AUX_CTRL_DATA_PREFETCH_SHIFT) | > @@ -36,6 +41,7 @@ static void __init stih41x_machine_init(void) > static const char *stih41x_dt_match[] __initdata = { > "st,stih415", > "st,stih416", > + "st,stid127", > NULL > }; > > -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/