summaryrefslogtreecommitdiffstats
path: root/c/src/lib/libbsp/i386/shared (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Include stdbool.h.Ralf Corsepius2008-09-071-0/+1
|
* Misc. "bool" changes.Ralf Corsepius2008-09-062-3/+3
|
* 2008-08-24 Joel Sherrill <joel.sherrill@oarcorp.com>Joel Sherrill2008-08-241-5/+52
| | | | | * shared/irq/irq_init.c: Reverse previous incorrect changes. Correct warnings and ensure BSP still works.
* 2008-08-19 Joel Sherrill <joel.sherrill@OARcorp.com>Joel Sherrill2008-08-192-29/+20
| | | | | * shared/comm/i386-stub.c, shared/irq/irq_init.c: Fix warnings for prototypes, types, etc.
* Add missing prototypes.Ralf Corsepius2008-08-182-4/+4
|
* Add missing prototypes.Ralf Corsepius2008-08-181-21/+21
|
* 2008-05-23 Joel Sherrill <joel.sherrill@OARcorp.com>Joel Sherrill2008-05-231-58/+4
| | | | | | * 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 <joel.sherrill@OARcorp.com>Joel Sherrill2008-04-231-6/+0
| | | | | * shared/comm/tty_drv.c: Remove all references to console_reserve_resources and termios_reserve_resources.
* 2007-11-06 Till Straumann <strauman@slac.stanford.edu>Till Straumann2007-11-061-4/+8
| | | | | | * 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-123-44/+45
| | | | | | | | | | | | 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.
* Reflect changes to rtems/pci.h.Ralf Corsepius2007-03-302-15/+15
| | | | Convert to using stdint fixed-size types.
* 2006-12-12 Ralf Corsépius <ralf.corsepius@rtems.org>Ralf Corsepius2006-12-121-1/+1
| | | | | * shared/irq/idt.c: unsigned limits to match with i386_get_info_from_IDTR.
* *** empty log message ***Joel Sherrill2006-09-111-14/+12
|
* * shared/pci/pcibios.c: let pci_find_device() returnTill Straumann2006-07-131-1/+1
| | | | | -1 on failure, not just non-zero status. I found that some driver(s) [e.g. dec21140] explicitely check for -1.
* Remove eof include fileRalf Corsepius2006-03-172-2/+0
|
* Reflect API changes.Ralf Corsepius2005-11-061-3/+3
|
* 2005-11-02 straumanatslacdotstanford.eduTill Straumann2005-11-031-49/+11
| | | | | * shared/pci/pcibios.c: replaced pci_find_device implementation by a pcibios call which already provides the functionality
* Remove CVS LogRalf Corsepius2005-10-173-98/+0
|
* Remove.Ralf Corsepius2005-10-173-306/+0
|
* 2005-05-23 Joel Sherrill <joel@OARcorp.com>Joel Sherrill2005-05-232-1/+6
| | | | | * 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-17 Jennifer Averett <jennifer.averett@oarcorp.com>Jennifer Averett2005-05-172-178/+20
| | | | * irq/irq.c, irq/irq.h: Modified to include rtems/irq.h.
* 2005-05-10 Ralf Corsepius <ralf.corsepius@rtems.org>Ralf Corsepius2005-05-102-1/+5
| | | | * pci/pcibios.c: Eliminate unsigned8.
* 2005-05-06 Jennifer Averett <jennifer.averett@oarcorp.com>Jennifer Averett2005-05-0610-15/+33
| | | | | | * Makefile.am, comm/i386-stub-glue.c, comm/tty_drv.c, comm/uart.c, irq/idt.c, irq/irq.c, irq/irq.h, irq/irq_asm.S, irq/irq_init.c: Moved irq.h and irq_asm.h to bsp subdirectory.
* 2005-05-04 Jennifer Averett <jennifer.averett@oarcorp.com>Jennifer Averett2005-05-043-221/+300
| | | | | | * pci/pcibios.c, 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 <jennifer.averett@oarcorp.com>Jennifer Averett2005-05-032-0/+9
| | | | * comm/tty_drv.c: Modified to support addition of parameter to ISRs.
* 2005-04-26 Joel Sherrill <joel@OARcorp.com>Joel Sherrill2005-04-262-19/+21
| | | | * pci/pcibios.c: Reformatted.
* 2005-04-18 Eric Valette <eric.valette@free.fr>Jennifer Averett2005-04-185-34/+27
| | | | | * irq/irq.c, irq/irq.h, irq/irq_asm.S, irq/irq_init.c: Added parameter to irq handler
* 2005-03-14 Joel Sherrill <joel@OARcorp.com>Joel Sherrill2005-03-143-1/+26
| | | | | * pci/pcibios.c, pci/pcibios.h: Continue PCI API unification. All use pci_find_device().
* 2005-03-04 Joel Sherrill <joel@OARcorp.com>Joel Sherrill2005-03-042-23/+4
| | | | | * 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 <joel@OARcorp.com>Joel Sherrill2005-01-191-33/+33
| | | | | * pc386/console/vgainit.c, pc386/wd8003/wd8003.c, shared/comm/uart.c: Fix errors caught by gcc 4.x.
* 2005-01-04 Joel Sherrill <joel@OARcorp.com>Joel Sherrill2005-01-043-5/+12
| | | | * comm/gdb_glue.c, irq/idt.c: Remove warnings.
* 2004-09-27 Greg Menke <gregory.menke@gsfc.nasa.gov>Joel Sherrill2004-09-272-32/+120
| | | | | PR 608/bsps * pci/pcibios.c: BusCountPCI().
* Remove duplicate white lines.Ralf Corsepius2004-04-2114-71/+6
|
* Remove stray white spaces.Ralf Corsepius2004-04-2114-248/+259
|
* Remove stray white spaces.Ralf Corsepius2004-04-158-43/+26
|
* 2004-04-09 Ralf Corsepius <ralf_corsepius@rtems.org>Ralf Corsepius2004-04-092-1/+5
| | | | * irq/irq_asm.S: Include <rtems/asm.h> instead of <asm.h>.
* 2004-03-31 Ralf Corsepius <ralf_corsepius@rtems.org>Ralf Corsepius2004-03-312-10/+4
| | | | * pci/pcibios.c: Convert to using c99 fixed size types.
* UnusedRalf Corsepius2004-03-083-6/+0
|
* 2004-02-03 Ralf Corsepius <corsepiu@faw.uni-ulm.de>Ralf Corsepius2004-02-032-22/+26
| | | | * irq/irq_asm.S: Convert #..-comments to /*..*/ comments.
* 2004-01-21 Ralf Corsepius <corsepiu@faw.uni-ulm.de>Ralf Corsepius2004-01-212-1/+7
| | | | * Makefile.am: Add PREINSTALL_DIRS.
* 2004-01-14 Ralf Corsepius <corsepiu@faw.uni-ulm.de>Ralf Corsepius2004-01-142-0/+8
| | | | | * Makefile.am: Re-add dirstamps to PRE/TMPINSTALL_FILES. Add PRE/TMPINSTALL_FILES to CLEANFILES.
* 2003-12-12 Ralf Corsepius <corsepiu@faw.uni-ulm.de>Ralf Corsepius2003-12-122-2/+5
| | | | * Makefile.am: Use mkdir_p. Remove dirs from PRE/TMPINSTALL_FILES.
* 2003-12-02 Ralf Corsepius <corsepiu@faw.uni-ulm.de>Ralf Corsepius2003-12-027-82/+62
| | | | | | | | * io/.cvsignore: Remove. * pci/Makefile.am, irq/Makefile.am, io/Makefile.am, comm/Makefile.am: Remove. * Makefile.am: Merge-in Makefile.ams above. Add preinstallation dirstamp support.
* 2003-10-08 Ralf Corsepius <corsepiu@faw.uni-ulm.de>Ralf Corsepius2003-10-083-0/+21
| | | | | * comm/uart.h: Add extern "C" guards. * pci/pcibios.h: Ditto.
* 2003-09-04 Joel Sherrill <joel@OARcorp.com>Joel Sherrill2003-09-048-7/+12
| | | | | * comm/gdb_glue.c, irq/idt.c, irq/irq.c, irq/irq.h, irq/irq_asm.S, irq/irq_asm.h, irq/irq_init.c: URL for license changed.
* 2003-08-21 Till Strauman <strauman@slac.stanford.edu>Joel Sherrill2003-08-212-2/+13
| | | | | PR 456/bsps * irq/irq.c: Fix race condition when installing an ISR.
* Fix broken ChangeLog entries.Ralf Corsepius2003-08-181-5/+5
|
* 2003-08-16 Ralf Corsepius <corsepiu@faw.uni-ulm.de>Ralf Corsepius2003-08-166-6/+14
| | | | | | | | Makefile.am: Reflect having moved automake. comm/Makefile.am: Reflect having moved automake. io/Makefile.am: Reflect having moved automake. irq/Makefile.am: Reflect having moved automake. pci/Makefile.am: Reflect having moved automake.
* 2003-07-16 Greg Menke <gregory.menke@gsfc.nasa.gov>Joel Sherrill2003-07-183-0/+74
| | | | | | | PR 428/bsps PR 432/bsps * pci/pcibios.c, pci/pcibios.h: Added BSP_pci_Find_Device() which is copied from motorola_shared.
* 2003-03-18 Joel Sherrill <joel@OARcorp.com>Joel Sherrill2003-03-182-125/+46
| | | | * comm/GDB.HOWTO: Updated.