Simon Glass | 3a1a18f | 2015-01-27 22:13:47 -0700 | [diff] [blame] | 1 | /* |
| 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 Meng | fe3fbd3 | 2015-07-30 03:49:18 -0700 | [diff] [blame] | 10 | #include <asm/irq.h> |
Bin Meng | 8b18504 | 2015-10-11 21:37:43 -0700 | [diff] [blame] | 11 | #include <asm/mrccache.h> |
Simon Glass | 3a1a18f | 2015-01-27 22:13:47 -0700 | [diff] [blame] | 12 | #include <asm/post.h> |
Bin Meng | febdfaa | 2017-10-12 05:07:57 -0700 | [diff] [blame] | 13 | #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 Glass | 3a1a18f | 2015-01-27 22:13:47 -0700 | [diff] [blame] | 20 | |
Simon Glass | b430258 | 2015-08-04 12:34:02 -0600 | [diff] [blame] | 21 | #ifndef CONFIG_EFI_APP |
Simon Glass | 3a1a18f | 2015-01-27 22:13:47 -0700 | [diff] [blame] | 22 | int arch_cpu_init(void) |
| 23 | { |
Simon Glass | 3a1a18f | 2015-01-27 22:13:47 -0700 | [diff] [blame] | 24 | post_code(POST_CPU_INIT); |
Simon Glass | 3a1a18f | 2015-01-27 22:13:47 -0700 | [diff] [blame] | 25 | |
Masahiro Yamada | 0a8547a | 2016-09-06 22:17:36 +0900 | [diff] [blame] | 26 | return x86_cpu_init_f(); |
Simon Glass | 3a1a18f | 2015-01-27 22:13:47 -0700 | [diff] [blame] | 27 | } |
Bin Meng | fe3fbd3 | 2015-07-30 03:49:18 -0700 | [diff] [blame] | 28 | |
| 29 | int arch_misc_init(void) |
| 30 | { |
Simon Glass | c8896ee | 2015-08-10 07:05:12 -0600 | [diff] [blame] | 31 | if (!ll_boot_init()) |
| 32 | return 0; |
Simon Glass | 46f8efe | 2015-08-10 07:05:10 -0600 | [diff] [blame] | 33 | |
Bin Meng | 8b18504 | 2015-10-11 21:37:43 -0700 | [diff] [blame] | 34 | #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 Meng | febdfaa | 2017-10-12 05:07:57 -0700 | [diff] [blame] | 43 | /* |
| 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 Glass | 12d6929 | 2016-01-19 21:32:26 -0700 | [diff] [blame] | 58 | return 0; |
Bin Meng | fe3fbd3 | 2015-07-30 03:49:18 -0700 | [diff] [blame] | 59 | } |
Bin Meng | 8b18504 | 2015-10-11 21:37:43 -0700 | [diff] [blame] | 60 | |
Simon Glass | b430258 | 2015-08-04 12:34:02 -0600 | [diff] [blame] | 61 | #endif |
Bin Meng | 74e56d1 | 2015-10-11 21:37:45 -0700 | [diff] [blame] | 62 | |
| 63 | void reset_cpu(ulong addr) |
| 64 | { |
| 65 | /* cold reset */ |
| 66 | x86_full_reset(); |
| 67 | } |