blob: 8124f8aafde0671e48d0abe770cedcd6bf868c25 [file] [log] [blame]
Jimmy Zhangc5b34a22012-04-10 05:17:06 +00001/*
2 * Copyright (c) 2011 The Chromium OS Authors.
3 *
Wolfgang Denk1a459662013-07-08 09:37:19 +02004 * SPDX-License-Identifier: GPL-2.0+
Jimmy Zhangc5b34a22012-04-10 05:17:06 +00005 */
6
7#include <common.h>
8#include <asm/io.h>
Jimmy Zhangc5b34a22012-04-10 05:17:06 +00009#include <asm/arch/clock.h>
10#include <asm/arch/emc.h>
11#include <asm/arch/pmu.h>
Tom Warren150c2492012-09-19 15:50:56 -070012#include <asm/arch/tegra.h>
13#include <asm/arch-tegra/ap.h>
14#include <asm/arch-tegra/clk_rst.h>
15#include <asm/arch-tegra/sys_proto.h>
Jimmy Zhangc5b34a22012-04-10 05:17:06 +000016
17DECLARE_GLOBAL_DATA_PTR;
18
19/* These rates are hard-coded for now, until fdt provides them */
20#define EMC_SDRAM_RATE_T20 (333000 * 2 * 1000)
21#define EMC_SDRAM_RATE_T25 (380000 * 2 * 1000)
22
23int board_emc_init(void)
24{
25 unsigned rate;
26
Tom Warren49493cb2013-04-10 10:32:32 -070027 switch (tegra_get_chip_sku()) {
Jimmy Zhangc5b34a22012-04-10 05:17:06 +000028 default:
29 case TEGRA_SOC_T20:
30 rate = EMC_SDRAM_RATE_T20;
31 break;
32 case TEGRA_SOC_T25:
33 rate = EMC_SDRAM_RATE_T25;
34 break;
35 }
36 return tegra_set_emc(gd->fdt_blob, rate);
37}