summaryrefslogtreecommitdiffstats
path: root/c/src/libchip (unfollow)
Commit message (Collapse)AuthorFilesLines
1998-11-23Added base version of file system infrastructure. This includes a majorJoel Sherrill1-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.
1998-10-28Merged Vista SCORE603e, Radstone PPCn_60x, and DY-4 DMV177 BSPs alongJoel Sherrill3-4/+6
with libchip.
1998-09-11Updates to tree to make it build with all desired changes and the conversionJoel Sherrill3-6/+6
of the SONIC driver to the new FreeBSD stack instead of KA9Q.
1998-08-13Don't disable the RX/TX on close in polled mode.Joel Sherrill1-2/+3
Fixed a comment.
1998-08-05Commented out the code which yields the CPU when the serial controller isJoel Sherrill3-0/+6
busy. This type of behavior perturbs the tests and many of them will not pass.
1998-07-30Updated.Joel Sherrill1-1/+1
1998-07-30New files.Joel Sherrill4-0/+23
1998-07-29Added prototype for default register access routines to header files.Joel Sherrill4-4/+100
Corrected prototypes to reflect unsigned32 values being passed around instead of unsigned8's.
1998-07-29Deleted probe routine as device specific.Joel Sherrill1-6/+3
Renamed port table.
1998-07-29Added function table.Joel Sherrill1-0/+6
1998-07-29Renamed control register constants.Joel Sherrill1-11/+24
Set time->ticks to 0. Added function table.
1998-07-29New files for Harris Semiconductor ICM7170.Joel Sherrill2-0/+228
1998-07-29New files.Joel Sherrill11-0/+403
1998-07-29Added new files.Joel Sherrill1-2/+5
1998-07-28First cut implementation of real-time clock support in libchip. ThisJoel Sherrill5-6/+221
version compiles cleanly but there is not a BSP with a configuration table to utilize it.
1998-07-28Corrected spacing.Joel Sherrill2-14/+6
1998-07-28Added rtc directory.Joel Sherrill2-0/+138
1998-07-25Added comments and corrected spacing.Joel Sherrill2-21/+28
1998-07-25Corrected spacing and added headers.Joel Sherrill1-17/+28
1998-07-25Added ns16550_set_attributes.Joel Sherrill2-4/+105
1998-07-25Corrected spacing and added a comment.Joel Sherrill1-3/+5
1998-07-25Updated to reflect set attributes.Joel Sherrill1-2/+9
1998-07-25Rewrote NS16550 TX interrupt processing to use termios for the bufferJoel Sherrill3-125/+84
and manage the interrupt sources like the other drivers. This let use remove the ns16550_flush() routine.
1998-07-25Removed TX ring buffer.Joel Sherrill1-2/+0
1998-07-25Changed variable to hold received data to unsigned.Joel Sherrill2-2/+2
1998-07-25Added constants for z85c30_enable_interrupts.Joel Sherrill1-6/+17
1998-07-25Removed z85c30_flush().Joel Sherrill1-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.
1998-07-25Changed comment on TxBuffer.Joel Sherrill1-1/+2
1998-07-25Removed mc68681_flush and corrected spacing.Joel Sherrill2-33/+5
1998-07-25Added information on Chris Johns' suggestion to use pointers internallyJoel Sherrill1-0/+3
rather than doing repeated table lookups.
1998-07-25New file.Joel Sherrill1-0/+49
1998-07-25Changed to utilize return status from rtems_termios_dequeue_characters()Joel Sherrill1-4/+9
and to correctly set the TX active indicator.
1998-07-25Interrupts were incorrectly managed with a disable/disable pair ratherJoel Sherrill1-2/+2
than with a disable/enable pair.
1998-07-18Removed use of data port for z8530.Joel Sherrill2-90/+54
Move some code around.
1998-07-16Corrected header files.Joel Sherrill1-1/+2
1998-07-16Minor corrections for typos to get it to compile.Joel Sherrill1-2/+2
1998-07-16Split default baud rate table into its own file. This shrinks theJoel Sherrill5-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.
1998-07-15Fixed typos.Joel Sherrill4-4/+7
1998-07-15Added default z85c30 register access routines.Joel Sherrill3-1/+129
1998-07-15Added default mc68681 register access routines.Joel Sherrill5-12/+142
1998-07-15Added check for proper deviceType to interrupt processing code.Joel Sherrill2-2/+4
1998-07-15Added interrupt mask and interrupt status register bit constants.Joel Sherrill1-1/+24
Added prototype for mc68681_build_imr(), mc68681_process(), and mc68681_enable_interrupts().
1998-07-15Added default mc68681 register access routines.Joel Sherrill1-0/+49
1998-07-15Switched from driver's own buffering to using termios. This eliminatedJoel Sherrill1-121/+93
the need for the ringbuffer manipulation in this driver. It should also allow the removal of mc68681_flush. This greatly simplified the interrupt processing. Reworked Interrupt Mask Register handling. Added imr field to the device context. This handling makes sure that the IMR accurately reflects the state of the port in use and its mate. This required the reworking of the mc68681_enable_interrupts() routine to allow for the specification of which interrupt sources were being enabled/disabled. Reworked initialization to reset using port address rather than chip base address. Basically we were always resetting port 0. Added deviceType field which allows for multiple chips of the same class to have the same vector number.
1998-07-15Added information on the deviceType field.Joel Sherrill2-0/+8
1998-07-15Added default mc68681 register access routines.Joel Sherrill1-1/+2
1998-07-15Added comment to remove use of TxBuffer ring buffer in all libchip drivers.Joel Sherrill1-1/+14
The scheme used in the mc68681 is the one to follow.
1998-07-15Switched deviceOutputUsesInterrupts to TRUE so output would be interruptJoel Sherrill1-148/+147
driven. Redid "mate determination" code to check that the chip base address was the same but the port address was different. Moved mc68681_process and mc68681_build_imr to the bottom of the file so they would not be inlined. Removed the code which forced mc68681_build_imr to always return 0 which resulted in interrupts never being enabled from the chip. Corrected spacing in prototype of mc68681_write_support_int.
1998-07-15Switched to "deviceOutput = TRUE" which made device output use interrupts.Joel Sherrill1-1/+1
1998-07-09Added set attributes routine but did not hook it in to the table.Joel Sherrill2-13/+110
Switched to shared default probe.