Commit Graph

623 Commits

Author SHA1 Message Date
Sebastian Huber
f3da074a12 bsp/riscv: Add new BSP variants
The latest RISC-V tool chain introduced new multilib variants. Add
corresponding BSP variants.

Update #3433.
2018-06-27 08:58:17 +02:00
Sebastian Huber
6f5d88a469 bsp/riscv_generic: Rename to "riscv"
Update #3433.
2018-06-27 08:58:17 +02:00
Sebastian Huber
41e22955ca bsp/riscv_generic: Use standard optimization flags
Update #3433.
2018-06-27 08:58:17 +02:00
Hesham Almatary
92388f6941 bsps/riscv_generic: Rename and add variants
Add BSP variants to match supported RISC-V ISA variants (multilibs).
2018-06-27 08:58:17 +02:00
Sebastian Huber
9e3bb457e6 bsp/riscv_generic: New linker command file
This linker command file is based on the "riscv64-rtems5-ld --verbose"
output.

Update #3433.
2018-06-27 08:58:17 +02:00
Sebastian Huber
511dc4b2be Rework initialization and interrupt stack support
Statically initialize the interrupt stack area
(_Configuration_Interrupt_stack_area_begin,
_Configuration_Interrupt_stack_area_end, and
_Configuration_Interrupt_stack_size) via <rtems/confdefs.h>.  Place the
interrupt stack area in a special section ".rtemsstack.interrupt".  Let
BSPs define the optimal placement of this section in their linker
command files (e.g. in a fast on-chip memory).

This change makes makes the CPU_HAS_SOFTWARE_INTERRUPT_STACK and
CPU_HAS_HARDWARE_INTERRUPT_STACK CPU port defines superfluous, since the
low level initialization code has all information available via global
symbols.

This change makes the CPU_ALLOCATE_INTERRUPT_STACK CPU port define
superfluous, since the interrupt stacks are allocated by confdefs.h for
all architectures.  There is no need for BSP-specific linker command
file magic (except the section placement), see previous ARM linker
command file as a bad example.

Remove _CPU_Install_interrupt_stack().  Initialize the hardware
interrupt stack in _CPU_Initialize() if necessary (e.g.
m68k_install_interrupt_stack()).

The optional _CPU_Interrupt_stack_setup() is still useful to customize
the registration of the interrupt stack area in the per-CPU information.

The initialization stack can reuse the interrupt stack, since

  * interrupts are disabled during the sequential system initialization,
    and

  * the boot_card() function does not return.

This stack resuse saves memory.

Changes per architecture:

arm:

  * Mostly replace the linker symbol based configuration of stacks with
    the standard <rtems/confdefs.h> configuration via
    CONFIGURE_INTERRUPT_STACK_SIZE.  The size of the FIQ, ABT and UND
    mode stack is still defined via linker symbols.  These modes are
    rarely used in applications and the default values provided by the
    BSP should be sufficient in most cases.

  * Remove the bsp_processor_count linker symbol hack used for the SMP
    support. This is possible since the interrupt stack area is now
    allocated by the linker and not allocated from the heap.  This makes
    some configure.ac stuff obsolete.  Remove the now superfluous BSP
    variants altcycv_devkit_smp and realview_pbx_a9_qemu_smp.

bfin:

  * Remove unused magic linker command file allocation of initialization
    stack.  Maybe a previous linker command file copy and paste problem?
    In the start.S the initialization stack is set to a hard coded value.

lm32, m32c, mips, nios2, riscv, sh, v850:

  * Remove magic linker command file allocation of initialization stack.
    Reuse interrupt stack for initialization stack.

m68k:

  * Remove magic linker command file allocation of initialization stack.
    Reuse interrupt stack for initialization stack.

powerpc:

  * Remove magic linker command file allocation of initialization stack.
    Reuse interrupt stack for initialization stack.

  * Used dedicated memory region (REGION_RTEMSSTACK) for the interrupt
    stack on BSPs using the shared linkcmds.base (replacement for
    REGION_RWEXTRA).

sparc:

  * Remove the hard coded initialization stack.  Use the interrupt stack
    for the initialization stack on the boot processor.  This saves
    16KiB of RAM.

Update #3459.
2018-06-27 08:58:16 +02:00
Sebastian Huber
715d6167e0 bsps: Support .rtemsstack.* linker input sections
Use a dedicated memory region or place it between the BSS and workspace.

Update #3459.
2018-06-27 08:58:16 +02:00
Sebastian Huber
7ee5931393 Remove Clock_driver_support_shutdown_hardware()
The aim of this clock driver hook was to stop clock tick interrupts at
some late point in the exit() procedure.

The use of atexit() pulls in malloc() which pulls in errno. It is
incompatible with the intention of the
CONFIGURE_DISABLE_NEWLIB_REENTRANCY configuration option.

