aboutsummaryrefslogtreecommitdiff
path: root/src/soc/amd/cezanne/bootblock.c
blob: 3fd567720e9a908f02095bb31d31189b09df383b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
/* SPDX-License-Identifier: GPL-2.0-only */

#include <amdblocks/amd_pci_mmconf.h>
#include <bootblock_common.h>
#include <stdint.h>

asmlinkage void bootblock_c_entry(uint64_t base_timestamp)
{
	enable_pci_mmconf();
}

void bootblock_soc_early_init(void)
{
}

void bootblock_soc_init(void)
{
}