1 |
786 |
skrzyp |
2008-11-17 Jonathan Larmour
|
2 |
|
|
|
3 |
|
|
* src/edb7xxx_flash.c:
|
4 |
|
|
Explicitly include rather than just
|
5 |
|
|
defining _FLASH_PRIVATE_. (From bartv in flash_v2 branch)
|
6 |
|
|
|
7 |
|
|
* cdl/flash_edb7xxx.cdl (CYGPKG_DEVS_FLASH_EP72XX): Indicate that
|
8 |
|
|
this part of the driver (i.e. not EDB7312) uses the legacy flash
|
9 |
|
|
device API.
|
10 |
|
|
|
11 |
|
|
2003-11-20 Jani Monoses
|
12 |
|
|
|
13 |
|
|
* cdl/flash_edb7xxx.cdl:
|
14 |
|
|
* src/edb7xxx_flash.c.c:
|
15 |
|
|
* src/flash_query.c:
|
16 |
|
|
* src/flash_erase_block.c:
|
17 |
|
|
* src/flash_program_buf.c: Place flash functions in RAM sections
|
18 |
|
|
and no longer implement CYGHWR_IO_FLASH_DEVICE_NOT_IN_RAM. Use
|
19 |
|
|
generic flash_dev_query().
|
20 |
|
|
|
21 |
|
|
2001-10-14 Gary Thomas
|
22 |
|
|
|
23 |
|
|
* cdl/flash_edb7xxx.cdl: Missed change in include file location
|
24 |
|
|
for StrataFLASH changes.
|
25 |
|
|
|
26 |
|
|
2001-10-12 Jonathan Larmour
|
27 |
|
|
|
28 |
|
|
* cdl/flash_edb7xxx.cdl: Move EP72xx flash into separate subcomponent.
|
29 |
|
|
Clarify package description strings.
|
30 |
|
|
Move EP73xx strataflash support into here as another subcomponent.
|
31 |
|
|
|
32 |
|
|
* cdl/flash_strata_edb7xxx.cdl: Delete.
|
33 |
|
|
|
34 |
|
|
2001-09-25 Gary Thomas
|
35 |
|
|
|
36 |
|
|
* include/edb7xxx_strataflash.inl:
|
37 |
|
|
* cdl/flash_strata_edb7xxx.cdl: New setup for EDB7312 which uses
|
38 |
|
|
Intel StrataFlash devices.
|
39 |
|
|
|
40 |
|
|
2001-06-11 Gary Thomas
|
41 |
|
|
|
42 |
|
|
* src/edb7xxx_flash.c: Remove dependency on printf() via user functions.
|
43 |
|
|
|
44 |
|
|
2001-05-23 Jesper Skov
|
45 |
|
|
|
46 |
|
|
* cdl/flash_edb7xxx.cdl: Needs IO controller to copy functions to
|
47 |
|
|
RAM.
|
48 |
|
|
|
49 |
|
|
2000-12-05 Jonathan Larmour
|
50 |
|
|
|
51 |
|
|
* src/edb7xxx_flash.c (flash_code_overlaps): Define stext/etext
|
52 |
|
|
as array types so no assumptions can be made by the compiler about
|
53 |
|
|
location.
|
54 |
|
|
|
55 |
|
|
2000-12-04 Gary Thomas
|
56 |
|
|
|
57 |
|
|
* src/edb7xxx_flash.c (flash_hwr_init): Additional debugging
|
58 |
|
|
(*flash_info.pf) statments - in case this stuff fails in the future.
|
59 |
|
|
|
60 |
|
|
2000-11-21 Gary Thomas
|
61 |
|
|
|
62 |
|
|
* src/flash_query.c: Increase startup timing - didn't always work.
|
63 |
|
|
|
64 |
|
|
2000-08-29 Gary Thomas
|
65 |
|
|
|
66 |
|
|
* src/edb7xxx_flash.c: Improve error decoding.
|
67 |
|
|
|
68 |
|
|
2000-08-15 Gary Thomas
|
69 |
|
|
|
70 |
|
|
* src/edb7xxx_flash.c (flash_code_overlaps):
|
71 |
|
|
stext,etext now are _stext,_etext
|
72 |
|
|
|
73 |
|
|
//===========================================================================
|
74 |
|
|
// ####GPLCOPYRIGHTBEGIN####
|
75 |
|
|
// -------------------------------------------
|
76 |
|
|
// This file is part of eCos, the Embedded Configurable Operating System.
|
77 |
|
|
// Copyright (C) 1998, 1999, 2000, 2001, 2002 Free Software Foundation, Inc.
|
78 |
|
|
//
|
79 |
|
|
// This program is free software; you can redistribute it and/or modify
|
80 |
|
|
// it under the terms of the GNU General Public License as published by
|
81 |
|
|
// the Free Software Foundation; either version 2 or (at your option) any
|
82 |
|
|
// later version.
|
83 |
|
|
//
|
84 |
|
|
// This program is distributed in the hope that it will be useful, but
|
85 |
|
|
// WITHOUT ANY WARRANTY; without even the implied warranty of
|
86 |
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
87 |
|
|
// General Public License for more details.
|
88 |
|
|
//
|
89 |
|
|
// You should have received a copy of the GNU General Public License
|
90 |
|
|
// along with this program; if not, write to the
|
91 |
|
|
// Free Software Foundation, Inc., 51 Franklin Street,
|
92 |
|
|
// Fifth Floor, Boston, MA 02110-1301, USA.
|
93 |
|
|
// -------------------------------------------
|
94 |
|
|
// ####GPLCOPYRIGHTEND####
|
95 |
|
|
//===========================================================================
|