ppc405ez.h 3.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102
  1. /*
  2. * (C) Copyright 2010
  3. * Stefan Roese, DENX Software Engineering, sr@denx.de.
  4. *
  5. * This program is free software; you can redistribute it and/or
  6. * modify it under the terms of the GNU General Public License as
  7. * published by the Free Software Foundation; either version 2 of
  8. * the License, or (at your option) any later version.
  9. *
  10. * This program is distributed in the hope that it will be useful,
  11. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  12. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  13. * GNU General Public License for more details.
  14. *
  15. * You should have received a copy of the GNU General Public License
  16. * along with this program; if not, write to the Free Software
  17. * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
  18. * MA 02111-1307 USA
  19. */
  20. #ifndef _PPC405EZ_H_
  21. #define _PPC405EZ_H_
  22. #define CONFIG_NAND_NDFC
  23. /* Memory mapped register */
  24. #define CONFIG_SYS_PERIPHERAL_BASE 0xef600000 /* Internal Peripherals */
  25. #define CONFIG_SYS_NS16550_COM1 (CONFIG_SYS_PERIPHERAL_BASE + 0x0300)
  26. #define CONFIG_SYS_NS16550_COM2 (CONFIG_SYS_PERIPHERAL_BASE + 0x0400)
  27. #define GPIO0_BASE (CONFIG_SYS_PERIPHERAL_BASE + 0x0700)
  28. #define GPIO1_BASE (CONFIG_SYS_PERIPHERAL_BASE + 0x0800)
  29. /* DCR register */
  30. #define OCM0_PLBCR1 0x0020 /* OCM PLB3 Bank 1 Config */
  31. #define OCM0_PLBCR2 0x0021 /* OCM PLB3 Bank 2 Config */
  32. #define OCM0_PLBBEAR 0x0022 /* OCM PLB3 Bus Error Add */
  33. #define OCM0_DSRC1 0x0028 /* OCM D-side Bank 1 Config */
  34. #define OCM0_DSRC2 0x0029 /* OCM D-side Bank 2 Config */
  35. #define OCM0_ISRC1 0x002A /* OCM I-side Bank 1Config */
  36. #define OCM0_ISRC2 0x002B /* OCM I-side Bank 2 Config */
  37. #define OCM0_DISDPC 0x002C /* OCM D-/I-side Data Par Chk */
  38. /* SDR register */
  39. #define SDR0_NAND0 0x4000
  40. #define SDR0_ULTRA0 0x4040
  41. #define SDR0_ULTRA1 0x4050
  42. #define SDR0_ICINTSTAT 0x4510
  43. /* CPR register */
  44. #define CPR0_PRIMAD 0x0080
  45. #define CPR0_PERD0 0x00e0
  46. #define CPR0_PERD1 0x00e1
  47. #define CPR0_PERC0 0x0180
  48. #define MAL_DCR_BASE 0x380
  49. #define SDR_NAND0_NDEN 0x80000000
  50. #define SDR_NAND0_NDBTEN 0x40000000
  51. #define SDR_NAND0_NDBADR_MASK 0x30000000
  52. #define SDR_NAND0_NDBPG_MASK 0x0f000000
  53. #define SDR_NAND0_NDAREN 0x00800000
  54. #define SDR_NAND0_NDRBEN 0x00400000
  55. #define SDR_ULTRA0_NDGPIOBP 0x80000000
  56. #define SDR_ULTRA0_CSN_MASK 0x78000000
  57. #define SDR_ULTRA0_CSNSEL0 0x40000000
  58. #define SDR_ULTRA0_CSNSEL1 0x20000000
  59. #define SDR_ULTRA0_CSNSEL2 0x10000000
  60. #define SDR_ULTRA0_CSNSEL3 0x08000000
  61. #define SDR_ULTRA0_EBCRDYEN 0x04000000
  62. #define SDR_ULTRA0_SPISSINEN 0x02000000
  63. #define SDR_ULTRA0_NFSRSTEN 0x01000000
  64. #define SDR_ULTRA1_LEDNENABLE 0x40000000
  65. #define SDR_ICRX_STAT 0x80000000
  66. #define SDR_ICTX0_STAT 0x40000000
  67. #define SDR_ICTX1_STAT 0x20000000
  68. #define CPR_CLKUPD_ENPLLCH_EN 0x40000000 /* Enable CPR PLL Changes */
  69. #define CPR_CLKUPD_ENDVCH_EN 0x20000000 /* Enable CPR Sys. Div. Changes */
  70. #define CPR_PERD0_SPIDV_MASK 0x000F0000 /* SPI Clock Divider */
  71. #define PLLC_SRC_MASK 0x20000000 /* PLL feedback source */
  72. #define PLLD_FBDV_MASK 0x1F000000 /* PLL feedback divider value */
  73. #define PLLD_FWDVA_MASK 0x000F0000 /* PLL forward divider A value */
  74. #define PLLD_FWDVB_MASK 0x00000700 /* PLL forward divider B value */
  75. #define PRIMAD_CPUDV_MASK 0x0F000000 /* CPU Clock Divisor Mask */
  76. #define PRIMAD_PLBDV_MASK 0x000F0000 /* PLB Clock Divisor Mask */
  77. #define PRIMAD_OPBDV_MASK 0x00000F00 /* OPB Clock Divisor Mask */
  78. #define PRIMAD_EBCDV_MASK 0x0000000F /* EBC Clock Divisor Mask */
  79. #define PERD0_PWMDV_MASK 0xFF000000 /* PWM Divider Mask */
  80. #define PERD0_SPIDV_MASK 0x000F0000 /* SPI Divider Mask */
  81. #define PERD0_U0DV_MASK 0x0000FF00 /* UART 0 Divider Mask */
  82. #define PERD0_U1DV_MASK 0x000000FF /* UART 1 Divider Mask */
  83. #endif /* _PPC405EZ_H_ */