coreboot
coreboot is an Open Source project aimed at replacing the proprietary BIOS found in most computers.
sdram.h
Go to the documentation of this file.
1 /* SPDX-License-Identifier: GPL-2.0-only */
2 
3 #ifndef __SOC_SIFIVE_FU540_SDRAM_H__
4 #define __SOC_SIFIVE_FU540_SDRAM_H__
5 
6 #include <types.h>
7 
8 void sdram_init(void);
9 size_t sdram_size_mb(void);
10 
11 #endif
void sdram_init(void)
Definition: sdram.c:16
size_t sdram_size_mb(void)
Definition: sdram.c:24