2018-05-06 21:58:06 +00:00
|
|
|
// SPDX-License-Identifier: GPL-2.0
|
2012-09-01 16:27:56 +00:00
|
|
|
/*
|
|
|
|
* (C) Copyright 2012 Stephen Warren
|
|
|
|
*
|
|
|
|
* See file CREDITS for list of people who contributed to this
|
|
|
|
* project.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <common.h>
|
2019-11-14 19:57:37 +00:00
|
|
|
#include <cpu_func.h>
|
2020-05-10 17:40:02 +00:00
|
|
|
#include <init.h>
|
2019-11-19 15:01:04 +00:00
|
|
|
#include <dm/device.h>
|
|
|
|
#include <fdt_support.h>
|
2020-10-31 03:38:53 +00:00
|
|
|
#include <asm/global_data.h>
|
2012-09-01 16:27:56 +00:00
|
|
|
|
2020-05-25 11:39:55 +00:00
|
|
|
#define BCM2711_RPI4_PCIE_XHCI_MMIO_PHYS 0x600000000UL
|
2021-06-17 09:22:03 +00:00
|
|
|
#define BCM2711_RPI4_PCIE_XHCI_MMIO_SIZE 0x400000UL
|
2020-05-25 11:39:55 +00:00
|
|
|
|
2019-11-19 15:01:05 +00:00
|
|
|
#ifdef CONFIG_ARM64
|
|
|
|
#include <asm/armv8/mmu.h>
|
|
|
|
|
2020-05-25 11:39:55 +00:00
|
|
|
#define MEM_MAP_MAX_ENTRIES (4)
|
|
|
|
|
|
|
|
static struct mm_region bcm283x_mem_map[MEM_MAP_MAX_ENTRIES] = {
|
2019-11-19 15:01:05 +00:00
|
|
|
{
|
|
|
|
.virt = 0x00000000UL,
|
|
|
|
.phys = 0x00000000UL,
|
|
|
|
.size = 0x3f000000UL,
|
|
|
|
.attrs = PTE_BLOCK_MEMTYPE(MT_NORMAL) |
|
|
|
|
PTE_BLOCK_INNER_SHARE
|
|
|
|
}, {
|
|
|
|
.virt = 0x3f000000UL,
|
|
|
|
.phys = 0x3f000000UL,
|
|
|
|
.size = 0x01000000UL,
|
|
|
|
.attrs = PTE_BLOCK_MEMTYPE(MT_DEVICE_NGNRNE) |
|
|
|
|
PTE_BLOCK_NON_SHARE |
|
|
|
|
PTE_BLOCK_PXN | PTE_BLOCK_UXN
|
|
|
|
}, {
|
|
|
|
/* List terminator */
|
|
|
|
0,
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2020-05-25 11:39:55 +00:00
|
|
|
static struct mm_region bcm2711_mem_map[MEM_MAP_MAX_ENTRIES] = {
|
2019-11-19 15:01:05 +00:00
|
|
|
{
|
|
|
|
.virt = 0x00000000UL,
|
|
|
|
.phys = 0x00000000UL,
|
2020-05-25 11:39:54 +00:00
|
|
|
.size = 0xfc000000UL,
|
2019-11-19 15:01:05 +00:00
|
|
|
.attrs = PTE_BLOCK_MEMTYPE(MT_NORMAL) |
|
|
|
|
PTE_BLOCK_INNER_SHARE
|
|
|
|
}, {
|
2020-01-27 01:14:43 +00:00
|
|
|
.virt = 0xfc000000UL,
|
|
|
|
.phys = 0xfc000000UL,
|
|
|
|
.size = 0x03800000UL,
|
2019-11-19 15:01:05 +00:00
|
|
|
.attrs = PTE_BLOCK_MEMTYPE(MT_DEVICE_NGNRNE) |
|
|
|
|
PTE_BLOCK_NON_SHARE |
|
|
|
|
PTE_BLOCK_PXN | PTE_BLOCK_UXN
|
2020-05-25 11:39:55 +00:00
|
|
|
}, {
|
|
|
|
.virt = BCM2711_RPI4_PCIE_XHCI_MMIO_PHYS,
|
|
|
|
.phys = BCM2711_RPI4_PCIE_XHCI_MMIO_PHYS,
|
|
|
|
.size = BCM2711_RPI4_PCIE_XHCI_MMIO_SIZE,
|
|
|
|
.attrs = PTE_BLOCK_MEMTYPE(MT_DEVICE_NGNRNE) |
|
|
|
|
PTE_BLOCK_NON_SHARE |
|
|
|
|
PTE_BLOCK_PXN | PTE_BLOCK_UXN
|
2019-11-19 15:01:05 +00:00
|
|
|
}, {
|
|
|
|
/* List terminator */
|
|
|
|
0,
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
struct mm_region *mem_map = bcm283x_mem_map;
|
|
|
|
|
|
|
|
/*
|
|
|
|
* I/O address space varies on different chip versions.
|
|
|
|
* We set the base address by inspecting the DTB.
|
|
|
|
*/
|
|
|
|
static const struct udevice_id board_ids[] = {
|
|
|
|
{ .compatible = "brcm,bcm2837", .data = (ulong)&bcm283x_mem_map},
|
|
|
|
{ .compatible = "brcm,bcm2838", .data = (ulong)&bcm2711_mem_map},
|
|
|
|
{ .compatible = "brcm,bcm2711", .data = (ulong)&bcm2711_mem_map},
|
|
|
|
{ },
|
|
|
|
};
|
|
|
|
|
|
|
|
static void _rpi_update_mem_map(struct mm_region *pd)
|
|
|
|
{
|
|
|
|
int i;
|
|
|
|
|
2020-05-25 11:39:55 +00:00
|
|
|
for (i = 0; i < MEM_MAP_MAX_ENTRIES; i++) {
|
2019-11-19 15:01:05 +00:00
|
|
|
mem_map[i].virt = pd[i].virt;
|
|
|
|
mem_map[i].phys = pd[i].phys;
|
|
|
|
mem_map[i].size = pd[i].size;
|
|
|
|
mem_map[i].attrs = pd[i].attrs;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static void rpi_update_mem_map(void)
|
|
|
|
{
|
|
|
|
int ret;
|
|
|
|
struct mm_region *mm;
|
|
|
|
const struct udevice_id *of_match = board_ids;
|
|
|
|
|
|
|
|
while (of_match->compatible) {
|
|
|
|
ret = fdt_node_check_compatible(gd->fdt_blob, 0,
|
|
|
|
of_match->compatible);
|
|
|
|
if (!ret) {
|
|
|
|
mm = (struct mm_region *)of_match->data;
|
|
|
|
_rpi_update_mem_map(mm);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
of_match++;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
#else
|
|
|
|
static void rpi_update_mem_map(void) {}
|
|
|
|
#endif
|
|
|
|
|
2019-11-19 15:01:04 +00:00
|
|
|
unsigned long rpi_bcm283x_base = 0x3f000000;
|
2019-11-19 15:01:03 +00:00
|
|
|
|
2012-09-01 16:27:56 +00:00
|
|
|
int arch_cpu_init(void)
|
|
|
|
{
|
|
|
|
icache_enable();
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
2016-03-16 14:41:23 +00:00
|
|
|
|
2019-11-19 15:01:03 +00:00
|
|
|
int mach_cpu_init(void)
|
|
|
|
{
|
2019-11-19 15:01:04 +00:00
|
|
|
int ret, soc_offset;
|
|
|
|
u64 io_base, size;
|
|
|
|
|
2019-11-19 15:01:05 +00:00
|
|
|
rpi_update_mem_map();
|
|
|
|
|
2019-11-19 15:01:04 +00:00
|
|
|
/* Get IO base from device tree */
|
|
|
|
soc_offset = fdt_path_offset(gd->fdt_blob, "/soc");
|
|
|
|
if (soc_offset < 0)
|
|
|
|
return soc_offset;
|
|
|
|
|
|
|
|
ret = fdt_read_range((void *)gd->fdt_blob, soc_offset, 0, NULL,
|
|
|
|
&io_base, &size);
|
|
|
|
if (ret)
|
|
|
|
return ret;
|
|
|
|
|
|
|
|
rpi_bcm283x_base = io_base;
|
2019-11-19 15:01:03 +00:00
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
2019-11-19 15:01:04 +00:00
|
|
|
|
2016-03-16 14:41:23 +00:00
|
|
|
#ifdef CONFIG_ARMV7_LPAE
|
2020-06-03 12:43:44 +00:00
|
|
|
#ifdef CONFIG_TARGET_RPI_4_32B
|
2021-06-17 09:22:03 +00:00
|
|
|
#define BCM2711_RPI4_PCIE_XHCI_MMIO_VIRT 0xffc00000UL
|
2020-06-03 12:43:44 +00:00
|
|
|
#include <addr_map.h>
|
|
|
|
#include <asm/system.h>
|
|
|
|
|
|
|
|
void init_addr_map(void)
|
|
|
|
{
|
|
|
|
mmu_set_region_dcache_behaviour_phys(BCM2711_RPI4_PCIE_XHCI_MMIO_VIRT,
|
|
|
|
BCM2711_RPI4_PCIE_XHCI_MMIO_PHYS,
|
|
|
|
BCM2711_RPI4_PCIE_XHCI_MMIO_SIZE,
|
|
|
|
DCACHE_OFF);
|
|
|
|
|
|
|
|
/* identity mapping for 0..BCM2711_RPI4_PCIE_XHCI_MMIO_VIRT */
|
|
|
|
addrmap_set_entry(0, 0, BCM2711_RPI4_PCIE_XHCI_MMIO_VIRT, 0);
|
|
|
|
/* XHCI MMIO on PCIe at BCM2711_RPI4_PCIE_XHCI_MMIO_VIRT */
|
|
|
|
addrmap_set_entry(BCM2711_RPI4_PCIE_XHCI_MMIO_VIRT,
|
|
|
|
BCM2711_RPI4_PCIE_XHCI_MMIO_PHYS,
|
|
|
|
BCM2711_RPI4_PCIE_XHCI_MMIO_SIZE, 1);
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2016-03-16 14:41:23 +00:00
|
|
|
void enable_caches(void)
|
|
|
|
{
|
|
|
|
dcache_enable();
|
|
|
|
}
|
|
|
|
#endif
|