Done with sed and God Lines. Only done for C-like code for now. Change-Id: I68d2a8ac6f201f3c1131252b2b53b2b17ece1db6 Signed-off-by: Angel Pons <th3fanbus@gmail.com> Reviewed-on: https://review.coreboot.org/c/coreboot/+/40073 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Felix Held <felix-coreboot@felixheld.de>
27 lines
586 B
C
27 lines
586 B
C
/* SPDX-License-Identifier: GPL-2.0-only */
|
|
/* This file is part of the coreboot project. */
|
|
|
|
#include <console/console.h>
|
|
#include <device/device.h>
|
|
#include <cbmem.h>
|
|
#include <symbols.h>
|
|
#include <ramdetect.h>
|
|
|
|
static void mainboard_enable(struct device *dev)
|
|
{
|
|
size_t dram_mb_detected;
|
|
|
|
if (!dev) {
|
|
die("No dev0; die\n");
|
|
}
|
|
|
|
dram_mb_detected = probe_ramsize((uintptr_t)_dram, CONFIG_DRAM_SIZE_MB);
|
|
ram_resource(dev, 0, (uintptr_t)_dram / KiB, dram_mb_detected * MiB / KiB);
|
|
|
|
cbmem_recovery(0);
|
|
}
|
|
|
|
struct chip_operations mainboard_ops = {
|
|
.enable_dev = mainboard_enable,
|
|
};
|