nand_amd.c 1.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  1. /*
  2. * Copyright (C) 2017 Free Electrons
  3. * Copyright (C) 2017 NextThing Co
  4. *
  5. * Author: Boris Brezillon <boris.brezillon@free-electrons.com>
  6. *
  7. * This program is free software; you can redistribute it and/or modify
  8. * it under the terms of the GNU General Public License as published by
  9. * the Free Software Foundation; either version 2 of the License, or
  10. * (at your option) any later version.
  11. *
  12. * This program is distributed in the hope that it will be useful,
  13. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  14. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  15. * GNU General Public License for more details.
  16. */
  17. #include <linux/mtd/rawnand.h>
  18. static void amd_nand_decode_id(struct nand_chip *chip)
  19. {
  20. struct mtd_info *mtd = nand_to_mtd(chip);
  21. nand_decode_ext_id(chip);
  22. /*
  23. * Check for Spansion/AMD ID + repeating 5th, 6th byte since
  24. * some Spansion chips have erasesize that conflicts with size
  25. * listed in nand_ids table.
  26. * Data sheet (5 byte ID): Spansion S30ML-P ORNAND (p.39)
  27. */
  28. if (chip->id.data[4] != 0x00 && chip->id.data[5] == 0x00 &&
  29. chip->id.data[6] == 0x00 && chip->id.data[7] == 0x00 &&
  30. mtd->writesize == 512) {
  31. mtd->erasesize = 128 * 1024;
  32. mtd->erasesize <<= ((chip->id.data[3] & 0x03) << 1);
  33. }
  34. }
  35. static int amd_nand_init(struct nand_chip *chip)
  36. {
  37. if (nand_is_slc(chip))
  38. chip->bbt_options |= NAND_BBT_SCAN2NDPAGE;
  39. return 0;
  40. }
  41. const struct nand_manufacturer_ops amd_nand_manuf_ops = {
  42. .detect = amd_nand_decode_id,
  43. .init = amd_nand_init,
  44. };