Simon Glass | 4a56f10 | 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 | 947391c | 2015-07-30 03:49:18 -0700 | [diff] [blame] | 10 | #include <asm/irq.h> |
Bin Meng | dc59780 | 2015-10-11 21:37:43 -0700 | [diff] [blame] | 11 | #include <asm/mrccache.h> |
Simon Glass | 4a56f10 | 2015-01-27 22:13:47 -0700 | [diff] [blame] | 12 | #include <asm/post.h> |
| 13 | |
| 14 | static struct pci_device_id mmc_supported[] = { |
Stefan Roese | 555c682 | 2016-09-26 10:18:07 +0200 | [diff] [blame^] | 15 | { PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_BYT_SDIO }, |
| 16 | { PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_BYT_SD }, |
| 17 | { PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_BYT_EMMC2 }, |
Simon Glass | 0b61928 | 2015-11-29 13:18:08 -0700 | [diff] [blame] | 18 | {}, |
Simon Glass | 4a56f10 | 2015-01-27 22:13:47 -0700 | [diff] [blame] | 19 | }; |
| 20 | |
| 21 | int cpu_mmc_init(bd_t *bis) |
| 22 | { |
Simon Glass | 0b61928 | 2015-11-29 13:18:08 -0700 | [diff] [blame] | 23 | return pci_mmc_init("ValleyView SDHCI", mmc_supported); |
Simon Glass | 4a56f10 | 2015-01-27 22:13:47 -0700 | [diff] [blame] | 24 | } |
| 25 | |
Simon Glass | a815df7 | 2015-08-04 12:34:02 -0600 | [diff] [blame] | 26 | #ifndef CONFIG_EFI_APP |
Simon Glass | 4a56f10 | 2015-01-27 22:13:47 -0700 | [diff] [blame] | 27 | int arch_cpu_init(void) |
| 28 | { |
Simon Glass | 4a56f10 | 2015-01-27 22:13:47 -0700 | [diff] [blame] | 29 | post_code(POST_CPU_INIT); |
Simon Glass | 4a56f10 | 2015-01-27 22:13:47 -0700 | [diff] [blame] | 30 | |
Masahiro Yamada | 1710321 | 2016-09-06 22:17:36 +0900 | [diff] [blame] | 31 | return x86_cpu_init_f(); |
Simon Glass | 4a56f10 | 2015-01-27 22:13:47 -0700 | [diff] [blame] | 32 | } |
Bin Meng | 947391c | 2015-07-30 03:49:18 -0700 | [diff] [blame] | 33 | |
| 34 | int arch_misc_init(void) |
| 35 | { |
Simon Glass | 5cc82b8 | 2015-08-10 07:05:12 -0600 | [diff] [blame] | 36 | if (!ll_boot_init()) |
| 37 | return 0; |
Simon Glass | 888697a | 2015-08-10 07:05:10 -0600 | [diff] [blame] | 38 | |
Bin Meng | dc59780 | 2015-10-11 21:37:43 -0700 | [diff] [blame] | 39 | #ifdef CONFIG_ENABLE_MRC_CACHE |
| 40 | /* |
| 41 | * We intend not to check any return value here, as even MRC cache |
| 42 | * is not saved successfully, it is not a severe error that will |
| 43 | * prevent system from continuing to boot. |
| 44 | */ |
| 45 | mrccache_save(); |
| 46 | #endif |
| 47 | |
Simon Glass | 754f55e | 2016-01-19 21:32:26 -0700 | [diff] [blame] | 48 | return 0; |
Bin Meng | 947391c | 2015-07-30 03:49:18 -0700 | [diff] [blame] | 49 | } |
Bin Meng | dc59780 | 2015-10-11 21:37:43 -0700 | [diff] [blame] | 50 | |
Simon Glass | a815df7 | 2015-08-04 12:34:02 -0600 | [diff] [blame] | 51 | #endif |
Bin Meng | 71d7c2f | 2015-10-11 21:37:45 -0700 | [diff] [blame] | 52 | |
| 53 | void reset_cpu(ulong addr) |
| 54 | { |
| 55 | /* cold reset */ |
| 56 | x86_full_reset(); |
| 57 | } |