summaryrefslogtreecommitdiffstats
path: root/c (follow)
Commit message (Collapse)AuthorAgeFilesLines
* misc sh: Remove includes of rtems/score/types.hJoel Sherrill2018-03-124-4/+0
|
* bsps: More verbose bsp_fatal_extension()Sebastian Huber2018-03-071-0/+20
| | | | Close #3318.
* bsp/genmcf548x: Fix printk() supportSebastian Huber2018-03-071-4/+15
|
* bsps/m68k: Fix entry point in linkcmds.baseSebastian Huber2018-03-071-1/+1
| | | | Updates #3520.
* bsps/sparc: Fix global construction/destructionThanassis Tsiodras2018-03-061-2/+4
| | | | | | | | | | | | | | | | | | | | | The KEEP (*(SORT(.ctors.*))) KEEP (*(.ctors)) cannot be simplified to KEEP (*(SORT(.ctors*))) since .ctors < .ctors.* in lexicographical order. See spglobalcon02 test case. Update #3319.
* powerpc/shared/startup/linkcmds.base: Add wildcards on some sectionsJoel Sherrill2018-02-191-3/+3
| | | | Closes #3307.
* bsp/atsam: Fix cache / DMA handling in SPI.Christian Mauderer2018-02-124-44/+249
| | | | | This patch fixes the cache handling for the atsam SPI driver. Note that this solution might doesn't have the best performance for small packets.
* bsp/atsam: Allow to use a decoder for SPI CS.Christian Mauderer2018-02-122-22/+45
| | | | | The SPI controller supports a decoder connected to the chip select lines. This patch allows to use this mode.
* bsp/atsam: Add option to disable 32kHz XTAL.Christian Mauderer2018-02-123-0/+14
|
* sparc/*/linkcmds*: Move ENTRY() from linkcmds.base to top linkcmdsJoel Sherrill2018-02-059-1/+16
| | | | | | | | This was at the request of a user to make it easier to have a custom entry point. This way they just provide their own top level linkcmds and include linkcmds.base. Updates #3520.
* bsp/altera-cyclone-v: Add device tree supportSebastian Huber2018-02-051-1/+6
| | | | Update #3290.
* bsps/powerpc: Remove support for mpc505Sebastian Huber2018-02-055-220/+0
| | | | Close #3270.
* bsp/leon3: Do not use internal cache APISebastian Huber2018-02-021-2/+1
| | | | Update #3285.
* bsps: Rework cache manager implementationSebastian Huber2018-01-31127-5274/+135
| | | | | | | | | | | | | | | | | | The previous cache manager support used a single souce file (cache_manager.c) which included an implementation header (cache_.h). This required the use of specialized include paths to find the right header file. Change this to include a generic implementation header (cacheimpl.h) in specialized source files. Use the following directories and files: * bsps/shared/cache * bsps/@RTEMS_CPU@/shared/cache * bsps/@RTEMS_CPU@/@RTEMS_BSP_FAMILY/start/cache.c Update #3285.
* bsps: Move network define to source filesSebastian Huber2018-01-3183-361/+145
| | | | | Define __INSIDE_RTEMS_BSD_TCPIP_STACK__ in the network interface driver source files to avoid some build system magic.
* epiphany: Fixes for GCC 7.3Sebastian Huber2018-01-312-24/+24
| | | | GCC 7.3 defines __USER_LABEL_PREFIX__ to nothing.
* Avoid Newlib-specific _EXFUN()Sebastian Huber2018-01-291-1/+1
|
* Remove make preinstallChris Johns2018-01-251552-393632/+802
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 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.
* bsp/qoriq: Fix define for optional intercomSebastian Huber2018-01-231-2/+2
| | | | Update #3085.
* bsp/gen5200: Use public include pathSebastian Huber2018-01-221-1/+1
| | | | Update #3254.
* bsp/qoriq: Fix hypervisor guest interrupt initSebastian Huber2018-01-221-1/+19
| | | | Update #3085.
* bsp/qoriq: Fix hypervisor guest irq vector maxSebastian Huber2018-01-222-4/+13
| | | | Update #3085.
* bsp/qoriq: Optional multiprocessing supportSebastian Huber2018-01-221-0/+4
| | | | Update #3085.
* bsp/qoriq: Fix hypervisor guest polled consoleSebastian Huber2018-01-221-1/+1
| | | | Update #3085.
* bsp/qoriq: Fix hypervisor guest IRQ supportSebastian Huber2018-01-221-1/+5
| | | | Update #3085.
* bsp/qoriq: Fix bsp_fdt_map_intr()Sebastian Huber2018-01-221-0/+4
| | | | Update #3085.
* bsp/qoriq: Fix hypervisor guest MMU configSebastian Huber2018-01-222-38/+188
| | | | | | | | Account for DPAA resources defined in the device tree. Prevent merging of areas with incompatible MAS2. Update #3085.
* bsps: Move wd80x3.h to libchip/wd80x3.hSebastian Huber2018-01-229-19/+7
| | | | | | This header is used also by the motorola_powerpc BSP. Update #3254.
* bsp/gen5200: Fix i2c.h and i2cdrv.h installationSebastian Huber2018-01-198-17/+8
| | | | | | Install these files only as <bsp/i2c.h> and <bsp/i2cdrv.h>. Update #3254.
* bsp/leon3: Fix interrupt timestamp timecounterSebastian Huber2018-01-181-1/+8
|
* leon3: Simplify bsp_specsJoel Sherrill2018-01-181-4/+0
| | | | Updates #3520.
* leon2: Simplify bsp_specsJoel Sherrill2018-01-181-4/+0
| | | | Updates #3520.
* sparc/erc32: Simplify bsp_specsJoel Sherrill2018-01-181-4/+0
| | | | Updates #3520.
* qemuppc: Simplify bsp_specsJoel Sherrill2018-01-181-4/+0
| | | | Updates #3520.
* bsps/powerpc: Move BSP specific file to BSPSebastian Huber2018-01-164-4/+3
| | | | Update #3254.
* bsps/arm: Add header guard, fix definesChris Johns2018-01-151-2/+5
|
* bsps/m68k: Fix CACR register definesSebastian Huber2018-01-151-4/+1
|
* bsps: Fix redefine warningChris Johns2018-01-151-0/+1
|
* bsp/mvme167: Fix warningsSebastian Huber2018-01-151-17/+17
|
* bsps: Add AM_CPPFLAGS to special case CPPFLAGSSebastian Huber2018-01-151-2/+2
| | | | | | | This is necessary to pick up mandatory flags provided by the build system. Update #3254.
* libchip: Use public include pathSebastian Huber2018-01-151-1/+1
| | | | Update #3254.
* bsps/lm32: Do not include network headers in bsp.hSebastian Huber2018-01-152-5/+2
| | | | Update #3254.
* bsp/gen5200: Fix linker command fileSebastian Huber2018-01-051-0/+1
| | | | Updates #3520.
* bsps/m68k: Install shared <mvme16x_hw.h>Sebastian Huber2018-01-046-13/+10
| | | | Update #3254.
* bsps/mips: Fix AC_CONFIG_SRCDIR()Chris Johns2018-01-041-1/+1
| | | | Update #3254.
* bsps/i386: Fix AC_CONFIG_SRCDIR()Chris Johns2018-01-041-1/+1
| | | | Update #3254.
* bsp/edb7312: Use public include pathChris Johns2018-01-041-1/+1
| | | | Update #3254.
* bsps: Use public include pathChris Johns2018-01-042-4/+4
| | | | Update #3254.
* bsps/powerpc: Use public include pathChris Johns2018-01-041-1/+1
| | | | Update #3254.
* bsp/mvme3100: Use public include pathChris Johns2018-01-041-1/+1
| | | | Update #3254.