summaryrefslogtreecommitdiffstats
path: root/c/src/lib/libbsp/lm32/shared (follow)
Commit message (Collapse)AuthorAgeFilesLines
* bsps: Move network define to source filesSebastian Huber2018-01-312-0/+2
| | | | | Define __INSIDE_RTEMS_BSD_TCPIP_STACK__ in the network interface driver source files to avoid some build system magic.
* Remove make preinstallChris Johns2018-01-2514-907/+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.
* bsps/lm32: Use public include pathChris Johns2018-01-0413-13/+13
| | | | Update #3254.
* bsps: Clock_driver_support_install_isr()Sebastian Huber2017-09-182-5/+4
| | | | | | | Remove old ISR parameter since is not used by the clock driver shell. Make an implementation optional. Update #3139.
* Include missing <rtems/bspIo.h>Sebastian Huber2017-08-252-0/+2
|
* Include missing <string.h>Sebastian Huber2017-08-253-0/+3
| | | | Update #2133.
* Optional Clock_driver_support_shutdown_hardware()Sebastian Huber2017-08-042-12/+11
| | | | | Make Clock_driver_support_shutdown_hardware() optional. This avoids the atexit() support on memory constrained targets.
* bsps: Improve interrupt vector enable/disable APISebastian Huber2017-06-201-4/+4
| | | | | | Change bsp_interrupt_vector_enable() and bsp_interrupt_vector_disable() to not return a status code. Add bsp_interrupt_assert() and use it to validate the vector number in the vector enable/disable implementations.
* lm32/shared/timer/timer.c: Include <rtems/bspIo.h>Joel Sherrill2017-04-051-0/+1
|
* lm32/shared/milkymist_video/video.c: Include <rtems/bspIo.h>Joel Sherrill2017-04-051-0/+1
|
* lm32/shared/milkymist_pfpu/pfpu.c: Fix indentation and bracesJoel Sherrill2017-04-051-4/+5
|
* lm32/shared/milkymist_timer/timer.c: Include <rtems/bspIo.h>Joel Sherrill2017-04-051-0/+1
|
* lm32/shared/milkymist_framebuffer/framebuffer.c: Fix indentation and bracesJoel Sherrill2017-04-051-0/+1
|
* termios: Synchronize with latest FreeBSD headersKevin Kirspel2017-03-221-1/+1
| | | | | | | | | | | 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.
* Misc: Spell length correctlyJoel Sherrill2016-07-121-1/+1
|
* bsps: Include missing <rtems/bspIo.h>Sebastian Huber2016-06-242-0/+2
|
* lm32/shared/console/console.c: Add include of <rtems/console.h> to fix warningJoel Sherrill2016-03-291-0/+1
|
* lm32/shared/.../ckinit.c: Fix typo so fast idle on simulator is enabledJoel Sherrill2016-03-111-1/+1
|
* bsps: Convert clock drivers to use a timecounterAlexander Krutwig2015-05-202-0/+4
| | | | Update #2271.
* lm32/shared/startup/bspreset.c: New file missed in previous commitJoel Sherrill2015-04-141-0/+28
|
* lm32 BSP shared and lm32_evr: Fix BSPsJoel Sherrill2014-10-202-9/+6
|
* libbsp/lm32/shared: Fix warningsJoel Sherrill2014-10-132-53/+11
|
* lm32/shared/milkymist_clock/ckinit.c: Fix warningsJoel Sherrill2014-10-131-5/+6
|
* Use correct prototype of benchmark_timer_read()Joel Sherrill2014-09-162-2/+2
| | | | | | | | | | | | | | 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.
* Change all references of rtems.com to rtems.org.Chris Johns2014-03-2150-50/+50
|
* lm32: Enhance Doxygen #2Chirayu Desai2013-12-233-10/+29
|
* lm32: Add doxygenChirayu Desai2013-12-2321-10/+302
|
* bsps: Fix clock driver definesSebastian Huber2013-08-142-2/+2
|
* score: Merge tod implementation into one fileSebastian Huber2013-07-261-6/+0
| | | | | Delete TOD_MICROSECONDS_PER_SECOND, TOD_MICROSECONDS_TO_TICKS() and TOD_MILLISECONDS_TO_TICKS().
* framebuffer: Add and use FRAMEBUFFER_DEVICE_0_NAMESebastian Huber2013-06-291-3/+2
|
* termios: Update due to API changesSebastian Huber2013-06-251-4/+3
| | | | | Termios notifies now the driver about an inactive transmit with the length argument set to zero.
* RTEMS: Delete ChangeLog files.Gedare Bloom2013-03-081-57/+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.
* bsps/lm32: Include <bsp/bootcard.h>Sebastian Huber2012-11-151-0/+1
|
* libblock: Block device transfer request API changeSebastian Huber2012-11-021-2/+4
| | | | | | | | | | | | | | Add and use rtems_blkdev_request_done(). Block device transfer requests must signal the completion status now with rtems_blkdev_request_done(). The return value of the block device IO control will be ignored for transfer requests. The first parameter of rtems_blkdev_request_cb is now the transfer request structure. Renamed rtems_blkdev_request::req_done to rtems_blkdev_request::done to break third party drivers at compile time, otherwise this API change would result in runtime errors.
* libnetworking: Use system eventsSebastian Huber2012-11-022-8/+8
| | | | | | | Add reserved system events RTEMS_EVENT_SYSTEM_NETWORK_SBWAIT and RTEMS_EVENT_SYSTEM_NETWORK_SOSLEEP. Add and use rtems_bsdnet_event_send().
* bsps/lm32: PR2045: Add mic boost optionXiangfu Liu2012-07-091-6/+18
|
* Remove All CVS Id Strings Possible Using a ScriptJoel Sherrill2012-05-1153-107/+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.
* lm32: use shared setvec.cGedare Bloom2012-04-161-43/+0
|
* lm32: replace lm32_isr with rtems_isrGedare Bloom2012-04-162-3/+3
|
* bsps: Add shared default IRQ handlerSebastian Huber2012-03-241-5/+0
|
* PR 2032: Milkymist USB: Ioctl interface for loading USB firmwareSebastien Bourdeauducq2012-03-033-350/+57
| | | | | | | Leave the task of providing a suitable firmware for the Milkymist softusb core to the application instead of having an inflexible array in the driver. Signed-off-by: Gedare Bloom <gedare@rtems.org>
* PR2029: Milkymist VGA: adjust video timingsXiangfu Liu2012-03-031-9/+9
| | | | | | Slightly adjust video timing registers since we had problems with a few screens and the previous values. Signed-off-by: Gedare Bloom <gedare@rtems.org>
* PR2028: Milkymist USB: forward MIDI messages.Werner Almesberger2012-02-292-0/+12
| | | | | | Forward MIDI messages from the softusb controller to the application. Signed-off-by: Gedare Bloom <gedare@rtems.org>
* 2011-12-05 Gedare Bloom <gedare@rtems.org>Gedare Bloom2011-12-051-0/+5
| | | | * ChangeLog: Add PR number to ChangeLog entry
* 2011-12-05 Sebastien Bourdeauducq <seb@tmplab.org>Gedare Bloom2011-12-052-3/+26
| | | | | * milkymist_midi/midi.c: move MIDI message detection from higher layers to the MIDI interrupt handler
* 2011-11-27 Sebastien Bourdeauducq <seb@tmplab.org>Gedare Bloom2011-11-273-2/+55
| | | | | | | PR 1972/bsps * milkymist_video/milkymist_video.h, milkymist_video/video.c: Adds an ioctl to implement selection of composite on any connector, S-Video and Component sources on the Milkymist One.
* 2011-11-27 Sebastien Bourdeauducq <seb@tmplab.org>Gedare Bloom2011-11-275-4/+11
| | | | | | | PR 1970/bsps * milkymist_clock/ckinit.c, milkymist_console/console.c, milkymist_console/uart.c, milkymist_timer/timer.c: Support for the new Milkymist sysctl and clock frequency detection.
* 2011-11-27 Sebastien Bourdeauducq <seb@tmplab.org>Gedare Bloom2011-11-275-51/+35
| | | | | | | PR 1966/bsps * milkymist_console/console.c, milkymist_console/uart.c, milkymist_console/uart.h, milkymist_midi/midi.c: support for the new UART core and interrupt map
* 2011-08-02 Sebastien Bourdeauducq <sebastien.bourdeauducq@gmail.com>Joel Sherrill2011-08-022-82/+5
| | | | | PR 1869/bsps * milkymist_networking/mm_crc32.c: Removed.
* 2011-08-01 Sebastien Bourdeauducq <sebastien.bourdeauducq@gmail.com>Joel Sherrill2011-08-0142-956/+4126
| | | | | | | | | | | | | | | | | | | | | PR 1869/bsps * startup/bspclean.c: New file. * include/tm27.h: Removed. * ChangeLog, Makefile.am, README, preinstall.am, include/bsp.h, include/system_conf.h, make/custom/milkymist.cfg, startup/linkcmds: Complete BSP for Milkymist One supporting Milkymist SOC 1.0.x. Includes new or updated drivers for: - Multi-standard video input (PAL/SECAM/NTSC) - Two DMX512 (RS485) ports - MIDI IN and MIDI OUT ports - VGA output - AC'97 audio - NOR flash - 10/100 Ethernet - Memory card (experimental and incomplete) - USB host connectors (input devices only) - RC5 infrared receiver - RS232 debug port