kmeter1.c 3.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153
  1. /*
  2. * Copyright (C) 2006 Freescale Semiconductor, Inc.
  3. * Dave Liu <daveliu@freescale.com>
  4. *
  5. * Copyright (C) 2007 Logic Product Development, Inc.
  6. * Peter Barada <peterb@logicpd.com>
  7. *
  8. * Copyright (C) 2007 MontaVista Software, Inc.
  9. * Anton Vorontsov <avorontsov@ru.mvista.com>
  10. *
  11. * (C) Copyright 2008
  12. * Heiko Schocher, DENX Software Engineering, hs@denx.de.
  13. *
  14. * This program is free software; you can redistribute it and/or
  15. * modify it under the terms of the GNU General Public License as
  16. * published by the Free Software Foundation; either version 2 of
  17. * the License, or (at your option) any later version.
  18. */
  19. #include <common.h>
  20. #include <ioports.h>
  21. #include <mpc83xx.h>
  22. #include <i2c.h>
  23. #include <miiphy.h>
  24. #include <asm/io.h>
  25. #include <asm/mmu.h>
  26. #include <pci.h>
  27. #include <libfdt.h>
  28. const qe_iop_conf_t qe_iop_conf_tab[] = {
  29. /* port pin dir open_drain assign */
  30. /* MDIO */
  31. {0, 1, 3, 0, 2}, /* MDIO */
  32. {0, 2, 1, 0, 1}, /* MDC */
  33. /* UCC4 - UEC */
  34. {1, 14, 1, 0, 1}, /* TxD0 */
  35. {1, 15, 1, 0, 1}, /* TxD1 */
  36. {1, 20, 2, 0, 1}, /* RxD0 */
  37. {1, 21, 2, 0, 1}, /* RxD1 */
  38. {1, 18, 1, 0, 1}, /* TX_EN */
  39. {1, 26, 2, 0, 1}, /* RX_DV */
  40. {1, 27, 2, 0, 1}, /* RX_ER */
  41. {1, 24, 2, 0, 1}, /* COL */
  42. {1, 25, 2, 0, 1}, /* CRS */
  43. {2, 15, 2, 0, 1}, /* TX_CLK - CLK16 */
  44. {2, 16, 2, 0, 1}, /* RX_CLK - CLK17 */
  45. /* DUART - UART2 */
  46. {5, 0, 1, 0, 2}, /* UART2_SOUT */
  47. {5, 2, 1, 0, 1}, /* UART2_RTS */
  48. {5, 3, 2, 0, 2}, /* UART2_SIN */
  49. {5, 1, 2, 0, 3}, /* UART2_CTS */
  50. /* END of table */
  51. {0, 0, 0, 0, QE_IOP_TAB_END},
  52. };
  53. int board_early_init_r (void)
  54. {
  55. void *reg = (void *)(CONFIG_SYS_IMMR + 0x14a8);
  56. u32 val;
  57. /*
  58. * Because of errata in the UCCs, we have to write to the reserved
  59. * registers to slow the clocks down.
  60. */
  61. val = in_be32 (reg);
  62. /* UCC1 */
  63. val |= 0x00003000;
  64. /* UCC2 */
  65. val |= 0x0c000000;
  66. out_be32 (reg, val);
  67. /* enable the PHY on the PIGGY */
  68. setbits (8, (void *)(CONFIG_SYS_PIGGY_BASE + 0x10003), 0x01);
  69. return 0;
  70. }
  71. int fixed_sdram(void)
  72. {
  73. volatile immap_t *im = (immap_t *)CONFIG_SYS_IMMR;
  74. u32 msize = 0;
  75. u32 ddr_size;
  76. u32 ddr_size_log2;
  77. msize = CONFIG_SYS_DDR_SIZE;
  78. for (ddr_size = msize << 20, ddr_size_log2 = 0;
  79. (ddr_size > 1); ddr_size = ddr_size >> 1, ddr_size_log2++) {
  80. if (ddr_size & 1)
  81. return -1;
  82. }
  83. im->sysconf.ddrlaw[0].ar =
  84. LAWAR_EN | ((ddr_size_log2 - 1) & LAWAR_SIZE);
  85. im->ddr.csbnds[0].csbnds = CONFIG_SYS_DDR_CS0_BNDS;
  86. im->ddr.cs_config[0] = CONFIG_SYS_DDR_CS0_CONFIG;
  87. im->ddr.timing_cfg_0 = CONFIG_SYS_DDR_TIMING_0;
  88. im->ddr.timing_cfg_1 = CONFIG_SYS_DDR_TIMING_1;
  89. im->ddr.timing_cfg_2 = CONFIG_SYS_DDR_TIMING_2;
  90. im->ddr.timing_cfg_3 = CONFIG_SYS_DDR_TIMING_3;
  91. im->ddr.sdram_cfg = CONFIG_SYS_DDR_SDRAM_CFG;
  92. im->ddr.sdram_cfg2 = CONFIG_SYS_DDR_SDRAM_CFG2;
  93. im->ddr.sdram_mode = CONFIG_SYS_DDR_MODE;
  94. im->ddr.sdram_mode2 = CONFIG_SYS_DDR_MODE2;
  95. im->ddr.sdram_interval = CONFIG_SYS_DDR_INTERVAL;
  96. im->ddr.sdram_clk_cntl = CONFIG_SYS_DDR_CLK_CNTL;
  97. udelay (200);
  98. im->ddr.sdram_cfg |= SDRAM_CFG_MEM_EN;
  99. return msize;
  100. }
  101. phys_size_t initdram (int board_type)
  102. {
  103. #if defined(CONFIG_DDR_ECC) && !defined(CONFIG_ECC_INIT_VIA_DDRC)
  104. extern void ddr_enable_ecc (unsigned int dram_size);
  105. #endif
  106. volatile immap_t *im = (immap_t *)CONFIG_SYS_IMMR;
  107. u32 msize = 0;
  108. if ((im->sysconf.immrbar & IMMRBAR_BASE_ADDR) != (u32)im)
  109. return -1;
  110. /* DDR SDRAM - Main SODIMM */
  111. im->sysconf.ddrlaw[0].bar = CONFIG_SYS_DDR_BASE & LAWBAR_BAR;
  112. msize = fixed_sdram ();
  113. #if defined(CONFIG_DDR_ECC) && !defined(CONFIG_ECC_INIT_VIA_DDRC)
  114. /*
  115. * Initialize DDR ECC byte
  116. */
  117. ddr_enable_ecc (msize * 1024 * 1024);
  118. #endif
  119. /* return total bus SDRAM size(bytes) -- DDR */
  120. return (msize * 1024 * 1024);
  121. }
  122. int checkboard (void)
  123. {
  124. puts ("Board: Keymile kmeter1\n");
  125. return 0;
  126. }
  127. #if defined(CONFIG_OF_BOARD_SETUP)
  128. void ft_board_setup (void *blob, bd_t *bd)
  129. {
  130. ft_cpu_setup (blob, bd);
  131. }
  132. #endif