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> |
| 13 | |
| 14 | static struct pci_device_id mmc_supported[] = { |
| 15 | { PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_VALLEYVIEW_SDIO }, |
| 16 | { PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_VALLEYVIEW_SDCARD }, |
Simon Glass | 4abe8e4 | 2015-11-29 13:18:08 -0700 | [diff] [blame] | 17 | {}, |
Simon Glass | 3a1a18f | 2015-01-27 22:13:47 -0700 | [diff] [blame] | 18 | }; |
| 19 | |
| 20 | int cpu_mmc_init(bd_t *bis) |
| 21 | { |
Simon Glass | 4abe8e4 | 2015-11-29 13:18:08 -0700 | [diff] [blame] | 22 | return pci_mmc_init("ValleyView SDHCI", mmc_supported); |
Simon Glass | 3a1a18f | 2015-01-27 22:13:47 -0700 | [diff] [blame] | 23 | } |
| 24 | |
Simon Glass | b430258 | 2015-08-04 12:34:02 -0600 | [diff] [blame] | 25 | #ifndef CONFIG_EFI_APP |
Simon Glass | 3a1a18f | 2015-01-27 22:13:47 -0700 | [diff] [blame] | 26 | int arch_cpu_init(void) |
| 27 | { |
| 28 | int ret; |
| 29 | |
| 30 | post_code(POST_CPU_INIT); |
Simon Glass | 3a1a18f | 2015-01-27 22:13:47 -0700 | [diff] [blame] | 31 | |
| 32 | ret = x86_cpu_init_f(); |
| 33 | if (ret) |
| 34 | return ret; |
| 35 | |
| 36 | return 0; |
| 37 | } |
Bin Meng | fe3fbd3 | 2015-07-30 03:49:18 -0700 | [diff] [blame] | 38 | |
| 39 | int arch_misc_init(void) |
| 40 | { |
Simon Glass | c8896ee | 2015-08-10 07:05:12 -0600 | [diff] [blame] | 41 | if (!ll_boot_init()) |
| 42 | return 0; |
Simon Glass | 46f8efe | 2015-08-10 07:05:10 -0600 | [diff] [blame] | 43 | |
Bin Meng | 8b18504 | 2015-10-11 21:37:43 -0700 | [diff] [blame] | 44 | #ifdef CONFIG_ENABLE_MRC_CACHE |
| 45 | /* |
| 46 | * We intend not to check any return value here, as even MRC cache |
| 47 | * is not saved successfully, it is not a severe error that will |
| 48 | * prevent system from continuing to boot. |
| 49 | */ |
| 50 | mrccache_save(); |
| 51 | #endif |
| 52 | |
Simon Glass | 12d6929 | 2016-01-19 21:32:26 -0700 | [diff] [blame] | 53 | return 0; |
Bin Meng | fe3fbd3 | 2015-07-30 03:49:18 -0700 | [diff] [blame] | 54 | } |
Bin Meng | 8b18504 | 2015-10-11 21:37:43 -0700 | [diff] [blame] | 55 | |
Simon Glass | b430258 | 2015-08-04 12:34:02 -0600 | [diff] [blame] | 56 | #endif |
Bin Meng | 74e56d1 | 2015-10-11 21:37:45 -0700 | [diff] [blame] | 57 | |
| 58 | void reset_cpu(ulong addr) |
| 59 | { |
| 60 | /* cold reset */ |
| 61 | x86_full_reset(); |
| 62 | } |