mtk_ecc.h 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. /*
  2. * MTK SDG1 ECC controller
  3. *
  4. * Copyright (c) 2016 Mediatek
  5. * Authors: Xiaolei Li <xiaolei.li@mediatek.com>
  6. * Jorge Ramirez-Ortiz <jorge.ramirez-ortiz@linaro.org>
  7. * This program is free software; you can redistribute it and/or modify it
  8. * under the terms of the GNU General Public License version 2 as published
  9. * by the Free Software Foundation.
  10. */
  11. #ifndef __DRIVERS_MTD_NAND_MTK_ECC_H__
  12. #define __DRIVERS_MTD_NAND_MTK_ECC_H__
  13. #include <linux/types.h>
  14. enum mtk_ecc_mode {ECC_DMA_MODE = 0, ECC_NFI_MODE = 1};
  15. enum mtk_ecc_operation {ECC_ENCODE, ECC_DECODE};
  16. struct device_node;
  17. struct mtk_ecc;
  18. struct mtk_ecc_stats {
  19. u32 corrected;
  20. u32 bitflips;
  21. u32 failed;
  22. };
  23. struct mtk_ecc_config {
  24. enum mtk_ecc_operation op;
  25. enum mtk_ecc_mode mode;
  26. dma_addr_t addr;
  27. u32 strength;
  28. u32 sectors;
  29. u32 len;
  30. };
  31. int mtk_ecc_encode(struct mtk_ecc *, struct mtk_ecc_config *, u8 *, u32);
  32. void mtk_ecc_get_stats(struct mtk_ecc *, struct mtk_ecc_stats *, int);
  33. int mtk_ecc_wait_done(struct mtk_ecc *, enum mtk_ecc_operation);
  34. int mtk_ecc_enable(struct mtk_ecc *, struct mtk_ecc_config *);
  35. void mtk_ecc_disable(struct mtk_ecc *);
  36. void mtk_ecc_adjust_strength(struct mtk_ecc *ecc, u32 *p);
  37. unsigned int mtk_ecc_get_parity_bits(struct mtk_ecc *ecc);
  38. struct mtk_ecc *of_mtk_ecc_get(struct device_node *);
  39. void mtk_ecc_release(struct mtk_ecc *);
  40. #endif