]> git.kernelconcepts.de Git - karo-tx-redboot.git/blob - packages/devs/flash/arm/edb7xxx/v2_0/src/edb7xxx_flash.c
Initial revision
[karo-tx-redboot.git] / packages / devs / flash / arm / edb7xxx / v2_0 / src / edb7xxx_flash.c
1 //==========================================================================
2 //
3 //      edb7xxx_flash.c
4 //
5 //      Flash programming
6 //
7 //==========================================================================
8 //####ECOSGPLCOPYRIGHTBEGIN####
9 // -------------------------------------------
10 // This file is part of eCos, the Embedded Configurable Operating System.
11 // Copyright (C) 1998, 1999, 2000, 2001, 2002 Red Hat, Inc.
12 //
13 // eCos is free software; you can redistribute it and/or modify it under
14 // the terms of the GNU General Public License as published by the Free
15 // Software Foundation; either version 2 or (at your option) any later version.
16 //
17 // eCos is distributed in the hope that it will be useful, but WITHOUT ANY
18 // WARRANTY; without even the implied warranty of MERCHANTABILITY or
19 // FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
20 // for more details.
21 //
22 // You should have received a copy of the GNU General Public License along
23 // with eCos; if not, write to the Free Software Foundation, Inc.,
24 // 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA.
25 //
26 // As a special exception, if other files instantiate templates or use macros
27 // or inline functions from this file, or you compile this file and link it
28 // with other works to produce a work based on this file, this file does not
29 // by itself cause the resulting work to be covered by the GNU General Public
30 // License. However the source code for this file must still be made available
31 // in accordance with section (3) of the GNU General Public License.
32 //
33 // This exception does not invalidate any other reasons why a work based on
34 // this file might be covered by the GNU General Public License.
35 //
36 // Alternative licenses for eCos may be arranged by contacting Red Hat, Inc.
37 // at http://sources.redhat.com/ecos/ecos-license/
38 // -------------------------------------------
39 //####ECOSGPLCOPYRIGHTEND####
40 //==========================================================================
41 //#####DESCRIPTIONBEGIN####
42 //
43 // Author(s):    gthomas
44 // Contributors: gthomas
45 // Date:         2000-07-26
46 // Purpose:      
47 // Description:  
48 //              
49 //####DESCRIPTIONEND####
50 //
51 //==========================================================================
52
53 #include <pkgconf/hal.h>
54 #include <cyg/hal/hal_arch.h>
55
56 #define  _FLASH_PRIVATE_
57 #include <cyg/io/flash.h>
58
59 #include "flash.h"
60
61 #define _si(p) ((p[0]<<8)|p[1])
62
63 int
64 flash_hwr_init(void)
65 {
66     unsigned short data[4];
67     int num_regions, region_size;
68
69 #if 0
70     {
71     volatile int cache_test;
72     volatile int *cp = 0xE0000000;
73     // See if the data cache is working
74     *cp = 0x12345678;
75     (*flash_info.pf)("ROM cache:\n");
76     (*flash_info.pf)("cache test = %x\n", *cp);
77     HAL_DCACHE_INVALIDATE_ALL();
78     HAL_DCACHE_DISABLE();
79     (*flash_info.pf)("cache test = %x\n", *cp);
80     *cp = 0xDEADDEAD;
81     (*flash_info.pf)("cache test = %x\n", *cp);
82     HAL_DCACHE_ENABLE();
83     (*flash_info.pf)("cache test = %x\n", *cp);
84     cp = 0x00100000;
85     // See if the data cache is working
86     *cp = 0x12345678;
87     (*flash_info.pf)("RAM cache:\n");
88     (*flash_info.pf)("cache test = %x\n", *cp);
89     HAL_DCACHE_DISABLE();
90     (*flash_info.pf)("cache test = %x\n", *cp);
91     *cp = 0xDEADDEAD;
92     (*flash_info.pf)("cache test = %x\n", *cp);
93     HAL_DCACHE_ENABLE();
94     (*flash_info.pf)("cache test = %x\n", *cp);
95     }
96 #endif
97
98     flash_dev_query(data);
99 #if 0
100     dump_buf(data, sizeof(data));
101 #endif
102
103 #if 0
104     {
105     volatile int cache_test;
106     volatile int *cp = 0xE0000000;
107     // See if the data cache is working
108     (*flash_info.pf)("cache test = %x\n", *cp);
109     *cp = 0x56781234;
110     (*flash_info.pf)("cache test = %x\n", *cp);
111     HAL_DCACHE_INVALIDATE_ALL();
112     HAL_DCACHE_DISABLE();
113     (*flash_info.pf)("cache test = %x\n", *cp);
114     *cp = 0xDEADDEAD;
115     (*flash_info.pf)("cache test = %x\n", *cp);
116     HAL_DCACHE_ENABLE();
117     (*flash_info.pf)("cache test = %x\n", *cp);
118     }
119 #endif
120
121     if (data[0] != FLASH_Intel_code) {
122         (*flash_info.pf)("Not Intel = %x\n", data[0]);
123         return FLASH_ERR_HWR;
124     }
125
126     if (data[1] == (unsigned short)0x8897) {
127         num_regions = 64*2;
128         region_size = 0x20000;
129     } else {
130         (*flash_info.pf)("Unknown device type: %x\n", data[1]);
131         return FLASH_ERR_HWR;
132     }
133
134     // Hard wired for now
135     flash_info.block_size = region_size;
136     flash_info.blocks = num_regions;
137     flash_info.start = (void *)0xE0000000;
138     flash_info.end = (void *)(0xE0000000+(num_regions*region_size));
139     return FLASH_ERR_OK;
140 }
141
142 // Map a hardware status to a package error
143 int
144 flash_hwr_map_error(int err)
145 {
146     if (err & 0x007E007E) {
147         (*flash_info.pf)("Err = %x\n", err);
148         if (err & 0x00100010) {
149             return FLASH_ERR_PROGRAM;
150         } else 
151         if (err & 0x00200020) {
152             return FLASH_ERR_ERASE;
153         } else 
154         return FLASH_ERR_HWR;  // FIXME
155     } else {
156         return FLASH_ERR_OK;
157     }
158 }
159
160 // See if a range of FLASH addresses overlaps currently running code
161 bool
162 flash_code_overlaps(void *start, void *end)
163 {
164     extern char _stext[], _etext[];
165
166     return ((((unsigned long)&_stext >= (unsigned long)start) &&
167              ((unsigned long)&_stext < (unsigned long)end)) ||
168             (((unsigned long)&_etext >= (unsigned long)start) &&
169              ((unsigned long)&_etext < (unsigned long)end)));
170 }