elm.h 1.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
  1. /*
  2. * BCH Error Location Module
  3. *
  4. * Copyright (C) 2012 Texas Instruments Incorporated - http://www.ti.com/
  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. */
  17. #ifndef __ELM_H
  18. #define __ELM_H
  19. enum bch_ecc {
  20. BCH4_ECC = 0,
  21. BCH8_ECC,
  22. };
  23. /* ELM support 8 error syndrome process */
  24. #define ERROR_VECTOR_MAX 8
  25. #define BCH8_ECC_OOB_BYTES 13
  26. #define BCH4_ECC_OOB_BYTES 7
  27. /* RBL requires 14 byte even though BCH8 uses only 13 byte */
  28. #define BCH8_SIZE (BCH8_ECC_OOB_BYTES + 1)
  29. /* Uses 1 extra byte to handle erased pages */
  30. #define BCH4_SIZE (BCH4_ECC_OOB_BYTES + 1)
  31. /**
  32. * struct elm_errorvec - error vector for elm
  33. * @error_reported: set true for vectors error is reported
  34. * @error_uncorrectable: number of uncorrectable errors
  35. * @error_count: number of correctable errors in the sector
  36. * @error_loc: buffer for error location
  37. *
  38. */
  39. struct elm_errorvec {
  40. bool error_reported;
  41. bool error_uncorrectable;
  42. int error_count;
  43. int error_loc[ERROR_VECTOR_MAX];
  44. };
  45. void elm_decode_bch_error_page(struct device *dev, u8 *ecc_calc,
  46. struct elm_errorvec *err_vec);
  47. int elm_config(struct device *dev, enum bch_ecc bch_type);
  48. #endif /* __ELM_H */