1 |
1254 |
phoenix |
2002-05-22 Jesper Skov
|
2 |
|
|
|
3 |
|
|
* src/var_intr.c: Fixed warning.
|
4 |
|
|
* src/var_misc.c: Same.
|
5 |
|
|
|
6 |
|
|
2002-05-13 Gary Thomas
|
7 |
|
|
|
8 |
|
|
* cdl/hal_powerpc_ppc40x.cdl: This processor family has no FPU.
|
9 |
|
|
|
10 |
|
|
2001-01-26 Jesper Skov
|
11 |
|
|
|
12 |
|
|
* include/var_intr.h: Include plf_intr.h
|
13 |
|
|
|
14 |
|
|
2001-01-18 Gary Thomas
|
15 |
|
|
|
16 |
|
|
* cdl/hal_powerpc_ppc40x.cdl: Move CYGSEM_HAL_USE_ROM_MONITOR to
|
17 |
|
|
platform CDL.
|
18 |
|
|
|
19 |
|
|
2001-01-17 Gary Thomas
|
20 |
|
|
|
21 |
|
|
* include/variant.inc: Fix EXISR interrupt decode.
|
22 |
|
|
|
23 |
|
|
2001-01-16 Gary Thomas
|
24 |
|
|
|
25 |
|
|
* src/var_intr.c (hal_variant_IRQ_init): Add platform IRQ support.
|
26 |
|
|
(hal_ppc40x_interrupt_configure): Properly configure level interrupts.
|
27 |
|
|
|
28 |
|
|
2001-01-15 Gary Thomas
|
29 |
|
|
|
30 |
|
|
* include/var_regs.h (SPR_DBSR, SPR_DBCR): Special registers used
|
31 |
|
|
for debug support. Too bad the hardware is broken.
|
32 |
|
|
|
33 |
|
|
* include/var_intr.h (CYGNUM_HAL_NO_VECTOR_TRACE): Disable common
|
34 |
|
|
single step code [hardware does not work].
|
35 |
|
|
|
36 |
|
|
2000-11-21 Gary Thomas
|
37 |
|
|
|
38 |
|
|
* include/variant.inc: Include platform specifics
|
39 |
|
|
|
40 |
|
|
2000-11-12 Gary Thomas
|
41 |
|
|
|
42 |
|
|
* src/var_misc.c: Add hal_delay_us().
|
43 |
|
|
|
44 |
|
|
2000-11-04 Gary Thomas
|
45 |
|
|
|
46 |
|
|
* src/var_misc.c: Define clock handling for PPC40x (different
|
47 |
|
|
from default since there is no decrementer).
|
48 |
|
|
|
49 |
|
|
* include/variant.inc: Special interrupt fielder for timers.
|
50 |
|
|
Add interrupt decode.
|
51 |
|
|
|
52 |
|
|
* include/var_regs.h: Define architecture (variant) specific
|
53 |
|
|
registers and special instructions used to access them.
|
54 |
|
|
|
55 |
|
|
* src/var_intr.c:
|
56 |
|
|
* include/var_intr.h: Define proper interrupt support for
|
57 |
|
|
this platform.
|
58 |
|
|
|
59 |
|
|
* include/var_cache.h: Fix details of cache on PPC40x. Note:
|
60 |
|
|
the data cache has problems - currently left disabled.
|
61 |
|
|
|
62 |
|
|
* cdl/hal_powerpc_ppc40x.cdl: Add support for ROM_MONITOR.
|
63 |
|
|
|
64 |
|
|
//===========================================================================
|
65 |
|
|
//####ECOSGPLCOPYRIGHTBEGIN####
|
66 |
|
|
// -------------------------------------------
|
67 |
|
|
// This file is part of eCos, the Embedded Configurable Operating System.
|
68 |
|
|
// Copyright (C) 1998, 1999, 2000, 2001, 2002 Red Hat, Inc.
|
69 |
|
|
//
|
70 |
|
|
// eCos is free software; you can redistribute it and/or modify it under
|
71 |
|
|
// the terms of the GNU General Public License as published by the Free
|
72 |
|
|
// Software Foundation; either version 2 or (at your option) any later version.
|
73 |
|
|
//
|
74 |
|
|
// eCos is distributed in the hope that it will be useful, but WITHOUT ANY
|
75 |
|
|
// WARRANTY; without even the implied warranty of MERCHANTABILITY or
|
76 |
|
|
// FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
|
77 |
|
|
// for more details.
|
78 |
|
|
//
|
79 |
|
|
// You should have received a copy of the GNU General Public License along
|
80 |
|
|
// with eCos; if not, write to the Free Software Foundation, Inc.,
|
81 |
|
|
// 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA.
|
82 |
|
|
//
|
83 |
|
|
// As a special exception, if other files instantiate templates or use macros
|
84 |
|
|
// or inline functions from this file, or you compile this file and link it
|
85 |
|
|
// with other works to produce a work based on this file, this file does not
|
86 |
|
|
// by itself cause the resulting work to be covered by the GNU General Public
|
87 |
|
|
// License. However the source code for this file must still be made available
|
88 |
|
|
// in accordance with section (3) of the GNU General Public License.
|
89 |
|
|
//
|
90 |
|
|
// This exception does not invalidate any other reasons why a work based on
|
91 |
|
|
// this file might be covered by the GNU General Public License.
|
92 |
|
|
//
|
93 |
|
|
// Alternative licenses for eCos may be arranged by contacting Red Hat, Inc.
|
94 |
|
|
// at http://sources.redhat.com/ecos/ecos-license/
|
95 |
|
|
// -------------------------------------------
|
96 |
|
|
//####ECOSGPLCOPYRIGHTEND####
|
97 |
|
|
//===========================================================================
|