blob: 9af1bdabbde7e44388336362b861463d541c900e [file] [log] [blame]
Simon Glass3a1a18f2015-01-27 22:13:47 -07001/*
2 * Copyright (C) 2014, Bin Meng <bmeng.cn@gmail.com>
3 *
4 * SPDX-License-Identifier: GPL-2.0+
5 */
6
7#include <common.h>
8#include <mmc.h>
9#include <pci_ids.h>
Bin Mengfe3fbd32015-07-30 03:49:18 -070010#include <asm/irq.h>
Bin Meng8b185042015-10-11 21:37:43 -070011#include <asm/mrccache.h>
Simon Glass3a1a18f2015-01-27 22:13:47 -070012#include <asm/post.h>
Bin Mengfebdfaa2017-10-12 05:07:57 -070013#include <asm/arch/iomap.h>
14
15/* GPIO SUS */
16#define GPIO_SUS_PAD_BASE (IO_BASE_ADDRESS + IO_BASE_OFFSET_GPSSUS)
17#define GPIO_SUS_DFX5_CONF0 0x150
18#define BYT_TRIG_LVL BIT(24)
19#define BYT_TRIG_POS BIT(25)
Simon Glass3a1a18f2015-01-27 22:13:47 -070020
Simon Glassb4302582015-08-04 12:34:02 -060021#ifndef CONFIG_EFI_APP
Simon Glass3a1a18f2015-01-27 22:13:47 -070022int arch_cpu_init(void)
23{
Simon Glass3a1a18f2015-01-27 22:13:47 -070024 post_code(POST_CPU_INIT);
Simon Glass3a1a18f2015-01-27 22:13:47 -070025
Masahiro Yamada0a8547a2016-09-06 22:17:36 +090026 return x86_cpu_init_f();
Simon Glass3a1a18f2015-01-27 22:13:47 -070027}
Bin Mengfe3fbd32015-07-30 03:49:18 -070028
29int arch_misc_init(void)
30{
Simon Glassc8896ee2015-08-10 07:05:12 -060031 if (!ll_boot_init())
32 return 0;
Simon Glass46f8efe2015-08-10 07:05:10 -060033
Bin Meng8b185042015-10-11 21:37:43 -070034#ifdef CONFIG_ENABLE_MRC_CACHE
35 /*
36 * We intend not to check any return value here, as even MRC cache
37 * is not saved successfully, it is not a severe error that will
38 * prevent system from continuing to boot.
39 */
40 mrccache_save();
41#endif
42
Bin Mengfebdfaa2017-10-12 05:07:57 -070043 /*
44 * For some unknown reason, FSP (gold4) for BayTrail configures
45 * the GPIO DFX5 PAD to enable level interrupt (bit 24 and 25).
46 * This does not cause any issue when Linux kernel runs w/ or w/o
47 * the pinctrl driver for BayTrail. However this causes unstable
48 * S3 resume if the pinctrl driver is included in the kernel build.
49 * As this pin keeps generating interrupts during an S3 resume,
50 * and there is no IRQ requester in the kernel to handle it, the
51 * kernel seems to hang and does not continue resuming.
52 *
53 * Clear the mysterious interrupt bits for this pin.
54 */
55 clrbits_le32(GPIO_SUS_PAD_BASE + GPIO_SUS_DFX5_CONF0,
56 BYT_TRIG_LVL | BYT_TRIG_POS);
57
Simon Glass12d69292016-01-19 21:32:26 -070058 return 0;
Bin Mengfe3fbd32015-07-30 03:49:18 -070059}
Bin Meng8b185042015-10-11 21:37:43 -070060
Simon Glassb4302582015-08-04 12:34:02 -060061#endif
Bin Meng74e56d12015-10-11 21:37:45 -070062
63void reset_cpu(ulong addr)
64{
65 /* cold reset */
66 x86_full_reset();
67}