mecp5123.c 5.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223
  1. /*
  2. * (C) Copyright 2009 Wolfgang Denk <wd@denx.de>
  3. * (C) Copyright 2009 Dave Srl www.dave.eu
  4. * (C) Copyright 2009 Stefan Roese <sr@denx.de>
  5. *
  6. * See file CREDITS for list of people who contributed to this
  7. * project.
  8. *
  9. * This program is free software; you can redistribute it and/or
  10. * modify it under the terms of the GNU General Public License as
  11. * published by the Free Software Foundation; either version 2 of
  12. * the License, or (at your option) any later version.
  13. *
  14. * This program is distributed in the hope that it will be useful,
  15. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  16. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  17. * GNU General Public License for more details.
  18. *
  19. * You should have received a copy of the GNU General Public License
  20. * along with this program; if not, write to the Free Software
  21. * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
  22. * MA 02111-1307 USA
  23. *
  24. */
  25. #include <common.h>
  26. #include <asm/bitops.h>
  27. #include <command.h>
  28. #include <asm/io.h>
  29. #include <asm/processor.h>
  30. #include <asm/mpc512x.h>
  31. #include <fdt_support.h>
  32. DECLARE_GLOBAL_DATA_PTR;
  33. int eeprom_write_enable(unsigned dev_addr, int state)
  34. {
  35. volatile immap_t *im = (immap_t *)CONFIG_SYS_IMMR;
  36. if (dev_addr != CONFIG_SYS_I2C_EEPROM_ADDR)
  37. return -1;
  38. if (state == 0)
  39. setbits_be32(&im->gpio.gpdat, 0x00100000);
  40. else
  41. clrbits_be32(&im->gpio.gpdat, 0x00100000);
  42. return 0;
  43. }
  44. int board_early_init_f(void)
  45. {
  46. volatile immap_t *im = (immap_t *)CONFIG_SYS_IMMR;
  47. int i;
  48. /*
  49. * Initialize Local Window for boot access
  50. */
  51. out_be32(&im->sysconf.lpbaw,
  52. CSAW_START(0xffb00000) | CSAW_STOP(0xffb00000, 0x00010000));
  53. sync_law(&im->sysconf.lpbaw);
  54. /*
  55. * Configure MSCAN clocks
  56. */
  57. for (i=0; i<4; ++i) {
  58. out_be32(&im->clk.msccr[i], 0x00300000);
  59. out_be32(&im->clk.msccr[i], 0x00310000);
  60. }
  61. /*
  62. * Configure GPIO's
  63. */
  64. clrbits_be32(&im->gpio.gpodr, 0x000000e0);
  65. clrbits_be32(&im->gpio.gpdir, 0x00ef0000);
  66. setbits_be32(&im->gpio.gpdir, 0x001000e0);
  67. setbits_be32(&im->gpio.gpdat, 0x00100000);
  68. return 0;
  69. }
  70. phys_size_t initdram(int board_type)
  71. {
  72. return get_ram_size(0, fixed_sdram(NULL, NULL, 0));
  73. }
  74. int misc_init_r(void)
  75. {
  76. volatile immap_t *im = (immap_t *) CONFIG_SYS_IMMR;
  77. u32 val;
  78. /*
  79. * Optimize access to profibus chip (VPC3) on the local bus
  80. */
  81. /*
  82. * Select 1:1 for LPC_DIV
  83. */
  84. val = in_be32(&im->clk.scfr[0]) & ~SCFR1_LPC_DIV_MASK;
  85. out_be32(&im->clk.scfr[0], val | (0x1 << SCFR1_LPC_DIV_SHIFT));
  86. /*
  87. * Configure LPC Chips Select Deadcycle Control Register
  88. * CS0 - device can drive data 2 clock cycle(s) after CS deassertion
  89. * CS1 - device can drive data 1 clock cycle(s) after CS deassertion
  90. */
  91. clrbits_be32(&im->lpc.cs_dccr, 0x000000ff);
  92. setbits_be32(&im->lpc.cs_dccr, (0x00 << 4) | (0x01 << 0));
  93. /*
  94. * Configure LPC Chips Select Holdcycle Control Register
  95. * CS0 - data is valid 2 clock cycle(s) after CS deassertion
  96. * CS1 - data is valid 1 clock cycle(s) after CS deassertion
  97. */
  98. clrbits_be32(&im->lpc.cs_hccr, 0x000000ff);
  99. setbits_be32(&im->lpc.cs_hccr, (0x00 << 4) | (0x01 << 0));
  100. return 0;
  101. }
  102. static iopin_t ioregs_init[] = {
  103. /* FUNC1=FEC_RX_DV Sets Next 3 to FEC pads */
  104. {
  105. offsetof(struct ioctrl512x, io_control_spdif_txclk), 3, 0,
  106. IO_PIN_FMUX(1) | IO_PIN_HOLD(0) | IO_PIN_PUD(0) |
  107. IO_PIN_PUE(0) | IO_PIN_ST(0) | IO_PIN_DS(3)
  108. },
  109. /* FUNC1=FEC_COL Sets Next 15 to FEC pads */
  110. {
  111. offsetof(struct ioctrl512x, io_control_psc0_0), 15, 0,
  112. IO_PIN_FMUX(1) | IO_PIN_HOLD(0) | IO_PIN_PUD(0) |
  113. IO_PIN_PUE(0) | IO_PIN_ST(0) | IO_PIN_DS(3)
  114. },
  115. /* FUNC1=SELECT LPC_CS1 */
  116. {
  117. offsetof(struct ioctrl512x, io_control_lpc_cs1), 1, 0,
  118. IO_PIN_FMUX(0) | IO_PIN_HOLD(0) | IO_PIN_PUD(0) |
  119. IO_PIN_PUE(0) | IO_PIN_ST(0) | IO_PIN_DS(3)
  120. },
  121. /* FUNC3=SELECT PSC5_2 */
  122. {
  123. offsetof(struct ioctrl512x, io_control_psc5_2), 1, 0,
  124. IO_PIN_FMUX(2) | IO_PIN_HOLD(0) | IO_PIN_PUD(0) |
  125. IO_PIN_PUE(0) | IO_PIN_ST(0) | IO_PIN_DS(3)
  126. },
  127. /* FUNC3=SELECT PSC5_3 */
  128. {
  129. offsetof(struct ioctrl512x, io_control_psc5_3), 1, 0,
  130. IO_PIN_FMUX(3) | IO_PIN_HOLD(0) | IO_PIN_PUD(0) |
  131. IO_PIN_PUE(0) | IO_PIN_ST(0) | IO_PIN_DS(3)
  132. },
  133. /* FUNC3=SELECT PSC7_3 */
  134. {
  135. offsetof(struct ioctrl512x, io_control_psc7_3), 1, 0,
  136. IO_PIN_FMUX(3) | IO_PIN_HOLD(0) | IO_PIN_PUD(0) |
  137. IO_PIN_PUE(0) | IO_PIN_ST(0) | IO_PIN_DS(3)
  138. },
  139. /* FUNC3=SELECT PSC9_0 */
  140. {
  141. offsetof(struct ioctrl512x, io_control_psc9_0), 3, 0,
  142. IO_PIN_FMUX(3) | IO_PIN_HOLD(0) | IO_PIN_PUD(0) |
  143. IO_PIN_PUE(0) | IO_PIN_ST(0) | IO_PIN_DS(3)
  144. },
  145. /* FUNC3=SELECT PSC10_0 */
  146. {
  147. offsetof(struct ioctrl512x, io_control_psc10_0), 3, 0,
  148. IO_PIN_FMUX(3) | IO_PIN_HOLD(0) | IO_PIN_PUD(0) |
  149. IO_PIN_PUE(0) | IO_PIN_ST(0) | IO_PIN_DS(3)
  150. },
  151. /* FUNC3=SELECT PSC10_3 */
  152. {
  153. offsetof(struct ioctrl512x, io_control_psc10_3), 1, 0,
  154. IO_PIN_FMUX(0) | IO_PIN_HOLD(0) | IO_PIN_PUD(0) |
  155. IO_PIN_PUE(0) | IO_PIN_ST(0) | IO_PIN_DS(3)
  156. },
  157. /* FUNC3=SELECT PSC11_0 */
  158. {
  159. offsetof(struct ioctrl512x, io_control_psc11_0), 4, 0,
  160. IO_PIN_FMUX(3) | IO_PIN_HOLD(0) | IO_PIN_PUD(0) |
  161. IO_PIN_PUE(0) | IO_PIN_ST(0) | IO_PIN_DS(3)
  162. },
  163. /* FUNC0=SELECT IRQ0 */
  164. {
  165. offsetof(struct ioctrl512x, io_control_irq0), 4, 0,
  166. IO_PIN_FMUX(0) | IO_PIN_HOLD(0) | IO_PIN_PUD(0) |
  167. IO_PIN_PUE(0) | IO_PIN_ST(0) | IO_PIN_DS(3)
  168. }
  169. };
  170. static iopin_t rev2_silicon_pci_ioregs_init[] = {
  171. /* FUNC0=PCI Sets next 54 to PCI pads */
  172. {
  173. offsetof(struct ioctrl512x, io_control_pci_ad31), 54, 0,
  174. IO_PIN_FMUX(0) | IO_PIN_HOLD(0) | IO_PIN_DS(0)
  175. }
  176. };
  177. int checkboard(void)
  178. {
  179. volatile immap_t *im = (immap_t *)CONFIG_SYS_IMMR;
  180. u32 spridr;
  181. puts("Board: MECP_5123\n");
  182. /*
  183. * Initialize function mux & slew rate IO inter alia on IO
  184. * Pins
  185. */
  186. iopin_initialize(ioregs_init, ARRAY_SIZE(ioregs_init));
  187. spridr = in_be32(&im->sysconf.spridr);
  188. if (SVR_MJREV(spridr) >= 2)
  189. iopin_initialize(rev2_silicon_pci_ioregs_init, 1);
  190. return 0;
  191. }
  192. #if defined(CONFIG_OF_LIBFDT) && defined(CONFIG_OF_BOARD_SETUP)
  193. void ft_board_setup(void *blob, bd_t *bd)
  194. {
  195. ft_cpu_setup(blob, bd);
  196. }
  197. #endif /* defined(CONFIG_OF_LIBFDT) && defined(CONFIG_OF_BOARD_SETUP) */