2018-05-06 21:58:06 +00:00
|
|
|
// SPDX-License-Identifier: GPL-2.0+
|
2015-11-17 06:20:28 +00:00
|
|
|
/*
|
|
|
|
* (C) Copyright 2015 Rockchip Electronics Co., Ltd
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <common.h>
|
|
|
|
#include <dm.h>
|
|
|
|
#include <asm/io.h>
|
2019-03-28 03:01:23 +00:00
|
|
|
#include <asm/arch-rockchip/uart.h>
|
|
|
|
#include <asm/arch-rockchip/sdram_rk3036.h>
|
2015-11-17 06:20:28 +00:00
|
|
|
|
|
|
|
void get_ddr_config(struct rk3036_ddr_config *config)
|
|
|
|
{
|
|
|
|
/* K4B4G1646Q config */
|
|
|
|
config->ddr_type = 3;
|
|
|
|
config->rank = 2;
|
|
|
|
config->cs0_row = 15;
|
|
|
|
config->cs1_row = 15;
|
|
|
|
|
|
|
|
/* 8bank */
|
|
|
|
config->bank = 3;
|
|
|
|
config->col = 10;
|
|
|
|
|
|
|
|
/* 16bit bw */
|
|
|
|
config->bw = 1;
|
|
|
|
}
|