The exit() function must be called from thread context, so accompanied
clock tick interrupts should cause no harm.  On the contrary, someone
may assume a normal operating system operation, e.g. working timeouts.

Remove the Clock_driver_support_shutdown_hardware() clock driver hook.

Close #3436.
2018-06-27 08:58:16 +02:00
Sebastian Huber
b0c3ba2f84 bsps: Remove superfluous bsp_processor_count
This is unused copy and paste stuff.

Update #3459.
2018-06-19 15:26:13 +02:00
Sebastian Huber
762fa62cca arm: Simplify CPU counter support
Use the standard ARMv7-M systick module for the ARMv7-M CPU counter
instead of DWT counter since the DWT counter is affected by power saving
states.

Use an inline function for _CPU_Counter_difference() for all ARM BSPs.

Update #3456.
2018-06-15 13:12:05 +02:00
Sebastian Huber
65f868cac6 Add _CPU_Counter_frequency()
Add rtems_counter_frequency() API function.  Use it to initialize the
counter value converter via the new system initialization step
(RTEMS_SYSINIT_CPU_COUNTER).  This decouples the counter implementation
and the counter converter.  It avoids an unnecessary pull in of the
64-bit integer division from libgcc.

Update #3456.
2018-06-15 13:02:44 +02:00
Sebastian Huber
1f283f17a8 bsp/beatnik: Remove CFLAGS_DEBUG_V
This was the only BSP setting this flag.
2018-06-15 12:57:32 +02:00
Sebastian Huber
e8b28ba004 tools: Remove packhex
All tools should be removed from the RTEMS source repository at some
point in time.  Tools with a BSD-style license will be moved to the
RTEMS tools repository.  Unfortunately, this tool has no license
information.

Remove all uses of this tool from the code base.  Users of HEX files
should consider to use ELF instead.

Close #3379.
2018-06-15 07:14:36 +02:00
Sebastian Huber
8c62cf4209 tools: Remove shgen
All tools should be removed from the RTEMS source repository at some
point in time. Tools with a BSD-style license will be moved to the RTEMS
tools repository. Unfortunately, the shgen tool is GPL licensed.

Remove all uses of this tool from the code base. Replace generated files
with stub functions. If users of this BSP still exist, they can
reimplement the functionality using a BSD-style license.

Close #3443.
2018-06-11 14:47:32 +02:00
Sebastian Huber
5249a4cc28 powerpc: Fix ss555 build
The mpc555 define is provided via <bspopts.h>.  It must not be used in
cpukit header files.

Update #3425.
2018-06-07 07:42:35 +02:00
Sebastian Huber
07c597636a bsps/powerpc: Hack to fix the build
The ppc405 define must be checked before the ppc403 define.  The ppc405
define is provided by <bspopts.h>.  The ppc403 define is provided by GCC
as a built-in define if no ppc* or mpc* define is set via the
command line (see GCC sources "gcc/config/rs6000/rtems.h").

