blob: e996c110aab73259960d97ca300d475cec514c05 [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>
24#include <soc/nvidia/tegra/dc.h>
25#include <soc/addressmap.h>
26
27/* this sucks, but for now, fb size/location are hardcoded.
28 * Will break if we get 2. Sigh.
29 * We assume it's all multiples of MiB for MMUs sake.
30 */
31static void soc_enable(device_t dev)
32{
33 unsigned long fb_size = FB_SIZE_MB;
34 u32 lcdbase = FB_BASE_MB;
35 ram_resource(dev, 0, CONFIG_SYS_SDRAM_BASE/KiB,
36 (CONFIG_DRAM_SIZE_MB - fb_size)*KiB);
37 mmio_resource(dev, 1, lcdbase*KiB, fb_size*KiB);
38}
39
40static void soc_init(device_t dev)
41{
42 display_startup(dev);
43 printk(BIOS_INFO, "CPU: Tegra124\n");
44}
45
46static void soc_noop(device_t dev)
47{
48}
49
50static struct device_operations soc_ops = {
51 .read_resources = soc_noop,
52 .set_resources = soc_noop,
53 .enable_resources = soc_enable,
54 .init = soc_init,
55 .scan_bus = 0,
56};
57
58static void enable_tegra124_dev(device_t dev)
59{
60 dev->ops = &soc_ops;
61}
62
63struct chip_operations soc_nvidia_tegra124_ops = {
64 CHIP_NAME("SOC Nvidia Tegra124")
65 .enable_dev = enable_tegra124_dev,
66};