2015-01-28 05:13:47 +00:00
|
|
|
/*
|
|
|
|
* Copyright (C) 2014, Bin Meng <bmeng.cn@gmail.com>
|
|
|
|
*
|
|
|
|
* SPDX-License-Identifier: GPL-2.0+
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <common.h>
|
|
|
|
#include <mmc.h>
|
|
|
|
#include <pci_ids.h>
|
2015-07-30 10:49:18 +00:00
|
|
|
#include <asm/irq.h>
|
2015-10-12 04:37:43 +00:00
|
|
|
#include <asm/mrccache.h>
|
2015-01-28 05:13:47 +00:00
|
|
|
#include <asm/post.h>
|
|
|
|
|
|
|
|
static struct pci_device_id mmc_supported[] = {
|
2016-09-26 08:18:07 +00:00
|
|
|
{ PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_BYT_SDIO },
|
|
|
|
{ PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_BYT_SD },
|
|
|
|
{ PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_BYT_EMMC2 },
|
2015-11-29 20:18:08 +00:00
|
|
|
{},
|
2015-01-28 05:13:47 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
int cpu_mmc_init(bd_t *bis)
|
|
|
|
{
|
2015-11-29 20:18:08 +00:00
|
|
|
return pci_mmc_init("ValleyView SDHCI", mmc_supported);
|
2015-01-28 05:13:47 +00:00
|
|
|
}
|
|
|
|
|
2015-08-04 18:34:02 +00:00
|
|
|
#ifndef CONFIG_EFI_APP
|
2015-01-28 05:13:47 +00:00
|
|
|
int arch_cpu_init(void)
|
|
|
|
{
|
|
|
|
post_code(POST_CPU_INIT);
|
|
|
|
|
2016-09-06 13:17:36 +00:00
|
|
|
return x86_cpu_init_f();
|
2015-01-28 05:13:47 +00:00
|
|
|
}
|
2015-07-30 10:49:18 +00:00
|
|
|
|
|
|
|
int arch_misc_init(void)
|
|
|
|
{
|
2015-08-10 13:05:12 +00:00
|
|
|
if (!ll_boot_init())
|
|
|
|
return 0;
|
2015-08-10 13:05:10 +00:00
|
|
|
|
2015-10-12 04:37:43 +00:00
|
|
|
#ifdef CONFIG_ENABLE_MRC_CACHE
|
|
|
|
/*
|
|
|
|
* We intend not to check any return value here, as even MRC cache
|
|
|
|
* is not saved successfully, it is not a severe error that will
|
|
|
|
* prevent system from continuing to boot.
|
|
|
|
*/
|
|
|
|
mrccache_save();
|
|
|
|
#endif
|
|
|
|
|
2016-01-20 04:32:26 +00:00
|
|
|
return 0;
|
2015-07-30 10:49:18 +00:00
|
|
|
}
|
2015-10-12 04:37:43 +00:00
|
|
|
|
2015-08-04 18:34:02 +00:00
|
|
|
#endif
|
2015-10-12 04:37:45 +00:00
|
|
|
|
|
|
|
void reset_cpu(ulong addr)
|
|
|
|
{
|
|
|
|
/* cold reset */
|
|
|
|
x86_full_reset();
|
|
|
|
}
|