mirror of
https://gitlab.com/bztsrc/bootboot.git
synced 2023-02-13 20:54:32 -05:00
54 lines
1.8 KiB
C
54 lines
1.8 KiB
C
/*
|
|
* x86_64-cb/bootboot.c
|
|
*
|
|
* Copyright (C) 2017 - 2020 bzt (bztsrc@gitlab)
|
|
*
|
|
* Permission is hereby granted, free of charge, to any person
|
|
* obtaining a copy of this software and associated documentation
|
|
* files (the "Software"), to deal in the Software without
|
|
* restriction, including without limitation the rights to use, copy,
|
|
* modify, merge, publish, distribute, sublicense, and/or sell copies
|
|
* of the Software, and to permit persons to whom the Software is
|
|
* furnished to do so, subject to the following conditions:
|
|
*
|
|
* The above copyright notice and this permission notice shall be
|
|
* included in all copies or substantial portions of the Software.
|
|
*
|
|
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
|
* EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
|
* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
|
|
* NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
|
|
* HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
|
|
* WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
|
|
* DEALINGS IN THE SOFTWARE.
|
|
*
|
|
* This file is part of the BOOTBOOT Protocol package.
|
|
* @brief Boot loader for the x86_64 coreboot payload
|
|
*
|
|
*/
|
|
|
|
#define BBDEBUG 1
|
|
|
|
#include <libpayload-config.h>
|
|
#include <libpayload.h>
|
|
|
|
extern struct sysinfo_t lib_sysinfo;
|
|
|
|
int main(void)
|
|
{
|
|
int ret, i;
|
|
|
|
printf("Hello World!\n");
|
|
|
|
ret = lib_get_sysinfo();
|
|
if (ret) halt();
|
|
|
|
printf("Number of memory ranges: %d\n", lib_sysinfo.n_memranges);
|
|
for (i = 0; i < lib_sysinfo.n_memranges; i++) {
|
|
printf("%d: base 0x%08llx size 0x%08llx type 0x%x\n", i, lib_sysinfo.memrange[i].base, lib_sysinfo.memrange[i].size, lib_sysinfo.memrange[i].type);
|
|
}
|
|
printf("Now we will halt. Bye\n");
|
|
halt();
|
|
return 0;
|
|
}
|