summaryrefslogtreecommitdiffstats
path: root/c/src/lib/libcpu/m68k (unfollow)
Commit message (Collapse)AuthorFilesLines
2018-03-26bsps/m68k: Remove libcpu/m68kSebastian Huber3-199/+0
This patch is a part of the BSP source reorganization. Update #3285.
2018-03-26bsps/mcf5225x: Move libcpu content to bspsSebastian Huber1-279/+0
This patch is a part of the BSP source reorganization. Update #3285.
2018-03-26bsps/genmcf548x: Move libcpu content to bspsSebastian Huber6-3870/+0
This patch is a part of the BSP source reorganization. Update #3285.
2018-03-26bsps/csb360: Move libcpu content to bspsSebastian Huber4-345/+0
This patch is a part of the BSP source reorganization. Update #3285.
2018-03-26bsps/mcf5206elite: Move libcpu content to bspsSebastian Huber6-1430/+0
This patch is a part of the BSP source reorganization. Update #3285.
2018-03-26bsps/m68k: Move fpsp support to bspsSebastian Huber46-17009/+0
This patch is a part of the BSP source reorganization. Update #3285.
2018-03-26bsps/m68k: Move libcpu content to bspsSebastian Huber3-153/+0
This patch is a part of the BSP source reorganization. Update #3285.
2018-03-26bsps/m68k: Remove unused defineSebastian Huber1-4/+0
This patch is a part of the BSP source reorganization. Update #3285.
2018-03-26bsps/m68k: Use namespace headerSebastian Huber43-14/+212
This patch is a part of the BSP source reorganization. Update #3285.
2018-01-31bsps: Rework cache manager implementationSebastian Huber8-715/+0
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.
2018-01-25Remove make preinstallChris Johns18-23109/+2
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-15bsps/m68k: Fix CACR register definesSebastian Huber1-4/+1
2018-01-04bsp/mcf548x: Use public include pathChris Johns3-6/+6
Update #3254.
2017-12-08bsps: Do not install <libcpu/cache.h>Sebastian Huber3-14/+1
This is a cache manager implementation header file. Update #3254.
2016-03-27libcpu/m68k/mcf5272/clock/ckinit.c: Fix warning by including <rtems/clockdrv.h>Joel Sherrill1-0/+1
2016-03-27libcpu/m68k/mcf5206/clock/ckinit.c: Fix warning by including <rtems/clockdrv.h>Joel Sherrill1-0/+1
2014-12-05Update bug report URLSebastian Huber1-1/+1
2014-11-25rtems: Move rtems_cache_aligned_malloc()Sebastian Huber1-1/+0
Make sure also the size is cache aligned since otherwise we may have some overlap with the next allocation block. A cache invalidate on this area would be fatal.
2014-10-19mcf5206 libcpu and mcf5206elite: Fix warningsJoel Sherrill4-801/+705
2014-10-16mcf5282: Move cache to libcpu and update av5282 and uC5282 BSPsJoel Sherrill3-0/+133
2014-10-16libcpu/m68k/mcf532x/cache/cachepd.c: Fix warningsJoel Sherrill1-1/+3
2014-10-16libcpu/m68k/mcf5235/cache/cachepd.c: Fix warningsJoel Sherrill1-0/+1
2014-10-16libcpu/m68k/mcf5223x/cache/cachepd.c: Fix warningsJoel Sherrill1-0/+1
2014-10-16Move CPU cache support from mcf5225x BSP to libcpuJoel Sherrill2-6/+46
2014-10-13libcpu/m68k/mcf5272/clock/ckinit.c: Fix warningsJoel Sherrill1-124/+68
2014-10-13libcpu/m68k/mcf5206/clock/ckinit.c: Fix warningsJoel Sherrill1-108/+48
2014-10-09Eliminate use of /*PAGE and clean up formattingJoel Sherrill1-17/+10
2014-10-09bsps/mcf5235: Fix warningsSebastian Huber1-810/+812
2014-10-09bsps/mcf548x: Fix warningsSebastian Huber1-0/+1
2014-10-09bsps/mcf548x: Fix warningsSebastian Huber1-1099/+1101
2014-10-09bsps/mcf548x: Fix warningsSebastian Huber1-1/+2
2014-09-16Use correct prototype of benchmark_timer_read()Joel Sherrill4-18/+28
This change starts with removing the effectively empty file timerdrv.h. The prototypes for benchmark_timer_XXX() were in btimer.h which was not universally used. Thus every use of timerdrv.h had to be changed to btimer.h. Then the prototypes for benchmark_timer_read() had to be adjusted to return benchmark_timer_t rather than int or uint32_t. I took this opportunity to also correct the file headers to separate the copyright from the file description comments which is needed to ensure the copyright isn't propagated into Doxygen output.
2014-06-01m68k/shared/misc/memProbe.c: Add prototype to eliminate warningJoel Sherrill1-0/+2
2014-03-21Change all references of rtems.com to rtems.org.Chris Johns18-18/+18
2013-06-25termios: Update due to API changesSebastian Huber1-11/+12
Termios notifies now the driver about an inactive transmit with the length argument set to zero.
2013-03-08RTEMS: Delete ChangeLog files.Gedare Bloom1-640/+0
This commit deletes all RTEMS ChangeLog files. These files have been abandoned since converting to git version control. The historical data may be recovered by checking out any commit before this one. Most of the contents of these ChangeLog files can also be found in the git log. Two external ChangeLog files, ChangeLog.slac and ChangeLog.zlib, remain.
2012-07-19Remove CVS-Ids.Ralf Corsépius3-6/+0
2012-07-19Require automake-1.12.2.Ralf Corsépius1-1/+1
2012-07-19Require autoconf-2.69.Ralf Corsépius1-1/+1
2012-05-11Remove CVS Id Strings (manual edits after script)Joel Sherrill1-2/+0
These modifications were required by hand after running the script. In some cases, the file names did not match patterns. In others, the format of the file did not match any common patterns.
2012-05-11Remove All CVS Id Strings Possible Using a ScriptJoel Sherrill51-66/+0
Script does what is expected and tries to do it as smartly as possible. + remove occurrences of two blank comment lines next to each other after Id string line removed. + remove entire comment blocks which only exited to contain CVS Ids + If the processing left a blank line at the top of a file, it was removed.
2012-05-04Remove CVS-Ids.Ralf Corsépius2-6/+0
2012-05-03libcpu misc m68k and sh - Correct formatting and remove weird Id stringsJoel Sherrill5-49/+35
2012-05-03General - Remove extraneous blank line in license messageJoel Sherrill8-8/+0
Many files had an extra blank line in the license text found in the file header. This patch removes that line. * The license and distribution terms for this file may be * found in the file LICENSE in this distribution or at * * http://www.rtems.com/license/LICENSE. The script that did this also turned off execute permission when it was turned on incorrectly.
2012-05-02libcpu/m68k/mcf532x - Remove bad $Id$ and clean up file headerJoel Sherrill1-3/+3
2012-02-01Remove all .cvsignore files.Joel Sherrill1-8/+0
2011-02-112011-02-11 Ralf Corsépius <ralf.corsepius@rtems.org>Ralf Corsepius6-28/+34
* mcf5225x/network/fec.c, mcf5235/cache/cachepd.c, mcf532x/cache/cachepd.c, shared/cache/cache.c, shared/misc/m68kidle.c: Use "__asm__" instead of "asm" for improved c99-compliance.
2011-02-022011-02-02 Ralf Corsépius <ralf.corsepius@rtems.org>Ralf Corsepius2-2/+6
* configure.ac: Require autoconf-2.68, automake-1.11.1.
2010-04-052010-04-05 Thomas Znidar <t.znidar@embed-it.com>Joel Sherrill7-1/+3899
* Makefile.am, configure.ac, preinstall.am: Add mcf5225x support. * mcf5225x/include/fec.h, mcf5225x/include/mcf5225x.h, mcf5225x/network/fec.c: New files.
2010-03-16Fix hex constants.Eric Norum2-2/+6