summaryrefslogtreecommitdiffstats
path: root/c/src/lib/libbsp (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Patch from Eric Valette <valette@crf.canon.fr> and Emmanuel RaguetJoel Sherrill1998-07-246-61/+85
| | | | <raguet@crf.canon.fr> to make their patches work together.
* Patch from Emmanuel Raguet <raguet@crf.canon.fr>:Joel Sherrill1998-07-236-3/+738
| | | | | | | | | | | | Here is a patch for KA9Q stack. This patch contains an Ethernet Driver for Western Digital, some fixes for the UDP and TCP protocols (for endian conversion) and some little programs which allow the test of UDP and TCP sockets via Ethernet. I have tested that on an Intel machine. If someone can test it on a big-endian machine, ...
* Patch from Eric VALETTE <valette@crf.canon.fr>:Joel Sherrill1998-07-2319-114/+1591
| | | | | | | | | | | | | Here is a enhanced version of my previous patch. This patch enables to potentially share the new interrupt management code for all Intel targets (pc386, go32 and force386) bsp. Note : this patch is complete only for pc386. It still needs to be completed for go32 and force386. I carrefully checked that anything needed is in for force386 (only some function name changes for IDT manipulation and GDT segment manipulation). But anyway I will not be able to test any of theses targets...
* Removed consolex from build list. This file should be obsoleted by theJoel Sherrill1998-07-231-1/+3
| | | | libchip, libio, and termios efforts.
* Changed so we could test interrupts on port 3.Joel Sherrill1998-07-182-4/+4
|
* Removed use of data port for z8530.Joel Sherrill1998-07-182-14/+14
| | | | | Tested all four ports. MC68681 as both polled and interrupt. Z8530 as polled only.
* New fileJoel Sherrill1998-07-181-0/+62
|
* Added z85c30 specific probe routine to decide what the clock rate was.Joel Sherrill1998-07-182-8/+52
| | | | | | This routines could be enhanced to determine if the SCC is present since it appears from the DY-4 manual that a status registers indicates this.
* Addresses for SCC were wrong. A and B ports were swapped.Joel Sherrill1998-07-181-44/+25
| | | | | | | Deleted CSS interface related items. Added items required to access DMA Control and Status Register so we could figure out dynamically what the clock speed of the SCC really is.
* Swapped RX and TX since doing this makes the lights blink on theJoel Sherrill1998-07-181-2/+2
| | | | | | | RS-422 converter. We now see the TD light blink when typing characters in HyperTerminal and when the board is reset we see the RD light blink. This leads us to believe the cabling is basically right.
* Added RS-422 converter information and cable building information.Joel Sherrill1998-07-181-8/+59
|
* Added information on the MC68681.Joel Sherrill1998-07-181-2/+12
|
* Added background and setup to add section on RS-422.Joel Sherrill1998-07-181-11/+21
|
* Reworked to removed dependency on DY-4 CSS ROM monitor interface.Joel Sherrill1998-07-181-5/+2
|
* Removed css_iface.Joel Sherrill1998-07-182-2/+2
|
* Removed. We are no longer dependent on DY-4 CSS interface code.Joel Sherrill1998-07-182-216/+0
|
* New file.Joel Sherrill1998-07-181-0/+26
|
* Added scitab directory.Joel Sherrill1998-07-172-1/+2
|
* Patch fromalf Corsepius <corsepiu@faw.uni-ulm.de>:Joel Sherrill1998-07-171-0/+61
| | | | | * c/src/lib/libbsp/sh/gensh1/scitab - NEW DIRECTORY Location for building the table generated by shgen
* Fixed typo in which last port did not get switched to defaultJoel Sherrill1998-07-152-8/+8
| | | | register access routines.
* Switched to usign the default z8530 and mc68681 register access routines.Joel Sherrill1998-07-157-272/+17
|
* Added SCV64_Get_Interrupt_Enable().Joel Sherrill1998-07-151-4/+8
| | | | Added proper headers to routines.
* Added SCV64_Get_Interrupt_Enable().Joel Sherrill1998-07-151-0/+1
|
* Added chip type identifier field. This was necessary because a singleJoel Sherrill1998-07-152-0/+8
| | | | interrupt vector can be shared by multiple chips of varying types.
* Added comments.Joel Sherrill1998-07-152-6/+54
|
* Added comments.Joel Sherrill1998-07-151-1/+8
|
* Masked out interrupts not being used prior to processing the status register.Joel Sherrill1998-07-151-1/+9
|
* Added routine to return interrupt mask. Added comments.Joel Sherrill1998-07-151-3/+28
|
* Added scv64 subdirectory.Joel Sherrill1998-07-151-1/+1
|
* Switched to SCV64.Joel Sherrill1998-07-151-23/+58
|
* Added CSCV64 functions and addresses.Joel Sherrill1998-07-151-10/+56
|
* Switched from polling to interrupts and in the process added a conditionalJoel Sherrill1998-07-152-8/+34
| | | | | compilation section which used CONSOLE_USE_INTERRUPTS to switch all ports between interrupt and polled mode.
* Added scv64 subdirectory.Joel Sherrill1998-07-151-1/+1
|
* New files.Joel Sherrill1998-07-152-0/+202
|
* Patch from Quality Quorum <qqi@world.std.com>. Comments:Joel Sherrill1998-07-103-11/+89
| | | | | | | | | | | | | | | | | | | c/src/lib/libbsp/i386/pc386/console/console.c __assert() modified so it prints on selected console instead of PC console c/src/lib/libbsp/i386/pc386/console/inch.c inch_sleep() modified, so it does not depend upon tmacros.h c/src/lib/libbsp/i386/pc386/pc386dev/GDB.HOWTO description updated c/src/lib/libbsp/i386/pc386/startup/exit.c last output before call to exit() will be printed properly on serial console c/src/lib/libbsp/i386/pc386/startup/irq.c re-submitted bug fix for problem in irqs over 7.
* Commented out the system call invocation since we don't know what worksJoel Sherrill1998-07-091-0/+2
| | | | with this ROM monitor.
* Removed call back to exit() since that has already been called.Joel Sherrill1998-07-091-1/+1
|
* Corrected z85c30 address and clock constants.Joel Sherrill1998-07-091-4/+4
|
* Added board specific baud rate table and set driver function tableJoel Sherrill1998-07-092-16/+206
| | | | to polled.
* Conditionals for CONSOLE_USE_INTERRUPTS should have been "if" notJoel Sherrill1998-07-071-5/+5
| | | | "if defined".
* Missed this file in the initial merge.Joel Sherrill1998-07-061-0/+59
|
* Update from Geoffroy Montel (g_montel@yahoo.com) to get in sync with termiosJoel Sherrill1998-07-065-32/+23
| | | | and eliminate warnings.
* Added some address constants for the SCC and DUART to make it easierJoel Sherrill1998-07-051-3/+10
| | | | to fill in the configuration table.
* New file added in the process of converting the console driver toJoel Sherrill1998-07-052-0/+246
| | | | libchip/serial.
* Converted the console driver to use libchip/serial and added supportJoel Sherrill1998-07-058-552/+504
| | | | | | | | | | | for the z85c30 found on the DMV177. This effort started with the console driver from the Radstone PPC2. But some simplifications were made in the hope that console.c can be made a shared file at some point in the near future. Split the debugio from console. This was done so at some point in the future printk support as is found in the pc386 BSP can be shared across all BSPs.
* Renamed old_start340.s to startfor340only.sJoel Sherrill1998-07-022-0/+1006
|
* Initial submission of gen68340 BSP (should run on a 68349) fromJoel Sherrill1998-07-0129-0/+5724
| | | | Geoffroy Montel <g_montel@yahoo.com>.
* Changed prototype for console_write_support to eliminate a warning.Joel Sherrill1998-06-291-1/+5
|
* Bare BSP patch from Chris Johns <cjohns@plessey.com.au>. He alsoJoel Sherrill1998-06-273-45/+325
| | | | sent an example bare bsp but we have not decided how to integrate it yet.
* PC386 BSP enhancements from Aleksey Romanov (Quality QuorumJoel Sherrill1998-06-2715-313/+950
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | <qqi@world.std.com>). Unfortunately after merging these, the pc386 will not boot using grub for for. It still does not work using netboot for me. Here is his summary of changes: rtems/c/src/lib/libbsp/i386/pc386/Makefile.in Added support for new sub-directory rtems/c/src/lib/libbsp/i386/pc386/bsp_specs Made possible to build COFF image rtems/c/src/lib/libbsp/i386/pc386/console/console.c Added support for serial consoles, selectable by patching binary image, added __assert(), use _IBMPC_inch_sleep() instaed of _IMBPC_inch() rtems/c/src/lib/libbsp/i386/pc386/console/inch.c Added _IMBPC_inch_sleep() rtems/c/src/lib/libbsp/i386/pc386/console/outch.c Oops - just formatting rtems/c/src/lib/libbsp/i386/pc386/include/Makefile.in Added support for new files rtems/c/src/lib/libbsp/i386/pc386/include/bsp.h Added support for new features rtems/c/src/lib/libbsp/i386/pc386/include/pc386uart.h New file: definitions for serial ports rtems/c/src/lib/libbsp/i386/pc386/include/pcibios.h New file: definitions for PCI BIOS rtems/c/src/lib/libbsp/i386/pc386/pc386dev/Makefile.in New file: makefile in new directory rtems/c/src/lib/libbsp/i386/pc386/pc386dev/i386-stub-glue.c New file: i386-stub interface rtems/c/src/lib/libbsp/i386/pc386/pc386dev/i386-stub.c New file: i386-stub itself rtems/c/src/lib/libbsp/i386/pc386/pc386dev/pc386uart.c New file: serial ports rtems/c/src/lib/libbsp/i386/pc386/pc386dev/pcibios.c New file: PCI BIOS support rtems/c/src/lib/libbsp/i386/pc386/start/start.s Commented out DEBUG_EARLY stuff, everything is working fine rtems/c/src/lib/libbsp/i386/pc386/start/start16.s Cleaned up rtems/c/src/lib/libbsp/i386/pc386/startup/bspstart.c Added call to console_resereve_resources rtems/c/src/lib/libbsp/i386/pc386/startup/exit.c Added support for serial console rtems/c/src/lib/libbsp/i386/pc386/startup/ldsegs.s Fixed typo in comments rtems/c/src/lib/libbsp/i386/pc386/tools/Makefile.in Changed to reflect cnages in code rtems/c/src/lib/libbsp/i386/pc386/tools/bin2boot.c Trivialized, problem - I do not know how to make patch remove obsolete files - there are a lot of them there rtems/c/src/lib/libbsp/i386/pc386/tools/binpatch.c New file: utility to do binary patches rtems/c/src/lib/libbsp/i386/pc386/wrapup/Makefile.in Added support for new directory rtems/make/custom/pc386.cfg Add COFF image building