summaryrefslogtreecommitdiffstats
path: root/c/src/lib/libbsp/m68k/mcf5235 (unfollow)
Commit message (Collapse)AuthorFilesLines
2018-04-09build: Remove DISTCLEANFILESSebastian Huber1-1/+0
A "make distclean" is not supported. So, it makes no sense to have pure "make distclean" related stuff in the Makefile.am.
2018-04-09bsps: Remove librtemsbsp.a wrapupSebastian Huber1-10/+10
This patch is a part of the BSP source reorganization. Update #3285.
2018-04-04bsps: Move config macros to RTEMS_BSP_CONFIGURESebastian Huber1-5/+0
Provide HAS_NETWORKING and HAS_SMP Automake conditionals for all BSPs. This patch is a part of the BSP source reorganization. Update #3285.
2018-04-04bsps: Add shared-sources.amSebastian Huber1-0/+1
This patch is a part of the BSP source reorganization. Update #3285.
2018-04-04build: Remove EXTRA_DISTSebastian Huber1-2/+0
A "make dist" is not supported. So, it makes no sense to have pure "make dist" related stuff in the Makefile.am.
2018-03-26bsps/m68k: Remove libcpu/m68kSebastian Huber1-1/+0
This patch is a part of the BSP source reorganization. Update #3285.
2018-03-26bsps/m68k: Move libcpu content to bspsSebastian Huber1-3/+2
This patch is a part of the BSP source reorganization. Update #3285.
2018-01-31bsps: Rework cache manager implementationSebastian Huber1-2/+2
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-31bsps: Move network define to source filesSebastian Huber2-9/+3
Define __INSIDE_RTEMS_BSD_TCPIP_STACK__ in the network interface driver source files to avoid some build system magic.
2018-01-25Remove make preinstallChris Johns6-188/+10
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-02bsps: Use CPPASCOMPILE for startfileSebastian Huber2-10/+10
Update #3254.
2018-01-02bsps: Add EXTRA_DIST to all BSP Makefile.amSebastian Huber1-0/+1
This makes it possible to easily use EXTRA_DIST += foobar in fragments. Update #3254.
2018-01-02bsps: Include bsp.am in all BSP Makefile.amSebastian Huber1-0/+1
Update #3254.
2017-12-20mcf5235: Simplify bsp_specsJoel Sherrill4-5/+8
Updates #3520.
2017-11-27libbsp/*/*/configure.ac: Remove references to bsp_specs in AC_CONFIG_SRCDIRJoel Sherrill1-1/+1
Updates #3250.
2017-11-24Remove coverhd.hSebastian Huber2-5/+0
This header file contained timing overhead values which are hard to maintain. Update #3254.
2017-11-22bsps: Simplify RTEMS_BSP_CLEANUP_OPTIONSSebastian Huber1-1/+1
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
2017-11-17getentropy: Add cpu counter based implementation.Christian Mauderer1-0/+1
Update #3239.
2017-09-18bsps: Clock_driver_support_install_isr()Sebastian Huber1-4/+2
Remove old ISR parameter since is not used by the clock driver shell. Make an implementation optional. Update #3139.
2017-09-12Simplify and unify BSP_output_charSebastian Huber1-2/+0
The BSP_output_char should output a char and not mingle with high level processing, e.g. '\n' to '\r\n' translation. Move this translation to rtems_putc(). Remove it from all the BSP_output_char implementations. Close #3122.
2017-04-24mcf5235/console/console.c: Fix indentation and add bracesJoel Sherrill1-5/+6
2017-03-22termios: Synchronize with latest FreeBSD headersKevin Kirspel1-3/+5
Adding modified FreeBSD headers to synchronize RTEMS termios with FreeBSD. Modify termios to support dedicated input and output baud for termios structure. Updated BSPs to use dedicated input and output baud in termios structure. Updated tools to use dedicated input and output baud in termios structure. Updated termios testsuites to use dedicated input and output baud in termios structure. Close #2897.
2016-03-30m68k/mcf5235/include/bsp.h: Do not include <rtems/iosupp.h>Joel Sherrill1-2/+0
2016-03-29m68k/mcf5235/console/console.c: Remove unneeded include of <rtems/mw_uid.h>Joel Sherrill1-1/+0
2016-03-29m68k/mcf5235: Remove include of <rtems/console.h> from <bsp.h> and fix warningsJoel Sherrill2-5/+5
2016-03-27m68k/mcf5235/include/bsp.h: Do not include <rtems/clockdrv.h>Joel Sherrill1-1/+0
2016-03-17mcf5235/start/start.S: Fix spacing from bad tab expansionJoel Sherrill1-22/+21
2016-02-06m68k/.../mcf5235.cfg: Disable per function sectionsJoel Sherrill1-2/+4
updates #2571.
2016-02-03Use linker set for libio initializationSebastian Huber1-1/+1
Update #2408.
2016-01-22m68k/mcf5235: Add per-section compilation and linking support.Ralph Holmes1-0/+3
The size of the sample executables without this option were: text data bss dec hex filename 92512 1680 9472 103664 194f0 base_sp.exe 106960 1648 9072 117680 1cbb0 hello.exe 31408 1216 3888 36512 8ea0 minimum.exe 570464 5584 20960 597008 91c10 fileio.exe 111312 1760 9584 122656 1df20 nsecs.exe 192048 2048 10064 204160 31d80 paranoia.exe 96256 1680 9504 107440 1a3b0 ticker.exe 94800 1696 12912 109408 1ab60 unlimited.exe 865200 21936 16576 903712 dca20 cxx_iostream.exe 200480 2256 9648 212384 33da0 cdtest.exe 194000 2176 11296 207472 32a70 capture.exe The size of the sample executables with this option enabled were: text data bss dec hex filename 83392 1632 9408 94432 170e0 base_sp.exe 96880 1584 9008 107472 1a3d0 hello.exe 22912 1184 3840 27936 6d20 minimum.exe 552144 5552 20624 578320 8d310 fileio.exe 103328 1728 9520 114576 1bf90 nsecs.exe 182592 2016 10000 194608 2f830 paranoia.exe 87920 1648 9440 99008 182c0 ticker.exe 84944 1664 12848 99456 18480 unlimited.exe 175248 2192 9296 186736 2d970 cxx_iostream.exe 183120 2128 9568 194816 2f900 cdtest.exe 182896 2112 11232 196240 2fe90 capture.exe
2015-12-24api: Remove deprecated NotepadsAun-Ali Zaidi1-15/+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.
2015-12-10bsps: Delete superfluous bsp_pretasking_hook()Sebastian Huber1-1/+1
Use the bsp_predriver_hook() instead. Update #2408.
2015-12-08Add RTEMS linker setsSebastian Huber3-0/+6
Update #2408.
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
2015-05-20bsps: Convert clock drivers to use a timecounterAlexander Krutwig1-0/+2
Update #2271.
2014-12-05Update bug report URLSebastian Huber1-1/+1
2014-12-05libmisc: More useful default configurationSebastian Huber1-1/+1
The dummy.c was a de-facto default configuration. Rename it to default-configuration.c. Use unlimited objects and the stack checker. This makes it easier for new RTEMS users which will likely use this file if they just work with the usual main() function as the application entry point. Provide proper arguments for main() using the BSP command line. Add spare user extensions and drivers. Do not initialize the network by default. Delete bspinit.c.
2014-12-01m68k/mcf5235: GCC 4.9.2 generates invalid code for Init5235.Chris Johns3-13/+26
Move the vector table copy out of the Init5235 source to avoid stipping the GCC bug. Fixes #2204.
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-20m68k/mcf5235: Fix warningsJoel Sherrill1-0/+5
2014-10-13m68k/mcf5235/console/console.c: Eliminate unused debug methodsJoel Sherrill1-20/+0
2014-10-09m68k/mcf5235/startup/bspstart.c: Add include of <bsp/bootcard.h> to fix ↵Joel Sherrill1-0/+5
warning and clean up
2014-09-04mcf5235/.../linkcmds: Use dram region consistently like other variantsJoel Sherrill1-4/+4
"ram" and "dram" regions were used inconsistently. Most variants used the "dram" memory region so this was changed to be consistent.
2014-08-28Regenerate all preinstall.am files.Joel Sherrill1-6/+6
Apparently, at some point automake output changed and these were not updated.
2014-04-22bsps: Fix TLS support in linker command filesSebastian Huber3-3/+9
The TLS section symbols had wrong values in case of an empty TLS data section and a nonempty TLS BSS section.
2014-03-21Change all references of rtems.com to rtems.org.Chris Johns7-7/+7
2014-02-04bsps: Thread-local storage (TLS) for linkcmdsSebastian Huber3-1/+52
2014-01-09libbsp tm27.h: Add Doxygen file header to all tm27.hCynthia Rempel1-0/+6
2013-08-09Use $(EXEEXT) [defaults to "exe"] to generate binariesNick Withers1-2/+2
2013-06-25termios: Update due to API changesSebastian Huber1-10/+7
Termios notifies now the driver about an inactive transmit with the length argument set to zero.