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

4.104.114.84.95
Last change on this file since 84ab6601 was 84ab6601, checked in by Joel Sherrill <joel.sherrill@…>, on 10/20/00 at 13:10:30

2000-10-20 Joel Sherrill <joel@…>

  • include/wd80x3.h: Added file header and logic to prevent multiple inclusions of this file.
  • wd8003/wd8003.c: Corrected attach to include "int attach" parameter.
  • Property mode set to 100644
File size: 4.0 KB
Line 
12000-10-20      Joel Sherrill <joel@OARcorp.com>
2
3        * include/wd80x3.h: Added file header and logic to prevent multiple
4        inclusions of this file.
5        * wd8003/wd8003.c: Corrected attach to include "int attach" parameter.
6
72000-10-20      Joel Sherrill <joel@OARcorp.com>
8
9        * include/bsp.h: Cleaned up network driver name and attach defines.
10
112000-10-20      Dmitry Kargapolov <dk@gentex.ru>
12
13        * ne2000/ne2000.c: Fix some errors in the driver. 
14        1. There was no sufficient check of data in ethernet header.
15        The code in ne_rx_daemon() was:
16            inport_word (dport, len);
17            ...
18            len -= 4;
19              ...
20            if (len > 0)
21              ne_read_data (sc, startaddr, len, p);
22        Unfortunately, sometimes my NIC gave me too big len value,
23        the result was memory override.  To fix this, I added ethernet
24        header data checking.
25
26        2. The way overrides were serviced was not good.  It was complex
27        but sometimes did not provide reliable continuing of NIC working.
28        I had the situation of an endless loop in ne_check_status()
29        after override processing.
30
31        3. There was conceptual error of porting.  The old method of
32        overrides curing was ported from the OS-s, where override-processing
33        did start immediately.  But RTEMS-version uses events, and cleaning
34        of the overrides can start later.
35
36        I selected the way of ne2000 programming that is used
37        in freebsd kernel (v4.0).
38
39        Because of both problems, incorrect data in header of raw packet
40        and receiver override, it went through ne_reset() and fully
41        reset the ne2000.
42
43        So, in summary
44        - added detecting of the incorrect data in ethernet header;
45        - replaced handling of receiver overrides with new scheme,
46        via resetting of NIC, this method is used also in case of
47        invalid header detecting.
48
492000-10-18       Charles-Antoine Gauthier <charles.gauthier@nrc.ca>
50
51        * console/console.c, console/serial_mouse.c, include/bsp.h:
52        Add the ability to set parity, number of data bits and
53        number of stop bits to the existing i386 serial drivers.
54
552000-10-17      Joel Sherrill <joel@OARcorp.com>
56
57        * startup/Makefile.am: Added idt.c since it has been moved libcpu/i386
58        to libbsp/i386/shared/irq.
59
602000-09-29      Charles-Antoine Gauthier <charles.gauthier@nrc.ca>
61
62        * startup/linkcmds: Added lines so DWARF debug information
63        would be available.  Otherwise gdb complains that the offsets
64        for the debug info are incorrect and doesn't load the files.
65
662000-09-11      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
67
68        * start/Makefile.am: Remove AM_CPPFLAGS and GAS_CODE16 conditional.
69
702000-09-04      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
71
72        * 3c509/Makefile.am, clock/Makefile.am, console/Makefile.am,
73        ne2000/Makefile.am, start/Makefile.am, startup/Makefile.am,
74        timer/Makefile.am, wd8003/Makefile.am, wrapup/Makefile.am: Include
75        compile.am
76
772000-08-30      Joel Sherrill <joel@OARcorp.com>
78
79        * console/keyboard.h: Changed numerous routines from extern inline
80        to static inline.
81
822000-08-26  Rosimildo da Silva  <rdasilva@connecttel.com>
83
84        * Major rework of the "/dev/console" driver.
85        * Added termios support for stdin ( keyboard ).
86        * Added ioctls() to support modes similar to Linux( XLATE,
87        RAW, MEDIUMRAW ).
88        * Added Keyboard mapping and handling of the keyboard's leds.
89        * Added Micro FrameBuffer driver ( "/dev/fb0" ) for bare VGA
90        controller ( 16 colors ).
91        * Added PS/2 and Serial mouse support for PC386 BSP.
92        * console/defkeymap.c: New file.
93        * console/fb_vga.c: New file.
94        * console/fb_vga.h: New file.
95        * console/i386kbd.h: New file.
96        * console/kd.h: New file.
97        * console/keyboard.c: New file.
98        * console/keyboard.h: New file.
99        * console/mouse_parser.c: New file.
100        * console/mouse_parser.h: New file.
101        * console/pc_keyb.c: New file.
102        * console/ps2_drv.h: New file.
103        * console/ps2_mouse.c: New file.
104        * console/ps2_mouse.h: New file.
105        * console/serial_mouse.c: New file.
106        * console/serial_mouse.h: New file.
107        * console/vgainit.c: New file.
108        * console/vt.c: New file.
109        * console/Makefile.am: Reflect new files.
110        * console/console.c, console/inch.c, console/outch.c: Console
111        functionality modifications.
112        * startup/Makefile.am: Pick up tty_drv.c and gdb_glue.c
113
1142000-08-10      Joel Sherrill <joel@OARcorp.com>
115
116        * ChangeLog: New file.
Note: See TracBrowser for help on using the repository browser.