summaryrefslogtreecommitdiffstats
path: root/c/src/libchip (follow)
Commit message (Collapse)AuthorAgeFilesLines
* After discussion with Eric Norum <eric@skatter.usask.ca>,Joel Sherrill1999-04-191-2/+1
| | | | | I added __INSIDE_RTEMS_BSD_TCPIP_STACK__ that trips all the needed macro definitions for a network driver.
* Patch from Ralf Corsepius <corsepiu@faw.uni-ulm.de>:Joel Sherrill1999-04-193-3/+3
| | | | | | | | | | | | | | This one is an enhancement to acpolish. It replaces some Makefile variables by others variable in Makefile.ins (tries to use unique name for some variables). It therefore eases parsing Makefile.ins for further automatic Makefile.in conversions in future. To apply: cd <rtems-source-tree> sh <path-to>/rtems-rc-19990407-8.sh ./autogen
* Automake II patch from Ralf Corsepius <corsepiu@faw.uni-ulm.de>:Joel Sherrill1999-03-241-1/+46
| | | | | | | | | | | With my most recent automake patch (automake II) we could even simplify more files below make/, because the host-compiler related parts of those files aren't used anymore :-. Whatsoever, the patch below should fix this problem. Note: This is a mere bug fix, it doesn't move any of the variables involved to target.cfg nor does it try to eliminate any variable.
* Patch from Eric Norum <eric@skatter.usask.ca> to use new networkJoel Sherrill1999-03-241-16/+20
| | | | interface naming convention.
* Modifications from Jiri Gaisler <jgais@ws.estec.esa.nl> toJoel Sherrill1999-03-231-104/+128
| | | | | | | | | | fix some problems encountered when reusing this driver on a SPARC ERC32 based Tharsys board. He eliminted the need for TX interrupts and added code that can optionally ensure that the IP address is 32-bit aligned. He also fixed a handful of problems that only occured because the 8 Mhz ERC32 was enough slower than the 100 Mhz PPC603e that timing issues in this driver were magnified.
* Towards automake XI patch from Ralf Corsepius <corsepiu@faw.uni-ulm.de>:Joel Sherrill1999-03-193-12/+33
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This patch is the most scary of all proposals I've been mailing to you this week until now. It consists of 3 parts: 1. a patch 2. a perl script (acpolish) 3. a shell script wrapper to invoke the perl-script. The perl-script reads in each Makefile.in and modifies them ("polishes/beautifies" them :-). These modifications are not easy to describe: Basically, it hard-codes some automake Makefile-variables and rules into RTEMS autoconf-Makefile.ins (Note: autoconf vs. automake!!) and converts some settings/variables to configure scripts' requirements (Yes, plural). E.g. it adds the automake standard variables $top_builddir and $subdir, adds dependency rules for automatic re-generation of Makefiles from Makefile.in, adds support variables for relative paths to multiple configure scripts etc. The patch is a one-line patch to enable the support of the new features added by acpolish. The shell script is a wrapper which pokes around inside of the source tree for Makefile.ins and invokes acpolish on all autoconf-Makefile.ins. acpolish is designed to be able to run several times on the same Makefile.in and may once become a more general tool to convert RTEMS Makefile.in to automake. Therefore, I'd like to keep it inside of source tree. (e.g. as contrib/acpolish or c/update-tools/acpolish). However, it doesn't make sense to export it outside of RTEMS. To apply this: cd <source-tree> patch -p1 -E < <path-to-patch>/rtems-rc-19990318-1.diff tar xzvf <path-to>/rtems-rc-polish.tar.gz ./rtems-polish.sh ./autogen Note: The path contrib/acpolish is hard-coded into rtems-polish.sh, if you decide to put it in an alternative place, please modify rtems-polish.sh to reflect this change. Later: cvs rm make/rtems.cfg (It isn't used anymore) cvs add contrib cvs add contrib/acpolish cvs commit I've tested this intensively, but naturally I can't exclude bugs. Ralf. PS.: Most probably, this is the last "Towards automake" patch. The next one probably will be a real automake patch.
* Interrupt handler installed as raw handler. Problem caught byJoel Sherrill1999-03-111-1/+1
| | | | | by Jiri Gaisler <jgais@ws.estec.esa.nl> when using this driver on a SPARC.
* Part of the automake VI patch from Ralf Corsepius <corsepiu@faw.uni-ulm.de>:Joel Sherrill1999-02-183-6/+12
| | | | | | | | | | | | | | | | > 5) rtems-rc-19990202-1.diff/reorg-install.sh > > reorg-install.sh fixes a Makefile variable name clash of RTEMS > configuration files and automake/autoconf standards. > Until now, RTEMS used $(INSTALL) for install-if-change. Automake and > autoconf use $(INSTALL) for a bsd-compatible install. As > install-if-change and bsd-install are not compatible, I renamed all > references to install-if-changed to $(INSTALL_CHANGED) and used > $(INSTALL) for bsd-install (==automake/autoconf standard). When > automake will be introduced install-if-change will probably be replaced > by $(INSTALL) and therefore will slowly vanish. For the moment, this > patch fixes a very nasty problem which prevents adding any automake file > until now (There are still more).
* Split SONIC chip into appropriate files for libchip'ing. The portableJoel Sherrill1999-02-055-0/+2139
| | | | | | portion is now in the libchip tree and the dmv177 configuration is in the dmv177 bsp. The performance impact of libchip'ing this driver was minimal.
* Added base version of file system infrastructure. This includes a majorJoel Sherrill1998-11-231-0/+1
| | | | | | | | | | | | | | | | | | | | | | | | overhaul of the RTEMS system call interface. This base file system is the "In-Memory File System" aka IMFS. The design and implementation was done by the following people: + Joel Sherrill (joel@OARcorp.com) + Jennifer Averett (jennifer@OARcorp.com) + Steve "Mr Mount" Salitasc (salitasc@OARcorp.com) + Kerwin Wade (wade@OARcorp.com) PROBLEMS ======== + It is VERY likely that merging this will break the UNIX port. This can/will be fixed. + There is likely some reentrancy/mutual exclusion needed. + Eventually, there should be a "mini-IMFS" description table to eliminate links, symlinks, etc to save memory. All you need to have "classic RTEMS" functionality is technically directories and device IO. All the rest could be left out to save memory.
* Merged Vista SCORE603e, Radstone PPCn_60x, and DY-4 DMV177 BSPs alongJoel Sherrill1998-10-283-4/+6
| | | | with libchip.
* Updates to tree to make it build with all desired changes and the conversionJoel Sherrill1998-09-113-6/+6
| | | | of the SONIC driver to the new FreeBSD stack instead of KA9Q.
* Don't disable the RX/TX on close in polled mode.Joel Sherrill1998-08-131-2/+3
| | | | Fixed a comment.
* Commented out the code which yields the CPU when the serial controller isJoel Sherrill1998-08-053-0/+6
| | | | | busy. This type of behavior perturbs the tests and many of them will not pass.
* Updated.Joel Sherrill1998-07-301-1/+1
|
* New files.Joel Sherrill1998-07-304-0/+23
|
* Added prototype for default register access routines to header files.Joel Sherrill1998-07-294-4/+100
| | | | | Corrected prototypes to reflect unsigned32 values being passed around instead of unsigned8's.
* Deleted probe routine as device specific.Joel Sherrill1998-07-291-6/+3
| | | | Renamed port table.
* Added function table.Joel Sherrill1998-07-291-0/+6
|
* Renamed control register constants.Joel Sherrill1998-07-291-11/+24
| | | | | | Set time->ticks to 0. Added function table.
* New files for Harris Semiconductor ICM7170.Joel Sherrill1998-07-292-0/+228
|
* New files.Joel Sherrill1998-07-2911-0/+403
|
* Added new files.Joel Sherrill1998-07-291-2/+5
|
* First cut implementation of real-time clock support in libchip. ThisJoel Sherrill1998-07-285-6/+221
| | | | | version compiles cleanly but there is not a BSP with a configuration table to utilize it.
* Corrected spacing.Joel Sherrill1998-07-282-14/+6
|
* Added rtc directory.Joel Sherrill1998-07-282-0/+138
|
* Added comments and corrected spacing.Joel Sherrill1998-07-252-21/+28
|
* Corrected spacing and added headers.Joel Sherrill1998-07-251-17/+28
|
* Added ns16550_set_attributes.Joel Sherrill1998-07-252-4/+105
|
* Corrected spacing and added a comment.Joel Sherrill1998-07-251-3/+5
|
* Updated to reflect set attributes.Joel Sherrill1998-07-251-2/+9
|
* Rewrote NS16550 TX interrupt processing to use termios for the bufferJoel Sherrill1998-07-253-125/+84
| | | | | and manage the interrupt sources like the other drivers. This let use remove the ns16550_flush() routine.
* Removed TX ring buffer.Joel Sherrill1998-07-251-2/+0
|
* Changed variable to hold received data to unsigned.Joel Sherrill1998-07-252-2/+2
|
* Added constants for z85c30_enable_interrupts.Joel Sherrill1998-07-251-6/+17
|
* Removed z85c30_flush().Joel Sherrill1998-07-251-124/+79
| | | | | | Reworked transmit interrupt processing to remove ring buffer and to mask the TX empty interrupt when it was not expected. This code now uses termios to buffer TX output.
* Changed comment on TxBuffer.Joel Sherrill1998-07-251-1/+2
|
* Removed mc68681_flush and corrected spacing.Joel Sherrill1998-07-252-33/+5
|
* Added information on Chris Johns' suggestion to use pointers internallyJoel Sherrill1998-07-251-0/+3
| | | | rather than doing repeated table lookups.
* New file.Joel Sherrill1998-07-251-0/+49
|
* Changed to utilize return status from rtems_termios_dequeue_characters()Joel Sherrill1998-07-251-4/+9
| | | | and to correctly set the TX active indicator.
* Interrupts were incorrectly managed with a disable/disable pair ratherJoel Sherrill1998-07-251-2/+2
| | | | than with a disable/enable pair.
* Removed use of data port for z8530.Joel Sherrill1998-07-182-90/+54
| | | | Move some code around.
* Corrected header files.Joel Sherrill1998-07-161-1/+2
|
* Minor corrections for typos to get it to compile.Joel Sherrill1998-07-161-2/+2
|
* Split default baud rate table into its own file. This shrinks theJoel Sherrill1998-07-165-108/+124
| | | | | | size of the minimum mc68681 driver. The clock speed field can not now be configured as NULL but must instead specify the address of the default table.
* Fixed typos.Joel Sherrill1998-07-154-4/+7
|
* Added default z85c30 register access routines.Joel Sherrill1998-07-153-1/+129
|
* Added default mc68681 register access routines.Joel Sherrill1998-07-155-12/+142
|
* Added check for proper deviceType to interrupt processing code.Joel Sherrill1998-07-152-2/+4
|