stm50.c 2.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061
  1. /*
  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. * All ST M50 chips are locked on startup. Most of them have a uniform 64 kB block layout, but some have
  24. * a non-uniform block/sector segmentation which has to be handled with more care. Some of the non-uniform
  25. * chips support erasing of the 4 kB sectors with another command.
  26. */
  27. #include "flash.h"
  28. #include "chipdrivers.h"
  29. static int stm50_erase_sector(struct flashctx *flash, unsigned int addr)
  30. {
  31. chipaddr bios = flash->virtual_memory + addr;
  32. // clear status register
  33. chip_writeb(flash, 0x50, bios);
  34. // now start it
  35. chip_writeb(flash, 0x32, bios);
  36. chip_writeb(flash, 0xd0, bios);
  37. programmer_delay(10);
  38. uint8_t status = wait_82802ab(flash);
  39. print_status_82802ab(status);
  40. return status == 0x80;
  41. }
  42. /* Some ST M50* chips do support erasing of sectors. This function will derive the erase function to use from
  43. * the length of the of the block. For calls that apparently do not address a sector (but a block) we just call
  44. * the block erase function instead. FIXME: This duplicates the behavior of the remaining erasers for blocks and
  45. * might be fixed when flashrom supports multiple functions per eraser or erasers that do erase parts of the
  46. * chip only. */
  47. int erase_sector_stm50(struct flashctx *flash, unsigned int addr, unsigned int len)
  48. {
  49. if (len == 4096)
  50. return stm50_erase_sector(flash, addr);
  51. else
  52. return erase_block_82802ab(flash, addr, len);
  53. }