w29ee011.c 2.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273
  1. /*
  2. * This file is part of the flashrom project.
  3. *
  4. * Copyright (C) 2007 Markus Boas <ryven@ryven.de>
  5. *
  6. * This program is free software; you can redistribute it and/or modify
  7. * it under the terms of the GNU General Public License as published by
  8. * the Free Software Foundation; either version 2 of the License, or
  9. * (at your option) any later version.
  10. *
  11. * This program is distributed in the hope that it will be useful,
  12. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  13. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  14. * GNU General Public License for more details.
  15. *
  16. * You should have received a copy of the GNU General Public License
  17. * along with this program; if not, write to the Free Software
  18. * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
  19. */
  20. #include <string.h>
  21. #include "flash.h"
  22. /* According to the Winbond W29EE011, W29EE012, W29C010M, W29C011A
  23. * datasheets this is the only valid probe function for those chips.
  24. */
  25. int probe_w29ee011(struct flashctx *flash)
  26. {
  27. chipaddr bios = flash->virtual_memory;
  28. uint8_t id1, id2;
  29. if (!chip_to_probe || strcmp(chip_to_probe, flash->name)) {
  30. msg_cdbg("Old Winbond W29* probe method disabled because "
  31. "the probing sequence puts the AMIC A49LF040A in "
  32. "a funky state. Use 'flashrom -c %s' if you "
  33. "have a board with such a chip.\n", flash->name);
  34. return 0;
  35. }
  36. /* Issue JEDEC Product ID Entry command */
  37. chip_writeb(flash, 0xAA, bios + 0x5555);
  38. programmer_delay(10);
  39. chip_writeb(flash, 0x55, bios + 0x2AAA);
  40. programmer_delay(10);
  41. chip_writeb(flash, 0x80, bios + 0x5555);
  42. programmer_delay(10);
  43. chip_writeb(flash, 0xAA, bios + 0x5555);
  44. programmer_delay(10);
  45. chip_writeb(flash, 0x55, bios + 0x2AAA);
  46. programmer_delay(10);
  47. chip_writeb(flash, 0x60, bios + 0x5555);
  48. programmer_delay(10);
  49. /* Read product ID */
  50. id1 = chip_readb(flash, bios);
  51. id2 = chip_readb(flash, bios + 0x01);
  52. /* Issue JEDEC Product ID Exit command */
  53. chip_writeb(flash, 0xAA, bios + 0x5555);
  54. programmer_delay(10);
  55. chip_writeb(flash, 0x55, bios + 0x2AAA);
  56. programmer_delay(10);
  57. chip_writeb(flash, 0xF0, bios + 0x5555);
  58. programmer_delay(10);
  59. msg_cdbg("%s: id1 0x%02x, id2 0x%02x\n", __func__, id1, id2);
  60. if (id1 == flash->manufacture_id && id2 == flash->model_id)
  61. return 1;
  62. return 0;
  63. }