2 * Copyright (c) 2011 The Chromium OS Authors.
4 * SPDX-License-Identifier: GPL-2.0+
10 #include <asm/arch/clock.h>
11 #include <asm/arch/emc.h>
12 #include <asm/arch/pmu.h>
13 #include <asm/arch/tegra.h>
14 #include <asm/arch-tegra/ap.h>
15 #include <asm/arch-tegra/clk_rst.h>
16 #include <asm/arch-tegra/sys_proto.h>
18 DECLARE_GLOBAL_DATA_PTR;
20 /* These rates are hard-coded for now, until fdt provides them */
21 #define EMC_SDRAM_RATE_T20 (333000 * 2 * 1000)
22 #define EMC_SDRAM_RATE_T25 (380000 * 2 * 1000)
24 int board_emc_init(void)
28 switch (tegra_get_chip_sku()) {
31 rate = EMC_SDRAM_RATE_T20;
34 rate = EMC_SDRAM_RATE_T25;
37 return tegra_set_emc(gd->fdt_blob, rate);