summaryrefslogtreecommitdiff
path: root/cpukit/libmisc (follow)
AgeCommit message (Collapse)Author
2018-10-10build: Merge libmisc/Makefile.amSebastian Huber
2018-10-09build: Remove specialized CPPFLAGSSebastian Huber
2018-10-09shell: Use #include "..." for local header filesSebastian Huber
Update #3375.
2018-10-02Use rtems_task_exit()Sebastian Huber
Update #3530. Update #3533.
2018-09-24stackchk: Fix interrupt stack preparationSebastian Huber
We have to prepare the interrupt stack of each processor. Update #3459.
2018-09-21stackchk: Improve support for interrupt stacksSebastian Huber
Prepare the interrupt stack which may be used by the boot processor as initialization stack with the stack sanity pattern. Check the interrupt stack of the current processor in the thread begin and switch extension. Update #3459.
2018-09-21stackchk: Remove heap hackSebastian Huber
It is now guranteed that threads do not use a freed stack during termination.
2018-08-24capture: prevent unaligned access when reading timeDaniel Hellstrom
LLVM warns about this: cpukit/libmisc/capture/capture.c:405:30: warning: taking address of packed member 'time' of class or structure 'rtems_capture_record' may result in an unaligned pointer value [-Waddress-of-packed-member] rtems_capture_get_time (&in.time); And on sparc it generates an unaligned trap which makes smpcapture01 and smpcapture02 test to fail on sparc.
2018-07-30confdefs: Fix uniprocessor configurationSebastian Huber
Introduce a new internal define _CONFIGURE_MAXIMUM_PROCESSORS and ensure that it is _CONFIGURE_MAXIMUM_PROCESSORS > 1 only in SMP configurations. This avoids to allocate data structures for non-existing additional processors in uniprocessor configuration. Update #3459.
2018-06-27Rework initialization and interrupt stack supportSebastian Huber
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-20stackchk: Add SMP supportSebastian Huber
Check the interrupt stacks of all processors. Set up the interrupt stack of the current processor for high water testing in the thread begin extension. This must be done after multi-threading started, since the initialization stacks may reuse the interrupt stacks. Disable thread dispatching in SMP configurations to prevent thread migration. Writing to the interrupt stack is only safe if done from the corresponding processor in thread context. Update #3459.
2018-06-20stackchk: Refactor Stack_check_Dump_threads_usageSebastian Huber
Update #3459.
2018-06-20stackchk: Remove dead codeSebastian Huber
Update #3459.
2018-06-20config: SMP only CONFIGURE_MAXIMUM_PROCESSORSSebastian Huber
Do not set the CONFIGURE_MAXIMUM_PROCESSORS in uni-processor default configuration, since this may lead to an oversize workspace. Update #3459.
2018-04-04build: Remove EXTRA_DISTSebastian Huber
A "make dist" is not supported. So, it makes no sense to have pure "make dist" related stuff in the Makefile.am.
2018-03-12shell: Fix rtems_shell_init_env()Sebastian Huber
Do not discard a user provided task name in rtems_shell_init_env().
2018-02-08fdt: Use self-contained mutexSebastian Huber
Update #2843.
2018-02-07stdio-redirector: Use self-contained mutexSebastian Huber
Update #2843.
2018-02-02test: Add rtems_test_busy_cpu_usage()Sebastian Huber
2018-01-25Remove make preinstallChris Johns
A speciality of the RTEMS build system was the make preinstall step. It copied header files from arbitrary locations into the build tree. The header files were included via the -Bsome/build/tree/path GCC command line option. This has at least seven problems: * The make preinstall step itself needs time and disk space. * Errors in header files show up in the build tree copy. This makes it hard for editors to open the right file to fix the error. * There is no clear relationship between source and build tree header files. This makes an audit of the build process difficult. * The visibility of all header files in the build tree makes it difficult to enforce API barriers. For example it is discouraged to use BSP-specifics in the cpukit. * An introduction of a new build system is difficult. * Include paths specified by the -B option are system headers. This may suppress warnings. * The parallel build had sporadic failures on some hosts. This patch removes the make preinstall step. All installed header files are moved to dedicated include directories in the source tree. Let @RTEMS_CPU@ be the target architecture, e.g. arm, powerpc, sparc, etc. Let @RTEMS_BSP_FAMILIY@ be a BSP family base directory, e.g. erc32, imx, qoriq, etc. The new cpukit include directories are: * cpukit/include * cpukit/score/cpu/@RTEMS_CPU@/include * cpukit/libnetworking The new BSP include directories are: * bsps/include * bsps/@RTEMS_CPU@/include * bsps/@RTEMS_CPU@/@RTEMS_BSP_FAMILIY@/include There are build tree include directories for generated files. The include directory order favours the most general header file, e.g. it is not possible to override general header files via the include path order. The "bootstrap -p" option was removed. The new "bootstrap -H" option should be used to regenerate the "headers.am" files. Update #3254.
2018-01-22monitor: Fix thread priority valuesSebastian Huber
2018-01-22tests: Change TEST BUILD to use define namesSebastian Huber
2018-01-16testsupport/testbeginend.c: Fix redefined warningJoel Sherrill
2018-01-02sparc: Remove <bsp.h> from PCI shell commandSebastian Huber
Update #3254. Update #3260.
2017-12-14untar: ConstifySebastian Huber
2017-12-13uuid: Include <uuid/uuid.h>Sebastian Huber
Prepare for header file move to common include directory. Update #3254.
2017-12-13utf8proc: Include <utf8proc/utf8proc.h>Sebastian Huber
Prepare for header file move to common include directory. Update #3254.
2017-12-13redirector: Include <rtems/stdio-redirect.h>Sebastian Huber
Prepare for header file move to common include directory. Update #3254.
2017-12-13shell: Include <rtems/shell.h>Sebastian Huber
Prepare for header file move to common include directory. Update #3254.
2017-12-13monitor: Include <rtems/monitor.h>Sebastian Huber
Prepare for header file move to common include directory. Update #3254.
2017-12-13capture: Include <rtems/captureimpl.h>Sebastian Huber
Prepare for header file move to common include directory. Update #3254.
2017-12-07libmisc/stackchk/check.c: correct formatting of stack pointers in ↵Andrei Chichak
Stack_check_Dump_threads_usage Pointers were being printed as 0x<decimal> rather than 0x<hex>. I altered the formatting define used to give the correct formatting. Close #3240
2017-11-29testsupport/test.h: Add RTEMS_NO_RETURN to rtems_test_exit()Joel Sherrill
2017-11-11tests: Use ld to map (wrap) printf, puts and putchar to tester functions.Chris Johns
- Remove the macro defines and the need for tmacro.h by remapping the symbols using ld's wrap option. - Remove FLUSH_OUTPUT, it was empty. - Move rtems_test_exit to libmisc/testsupport as a function. Update #3199.
2017-11-11tests: Use rtems_test_begin and rtems_test_end.Chris Johns
Add a tests enum and move all test banner test to the library in libmisc. Update #3199.
2017-10-28tests: Move rtems_test_printer definitionSebastian Huber
Statically initialize it to use printk(). Update #3170. Update #3199.
2017-10-11xz/README: Correct URLJoel Sherrill
Closes #2829.
2017-09-28shell: Fix missing prototype warningSebastian Huber
2017-09-14libio: Avoid direct use of rtems_libio_iopsSebastian Huber
Update #3132.
2017-09-12serdbg: Fix warningSebastian Huber
Update #3122.
2017-09-12Simplify and unify BSP_output_charSebastian Huber
The BSP_output_char should output a char and not mingle with high level processing, e.g. '\n' to '\r\n' translation. Move this translation to rtems_putc(). Remove it from all the BSP_output_char implementations. Close #3122.
2017-08-25Include missing <limits.h>Sebastian Huber
Update #2132.
2017-08-25Include missing <string.h>Sebastian Huber
Update #2133.
2017-08-22heap: Fix integer typesSebastian Huber
Update #3082.
2017-08-20libmisc/rtems-fdt: Add RTEMS FDT wrapper and shell command to libmisc.Chris Johns
- Provide application support for handling FDT blobs in RTEMS. This is useful when interfacing FPGA fabrics. - Provide a shell command to list a blob as well as provide read and write access to addresses in the FTB. Closes #3099.
2017-08-14libmisc/shell: Make some internal shell functions public.Chris Johns
- Add 'rtems_shell_init_environment()' so a user can create the shell environment without needing to run a shell. - Move 'rtems_shell_lookup_topic', 'rtems_shell_can_see_cmd', and 'rtems_shell_execute_cmd' from the internal interface to the public interface. Closes #3096.
2017-07-28untar: Fix compile errorSebastian Huber
2017-07-28untar: Fix use of uninitialized variableSebastian Huber
2017-07-18dumpbuf: Simplify rtems_print_buffer()Sebastian Huber
This avoids an unnecessary use of the floating point unit. Update #3076.
2017-07-05xz: Suppress attribute warningsSebastian Huber
Update #2909.