Tom Rini | 10e4779 | 2018-05-06 17:58:06 -0400 | [diff] [blame] | 1 | // SPDX-License-Identifier: GPL-2.0+ |
Simon Glass | 4a56f10 | 2015-01-27 22:13:47 -0700 | [diff] [blame] | 2 | /* |
| 3 | * Copyright (C) 2014, Bin Meng <bmeng.cn@gmail.com> |
Simon Glass | 4a56f10 | 2015-01-27 22:13:47 -0700 | [diff] [blame] | 4 | */ |
| 5 | |
| 6 | #include <common.h> |
| 7 | #include <mmc.h> |
| 8 | #include <pci_ids.h> |
Bin Meng | 947391c | 2015-07-30 03:49:18 -0700 | [diff] [blame] | 9 | #include <asm/irq.h> |
Bin Meng | dc59780 | 2015-10-11 21:37:43 -0700 | [diff] [blame] | 10 | #include <asm/mrccache.h> |
Simon Glass | 4a56f10 | 2015-01-27 22:13:47 -0700 | [diff] [blame] | 11 | #include <asm/post.h> |
Bin Meng | b11494c | 2017-10-12 05:07:57 -0700 | [diff] [blame] | 12 | #include <asm/arch/iomap.h> |
| 13 | |
| 14 | /* GPIO SUS */ |
| 15 | #define GPIO_SUS_PAD_BASE (IO_BASE_ADDRESS + IO_BASE_OFFSET_GPSSUS) |
| 16 | #define GPIO_SUS_DFX5_CONF0 0x150 |
| 17 | #define BYT_TRIG_LVL BIT(24) |
| 18 | #define BYT_TRIG_POS BIT(25) |
Simon Glass | 4a56f10 | 2015-01-27 22:13:47 -0700 | [diff] [blame] | 19 | |
Simon Glass | 4a56f10 | 2015-01-27 22:13:47 -0700 | [diff] [blame] | 20 | int arch_cpu_init(void) |
| 21 | { |
Simon Glass | 4a56f10 | 2015-01-27 22:13:47 -0700 | [diff] [blame] | 22 | post_code(POST_CPU_INIT); |
Simon Glass | 4a56f10 | 2015-01-27 22:13:47 -0700 | [diff] [blame] | 23 | |
Masahiro Yamada | 1710321 | 2016-09-06 22:17:36 +0900 | [diff] [blame] | 24 | return x86_cpu_init_f(); |
Simon Glass | 4a56f10 | 2015-01-27 22:13:47 -0700 | [diff] [blame] | 25 | } |
Bin Meng | 947391c | 2015-07-30 03:49:18 -0700 | [diff] [blame] | 26 | |
| 27 | int arch_misc_init(void) |
| 28 | { |
Simon Glass | 5cc82b8 | 2015-08-10 07:05:12 -0600 | [diff] [blame] | 29 | if (!ll_boot_init()) |
| 30 | return 0; |
Simon Glass | 888697a | 2015-08-10 07:05:10 -0600 | [diff] [blame] | 31 | |
Bin Meng | dc59780 | 2015-10-11 21:37:43 -0700 | [diff] [blame] | 32 | #ifdef CONFIG_ENABLE_MRC_CACHE |
| 33 | /* |
| 34 | * We intend not to check any return value here, as even MRC cache |
| 35 | * is not saved successfully, it is not a severe error that will |
| 36 | * prevent system from continuing to boot. |
| 37 | */ |
| 38 | mrccache_save(); |
| 39 | #endif |
| 40 | |
Bin Meng | b11494c | 2017-10-12 05:07:57 -0700 | [diff] [blame] | 41 | /* |
| 42 | * For some unknown reason, FSP (gold4) for BayTrail configures |
| 43 | * the GPIO DFX5 PAD to enable level interrupt (bit 24 and 25). |
| 44 | * This does not cause any issue when Linux kernel runs w/ or w/o |
| 45 | * the pinctrl driver for BayTrail. However this causes unstable |
| 46 | * S3 resume if the pinctrl driver is included in the kernel build. |
| 47 | * As this pin keeps generating interrupts during an S3 resume, |
| 48 | * and there is no IRQ requester in the kernel to handle it, the |
| 49 | * kernel seems to hang and does not continue resuming. |
| 50 | * |
| 51 | * Clear the mysterious interrupt bits for this pin. |
| 52 | */ |
| 53 | clrbits_le32(GPIO_SUS_PAD_BASE + GPIO_SUS_DFX5_CONF0, |
| 54 | BYT_TRIG_LVL | BYT_TRIG_POS); |
| 55 | |
Simon Glass | 754f55e | 2016-01-19 21:32:26 -0700 | [diff] [blame] | 56 | return 0; |
Bin Meng | 947391c | 2015-07-30 03:49:18 -0700 | [diff] [blame] | 57 | } |
Bin Meng | dc59780 | 2015-10-11 21:37:43 -0700 | [diff] [blame] | 58 | |
Bin Meng | 71d7c2f | 2015-10-11 21:37:45 -0700 | [diff] [blame] | 59 | void reset_cpu(ulong addr) |
| 60 | { |
| 61 | /* cold reset */ |
| 62 | x86_full_reset(); |
| 63 | } |