summaryrefslogtreecommitdiffstats
path: root/arch/x86/cpu/ivybridge/ivybridge.c
blob: c770b53c0811683c0b2f963966149f204add82d3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
/*
 * Copyright (C) 2016, Bin Meng <bmeng.cn@gmail.com>
 *
 * SPDX-License-Identifier:	GPL-2.0+
 */

#include <common.h>
#include <asm/post.h>
#include <asm/processor.h>

int arch_cpu_init(void)
{
	int ret;

	post_code(POST_CPU_INIT);

	ret = x86_cpu_init_f();
	if (ret)
		return ret;

	return 0;
}
OpenPOWER on IntegriCloud