libdl: Add small data support to the remaining PowerPC BSPs.

Updates #3687
This commit is contained in:
Chris Johns
2019-03-06 21:15:56 +11:00
parent 96e4b22312
commit ec1dd51aae
8 changed files with 144 additions and 42 deletions

View File

@@ -27,6 +27,15 @@ RamBase = bsp_ram_start;
RamSize = bsp_ram_size; RamSize = bsp_ram_size;
HeapSize = DEFINED(HeapSize) ? HeapSize : 0x0; HeapSize = DEFINED(HeapSize) ? HeapSize : 0x0;
/*
* The upper layer linker command file may optionally define the symbol
* bsp_section_small_data_area_size. By default, the small data area is
* defined by the .sdata and .sbss input sections. Define
* bsp_section_small_data_area_size, if you want to make space available for
* dynamically loaded libraries (libdl). Small memory targets which do not use
* libdl, should not define this symbol.
*/
MEMORY { MEMORY {
UNEXPECTED_SECTIONS : ORIGIN = 0xffffffff, LENGTH = 0 UNEXPECTED_SECTIONS : ORIGIN = 0xffffffff, LENGTH = 0
} }
@@ -233,6 +242,7 @@ SECTIONS {
} > RAM } > RAM
.sdata : { .sdata : {
bsp_section_sdata_begin = .;
PROVIDE (_SDA_BASE_ = 32768); PROVIDE (_SDA_BASE_ = 32768);
*(.sdata .sdata.* .gnu.linkonce.s.*) *(.sdata .sdata.* .gnu.linkonce.s.*)
@@ -245,13 +255,14 @@ SECTIONS {
* BSP: End of data section * BSP: End of data section
*/ */
bsp_section_data_end = .; bsp_section_data_end = .;
bsp_section_sdata_end = .;
} > RAM } > RAM
.sbss : { .sbss : {
/* /*
* BSP: Start of bss section * BSP: Start of bss section
*/ */
bsp_section_bss_start = .; bsp_section_sbss_begin = .;
__bss_start = .; __bss_start = .;
@@ -260,11 +271,17 @@ SECTIONS {
*(.dynsbss) *(.dynsbss)
*(.sbss .sbss.* .gnu.linkonce.sb.*) *(.sbss .sbss.* .gnu.linkonce.sb.*)
PROVIDE (__sbss_end = .); PROVIDE (___sbss_end = .); PROVIDE (__sbss_end = .); PROVIDE (___sbss_end = .);
bsp_section_sbss_end = .;
bsp_section_sdata_libdl_begin = .;
. = DEFINED(bsp_section_small_data_area_size) ?
bsp_section_sdata_begin + bsp_section_small_data_area_size : .;
bsp_section_sdata_libdl_end = .;
. = ALIGN (bsp_section_align); . = ALIGN (bsp_section_align);
} > RAM } > RAM
.bss : { .bss : {
bsp_section_bss_start = .;
*(COMMON) *(COMMON)
*(.dynbss) *(.dynbss)
*(.bss .bss.* .gnu.linkonce.b.*) *(.bss .bss.* .gnu.linkonce.b.*)

View File

@@ -24,6 +24,10 @@ MEMORY {
/*FLASH : ORIGIN = 0xFFE00000, LENGTH = 16M*/ /*FLASH : ORIGIN = 0xFFE00000, LENGTH = 16M*/
} }
/*
* Max sdata/bss.
*/
bsp_section_small_data_area_size = 65536;
SECTIONS SECTIONS
{ {
@@ -217,19 +221,27 @@ SECTIONS
.sdata : { .sdata : {
. = ALIGN (4); . = ALIGN (4);
PROVIDE (__SDATA_START__ = .); PROVIDE (__SDATA_START__ = .);
bsp_section_sdata_begin = .;
sdata.start = .; sdata.start = .;
*(.sdata*) *(.sdata*)
*(.gnu.linkonce.s.*) *(.gnu.linkonce.s.*)
sdata.end = .; sdata.end = .;
bsp_section_sdata_end = .;
} > RAM } > RAM
/* Zeroed small data addressed as offsets from r13 */ /* Zeroed small data addressed as offsets from r13 */
.sbss : { .sbss : {
. = ALIGN (4); . = ALIGN (4);
PROVIDE(__SBSS_START__ = .); PROVIDE(__SBSS_START__ = .);
bsp_section_sbss_begin = .;
sbss.start = .; sbss.start = .;
*(.sbss .sbss.* *.gnu.linkonce.sb.*); *(.sbss .sbss.* *.gnu.linkonce.sb.*);
sbss.end = .; sbss.end = .;
bsp_section_sbss_end = .;
bsp_section_sdata_libdl_begin = .;
. = DEFINED(bsp_section_small_data_area_size) ?
bsp_section_sdata_begin + bsp_section_small_data_area_size : .;
bsp_section_sdata_libdl_end = .;
} > RAM } > RAM
PROVIDE(__SBSS_END__ = .); PROVIDE(__SBSS_END__ = .);

View File

@@ -229,18 +229,26 @@ SECTIONS
PROVIDE (__FIXUP_END__ = .); PROVIDE (__FIXUP_END__ = .);
.sdata : { .sdata : {
bsp_section_sdata_begin = .;
PROVIDE (_SDA_BASE_ = 32768); PROVIDE (_SDA_BASE_ = 32768);
*(.sdata .sdata.* .gnu.linkonce.s.*) *(.sdata .sdata.* .gnu.linkonce.s.*)
} > ram bsp_section_sdata_end = .;
} > ram
.sbss : { .sbss : {
__bss_start = .; __bss_start = .;
bsp_section_sbss_begin = .;
PROVIDE (__sbss_start = .); PROVIDE (___sbss_start = .); PROVIDE (__sbss_start = .); PROVIDE (___sbss_start = .);
*(.scommon) *(.scommon)
*(.dynsbss) *(.dynsbss)
*(.sbss .sbss.* .gnu.linkonce.sb.*) *(.sbss .sbss.* .gnu.linkonce.sb.*)
PROVIDE (__sbss_end = .); PROVIDE (___sbss_end = .); PROVIDE (__sbss_end = .); PROVIDE (___sbss_end = .);
bsp_section_sbss_end = .;
bsp_section_sdata_libdl_begin = .;
. = DEFINED(bsp_section_small_data_area_size) ?
bsp_section_sdata_begin + bsp_section_small_data_area_size : .;
bsp_section_sdata_libdl_end = .;
} > ram } > ram
.sdata2 : { .sdata2 : {

View File

@@ -1,12 +1,23 @@
OUTPUT_FORMAT("elf32-powerpc", "elf32-powerpc", OUTPUT_FORMAT("elf32-powerpc", "elf32-powerpc",
"elf32-powerpc") "elf32-powerpc")
OUTPUT_ARCH(powerpc) OUTPUT_ARCH(powerpc)
/* Do we need any of these for elf? /* Do we need any of these for elf?
__DYNAMIC = 0; */ __DYNAMIC = 0; */
MEMORY { MEMORY {
VECTORS : ORIGIN = 0x0 , LENGTH = 0x3000 VECTORS : ORIGIN = 0x0 , LENGTH = 0x3000
CODE : ORIGIN = 0x3000 , LENGTH = 32M - 0x3000 CODE : ORIGIN = 0x3000 , LENGTH = 32M - 0x3000
} }
/*
* The upper layer linker command file may optionally define the symbol
* bsp_section_small_data_area_size. By default, the small data area is
* defined by the .sdata and .sbss input sections. Define
* bsp_section_small_data_area_size, if you want to make space available for
* dynamically loaded libraries (libdl). Small memory targets which do not use
* libdl, should not define this symbol.
*/
SECTIONS SECTIONS
{ {
.entry_point_section : .entry_point_section :
@@ -215,11 +226,17 @@ SECTIONS
/* We want the small data sections together, so single-instruction offsets /* We want the small data sections together, so single-instruction offsets
can access them all, and initialized data all before uninitialized, so can access them all, and initialized data all before uninitialized, so
we can shorten the on-disk segment size. */ we can shorten the on-disk segment size. */
.sdata : { PROVIDE (_SDA_BASE_ = 32768); *(.sdata*) *(.gnu.linkonce.s.*) } >CODE .sdata : {
bsp_section_sdata_begin = .;
PROVIDE (_SDA_BASE_ = 32768);
*(.sdata*) *(.gnu.linkonce.s.*)
bsp_section_sdata_end = .;
} > CODE
_edata = .; _edata = .;
PROVIDE (edata = .); PROVIDE (edata = .);
.sbss : .sbss :
{ {
bsp_section_sbss_begin = .;
PROVIDE (__sbss_start = .); PROVIDE (__sbss_start = .);
*(.dynsbss) *(.dynsbss)
*(.sbss* .gnu.linkonce.sb.*) *(.sbss* .gnu.linkonce.sb.*)
@@ -230,6 +247,11 @@ SECTIONS
. += 1; . += 1;
PROVIDE (__SBSS_END__ = .); PROVIDE (__SBSS_END__ = .);
PROVIDE (__sbss_end = .); PROVIDE (__sbss_end = .);
bsp_section_sbss_end = .;
bsp_section_sdata_libdl_begin = .;
. = DEFINED(bsp_section_small_data_area_size) ?
bsp_section_sdata_begin + bsp_section_small_data_area_size : .;
bsp_section_sdata_libdl_end = .;
} > CODE } > CODE
.plt : { *(.plt) } > CODE .plt : { *(.plt) } > CODE
.bss : .bss :

View File

@@ -204,9 +204,11 @@ SECTIONS
* offsets can access them all. * offsets can access them all.
*/ */
PROVIDE (__SDATA2_START__ = .); PROVIDE (__SDATA2_START__ = .);
bsp_section_sdata_begin = .;
*(.sdata2 .sdata2.* .gnu.linkonce.s2.*) *(.sdata2 .sdata2.* .gnu.linkonce.s2.*)
*(.sbss2 .sbss2.* .gnu.linkonce.sb2.*) *(.sbss2 .sbss2.* .gnu.linkonce.sb2.*)
PROVIDE (__SDATA2_END__ = .); PROVIDE (__SDATA2_END__ = .);
bsp_section_sdata_end = .;
data.end = .; data.end = .;
} }
@@ -216,10 +218,16 @@ SECTIONS
.sbss : .sbss :
{ {
PROVIDE (__sbss_start = .); PROVIDE (___sbss_start = .); PROVIDE (__sbss_start = .); PROVIDE (___sbss_start = .);
bsp_section_sbss_begin = .;
*(.dynsbss) *(.dynsbss)
*(.sbss .sbss.* .gnu.linkonce.sb.*) *(.sbss .sbss.* .gnu.linkonce.sb.*)
*(.scommon) *(.scommon)
PROVIDE (__sbss_end = .); PROVIDE (___sbss_end = .); PROVIDE (__sbss_end = .); PROVIDE (___sbss_end = .);
bsp_section_sbss_end = .;
bsp_section_sdata_libdl_begin = .;
. = DEFINED(bsp_section_small_data_area_size) ?
bsp_section_sdata_begin + bsp_section_small_data_area_size : .;
bsp_section_sdata_libdl_end = .;
} }
.bss : .bss :
{ {

View File

@@ -209,13 +209,18 @@ SECTIONS
* we can shorten the on-disk segment size. * we can shorten the on-disk segment size.
*/ */
/* Initialised small data addressed as offsets from r13 */ /* Initialised small data addressed as offsets from r13 */
.sdata : { PROVIDE (_SDA_BASE_ = 32768); *(.sdata* .gnu.linkonce.s.*) } > RAM .sdata : {
bsp_section_sdata_begin = .;
PROVIDE (_SDA_BASE_ = 32768); *(.sdata* .gnu.linkonce.s.*);
bsp_section_sdata_end = .;
} > RAM
_edata = .; _edata = .;
PROVIDE (edata = .); PROVIDE (edata = .);
/* Zeroed small data addressed as offsets from r13 */ /* Zeroed small data addressed as offsets from r13 */
.sbss : { PROVIDE (__sbss_start = .); .sbss : { PROVIDE (__sbss_start = .);
bsp_section_sbss_begin = .;
*(.dynsbss) *(.dynsbss)
*(.sbss*) *(.sbss*)
*(.gnu.linkonce.sb.*) *(.gnu.linkonce.sb.*)
@@ -228,6 +233,11 @@ SECTIONS
PROVIDE (__SBSS_END__ = .); PROVIDE (__SBSS_END__ = .);
PROVIDE (__sbss_end = .); PROVIDE (__sbss_end = .);
bsp_section_sbss_end = .;
bsp_section_sdata_libdl_begin = .;
. = DEFINED(bsp_section_small_data_area_size) ?
bsp_section_sdata_begin + bsp_section_small_data_area_size : .;
bsp_section_sdata_libdl_end = .;
} > RAM } > RAM
.plt : { *(.plt) } > RAM .plt : { *(.plt) } > RAM

View File

@@ -209,13 +209,18 @@ SECTIONS
* we can shorten the on-disk segment size. * we can shorten the on-disk segment size.
*/ */
/* Initialised small data addressed as offsets from r13 */ /* Initialised small data addressed as offsets from r13 */
.sdata : { PROVIDE (_SDA_BASE_ = 32768); *(.sdata* .gnu.linkonce.s.*) } > RAM .sdata : {
bsp_section_sdata_begin = .;
PROVIDE (_SDA_BASE_ = 32768); *(.sdata* .gnu.linkonce.s.*);
bsp_section_sdata_end = .;
} > RAM
_edata = .; _edata = .;
PROVIDE (edata = .); PROVIDE (edata = .);
/* Zeroed small data addressed as offsets from r13 */ /* Zeroed small data addressed as offsets from r13 */
.sbss : { PROVIDE (__sbss_start = .); .sbss : { PROVIDE (__sbss_start = .);
bsp_section_sbss_begin = .;
*(.dynsbss) *(.dynsbss)
*(.sbss*) *(.sbss*)
*(.gnu.linkonce.sb.*) *(.gnu.linkonce.sb.*)
@@ -228,6 +233,11 @@ SECTIONS
PROVIDE (__SBSS_END__ = .); PROVIDE (__SBSS_END__ = .);
PROVIDE (__sbss_end = .); PROVIDE (__sbss_end = .);
bsp_section_sbss_end = .;
bsp_section_sdata_libdl_begin = .;
. = DEFINED(bsp_section_small_data_area_size) ?
bsp_section_sdata_begin + bsp_section_small_data_area_size : .;
bsp_section_sdata_libdl_end = .;
} > RAM } > RAM
.plt : { *(.plt) } > RAM .plt : { *(.plt) } > RAM

View File

@@ -50,11 +50,16 @@ get_sda_base (void)
static void* static void*
get_sdata_start (void) get_sdata_start (void)
{ {
#if _ARCH_PPC64
return NULL;
#else
Elf_Addr addr; Elf_Addr addr;
GET_ADDR(__SDATA_START__, addr); GET_ADDR(__SDATA_START__, addr);
return (void*) addr; return (void*) addr;
#endif
} }
#if !_ARCH_PPC64
static size_t static size_t
get_sdata_sbss_size (void) get_sdata_sbss_size (void)
{ {
@@ -74,6 +79,7 @@ get_sdata_libdl_size (void)
GET_ADDR(bsp_section_sdata_libdl_end, end); GET_ADDR(bsp_section_sdata_libdl_end, end);
return end - begin; return end - begin;
} }
#endif
uint32_t uint32_t
rtems_rtl_elf_section_flags (const rtems_rtl_obj* obj, rtems_rtl_elf_section_flags (const rtems_rtl_obj* obj,
@@ -89,6 +95,7 @@ rtems_rtl_elf_arch_parse_section (const rtems_rtl_obj* obj,
const Elf_Shdr* shdr, const Elf_Shdr* shdr,
const uint32_t flags) const uint32_t flags)
{ {
#if !_ARCH_PPC64
struct { struct {
const char* label; const char* label;
size_t len; size_t len;
@@ -104,6 +111,7 @@ rtems_rtl_elf_arch_parse_section (const rtems_rtl_obj* obj,
if (strncmp (name, prefix[p].label, prefix[p].len) == 0) if (strncmp (name, prefix[p].label, prefix[p].len) == 0)
return flags | RTEMS_RTL_OBJ_SECT_ARCH_ALLOC; return flags | RTEMS_RTL_OBJ_SECT_ARCH_ALLOC;
} }
#endif
return flags; return flags;
} }
@@ -111,6 +119,10 @@ bool
rtems_rtl_elf_arch_section_alloc (const rtems_rtl_obj* obj, rtems_rtl_elf_arch_section_alloc (const rtems_rtl_obj* obj,
rtems_rtl_obj_sect* sect) rtems_rtl_obj_sect* sect)
{ {
#if _ARCH_PPC64
rtems_rtl_set_error (ENOMEM, ".sdata no supported by ABI");
return false;
#else
if (rtems_rtl_trace (RTEMS_RTL_TRACE_DETAIL)) if (rtems_rtl_trace (RTEMS_RTL_TRACE_DETAIL))
printf ("rtl: section: arch: alloc: name=%s size=%zu flags=%08" PRIx32 \ printf ("rtl: section: arch: alloc: name=%s size=%zu flags=%08" PRIx32 \
" order=%i link=%d info=%d\n", " order=%i link=%d info=%d\n",
@@ -138,16 +150,19 @@ rtems_rtl_elf_arch_section_alloc (const rtems_rtl_obj* obj,
} }
return true; return true;
#endif
} }
bool bool
rtems_rtl_elf_arch_section_free (const rtems_rtl_obj* obj, rtems_rtl_elf_arch_section_free (const rtems_rtl_obj* obj,
rtems_rtl_obj_sect* sect) rtems_rtl_obj_sect* sect)
{ {
#if !_ARCH_PPC64
if (rtems_rtl_trace (RTEMS_RTL_TRACE_DETAIL)) if (rtems_rtl_trace (RTEMS_RTL_TRACE_DETAIL))
printf ("rtl: section: arch: free: name=%s size=%zu\n", sect->name, sect->size); printf ("rtl: section: arch: free: name=%s size=%zu\n", sect->name, sect->size);
if (sdata != NULL) if (sdata != NULL)
rtems_rtl_bit_alloc_bfree (sdata, sect->base, sect->size); rtems_rtl_bit_alloc_bfree (sdata, sect->base, sect->size);
#endif
return true; return true;
} }