kmeter1.c 4.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199
  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. #include "../common/common.h"
  29. extern void disable_addr_trans (void);
  30. extern void enable_addr_trans (void);
  31. const qe_iop_conf_t qe_iop_conf_tab[] = {
  32. /* port pin dir open_drain assign */
  33. /* MDIO */
  34. {0, 1, 3, 0, 2}, /* MDIO */
  35. {0, 2, 1, 0, 1}, /* MDC */
  36. /* UCC4 - UEC */
  37. {1, 14, 1, 0, 1}, /* TxD0 */
  38. {1, 15, 1, 0, 1}, /* TxD1 */
  39. {1, 20, 2, 0, 1}, /* RxD0 */
  40. {1, 21, 2, 0, 1}, /* RxD1 */
  41. {1, 18, 1, 0, 1}, /* TX_EN */
  42. {1, 26, 2, 0, 1}, /* RX_DV */
  43. {1, 27, 2, 0, 1}, /* RX_ER */
  44. {1, 24, 2, 0, 1}, /* COL */
  45. {1, 25, 2, 0, 1}, /* CRS */
  46. {2, 15, 2, 0, 1}, /* TX_CLK - CLK16 */
  47. {2, 16, 2, 0, 1}, /* RX_CLK - CLK17 */
  48. /* DUART - UART2 */
  49. {5, 0, 1, 0, 2}, /* UART2_SOUT */
  50. {5, 2, 1, 0, 1}, /* UART2_RTS */
  51. {5, 3, 2, 0, 2}, /* UART2_SIN */
  52. {5, 1, 2, 0, 3}, /* UART2_CTS */
  53. /* END of table */
  54. {0, 0, 0, 0, QE_IOP_TAB_END},
  55. };
  56. static int board_init_i2c_busses (void)
  57. {
  58. I2C_MUX_DEVICE *dev = NULL;
  59. uchar *buf;
  60. /* Set up the Bus for the DTTs */
  61. buf = (unsigned char *) getenv ("dtt_bus");
  62. if (buf != NULL)
  63. dev = i2c_mux_ident_muxstring (buf);
  64. if (dev == NULL) {
  65. printf ("Error couldn't add Bus for DTT\n");
  66. printf ("please setup dtt_bus to where your\n");
  67. printf ("DTT is found.\n");
  68. }
  69. return 0;
  70. }
  71. int board_early_init_r (void)
  72. {
  73. void *reg = (void *)(CONFIG_SYS_IMMR + 0x14a8);
  74. u32 val;
  75. /*
  76. * Because of errata in the UCCs, we have to write to the reserved
  77. * registers to slow the clocks down.
  78. */
  79. val = in_be32 (reg);
  80. /* UCC1 */
  81. val |= 0x00003000;
  82. /* UCC2 */
  83. val |= 0x0c000000;
  84. out_be32 (reg, val);
  85. /* enable the PHY on the PIGGY */
  86. setbits (8, (void *)(CONFIG_SYS_PIGGY_BASE + 0x10003), 0x01);
  87. return 0;
  88. }
  89. int misc_init_r (void)
  90. {
  91. /* add board specific i2c busses */
  92. board_init_i2c_busses ();
  93. return 0;
  94. }
  95. int fixed_sdram(void)
  96. {
  97. volatile immap_t *im = (immap_t *)CONFIG_SYS_IMMR;
  98. u32 msize = 0;
  99. u32 ddr_size;
  100. u32 ddr_size_log2;
  101. im->sysconf.ddrlaw[0].ar = LAWAR_EN | 0x1e;
  102. im->ddr.csbnds[0].csbnds = CONFIG_SYS_DDR_CS0_BNDS;
  103. im->ddr.cs_config[0] = CONFIG_SYS_DDR_CS0_CONFIG;
  104. im->ddr.timing_cfg_0 = CONFIG_SYS_DDR_TIMING_0;
  105. im->ddr.timing_cfg_1 = CONFIG_SYS_DDR_TIMING_1;
  106. im->ddr.timing_cfg_2 = CONFIG_SYS_DDR_TIMING_2;
  107. im->ddr.timing_cfg_3 = CONFIG_SYS_DDR_TIMING_3;
  108. im->ddr.sdram_cfg = CONFIG_SYS_DDR_SDRAM_CFG;
  109. im->ddr.sdram_cfg2 = CONFIG_SYS_DDR_SDRAM_CFG2;
  110. im->ddr.sdram_mode = CONFIG_SYS_DDR_MODE;
  111. im->ddr.sdram_mode2 = CONFIG_SYS_DDR_MODE2;
  112. im->ddr.sdram_interval = CONFIG_SYS_DDR_INTERVAL;
  113. im->ddr.sdram_clk_cntl = CONFIG_SYS_DDR_CLK_CNTL;
  114. udelay (200);
  115. im->ddr.sdram_cfg |= SDRAM_CFG_MEM_EN;
  116. msize = CONFIG_SYS_DDR_SIZE << 20;
  117. disable_addr_trans ();
  118. msize = get_ram_size (CONFIG_SYS_DDR_BASE, msize);
  119. enable_addr_trans ();
  120. msize /= (1024 * 1024);
  121. if (CONFIG_SYS_DDR_SIZE != msize) {
  122. for (ddr_size = msize << 20, ddr_size_log2 = 0;
  123. (ddr_size > 1); ddr_size = ddr_size >> 1, ddr_size_log2++)
  124. if (ddr_size & 1)
  125. return -1;
  126. im->sysconf.ddrlaw[0].ar =
  127. LAWAR_EN | ((ddr_size_log2 - 1) & LAWAR_SIZE);
  128. im->ddr.csbnds[0].csbnds = (((msize / 16) - 1) & 0xff);
  129. }
  130. return msize;
  131. }
  132. phys_size_t initdram (int board_type)
  133. {
  134. #if defined(CONFIG_DDR_ECC) && !defined(CONFIG_ECC_INIT_VIA_DDRC)
  135. extern void ddr_enable_ecc (unsigned int dram_size);
  136. #endif
  137. volatile immap_t *im = (immap_t *)CONFIG_SYS_IMMR;
  138. u32 msize = 0;
  139. if ((im->sysconf.immrbar & IMMRBAR_BASE_ADDR) != (u32)im)
  140. return -1;
  141. /* DDR SDRAM - Main SODIMM */
  142. im->sysconf.ddrlaw[0].bar = CONFIG_SYS_DDR_BASE & LAWBAR_BAR;
  143. msize = fixed_sdram ();
  144. #if defined(CONFIG_DDR_ECC) && !defined(CONFIG_ECC_INIT_VIA_DDRC)
  145. /*
  146. * Initialize DDR ECC byte
  147. */
  148. ddr_enable_ecc (msize * 1024 * 1024);
  149. #endif
  150. /* return total bus SDRAM size(bytes) -- DDR */
  151. return (msize * 1024 * 1024);
  152. }
  153. int checkboard (void)
  154. {
  155. puts ("Board: Keymile kmeter1");
  156. if (ethernet_present ())
  157. puts (" with PIGGY.");
  158. puts ("\n");
  159. return 0;
  160. }
  161. #if defined(CONFIG_OF_BOARD_SETUP)
  162. void ft_board_setup (void *blob, bd_t *bd)
  163. {
  164. ft_cpu_setup (blob, bd);
  165. }
  166. #endif
  167. #if defined(CONFIG_HUSH_INIT_VAR)
  168. extern int ivm_read_eeprom (void);
  169. int hush_init_var (void)
  170. {
  171. ivm_read_eeprom ();
  172. return 0;
  173. }
  174. #endif