blob: 5da41a9b0489ebbbd19d3e852bb2e5cfafcb5143 [file] [log] [blame]
Gabe Blackd40be112013-10-09 23:45:07 -07001/*
2 * This file is part of the coreboot project.
3 *
4 * Copyright (C) 2007-2009 coresystems GmbH
5 * Copyright (C) 2011 The ChromiumOS Authors. All rights reserved.
6 * Copyright 2013 Google Inc.
7 *
8 * This program is free software; you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License as published by
10 * the Free Software Foundation; version 2 of the License.
11 *
12 * This program is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 * GNU General Public License for more details.
16 *
17 * You should have received a copy of the GNU General Public License
18 * along with this program; if not, write to the Free Software
19 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
20 */
21
22#include <console/console.h>
23#include <device/device.h>
Jimmy Zhangbd5925a2014-03-10 12:42:05 -070024#include <arch/io.h>
Gabe Blackd40be112013-10-09 23:45:07 -070025#include <soc/nvidia/tegra/dc.h>
Tom Warren64982c502014-01-23 13:37:50 -070026#include <soc/nvidia/tegra124/sdram.h>
Jimmy Zhangbd5925a2014-03-10 12:42:05 -070027#include "chip.h"
Tom Warren64982c502014-01-23 13:37:50 -070028#include <soc/display.h>
Julius Wernerec5e5e02014-08-20 15:29:56 -070029#include <symbols.h>
Gabe Black042f8492014-03-31 21:01:14 -070030#include <vendorcode/google/chromeos/chromeos.h>
Gabe Blackd40be112013-10-09 23:45:07 -070031
32/* this sucks, but for now, fb size/location are hardcoded.
33 * Will break if we get 2. Sigh.
34 * We assume it's all multiples of MiB for MMUs sake.
35 */
36static void soc_enable(device_t dev)
37{
Tom Warren64982c502014-01-23 13:37:50 -070038 u32 lcdbase = fb_base_mb();
Gabe Blackd40be112013-10-09 23:45:07 -070039 unsigned long fb_size = FB_SIZE_MB;
Tom Warren64982c502014-01-23 13:37:50 -070040
Julius Wernerec5e5e02014-08-20 15:29:56 -070041 ram_resource(dev, 0, (uintptr_t)_dram/KiB,
Gabe Black5cbbc702014-02-08 05:17:38 -080042 (sdram_max_addressable_mb() - fb_size)*KiB -
Julius Wernerec5e5e02014-08-20 15:29:56 -070043 (uintptr_t)_dram/KiB);
Gabe Blackd40be112013-10-09 23:45:07 -070044 mmio_resource(dev, 1, lcdbase*KiB, fb_size*KiB);
Gabe Black5cbbc702014-02-08 05:17:38 -080045
Julius Wernerec5e5e02014-08-20 15:29:56 -070046 u32 sdram_end_mb = sdram_size_mb() + (uintptr_t)_dram/MiB;
Gabe Black5cbbc702014-02-08 05:17:38 -080047
48 if (sdram_end_mb > sdram_max_addressable_mb())
49 ram_resource(dev, 2, sdram_max_addressable_mb()*KiB,
50 (sdram_end_mb - sdram_max_addressable_mb())*KiB);
Gabe Blackd40be112013-10-09 23:45:07 -070051}
52
53static void soc_init(device_t dev)
54{
Gabe Black042f8492014-03-31 21:01:14 -070055 if (vboot_skip_display_init())
56 printk(BIOS_INFO, "Skipping display init.\n");
57 else
58 display_startup(dev);
Gabe Blackd40be112013-10-09 23:45:07 -070059 printk(BIOS_INFO, "CPU: Tegra124\n");
60}
61
Gabe Blackd40be112013-10-09 23:45:07 -070062static struct device_operations soc_ops = {
Edward O'Callaghan0625a8b2014-10-31 08:03:16 +110063 .read_resources = DEVICE_NOOP,
64 .set_resources = DEVICE_NOOP,
Gabe Blackd40be112013-10-09 23:45:07 -070065 .enable_resources = soc_enable,
66 .init = soc_init,
67 .scan_bus = 0,
68};
69
70static void enable_tegra124_dev(device_t dev)
71{
72 dev->ops = &soc_ops;
73}
74
75struct chip_operations soc_nvidia_tegra124_ops = {
76 CHIP_NAME("SOC Nvidia Tegra124")
77 .enable_dev = enable_tegra124_dev,
78};