1
2
3
4
5
6
7#include <common.h>
8#include <i2c.h>
9
10#include <fsl_ddr_sdram.h>
11#include <fsl_ddr_dimm_params.h>
12
13void fsl_ddr_board_options(memctl_options_t *popts,
14 dimm_params_t *pdimm,
15 unsigned int ctrl_num)
16{
17
18
19
20
21
22
23
24
25
26
27
28 popts->clk_adjust = 7;
29
30
31
32
33
34
35 popts->cpo_override = 10;
36
37
38
39
40
41
42
43
44
45
46
47
48 popts->write_data_delay = 3;
49
50
51
52
53
54 popts->half_strength_driver_enable = 0;
55}
56
57#ifdef CONFIG_SPD_EEPROM
58
59
60
61
62
63
64void get_spd(generic_spd_eeprom_t *spd, u8 i2c_address)
65{
66 int ret;
67
68#ifdef ALT_SPD_EEPROM_ADDRESS
69 if (i2c_address == SPD_EEPROM_ADDRESS) {
70 ret = i2c_read(ALT_SPD_EEPROM_ADDRESS, 0, 1, (uchar *)spd,
71 sizeof(generic_spd_eeprom_t));
72 if (ret == 0)
73 return;
74 memset(spd, 0, sizeof(generic_spd_eeprom_t));
75 }
76#endif
77 ret = i2c_read(i2c_address, 0, 1, (uchar *)spd,
78 sizeof(generic_spd_eeprom_t));
79 if (ret) {
80 printf("DDR: failed to read SPD from addr %u\n", i2c_address);
81 memset(spd, 0, sizeof(generic_spd_eeprom_t));
82 }
83}
84
85#else
86
87
88
89
90phys_size_t fixed_sdram(void)
91{
92 struct ccsr_ddr __iomem *ddr =
93 (struct ccsr_ddr __iomem *)(CONFIG_SYS_FSL_DDR_ADDR);
94
95 out_be32(&ddr->cs0_bnds, 0x0000007f);
96 out_be32(&ddr->cs1_bnds, 0x008000ff);
97 out_be32(&ddr->cs2_bnds, 0x00000000);
98 out_be32(&ddr->cs3_bnds, 0x00000000);
99
100 out_be32(&ddr->cs0_config, 0x80010101);
101 out_be32(&ddr->cs1_config, 0x80010101);
102 out_be32(&ddr->cs2_config, 0x00000000);
103 out_be32(&ddr->cs3_config, 0x00000000);
104
105 out_be32(&ddr->timing_cfg_3, 0x00000000);
106 out_be32(&ddr->timing_cfg_0, 0x00220802);
107 out_be32(&ddr->timing_cfg_1, 0x38377322);
108 out_be32(&ddr->timing_cfg_2, 0x0fa044C7);
109
110 out_be32(&ddr->sdram_cfg, 0x4300C000);
111 out_be32(&ddr->sdram_cfg_2, 0x24401000);
112
113 out_be32(&ddr->sdram_mode, 0x23C00542);
114 out_be32(&ddr->sdram_mode_2, 0x00000000);
115
116 out_be32(&ddr->sdram_interval, 0x05080100);
117 out_be32(&ddr->sdram_md_cntl, 0x00000000);
118 out_be32(&ddr->sdram_data_init, 0x00000000);
119 out_be32(&ddr->sdram_clk_cntl, 0x03800000);
120 asm("sync;isync;msync");
121 udelay(500);
122
123 #ifdef CONFIG_DDR_ECC
124
125 out_be32(&ddr->sdram_cfg, CONFIG_SYS_DDR_CONTROL | 0x20000000);
126 #else
127 out_be32(&ddr->sdram_cfg, CONFIG_SYS_DDR_CONTROL);
128 #endif
129
130 return CONFIG_SYS_SDRAM_SIZE * 1024 * 1024;
131}
132#endif
133