summaryrefslogtreecommitdiff
path: root/arch/x86/cpu/tangier/tangier.c
blob: ac8733c75e9224ccf44b45b65d156288ce5216d9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
/*
 * Copyright (c) 2017 Intel Corporation
 *
 * SPDX-License-Identifier:	GPL-2.0+
 */

#include <common.h>
#include <asm/scu.h>
#include <asm/u-boot-x86.h>

/*
 * Miscellaneous platform dependent initializations
 */
int arch_cpu_init(void)
{
	return x86_cpu_init_f();
}

int checkcpu(void)
{
	return 0;
}

int print_cpuinfo(void)
{
	return default_print_cpuinfo();
}

void reset_cpu(ulong addr)
{
	scu_ipc_simple_command(IPCMSG_COLD_RESET, 0);
}