Update #3425.
2018-06-07 07:00:34 +02:00
Sebastian Huber
dea4bbe374 bsps: Avoid malloc() in generic IRQ support
Use rtems_heap_allocate_aligned_with_boundary() instead of malloc() to
avoid a dependency on errno.
2018-06-05 07:08:40 +02:00
Christian Mauderer
4b3c8b82a9 bsp/atsam: Remove side effect from gmac functions.
Quite a number of GMAC_... functions had a side effect of enabling the
transmit and receive. During the initialization of the ethernet driver,
that lead to the situation that the receive has been already enabled
while the DMA isn't set up correctly. Therefore the DMA interpreted the
values at address 0 as an DMA descriptor. When a packet is received
during that time, the behaviour is quite undefined.
2018-05-30 08:45:57 +02:00
Sebastian Huber
3b2817b6e5 gumstix: Remove CONFIGURE_INTERRUPT_STACK_MEMORY
This define is not supported by confdefs.h.  In addition, on ARM the
interrupt stack size is defined by the linker command file.
2018-05-25 10:22:32 +02:00
Christian Mauderer
ef61d892a4 bsp/atsam: Reserve one region for applications.
This allows a user to overwrite some MPU settings. That can for example
be usefull for devices with special requirements that are connected to
the external bus interface.
2018-05-25 07:09:09 +02:00
Joel Sherrill
eaf5bec4cd virtex5: Move -Dxxx to configure.ac
Updates #3425.
2018-05-18 08:22:35 -05:00
Joel Sherrill
17f69e4da2 virtex4: Move -Dxxx to configure.ac
Updates #3425.
2018-05-18 08:22:35 -05:00
Joel Sherrill
4afc1efa7d virtex: Move -Dxxx to configure.ac
Updates #3425.
2018-05-18 08:22:34 -05:00
Joel Sherrill
3d43c475d6 tqm8xx: Move -Dxxx to configure.ac
Updates #3425.
2018-05-18 08:22:34 -05:00
Joel Sherrill
3274ec7577 t32mppc: Move -Dxxx to configure.ac
Updates #3425.
2018-05-18 08:22:34 -05:00
Joel Sherrill
c20001c4fc ss555: Move -Dxxx to configure.ac
Updates #3425.
2018-05-18 08:22:34 -05:00
Joel Sherrill
1a418189de qoriq: Move -Dxxx to configure.ac
Updates #3425.
2018-05-18 08:22:34 -05:00
Joel Sherrill
b06e8d6132 qemuppc: Move -Dxxx to configure.ac
Updates #3425.
2018-05-18 08:22:33 -05:00
Joel Sherrill
c3b609d51c psim: Move -Dxxx to configure.ac
Updates #3425.
2018-05-18 08:22:33 -05:00
Joel Sherrill
beb44685af mvme5500: Move -Dxxx to configure.ac
Updates #3425.
2018-05-18 08:22:33 -05:00
Joel Sherrill
5aa8ac2c9d mvme3100: Move -Dxxx to configure.ac
Updates #3425.
2018-05-18 08:22:33 -05:00
Joel Sherrill
a03f73c13f mpc8260ads: Move -Dxxx to configure.ac
Updates #3425.
2018-05-18 08:22:32 -05:00
Joel Sherrill
1e84462d9d mpc55xxevb: Move -Dxxx to configure.ac
Updates #3425.
2018-05-18 08:22:32 -05:00
Joel Sherrill
2261ef2813 motorola_powerpc: Move -Dxxx to configure.ac
Updates #3425.
2018-05-18 08:22:32 -05:00
Joel Sherrill
01da0ac3b9 haleakala: Move -Dxxx to configure.ac
Updates #3425.
2018-05-18 08:22:32 -05:00
Joel Sherrill
b1b5afbab2 beatnik: Move -Dxxx to configure.ac
Updates #3425.
2018-05-18 08:22:32 -05:00
Sebastian Huber
7bf072bbb8 bsp/powerpc: Remove wildcards in linkcmds.base
This reverts commit 40c623a883.

The use of postfix wildcards, e.g. of the form "*.x" is dangerous since
it circumvents the standard matching rules for sections.

Unknown input sections should be added explicitly to the desired output
section via "x.*" wildcards.

Update #3307.
2018-05-18 10:44:18 +02:00
Sebastian Huber
c4d35fb6c8 libchip: Use rtems_blkdev_create()
Update #3358.
2018-05-18 10:44:18 +02:00
Joel Sherrill
a3fe23ccbb Drop executable permissions on .[S] files 2018-05-14 15:22:52 -05:00
Joel Sherrill
c8dcdf5438 sparc64 niagara, usiii: Remove -D options from cfg file and move to bspopts.h
Updates #3425.
2018-05-09 15:22:04 -05:00
Joel Sherrill
85602e0d2e smdk2410: Move define of CPU_S3C2410 to bspopts.h
Updates #3425.
2018-05-09 14:47:37 -05:00
Joel Sherrill
2a1171d8c8 rtl22xx_t.cfg: Remove comment with -D __THUMB_INTERWORK__
Updates #3425.
2018-05-08 17:34:56 -05:00
Joel Sherrill
c77cd426f8 Drop executable permissions on .[ch] files 2018-04-30 17:18:49 -05:00
Sebastian Huber
3d703f40d5 bsp/pc386: Remove bin2boot support
Update #3408.
Close #3410.
2018-04-27 07:11:58 +02:00
Sebastian Huber
419d1e91a2 bsp/mcf5206elite: Do not install runtest script
Provide the runtest script only as a part of the sources.  This
simplifies the build system.

Test support should be included in the RTEMS Tester.
2018-04-26 07:17:58 +02:00
Sebastian Huber
eb36d1198c bsps: Move documentation, etc. files to bsps
This patch is a part of the BSP source reorganization.

Update #3285.
2018-04-26 07:17:57 +02:00
Sebastian Huber
1554415ee8 bsp/sparc64: Move asm.S to bsps and rename
This patch is a part of the BSP source reorganization.

Update #3285.
2018-04-26 07:17:57 +02:00
Sebastian Huber
a5bf9b66b0 bsps/mips: Move liblnk to bsps
This patch is a part of the BSP source reorganization.

Update #3285.
2018-04-26 07:17:57 +02:00
Sebastian Huber
3460c52286 bsps/powerpc: Move bsp-start-zero.S to bsps
This patch is a part of the BSP source reorganization.

Update #3285.
2018-04-26 07:17:57 +02:00
Sebastian Huber
b80be13550 bsp/psim: Move align_h.S to bsps
This patch is a part of the BSP source reorganization.

Update #3285.
2018-04-26 07:17:56 +02:00