ppc405gp.h 4.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108
  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 _PPC405GP_H_
  21. #define _PPC405GP_H_
  22. #define CONFIG_SDRAM_PPC4xx_IBM_SDRAM /* IBM SDRAM controller */
  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. /* DCR's */
  29. #define DCP0_CFGADDR 0x0014 /* Decompression controller addr reg */
  30. #define DCP0_CFGDATA 0x0015 /* Decompression controller data reg */
  31. #define OCM0_ISCNTL 0x0019 /* OCM I-side control reg */
  32. #define OCM0_DSARC 0x001a /* OCM D-side address compare */
  33. #define OCM0_DSCNTL 0x001b /* OCM D-side control */
  34. #define CPC0_PLLMR 0x00b0 /* PLL mode register */
  35. #define CPC0_CR0 0x00b1 /* chip control register 0 */
  36. #define CPC0_CR1 0x00b2 /* chip control register 1 */
  37. #define CPC0_PSR 0x00b4 /* chip pin strapping reg */
  38. #define CPC0_EIRR 0x00b6 /* ext interrupt routing reg */
  39. #define CPC0_SR 0x00b8 /* Power management status */
  40. #define CPC0_ER 0x00b9 /* Power management enable */
  41. #define CPC0_FR 0x00ba /* Power management force */
  42. #define CPC0_ECR 0x00aa /* edge conditioner register */
  43. /* values for kiar register - indirect addressing of these regs */
  44. #define KCONF 0x40 /* decompression core config register */
  45. #define PLLMR_FWD_DIV_MASK 0xE0000000 /* Forward Divisor */
  46. #define PLLMR_FWD_DIV_BYPASS 0xE0000000
  47. #define PLLMR_FWD_DIV_3 0xA0000000
  48. #define PLLMR_FWD_DIV_4 0x80000000
  49. #define PLLMR_FWD_DIV_6 0x40000000
  50. #define PLLMR_FB_DIV_MASK 0x1E000000 /* Feedback Divisor */
  51. #define PLLMR_FB_DIV_1 0x02000000
  52. #define PLLMR_FB_DIV_2 0x04000000
  53. #define PLLMR_FB_DIV_3 0x06000000
  54. #define PLLMR_FB_DIV_4 0x08000000
  55. #define PLLMR_TUNING_MASK 0x01F80000
  56. #define PLLMR_CPU_TO_PLB_MASK 0x00060000 /* CPU:PLB Frequency Divisor */
  57. #define PLLMR_CPU_PLB_DIV_1 0x00000000
  58. #define PLLMR_CPU_PLB_DIV_2 0x00020000
  59. #define PLLMR_CPU_PLB_DIV_3 0x00040000
  60. #define PLLMR_CPU_PLB_DIV_4 0x00060000
  61. #define PLLMR_OPB_TO_PLB_MASK 0x00018000 /* OPB:PLB Frequency Divisor */
  62. #define PLLMR_OPB_PLB_DIV_1 0x00000000
  63. #define PLLMR_OPB_PLB_DIV_2 0x00008000
  64. #define PLLMR_OPB_PLB_DIV_3 0x00010000
  65. #define PLLMR_OPB_PLB_DIV_4 0x00018000
  66. #define PLLMR_PCI_TO_PLB_MASK 0x00006000 /* PCI:PLB Frequency Divisor */
  67. #define PLLMR_PCI_PLB_DIV_1 0x00000000
  68. #define PLLMR_PCI_PLB_DIV_2 0x00002000
  69. #define PLLMR_PCI_PLB_DIV_3 0x00004000
  70. #define PLLMR_PCI_PLB_DIV_4 0x00006000
  71. #define PLLMR_EXB_TO_PLB_MASK 0x00001800 /* External Bus:PLB Divisor */
  72. #define PLLMR_EXB_PLB_DIV_2 0x00000000
  73. #define PLLMR_EXB_PLB_DIV_3 0x00000800
  74. #define PLLMR_EXB_PLB_DIV_4 0x00001000
  75. #define PLLMR_EXB_PLB_DIV_5 0x00001800
  76. /* definitions for PPC405GPr (new mode strapping) */
  77. #define PLLMR_FWDB_DIV_MASK 0x00000007 /* Forward Divisor B */
  78. #define PSR_PLL_FWD_MASK 0xC0000000
  79. #define PSR_PLL_FDBACK_MASK 0x30000000
  80. #define PSR_PLL_TUNING_MASK 0x0E000000
  81. #define PSR_PLB_CPU_MASK 0x01800000
  82. #define PSR_OPB_PLB_MASK 0x00600000
  83. #define PSR_PCI_PLB_MASK 0x00180000
  84. #define PSR_EB_PLB_MASK 0x00060000
  85. #define PSR_ROM_WIDTH_MASK 0x00018000
  86. #define PSR_ROM_LOC 0x00004000
  87. #define PSR_PCI_ASYNC_EN 0x00001000
  88. #define PSR_PERCLK_SYNC_MODE_EN 0x00000800 /* PPC405GPr only */
  89. #define PSR_PCI_ARBIT_EN 0x00000400
  90. #define PSR_NEW_MODE_EN 0x00000020 /* PPC405GPr only */
  91. #endif /* _PPC405GP_H_ */