summaryrefslogtreecommitdiffstats
path: root/c/src/lib/libbsp/sh (follow)
Commit message (Collapse)AuthorAgeFilesLines
* 2008-08-31 Joel Sherrill <joel.sherrill@oarcorp.com>Joel Sherrill2008-08-312-26/+15
| | | | | * timer/timer.c: Eliminate empty function from every benchmark timer driver. Fix spelling.
* 2008-08-31 Joel Sherrill <joel.sherrill@oarcorp.com>Joel Sherrill2008-08-312-12/+17
| | | | | * timer/timer.c: Rename timer driver methods to follow RTEMS programming conventions.
* 2008-08-27 Ralf Corsépius <ralf.corsepius@rtems.org>Ralf Corsepius2008-08-271-0/+4
| | | | * timer/timer.c: Eliminate rtems_boolean.
* Eliminate rtems_boolean.Ralf Corsepius2008-08-271-2/+2
|
* Add missing prototypes.Ralf Corsepius2008-08-191-1/+1
|
* 2008-08-19 Ralf Corsépius <ralf.corsepius@rtems.org>Ralf Corsepius2008-08-191-0/+4
| | | | * trap34/console-io.c: Add missing prototypes.
* Cleanup.Ralf Corsepius2008-07-147-42/+0
|
* 2008-05-15 Joel Sherrill <joel.sherrill@OARcorp.com>Joel Sherrill2008-05-1510-21/+71
| | | | | | | | | | | | | | * startup/bspstart.c: Add capability for bootcard.c BSP Initialization Framework to ask the BSP where it has memory for the RTEMS Workspace and C Program Heap. These collectively are referred to as work area. If the BSP supports this, then it does not have to include code to split the available memory between the two areas. This reduces the amount of code in the BSP specific bspstart.c file. Additionally, the shared framework can initialize the C Library, call rtems_debug_enable(), and dirty the work area memory. Until most/all BSPs support this new capability, if the BSP supports this, it should call RTEMS_BSP_BOOTCARD_HANDLES_RAM_ALLOCATION from its configure.ac. When the transition is complete, this autoconf macro can be removed.
* 2008-05-14 Joel Sherrill <joel.sherrill@OARcorp.com>Joel Sherrill2008-05-1410-128/+73
| | | | * Makefile.am: Rework to avoid .rel files.
* 2008-05-12 Joel Sherrill <joel.sherrill@OARcorp.com>Joel Sherrill2008-05-1210-5/+60
| | | | | | | | | | | | * startup/bspstart.c: Refactored and renamed initialization routines to rtems_initialize_data_structures, rtems_initialize_before_drivers, rtems_initialize_device_drivers, and rtems_initialize_start_multitasking. This opened the sequence up so that bootcard() could provide a more robust and flexible framework which is easier to explain and understand. This also lays the groundwork for sharing the division of available memory between the RTEMS workspace and heap and the C library initialization across all BSPs.
* 2008-04-23 Joel Sherrill <joel.sherrill@OARcorp.com>Joel Sherrill2008-04-234-33/+10
| | | | | * console/console.c: Remove all references to console_reserve_resources and termios_reserve_resources.
* 2008-03-11 Joel Sherrill <joel.sherrill@oarcorp.com>Joel Sherrill2008-03-112-1/+5
| | | | * runtest.in: Skip all fatal error tests.
* 2008-03-03 Joel Sherrill <joel.sherrill@OARcorp.com>Joel Sherrill2008-03-034-3/+9
| | | | | | * startup/linkcmds, startup/linkcmds-le, startup/linkcmds-le.coff: Add wildcard to gcc_except_table section so programs compiled with gcc 4.3.x can link.
* 2008-03-03 Joel Sherrill <joel.sherrill@OARcorp.com>Joel Sherrill2008-03-033-2/+8
| | | | | | * startup/linkcmds, startup/linkcmds.sim: Add wildcard to gcc_except_table section so programs compiled with gcc 4.3.x can link.
* 2008-03-03 Joel Sherrill <joel.sherrill@OARcorp.com>Joel Sherrill2008-03-036-3/+18
| | | | | * startup/linkcmds: Add wildcard to gcc_except_table section so programs compiled with gcc 4.3.x can link.
* 2007-12-11 Joel Sherrill <joel.sherrill@OARcorp.com>Joel Sherrill2007-12-1112-50/+32
| | | | | | * include/bsp.h, startup/bspstart.c: Eliminate copies of the Configuration Table. Use the RTEMS provided accessor macros to obtain configuration fields.
* 2007-12-11 Joel Sherrill <joel.sherrill@OARcorp.com>Joel Sherrill2007-12-114-15/+11
| | | | | | * clock/ckinit.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-04 Joel Sherrill <joel.sherrill@OARcorp.com>Joel Sherrill2007-12-0415-103/+42
| | | | | | * include/bsp.h, startup/bspstart.c: Move interrupt_stack_size field from CPU Table to Configuration Table. Eliminate CPU Table from all ports. Delete references to CPU Table in all forms.
* 2007-12-03 Joel Sherrill <joel.sherrill@OARcorp.com>Joel Sherrill2007-12-0315-27/+62
| | | | | | | | | | * Makefile.am, 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-11-28 Joel Sherrill <joel.sherrill@OARcorp.com>Joel Sherrill2007-11-282-2/+9
| | | | * startup/bspstart.c: Fix mistake in previous work.
* 2007-11-26 Joel Sherrill <joel.sherrill@oarcorp.com>Joel Sherrill2007-11-263-15/+24
| | | | | | * clock/ckinit.c, startup/bspstart.c: Eliminate the clicks_per_microsecond field in the SuperH CPU Table and define another mechanism for drivers to obtain this information.
* 2007-11-26 Joel Sherrill <joel.sherrill@oarcorp.com>Joel Sherrill2007-11-268-4/+36
| | | | | | * startup/bspstart.c: Eliminate the clicks_per_microsecond field in the SuperH CPU Table and define another mechanism for drivers to obtain this information.
* 2007-09-04 Joel Sherrill <joel.sherrill@OARcorp.com>Joel Sherrill2007-09-042-1/+6
| | | | | * runtest.in: Add capture to list of interative tests to skip in batch mode.
* 2007-07-24 Joel Sherrill <joel.sherrill@OARcorp.com>Joel Sherrill2007-07-245-5/+239
| | | | | | | * Makefile.am, preinstall.am, startup/linkcmds: Save the old linker script as linkcmds.sim and use one with enough memory to link all tests so we can at least build things. * startup/linkcmds.sim: New file.
* 2007-05-14 Joel Sherrill <joel.sherrill@OARcorp.com>Joel Sherrill2007-05-144-6/+26
| | | | | | * Makefile.am: Separate debug IO from console so console driver is not linked in all the time. This manaifested itself when the IO manager optional manager stub dropped some symbols.
* 2007-05-03 Joel Sherrill <joel@OARcorp.com>Joel Sherrill2007-05-034-4/+14
| | | | | * startup/linkcmds: Handle .data.* sections. Also change directive placing stack on onchip_ram to make ld happy.
* 2007-05-03 Joel Sherrill <joel@OARcorp.com>Joel Sherrill2007-05-036-4/+15
| | | | * startup/linkcmds: Handle .data.* sections
* 2007-04-17 Joel Sherrill <joel@OARcorp.com>Joel Sherrill2007-04-172-1/+5
| | | | * simsh4/tools/runtest.in: Do not run pppd.exe from batch mode script.
* 2007-04-12 Ralf Corsépius <ralf.corsepius@rtems.org>Ralf Corsepius2007-04-1210-6/+26
| | | | * bsp_specs: Remove qrtems_debug.
* 2007-04-02 Joel Sherrill <joel@OARcorp.com>Joel Sherrill2007-04-0210-6/+30
| | | | * Makefile.am: Add dummy printk support so all tests link.
* 2007-01-26 Ralf Corsépius <ralf.corsepius@rtems.org>Ralf Corsepius2007-01-262-1/+5
| | | | * Makefile.am: Use MKDIR_P instead of mkdir_p.
* Regenerate.Ralf Corsepius2007-01-085-10/+10
|
* 2006-12-02 Ralf Corsépius <ralf.corsepius@rtems.org>Ralf Corsepius2006-12-0214-7/+35
| | | | * configure.ac: New BUG-REPORT address.
* 2006-11-15 Joel Sherrill <joel@OARcorp.com>Joel Sherrill2006-11-1510-5/+30
| | | | | * Makefile.am: Merge c_rtems_main() into boot_card(). This eliminated a file and simplified initialization.
* 2006-10-17 Ralf Corsépius <ralf.corsepius@rtems.org>Ralf Corsepius2006-10-1710-5/+25
| | | | * Makefile.am: Remove superfluous -DASM.
* 2006-10-17 Ralf Corsépius <ralf.corsepius@rtems.org>Ralf Corsepius2006-10-174-4/+12
| | | | * configure.ac: Require autoconf-2.60. Require automake-1.10.
* 2006-10-17 Ralf Corsépius <ralf.corsepius@rtems.org>Ralf Corsepius2006-10-1710-10/+30
| | | | * configure.ac: Require autoconf-2.60. Require automake-1.10.
* 2006-06-24 Joel Sherrill <joel@OARcorp.com>Joel Sherrill2006-06-254-58/+59
| | | | | * startup/linkcmds, startup/linkcmds-le, startup/linkcmds-le.coff: Add .rela.dyn sections.
* 2006-06-24 Joel Sherrill <joel@OARcorp.com>Joel Sherrill2006-06-254-26/+44
| | | | * startup/linkcmds: Add .rela.dyn sections.
* 2006-06-24 Joel Sherrill <joel@OARcorp.com>Joel Sherrill2006-06-254-0/+59
| | | | | * startup/linkcmds, startup/linkcmds.rom, startup/linkcmds.rom2ram: Add .rela.dyn sections.
* 2006-06-24 Joel Sherrill <joel@OARcorp.com>Joel Sherrill2006-06-254-39/+59
| | | | | * startup/linkcmds, startup/linkcmds.ram, startup/linkcmds.rom: Add .rela.dyn sections.
* Remove eof include fileRalf Corsepius2006-03-1710-10/+0
|
* 2006-03-08 Joel Sherrill <joel@OARcorp.com>Joel Sherrill2006-03-084-2/+10
| | | | * startup/linkcmds: Add .gnu.linkonce.b.* section.
* 2006-03-08 Joel Sherrill <joel@OARcorp.com>Joel Sherrill2006-03-084-3/+8
| | | | | * startup/linkcmds, startup/linkcmds-le, startup/linkcmds-le.coff: Add .gnu.linkonce.b.* section.
* 2006-03-08 Joel Sherrill <joel@OARcorp.com>Joel Sherrill2006-03-084-3/+8
| | | | | * startup/linkcmds, startup/linkcmds.rom, startup/linkcmds.rom2ram: Add .gnu.linkonce.b.* section.
* 2006-03-08 Joel Sherrill <joel@OARcorp.com>Joel Sherrill2006-03-084-3/+8
| | | | | * startup/linkcmds, startup/linkcmds.ram, startup/linkcmds.rom: Add .gnu.linkonce.b.* section.
* 2006-02-08 Joel Sherrill <joel@OARcorp.com>Joel Sherrill2006-02-084-6/+14
| | | | * startup/linkcmds: Add sections required by newer gcc versions.
* 2006-02-08 Joel Sherrill <joel@OARcorp.com>Joel Sherrill2006-02-084-12/+14
| | | | | * startup/linkcmds, startup/linkcmds-le, startup/linkcmds-le.coff: Add sections required by newer gcc versions.
* 2006-02-08 Joel Sherrill <joel@OARcorp.com>Joel Sherrill2006-02-084-12/+11
| | | | | * startup/linkcmds, startup/linkcmds.rom, startup/linkcmds.rom2ram: Add sections required by newer gcc versions.
* 2006-02-08 Joel Sherrill <joel@OARcorp.com>Joel Sherrill2006-02-084-9/+14
| | | | | * startup/linkcmds, startup/linkcmds.ram, startup/linkcmds.rom: Add sections required by newer gcc versions.