2011-12-09 Ralf Corsépius * shared/pci/pcibios.c: Make pcib_find_by_devid static. 2011-11-18 Jennifer Averett PR 1925 * shared/irq/irq.h: Changed i386 console to libchip style console and added support for com3 and com4. 2011-10-22 Ralf Corsépius * shared/comm/uart.c (uartError): Remove unused var "uartStatus". 2011-10-13 Ralf Corsépius * shared/comm/uart.c: Remove unused var "tmp". 2011-08-04 Till Straumann * shared/irq/irq_asm.S: BUGFIX (introduced by SMP changes which moved code around, apparently): *must* store i8259 mask to frame *before* switching to IRQ stack. The code retrieves the mask after switching back to original stack. Also, the IRQ stack has no reserved space for the mask; storing it there could overwrite memory! 2011-08-01 Jennifer Averett PR 1802 * shared/irq/irq_asm.S, shared/irq/irq_init.c, shared/smp/smp-imps.c, shared/smp/smp-imps.h: Add SMP support for i386. * shared/smp/getcpuid.c: New file. 2011-07-18 Joel Sherrill * shared/irq/apic.h, shared/smp/smp-imps.c, shared/smp/smp-imps.h: Reformat to be more compliant with RTEMS style. 2011-07-15 Joel Sherrill * shared/irq/apic.h, shared/smp/smp-imps.c, shared/smp/smp-imps.h: Per email with Erich Boleyn, change license to BSD style. 2011-07-14 Jennifer Averett * shared/irq/irq.c, shared/irq/irq.h, shared/irq/irq_init.c: Add initial support for APIC. 2011-07-14 Jennifer Averett * shared/irq/apic.h, shared/smp/README, shared/smp/smp-imps.c, shared/smp/smp-imps.h: New files. 2011-05-25 Ralf Corsépius * shared/comm/tty_drv.c, shared/comm/tty_drv.h: Remove CVS-Headers. Add CVS-Ids. 2011-04-11 Joel Sherrill * shared/irq/irq_asm.S: Rename rtems_smp_maximum_processors to rtems_configuration_smp_maximum_processors since it is defined in confdefs.h. 2011-04-04 Joel Sherrill PR 1768/bsps * shared/irq/irq_asm.S: The nbench benchmark highlighted the fact that we do not perform a cld before calling C code in the ISR. This was historically not a problem but gcc 4.3 changed the behavior. From http://gcc.gnu.org/gcc-4.3/changes.html 2011-03-16 Jennifer Averett PR 1729/cpukit * shared/irq/irq_asm.S: Add next step in SMP support. This adds an allocated array of the Per_CPU structures to support multiple cpus vs a single instance of the structure which is still used if SMP support is disabled. Configuration support is also added to explicitly enable or disable SMP. But SMP can only be enabled for the CPUs which will support it initially -- SPARC and i386. With the stub BSP support, a BSP can be run as a single core SMP system from an RTEMS data structure standpoint. 2011-03-01 Ralf Corsépius * acinclude.m4: Regenerate (Reflect the i386ex and tx_386ex BSP have been removed.). 2011-02-14 Joel Sherrill * shared/irq/irq_asm.S: Fix typo. 2011-02-11 Ralf Corsépius * shared/comm/gdb_glue.c, shared/comm/i386-stub.c, shared/comm/i386_io.h, shared/comm/uart.c, shared/irq/idt.c, shared/pci/pcibios.c: Use "__asm__" instead of "asm" for improved c99-compliance. 2011-02-02 Ralf Corsépius * configure.ac: Require autoconf-2.68, automake-1.11.1. 2011-01-28 Joel Sherrill * shared/irq/idt.c, shared/irq/irq.c, shared/irq/irq.h, shared/irq/irq_asm.h: Fix typo where license said found in found in. 2011-01-28 Joel Sherrill * shared/irq/irq_asm.S: Fix typo where license said found in found in. 2011-01-26 Ralf Corsépius * pc386/3c509/3c509.c, pc386/console/ps2_drv.h, pc386/console/serial_mouse.c, pc386/console/serial_mouse.h: Remove CVS Headers. 2011-01-06 Joel Sherrill * shared/irq/irq_asm.S: Fix spelling. 2010-06-29 Joel Sherrill * shared/irq/irq_asm.S: Rename rtems_per_cpu_info. 2010-06-28 Joel Sherrill PR 1573/cpukit * shared/irq/irq.c, shared/irq/irq_asm.S: Add a per cpu data structure which contains the information required by RTEMS for each CPU core. This encapsulates information such as thread executing, heir, idle and dispatch needed. 2010-06-21 Joel Sherrill * shared/comm/GDB.HOWTO: Remove more ITRON references. 2010-06-15 Joel Sherrill * shared/irq/irq_asm.S: Fix capitalization. 2010-04-30 Sebastian Huber * shared/irq/irq-config.h: Removed file. * shared/irq/irq.h: Moved defines from 'shared/irq/irq-config.h'. 2010-04-12 Ralf Corsépius * shared/comm/uart.c, shared/comm/uart.h: Reflect termios API changes. 2009-12-11 Ralf Corsépius PR 1483/cpukit * shared/pci/pcibios.c: Rename pci_config into rtems_pci_config_t. 2009-12-10 Ralf Corsépius * shared/comm/uart.c, shared/comm/uart.h: Adjust prototypes. 2009-11-10 Till Straumann * pc386/make/custom/pc586-sse.cfg, pc386/start/start.S, shared/irq/irq_asm.S: Added experimental SSE support. 2009-10-29 Till Straumann * shared/irq/irq_asm.S: Make sure stack is aligned to CPU_STACK_ALIGNMENT for *all* C-routines (including _Thread_Dispatch() and _ThreadProcessSignalsFromIrq()) not only C_dispatch_isr(). * shared/irq/irq.c: Added IRQ statistics counters. 2009-10-29 Till Straumann * shared/irq/irq_asm.S: Beautification; ajusted margins and spaces to make the whole thing more readable. 2009-10-29 Till Straumann * shared/irq/irq_asm.S, shared/irq/irq.c: removed (fake) exception frame argument to _ThreadProcessSignalsFromIrq(). This has never been used and removing it simplifies the assembly code. 2009-10-28 Till Straumann * shared/irq/irq_asm.S: Make sure stack is aligned to CPU_STACK_ALIGNMENT before invoking C-code. 2009-10-17 Chris Johns * shared/irq/idt.c: Check is the irq handlers are present before calling. * shared/comm/i386-stub-glue.c: Revert the change of 2009-05-06 as the handlers need to be present. Fixed the warnings. 2009-10-01 Ralf Corsépius PR 1445/BSPs * shared/pci/pcibios.c: Rename indirect_pci_* into BSP_pci_*. 2009-09-30 Ralf Corsépius * shared/comm/tty_drv.c: Reflect termios_baud_to_number having been renamed to rtems_termios_baud_to_number. 2009-07-01 Sebastian Huber * shared/irq/irq.h, shared/irq/irq.c, shared/irq/irq_init.c: Converted to use generic interrupt support. * shared/irq/irq-config.h: New file. 2009-05-06 Joel Sherrill * shared/comm/i386-stub-glue.c, shared/comm/uart.c, shared/irq/irq.c, shared/pci/pcibios.c: Fixed warnings. 2009-03-12 Joel Sherrill PR 1385/cpukit * shared/irq/irq_asm.S: When the type rtems_boolean was switched to the C99 bool, the size changed from 4 bytes to 1 byte. The interrupt dispatching code accesses two boolean variables for scheduling purposes and the assembly implementations of this code did not get updated. 2009-02-19 Joel Sherrill * shared/irq/irq.c, shared/irq/irq.h, shared/irq/irq_asm.S: Add shared interrupt support to i386. 2009-02-11 Joel Sherrill * shared/irq/irq.h: Fix spelling error. 2008-09-07 Ralf Corsépius * shared/comm/i386-stub.c: Include stdbool.h. 2008-09-06 Ralf Corsépius * shared/comm/i386-stub.c, shared/irq/irq.c: Misc. "bool" changes. 2008-08-24 Joel Sherrill * shared/irq/irq_init.c: Reverse previous incorrect changes. Correct warnings and ensure BSP still works. 2008-08-19 Joel Sherrill * shared/comm/i386-stub.c, shared/irq/irq_init.c: Fix warnings for prototypes, types, etc. 2008-08-18 Ralf Corsépius * shared/comm/i386-stub-glue.c, shared/comm/i386-stub.c: Add missing prototypes. * shared/irq/irq_init.c: Add missing prototypes. 2008-05-23 Joel Sherrill * 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-04-23 Joel Sherrill * shared/comm/tty_drv.c: Remove all references to console_reserve_resources and termios_reserve_resources. 2007-11-06 Till Straumann * 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 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-03-30 Ralf Corsépius * shared/pci/pcibios.c, shared/pci/pcibios.h: Reflect changes to rtems/pci.h. Convert to using stdint fixed-size types. 2006-12-12 Ralf Corsépius * shared/irq/idt.c: unsigned limits to match with i386_get_info_from_IDTR. 2006-12-02 Ralf Corsépius * configure.ac: New BUG-REPORT address. 2006-10-17 Ralf Corsépius * configure.ac: Require autoconf-2.60. Require automake-1.10. 2006-07-12 Till Straumann * shared/pci/pcibios.c: let pci_find_device() return -1 on failure, not just non-zero status. I found that some driver(s) [e.g. dec21140] explicitely check for -1. 2005-11-06 Ralf Corsepius * shared/irq/idt.c: Reflect API changes. 2005-11-02 Till Straumann * shared/pci/pcibios.c: replaced pci_find_device implementation by a pcibios call which already provides the functionality (PR#832) 2005-10-17 Ralf Corsepius * shared/comm/i386_io.h, shared/comm/tty_drv.c, shared/comm/tty_drv.h: Remove CVS Log. 2005-10-17 Ralf Corsepius * Makefile.am: Merge-in shared/Makefile.am. * ChangeLog: Merge-in shared/ChangeLog. * configure.ac: Remove shared/Makefile.am. 2005-05-23 Joel Sherrill * shared/comm/i386-stub.c: Make get_char() static since it is such a common name and conflicts with names in the standard Ada run-time. 2005-05-10 Ralf Corsepius * shared/pci/pcibios.c: Eliminate unsigned8. 2005-05-06 Jennifer Averett * shared/Makefile.am, shared/comm/i386-stub-glue.c, shared/comm/tty_drv.c, shared/comm/uart.c, shared/irq/idt.c, shared/irq/irq.c, shared/irq/irq.h, shared/irq/irq_asm.S, shared/irq/irq_init.c: Moved irq.h and irq_asm.h to bsp subdirectory. 2005-05-04 Jennifer Averett * shared/pci/pcibios.c, shared/pci/pcibios.h: Corrected spacing Name modifications for a generic PCI interface Added wrapper routines for pci read/write configuration data 2005-05-03 Jennifer Averett * shared/comm/tty_drv.c: Modified to support addition of parameter to ISRs. 2005-04-26 Joel Sherrill * shared/pci/pcibios.c: Reformatted. 2005-04-18 Eric Valette * shared/irq/irq.c, shared/irq/irq.h, shared/irq/irq_asm.S, shared/irq/irq_init.c: Added parameter to irq handler 2005-03-14 Joel Sherrill * shared/pci/pcibios.c, shared/pci/pcibios.h: Continue PCI API unification. All use pci_find_device(). 2005-03-04 Joel Sherrill * shared/pci/pcibios.c, shared/pci/pcibios.h: Make PCI initialize function part of the unified PCI API as pci_initialize(). 2005-01-19 Joel Sherrill * pc386/console/vgainit.c, pc386/wd8003/wd8003.c, shared/comm/uart.c: Fix errors caught by gcc 4.x. 2005-01-04 Joel Sherrill * shared/comm/gdb_glue.c, shared/irq/idt.c: Remove warnings. 2004-09-27 Greg Menke PR 608/bsps * shared/pci/pcibios.c: BusCountPCI(). 2004-09-24 Ralf Corsepius * configure.ac: Require automake > 1.9. 2004-04-09 Ralf Corsepius * shared/irq/irq_asm.S: Include instead of . 2004-03-31 Ralf Corsepius * shared/pci/pcibios.c: Convert to using c99 fixed size types. 2004-02-12 Ralf Corsepius * configure.ac: RTEMS_CHECK_BSPDIR([$RTEMS_BSP_FAMILY]). * acinclude.m4: Regenerate. 2004-02-03 Ralf Corsepius * shared/irq/irq_asm.S: Convert #..-comments to /*..*/ comments. 2004-01-21 Ralf Corsepius * shared/Makefile.am: Add PREINSTALL_DIRS. 2004-01-14 Ralf Corsepius * shared/Makefile.am: Re-add dirstamps to PRE/TMPINSTALL_FILES. Add PRE/TMPINSTALL_FILES to CLEANFILES. 2004-01-13 Ralf Corsepius * Makefile.am: Use @RTEMS_BSP_FAMILY@ instead of $(RTEMS_BSP_FAMILY). 2003-12-12 Ralf Corsepius * shared/Makefile.am: Use mkdir_p. Remove dirs from PRE/TMPINSTALL_FILES. * configure.ac: Require automake >= 1.8, autoconf >= 2.59. 2003-12-02 Ralf Corsepius * shared/Makefile.am: Merge-in Makefile.ams above. Add preinstallation dirstamp support. * configure.ac: Remove shared/io/Makefile, shared/comm/Makefile, shared/pci/Makefile, shared/irq/Makefile. * shared/io/.cvsignore, shared/pci/Makefile.am, shared/irq/Makefile.am, shared/io/Makefile.am, shared/comm/Makefile.am: Remove. 2003-10-20 Ralf Corsepius * acinclude.m4: Reflect changes to bootstrap. * configure.ac: Remove RTEMS_CHECK_CUSTON_BSP. 2003-10-08 Ralf Corsepius * shared/comm/uart.h: Add extern "C" guards. * shared/pci/pcibios.h: Ditto. 2003-09-04 Joel Sherrill * shared/comm/gdb_glue.c, shared/irq/idt.c, shared/irq/irq.c, shared/irq/irq.h, shared/irq/irq_asm.S, shared/irq/irq_asm.h, shared/irq/irq_init.c: URL for license changed. 2003-08-21 Till Strauman PR 456/bsps * shared/irq/irq.c: Fix race condition when installing an ISR. 2003-08-18 Ralf Corsepius * Makefile.am: Reflect having moved aclocal/. 2003-08-16 Ralf Corsepius * Makefile.am, shared/Makefile.am, shared/comm/Makefile.am, shared/io/Makefile.am, shared/irq/Makefile.am, shared/pci/Makefile.am: Reflect having moved automake/. 2003-08-11 Ralf Corsepius * configure.ac: Use rtems-bugs@rtems.com as bug report email address. 2003-07-16 Greg Menke PR 428/bsps PR 432/bsps * shared/pci/pcibios.c, shared/pci/pcibios.h: Added BSP_pci_Find_Device() which is copied from motorola_shared. 2003-03-18 Joel Sherrill * shared/comm/GDB.HOWTO: Updated. 2003-03-06 Ralf Corsepius * configure.ac: Remove AC_CONFIG_AUX_DIR. 2003-02-11 Ralf Corsepius * configure.ac: AM_INIT_AUTOMAKE([1.7.2]). * configure.ac: AC_PREREQ(2.57). 2002-12-06 Ralf Corsepius * configure.ac: Remove RTEMS_CHECK_BSP_CACHE. 2002-10-31 Joel Sherrill * shared/comm/i386-stub.c: Fixed places where debug_error() was not called with enough arguments. * shared/comm/i386-stub.c: Removed warnings. 2002-10-21 Ralf Corsepius * .cvsignore: Reformat. Add autom4te*cache. Remove autom4te.cache. 2002-09-02 Ralf Corsepius * shared/pci/pcibios.c: #include . 2002-08-05 Eric Norum * shared/pci/pcibios.c: Per PR262, removed all asserts so probes for devices that are not present will work. This lets you have multiple PCI Ethernet drivers in an application and dynamically use the one for the card othat is present. 2002-07-16 Eric Norum * shared/comm/uart.c: I am using a PC-104 card with no video output. I found that things would lock up if a printk was followed closely by a printf when BSPConsolePort = BSP_UART_COM2 and BSPPrintkPort = BSP_UART_COM1. With this change in place, printf/printk calls can be intermingled with no apparent problems. 2002-05-01 Eric Norum * shared/console/console.c, shared/fatal/bspfatal.c, shared/startup/bspclean.c, shared/ startup/page_table.c: Per PR200 fix multi-line inline assembly to satisfy gcc 3.1 and newer. 2002-03-27 Ralf Corsepius * Makefile.am, shared/comm/Makefile.am, shared/io/Makefile.am, shared/Makefile.am, shared/irq/Makefile.am, shared/pci/Makefile.am: Remove AUTOMAKE_OPTIONS. * configure.ac: AC_INIT(package,_RTEMS_VERSION,_RTEMS_BUGS). AM_INIT_AUTOMAKE([no-define foreign 1.6]). 2002-01-03 Ralf Corsepius * shared/irq/irq_init.c: Include rtems/bspIo.h instead of bspIo.h. 2001-10-12 Joel Sherrill * shared/startup/linkcmds: Fixed typo. 2001-10-11 Ralf Corsepius * .cvsignore: Add autom4te.cache for autoconf > 2.52. * configure.ac: New file, generated from configure.in by autoupdate. * configure.in: Remove. 2001-10-09 Ralf Corsepius * acinclude.m4: New file. * configure.in: Use RTEMS_BSP_SUBDIR. 2001-09-27 Ralf Corsepius * shared/irq/Makefile.am, shared/comm/Makefile.am, shared/pci/Makefile.am: Use 'PREINSTALL_FILES ='. 2001-08-16 Mike Siers * shared/comm/tty_drv.c, shared/comm/uart.c: Correct some minor cut and paste bugs. 2001-07-03 Mike Seirs * shared/comm/tty_drv.c, shared/comm/uart.c, shared/comm/uart.h: Adds the capability to use task driven serial I/O to ti386 BSPs. This patch leaves thex default I/O mode to be IRQ. If you want to use task I/O mode, then the tty_drv.c file needs to be modified. Basically, all you need to change is the data values of the termios callbacks structure. This callback structure is used in the tty1_open and tty2_open functions. The values you need to set are commented out in the source code. 2001-06-19 Ralf Corsepius * shared/comm/Makefile.am: Use *_HEADERS instead of *H_FILES. * shared/io/Makefile.am, shared/irq/Makefile.am, shared/pci/Makefile.am: Ditto. 2000-11-09 Ralf Corsepius * Makefile.am: Use ... instead of RTEMS_TOPdir in ACLOCAL_AMFLAGS. 2000-11-02 Ralf Corsepius * Makefile.am: Switch to ACLOCAL_AMFLAGS = -I $(RTEMS_TOPdir)/aclocal. 2000-10-27 Ralf Corsepius * Makefile.am: ACLOCAL_AMFLAGS= -I $(RTEMS_TOPdir)/macros. Switch to GNU canonicalization. 2000-10-19 Joel Sherrill * shared/common/uart.h: Added prototype for BSP_uart_set_baud(). 2000-10-19 Charles-Antoine Gauthier * shared/comm/uart.c (BSP_uart_init): Save more line state parameters. 2000-10-18 Charles-Antoine Gauthier * shared/comm/i386-stub-glue.c, shared/comm/tty_drv.c, shared/comm/uart.c, shared/comm/uart.h: Add the ability to set parity, number of data bits and number of stop bits to the existing i386 serial drivers. 2000-10-17 Joel Sherrill * shared/irq/idt.c, shared/irq/Makefile.am: Moved idt.c to from libcpu/i386 so i386 RTEMS can be multilib'ed. 2000-09-04 Ralf Corsepius * shared/io/Makefile.am: Formatting. 2000-08-26 Rosimildo da Silva * shared/shared/comm: Added "/dev/ttyS1" & "/dev/ttyS2" support for the i386 BSPs. * shared/shared/comm/uart.c: Adds support for sending characters to another "line discipline." * shared/shared/comm/gdb_glue.c, shared/shared/comm/i386_io.c, shared/shared/comm/tty_drv.c, shared/shared/comm/tty_drv.h: New file. * shared/shared/comm/Makefile.am: Account for new files. 2000-08-10 Joel Sherrill * ChangeLog, shared/ChangeLog: New file.