blob: 1ae2bc4d3cd1f1e5d26ab2ffa9b2e83e068d704a [file] [log] [blame]
Stefan Tauner4404f732013-09-12 08:28:56 +00001/*
2 * This file is part of the flashrom project.
3 *
4 * Copyright (C) 2008 Claus Gindhart <claus.gindhart@kontron.com>
5 * Copyright (C) 2009 Sean Nelson <audiohacked@gmail.com>
6 * Copyright (C) 2013 Stefan Tauner
7 *
8 * This program is free software; you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License as published by
10 * the Free Software Foundation; either version 2 of the License, or
11 * (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., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
21 */
22
23/*
24 * All ST M50 chips are locked on startup. Most of them have a uniform 64 kB block layout, but some have
25 * a non-uniform block/sector segmentation which has to be handled with more care. Some of the non-uniform
26 * chips support erasing of the 4 kB sectors with another command.
27 */
28
29#include "flash.h"
Stefan Tauner4404f732013-09-12 08:28:56 +000030#include "chipdrivers.h"
31
Stefan Taunerbeaffd82013-09-12 08:29:06 +000032static int stm50_erase_sector(struct flashctx *flash, unsigned int addr)
Stefan Tauner4404f732013-09-12 08:28:56 +000033{
Stefan Taunerbeaffd82013-09-12 08:29:06 +000034 chipaddr bios = flash->virtual_memory + addr;
Stefan Tauner4404f732013-09-12 08:28:56 +000035
36 // clear status register
37 chip_writeb(flash, 0x50, bios);
38 // now start it
39 chip_writeb(flash, 0x32, bios);
40 chip_writeb(flash, 0xd0, bios);
41 programmer_delay(10);
42
Stefan Taunerbeaffd82013-09-12 08:29:06 +000043 uint8_t status = wait_82802ab(flash);
44 print_status_82802ab(status);
Stefan Tauner4404f732013-09-12 08:28:56 +000045
Stefan Taunerbeaffd82013-09-12 08:29:06 +000046 return status == 0x80;
47}
48
49/* Some ST M50* chips do support erasing of sectors. This function will derive the erase function to use from
50 * the length of the of the block. For calls that apparently do not address a sector (but a block) we just call
51 * the block erase function instead. FIXME: This duplicates the behavior of the remaining erasers for blocks and
52 * might be fixed when flashrom supports multiple functions per eraser or erasers that do erase parts of the
53 * chip only. */
54int erase_sector_stm50(struct flashctx *flash, unsigned int addr, unsigned int len)
55{
56 if (len == 4096)
57 return stm50_erase_sector(flash, addr);
58 else
59 return erase_block_82802ab(flash, addr, len);
Stefan Tauner4404f732013-09-12 08:28:56 +000060}