e30c396ffa
Unused includes found using following commande: diff <(git grep -l '#include <stddef.h>' -- src/) <(git grep -l 'size_t\|ssize_t\|wchar_t\|wint_t\|NULL\|DEVTREE_EARLY\|DEVTREE_CONST\ |MAYBE_STATIC_NONZERO\|MAYBE_STATIC_BSS\|zeroptr' -- src/)|grep '<' |grep -v vendor |grep -vF '.h' Change-Id: Ic54b1db995fe7c61b416fa5e1c4022238e4a6ad5 Signed-off-by: Elyes HAOUAS <ehaouas@noos.fr> Reviewed-on: https://review.coreboot.org/c/coreboot/+/41150 Reviewed-by: Patrick Georgi <pgeorgi@google.com> Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
38 lines
892 B
C
38 lines
892 B
C
/* SPDX-License-Identifier: GPL-2.0-only */
|
|
|
|
#include <bootmode.h>
|
|
#include <console/console.h>
|
|
#include <device/device.h>
|
|
#include <gpio.h>
|
|
#include <soc/display.h>
|
|
#include <soc/soc.h>
|
|
#include <soc/sdram.h>
|
|
#include <symbols.h>
|
|
|
|
#include "chip.h"
|
|
|
|
static void soc_init(struct device *dev)
|
|
{
|
|
ram_resource(dev, 0, (uintptr_t)_dram/KiB, sdram_size_mb()*(MiB/KiB));
|
|
if (display_init_required())
|
|
rk_display_init(dev, (uintptr_t)_framebuffer,
|
|
REGION_SIZE(framebuffer));
|
|
else
|
|
printk(BIOS_INFO, "Skipping display init.\n");
|
|
}
|
|
|
|
static struct device_operations soc_ops = {
|
|
.read_resources = noop_read_resources,
|
|
.set_resources = noop_set_resources,
|
|
.init = soc_init,
|
|
};
|
|
|
|
static void enable_rk3288_dev(struct device *dev)
|
|
{
|
|
dev->ops = &soc_ops;
|
|
}
|
|
|
|
struct chip_operations soc_rockchip_rk3288_ops = {
|
|
CHIP_NAME("SOC Rockchip 3288")
|
|
.enable_dev = enable_rk3288_dev,
|
|
};
|