summaryrefslogtreecommitdiffstats
path: root/cpukit/include (follow)
Commit message (Collapse)AuthorAgeFilesLines
* doxygen: Added Frame Buffer Device Driver Interface to Device DriversAndreas Dachsberger2019-04-041-1/+1
| | | | Update #3706.
* doxygen: Added some subgroups to IO LibraryAndreas Dachsberger2019-04-043-0/+6
| | | | | | Update #3706. Types and Mount, IO Internal, Kernel Print Support
* doxygen: Removed XXX groupAndreas Dachsberger2019-04-041-1/+1
| | | | | | Update #3706. Content was added to Classic Barrier Implementation
* doxygen: Added libmisc group and libmisc mouse groupAndreas Dachsberger2019-04-041-3/+2
| | | | | | | | Update #3706. @ingroup for these groups already existed, but no @defgroup Further restructuring necessary
* doxygen: Added toplevel group for device driversAndreas Dachsberger2019-04-041-1/+4
| | | | Update #3706.
* doxygen: Added further groups to RTEMSAPIAndreas Dachsberger2019-04-042-11/+20
| | | | | | | Update #3706. Associativity Routines, BSD Compatibility Support now part of RTEMSAPI
* doxygen: Added Mainpage to RTEMSAPIClassicAndreas Dachsberger2019-04-041-1/+1
| | | | Update #3706.
* doxygen: User Extensions Implementation group now in Internal->ClassicAndreas Dachsberger2019-04-041-1/+1
| | | | Update #3706.
* doxygen: Rework some Doxygen commentsSebastian Huber2019-04-043-44/+51
| | | | | | They are intended as examples in the RTEMS Software Engineering manual. Update #3704.
* doxygen: score: Added ScoreRWLock to Score groupAndreas Dachsberger2019-04-021-5/+9
| | | | Update #3706.
* doxygen: Restructured cpukit/include/rtems/rtemsAndreas Dachsberger2019-04-0254-75/+76
| | | | Update #3706.
* doxygen: Reviewed cpukit/include/rtems/posixAndreas Dachsberger2019-04-021-2/+2
| | | | Update #3706.
* doxygen: Reviewed cpukit/include/rtems/rtemsAndreas Dachsberger2019-04-0216-60/+17
| | | | Update #3706.
* doxygen: Reviewed cpukit/include/rtems/scoreAndreas Dachsberger2019-04-026-35/+25
| | | | Update #3706.
* Add RTEMS Test FrameworkSebastian Huber2019-03-271-0/+2377
| | | | Update #3199.
* score: Rename ScoreCPU Doxygen groupSebastian Huber2019-03-261-1/+1
| | | | Update #3706.
* score: Add implementation top-level groupSebastian Huber2019-03-261-0/+2
| | | | Update #3706.
* score: Update Objects_Information documentationSebastian Huber2019-03-221-36/+115
|
* libdl: Add an archive commandChris Johns2019-03-223-1/+34
| | | | | | | - The archive command lists archives, symbols and any duplicate symbols. - Change the RTL shell commands to the rtems_printer to allow the output to be captured.
* Remove superfluous <rtems/system.h> includesSebastian Huber2019-03-142-5/+1
|
* Add rtems_board_support_package()Sebastian Huber2019-03-141-0/+7
|
* record: Add more system eventsSebastian Huber2019-03-121-58/+58
| | | | Update #3665.
* record: Add system call entry/exit eventsSebastian Huber2019-03-121-83/+83
| | | | | | This corresponds to the Linux syscall_entry_* and syscall_exit_* events. Update #3665.
* record: Rename internal per-CPU eventsSebastian Huber2019-03-121-5/+5
| | | | Update #3665.
* Remove explicit file names from @fileSebastian Huber2019-02-2889-89/+89
| | | | | | This makes the @file documentation independent of the actual file name. Update #3707.
* libdl/archive: Fix the config file string index while removing tailing white ↵Chris Johns2019-02-201-1/+1
| | | | | | | | space. Coverity issue 1442540 Updates #3686
* libdl/alloc: Add a locking interface to the allocator.Chris Johns2019-02-201-0/+20
| | | | | | | | | | | | | - Allow an allocator to lock the allocations. This is needed to lock the heap allocator so the text and trampoline table are as close together as possible to allow for the largest possible object file size. - Update the default heap allocator to lock the heap allocator. - Update ELF loading to lock the allocator. Updates #3685
* score: Avoid some deadlocks in _Once()Sebastian Huber2019-02-181-4/+6
| | | | | | | | Recursive usage of the same pthread_once_t results now in a deadlock. Previously, an error of EINVAL was returned. This usage scenario is invalid according to the POSIX pthread_once() specification. Close #3334.
* libdl: Allocator does not unlock and lock memory on loading.Chris Johns2019-02-151-2/+68
| | | | Close #3692
* posix: Remove unused _POSIX_Get_object_body()Sebastian Huber2019-02-121-41/+0
|
* libdl: Add powerpc large memory and small data support.Chris Johns2019-02-092-20/+50
| | | | | | | | | | | | | | | | | - Add support for architecure sections that can be handled by the architecture back end. - Add trampoline/fixup support for PowerPC. This means the PowerPC now supports large memory loading of applications. - Add a bit allocator to manage small block based regions of memory. - Add small data (sdata/sbss) support for the PowerPC. The support makes the linker allocated small data region of memory a global resource available to libdl loaded object files. Updates #3687 Updates #3685
* libdl: Add support for large memory programsChris Johns2019-02-094-20/+39
| | | | | | | | | | | | | | | - Add trampolines to support relocs that are out of range on support architectures. - Support not loading separate text/data sections in an object file if the symbol provided in the section is a duplicate. A base image may have pulled in part of an object and another part needs to be dynamically loaded. - Refactor the unresolved handling to scale to hundreds of unresolved symbols when loading large number of files. Updates #3685
* libdl: Add support for trampolinesChris Johns2019-02-091-1/+37
| | | | | | | | | | | | | - Trampolines or fixups for veneers provide long jump support for instruciton sets that implement short relative address branches. The linker provides trampolines when creating a static image. This patch adds trampoline support to libdl and the ARM architecture. - The dl09 test requires enough memory so modules are outside the relative branch instruction ranges for the architecture. Updates #3685
* libdl: Fix the support for constructors and desctructors.Chris Johns2019-02-091-0/+1
| | | | | | | - Fix the handling of pending objects. - Add a constructor flags in objects to track then being called. Closes #2921
* libdl: Add symbol searching and loading from archives.Chris Johns2019-02-096-29/+365
| | | | | | | | | | | | | | - Load archive symbol tables to support searching of archives for symbols. - Search archive symbols and load the object file that contains the symbol. - Search the global and archives until all remaining unresolved symbols are not found. Group the loaded object files in the pending queue. - Run the object file and loaded dependents as a group before adding to the main object list. - Remove orphaned object files after references are removed. Updates #3686
* score: Fix _User_extensions_Thread_switch() (SMP)Sebastian Huber2019-02-081-3/+11
| | | | | We have to read the first node again once we obtained the lock since it may have aready changed.
* record: Add enum value for each eventSebastian Huber2019-01-301-3/+888
| | | | Update #3665.
* Add low level event recording supportSebastian Huber2019-01-296-0/+826
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Add low level event recording infrastructure for system and user defined events. The infrastructure is able to record high frequency events such as * SMP lock acquire/release, * interrupt entry/exit, * thread switches, * UMA zone allocate/free, and * Ethernet packet input/output, etc. It allows post-mortem analysis in fatal error handlers, e.g. the last events are in the record buffer, the newest event overwrites the oldest event. It is possible to detect record buffer overflows for consumers that expect a continuous stream of events, e.g. to display the system state in real-time. The implementation supports high-end SMP machines (more than 1GHz processor frequency, more than four processors). Add a new API instead. The implementation uses per-processor data structures and no atomic read-modify-write operations. It is uses per-processor ring buffers to record the events. The CPU counter is used to get the time of events. It is combined with periodic uptime events to synchronize it with CLOCK_REALTIME. The existing capture engine tries to solve this problem also, but its performance is not good enough for high-end production systems. The main issues are the variable-size buffers and the use of SMP locks for synchronization. To fix this, the API would change significantly. Update #3665.
* score: Remove unused _ISR_lock_Flash()Sebastian Huber2019-01-181-31/+0
|
* score: Improve debug support for ISR locksSebastian Huber2019-01-182-17/+39
| | | | Ensure that interrupts are disabled while acquiring an ISR lock.
* score: Simplify _Addresses_Is_aligned()Sebastian Huber2019-01-181-6/+2
| | | | | The CPU_ALIGNMENT must not be zero, this is also checked via a static assertion. Fix formatting.
* Fix format warnings due to ino_t changesSebastian Huber2019-01-101-2/+5
|
* score: Remove superfluous include from chainimpl.hSebastian Huber2019-01-072-1/+1
|
* drvmgr: Improve LP64 compatibilitySebastian Huber2018-12-271-2/+2
|
* score: Fix per-CPU data allocationSebastian Huber2018-12-181-1/+2
| | | | | | | | | | | Allocate the per-CPU data for secondary processors directly from the heap areas before heap initialization and not via _Workspace_Allocate_aligned(). This avoids dependency on the workspace allocator. It fixes also a problem on some platforms (e.g. QorIQ) where at this early point in the system initialization the top of the RAM is used by low-level startup code on secondary processors (boot pages). Update #3507.
* config: Remove CONFIGURE_CONFDEFS_DEBUGSebastian Huber2018-12-171-59/+0
| | | | | | | This configuration option was undocumented and not really helpful. To debug issues in <rtems/confdefs.h> it is better to save the preprocessesd file (GCC "-save-temps" option) and use the GCC "-Wp,-dD" pre-processor option.
* score: Static Objects_Information initializationSebastian Huber2018-12-1447-750/+900
| | | | | | | | | | | Statically allocate the objects information together with the initial set of objects either via <rtems/confdefs.h>. Provide default object informations with zero objects via librtemscpu.a. This greatly simplifies the workspace size estimate. RTEMS applications which do not use the unlimited objects option are easier to debug since all objects reside now in statically allocated objects of the right types. Close #3621.
* rtems: Use object information to get config maxSebastian Huber2018-12-142-7/+18
| | | | | | | Use functions instead of macros. Add missing rtems_configuration_get_maximum_*() functions. Update #3621.
* score: Remove Objects_Information::auto_extendSebastian Huber2018-12-141-4/+23
| | | | | | | Use Objects_Information::objects_per_block to provide this information. Add and use _Objects_Is_auto_extend(). Update #3621.
* score: Remove Objects_Information::the_apiSebastian Huber2018-12-071-4/+0
| | | | | | | Remove Objects_Information::the_class. This information is already contained in Objects_Information::maximum_id. Update #3621.