1 |
786 |
skrzyp |
2008-11-17 Jonathan Larmour
|
2 |
|
|
|
3 |
|
|
* src/iq80310_flash.c: Explicitly include
|
4 |
|
|
rather than just defining _FLASH_PRIVATE_.
|
5 |
|
|
(From bartv in flash_v2 branch)
|
6 |
|
|
|
7 |
|
|
* cdl/flash_iq80310.cdl: Indicate that this driver uses
|
8 |
|
|
the legacy flash device API.
|
9 |
|
|
|
10 |
|
|
2003-09-16 Jani Monoses
|
11 |
|
|
|
12 |
|
|
* src/flash_lock_block.c (flash_lock_block):
|
13 |
|
|
* src/flash_unlock_block.c (flash_unlock_block):
|
14 |
|
|
* src/flash_erase_block.c (flash_erase_block):
|
15 |
|
|
* src/flash_query.c (flash_query):
|
16 |
|
|
* src/flash_program_buf.c (flash_program_buf): Put flash functions
|
17 |
|
|
in RAM using section attributes instead of the old method.
|
18 |
|
|
* src/iq80310_flash.c (flash_hwr_init): Use generic flash_query_dev.
|
19 |
|
|
|
20 |
|
|
2003-04-04 Jani Monoses
|
21 |
|
|
|
22 |
|
|
* src/flash_lock_block.c (flash_lock_block):
|
23 |
|
|
* src/flash_unlock_block.c (flash_unlock_block):
|
24 |
|
|
* src/flash_erase_block.c (flash_erase_block):
|
25 |
|
|
* src/flash_query.c (flash_query):
|
26 |
|
|
* src/flash_program_buf.c (flash_program_buf):
|
27 |
|
|
Cache enabling and disabling are already handled by generic flash
|
28 |
|
|
|
29 |
|
|
2002-11-12 Gary Thomas
|
30 |
|
|
|
31 |
|
|
* cdl/flash_iq80310.cdl: New Xscale platforms layout.
|
32 |
|
|
|
33 |
|
|
2002-04-16 Jonathan Larmour
|
34 |
|
|
|
35 |
|
|
* cdl/flash_iq80310.cdl: Invoke $(CC) with $(CFLAGS) to ensure the
|
36 |
|
|
correct flags are passed.
|
37 |
|
|
|
38 |
|
|
2001-09-28 Jonathan Larmour
|
39 |
|
|
|
40 |
|
|
* src/iq80310_flash.c (flash_hwr_init): Only re-enable icache if it
|
41 |
|
|
was enabled before.
|
42 |
|
|
|
43 |
|
|
2001-08-04 Mark Salter
|
44 |
|
|
|
45 |
|
|
* src/flash.h (FLASH_P2V): First 4K of flash now mapped at 0xd0000000.
|
46 |
|
|
|
47 |
|
|
2001-06-11 Gary Thomas
|
48 |
|
|
|
49 |
|
|
* src/iq80310_flash.c: Remove dependency on printf() via user functions.
|
50 |
|
|
|
51 |
|
|
2001-05-23 Jesper Skov
|
52 |
|
|
|
53 |
|
|
* cdl/flash_iq80310.cdl: Needs IO controller to copy functions to
|
54 |
|
|
RAM.
|
55 |
|
|
|
56 |
|
|
2000-12-05 Jonathan Larmour
|
57 |
|
|
|
58 |
|
|
* src/iq80310_flash.c (flash_code_overlaps): Define stext/etext
|
59 |
|
|
as array types so no assumptions can be made by the compiler about
|
60 |
|
|
location.
|
61 |
|
|
|
62 |
|
|
2000-11-22 Mark Salter
|
63 |
|
|
|
64 |
|
|
* src/flash_unlock_block.c (flash_unlock_block): Fix broken
|
65 |
|
|
read of lock bits.
|
66 |
|
|
|
67 |
|
|
2000-11-19 Mark Salter
|
68 |
|
|
|
69 |
|
|
* src/flash_unlock_block.c (flash_unlock_block): Fix lock state
|
70 |
|
|
query to properly use FLASH_P2V macro. Don't issue lock state
|
71 |
|
|
query for block we are unlocking.
|
72 |
|
|
|
73 |
|
|
* src/flash_program_buf.c (flash_program_buf): Fix code to skip
|
74 |
|
|
over Yavapai registers in flash memory space.
|
75 |
|
|
|
76 |
|
|
//===========================================================================
|
77 |
|
|
// ####GPLCOPYRIGHTBEGIN####
|
78 |
|
|
// -------------------------------------------
|
79 |
|
|
// This file is part of eCos, the Embedded Configurable Operating System.
|
80 |
|
|
// Copyright (C) 1998, 1999, 2000, 2001, 2002 Free Software Foundation, Inc.
|
81 |
|
|
//
|
82 |
|
|
// This program is free software; you can redistribute it and/or modify
|
83 |
|
|
// it under the terms of the GNU General Public License as published by
|
84 |
|
|
// the Free Software Foundation; either version 2 or (at your option) any
|
85 |
|
|
// later version.
|
86 |
|
|
//
|
87 |
|
|
// This program is distributed in the hope that it will be useful, but
|
88 |
|
|
// WITHOUT ANY WARRANTY; without even the implied warranty of
|
89 |
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
90 |
|
|
// General Public License for more details.
|
91 |
|
|
//
|
92 |
|
|
// You should have received a copy of the GNU General Public License
|
93 |
|
|
// along with this program; if not, write to the
|
94 |
|
|
// Free Software Foundation, Inc., 51 Franklin Street,
|
95 |
|
|
// Fifth Floor, Boston, MA 02110-1301, USA.
|
96 |
|
|
// -------------------------------------------
|
97 |
|
|
// ####GPLCOPYRIGHTEND####
|
98 |
|
|
//===========================================================================
|