2015-02-02 14:35:27 +00:00
|
|
|
/*
|
|
|
|
* Copyright (C) 2015, Bin Meng <bmeng.cn@gmail.com>
|
|
|
|
*
|
|
|
|
* SPDX-License-Identifier: GPL-2.0+
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <common.h>
|
2015-02-04 08:26:13 +00:00
|
|
|
#include <mmc.h>
|
2015-03-11 03:25:56 +00:00
|
|
|
#include <netdev.h>
|
|
|
|
#include <phy.h>
|
2015-02-02 14:35:27 +00:00
|
|
|
#include <asm/io.h>
|
2015-05-25 14:35:06 +00:00
|
|
|
#include <asm/irq.h>
|
2015-02-02 14:35:27 +00:00
|
|
|
#include <asm/pci.h>
|
|
|
|
#include <asm/post.h>
|
|
|
|
#include <asm/processor.h>
|
2015-02-04 08:26:09 +00:00
|
|
|
#include <asm/arch/device.h>
|
|
|
|
#include <asm/arch/msg_port.h>
|
|
|
|
#include <asm/arch/quark.h>
|
|
|
|
|
2015-02-04 08:26:13 +00:00
|
|
|
static struct pci_device_id mmc_supported[] = {
|
|
|
|
{ PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_QRK_SDIO },
|
|
|
|
};
|
|
|
|
|
2015-02-04 08:26:12 +00:00
|
|
|
/*
|
|
|
|
* TODO:
|
|
|
|
*
|
|
|
|
* This whole routine should be removed until we fully convert the ICH SPI
|
|
|
|
* driver to DM and make use of DT to pass the bios control register offset
|
|
|
|
*/
|
|
|
|
static void unprotect_spi_flash(void)
|
|
|
|
{
|
|
|
|
u32 bc;
|
|
|
|
|
2015-09-03 12:37:24 +00:00
|
|
|
qrk_pci_read_config_dword(QUARK_LEGACY_BRIDGE, 0xd8, &bc);
|
2015-02-04 08:26:12 +00:00
|
|
|
bc |= 0x1; /* unprotect the flash */
|
2015-09-03 12:37:24 +00:00
|
|
|
qrk_pci_write_config_dword(QUARK_LEGACY_BRIDGE, 0xd8, bc);
|
2015-02-04 08:26:12 +00:00
|
|
|
}
|
|
|
|
|
2015-02-04 08:26:09 +00:00
|
|
|
static void quark_setup_bars(void)
|
|
|
|
{
|
|
|
|
/* GPIO - D31:F0:R44h */
|
2015-09-03 12:37:24 +00:00
|
|
|
qrk_pci_write_config_dword(QUARK_LEGACY_BRIDGE, LB_GBA,
|
|
|
|
CONFIG_GPIO_BASE | IO_BAR_EN);
|
2015-02-04 08:26:09 +00:00
|
|
|
|
|
|
|
/* ACPI PM1 Block - D31:F0:R48h */
|
2015-09-03 12:37:24 +00:00
|
|
|
qrk_pci_write_config_dword(QUARK_LEGACY_BRIDGE, LB_PM1BLK,
|
|
|
|
CONFIG_ACPI_PM1_BASE | IO_BAR_EN);
|
2015-02-04 08:26:09 +00:00
|
|
|
|
|
|
|
/* GPE0 - D31:F0:R4Ch */
|
2015-09-03 12:37:24 +00:00
|
|
|
qrk_pci_write_config_dword(QUARK_LEGACY_BRIDGE, LB_GPE0BLK,
|
|
|
|
CONFIG_ACPI_GPE0_BASE | IO_BAR_EN);
|
2015-02-04 08:26:09 +00:00
|
|
|
|
|
|
|
/* WDT - D31:F0:R84h */
|
2015-09-03 12:37:24 +00:00
|
|
|
qrk_pci_write_config_dword(QUARK_LEGACY_BRIDGE, LB_WDTBA,
|
|
|
|
CONFIG_WDT_BASE | IO_BAR_EN);
|
2015-02-04 08:26:09 +00:00
|
|
|
|
|
|
|
/* RCBA - D31:F0:RF0h */
|
2015-09-03 12:37:24 +00:00
|
|
|
qrk_pci_write_config_dword(QUARK_LEGACY_BRIDGE, LB_RCBA,
|
|
|
|
CONFIG_RCBA_BASE | MEM_BAR_EN);
|
2015-02-04 08:26:09 +00:00
|
|
|
|
|
|
|
/* ACPI P Block - Msg Port 04:R70h */
|
|
|
|
msg_port_write(MSG_PORT_RMU, PBLK_BA,
|
|
|
|
CONFIG_ACPI_PBLK_BASE | IO_BAR_EN);
|
|
|
|
|
|
|
|
/* SPI DMA - Msg Port 04:R7Ah */
|
|
|
|
msg_port_write(MSG_PORT_RMU, SPI_DMA_BA,
|
|
|
|
CONFIG_SPI_DMA_BASE | IO_BAR_EN);
|
|
|
|
|
|
|
|
/* PCIe ECAM */
|
|
|
|
msg_port_write(MSG_PORT_MEM_ARBITER, AEC_CTRL,
|
|
|
|
CONFIG_PCIE_ECAM_BASE | MEM_BAR_EN);
|
|
|
|
msg_port_write(MSG_PORT_HOST_BRIDGE, HEC_REG,
|
|
|
|
CONFIG_PCIE_ECAM_BASE | MEM_BAR_EN);
|
|
|
|
}
|
2015-02-02 14:35:27 +00:00
|
|
|
|
2015-09-03 12:37:25 +00:00
|
|
|
static void quark_pcie_early_init(void)
|
|
|
|
{
|
|
|
|
u32 pcie_cfg;
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Step1: Assert PCIe signal PERST#
|
|
|
|
*
|
|
|
|
* The CPU interface to the PERST# signal is platform dependent.
|
|
|
|
* Call the board-specific codes to perform this task.
|
|
|
|
*/
|
|
|
|
board_assert_perst();
|
|
|
|
|
|
|
|
/* Step2: PHY common lane reset */
|
|
|
|
pcie_cfg = msg_port_alt_read(MSG_PORT_SOC_UNIT, PCIE_CFG);
|
|
|
|
pcie_cfg |= PCIE_PHY_LANE_RST;
|
|
|
|
msg_port_alt_write(MSG_PORT_SOC_UNIT, PCIE_CFG, pcie_cfg);
|
|
|
|
/* wait 1 ms for PHY common lane reset */
|
|
|
|
mdelay(1);
|
|
|
|
|
|
|
|
/* Step3: PHY sideband interface reset and controller main reset */
|
|
|
|
pcie_cfg = msg_port_alt_read(MSG_PORT_SOC_UNIT, PCIE_CFG);
|
|
|
|
pcie_cfg |= (PCIE_PHY_SB_RST | PCIE_CTLR_MAIN_RST);
|
|
|
|
msg_port_alt_write(MSG_PORT_SOC_UNIT, PCIE_CFG, pcie_cfg);
|
|
|
|
/* wait 80ms for PLL to lock */
|
|
|
|
mdelay(80);
|
|
|
|
|
|
|
|
/* Step4: Controller sideband interface reset */
|
|
|
|
pcie_cfg = msg_port_alt_read(MSG_PORT_SOC_UNIT, PCIE_CFG);
|
|
|
|
pcie_cfg |= PCIE_CTLR_SB_RST;
|
|
|
|
msg_port_alt_write(MSG_PORT_SOC_UNIT, PCIE_CFG, pcie_cfg);
|
|
|
|
/* wait 20ms for controller sideband interface reset */
|
|
|
|
mdelay(20);
|
|
|
|
|
|
|
|
/* Step5: De-assert PERST# */
|
|
|
|
board_deassert_perst();
|
|
|
|
|
|
|
|
/* Step6: Controller primary interface reset */
|
|
|
|
pcie_cfg = msg_port_alt_read(MSG_PORT_SOC_UNIT, PCIE_CFG);
|
|
|
|
pcie_cfg |= PCIE_CTLR_PRI_RST;
|
|
|
|
msg_port_alt_write(MSG_PORT_SOC_UNIT, PCIE_CFG, pcie_cfg);
|
|
|
|
|
|
|
|
/* Mixer Load Lane 0 */
|
|
|
|
pcie_cfg = msg_port_io_read(MSG_PORT_PCIE_AFE, PCIE_RXPICTRL0_L0);
|
|
|
|
pcie_cfg &= ~((1 << 6) | (1 << 7));
|
|
|
|
msg_port_io_write(MSG_PORT_PCIE_AFE, PCIE_RXPICTRL0_L0, pcie_cfg);
|
|
|
|
|
|
|
|
/* Mixer Load Lane 1 */
|
|
|
|
pcie_cfg = msg_port_io_read(MSG_PORT_PCIE_AFE, PCIE_RXPICTRL0_L1);
|
|
|
|
pcie_cfg &= ~((1 << 6) | (1 << 7));
|
|
|
|
msg_port_io_write(MSG_PORT_PCIE_AFE, PCIE_RXPICTRL0_L1, pcie_cfg);
|
|
|
|
}
|
|
|
|
|
2015-04-27 06:16:02 +00:00
|
|
|
static void quark_enable_legacy_seg(void)
|
|
|
|
{
|
|
|
|
u32 hmisc2;
|
|
|
|
|
|
|
|
hmisc2 = msg_port_read(MSG_PORT_HOST_BRIDGE, HMISC2);
|
|
|
|
hmisc2 |= (HMISC2_SEGE | HMISC2_SEGF | HMISC2_SEGAB);
|
|
|
|
msg_port_write(MSG_PORT_HOST_BRIDGE, HMISC2, hmisc2);
|
|
|
|
}
|
|
|
|
|
2015-02-02 14:35:27 +00:00
|
|
|
int arch_cpu_init(void)
|
|
|
|
{
|
|
|
|
struct pci_controller *hose;
|
|
|
|
int ret;
|
|
|
|
|
|
|
|
post_code(POST_CPU_INIT);
|
|
|
|
#ifdef CONFIG_SYS_X86_TSC_TIMER
|
|
|
|
timer_set_base(rdtsc());
|
|
|
|
#endif
|
|
|
|
|
|
|
|
ret = x86_cpu_init_f();
|
|
|
|
if (ret)
|
|
|
|
return ret;
|
|
|
|
|
|
|
|
ret = pci_early_init_hose(&hose);
|
|
|
|
if (ret)
|
|
|
|
return ret;
|
|
|
|
|
2015-02-04 08:26:09 +00:00
|
|
|
/*
|
|
|
|
* Quark SoC has some non-standard BARs (excluding PCI standard BARs)
|
|
|
|
* which need be initialized with suggested values
|
|
|
|
*/
|
|
|
|
quark_setup_bars();
|
|
|
|
|
2015-09-03 12:37:25 +00:00
|
|
|
/*
|
|
|
|
* Initialize PCIe controller
|
|
|
|
*
|
|
|
|
* Quark SoC holds the PCIe controller in reset following a power on.
|
|
|
|
* U-Boot needs to release the PCIe controller from reset. The PCIe
|
|
|
|
* controller (D23:F0/F1) will not be visible in PCI configuration
|
|
|
|
* space and any access to its PCI configuration registers will cause
|
|
|
|
* system hang while it is held in reset.
|
|
|
|
*/
|
|
|
|
quark_pcie_early_init();
|
|
|
|
|
2015-04-27 06:16:02 +00:00
|
|
|
/* Turn on legacy segments (A/B/E/F) decode to system RAM */
|
|
|
|
quark_enable_legacy_seg();
|
|
|
|
|
2015-02-04 08:26:12 +00:00
|
|
|
unprotect_spi_flash();
|
|
|
|
|
2015-02-02 14:35:27 +00:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
int print_cpuinfo(void)
|
|
|
|
{
|
|
|
|
post_code(POST_CPU_INFO);
|
|
|
|
return default_print_cpuinfo();
|
|
|
|
}
|
|
|
|
|
|
|
|
void reset_cpu(ulong addr)
|
|
|
|
{
|
|
|
|
/* cold reset */
|
2015-04-29 02:11:31 +00:00
|
|
|
x86_full_reset();
|
2015-02-02 14:35:27 +00:00
|
|
|
}
|
2015-02-04 08:26:13 +00:00
|
|
|
|
|
|
|
int cpu_mmc_init(bd_t *bis)
|
|
|
|
{
|
|
|
|
return pci_mmc_init("Quark SDHCI", mmc_supported,
|
|
|
|
ARRAY_SIZE(mmc_supported));
|
|
|
|
}
|
2015-03-11 03:25:56 +00:00
|
|
|
|
|
|
|
int cpu_eth_init(bd_t *bis)
|
|
|
|
{
|
|
|
|
u32 base;
|
|
|
|
int ret0, ret1;
|
|
|
|
|
2015-09-03 12:37:24 +00:00
|
|
|
qrk_pci_read_config_dword(QUARK_EMAC0, PCI_BASE_ADDRESS_0, &base);
|
2015-03-11 03:25:56 +00:00
|
|
|
ret0 = designware_initialize(base, PHY_INTERFACE_MODE_RMII);
|
|
|
|
|
2015-09-03 12:37:24 +00:00
|
|
|
qrk_pci_read_config_dword(QUARK_EMAC1, PCI_BASE_ADDRESS_0, &base);
|
2015-03-11 03:25:56 +00:00
|
|
|
ret1 = designware_initialize(base, PHY_INTERFACE_MODE_RMII);
|
|
|
|
|
|
|
|
if (ret0 < 0 && ret1 < 0)
|
|
|
|
return -1;
|
|
|
|
else
|
|
|
|
return 0;
|
|
|
|
}
|
2015-05-25 14:35:06 +00:00
|
|
|
|
|
|
|
void cpu_irq_init(void)
|
|
|
|
{
|
|
|
|
struct quark_rcba *rcba;
|
|
|
|
u32 base;
|
|
|
|
|
2015-09-03 12:37:24 +00:00
|
|
|
qrk_pci_read_config_dword(QUARK_LEGACY_BRIDGE, LB_RCBA, &base);
|
2015-05-25 14:35:06 +00:00
|
|
|
base &= ~MEM_BAR_EN;
|
|
|
|
rcba = (struct quark_rcba *)base;
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Route Quark PCI device interrupt pin to PIRQ
|
|
|
|
*
|
|
|
|
* Route device#23's INTA/B/C/D to PIRQA/B/C/D
|
|
|
|
* Route device#20,21's INTA/B/C/D to PIRQE/F/G/H
|
|
|
|
*/
|
|
|
|
writew(PIRQC, &rcba->rmu_ir);
|
|
|
|
writew(PIRQA | (PIRQB << 4) | (PIRQC << 8) | (PIRQD << 12),
|
|
|
|
&rcba->d23_ir);
|
|
|
|
writew(PIRQD, &rcba->core_ir);
|
|
|
|
writew(PIRQE | (PIRQF << 4) | (PIRQG << 8) | (PIRQH << 12),
|
|
|
|
&rcba->d20d21_ir);
|
|
|
|
}
|
|
|
|
|
|
|
|
int arch_misc_init(void)
|
|
|
|
{
|
2015-08-10 13:05:08 +00:00
|
|
|
return pirq_init();
|
2015-05-25 14:35:06 +00:00
|
|
|
}
|