source: rtems/c/src/lib/libbsp/i386/pc386/ChangeLog @ cf282090

4.104.114.84.95
Last change on this file since cf282090 was cf282090, checked in by Joel Sherrill <joel.sherrill@…>, on 09/28/01 at 13:28:11

2001-09-27 Joel Sherrill <joel@…>

  • include/bsp.h: Renamed delay() to rtems_bsp_delay().
  • Property mode set to 100644
File size: 6.9 KB
Line 
12001-09-27      Joel Sherrill <joel@OARcorp.com>
2
3        * include/bsp.h: Renamed delay() to rtems_bsp_delay().
4
52001-09-27      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
6
7        * include/Makefile.am: Use 'CLEANFILES ='.
8        * include/Makefile.am: Use 'PREINSTALL_FILES ='.
9        * console/Makefile.am: Use 'PREINSTALL_FILES ='.
10        * Makefile.am: Use 'TMPINSTALL_FILES ='.
11
122001-06-19      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
13
14        * console/Makefile.am: Remove RTEMS_H_FILES.
15        * start/start16.S: include <bspopts.h> to get NEW_GAS.
16
172001-06-19      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
18
19        * configure.in: Add bspopts.h.
20        * include/.cvsignore: Add bspopts.h*, stamp-h*.
21        * include/Makefile.am: Use *_HEADERS instead of *H_FILES.
22        * 3c509/Makefile.am: Dito.
23        * console/Makefile.am: Dito.
24        * include/bsp.h: Include bspopts.h.
25
262001-05-10      Ralf Corsepius  <corsepiu@faw.uni-ulm.de>
27
28        * configure.in: Use RTEMS_PROG_CC_FOR_TARGET([-ansi -fasm]).
29
302001-04-29      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
31
32        * ne2000/ne2000.c: Remove #define __INSIDE_RTEMS_BSD_TCPIP_STACK__.
33
342001-01-05      Joel Sherrill <joel@OARcorp.com>
35
36        * console/vt.c: Added include of <rtems.h> so _CPU_ISR_disable
37        would be visible.
38
392000-12-05       Eric Valette <valette@crf.canon.fr>
40
41        * console/inch.c, console/keyboard.c, console/pc_keyb.c,
42        console/vt.c, include/bsp.h: Correct incorrect interrupt level
43        handling in new keyboard management code.  Correct
44        BSP_poll_char initialization routine.
45        * start/start.S, startup/bspstart.c: Correct when the video is
46        initialized.
47        * timer/timer.c (Calibrate_1ms_loop): Address problem where this
48        did not work correctly on all PC speeds. The new calibrate routine
49        has been tested on Pentium 166, pentium II 200, pentium III
50        300 Mhz and does work as expected.
51
522000-12-05      Joel Sherrill <joel@OARcorp.com>
53
54        * pc386/console/console.c, pc386/console/serial_mouse.c,
55        pc386/console/vgainit.c, shared/comm/tty_drv.c: Remove warnings.
56
572000-11-09      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
58
59        * Makefile.am: Use ... instead of RTEMS_TOPdir in ACLOCAL_AMFLAGS.
60
612000-11-02      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
62
63        * Makefile.am: Switch to ACLOCAL_AMFLAGS = -I $(RTEMS_TOPdir)/aclocal.
64
652000-11-01      Joel Sherrill <joel@OARcorp.com>
66
67        * startup/bspstart.c: assoc.h, error.h, libio_.h, libio.h,
68        and libcsupport.h moved from libc to lib/include/rtems and
69        now must be referenced as <rtems/XXX.h>.   Header file order
70        was cleaned up while doing this.
71
722000-10-29      Joel Sherrill <joel@OARcorp.com>
73
74        * startup/sbrk.c: Removed.  Redundant with shared version.
75
762000-10-27      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
77
78        * configure.in, Makefile.am: ACLOCAL_AMFLAGS= -I $(RTEMS_TOPdir)/macros.
79        Switch to GNU canonicalization.
80
812000-10-23      Joel Sherrill <joel@OARcorp.com>
82
83        * console/serial_mouse.c: Fixed typos introduced by removal of CR/LF.
84
852000-10-20      Rosimildo da Silva <rdasilva@connecttel.com>
86
87        * console/serial_mouse.c: Added support for changing serial parameters.
88
892000-10-20      Joel Sherrill <joel@OARcorp.com>
90
91        * include/wd80x3.h: Added file header and logic to prevent multiple
92        inclusions of this file.
93        * wd8003/wd8003.c: Corrected attach to include "int attach" parameter.
94
952000-10-20      Joel Sherrill <joel@OARcorp.com>
96
97        * include/bsp.h: Cleaned up network driver name and attach defines.
98
992000-10-20      Dmitry Kargapolov <dk@gentex.ru>
100
101        * ne2000/ne2000.c: Fix some errors in the driver. 
102        1. There was no sufficient check of data in ethernet header.
103        The code in ne_rx_daemon() was:
104            inport_word (dport, len);
105            ...
106            len -= 4;
107              ...
108            if (len > 0)
109              ne_read_data (sc, startaddr, len, p);
110        Unfortunately, sometimes my NIC gave me too big len value,
111        the result was memory override.  To fix this, I added ethernet
112        header data checking.
113
114        2. The way overrides were serviced was not good.  It was complex
115        but sometimes did not provide reliable continuing of NIC working.
116        I had the situation of an endless loop in ne_check_status()
117        after override processing.
118
119        3. There was conceptual error of porting.  The old method of
120        overrides curing was ported from the OS-s, where override-processing
121        did start immediately.  But RTEMS-version uses events, and cleaning
122        of the overrides can start later.
123
124        I selected the way of ne2000 programming that is used
125        in freebsd kernel (v4.0).
126
127        Because of both problems, incorrect data in header of raw packet
128        and receiver override, it went through ne_reset() and fully
129        reset the ne2000.
130
131        So, in summary
132        - added detecting of the incorrect data in ethernet header;
133        - replaced handling of receiver overrides with new scheme,
134        via resetting of NIC, this method is used also in case of
135        invalid header detecting.
136
1372000-10-18       Charles-Antoine Gauthier <charles.gauthier@nrc.ca>
138
139        * console/console.c, console/serial_mouse.c, include/bsp.h:
140        Add the ability to set parity, number of data bits and
141        number of stop bits to the existing i386 serial drivers.
142
1432000-10-17      Joel Sherrill <joel@OARcorp.com>
144
145        * startup/Makefile.am: Added idt.c since it has been moved libcpu/i386
146        to libbsp/i386/shared/irq.
147
1482000-09-29      Charles-Antoine Gauthier <charles.gauthier@nrc.ca>
149
150        * startup/linkcmds: Added lines so DWARF debug information
151        would be available.  Otherwise gdb complains that the offsets
152        for the debug info are incorrect and doesn't load the files.
153
1542000-09-11      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
155
156        * start/Makefile.am: Remove AM_CPPFLAGS and GAS_CODE16 conditional.
157
1582000-09-04      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
159
160        * 3c509/Makefile.am, clock/Makefile.am, console/Makefile.am,
161        ne2000/Makefile.am, start/Makefile.am, startup/Makefile.am,
162        timer/Makefile.am, wd8003/Makefile.am, wrapup/Makefile.am: Include
163        compile.am
164
1652000-08-30      Joel Sherrill <joel@OARcorp.com>
166
167        * console/keyboard.h: Changed numerous routines from extern inline
168        to static inline.
169
1702000-08-26  Rosimildo da Silva  <rdasilva@connecttel.com>
171
172        * Major rework of the "/dev/console" driver.
173        * Added termios support for stdin ( keyboard ).
174        * Added ioctls() to support modes similar to Linux( XLATE,
175        RAW, MEDIUMRAW ).
176        * Added Keyboard mapping and handling of the keyboard's leds.
177        * Added Micro FrameBuffer driver ( "/dev/fb0" ) for bare VGA
178        controller ( 16 colors ).
179        * Added PS/2 and Serial mouse support for PC386 BSP.
180        * console/defkeymap.c: New file.
181        * console/fb_vga.c: New file.
182        * console/fb_vga.h: New file.
183        * console/i386kbd.h: New file.
184        * console/kd.h: New file.
185        * console/keyboard.c: New file.
186        * console/keyboard.h: New file.
187        * console/mouse_parser.c: New file.
188        * console/mouse_parser.h: New file.
189        * console/pc_keyb.c: New file.
190        * console/ps2_drv.h: New file.
191        * console/ps2_mouse.c: New file.
192        * console/ps2_mouse.h: New file.
193        * console/serial_mouse.c: New file.
194        * console/serial_mouse.h: New file.
195        * console/vgainit.c: New file.
196        * console/vt.c: New file.
197        * console/Makefile.am: Reflect new files.
198        * console/console.c, console/inch.c, console/outch.c: Console
199        functionality modifications.
200        * startup/Makefile.am: Pick up tty_drv.c and gdb_glue.c
201
2022000-08-10      Joel Sherrill <joel@OARcorp.com>
203
204        * ChangeLog: New file.
Note: See TracBrowser for help on using the repository browser.