OpenCores
URL https://opencores.org/ocsvn/openrisc/openrisc/trunk

Subversion Repositories openrisc

[/] [openrisc/] [trunk/] [rtos/] [ecos-2.0/] [packages/] [hal/] [arm/] [sa11x0/] [sa1100mm/] [v2_0/] [ChangeLog] - Blame information for rev 279

Go to most recent revision | Details | Compare with Previous | View Log

Line No. Rev Author Line
1 27 unneback
2003-02-13  Patrick Doyle  
2
        * src/sa1100mm_misc.c: Replaced explicit prototype of memset with
3
        #include .
4
 
5
2003-02-10  Nick Garnett  
6
 
7
        * misc/redboot_ROM.ecm:
8
        * misc/redboot_RAM.ecm:
9
        Removed setting of CYGSEM_HAL_VIRTUAL_VECTOR_DIAG, otherise it
10
        causes a configuration error.
11
 
12
2002-05-14  Jesper Skov  
13
 
14
        * src/sa1100mm_misc.c (hal_mmu_init): Fixed warning.
15
 
16
2002-05-07  Gary Thomas  
17
 
18
        * cdl/hal_arm_sa11x0_sa1100mm.cdl:
19
        Standardize CYGNUM_HAL_VIRTUAL_VECTOR_CONSOLE_CHANNEL_DEFAULT usage.
20
 
21
2002-01-28  Jesper Skov  
22
 
23
        * include/plf_io.h: Added.
24
 
25
2001-04-16  Gary Thomas  
26
 
27
        * cdl/hal_arm_sa11x0_sa1100mm.cdl: Need CDL for UART interfaces.
28
 
29
2001-03-08  Jesper Skov  
30
 
31
        * cdl/hal_arm_sa11x0_sa1100mm.cdl:  Removed
32
        CYGINT_HAL_VIRTUAL_VECTOR_SUPPORT_GUARANTEED which is now the
33
        default.
34
 
35
2001-02-23  Gary Thomas  
36
 
37
        * misc/redboot_ROM.ecm: Renamed from redboot_ROM.cfg
38
 
39
        * misc/redboot_RAM.ecm: Renamed from redboot_RAM.cfg
40
 
41
2001-02-08  Jesper Skov  
42
 
43
        * cdl/hal_arm_sa11x0_sa1100mm.cdl: Respect channel configuration
44
        constraints.
45
 
46
2001-01-05  Hugo Tyson  
47
 
48
        * include/plf_mmap.h: New file.  Statically defined macros for
49
        translation from virtual to physical and back, and to get an
50
        uncached address for a normally-cached object.  HAL_MM_PAGESIZE()
51
        HAL_VIRT_TO_PHYS_ADDRESS() HAL_PHYS_TO_VIRT_ADDRESS()
52
        HAL_VIRT_TO_UNCACHED_ADDRESS().  This included by the variant
53
        hal's hal_cache.h for convenience and proximity to other memory
54
        and cache features.
55
 
56
        * src/sa1100mm_misc.c (hal_mmu_init): Add double mapping for
57
        uncached access to SDRAM area, at its physical address.
58
 
59
2000-12-13  Hugo Tyson  
60
 
61
        * src/sa1100mm_misc.c: Use  from the variant HAL
62
        for definitions of all MM tables and so on.
63
 
64
        * include/hal_platform_ints.h: Removed; it was the same in all
65
        platforms so is now in the common variant hal, "hal_var_ints.h"
66
        and accessible as CYGBLD_HAL_VAR_INTS_H 
67
 
68
2000-11-27  Drew Moseley  
69
 
70
        * src/sa1100mm_misc.c (sa1100mm_program_new_stack): New function
71
        for switching to an application stack when running a program under
72
        a ROM monitor.
73
 
74
        * cdl/hal_arm_sa11x0_sa1100mm. Define HAL_ARCH_PROGRAM_NEW_STACK.
75
 
76
2000-11-13  Drew Moseley  
77
 
78
        * misc/redboot_ROM.cfg: Turn on REDBOOT_BSP_SYSCALLS.
79
        * misc/redboot_RAM.cfg: Ditto.
80
 
81
2000-11-09  Drew Moseley  
82
 
83
        * misc/redboot_ROM.cfg: New import file for ecosconfig.
84
        * misc/redboot_RAM.cfg: Ditto.
85
 
86
2000-11-06  Drew Moseley  
87
 
88
        * cdl/hal_arm_sa11x0_sa1100mm.cdl: Use the "-mapcs-frame" compile option.
89
 
90
2000-10-25  Drew Moseley  
91
 
92
        * src/sa1100mm_misc.c: New file.  Support for SA1100 Multimedia
93
        board.
94
        * include/pkgconf/mlt_arm_sa11x0_sa1100mm_rom.mlt: Ditto.
95
        * include/pkgconf/mlt_arm_sa11x0_sa1100mm_rom.ldi: Ditto.
96
        * include/pkgconf/mlt_arm_sa11x0_sa1100mm_rom.h: Ditto.
97
        * include/pkgconf/mlt_arm_sa11x0_sa1100mm_ram.mlt: Ditto.
98
        * include/pkgconf/mlt_arm_sa11x0_sa1100mm_ram.ldi: Ditto.
99
        * include/pkgconf/mlt_arm_sa11x0_sa1100mm_ram.h: Ditto.
100
        * include/sa1100mm.h: Ditto.
101
        * include/hal_platform_setup.h: Ditto.
102
        * include/hal_platform_ints.h: Ditto.
103
        * cdl/hal_arm_sa11x0_sa1100mm.cdl: Ditto.
104
        * Changelog: Ditto.
105
 
106
//===========================================================================
107
//####ECOSGPLCOPYRIGHTBEGIN####
108
// -------------------------------------------
109
// This file is part of eCos, the Embedded Configurable Operating System.
110
// Copyright (C) 1998, 1999, 2000, 2001, 2002 Red Hat, Inc.
111
//
112
// eCos is free software; you can redistribute it and/or modify it under
113
// the terms of the GNU General Public License as published by the Free
114
// Software Foundation; either version 2 or (at your option) any later version.
115
//
116
// eCos is distributed in the hope that it will be useful, but WITHOUT ANY
117
// WARRANTY; without even the implied warranty of MERCHANTABILITY or
118
// FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
119
// for more details.
120
//
121
// You should have received a copy of the GNU General Public License along
122
// with eCos; if not, write to the Free Software Foundation, Inc.,
123
// 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA.
124
//
125
// As a special exception, if other files instantiate templates or use macros
126
// or inline functions from this file, or you compile this file and link it
127
// with other works to produce a work based on this file, this file does not
128
// by itself cause the resulting work to be covered by the GNU General Public
129
// License. However the source code for this file must still be made available
130
// in accordance with section (3) of the GNU General Public License.
131
//
132
// This exception does not invalidate any other reasons why a work based on
133
// this file might be covered by the GNU General Public License.
134
//
135
// Alternative licenses for eCos may be arranged by contacting Red Hat, Inc.
136
// at http://sources.redhat.com/ecos/ecos-license/
137
// -------------------------------------------
138
//####ECOSGPLCOPYRIGHTEND####
139
//===========================================================================

powered by: WebSVN 2.1.0

© copyright 1999-2025 OpenCores.org, equivalent to Oliscience, all rights reserved. OpenCores®, registered trademark.