summaryrefslogtreecommitdiffstats
path: root/c/src/lib/libbsp/i386 (follow)
Commit message (Collapse)AuthorAgeFilesLines
* 2008-05-23 Joel Sherrill <joel.sherrill@OARcorp.com>Joel Sherrill2008-05-232-58/+10
| | | | | | * shared/comm/tty_drv.c: Eliminate copies of switches to convert termios Bxxx constants to xxx as an integer. Use the shared termios_baud_to_number() routine to do the same conversion.
* 2008-05-23 Joel Sherrill <joel.sherrill@OARcorp.com>Joel Sherrill2008-05-234-116/+18
| | | | | | * console/console.c: Eliminate copies of switches to convert termios Bxxx constants to xxx as an integer. Use the shared termios_baud_to_number() routine to do the same conversion.
* 2008-05-23 Joel Sherrill <joel.sherrill@OARcorp.com>Joel Sherrill2008-05-233-114/+13
| | | | | | | * console/console.c, console/serial_mouse.c: Eliminate copies of switches to convert termios Bxxx constants to xxx as an integer. Use the shared termios_baud_to_number() routine to do the same conversion.
* 2008-05-15 Joel Sherrill <joel.sherrill@oarcorp.com>Joel Sherrill2008-05-152-2/+7
| | | | | * network/network.c: Eliminate patterns that look like CVS conflict markers.
* 2008-05-15 Joel Sherrill <joel.sherrill@OARcorp.com>Joel Sherrill2008-05-156-14/+42
| | | | | | | | | | | | | | * 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-144-56/+30
| | | | * Makefile.am: Rework to avoid .rel files.
* 2008-05-12 Joel Sherrill <joel.sherrill@OARcorp.com>Joel Sherrill2008-05-126-3/+36
| | | | | | | | | | | | * 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-05-07 Joel Sherrill <joel.sherrill@OARcorp.com>Joel Sherrill2008-05-073-0/+7
| | | | | PR 649/bsps * clock/ckinit.c, console/console.c: Add missing structure element.
* 2008-05-06 Joel Sherrill <joel.sherrill@OARcorp.com>Joel Sherrill2008-05-062-1/+4
| | | | * configure.ac: Remove spurious line.
* 2008-04-23 Joel Sherrill <joel.sherrill@OARcorp.com>Joel Sherrill2008-04-232-6/+5
| | | | | * shared/comm/tty_drv.c: Remove all references to console_reserve_resources and termios_reserve_resources.
* 2008-04-23 Joel Sherrill <joel.sherrill@OARcorp.com>Joel Sherrill2008-04-233-12/+5
| | | | | * console/ps2_mouse.c, console/serial_mouse.c: Remove all references to console_reserve_resources and termios_reserve_resources.
* 2008-04-17 Joel Sherrill <joel.sherrill@oarcorp.com>Joel Sherrill2008-04-172-39/+24
| | | | | | * Makefile.am: Do not use intermediate .rel files unless from libcpu or a network driver. This simplifies the Makefile.am and avoids pulling in unneeded code.
* 2008-03-22 Joel Sherrill <joel.sherrill@oarcorp.com>Joel Sherrill2008-03-225-142/+239
| | | | | | | | | | | * configure.ac, startup/exit.c: Add BSP_PRESS_KEY_FOR_RESET configuration option. When this is set to one, a clean exit of an application will result in the BSP resetting the hardware without waiting for a human to press a key. * start/start.S, startup/linkcmds: Replace the linkcmds with a version very closely based upon the default in binutils 2.18 for this target. This eliminated weird failures with C++ dtors even in C applications. We had an extra _ on a symbol used in start.S.
* 2008-03-12 Joel Sherrill <joel.sherrill@oarcorp.com>Joel Sherrill2008-03-122-1/+5
| | | | * configure.ac: Fix typo.
* 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.
* 2008-02-07 Joel Sherrill <joel.sherrill@oarcorp.com>Joel Sherrill2008-02-072-214/+140
| | | | | * clock/ckinit.c: Rework clock driver to use template and to provide nanoseconds since last tick capability.
* 2007-12-11 Joel Sherrill <joel.sherrill@OARcorp.com>Joel Sherrill2007-12-1112-74/+41
| | | | | | * 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-049-40/+18
| | | | | | * 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-039-16/+33
| | | | | | | | | | * 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-26 Joel Sherrill <joel.sherrill@oarcorp.com>Joel Sherrill2007-11-266-6/+18
| | | | | | * startup/bspstart.c: Eliminate the interrupt_table_segment and interrupt_table_offset fields in the i386 CPU Table since they are never read.
* 2007-11-06 Till Straumann <strauman@slac.stanford.edu>Till Straumann2007-11-062-4/+14
| | | | | | * shared/irq/irq.c: test for non-NULL-ness before calling 'on'/'off' methods so that users don't have to provide no-ops if they don't want this feature.
* 2007-09-12 Joel Sherrill <joel.sherrill@OARcorp.com>Joel Sherrill2007-09-124-44/+57
| | | | | | | | | | | | PR 1257/bsps * shared/irq/idt.c, shared/irq/irq.c, shared/irq/irq_init.c: Code outside of cpukit should use the public API for rtems_interrupt_disable/rtems_interrupt_enable. By bypassing the public API and directly accessing _CPU_ISR_Disable and _CPU_ISR_Enable, they were bypassing the compiler memory barrier directive which could lead to problems. This patch also changes the type of the variable passed into these routines and addresses minor style issues.
* 2007-09-12 Joel Sherrill <joel.sherrill@OARcorp.com>Joel Sherrill2007-09-125-20/+38
| | | | | | | | | | | | PR 1257/bsps * console/inch.c, console/keyboard.c, console/pc_keyb.c, console/vt.c: Code outside of cpukit should use the public API for rtems_interrupt_disable/rtems_interrupt_enable. By bypassing the public API and directly accessing _CPU_ISR_Disable and _CPU_ISR_Enable, they were bypassing the compiler memory barrier directive which could lead to problems. This patch also changes the type of the variable passed into these routines and addresses minor style issues.
* 2007-09-10 Joel Sherrill <joel.sherrill@OARcorp.com>Joel Sherrill2007-09-102-225/+229
| | | | * console/vt.c: Changed tabs to spaces.
* 2007-09-10 Joel Sherrill <joel.sherrill@OARcorp.com>Joel Sherrill2007-09-102-417/+421
| | | | * console/keyboard.c: Replaced tabs with spaces.
* 2007-09-07 Joel Sherrill <joel.sherrill@oarcorp.com>Joel Sherrill2007-09-072-13/+19
| | | | | * startup/bspstart.c: If we cannot find enough memory to run the program, generate a fatal error and print a message.
* 2007-08-02 Joel Sherrill <joel.sherrill@OARcorp.com>Joel Sherrill2007-08-023-6/+4
| | | | * debug_ada/cmds, debug_c/cmds: Remove RDBG.
* 2007-06-20 Joel Sherrill <joel.sherrill@OARcorp.com>Joel Sherrill2007-06-202-1/+5
| | | | * ne2000/ne2000.c: Fix spelling error.
* 2007-05-28 Joel Sherrill <joel.sherrill@OARcorp.com>Joel Sherrill2007-05-284-3/+12
| | | | | | * startup/bspstart.c: Eliminate maximum_drivers configuration parameter since it was used to configure a no longer used feature. Device names are now part of the filesystem not in a table.
* 2007-05-28 Joel Sherrill <joel.sherrill@OARcorp.com>Joel Sherrill2007-05-282-40/+5
| | | | | PR 1244/bsps * console/console.c: Remove definition of __assert.
* 2007-05-03 Joel Sherrill <joel@OARcorp.com>Joel Sherrill2007-05-032-1/+5
| | | | * startup/linkcmds: Handle .data.* sections
* 2007-04-12 Ralf Corsépius <ralf.corsepius@rtems.org>Ralf Corsepius2007-04-126-11/+18
| | | | * bsp_specs: Remove qrtems_debug.
* 2007-04-02 Joel Sherrill <joel@OARcorp.com>Joel Sherrill2007-04-022-34/+4
| | | | * clock/ckinit.c: Eliminate TOD_Ticks_per_second variable.
* 2007-03-31 Ralf Corsépius <ralf.corsepius@rtems.org>Ralf Corsepius2007-03-312-1/+6
| | | | * ne2000/ne2000.c (ne_interrupt_handler): Avoid warning.
* 2007-03-30 Ralf Corsépius <ralf.corsepius@rtems.org>Ralf Corsepius2007-03-302-1/+5
| | | | * ne2000/ne2000.c: Remove typecast.
* 2007-03-30 Ralf Corsépius <ralf.corsepius@rtems.org>Ralf Corsepius2007-03-301-0/+6
| | | | | | * shared/pci/pcibios.c, shared/pci/pcibios.h: Reflect changes to rtems/pci.h. Convert to using stdint fixed-size types.
* Reflect changes to rtems/pci.h.Ralf Corsepius2007-03-302-15/+15
| | | | Convert to using stdint fixed-size types.
* 2007-03-11 Joel Sherrill <joel@OARcorp.com>Joel Sherrill2007-03-112-1/+6
| | | | | | * startup/bspstart.c: Remove assignments of Cpu_table.do_zero_of_workspace to TRUE since TRUE is the default value in boot_card.c
* 2007-01-29 Ralf Corsépius <ralf.corsepius@rtems.org>Ralf Corsepius2007-01-292-5/+9
| | | | * console/fb_vga.c: Eliminate __u16, __u32.
* 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-083-10/+10
|
* Use ioctl_command_t as arg in ioctl-functions.Ralf Corsepius2006-12-154-4/+4
|
* 2006-12-15 Ralf Corsépius <ralf.corsepius@rtems.org>Ralf Corsepius2006-12-151-0/+4
| | | | * network/ne2000.c: Use ioctl_command_t as arg in ioctl-functions.
* 2006-12-15 Ralf Corsépius <ralf.corsepius@rtems.org>Ralf Corsepius2006-12-151-0/+5
| | | | | * 3c509/3c509.c, ne2000/ne2000.c, wd8003/wd8003.c: Use ioctl_command_t as arg in ioctl-functions.
* 2006-12-15 Ralf Corsépius <ralf.corsepius@rtems.org>Ralf Corsepius2006-12-151-0/+4
| | | | * network/network.c (uti596_ioctl): Use ioctl_command_t.
* Use ioctl_command_t.Ralf Corsepius2006-12-151-2/+2
|
* 2006-12-13 Alexey Shamrin <shamrin@gmail.com>Joel Sherrill2006-12-132-1/+10
| | | | | | | | | PR 1189/bsps * console/outch.c: If you print a character with the code larger than 127 (extended ASCII) to the VGA console, then it blinks. The reason: char == signed char, so such characters get represented by negative numbers. The sign bit then goes to attribute byte, resulting in the blinking.
* 2006-12-12 Ralf Corsépius <ralf.corsepius@rtems.org>Ralf Corsepius2006-12-122-1/+6
| | | | | * shared/irq/idt.c: unsigned limits to match with i386_get_info_from_IDTR.
* 2006-12-02 Ralf Corsépius <ralf.corsepius@rtems.org>Ralf Corsepius2006-12-0212-6/+30
| | | | * configure.ac: New BUG-REPORT address.
* 2006-11-15 Joel Sherrill <joel@OARcorp.com>Joel Sherrill2006-11-156-3/+18
| | | | | * Makefile.am: Merge c_rtems_main() into boot_card(). This eliminated a file and simplified initialization.