Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1761491Ab3JPTks (ORCPT ); Wed, 16 Oct 2013 15:40:48 -0400 Received: from mail-db8lp0185.outbound.messaging.microsoft.com ([213.199.154.185]:9510 "EHLO db8outboundpool.messaging.microsoft.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1756222Ab3JPTkr convert rfc822-to-8bit (ORCPT ); Wed, 16 Oct 2013 15:40:47 -0400 X-Forefront-Antispam-Report: CIP:70.37.183.190;KIP:(null);UIP:(null);IPV:NLI;H:mail.freescale.net;RD:none;EFVD:NLI X-SpamScore: -7 X-BigFish: VS-7(zzbb2dI98dIc89bh936eI15bfK1432Izz1f42h208ch1ee6h1de0h1fdah2073h1202h1e76h1d1ah1d2ah1fc6hzz1de098h8275dh1de097h186068hz2dh2a8h839h93fhd24hf0ah1288h12a5h12a9h12bdh137ah139eh13b6h1441h1504h1537h162dh1631h1758h1898h18e1h1946h19b5h1ad9h1b0ah1b2fh1fb3h1d0ch1d2eh1d3fh1dfeh1dffh1e23h1fe8h1ff5h1155h) Message-ID: <1381952434.7979.739.camel@snotra.buserror.net> Subject: Re: [PATCH] powerpc 8xx: Fixing memory init issue with CONFIG_PIN_TLB From: Scott Wood To: leroy christophe CC: Joakim Tjernlund , , , Paul Mackerras Date: Wed, 16 Oct 2013 14:40:34 -0500 In-Reply-To: <525E27ED.4000005@c-s.fr> References: <201310111256.r9BCuepM006243@localhost.localdomain> <525D6CD4.5090403@c-s.fr> <1381869216.7979.718.camel@snotra.buserror.net> <525E27ED.4000005@c-s.fr> Content-Type: text/plain; charset="UTF-8" X-Mailer: Evolution 3.6.4-0ubuntu1 MIME-Version: 1.0 Content-Transfer-Encoding: 8BIT X-OriginatorOrg: freescale.com X-FOPE-CONNECTOR: Id%0$Dn%*$RO%0$TLS%0$FQDN%$TlsDn% Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 4164 Lines: 99 On Wed, 2013-10-16 at 07:45 +0200, leroy christophe wrote: > Le 15/10/2013 22:33, Scott Wood a écrit : > > On Tue, 2013-10-15 at 18:27 +0200, leroy christophe wrote: > >> Le 11/10/2013 17:13, Joakim Tjernlund a écrit : > >>> "Linuxppc-dev" > >>> > >>> wrote on 2013/10/11 14:56:40: > >>>> Activating CONFIG_PIN_TLB allows access to the 24 first Mbytes of memory > >>> at > >>>> bootup instead of 8. It is needed for "big" kernels for instance when > >>> activating > >>>> CONFIG_LOCKDEP_SUPPORT. This needs to be taken into account in init_32 > >>> too, > >>>> otherwise memory allocation soon fails after startup. > >>>> > >>>> Signed-off-by: Christophe Leroy > >>>> > >>>> diff -ur linux-3.11.org/arch/powerpc/kernel/head_8xx.S > >>> linux-3.11/arch/powerpc/kernel/head_8xx.S > >>>> --- linux-3.11.org/arch/powerpc/mm/init_32.c 2013-09-02 > >>> 22:46:10.000000000 +0200 > >>>> +++ linux-3.11/arch/powerpc/mm/init_32.c 2013-09-09 11:28:54.000000000 > >>> +0200 > >>>> @@ -213,7 +213,12 @@ > >>>> */ > >>>> BUG_ON(first_memblock_base != 0); > >>>> > >>>> +#ifdef CONFIG_PIN_TLB > >>>> + /* 8xx can only access 24MB at the moment */ > >>>> + memblock_set_current_limit(min_t(u64, first_memblock_size, > >>> 0x01800000)); > >>>> +#else > >>>> /* 8xx can only access 8MB at the moment */ > >>>> memblock_set_current_limit(min_t(u64, first_memblock_size, > >>> 0x00800000)); > >>>> +#endif > >>>> } > >>>> #endif /* CONFIG_8xx */ > >>> hmm, I think you should always map 24 MB (or less if RAM < 24 MB) and do > >>> the same > >>> in head_8xx.S. > >>> > >>> Or to keep it simple, just always map at least 16 MB here and in > >>> head_8xx.S, assuming > >>> that 16 MB is min RAM for any 8xx system running 3.x kernels. > >> Yes we could do a more elaborated modification in the future. However it > >> also has an impact on the boot loader, so I'm not sure we should make it > >> the default without thinking twice. > >> > >> In the meantime, my patch does take into account the existing situation > >> where you have 8Mb by default and 24Mb when you activate CONFIG_PIN_TLB. > >> I see it as a bug fix and I believe we should include it at least in > >> order to allow including in the stable releases. > >> > >> Do you see any issue with this approach ? > > The patch is fine, but I don't think it's stable material (BTW, if it > > were, you should have marked it as such when submitting). If I > > understand the situation correctly, there's no regression, and nothing > > fails to work with CONFIG_PIN_TLB that would have worked without it. > > It's just making CONFIG_PIN_TLB more useful. > > > > > Yes the patch is definitly stable. It's not about whether the patch itself is "stable", but whether it is a critical bugfix that should be applied to the 3.11.x stable tree and the 3.12 release, rather than being queued for 3.13. > How should I have mark it ? https://www.kernel.org/doc/Documentation/stable_kernel_rules.txt > The situation is that in 2010, I discovered that I was not able to start > a big Kernel because of the 8Mb limit. > You told me (see attached mail) that in order to get rid of that limit I > shall use CONFIG_PIN_TLB: it was the first step, it helped pass the > memory zeroize at init, but it was not enough as I then got problems > with the Device Tree being erased because being put inside the first 8Mb > area too. Then I temporarely gave up at that time. > > Recently I started again. After fixing my bootloader to get the device > tree somewhere else, I discovered this 8Mb limit hardcoded in > mm/init_32.c for the 8xx > With the patch I submitted I can now boot a kernel which is bigger than 8Mb. > > So, I'm a bit lost here on what to do. There's nothing you need to do -- I'll apply the patch and send it to Ben for 3.13. -Scott -- 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/