SABRE board : 32 data width on DDR3

取消
显示结果 
显示  仅  | 搜索替代 
您的意思是: 

SABRE board : 32 data width on DDR3

1,411 次查看
florinmaticu
Contributor II

Hello,

After changing the data width from 64 to 32, I could see that the available memory is only 512MB.

Any advice on what other changes are needed to be able to have 1GB of RAM and using 32 bit data width?

Board : SABRE board i.MX 6 QUADPlus , 1GB DDR3 RAM

u-boot version  : rel_imx_4.1.15_1.0.0_ga

File: mx6sabresd.c

static struct mx6_ddr3_cfg mem_ddr = {
.mem_speed = 1600,
.density = 4,
.width = 32, //64
.banks = 8,
.rowaddr = 14,
.coladdr = 10,
.pagesz = 2,
.trcd = 1375,
.trcmin = 4875,
.trasmin = 3500,
};

标记 (4)
2 回复数

1,220 次查看
florinmaticu
Contributor II

Hi Kumar,

Thanks for replying.

Although I can't find the datasheet for the SDRAM memory of  the IMX6 SabreSD board: MCIMX6QP-SDB.

0 项奖励
回复

1,220 次查看
vinodmaverickr0
Contributor IV

Hi Maticu,

You need to add the number of rows and columns for changing the DDR size.

static struct mx6_ddr3_cfg mem_ddr = {

.rowaddr = <value>,

.coladdr = <value>,  

}.

you can refer to the datasheet for their value for 1GB DDR size.

Thanks,

Vinod

0 项奖励
回复