bch-regs.h 3.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485
  1. /*
  2. * Freescale GPMI NAND Flash Driver
  3. *
  4. * Copyright 2008-2011 Freescale Semiconductor, Inc.
  5. * Copyright 2008 Embedded Alley Solutions, Inc.
  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. * You should have received a copy of the GNU General Public License along
  18. * with this program; if not, write to the Free Software Foundation, Inc.,
  19. * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
  20. */
  21. #ifndef __GPMI_NAND_BCH_REGS_H
  22. #define __GPMI_NAND_BCH_REGS_H
  23. #define HW_BCH_CTRL 0x00000000
  24. #define HW_BCH_CTRL_SET 0x00000004
  25. #define HW_BCH_CTRL_CLR 0x00000008
  26. #define HW_BCH_CTRL_TOG 0x0000000c
  27. #define BM_BCH_CTRL_COMPLETE_IRQ_EN (1 << 8)
  28. #define BM_BCH_CTRL_COMPLETE_IRQ (1 << 0)
  29. #define HW_BCH_STATUS0 0x00000010
  30. #define HW_BCH_MODE 0x00000020
  31. #define HW_BCH_ENCODEPTR 0x00000030
  32. #define HW_BCH_DATAPTR 0x00000040
  33. #define HW_BCH_METAPTR 0x00000050
  34. #define HW_BCH_LAYOUTSELECT 0x00000070
  35. #define HW_BCH_FLASH0LAYOUT0 0x00000080
  36. #define BP_BCH_FLASH0LAYOUT0_NBLOCKS 24
  37. #define BM_BCH_FLASH0LAYOUT0_NBLOCKS (0xff << BP_BCH_FLASH0LAYOUT0_NBLOCKS)
  38. #define BF_BCH_FLASH0LAYOUT0_NBLOCKS(v) \
  39. (((v) << BP_BCH_FLASH0LAYOUT0_NBLOCKS) & BM_BCH_FLASH0LAYOUT0_NBLOCKS)
  40. #define BP_BCH_FLASH0LAYOUT0_META_SIZE 16
  41. #define BM_BCH_FLASH0LAYOUT0_META_SIZE (0xff << BP_BCH_FLASH0LAYOUT0_META_SIZE)
  42. #define BF_BCH_FLASH0LAYOUT0_META_SIZE(v) \
  43. (((v) << BP_BCH_FLASH0LAYOUT0_META_SIZE)\
  44. & BM_BCH_FLASH0LAYOUT0_META_SIZE)
  45. #define BP_BCH_FLASH0LAYOUT0_ECC0 12
  46. #define BM_BCH_FLASH0LAYOUT0_ECC0 (0xf << BP_BCH_FLASH0LAYOUT0_ECC0)
  47. #define BF_BCH_FLASH0LAYOUT0_ECC0(v) \
  48. (((v) << BP_BCH_FLASH0LAYOUT0_ECC0) & BM_BCH_FLASH0LAYOUT0_ECC0)
  49. #define BP_BCH_FLASH0LAYOUT0_DATA0_SIZE 0
  50. #define BM_BCH_FLASH0LAYOUT0_DATA0_SIZE \
  51. (0xfff << BP_BCH_FLASH0LAYOUT0_DATA0_SIZE)
  52. #define BF_BCH_FLASH0LAYOUT0_DATA0_SIZE(v) \
  53. (((v) << BP_BCH_FLASH0LAYOUT0_DATA0_SIZE)\
  54. & BM_BCH_FLASH0LAYOUT0_DATA0_SIZE)
  55. #define HW_BCH_FLASH0LAYOUT1 0x00000090
  56. #define BP_BCH_FLASH0LAYOUT1_PAGE_SIZE 16
  57. #define BM_BCH_FLASH0LAYOUT1_PAGE_SIZE \
  58. (0xffff << BP_BCH_FLASH0LAYOUT1_PAGE_SIZE)
  59. #define BF_BCH_FLASH0LAYOUT1_PAGE_SIZE(v) \
  60. (((v) << BP_BCH_FLASH0LAYOUT1_PAGE_SIZE) \
  61. & BM_BCH_FLASH0LAYOUT1_PAGE_SIZE)
  62. #define BP_BCH_FLASH0LAYOUT1_ECCN 12
  63. #define BM_BCH_FLASH0LAYOUT1_ECCN (0xf << BP_BCH_FLASH0LAYOUT1_ECCN)
  64. #define BF_BCH_FLASH0LAYOUT1_ECCN(v) \
  65. (((v) << BP_BCH_FLASH0LAYOUT1_ECCN) & BM_BCH_FLASH0LAYOUT1_ECCN)
  66. #define BP_BCH_FLASH0LAYOUT1_DATAN_SIZE 0
  67. #define BM_BCH_FLASH0LAYOUT1_DATAN_SIZE \
  68. (0xfff << BP_BCH_FLASH0LAYOUT1_DATAN_SIZE)
  69. #define BF_BCH_FLASH0LAYOUT1_DATAN_SIZE(v) \
  70. (((v) << BP_BCH_FLASH0LAYOUT1_DATAN_SIZE) \
  71. & BM_BCH_FLASH0LAYOUT1_DATAN_SIZE)
  72. #endif