summaryrefslogtreecommitdiffstats
path: root/bsps/m68k/uC5282/include/bsp.h (unfollow)
Commit message (Collapse)AuthorFilesLines
2022-03-24Update Eric Norum contact info and start to normalize file headersJoel Sherrill1-8/+6
2019-03-08bsps: Adjust bsp.h Doxygen groupsSebastian Huber1-0/+20
Update #3706.
2018-01-25Remove make preinstallChris Johns1-0/+0
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.
2016-03-30m68k/uC5282/include/bsp.h: Do not include <rtems/iosupp.h>Joel Sherrill1-2/+0
2016-03-29m68k/uC5282: Remove include of <rtems/console.h> from <bsp.h> and fix warningsJoel Sherrill1-1/+0
2016-03-27m68k/uC5282/include/bsp.h: Do not include <rtems/clockdrv.h>Joel Sherrill1-1/+0
2015-07-16Most bsp.h: Switch to LIBBSP_@CPU@_@BSP_FAMILY@_H for guardJoel Sherrill1-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
2014-10-23bsps: Move extern "C" to not cover includesSebastian Huber1-4/+4
Some includes may use C++ and this conflicts if surrounded extern "C".
2014-10-13m68k/uC5282: Fix warningsJoel Sherrill1-0/+10
2014-03-21Change all references of rtems.com to rtems.org.Chris Johns1-1/+1
2012-11-15score: Add RTEMS_FATAL_SOURCE_EXITSebastian Huber1-0/+1
Include <bsp/default-initial-extension.h> in all BSPs. Call rtems_fatal() with RTEMS_FATAL_SOURCE_EXIT as source and the exit() status code as fatal code in every bsp_cleanup(). Move previous bsp_cleanup() code into bsp_fatal_extension().
2012-11-14bsps: Include <bspopts.h> in <bsp.h>Sebastian Huber1-0/+2
2012-04-16m68k: replace m68k_isr with rtems_isrGedare Bloom1-1/+1
2011-03-042011-03-04 Till Straumann <strauman@slac.stanford.edu>Joel Sherrill1-0/+25
PR 1738/bsps * clock/clock.c, include/bsp.h, network/network.c: system clock driver programs the PIT w/o assuming the CPU clock frequency being a power of two.
2009-11-29Whitespace removal.Ralf Corsepius1-1/+1
2009-08-262009-08-26 Joel Sherrill <joel.sherrill@oarcorp.com>Joel Sherrill1-2/+2
* clock/clock.c, include/bsp.h: Rename BSP specific idle thread to bsp_idle_thread.
2009-07-30Enable data cache.Eric Norum1-1/+1
2009-02-252009-02-25 Joel Sherrill <joel.sherrill@OARcorp.com>Joel Sherrill1-1/+1
* clock/clock.c, include/bsp.h: Make bsp idle thread names match.
2009-02-122009-02-12 Joel Sherrill <joel.sherrill@oarcorp.com>Joel Sherrill1-1/+1
* clock/clock.c, include/bsp.h: Change prototype of IDLE thread to consistently return void * and take a uintptr_t argument.
2008-09-232008-09-23 Joel Sherrill <joel.sherrill@oarcorp.com>Joel Sherrill1-1/+1
* Makefile.am, configure.ac, include/bsp.h, startup/bspstart.c: Rename existing bsp_reset() to bsp_sysReset() since the prototype did not match the standard one. Add standard bsp_reset(). * startup/bspreset.c: New file.
2008-09-182008-09-18 Joel Sherrill <joel.sherrill@oarcorp.com>Joel Sherrill1-19/+0
* include/bsp.h: Remove unnecessary boilerplate comments.
2008-09-102008-09-10 Joel Sherrill <joel.sherrill@oarcorp.com>Joel Sherrill1-2/+0
* include/bsp.h: Review of all bsp_cleanup() implementations. In this phase, all prototypes were removed from bsp.h and empty implementations were removed and made to use the shared stub.
2007-12-172007-12-17 Joel Sherrill <joel.sherrill@OARcorp.com>Joel Sherrill1-2/+1
* clock/clock.c, include/bsp.h: Correct prototype of idle thread. Eric Norum pointed out this was wrong.
2007-12-112007-12-11 Joel Sherrill <joel.sherrill@OARcorp.com>Joel Sherrill1-2/+0
* clock/clock.c, include/bsp.h, startup/bspstart.c: Eliminate copies of the Configuration Table. Use the RTEMS provided accessor macros to obtain configuration fields.
2007-12-032007-12-03 Joel Sherrill <joel.sherrill@OARcorp.com>Joel Sherrill1-0/+8
* include/bsp.h, startup/bspstart.c: Moved most of the remaining CPU Table fields to the Configuration Table. This included pretasking_hook, predriver_hook, postdriver_hook, idle_task, do_zero_of_workspace, extra_mpci_receive_server_stack, stack_allocate_hook, and stack_free_hook. As a side-effect of this effort some multiprocessing code was made conditional and some style clean up occurred.
2007-03-122007-03-12 Joel Sherrill <joel@OARcorp.com>Joel Sherrill1-1/+1
* clock/clock.c, console/console.c, include/bsp.h, include/coverhd.h, include/tm27.h, network/network.c, start/start.S, startup/bspclean.c, startup/bspstart.c, startup/init5282.c, startup/linkcmds, timer/timer.c: Correct license URL and/or fix mistake in copyright notice. Both of these mistakes appear to be from code submitted after these changes were made previously.
2007-03-102007-03-10 Joel Sherrill <joel@OARcorp.com>Joel Sherrill1-11/+0
PR 1227/bsps * include/bsp.h: Remove MAX_LONG_TEST_DURATION and MAX_SHORT_TEST_DURATION. They are obsolete and unused.
2006-03-17Remove eof include fileRalf Corsepius1-1/+0
2005-11-07Assign copyright to OAR since all files descend from OAR's source.Eric Norum1-0/+9
2005-05-262005-05-26 Ralf Corsepius <ralf.corsepius@rtems.org>Ralf Corsepius1-2/+2
* include/bsp.h: New header guard.
2005-04-21Try insructioin-only cache.Eric Norum1-0/+8
2005-02-12Add some more system calls.Eric Norum1-0/+2
Improve in-line assembly.
2005-02-10Name changes.Eric Norum1-2/+14
Add some more system calls.
2005-02-042005-02-04 Ralf Corsepius <ralf.corsepius@rtems.org>Ralf Corsepius1-1/+1
* console/console.c, include/bsp.h, network/network.c, startup/bspstart.c: Remove obsolete fixed size types.
2005-02-03Add 'extended' BSP support (pseudo-VME)Eric Norum1-1/+33
2005-02-03Add support for interrupt controller allocation. This will provides aEric Norum1-1/+2
mechanism for applications to find a free level/priority.
2005-02-02Clean up bootloader syscall handling.Eric Norum1-1/+1
2005-02-01Add some bootrom system calls.Eric Norum1-0/+3
2005-01-28New BSP for Arcturus uCDIMM ColdFire 5282.Eric Norum1-0/+102