summaryrefslogtreecommitdiffstats
path: root/c/src/lib/libbsp/m68k/mcf5206elite (follow)
Commit message (Collapse)AuthorAgeFilesLines
* build: Remove DISTCLEANFILESSebastian Huber2018-04-091-1/+0
| | | | | A "make distclean" is not supported. So, it makes no sense to have pure "make distclean" related stuff in the Makefile.am.
* bsps: Remove librtemsbsp.a wrapupSebastian Huber2018-04-091-17/+17
| | | | | | This patch is a part of the BSP source reorganization. Update #3285.
* bsps: Move config macros to RTEMS_BSP_CONFIGURESebastian Huber2018-04-041-4/+0
| | | | | | | | Provide HAS_NETWORKING and HAS_SMP Automake conditionals for all BSPs. This patch is a part of the BSP source reorganization. Update #3285.
* bsps: Add shared-sources.amSebastian Huber2018-04-041-0/+1
| | | | | | This patch is a part of the BSP source reorganization. Update #3285.
* build: Remove EXTRA_DISTSebastian Huber2018-04-041-3/+0
| | | | | A "make dist" is not supported. So, it makes no sense to have pure "make dist" related stuff in the Makefile.am.
* bsps/m68k: Remove libcpu/m68kSebastian Huber2018-03-261-1/+0
| | | | | | This patch is a part of the BSP source reorganization. Update #3285.
* bsps/mcf5206elite: Move libcpu content to bspsSebastian Huber2018-03-261-6/+5
| | | | | | This patch is a part of the BSP source reorganization. Update #3285.
* bsps/m68k: Move libcpu content to bspsSebastian Huber2018-03-261-2/+2
| | | | | | This patch is a part of the BSP source reorganization. Update #3285.
* bsps: Rework cache manager implementationSebastian Huber2018-01-311-3/+1
| | | | | | | | | | | | | | | | | | 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.
* Remove make preinstallChris Johns2018-01-2511-708/+11
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 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.
* bsps: Add AM_CPPFLAGS to special case CPPFLAGSChris Johns2018-01-041-1/+1
| | | | | | | This is necessary to pick up mandatory flags provided by the build system. Update #3254.
* bsps: Use CPPASCOMPILE for startfileSebastian Huber2018-01-021-3/+4
| | | | Update #3254.
* bsps: Add EXTRA_DIST to all BSP Makefile.amSebastian Huber2018-01-021-1/+2
| | | | | | | | | | This makes it possible to easily use EXTRA_DIST += foobar in fragments. Update #3254.
* bsps: Include bsp.am in all BSP Makefile.amSebastian Huber2018-01-021-0/+1
| | | | Update #3254.
* mcf5206elite: Simplify bsp_specsJoel Sherrill2017-12-203-5/+7
| | | | Updates #3520.
* mcf5206elite: Simplify bsp_specsJoel Sherrill2017-12-191-9/+1
| | | | | | | Removes the non-standard -qflash option added by the bsp_specs. If actually used, this will have to be addressed in another way. Updates #3520.
* libbsp/*/*/configure.ac: Remove references to bsp_specs in AC_CONFIG_SRCDIRJoel Sherrill2017-11-271-1/+1
| | | | Updates #3250.
* Remove coverhd.hSebastian Huber2017-11-243-91/+0
| | | | | | | This header file contained timing overhead values which are hard to maintain. Update #3254.
* bsps: Simplify RTEMS_BSP_CLEANUP_OPTIONSSebastian Huber2017-11-222-1/+2
| | | | | | | | | Remove BSP-specific defaults for RTEMS_BSP_CLEANUP_OPTIONS to simplify the BSP configuration and documentation. Change defaults to: BSP_PRESS_KEY_FOR_RESET=0 BSP_RESET_BOARD_AT_EXIT=1 BSP_PRINT_EXCEPTION_CONTEXT=1
* getentropy: Add cpu counter based implementation.Christian Mauderer2017-11-171-0/+1
| | | | Update #3239.
* mcf5206elite/include/bsp.h: Rename delay() to rtems_bsp_delay() to avoid ↵Joel Sherrill2017-11-101-1/+1
| | | | conflicts
* build-system: Parallel build all subdirs.Chris Johns2017-05-241-1/+1
|
* testsuite: Add test states to the testsuit configuration files.Chris Johns2016-12-071-2/+2
| | | | | | | | | | | | | | | | Change the testsuite configuration files to hold state information about a test. The states are: exclude - Do not build the test expected-fail - The test is expected to fail indeterminate - The test may pass or may fail A message is printed just after the test's BEGIN message to indicate there is a special state for the test. No state message means the test is expected to pass. This support requires tests are correctly written to the use standard support to begin and end a test.
* mcf5206elite/make/custom/mcf5206elite-testsuite.tcfg: Add dl05Joel Sherrill2016-11-031-0/+1
|
* bsps/m68k: Add libatomic support to some bsp_specsSebastian Huber2016-09-231-1/+1
| | | | Update #2695.
* libchip: Simplify RTC driverSebastian Huber2016-07-041-2/+0
|
* m68k/mcf5206elite/include/bsp.h: Do not include <rtems/iosupp.h>Joel Sherrill2016-03-301-1/+0
|
* m68k/mcf5206elite/include/bsp.h: Remove unnecessary include of <rtems/rtc.h>Joel Sherrill2016-03-301-1/+0
|
* m68k/mcf5206elite: Remove include of <rtems/console.h> from <bsp.h> and fix ↵Joel Sherrill2016-03-292-1/+1
| | | | warnings
* m68k/mcf5206elite/include/bsp.h: Do not include <rtems/clockdrv.h>Joel Sherrill2016-03-271-1/+0
|
* m68k/.../mcf5206elite.cfg: Disable per function sectionsJoel Sherrill2016-02-061-2/+4
| | | | updates #2572.
* Use linker set for libio initializationSebastian Huber2016-02-031-2/+1
| | | | Update #2408.
* m68k/mcf5206elite: Add per-section compilation and linking support.Ralph Holmes2016-01-221-0/+3
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | The size of the sample executables without this option were: text data bss dec hex filename 95264 1680 8928 105872 19d90 base_sp.exe 109184 1648 8512 119344 1d230 hello.exe 32608 1216 4912 38736 9750 minimum.exe 575040 5584 20400 601024 92bc0 fileio.exe 114528 1760 9024 125312 1e980 nsecs.exe 194864 2048 9520 206432 32660 paranoia.exe 99120 1680 8944 109744 1acb0 ticker.exe 97520 1712 12352 111584 1b3e0 unlimited.exe 869136 21920 16016 907072 dd740 cxx_iostream.exe 203264 2256 9104 214624 34660 cdtest.exe 197120 2176 10752 210048 33480 capture.exe The size of the sample executables with this option enabled were: text data bss dec hex filename 86768 1632 8864 97264 17bf0 base_sp.exe 99776 1584 8448 109808 1acf0 hello.exe 23808 1168 4864 29840 7490 minimum.exe 557808 5552 20080 583440 8e710 fileio.exe 107168 1728 8976 117872 1cc70 nsecs.exe 186032 2016 9456 197504 30380 paranoia.exe 91408 1632 8896 101936 18e30 ticker.exe 88336 1648 12288 102272 18f80 unlimited.exe 178768 2192 8752 189712 2e510 cxx_iostream.exe 186528 2128 9008 197664 30420 cdtest.exe 186640 2112 10688 199440 30b10 capture.exe
* api: Remove deprecated NotepadsAun-Ali Zaidi2015-12-241-2/+0
| | | | | | | | | | | | | | | | | | | | | | | Notepads where a feature of RTEMS' tasks that simply functioned in the same way as POSIX keys or threaded local storage (TLS). They were introduced well before per task variables, which are also deprecated, and were barely used in favor of their POSIX alternatives. In addition to their scarce usage, Notepads took up unnecessary memory. For each task: - 16 32-bit integers were allocated. - A total of 64 bytes per task per thread. This is especially critical in low memory and safety-critical applications. They are also defined as uint32_t, and therefore are not guaranteed to hold a pointer. Lastly, they are not portable solutions for SMP and uniprocessor systems, like POSIX keys and TLS. updates #2493.
* bsps: Delete superfluous bsp_pretasking_hook()Sebastian Huber2015-12-101-1/+1
| | | | | | Use the bsp_predriver_hook() instead. Update #2408.
* Add RTEMS linker setsSebastian Huber2015-12-082-0/+4
| | | | Update #2408.
* Most bsp.h: Switch to LIBBSP_@CPU@_@BSP_FAMILY@_H for guardJoel Sherrill2015-07-161-2/+2
| | | | | | | | | | | | | | | | | This was done by the following script run from libbsp: find * -name bsp.h | xargs -e grep -l "#ifndef.*_BSP_H" | while read b do echo $b cpu=`echo $b | cut -d'/' -f1 | tr '[:lower:]' '[:upper:]' ` bsp=`echo $b | cut -d'/' -f2 | tr '[:lower:]' '[:upper:]' ` g="LIBBSP_${cpu}_${bsp}_BSP_H" # echo $g sed -e "s/ifndef _BSP_H/ifndef ${g}/" \ -e "s/define _BSP_H/define ${g}/" \ -i $b done
* mcf5206elite/include/i2c.h: Fix spelling errorJoel Sherrill2015-01-231-1/+1
|
* bsp/mcf5206elite: Remove <i2c.h> inlude in <bsp.h>Sebastian Huber2015-01-142-3/+1
| | | | This prevents a compile-time error in libtests/i2c01.
* Update bug report URLSebastian Huber2014-12-052-2/+2
|
* bsps: Move extern "C" to not cover includesSebastian Huber2014-10-231-4/+4
| | | | Some includes may use C++ and this conflicts if surrounded extern "C".
* mcf5206 libcpu and mcf5206elite: Fix warningsJoel Sherrill2014-10-195-481/+463
|
* bsps: Fix build errorSebastian Huber2014-09-182-5/+0
| | | | Fix build error introduced in f535fe5311978af53635c2da8e5cb10ef9d78802.
* Regenerate all preinstall.am files.Chris Johns2014-08-291-6/+6
| | | | | With this patch the preinstall.am files are in a set order and not dependent on now perl implements a hash.
* Add More Testsuite Configuration Files and Update Existing OnesJoel Sherrill2014-07-161-0/+7
| | | | | | | The first pass at building these was without networking enabled. This pass addresses that plus accounts for some new BSPs which needed testsuite.tcfg files and BSPs which could not link tests which had been added since the first pass.
* bsps: Fix TLS support in linker command filesSebastian Huber2014-04-222-2/+6
| | | | | The TLS section symbols had wrong values in case of an empty TLS data section and a nonempty TLS BSS section.
* Change all references of rtems.com to rtems.org.Chris Johns2014-03-2119-19/+19
|
* bsps: Add empty cache managerSebastian Huber2014-02-241-1/+5
| | | | | This is necessary to add tests that use the cache manager. For example to get better estimates of worst-case timings.
* bsps: Thread-local storage (TLS) for linkcmdsSebastian Huber2014-02-042-0/+34
|
* libbsp m68k: Add Doxygen file header to coverhd.hCynthia Rempel2014-01-141-0/+6
|