linuxppc-dev.lists.ozlabs.org archive mirror
 help / color / mirror / Atom feed
From: Yuri Tikhonov <yur@emcraft.com>
To: Milton Miller <miltonm@bga.com>
Cc: yanok@emcraft.com, dzu@denx.de, linuxppc-dev@ozlabs.org,
	paulus@samba.org, wd@denx.de
Subject: Re[2]: [PATCH] powerpc 44x: support for 256KB PAGE_SIZE
Date: Sun, 21 Dec 2008 14:36:42 +0300	[thread overview]
Message-ID: <1681222932.20081221143642@emcraft.com> (raw)
In-Reply-To: <79323ed6bfab87d44b196d610cea5e42@bga.com>

=0D=0A Hello Milton,

 Thanks for reviewing. I'll re-post the updated patch shortly.

On Sunday, December 21, 2008 you wrote:


> On Dec 19, 2008, at 12:39 AM, Yuri Tikhonov wrote:

>> This patch adds support for 256KB pages on ppc44x-based boards.
>>

> Hi.  A couple of small comments.

>> diff --git a/arch/powerpc/Kconfig b/arch/powerpc/Kconfig
>> index cd8ff7c..348702c 100644
>> --- a/arch/powerpc/Kconfig
>> +++ b/arch/powerpc/Kconfig
>> @@ -436,6 +436,14 @@ config PPC_64K_PAGES
>>       bool "64k page size" if 44x || PPC_STD_MMU_64
>>       select PPC_HAS_HASH_64K if PPC_STD_MMU_64
>>
>> +config PPC_256K_PAGES
>> +     bool "256k page size" if 44x
>> +     depends on !STDBINUTILS
>> +     help
>> +       ELF standard supports only page sizes up to 64K so you need a=20
>> patched
>> +       binutils in order to use 256K pages. Chose it only if you know w=
hat
>> +       you are doing.
>> +

> Make the page size 256k.   As the ELF standard only requires alignment
> to
> support page sizes up to 64k, you will need to compile all of your user
> space applications with a patched binutils.

> Say N unless you know what you are doing.

> (The previous text did not describe what the option actually did, and=20
> did not emphasize that all of user space had to be compiled).


>> diff --git a/arch/powerpc/include/asm/thread_info.h=20
>> b/arch/powerpc/include/asm/thread_info.h
>> index 9665a26..3c8bbab 100644
>> --- a/arch/powerpc/include/asm/thread_info.h
>> +++ b/arch/powerpc/include/asm/thread_info.h
>> @@ -15,8 +15,12 @@
>>  #ifdef CONFIG_PPC64
>>  #define THREAD_SHIFT         14
>>  #else
>> +#ifdef CONFIG_PPC_256K_PAGES
>> +#define THREAD_SHIFT         15
>> +#else
>>  #define THREAD_SHIFT         13
>>  #endif
>> +#endif

> Switching to #elif would remove the nested ifdef here.

>>
>>  #define THREAD_SIZE          (1 << THREAD_SHIFT)
>>
>> diff --git a/arch/powerpc/kernel/head_booke.h=20
>> b/arch/powerpc/kernel/head_booke.h
>> index fce2df9..bc6a26c 100644
>> --- a/arch/powerpc/kernel/head_booke.h
>> +++ b/arch/powerpc/kernel/head_booke.h
>> @@ -10,6 +10,14 @@
>>               mtspr   SPRN_IVOR##vector_number,r26;   \
>>               sync
>>
>> +#ifndef CONFIG_PPC_256K_PAGES

> This if should be on THREAD_SIZE or THREAD_SHIFT, not the option that=20
> causes it to be large.

>> +#define ALLOC_STACK_FRAME(reg, val)  addi reg,reg,val
>> +#else
>> +#define ALLOC_STACK_FRAME(reg, val)                  \
>> +     addis   reg,reg,val@ha;                         \
>> +     addi    reg,reg,val@l
>> +#endif
>> +
>>  #define NORMAL_EXCEPTION_PROLOG                                        =
           \
>>       mtspr   SPRN_SPRG0,r10;         /* save two registers to work with=
 */\
>>       mtspr   SPRN_SPRG1,r11;                                           =
   \
>> @@ -20,7 +28,7 @@
>>       beq     1f;                                                       =
   \
>>       mfspr   r1,SPRN_SPRG3;          /* if from user, start at top of  =
 */\
>>       lwz     r1,THREAD_INFO-THREAD(r1); /* this thread's kernel stack  =
 */\
>> -     addi    r1,r1,THREAD_SIZE;                                        =
   \
>> +     ALLOC_STACK_FRAME(r1, THREAD_SIZE);                               =
   \
>>  1:   subi    r1,r1,INT_FRAME_SIZE;   /* Allocate an exception frame    =
 */\
>>       mr      r11,r1;                                                   =
   \
>>       stw     r10,_CCR(r11);          /* save various registers         =
 */\
>> diff --git a/init/Kconfig b/init/Kconfig
>> index f763762..96229b9 100644
>> --- a/init/Kconfig
>> +++ b/init/Kconfig
>> @@ -635,6 +635,16 @@ config ELF_CORE
>>       help
>>         Enable support for generating core dumps. Disabling saves about =
4k.
>>
>> +config STDBINUTILS
>> +     bool "Using standard binutils" if EMBEDDED
>> +     depends on 44x
>> +     default y
>> +     help
>> +       Turning this option off allows you to select 256KB PAGE_SIZE on=
=20
>> 44x.
>> +       Note, that kernel will be able to run only those applications,
>> +       which had been compiled using the patched binutils (ELF standard
>> +       supports only page sizes up to 64K).
>> +

> The config variable 44x is pretty nondescript for a global config file.
>   If you leave it here, I would suggest  making it depend on PPC && 44x
> so that other people don't have to wonder what 44x means.  I didn't=20
> look if there was a better place to put this option, somewhere=20
> architecture specific might be better (eg after selecting the 44x cpu=20
> type).

>>  config PCSPKR_PLATFORM
>>       bool "Enable PC-Speaker support" if EMBEDDED
>>       depends on ALPHA || X86 || MIPS || PPC_PREP || PPC_CHRP ||=20
>> PPC_PSERIES
>>

> thanks,
> milton




 Regards, Yuri

 --
 Yuri Tikhonov, Senior Software Engineer
 Emcraft Systems, www.emcraft.com

      reply	other threads:[~2008-12-21 11:36 UTC|newest]

Thread overview: 3+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2008-12-19  6:39 [PATCH] powerpc 44x: support for 256KB PAGE_SIZE Yuri Tikhonov
2008-12-20 22:39 ` Milton Miller
2008-12-21 11:36   ` Yuri Tikhonov [this message]

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=1681222932.20081221143642@emcraft.com \
    --to=yur@emcraft.com \
    --cc=dzu@denx.de \
    --cc=linuxppc-dev@ozlabs.org \
    --cc=miltonm@bga.com \
    --cc=paulus@samba.org \
    --cc=wd@denx.de \
    --cc=yanok@emcraft.com \
    /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).