aboutsummaryrefslogtreecommitdiff
path: root/arch/x86/cpu/tangier/tangier.c
blob: 0a15e64344f0e7361ab0536be0fda458c17fce98 (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
// SPDX-License-Identifier: GPL-2.0+
/*
 * Copyright (c) 2017 Intel Corporation
 */

#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);
}