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

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

2000-10-20 Rosimildo da Silva <rdasilva@…>

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