pb1200.h 4.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141
  1. /*
  2. * AMD Alchemy Pb1200 Referrence Board
  3. * Board Registers defines.
  4. *
  5. * ########################################################################
  6. *
  7. * This program is free software; you can distribute it and/or modify it
  8. * under the terms of the GNU General Public License (Version 2) as
  9. * published by the Free Software Foundation.
  10. *
  11. * This program is distributed in the hope it will be useful, but WITHOUT
  12. * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
  13. * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
  14. * for more details.
  15. *
  16. * You should have received a copy of the GNU General Public License along
  17. * with this program; if not, write to the Free Software Foundation, Inc.,
  18. * 59 Temple Place - Suite 330, Boston MA 02111-1307, USA.
  19. *
  20. * ########################################################################
  21. *
  22. *
  23. */
  24. #ifndef __ASM_PB1200_H
  25. #define __ASM_PB1200_H
  26. #include <linux/types.h>
  27. #include <asm/mach-au1x00/au1000.h>
  28. #include <asm/mach-au1x00/au1xxx_psc.h>
  29. #define DBDMA_AC97_TX_CHAN DSCR_CMD0_PSC1_TX
  30. #define DBDMA_AC97_RX_CHAN DSCR_CMD0_PSC1_RX
  31. #define DBDMA_I2S_TX_CHAN DSCR_CMD0_PSC1_TX
  32. #define DBDMA_I2S_RX_CHAN DSCR_CMD0_PSC1_RX
  33. /*
  34. * SPI and SMB are muxed on the Pb1200 board.
  35. * Refer to board documentation.
  36. */
  37. #define SPI_PSC_BASE PSC0_BASE_ADDR
  38. #define SMBUS_PSC_BASE PSC0_BASE_ADDR
  39. /*
  40. * AC97 and I2S are muxed on the Pb1200 board.
  41. * Refer to board documentation.
  42. */
  43. #define AC97_PSC_BASE PSC1_BASE_ADDR
  44. #define I2S_PSC_BASE PSC1_BASE_ADDR
  45. #define BCSR_SYSTEM_VDDI 0x001F
  46. #define BCSR_SYSTEM_POWEROFF 0x4000
  47. #define BCSR_SYSTEM_RESET 0x8000
  48. /* Bit positions for the different interrupt sources */
  49. #define BCSR_INT_IDE 0x0001
  50. #define BCSR_INT_ETH 0x0002
  51. #define BCSR_INT_PC0 0x0004
  52. #define BCSR_INT_PC0STSCHG 0x0008
  53. #define BCSR_INT_PC1 0x0010
  54. #define BCSR_INT_PC1STSCHG 0x0020
  55. #define BCSR_INT_DC 0x0040
  56. #define BCSR_INT_FLASHBUSY 0x0080
  57. #define BCSR_INT_PC0INSERT 0x0100
  58. #define BCSR_INT_PC0EJECT 0x0200
  59. #define BCSR_INT_PC1INSERT 0x0400
  60. #define BCSR_INT_PC1EJECT 0x0800
  61. #define BCSR_INT_SD0INSERT 0x1000
  62. #define BCSR_INT_SD0EJECT 0x2000
  63. #define BCSR_INT_SD1INSERT 0x4000
  64. #define BCSR_INT_SD1EJECT 0x8000
  65. #define SMC91C111_PHYS_ADDR 0x0D000300
  66. #define SMC91C111_INT PB1200_ETH_INT
  67. #define IDE_PHYS_ADDR 0x0C800000
  68. #define IDE_REG_SHIFT 5
  69. #define IDE_PHYS_LEN (16 << IDE_REG_SHIFT)
  70. #define IDE_INT PB1200_IDE_INT
  71. #define IDE_DDMA_REQ DSCR_CMD0_DMA_REQ1
  72. #define IDE_RQSIZE 128
  73. #define NAND_PHYS_ADDR 0x1C000000
  74. /*
  75. * Timing values as described in databook, * ns value stripped of
  76. * lower 2 bits.
  77. * These defines are here rather than an Au1200 generic file because
  78. * the parts chosen on another board may be different and may require
  79. * different timings.
  80. */
  81. #define NAND_T_H (18 >> 2)
  82. #define NAND_T_PUL (30 >> 2)
  83. #define NAND_T_SU (30 >> 2)
  84. #define NAND_T_WH (30 >> 2)
  85. /* Bitfield shift amounts */
  86. #define NAND_T_H_SHIFT 0
  87. #define NAND_T_PUL_SHIFT 4
  88. #define NAND_T_SU_SHIFT 8
  89. #define NAND_T_WH_SHIFT 12
  90. #define NAND_TIMING (((NAND_T_H & 0xF) << NAND_T_H_SHIFT) | \
  91. ((NAND_T_PUL & 0xF) << NAND_T_PUL_SHIFT) | \
  92. ((NAND_T_SU & 0xF) << NAND_T_SU_SHIFT) | \
  93. ((NAND_T_WH & 0xF) << NAND_T_WH_SHIFT))
  94. /*
  95. * External Interrupts for Pb1200 as of 8/6/2004.
  96. * Bit positions in the CPLD registers can be calculated by taking
  97. * the interrupt define and subtracting the PB1200_INT_BEGIN value.
  98. *
  99. * Example: IDE bis pos is = 64 - 64
  100. * ETH bit pos is = 65 - 64
  101. */
  102. enum external_pb1200_ints {
  103. PB1200_INT_BEGIN = AU1000_MAX_INTR + 1,
  104. PB1200_IDE_INT = PB1200_INT_BEGIN,
  105. PB1200_ETH_INT,
  106. PB1200_PC0_INT,
  107. PB1200_PC0_STSCHG_INT,
  108. PB1200_PC1_INT,
  109. PB1200_PC1_STSCHG_INT,
  110. PB1200_DC_INT,
  111. PB1200_FLASHBUSY_INT,
  112. PB1200_PC0_INSERT_INT,
  113. PB1200_PC0_EJECT_INT,
  114. PB1200_PC1_INSERT_INT,
  115. PB1200_PC1_EJECT_INT,
  116. PB1200_SD0_INSERT_INT,
  117. PB1200_SD0_EJECT_INT,
  118. PB1200_SD1_INSERT_INT,
  119. PB1200_SD1_EJECT_INT,
  120. PB1200_INT_END = PB1200_INT_BEGIN + 15
  121. };
  122. /* NAND chip select */
  123. #define NAND_CS 1
  124. #endif /* __ASM_PB1200_H */