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

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

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

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