2016-11-25 13:23:43 +00:00
|
|
|
/*
|
|
|
|
* Copyright (C) 2017 Synopsys, Inc. All rights reserved.
|
|
|
|
*
|
|
|
|
* SPDX-License-Identifier: GPL-2.0+
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <common.h>
|
|
|
|
#include <dwmmc.h>
|
|
|
|
#include <malloc.h>
|
|
|
|
|
|
|
|
DECLARE_GLOBAL_DATA_PTR;
|
|
|
|
|
|
|
|
#define CREG_BASE (ARC_PERIPHERAL_BASE + 0x1000)
|
|
|
|
#define CREG_PAE (CREG_BASE + 0x180)
|
|
|
|
#define CREG_PAE_UPDATE (CREG_BASE + 0x194)
|
|
|
|
#define CREG_CPU_START (CREG_BASE + 0x400)
|
|
|
|
|
|
|
|
int board_early_init_f(void)
|
|
|
|
{
|
|
|
|
/* In current chip PAE support for DMA is broken, disabling it. */
|
|
|
|
writel(0, (void __iomem *) CREG_PAE);
|
|
|
|
|
|
|
|
/* Really apply settings made above */
|
|
|
|
writel(1, (void __iomem *) CREG_PAE_UPDATE);
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2017-10-21 12:35:12 +00:00
|
|
|
#define SDIO_BASE (ARC_PERIPHERAL_BASE + 0xA000)
|
|
|
|
#define SDIO_UHS_REG_EXT (SDIO_BASE + 0x108)
|
|
|
|
#define SDIO_UHS_REG_EXT_DIV_2 (2 << 30)
|
|
|
|
|
2016-11-25 13:23:43 +00:00
|
|
|
int board_mmc_init(bd_t *bis)
|
|
|
|
{
|
|
|
|
struct dwmci_host *host = NULL;
|
|
|
|
|
|
|
|
host = malloc(sizeof(struct dwmci_host));
|
|
|
|
if (!host) {
|
|
|
|
printf("dwmci_host malloc fail!\n");
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
2017-10-21 12:35:12 +00:00
|
|
|
/*
|
|
|
|
* Switch SDIO external ciu clock divider from default div-by-8 to
|
|
|
|
* minimum possible div-by-2.
|
|
|
|
*/
|
|
|
|
writel(SDIO_UHS_REG_EXT_DIV_2, (void __iomem *) SDIO_UHS_REG_EXT);
|
|
|
|
|
2016-11-25 13:23:43 +00:00
|
|
|
memset(host, 0, sizeof(struct dwmci_host));
|
|
|
|
host->name = "Synopsys Mobile storage";
|
|
|
|
host->ioaddr = (void *)ARC_DWMMC_BASE;
|
|
|
|
host->buswidth = 4;
|
|
|
|
host->dev_index = 0;
|
2017-10-21 12:35:12 +00:00
|
|
|
host->bus_hz = 50000000;
|
2016-11-25 13:23:43 +00:00
|
|
|
|
|
|
|
add_dwmci(host, host->bus_hz / 2, 400000);
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
#define RESET_VECTOR_ADDR 0x0
|
|
|
|
|
|
|
|
void smp_set_core_boot_addr(unsigned long addr, int corenr)
|
|
|
|
{
|
|
|
|
/* All cores have reset vector pointing to 0 */
|
|
|
|
writel(addr, (void __iomem *)RESET_VECTOR_ADDR);
|
|
|
|
|
|
|
|
/* Make sure other cores see written value in memory */
|
|
|
|
flush_dcache_all();
|
|
|
|
}
|
|
|
|
|
|
|
|
void smp_kick_all_cpus(void)
|
|
|
|
{
|
|
|
|
#define BITS_START_CORE1 1
|
|
|
|
#define BITS_START_CORE2 2
|
|
|
|
#define BITS_START_CORE3 3
|
|
|
|
|
|
|
|
int cmd = readl((void __iomem *)CREG_CPU_START);
|
|
|
|
|
|
|
|
cmd |= (1 << BITS_START_CORE1) |
|
|
|
|
(1 << BITS_START_CORE2) |
|
|
|
|
(1 << BITS_START_CORE3);
|
|
|
|
writel(cmd, (void __iomem *)CREG_CPU_START);
|
|
|
|
}
|