1 |
786 |
skrzyp |
2008-11-17 Jonathan Larmour
|
2 |
|
|
|
3 |
|
|
* src/sa1100mm_flash.c:
|
4 |
|
|
Explicitly include rather than just
|
5 |
|
|
defining _FLASH_PRIVATE_. (From bartv in flash_v2 branch)
|
6 |
|
|
|
7 |
|
|
* cdl/flash_sa1100mm.cdl: Indicate that this driver uses
|
8 |
|
|
the legacy flash device API.
|
9 |
|
|
|
10 |
|
|
2003-09-12 Jani Monoses
|
11 |
|
|
|
12 |
|
|
* src/flash_erase_block.c (flash_erase_block):
|
13 |
|
|
* src/flash_query.c (flash_query):
|
14 |
|
|
* src/flash_program_buf.c (flash_program_buf): Put flash functions
|
15 |
|
|
in RAM using section attributes instead of the old method.
|
16 |
|
|
* src/sa1100mm_flash.c (flash_hwr_init): Use generic flash_query_dev.
|
17 |
|
|
|
18 |
|
|
2002-04-03 Jani Monoses
|
19 |
|
|
|
20 |
|
|
* src/flash_erase_block.c (flash_erase_block):
|
21 |
|
|
* src/flash_query.c (flash_query):
|
22 |
|
|
* src/flash_program_buf.c (flash_program_buf):
|
23 |
|
|
Cache enabling and disabling are already handled by generic flash
|
24 |
|
|
|
25 |
|
|
2001-09-28 Jonathan Larmour
|
26 |
|
|
|
27 |
|
|
* src/sa1100mm_flash.c (flash_hwr_init): Only re-enable icache if it
|
28 |
|
|
was enabled before.
|
29 |
|
|
|
30 |
|
|
2001-06-11 Gary Thomas
|
31 |
|
|
|
32 |
|
|
* src/sa1100mm_flash.c: Remove dependency on printf() via user functions.
|
33 |
|
|
|
34 |
|
|
2001-05-23 Jesper Skov
|
35 |
|
|
|
36 |
|
|
* cdl/flash_sa1100mm.cdl: Needs IO controller to copy functions to
|
37 |
|
|
RAM.
|
38 |
|
|
|
39 |
|
|
2000-12-05 Jonathan Larmour
|
40 |
|
|
|
41 |
|
|
* src/sa1100mm_flash.c (flash_code_overlaps): Define stext/etext
|
42 |
|
|
as array types so no assumptions can be made by the compiler about
|
43 |
|
|
location.
|
44 |
|
|
|
45 |
|
|
2000-10-25 Drew Moseley
|
46 |
|
|
|
47 |
|
|
* src/sa1100mm_flash.c: New file. Support for SA1100 Multimedia
|
48 |
|
|
board.
|
49 |
|
|
* src/flash_query.c: Ditto.
|
50 |
|
|
* src/flash_program_buf.c: Ditto.
|
51 |
|
|
* src/flash_erase_block.c: Ditto.
|
52 |
|
|
* src/flash.h: Ditto.
|
53 |
|
|
* cdl/flash_sa1100mm.cdl: Ditto.
|
54 |
|
|
* ChangeLog: Ditto.
|
55 |
|
|
|
56 |
|
|
//===========================================================================
|
57 |
|
|
// ####GPLCOPYRIGHTBEGIN####
|
58 |
|
|
// -------------------------------------------
|
59 |
|
|
// This file is part of eCos, the Embedded Configurable Operating System.
|
60 |
|
|
// Copyright (C) 1998, 1999, 2000, 2001, 2002 Free Software Foundation, Inc.
|
61 |
|
|
//
|
62 |
|
|
// This program is free software; you can redistribute it and/or modify
|
63 |
|
|
// it under the terms of the GNU General Public License as published by
|
64 |
|
|
// the Free Software Foundation; either version 2 or (at your option) any
|
65 |
|
|
// later version.
|
66 |
|
|
//
|
67 |
|
|
// This program is distributed in the hope that it will be useful, but
|
68 |
|
|
// WITHOUT ANY WARRANTY; without even the implied warranty of
|
69 |
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
70 |
|
|
// General Public License for more details.
|
71 |
|
|
//
|
72 |
|
|
// You should have received a copy of the GNU General Public License
|
73 |
|
|
// along with this program; if not, write to the
|
74 |
|
|
// Free Software Foundation, Inc., 51 Franklin Street,
|
75 |
|
|
// Fifth Floor, Boston, MA 02110-1301, USA.
|
76 |
|
|
// -------------------------------------------
|
77 |
|
|
// ####GPLCOPYRIGHTEND####
|
78 |
|
|
//===========================================================================
|