coreboot
coreboot is an Open Source project aimed at replacing the proprietary BIOS found in most computers.
mainboard.c
Go to the documentation of this file.
1 /* SPDX-License-Identifier: GPL-2.0-or-later */
2 
3 #include <ramdetect.h>
4 #include <symbols.h>
5 #include <device/device.h>
6 #include <bootmem.h>
7 
9 {
11 }
12 
13 static void mainboard_enable(struct device *dev)
14 {
15  int ram_size_mb = probe_ramsize((uintptr_t)_dram, CONFIG_DRAM_SIZE_MB);
16  ram_resource(dev, 0, (uintptr_t)_dram / KiB, ram_size_mb * KiB);
17 }
18 
21 };
22 
struct chip_operations mainboard_ops
Definition: mainboard.c:19
@ BM_MEM_BL31
Definition: bootmem.h:30
void bootmem_add_range(uint64_t start, uint64_t size, const enum bootmem_type tag)
Definition: bootmem.c:88
#define KiB
Definition: helpers.h:75
void bootmem_platform_add_ranges(void)
Definition: mainboard.c:8
struct chip_operations mainboard_emulation_qemu_aarch64_ops
Definition: mainboard.c:23
static void mainboard_enable(struct device *dev)
Definition: mainboard.c:13
#define ram_resource(dev, idx, basek, sizek)
Definition: device.h:321
u8 _dram[]
#define REGION_SIZE(name)
Definition: symbols.h:10
size_t probe_ramsize(const uintptr_t dram_start, const size_t probe_size)
Definition: ramdetect.c:40
unsigned long uintptr_t
Definition: stdint.h:21
void(* enable_dev)(struct device *dev)
Definition: device.h:24
Definition: device.h:107