blob: a9484b48318f4318fd8427ad4dfb3be7d6d08035 [file] [log] [blame]
huang lin82ba4d02014-08-16 10:49:32 +08001/*
2 * This file is part of the coreboot project.
3 *
4 * Copyright 2014 Rockchip Inc.
5 *
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; version 2 of the License.
9 *
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
14 *
15 * You should have received a copy of the GNU General Public License
16 * along with this program; if not, write to the Free Software
Patrick Georgib890a122015-03-26 15:17:45 +010017 * Foundation, Inc.
huang lin82ba4d02014-08-16 10:49:32 +080018 */
19
Julius Werner7a453eb2014-10-20 13:14:55 -070020#include <arch/cache.h>
Aaron Durbinbc98cc62015-09-02 09:21:36 -050021#include <bootmode.h>
Julius Werner7a453eb2014-10-20 13:14:55 -070022#include <cbmem.h>
23#include <console/console.h>
24#include <delay.h>
25#include <device/device.h>
Julius Wernereaa9c452014-09-24 15:40:49 -070026#include <gpio.h>
huang lin40f558e2014-09-19 14:51:52 +080027#include <soc/display.h>
Julius Werner7a453eb2014-10-20 13:14:55 -070028#include <soc/soc.h>
huang linee28c862015-01-26 21:04:55 +080029#include <soc/sdram.h>
Julius Werner7a453eb2014-10-20 13:14:55 -070030#include <stddef.h>
huang lin82ba4d02014-08-16 10:49:32 +080031#include <stdlib.h>
32#include <string.h>
Julius Werner249f9cc2015-01-14 14:53:59 -080033#include <symbols.h>
Julius Werner7a453eb2014-10-20 13:14:55 -070034
huang lin82ba4d02014-08-16 10:49:32 +080035#include "chip.h"
36
huang lin40f558e2014-09-19 14:51:52 +080037static void soc_init(device_t dev)
huang lin82ba4d02014-08-16 10:49:32 +080038{
huang linee28c862015-01-26 21:04:55 +080039 ram_resource(dev, 0, (uintptr_t)_dram/KiB, sdram_size_mb()*(MiB/KiB));
Aaron Durbinbc98cc62015-09-02 09:21:36 -050040 if (display_init_required())
Julius Werner249f9cc2015-01-14 14:53:59 -080041 rk_display_init(dev, (uintptr_t)_framebuffer,
42 _framebuffer_size);
Aaron Durbinbc98cc62015-09-02 09:21:36 -050043 else
44 printk(BIOS_INFO, "Skipping display init.\n");
huang lin82ba4d02014-08-16 10:49:32 +080045}
46
huang lin82ba4d02014-08-16 10:49:32 +080047static struct device_operations soc_ops = {
Edward O'Callaghanc1a9dfe2015-03-26 20:10:09 +110048 .read_resources = DEVICE_NOOP,
49 .set_resources = DEVICE_NOOP,
huang lin40f558e2014-09-19 14:51:52 +080050 .init = soc_init,
huang lin82ba4d02014-08-16 10:49:32 +080051 .scan_bus = 0,
52};
53
54static void enable_rk3288_dev(device_t dev)
55{
56 dev->ops = &soc_ops;
57}
58
59struct chip_operations soc_rockchip_rk3288_ops = {
60 CHIP_NAME("SOC Rockchip 3288")
61 .enable_dev = enable_rk3288_dev,
62};