summaryrefslogtreecommitdiffstats
path: root/spec (follow)
Commit message (Collapse)AuthorAgeFilesLines
* posix: Delete unused _POSIX_Fatal_error()Sebastian Huber2020-12-021-1/+0
|
* score: Delete empty pheapinit.cSebastian Huber2020-12-021-1/+0
|
* config: CONFIGURE_INIT_TASK_CONSTRUCT_STORAGE_SIZESebastian Huber2020-11-263-0/+22
| | | | | | | | | | In order to better support applications which use the new rtems_task_construct() directive add the CONFIGURE_INIT_TASK_CONSTURCT_STORAGE_SIZE configuration option. If this option is specified, then the Classic API initialization task is constructed with rtems_task_construct(). Update #4181.
* Avoid INTERNAL_ERROR_RTEMS_INIT_TASK_ENTRY_IS_NULLSebastian Huber2020-11-262-21/+0
| | | | | | | Replace a runtime check with a compile time assertion. This makes the INTERNAL_ERROR_RTEMS_INIT_TASK_ENTRY_IS_NULL obsolete. Update #4181.
* spec/a53: Set conditionally failing test stateKinsey Moore2020-11-241-14/+22
| | | | | | | | | | The spintrcritical03-05 and psx12 tests are known to fail on Qemu when the host system is heavily loaded. A single run of Qemu per core during a testsuite run tends to yield positive results, but any additional load on a system will result in test failures. This patch also applies the correct expected test state for intermittent failures so that those tests will still build.
* spec/aarch64: Only apply SUBALIGN(4) to ILP32Kinsey Moore2020-11-231-0/+1
| | | | | | | The SUBALIGN(4) required on rtemsroset and rtemsrwset for ILP32 builds was previously present on LP64 builds and causes no issues within RTEMS, but causes relocation/alignment issues when building libbsd. This restricts those alignment changes to ILP32 builds.
* spec/aarch64: Ensure that libbsd can build properlyKinsey Moore2020-11-231-0/+4
| | | | | These files are required for libbsd to build against the AArch64 A53 BSPs.
* bsp/imxrt: Add new BSPChristian Mauderer2020-11-2012-0/+483
| | | | Update #4180
* cpu/armv7m: Add table based init for ARMV7M_MPUChristian Mauderer2020-11-201-0/+2
| | | | | | | Modify the MPU functions of the stm32h7 BSP to be table based and available for all ARMV7M BSPs. Update #4180
* bsps/imx: Move imx-gpio to arm/sharedChristian Mauderer2020-11-201-2/+2
| | | | Update #4180
* imx: Move imx_iomux to arm/sharedChristian Mauderer2020-11-201-4/+6
| | | | Update #4180
* config: Simplify task stack allocator initSebastian Huber2020-11-192-21/+0
| | | | | Replace runtime checks with compile time assertions. This makes the INTERNAL_ERROR_BAD_STACK_HOOK obsolete.
* validation/ts-performance-0: Add partition testsSebastian Huber2020-11-191-0/+1
|
* validation/ts-performance-0: Add test suiteSebastian Huber2020-11-192-0/+21
| | | | Share a default test suite with ts-validation-0.
* libtest: Add primitive test case memory allocatorSebastian Huber2020-11-191-0/+1
| | | | | | | This primitive test case memory allocator uses memory from the low-level memory information provided by the BSP. At the beginning of each test case, the memory available to the test case is reinitialized. This allows the use of a simple allocate only allocator.
* libtest: Make test case allocator configurableSebastian Huber2020-11-191-1/+0
|
* build: Remove duplicate ARM_MMU_USE_SMALL_PAGESSebastian Huber2020-11-193-18/+1
|
* dl06: Do not include loaded objs in base imageSebastian Huber2020-11-111-0/+1
|
* Add correct link address for griscv waf buildJiri Gaisler2020-11-092-0/+6
|
* Add networking support for griscv bspJiri Gaisler2020-11-092-0/+20
| | | | | | | * Only GRETH device supported for now * Fix endian problem in GRETH driver * Remove SPARC assembly from greth.c * Builds with both autoconf and waf
* libtrace: Move _Record_Stream_header_initialize()Sebastian Huber2020-11-091-0/+1
| | | | This fixes the build if no function sections are used.
* bsp/stm32h7: New BSPSebastian Huber2020-10-2737-0/+1143
| | | | Update #3910.
* build: Move drivers without SMP supportSebastian Huber2020-10-122-15/+33
| | | | | | | | This fixes warnings like this: warning: implicit declaration of function 'rtems_interrupt_disable' warning: implicit declaration of function 'rtems_interrupt_enable' warning: implicit declaration of function 'rtems_interrupt_flash'
* build: Fix formatSebastian Huber2020-10-1210-16/+18
|
* shell: Remove not functioning fdisk mount/unmountFrank Kühndel2020-10-121-1/+0
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | The shell has an 'fdisk' command which has sub-commands 'mount' and 'unmount'. These two sub-commands have a bug which causes them to be not able to mount anything. This proposed patch removes the buggy file cpukit/libblock/src/bdpart-mount.c and the mount/unmount commands from 'fdisk' as bug fix. The 'fdisk' command itself is not removed. The reasons for removing the sub-commands (instead of fixing the issue) are: 1) The bug has been introduced on 2010-May-31 with commit 29e92b090c8bc35745aa5c89231ce806bcb11e57. Since ten years no one can use this feature, nor has anybody complained about it. 2) Besides of the 'fdisk' 'mount' sub-command, the shell has the usual 'mount' and 'unmount' commands which can serve as substitutes. 3) There are additional minor issues (see further down) which needed to be addressed when the file will be kept. What follows below is the precise bug description. The bug is in function rtems_bdpart_mount() which is only be used by the 'fdisk' shell command to mount all partitions of a disk with a single command: > fdisk DISK_NAME mount > mounts the file system of each partition of the disk > > fdisk DISK_NAME unmount > unmounts the file system of each partition of the disk The whole command does not work because in file cpukit/libblock/src/bdpart-mount.c line 103 specifies the file system type of each partition to be "msdos". Yet, "msdos" does not exist. The name must be "dosfs". Beside of this fundamental problem, there are more issues with the code in bdpart-mount.c: 1) The function returns RTEMS_SUCCESSFUL despite the mount always fails. 2) The reason for errors is not written to the terminal. 3) The directory '/mnt' is created but not deleted later on (failure or not). 3) There is no documentation about this special 'fdisk' feature in the RTEMS Shell Guide ('fdisk' is mentioned but its documentation is a bit short): https://docs.rtems.org/branches/master/shell/ file_and_directory.html#fdisk-format-disk 4) Only "msdos" formatted partitions can be mounted and all partitions are mounted read-only. This is hard coded and cannot be changed by options. Moreover, there is no information about this to the user of the shell (i.e. using 'fdisk' mount requires insider knowledge). How to reproduce: 1) For testing, I use the 'testsuites/samples/fileio.exe' sample with qemu: > cd rtems > env QEMU_AUDIO_DRV="none" qemu-system-arm -net none -nographic \ > -M realview-pbx-a9 -m 256M -kernel \ > build/arm/realview_pbx_a9_qemu/testsuites/samples/fileio.exe 2) Type any key to stop the timer and enter the sample tool. Type 's' to enter the shell, login as 'root' with the password shown in the terminal. 3) Type the following shell commands (they create a RAM disk, partition it, register it, format it and try to mount it): > mkrd > fdisk /dev/rda fat32 16 write mbr > fdisk /dev/rda register > mkdos /dev/rda1 > fdisk /dev/rda mount 4) The last line above is the command which fails - without an error message. There exists a '/mnt' directory but no '/mnt/rda1' directory as it should be: > ls -la /mnt 5) If you change line 103 of 'cpukit/libblock/src/bdpart-mount.c' from "msdos" to "dosfs", compile and build the executable and re-run the above test, '/mnt/rda1' exists (but the file system is mounted read-only). Close #4131
* build: Add test excludes for RTEMS_PROFILINGSebastian Huber2020-10-105-0/+9
|
* build: Add test excludes for rcxx01Sebastian Huber2020-10-109-0/+9
|
* build: Fix legacy Makefile supportSebastian Huber2020-10-101-2/+2
| | | | Close #4140.
* testsuite/rcxx01: Add examples for use in the User manualChris Johns2020-10-091-0/+3
|
* librtemscxx: Fix installSebastian Huber2020-10-081-3/+3
|
* build: Disable RTEMS_NETWORKING for some arch/bspSebastian Huber2020-10-081-1/+12
| | | | The old network stack is not supported on 64-bit targets.
* cpukit/librcxx: Add a C++ thread interface with attributesChris Johns2020-10-084-0/+47
|
* Misc: Correct spelling of occurredJoel Sherrill2020-10-071-1/+1
|
* build: Fix BSP nameSebastian Huber2020-10-071-1/+1
| | | | Update #3818.
* build: Remove raspberrypi from RTEMS_SMPSebastian Huber2020-10-071-1/+0
| | | | Close #4116.
* build: Add test excludes for RTEMS_DEBUGSebastian Huber2020-10-062-0/+2
|
* bsps: Add Cortex-A53 ILP32 BSP variantKinsey Moore2020-10-053-1/+96
| | | | | | This adds an AArch64 ILP32 BSP variant based on Qemu's Cortex-A53 emulation with interrupt support using GICv3 and clock support using the ARM GPT.
* bsps: Add Cortex-A53 LP64 basic BSPKinsey Moore2020-10-0512-0/+341
| | | | | This adds an AArch64 basic BSP based on Qemu's Cortex-A53 emulation with interrupt support using GICv3 and clock support using the ARM GPT.
* score: Add AArch64 portKinsey Moore2020-10-052-0/+38
| | | | | This adds a CPU port for AArch64(ARMv8) with support for exceptions and interrupts.
* bsps: Break out AArch32 GICv3 supportKinsey Moore2020-10-051-4/+6
| | | | | This breaks out AArch32-specific code so that the shared GICv3 code can be reused by other architectures.
* bsps: Break out AArch32 portions of GPT driverKinsey Moore2020-10-053-3/+15
| | | | | | This breaks AArch32-specific portions of the ARM GPT driver into their own file so that the generic code can be moved for reuse by other architectures.
* spec: Add missing spintrcritical24 definitionKinsey Moore2020-10-051-0/+1
|
* Move ARM PL011 UART driverKinsey Moore2020-10-055-5/+5
| | | | This UART driver is now needed for BSPs other than ARM.
* build: Add test excludes for RTEMS_DEBUGSebastian Huber2020-10-054-0/+4
| | | | Close #4121.
* build: Scope RTEMS_MULTIPROCESSING optionSebastian Huber2020-10-021-2/+13
| | | | Enable it only for selected BSPs. Improve description.
* build: Fix typoSebastian Huber2020-10-021-1/+1
|
* Decouple the C Program Heap initializationSebastian Huber2020-10-011-0/+3
| | | | | | | Before this patch RTEMS_Malloc_Initialize() had a fixed dependency on _Workspace_Area. Introduce _Workspace_Malloc_initializer to have this dependency only if CONFIGURE_UNIFIED_WORK_AREAS is defined by the application configuration.
* tests: Add and use <rtems/testopts.h>Sebastian Huber2020-10-013-0/+49
| | | | | Add the build option RTEMS_TEST_VERBOSITY to control the verbosity of test suites using the RTEMS Test Framework.
* build: Enable RTEMS_SMP only for selected BSPsSebastian Huber2020-10-011-1/+32
|
* build: Fix build dependencies of JFFS2 testsSebastian Huber2020-10-019-19/+19
| | | | Close #4107.