emif4.c 4.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178
  1. /*
  2. * Author :
  3. * Vaibhav Hiremath <hvaibhav@ti.com>
  4. *
  5. * Based on mem.c and sdrc.c
  6. *
  7. * Copyright (C) 2010
  8. * Texas Instruments Incorporated - http://www.ti.com/
  9. *
  10. * This program is free software; you can redistribute it and/or
  11. * modify it under the terms of the GNU General Public License as
  12. * published by the Free Software Foundation; either version 2 of
  13. * the License, or (at your option) any later version.
  14. *
  15. * This program is distributed in the hope that it will be useful,
  16. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  17. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  18. * GNU General Public License for more details.
  19. *
  20. * You should have received a copy of the GNU General Public License
  21. * along with this program; if not, write to the Free Software
  22. * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
  23. * MA 02111-1307 USA
  24. */
  25. #include <common.h>
  26. #include <asm/io.h>
  27. #include <asm/arch/mem.h>
  28. #include <asm/arch/sys_proto.h>
  29. #include <asm/arch/emif4.h>
  30. DECLARE_GLOBAL_DATA_PTR;
  31. extern omap3_sysinfo sysinfo;
  32. static emif4_t *emif4_base = (emif4_t *)OMAP34XX_SDRC_BASE;
  33. /*
  34. * is_mem_sdr -
  35. * - Return 1 if mem type in use is SDR
  36. */
  37. u32 is_mem_sdr(void)
  38. {
  39. return 0;
  40. }
  41. /*
  42. * get_sdr_cs_size -
  43. * - Get size of chip select 0/1
  44. */
  45. u32 get_sdr_cs_size(u32 cs)
  46. {
  47. u32 size = 0;
  48. /* TODO: Calculate the size based on EMIF4 configuration */
  49. if (cs == CS0)
  50. size = CONFIG_SYS_CS0_SIZE;
  51. return size;
  52. }
  53. /*
  54. * get_sdr_cs_offset -
  55. * - Get offset of cs from cs0 start
  56. */
  57. u32 get_sdr_cs_offset(u32 cs)
  58. {
  59. u32 offset = 0;
  60. return offset;
  61. }
  62. /*
  63. * do_emif4_init -
  64. * - Init the emif4 module for DDR access
  65. * - Early init routines, called from flash or SRAM.
  66. */
  67. void do_emif4_init(void)
  68. {
  69. unsigned int regval;
  70. /* Set the DDR PHY parameters in PHY ctrl registers */
  71. regval = (EMIF4_DDR1_READ_LAT | EMIF4_DDR1_PWRDN_DIS |
  72. EMIF4_DDR1_EXT_STRB_DIS);
  73. writel(regval, &emif4_base->ddr_phyctrl1);
  74. writel(regval, &emif4_base->ddr_phyctrl1_shdw);
  75. writel(0, &emif4_base->ddr_phyctrl2);
  76. /* Reset the DDR PHY and wait till completed */
  77. regval = readl(&emif4_base->sdram_iodft_tlgc);
  78. regval |= (1<<10);
  79. writel(regval, &emif4_base->sdram_iodft_tlgc);
  80. /*Wait till that bit clears*/
  81. while ((readl(&emif4_base->sdram_iodft_tlgc) & (1<<10)) == 0x1);
  82. /*Re-verify the DDR PHY status*/
  83. while ((readl(&emif4_base->sdram_sts) & (1<<2)) == 0x0);
  84. regval |= (1<<0);
  85. writel(regval, &emif4_base->sdram_iodft_tlgc);
  86. /* Set SDR timing registers */
  87. regval = (EMIF4_TIM1_T_WTR | EMIF4_TIM1_T_RRD |
  88. EMIF4_TIM1_T_RC | EMIF4_TIM1_T_RAS |
  89. EMIF4_TIM1_T_WR | EMIF4_TIM1_T_RCD |
  90. EMIF4_TIM1_T_RP);
  91. writel(regval, &emif4_base->sdram_time1);
  92. writel(regval, &emif4_base->sdram_time1_shdw);
  93. regval = (EMIF4_TIM2_T_CKE | EMIF4_TIM2_T_RTP |
  94. EMIF4_TIM2_T_XSRD | EMIF4_TIM2_T_XSNR |
  95. EMIF4_TIM2_T_ODT | EMIF4_TIM2_T_XP);
  96. writel(regval, &emif4_base->sdram_time2);
  97. writel(regval, &emif4_base->sdram_time2_shdw);
  98. regval = (EMIF4_TIM3_T_RAS_MAX | EMIF4_TIM3_T_RFC);
  99. writel(regval, &emif4_base->sdram_time3);
  100. writel(regval, &emif4_base->sdram_time3_shdw);
  101. /* Set the PWR control register */
  102. regval = (EMIF4_PWR_PM_TIM | EMIF4_PWR_LP_MODE |
  103. EMIF4_PWR_DPD_DIS | EMIF4_PWR_IDLE_MODE);
  104. writel(regval, &emif4_base->sdram_pwr_mgmt);
  105. writel(regval, &emif4_base->sdram_pwr_mgmt_shdw);
  106. /* Set the DDR refresh rate control register */
  107. regval = (EMIF4_REFRESH_RATE | EMIF4_INITREF_DIS);
  108. writel(regval, &emif4_base->sdram_refresh_ctrl);
  109. writel(regval, &emif4_base->sdram_refresh_ctrl_shdw);
  110. /* set the SDRAM configuration register */
  111. regval = (EMIF4_CFG_PGSIZE | EMIF4_CFG_EBANK |
  112. EMIF4_CFG_IBANK | EMIF4_CFG_ROWSIZE |
  113. EMIF4_CFG_CL | EMIF4_CFG_NARROW_MD |
  114. EMIF4_CFG_SDR_DRV | EMIF4_CFG_DDR_DIS_DLL |
  115. EMIF4_CFG_DDR2_DDQS | EMIF4_CFG_DDR_TERM |
  116. EMIF4_CFG_IBANK_POS | EMIF4_CFG_SDRAM_TYP);
  117. writel(regval, &emif4_base->sdram_config);
  118. }
  119. /*
  120. * dram_init -
  121. * - Sets uboots idea of sdram size
  122. */
  123. int dram_init(void)
  124. {
  125. unsigned int size0 = 0, size1 = 0;
  126. size0 = get_sdr_cs_size(CS0);
  127. /*
  128. * If a second bank of DDR is attached to CS1 this is
  129. * where it can be started. Early init code will init
  130. * memory on CS0.
  131. */
  132. if ((sysinfo.mtype == DDR_COMBO) || (sysinfo.mtype == DDR_STACKED))
  133. size1 = get_sdr_cs_size(CS1);
  134. gd->ram_size = size0 + size1;
  135. return 0;
  136. }
  137. void dram_init_banksize (void)
  138. {
  139. unsigned int size0 = 0, size1 = 0;
  140. size0 = get_sdr_cs_size(CS0);
  141. size1 = get_sdr_cs_size(CS1);
  142. gd->bd->bi_dram[0].start = PHYS_SDRAM_1;
  143. gd->bd->bi_dram[0].size = size0;
  144. gd->bd->bi_dram[1].start = PHYS_SDRAM_1 + get_sdr_cs_offset(CS1);
  145. gd->bd->bi_dram[1].size = size1;
  146. }
  147. /*
  148. * mem_init() -
  149. * - Initialize memory subsystem
  150. */
  151. void mem_init(void)
  152. {
  153. do_emif4_init();
  154. }