56333be9b2
The qt840a is one of the many tv-boxes using the "i12" A20 pcb, but it populates only one of the 2 places for a 16 bit dram ic, thus reducing the buswidth to 16 bits, and the amount of ram to 512M, which is why we had a separate config for it. This commit switches the generic i12-tvbox_defconfig over to DRAM autoconfiguration, so that it will work with the qt840a too, and drops the qt840a specific config, like we've done with other memory-amount specific configs before. Tested on a generic i12-tvbox with 32 bit bus-width / 1G RAM, and on a qt840a with 16 bit bus-width / 512M RAM. Signed-off-by: Hans de Goede <hdegoede@redhat.com> Acked-by: Ian Campbell <ijc@hellion.org.uk>
32 lines
541 B
C
32 lines
541 B
C
/* DRAM parameters for auto dram configuration on sun5i and sun7i */
|
|
|
|
#include <common.h>
|
|
#include <asm/arch/dram.h>
|
|
|
|
static struct dram_para dram_para = {
|
|
.clock = CONFIG_DRAM_CLK,
|
|
.type = 3,
|
|
.rank_num = 1,
|
|
.density = 0,
|
|
.io_width = 0,
|
|
.bus_width = 0,
|
|
.cas = 9,
|
|
.zq = CONFIG_DRAM_ZQ,
|
|
.odt_en = 0,
|
|
.size = 0,
|
|
.tpr0 = 0x42d899b7,
|
|
.tpr1 = 0xa090,
|
|
.tpr2 = 0x22a00,
|
|
.tpr3 = 0,
|
|
.tpr4 = 0,
|
|
.tpr5 = 0,
|
|
.emr1 = CONFIG_DRAM_EMR1,
|
|
.emr2 = 0x10,
|
|
.emr3 = 0,
|
|
};
|
|
|
|
unsigned long sunxi_dram_init(void)
|
|
{
|
|
return dramc_init(&dram_para);
|
|
}
|