Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1753658AbbEFH7t (ORCPT ); Wed, 6 May 2015 03:59:49 -0400 Received: from mailgw02.mediatek.com ([210.61.82.184]:40381 "EHLO mailgw02.mediatek.com" rhost-flags-OK-FAIL-OK-FAIL) by vger.kernel.org with ESMTP id S1751314AbbEFH7q (ORCPT ); Wed, 6 May 2015 03:59:46 -0400 X-Listener-Flag: 11101 Message-ID: <1430899182.4930.2.camel@mtksdaap41> Subject: Re: [PATCH 0/7] Add SMP bringup support for mt65xx socs From: Yingjoe Chen To: Matthias Brugger CC: Mark Rutland , "devicetree@vger.kernel.org" , Lorenzo Pieralisi , Russell King , "Arnd Bergmann" , Pawel Moll , Ian Campbell , Catalin Marinas , Daniel Lezcano , "linux-kernel@vger.kernel.org" , Marc Carino , "Rob Herring" , , "Sascha Hauer" , Olof Johansson , "Thomas Gleixner" , srv_heupstream , "linux-arm-kernel@lists.infradead.org" , Jason Cooper Date: Wed, 6 May 2015 15:59:42 +0800 In-Reply-To: <1430896766.15346.13.camel@mtksdaap41> References: <1430466210-22963-1-git-send-email-yingjoe.chen@mediatek.com> <1430896766.15346.13.camel@mtksdaap41> Content-Type: text/plain; charset="UTF-8" X-Mailer: Evolution 3.2.3-0ubuntu6 Content-Transfer-Encoding: 7bit MIME-Version: 1.0 X-MTK: N Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 1672 Lines: 57 On Wed, 2015-05-06 at 15:19 +0800, Yingjoe Chen wrote: > Hi Matthias, <...> > > I tried on the mt8135 eval board but it fails to bring up the CPU. > > > > When booting: > > [ 1.048588] CPU1: failed to come online > > [ 2.049914] CPU2: failed to come online > > [ 3.051245] CPU3: failed to come online > > > Thanks for testing, and the config file you provided. > It seems you are running THUMB2 kernel, unfortunately mt8135 trustzone > firmware doesn't support jump to THUMB2 code directly. > > I can workaround this with the following patch. I'll include it in my > next round. > > Joe.C > > -----8<---------------- > diff --git a/arch/arm/mach-mediatek/platsmp.c > b/arch/arm/mach-mediatek/platsmp.c > index e266b3d..5dea55a 100644 > --- a/arch/arm/mach-mediatek/platsmp.c > +++ b/arch/arm/mach-mediatek/platsmp.c > @@ -57,6 +57,18 @@ static const struct of_device_id mtk_smp_boot_infos[] > __initconst = { > static void __iomem *mtk_smp_base; > static const struct mtk_smp_boot_info *mtk_smp_info; > > +#ifdef CONFIG_THUMB2_KERNEL > +__asm__( > + ".arm\n" > + "mtk_secondary_startup_fixup:\n" > + " b secondary_startup\n" > + ".thumb\n" > +); > + > +void mtk_secondary_startup_fixup(void); > +#define secondary_startup mtk_secondary_startup_fixup > +#endif Replying myself. It seems kernel already have secondary_startup_arm which support this usage. I'll use that in my next version instead. Joe.C -- 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/