blob: b312d9f9fbea908e3215d8f80938b8aed0766be4 [file] [log] [blame]
Simon Glass4a56f102015-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 Meng947391c2015-07-30 03:49:18 -070010#include <asm/irq.h>
Bin Mengdc597802015-10-11 21:37:43 -070011#include <asm/mrccache.h>
Simon Glass4a56f102015-01-27 22:13:47 -070012#include <asm/post.h>
13
14static 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 Glass0b619282015-11-29 13:18:08 -070017 {},
Simon Glass4a56f102015-01-27 22:13:47 -070018};
19
20int cpu_mmc_init(bd_t *bis)
21{
Simon Glass0b619282015-11-29 13:18:08 -070022 return pci_mmc_init("ValleyView SDHCI", mmc_supported);
Simon Glass4a56f102015-01-27 22:13:47 -070023}
24
Simon Glassa815df72015-08-04 12:34:02 -060025#ifndef CONFIG_EFI_APP
Simon Glass4a56f102015-01-27 22:13:47 -070026int arch_cpu_init(void)
27{
Simon Glass4a56f102015-01-27 22:13:47 -070028 post_code(POST_CPU_INIT);
Simon Glass4a56f102015-01-27 22:13:47 -070029
Masahiro Yamada17103212016-09-06 22:17:36 +090030 return x86_cpu_init_f();
Simon Glass4a56f102015-01-27 22:13:47 -070031}
Bin Meng947391c2015-07-30 03:49:18 -070032
33int arch_misc_init(void)
34{
Simon Glass5cc82b82015-08-10 07:05:12 -060035 if (!ll_boot_init())
36 return 0;
Simon Glass888697a2015-08-10 07:05:10 -060037
Bin Mengdc597802015-10-11 21:37:43 -070038#ifdef CONFIG_ENABLE_MRC_CACHE
39 /*
40 * We intend not to check any return value here, as even MRC cache
41 * is not saved successfully, it is not a severe error that will
42 * prevent system from continuing to boot.
43 */
44 mrccache_save();
45#endif
46
Simon Glass754f55e2016-01-19 21:32:26 -070047 return 0;
Bin Meng947391c2015-07-30 03:49:18 -070048}
Bin Mengdc597802015-10-11 21:37:43 -070049
Simon Glassa815df72015-08-04 12:34:02 -060050#endif
Bin Meng71d7c2f2015-10-11 21:37:45 -070051
52void reset_cpu(ulong addr)
53{
54 /* cold reset */
55 x86_full_reset();
56}