source: rtems/c/src/lib/libcpu/mips/ChangeLog @ d74a92d

4.104.114.84.95
Last change on this file since d74a92d was d74a92d, checked in by Joel Sherrill <joel.sherrill@…>, on 04/16/01 at 20:02:27

2001-04-16 Joel Sherrill <joel@…>

  • mongoosev/duart/mg5uart.c, mongoosev/duart/mg5uart.h Modifications made with Gregory Menke <gregory.menke@…> as he debugged this BSP using a logic analyzer. In particular, there was a mistake where the index not offset of registers was in the header file and the baud rate calculation was incorrect.
  • Property mode set to 100644
File size: 4.4 KB
Line 
12001-04-16      Joel Sherrill <joel@OARcorp.com>
2
3        * mongoosev/duart/mg5uart.c, mongoosev/duart/mg5uart.h
4        Modifications made with Gregory Menke <gregory.menke@gsfc.nasa.gov>
5        as he debugged this BSP using a logic analyzer.  In particular,
6        there was a mistake where the index not offset of registers was
7        in the header file and the baud rate calculation was incorrect.
8
92001-03-13      Joel Sherrill <joel@OARcorp.com>
10
11        * Added mongoose-v, mongoose-v/include, and mongoose-v/vectorisrs
12        directories.
13        * mongoosev/.cvsignore, mongoosev/Makefile.am, mongoosev/README,
14        mongoosev/duart/.cvsignore, mongoosev/duart/Makefile.am,
15        mongoosev/duart/README.mguart, mongoosev/duart/mg5uart.c,
16        mongoosev/duart/mg5uart.h, mongoosev/duart/mg5uart_reg.c,
17        mongoosev/include/.cvsignore, mongoosev/include/Makefile.am,
18        mongoosev/include/mongoose-v.h, mongoosev/vectorisrs/.cvsignore,
19        mongoosev/vectorisrs/Makefile.am, mongoosev/vectorisrs/vectorisrs.c:
20        New files.
21        * Makefile.am, configure.in, shared/interrupts/Makefile.am,
22        shared/interrupts/maxvectors.c: Added support for mongoosev.
23        * tx39/vectorisrs/vectorisrs.c: Corrected warning.
24
252001-03-03      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
26
27        * shared/cache/Makefile.am, tx39/include/Makefile.am:
28        Apply include_*HEADERS instead of H_FILES.
29
302001-01-08      Joel Sherrill <joel@OARcorp.com>
31
32        * Added r46xx directory.
33        * Makefile.am, configure.in: Modified to reflect addition of r46xx.
34        * shared/interrupts/installisrentries.c: Fixed typo.
35        * r46xx/.cvsignore, r46xx/Makefile.am,
36        r46xx/vectorisrs/.cvsignore, r46xx/vectorisrs/Makefile.am,
37        r46xx/vectorisrs/vectorisrs.c: New files.
38
392000-12-19      Joel Sherrill <joel@OARcorp.com>
40
41        * tx39/vectorisrs/vectorisrs.c: Modified to have default exception
42        vector handler.  This should be in a separate file so the BSP can
43        easily override it.
44
452000-12-13      Joel Sherrill <joel@OARcorp.com>
46
47        * configure.in: Added new directories.
48        * shared/interrupts/Makefile.am: Added AM_CPPFLAGS to define TX39
49        when compiling for a TX3904.
50        * shared/interrupts/maxvectors.c: Corrected conditional logic.
51        * tx39/Makefile.am: Added vectorisrs.
52        * tx39/vectorisrs/Makefile.am, tx39/vectorisrs/vectorisrs.c,
53        * tx39/vectorisrs/.cvsignore: New files.  This decodes the
54        interrupt pending information on the TX3904 and vectors
55        an interrupt.
56
572000-12-13      Joel Sherrill <joel@OARcorp.com>
58
59        * shared/.cvsignore, shared/Makefile.am,
60        shared/cache/.cvsignore, shared/cache/Makefile.am,
61        shared/cache/cache.c, shared/cache/cache_.h,
62        shared/interrupts/.cvsignore, shared/interrupts/Makefile.am,
63        shared/interrupts/installisrentries.c,
64        shared/interrupts/isr_entries.S,
65        shared/interrupts/maxvectors.c, tx39/.cvsignore,
66        tx39/Makefile.am, tx39/include/.cvsignore,
67        tx39/include/Makefile.am, tx39/include/tx3904.h: New file.
68        Moved some pieces of interrupt processing from score/cpu to
69        libcpu/mips since many interrupt servicing characteristics are
70        CPU model dependent.  This patch addresses the number of interrupt
71        sources and where the ISR prologues are located.  The only way to
72        currently install the ISR prologues requires that the prologues
73        be installed into RAM.
74
752000-11-09      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
76
77        * Makefile.am: Use ... instead of RTEMS_TOPdir in ACLOCAL_AMFLAGS.
78
792000-11-02      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
80
81        * Makefile.am: Switch to ACLOCAL_AMFLAGS = -I $(RTEMS_TOPdir)/aclocal.
82
832000-10-26      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
84
85        * Makefile.am: ACLOCAL_AMFLAGS= -I $(RTEMS_TOPdir)/macros.
86        Switch to GNU canonicalization.
87
882000-10-24      Alan Cudmore <alanc@linuxstart.com> and
89        Joel Sherrill <joel@OARcorp.com>
90
91        * This is a major reworking of the mips64orion port to use
92        gcc predefines as much as possible and a big push to multilib
93        the mips port.  The mips64orion port was copied/renamed to mips
94        to be more like other GNU tools.  Alan did most of the technical
95        work of determining how to map old macro names used by the mips64orion
96        port to standard compiler macro definitions.  Joel did the merge
97        with CVS magic to keep individual file history and did the BSP
98        modifications. Details follow:
99        * Makefile.am: Made clock and timer subdirectories conditional.
100        * configure.in: Ditto.
101        * clock/clock.S: Switch from using <idtmon.h> to <asm.h>.
102        * clock/gettime.S: Switch from using <idtmon.h> to <asm.h>.
103
1042000-09-04      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
105
106        * clock/Makefile.am, timer/Makefile.am: Include compile.am
107
1082000-08-10      Joel Sherrill <joel@OARcorp.com>
109
110        * ChangeLog: New file.
Note: See TracBrowser for help on using the repository browser.