blob: 75ae9aa6062dc875ae7a8847cbb6835e9f420e96 [file] [log] [blame]
Vipin KUMARa6e34f72010-01-15 19:15:45 +05301/*
2 * (C) Copyright 2009
Vipin KUMARf3fcf922012-05-07 13:00:19 +05303 * Vipin Kumar, ST Microelectronics, vipin.kumar@st.com.
Vipin KUMARa6e34f72010-01-15 19:15:45 +05304 *
5 * See file CREDITS for list of people who contributed to this
6 * project.
7 *
8 * This program is free software; you can redistribute it and/or
9 * modify it under the terms of the GNU General Public License as
10 * published by the Free Software Foundation; either version 2 of
11 * the License, or (at your option) any later version.
12 *
13 * This program is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 * GNU General Public License for more details.
17 *
18 * You should have received a copy of the GNU General Public License
19 * along with this program; if not, write to the Free Software
20 * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
21 * MA 02111-1307 USA
22 */
23
24#include <common.h>
25#include <flash.h>
26#include <linux/err.h>
Vipin KUMARf3fcf922012-05-07 13:00:19 +053027#include <linux/mtd/st_smi.h>
Vipin KUMARa6e34f72010-01-15 19:15:45 +053028
29#include <asm/io.h>
30#include <asm/arch/hardware.h>
Vipin KUMARa6e34f72010-01-15 19:15:45 +053031
32#if !defined(CONFIG_SYS_NO_FLASH)
33
34static struct smi_regs *const smicntl =
35 (struct smi_regs * const)CONFIG_SYS_SMI_BASE;
36static ulong bank_base[CONFIG_SYS_MAX_FLASH_BANKS] =
37 CONFIG_SYS_FLASH_ADDR_BASE;
38flash_info_t flash_info[CONFIG_SYS_MAX_FLASH_BANKS];
39
Armando Visconti6d6d23c2012-05-07 13:00:27 +053040/* data structure to maintain flash ids from different vendors */
41struct flash_device {
42 char *name;
43 u8 erase_cmd;
44 u32 device_id;
45 u32 pagesize;
46 unsigned long sectorsize;
47 unsigned long size_in_bytes;
48};
49
50#define FLASH_ID(n, es, id, psize, ssize, size) \
51{ \
52 .name = n, \
53 .erase_cmd = es, \
54 .device_id = id, \
55 .pagesize = psize, \
56 .sectorsize = ssize, \
57 .size_in_bytes = size \
58}
59
60/*
61 * List of supported flash devices.
62 * Currently the erase_cmd field is not used in this driver.
63 */
64static struct flash_device flash_devices[] = {
65 FLASH_ID("st m25p16" , 0xd8, 0x00152020, 0x100, 0x10000, 0x200000),
66 FLASH_ID("st m25p32" , 0xd8, 0x00162020, 0x100, 0x10000, 0x400000),
67 FLASH_ID("st m25p64" , 0xd8, 0x00172020, 0x100, 0x10000, 0x800000),
68 FLASH_ID("st m25p128" , 0xd8, 0x00182020, 0x100, 0x40000, 0x1000000),
69 FLASH_ID("st m25p05" , 0xd8, 0x00102020, 0x80 , 0x8000 , 0x10000),
70 FLASH_ID("st m25p10" , 0xd8, 0x00112020, 0x80 , 0x8000 , 0x20000),
71 FLASH_ID("st m25p20" , 0xd8, 0x00122020, 0x100, 0x10000, 0x40000),
72 FLASH_ID("st m25p40" , 0xd8, 0x00132020, 0x100, 0x10000, 0x80000),
73 FLASH_ID("st m25p80" , 0xd8, 0x00142020, 0x100, 0x10000, 0x100000),
74 FLASH_ID("st m45pe10" , 0xd8, 0x00114020, 0x100, 0x10000, 0x20000),
75 FLASH_ID("st m45pe20" , 0xd8, 0x00124020, 0x100, 0x10000, 0x40000),
76 FLASH_ID("st m45pe40" , 0xd8, 0x00134020, 0x100, 0x10000, 0x80000),
77 FLASH_ID("st m45pe80" , 0xd8, 0x00144020, 0x100, 0x10000, 0x100000),
78 FLASH_ID("sp s25fl004" , 0xd8, 0x00120201, 0x100, 0x10000, 0x80000),
79 FLASH_ID("sp s25fl008" , 0xd8, 0x00130201, 0x100, 0x10000, 0x100000),
80 FLASH_ID("sp s25fl016" , 0xd8, 0x00140201, 0x100, 0x10000, 0x200000),
81 FLASH_ID("sp s25fl032" , 0xd8, 0x00150201, 0x100, 0x10000, 0x400000),
82 FLASH_ID("sp s25fl064" , 0xd8, 0x00160201, 0x100, 0x10000, 0x800000),
83 FLASH_ID("mac 25l512" , 0xd8, 0x001020C2, 0x010, 0x10000, 0x10000),
84 FLASH_ID("mac 25l1005" , 0xd8, 0x001120C2, 0x010, 0x10000, 0x20000),
85 FLASH_ID("mac 25l2005" , 0xd8, 0x001220C2, 0x010, 0x10000, 0x40000),
86 FLASH_ID("mac 25l4005" , 0xd8, 0x001320C2, 0x010, 0x10000, 0x80000),
87 FLASH_ID("mac 25l4005a" , 0xd8, 0x001320C2, 0x010, 0x10000, 0x80000),
88 FLASH_ID("mac 25l8005" , 0xd8, 0x001420C2, 0x010, 0x10000, 0x100000),
89 FLASH_ID("mac 25l1605" , 0xd8, 0x001520C2, 0x100, 0x10000, 0x200000),
90 FLASH_ID("mac 25l1605a" , 0xd8, 0x001520C2, 0x010, 0x10000, 0x200000),
91 FLASH_ID("mac 25l3205" , 0xd8, 0x001620C2, 0x100, 0x10000, 0x400000),
92 FLASH_ID("mac 25l3205a" , 0xd8, 0x001620C2, 0x100, 0x10000, 0x400000),
93 FLASH_ID("mac 25l6405" , 0xd8, 0x001720C2, 0x100, 0x10000, 0x800000),
94 FLASH_ID("wbd w25q128" , 0xd8, 0x001840EF, 0x1000, 0x10000, 0x1000000),
Vipin KUMARa6e34f72010-01-15 19:15:45 +053095};
96
97/*
98 * smi_wait_xfer_finish - Wait until TFF is set in status register
99 * @timeout: timeout in milliseconds
100 *
101 * Wait until TFF is set in status register
102 */
Amit Virdi5c16c542012-05-07 13:00:20 +0530103static int smi_wait_xfer_finish(int timeout)
Vipin KUMARa6e34f72010-01-15 19:15:45 +0530104{
Amit Virdib5992fa2012-05-07 13:00:29 +0530105 ulong start = get_timer(0);
106
107 while (get_timer(start) < timeout) {
Vipin KUMARa6e34f72010-01-15 19:15:45 +0530108 if (readl(&smicntl->smi_sr) & TFF)
Amit Virdi5c16c542012-05-07 13:00:20 +0530109 return 0;
Amit Virdib5992fa2012-05-07 13:00:29 +0530110
111 /* Try after 10 ms */
112 udelay(10);
113 };
Amit Virdi5c16c542012-05-07 13:00:20 +0530114
115 return -1;
Vipin KUMARa6e34f72010-01-15 19:15:45 +0530116}
117
118/*
119 * smi_read_id - Read flash id
120 * @info: flash_info structure pointer
121 * @banknum: bank number
122 *
123 * Read the flash id present at bank #banknum
124 */
125static unsigned int smi_read_id(flash_info_t *info, int banknum)
126{
127 unsigned int value;
128
129 writel(readl(&smicntl->smi_cr1) | SW_MODE, &smicntl->smi_cr1);
130 writel(READ_ID, &smicntl->smi_tr);
131 writel((banknum << BANKSEL_SHIFT) | SEND | TX_LEN_1 | RX_LEN_3,
132 &smicntl->smi_cr2);
Vipin KUMARf3fcf922012-05-07 13:00:19 +0530133
Amit Virdi5c16c542012-05-07 13:00:20 +0530134 if (smi_wait_xfer_finish(XFER_FINISH_TOUT))
135 return -EIO;
Vipin KUMARa6e34f72010-01-15 19:15:45 +0530136
137 value = (readl(&smicntl->smi_rr) & 0x00FFFFFF);
138
139 writel(readl(&smicntl->smi_sr) & ~TFF, &smicntl->smi_sr);
140 writel(readl(&smicntl->smi_cr1) & ~SW_MODE, &smicntl->smi_cr1);
141
142 return value;
143}
144
145/*
146 * flash_get_size - Detect the SMI flash by reading the ID.
147 * @base: Base address of the flash area bank #banknum
148 * @banknum: Bank number
149 *
150 * Detect the SMI flash by reading the ID. Initializes the flash_info structure
151 * with size, sector count etc.
152 */
153static ulong flash_get_size(ulong base, int banknum)
154{
155 flash_info_t *info = &flash_info[banknum];
Amit Virdi69fcb552012-05-07 13:00:22 +0530156 int value;
Vipin KUMARa6e34f72010-01-15 19:15:45 +0530157 int i;
158
159 value = smi_read_id(info, banknum);
Amit Virdi69fcb552012-05-07 13:00:22 +0530160
161 if (value < 0) {
162 printf("Flash id could not be read\n");
163 return 0;
164 }
165
Armando Visconti6d6d23c2012-05-07 13:00:27 +0530166 /* Matches chip-id to entire list of 'serial-nor flash' ids */
167 for (i = 0; i < ARRAY_SIZE(flash_devices); i++) {
168 if (flash_devices[i].device_id == value) {
169 info->size = flash_devices[i].size_in_bytes;
170 info->flash_id = value;
171 info->start[0] = base;
172 info->sector_count =
173 info->size/flash_devices[i].sectorsize;
Vipin KUMARa6e34f72010-01-15 19:15:45 +0530174
Armando Visconti6d6d23c2012-05-07 13:00:27 +0530175 return info->size;
Vipin KUMARa6e34f72010-01-15 19:15:45 +0530176 }
177 }
178
Armando Visconti6d6d23c2012-05-07 13:00:27 +0530179 return 0;
Vipin KUMARa6e34f72010-01-15 19:15:45 +0530180}
181
182/*
183 * smi_read_sr - Read status register of SMI
184 * @bank: bank number
185 *
186 * This routine will get the status register of the flash chip present at the
187 * given bank
188 */
Amit Virdi69fcb552012-05-07 13:00:22 +0530189static int smi_read_sr(int bank)
Vipin KUMARa6e34f72010-01-15 19:15:45 +0530190{
Shiraz Hashima59c7b32012-05-07 13:00:24 +0530191 u32 ctrlreg1, val;
Vipin KUMARa6e34f72010-01-15 19:15:45 +0530192
193 /* store the CTRL REG1 state */
194 ctrlreg1 = readl(&smicntl->smi_cr1);
195
196 /* Program SMI in HW Mode */
197 writel(readl(&smicntl->smi_cr1) & ~(SW_MODE | WB_MODE),
198 &smicntl->smi_cr1);
199
200 /* Performing a RSR instruction in HW mode */
201 writel((bank << BANKSEL_SHIFT) | RD_STATUS_REG, &smicntl->smi_cr2);
202
Amit Virdi5c16c542012-05-07 13:00:20 +0530203 if (smi_wait_xfer_finish(XFER_FINISH_TOUT))
204 return -1;
Vipin KUMARa6e34f72010-01-15 19:15:45 +0530205
Shiraz Hashima59c7b32012-05-07 13:00:24 +0530206 val = readl(&smicntl->smi_sr);
207
Vipin KUMARa6e34f72010-01-15 19:15:45 +0530208 /* Restore the CTRL REG1 state */
209 writel(ctrlreg1, &smicntl->smi_cr1);
210
Shiraz Hashima59c7b32012-05-07 13:00:24 +0530211 return val;
Vipin KUMARa6e34f72010-01-15 19:15:45 +0530212}
213
214/*
215 * smi_wait_till_ready - Wait till last operation is over.
216 * @bank: bank number shifted.
217 * @timeout: timeout in milliseconds.
218 *
219 * This routine checks for WIP(write in progress)bit in Status register(SMSR-b0)
220 * The routine checks for #timeout loops, each at interval of 1 milli-second.
221 * If successful the routine returns 0.
222 */
223static int smi_wait_till_ready(int bank, int timeout)
224{
Amit Virdi69fcb552012-05-07 13:00:22 +0530225 int sr;
Amit Virdib5992fa2012-05-07 13:00:29 +0530226 ulong start = get_timer(0);
Vipin KUMARa6e34f72010-01-15 19:15:45 +0530227
228 /* One chip guarantees max 5 msec wait here after page writes,
229 but potentially three seconds (!) after page erase. */
Amit Virdib5992fa2012-05-07 13:00:29 +0530230 while (get_timer(start) < timeout) {
Vipin KUMARa6e34f72010-01-15 19:15:45 +0530231 sr = smi_read_sr(bank);
Vipin Kumara5ad7cc2012-05-07 13:00:25 +0530232 if ((sr >= 0) && (!(sr & WIP_BIT)))
Vipin KUMARa6e34f72010-01-15 19:15:45 +0530233 return 0;
234
Amit Virdib5992fa2012-05-07 13:00:29 +0530235 /* Try again after 10 usec */
236 udelay(10);
Amit Virdi69fcb552012-05-07 13:00:22 +0530237 } while (timeout--);
238
Vipin KUMARa6e34f72010-01-15 19:15:45 +0530239 printf("SMI controller is still in wait, timeout=%d\n", timeout);
240 return -EIO;
241}
242
243/*
244 * smi_write_enable - Enable the flash to do write operation
245 * @bank: bank number
246 *
247 * Set write enable latch with Write Enable command.
248 * Returns negative if error occurred.
249 */
250static int smi_write_enable(int bank)
251{
252 u32 ctrlreg1;
Amit Virdib5992fa2012-05-07 13:00:29 +0530253 u32 start;
Vipin KUMARa6e34f72010-01-15 19:15:45 +0530254 int timeout = WMODE_TOUT;
Amit Virdi69fcb552012-05-07 13:00:22 +0530255 int sr;
Vipin KUMARa6e34f72010-01-15 19:15:45 +0530256
257 /* Store the CTRL REG1 state */
258 ctrlreg1 = readl(&smicntl->smi_cr1);
259
260 /* Program SMI in H/W Mode */
261 writel(readl(&smicntl->smi_cr1) & ~SW_MODE, &smicntl->smi_cr1);
262
263 /* Give the Flash, Write Enable command */
264 writel((bank << BANKSEL_SHIFT) | WE, &smicntl->smi_cr2);
265
Amit Virdi5c16c542012-05-07 13:00:20 +0530266 if (smi_wait_xfer_finish(XFER_FINISH_TOUT))
267 return -1;
Vipin KUMARa6e34f72010-01-15 19:15:45 +0530268
269 /* Restore the CTRL REG1 state */
270 writel(ctrlreg1, &smicntl->smi_cr1);
271
Amit Virdib5992fa2012-05-07 13:00:29 +0530272 start = get_timer(0);
273 while (get_timer(start) < timeout) {
Amit Virdi69fcb552012-05-07 13:00:22 +0530274 sr = smi_read_sr(bank);
Vipin Kumara5ad7cc2012-05-07 13:00:25 +0530275 if ((sr >= 0) && (sr & (1 << (bank + WM_SHIFT))))
Amit Virdi69fcb552012-05-07 13:00:22 +0530276 return 0;
Vipin KUMARa6e34f72010-01-15 19:15:45 +0530277
Amit Virdib5992fa2012-05-07 13:00:29 +0530278 /* Try again after 10 usec */
279 udelay(10);
280 };
Vipin KUMARa6e34f72010-01-15 19:15:45 +0530281
282 return -1;
283}
284
285/*
286 * smi_init - SMI initialization routine
287 *
288 * SMI initialization routine. Sets SMI control register1.
289 */
Vipin KUMARf3fcf922012-05-07 13:00:19 +0530290void smi_init(void)
Vipin KUMARa6e34f72010-01-15 19:15:45 +0530291{
292 /* Setting the fast mode values. SMI working at 166/4 = 41.5 MHz */
293 writel(HOLD1 | FAST_MODE | BANK_EN | DSEL_TIME | PRESCAL4,
294 &smicntl->smi_cr1);
295}
296
297/*
298 * smi_sector_erase - Erase flash sector
299 * @info: flash_info structure pointer
300 * @sector: sector number
301 *
302 * Set write enable latch with Write Enable command.
303 * Returns negative if error occurred.
304 */
305static int smi_sector_erase(flash_info_t *info, unsigned int sector)
306{
307 int bank;
308 unsigned int sect_add;
309 unsigned int instruction;
310
311 switch (info->start[0]) {
312 case SMIBANK0_BASE:
313 bank = BANK0;
314 break;
315 case SMIBANK1_BASE:
316 bank = BANK1;
317 break;
318 case SMIBANK2_BASE:
319 bank = BANK2;
320 break;
321 case SMIBANK3_BASE:
322 bank = BANK3;
323 break;
324 default:
325 return -1;
326 }
327
328 sect_add = sector * (info->size / info->sector_count);
329 instruction = ((sect_add >> 8) & 0x0000FF00) | SECTOR_ERASE;
330
331 writel(readl(&smicntl->smi_sr) & ~(ERF1 | ERF2), &smicntl->smi_sr);
332
Armando Viscontiae3e0cc2012-05-07 13:00:26 +0530333 /* Wait until finished previous write command. */
334 if (smi_wait_till_ready(bank, CONFIG_SYS_FLASH_ERASE_TOUT))
335 return -EBUSY;
Vipin KUMARa6e34f72010-01-15 19:15:45 +0530336
Armando Viscontiae3e0cc2012-05-07 13:00:26 +0530337 /* Send write enable, before erase commands. */
338 if (smi_write_enable(bank))
339 return -EIO;
Vipin KUMARa6e34f72010-01-15 19:15:45 +0530340
Armando Viscontiae3e0cc2012-05-07 13:00:26 +0530341 /* Put SMI in SW mode */
342 writel(readl(&smicntl->smi_cr1) | SW_MODE, &smicntl->smi_cr1);
Vipin KUMARa6e34f72010-01-15 19:15:45 +0530343
Armando Viscontiae3e0cc2012-05-07 13:00:26 +0530344 /* Send Sector Erase command in SW Mode */
345 writel(instruction, &smicntl->smi_tr);
346 writel((bank << BANKSEL_SHIFT) | SEND | TX_LEN_4,
Vipin KUMARa6e34f72010-01-15 19:15:45 +0530347 &smicntl->smi_cr2);
Armando Viscontiae3e0cc2012-05-07 13:00:26 +0530348 if (smi_wait_xfer_finish(XFER_FINISH_TOUT))
349 return -EIO;
Vipin KUMARa6e34f72010-01-15 19:15:45 +0530350
Armando Viscontiae3e0cc2012-05-07 13:00:26 +0530351 if (smi_wait_till_ready(bank, CONFIG_SYS_FLASH_ERASE_TOUT))
352 return -EBUSY;
Vipin KUMARa6e34f72010-01-15 19:15:45 +0530353
Armando Viscontiae3e0cc2012-05-07 13:00:26 +0530354 /* Put SMI in HW mode */
355 writel(readl(&smicntl->smi_cr1) & ~SW_MODE,
Vipin KUMARa6e34f72010-01-15 19:15:45 +0530356 &smicntl->smi_cr1);
357
Armando Viscontiae3e0cc2012-05-07 13:00:26 +0530358 return 0;
Vipin KUMARa6e34f72010-01-15 19:15:45 +0530359}
360
361/*
362 * smi_write - Write to SMI flash
363 * @src_addr: source buffer
364 * @dst_addr: destination buffer
365 * @length: length to write in words
366 * @bank: bank base address
367 *
368 * Write to SMI flash
369 */
370static int smi_write(unsigned int *src_addr, unsigned int *dst_addr,
371 unsigned int length, ulong bank_addr)
372{
373 int banknum;
Vipin KUMARa6e34f72010-01-15 19:15:45 +0530374
375 switch (bank_addr) {
376 case SMIBANK0_BASE:
377 banknum = BANK0;
Vipin KUMARa6e34f72010-01-15 19:15:45 +0530378 break;
379 case SMIBANK1_BASE:
380 banknum = BANK1;
Vipin KUMARa6e34f72010-01-15 19:15:45 +0530381 break;
382 case SMIBANK2_BASE:
383 banknum = BANK2;
Vipin KUMARa6e34f72010-01-15 19:15:45 +0530384 break;
385 case SMIBANK3_BASE:
386 banknum = BANK3;
Vipin KUMARa6e34f72010-01-15 19:15:45 +0530387 break;
388 default:
389 return -1;
390 }
391
392 if (smi_wait_till_ready(banknum, CONFIG_SYS_FLASH_WRITE_TOUT))
393 return -EBUSY;
394
395 /* Set SMI in Hardware Mode */
396 writel(readl(&smicntl->smi_cr1) & ~SW_MODE, &smicntl->smi_cr1);
397
398 if (smi_write_enable(banknum))
399 return -EIO;
400
401 /* Perform the write command */
402 while (length--) {
403 if (((ulong) (dst_addr) % SFLASH_PAGE_SIZE) == 0) {
404 if (smi_wait_till_ready(banknum,
405 CONFIG_SYS_FLASH_WRITE_TOUT))
406 return -EBUSY;
407
408 if (smi_write_enable(banknum))
409 return -EIO;
410 }
411
412 *dst_addr++ = *src_addr++;
413
414 if ((readl(&smicntl->smi_sr) & (ERF1 | ERF2)))
415 return -EIO;
416 }
417
418 if (smi_wait_till_ready(banknum, CONFIG_SYS_FLASH_WRITE_TOUT))
419 return -EBUSY;
420
421 writel(readl(&smicntl->smi_sr) & ~(WCF), &smicntl->smi_sr);
422
423 return 0;
424}
425
426/*
427 * write_buff - Write to SMI flash
428 * @info: flash info structure
429 * @src: source buffer
430 * @dest_addr: destination buffer
431 * @length: length to write in words
432 *
433 * Write to SMI flash
434 */
435int write_buff(flash_info_t *info, uchar *src, ulong dest_addr, ulong length)
436{
437 return smi_write((unsigned int *)src, (unsigned int *)dest_addr,
438 (length + 3) / 4, info->start[0]);
439}
440
441/*
442 * flash_init - SMI flash initialization
443 *
444 * SMI flash initialization
445 */
446unsigned long flash_init(void)
447{
448 unsigned long size = 0;
449 int i, j;
450
451 smi_init();
452
453 for (i = 0; i < CONFIG_SYS_MAX_FLASH_BANKS; i++) {
454 flash_info[i].flash_id = FLASH_UNKNOWN;
455 size += flash_info[i].size = flash_get_size(bank_base[i], i);
456 }
457
458 for (j = 0; j < CONFIG_SYS_MAX_FLASH_BANKS; j++) {
459 for (i = 1; i < flash_info[j].sector_count; i++)
460 flash_info[j].start[i] =
461 flash_info[j].start[i - 1] +
462 flash_info->size / flash_info->sector_count;
463
464 }
465
466 return size;
467}
468
469/*
470 * flash_print_info - Print SMI flash information
471 *
472 * Print SMI flash information
473 */
474void flash_print_info(flash_info_t *info)
475{
476 int i;
477 if (info->flash_id == FLASH_UNKNOWN) {
478 puts("missing or unknown FLASH type\n");
479 return;
480 }
Armando Visconticf9026d2012-05-07 13:00:28 +0530481
482 if (info->size >= 0x100000)
483 printf(" Size: %ld MB in %d Sectors\n",
484 info->size >> 20, info->sector_count);
485 else
486 printf(" Size: %ld KB in %d Sectors\n",
487 info->size >> 10, info->sector_count);
Vipin KUMARa6e34f72010-01-15 19:15:45 +0530488
489 puts(" Sector Start Addresses:");
490 for (i = 0; i < info->sector_count; ++i) {
491#ifdef CONFIG_SYS_FLASH_EMPTY_INFO
492 int size;
493 int erased;
494 u32 *flash;
495
496 /*
497 * Check if whole sector is erased
498 */
499 size = (info->size) / (info->sector_count);
500 flash = (u32 *) info->start[i];
501 size = size / sizeof(int);
502
503 while ((size--) && (*flash++ == ~0))
504 ;
505
506 size++;
507 if (size)
508 erased = 0;
509 else
510 erased = 1;
511
512 if ((i % 5) == 0)
513 printf("\n");
514
515 printf(" %08lX%s%s",
516 info->start[i],
517 erased ? " E" : " ", info->protect[i] ? "RO " : " ");
518#else
519 if ((i % 5) == 0)
520 printf("\n ");
521 printf(" %08lX%s",
522 info->start[i], info->protect[i] ? " (RO) " : " ");
523#endif
524 }
525 putc('\n');
526 return;
527}
528
529/*
530 * flash_erase - Erase SMI flash
531 *
532 * Erase SMI flash
533 */
534int flash_erase(flash_info_t *info, int s_first, int s_last)
535{
536 int rcode = 0;
537 int prot = 0;
538 flash_sect_t sect;
539
Vipin KUMARa6e34f72010-01-15 19:15:45 +0530540 if ((s_first < 0) || (s_first > s_last)) {
541 puts("- no sectors to erase\n");
542 return 1;
543 }
544
545 for (sect = s_first; sect <= s_last; ++sect) {
546 if (info->protect[sect])
547 prot++;
548 }
549 if (prot) {
550 printf("- Warning: %d protected sectors will not be erased!\n",
551 prot);
552 } else {
553 putc('\n');
554 }
555
556 for (sect = s_first; sect <= s_last; sect++) {
557 if (info->protect[sect] == 0) {
558 if (smi_sector_erase(info, sect))
559 rcode = 1;
560 else
561 putc('.');
562 }
563 }
564 puts(" done\n");
565 return rcode;
566}
567#endif