mail archive of the barebox mailing list
 help / color / mirror / Atom feed
* Re: [PATCH 3/5] barebox-data: add barebox-data sections
       [not found] ` <1346322594-21167-4-git-send-email-a.aring@phytec.de>
@ 2012-08-31  7:51   ` Sascha Hauer
  0 siblings, 0 replies; 2+ messages in thread
From: Sascha Hauer @ 2012-08-31  7:51 UTC (permalink / raw)
  To: Alexander Aring; +Cc: barebox

On Thu, Aug 30, 2012 at 12:29:52PM +0200, Alexander Aring wrote:
> Add barebox-data section in arm branch to get complete
> barebox regions in sdram regions tree.
> 
> Signed-off-by: Alexander Aring <a.aring@phytec.de>
> ---
>  arch/arm/lib/barebox.lds.S                       |    6 +++++-
>  arch/blackfin/boards/ipe337/barebox.lds.S        |    6 +++++-
>  arch/mips/lib/barebox.lds.S                      |    5 ++++-
>  arch/nios2/cpu/barebox.lds.S                     |    5 +++--
>  arch/ppc/boards/freescale-p2020rdb/barebox.lds.S |    6 ++++--
>  arch/ppc/boards/pcm030/barebox.lds.S             |    5 +++--
>  arch/x86/lib/barebox.lds.S                       |    5 ++++-
>  common/memory.c                                  |    4 ++++
>  include/asm-generic/sections.h                   |    1 +
>  9 files changed, 33 insertions(+), 10 deletions(-)
> 
> diff --git a/arch/arm/lib/barebox.lds.S b/arch/arm/lib/barebox.lds.S
> index e0bae70..ae0b760 100644
> --- a/arch/arm/lib/barebox.lds.S
> +++ b/arch/arm/lib/barebox.lds.S
> @@ -70,7 +70,9 @@ SECTIONS
>  		__stop_unwind_tab = .;
>  	}
>  #endif
> -	_etext = .;			/* End of text and rodata section */
> +	_etext = . - 1;			/* End of text and rodata section */

I am not sure this is a good idea. Looking at it this indeed seems to be
correct. Anyway, at least in the Linux kernel I can find things like:

	codesize = (unsigned long)_etext - (unsigned long)_text;

If we have _etext = . the above results in the correct codesize, but if
we change this to _etext = . - 1 we would have to do

	codesize = (unsigned long)_etext - (unsigned long)_text + 1;

instead.

Everyone else including the kernel and the standard linker scripts from
ld have _etext = .; so I vote for keeping it that way.


> @@ -83,6 +85,8 @@ SECTIONS
>  	__usymtab : { BAREBOX_SYMS }
>  	___usymtab_end = .;
>  
> +	_edata - . -1;

s/-/=/

Sascha

-- 
Pengutronix e.K.                           |                             |
Industrial Linux Solutions                 | http://www.pengutronix.de/  |
Peiner Str. 6-8, 31137 Hildesheim, Germany | Phone: +49-5121-206917-0    |
Amtsgericht Hildesheim, HRA 2686           | Fax:   +49-5121-206917-5555 |

_______________________________________________
barebox mailing list
barebox@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/barebox

^ permalink raw reply	[flat|nested] 2+ messages in thread

* Re: [PATCH v3 0/5] rewritten memtest command
       [not found] <1346322594-21167-1-git-send-email-a.aring@phytec.de>
       [not found] ` <1346322594-21167-4-git-send-email-a.aring@phytec.de>
@ 2012-08-31  7:55 ` Sascha Hauer
  1 sibling, 0 replies; 2+ messages in thread
From: Sascha Hauer @ 2012-08-31  7:55 UTC (permalink / raw)
  To: Alexander Aring; +Cc: barebox

Hi Alexander,

Apart from the comment I made the series looks good to me.

Sascha

On Thu, Aug 30, 2012 at 12:29:49PM +0200, Alexander Aring wrote:
> Rewritten memtest command.
> Added new section data which is between text and bss.
> Only tested on arm architecture.
> 
> Alexander Aring (5):
>   mmu: make remap_range global accessable
>   memory: add function address_in_sdram_regions
>   barebox-data: add barebox-data sections
>   memtest: remove memtest command
>   memtest: add rewritten memtest command
> 
>  arch/arm/cpu/mmu.c                               |    4 +-
>  arch/arm/include/asm/mmu.h                       |   13 +
>  arch/arm/lib/barebox.lds.S                       |    6 +-
>  arch/blackfin/boards/ipe337/barebox.lds.S        |    6 +-
>  arch/blackfin/include/asm/mmu.h                  |   15 +
>  arch/mips/include/asm/mmu.h                      |   15 +
>  arch/mips/lib/barebox.lds.S                      |    5 +-
>  arch/nios2/cpu/barebox.lds.S                     |    5 +-
>  arch/nios2/include/asm/mmu.h                     |   15 +
>  arch/openrisc/include/asm/mmu.h                  |   15 +
>  arch/ppc/boards/freescale-p2020rdb/barebox.lds.S |    6 +-
>  arch/ppc/boards/pcm030/barebox.lds.S             |    5 +-
>  arch/ppc/include/asm/mmu.h                       |   10 +
>  arch/x86/include/asm/mmu.h                       |   15 +
>  arch/x86/lib/barebox.lds.S                       |    5 +-
>  commands/Kconfig                                 |   11 +-
>  commands/Makefile                                |    2 +-
>  commands/memtest.c                               |  850 +++++++++++++++-------
>  common/memory.c                                  |   17 +
>  include/asm-generic/sections.h                   |    1 +
>  include/common.h                                 |    3 +
>  include/memory.h                                 |    6 +
>  22 files changed, 732 insertions(+), 298 deletions(-)
>  create mode 100644 arch/blackfin/include/asm/mmu.h
>  create mode 100644 arch/mips/include/asm/mmu.h
>  create mode 100644 arch/nios2/include/asm/mmu.h
>  create mode 100644 arch/openrisc/include/asm/mmu.h
>  create mode 100644 arch/x86/include/asm/mmu.h
> 
> 

-- 
Pengutronix e.K.                           |                             |
Industrial Linux Solutions                 | http://www.pengutronix.de/  |
Peiner Str. 6-8, 31137 Hildesheim, Germany | Phone: +49-5121-206917-0    |
Amtsgericht Hildesheim, HRA 2686           | Fax:   +49-5121-206917-5555 |

_______________________________________________
barebox mailing list
barebox@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/barebox

^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2012-08-31  7:55 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
     [not found] <1346322594-21167-1-git-send-email-a.aring@phytec.de>
     [not found] ` <1346322594-21167-4-git-send-email-a.aring@phytec.de>
2012-08-31  7:51   ` [PATCH 3/5] barebox-data: add barebox-data sections Sascha Hauer
2012-08-31  7:55 ` [PATCH v3 0/5] rewritten memtest command Sascha Hauer

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox