diff options
author | Tom Rini <trini@konsulko.com> | 2022-10-31 10:40:31 -0400 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2022-10-31 10:40:31 -0400 |
commit | 6f38d91158e7e4199753b79e0a25c1a65175aba4 (patch) | |
tree | 0ef14997a05c73d3d3a4640284d241d3e046ce4a /board/broadcom/bcm968580xref/bcm968580xref.c | |
parent | 218e2c45af83f2cb7b1374b9023b4ced6eb0bb77 (diff) | |
parent | 21545a8cbf9ef3c47a1a8c347ad31e759b00b0c7 (diff) |
Merge branch '2022-10-31-broadcom-updates'
- Update / add a large number of Broadcom BCA SoCs.
Diffstat (limited to 'board/broadcom/bcm968580xref/bcm968580xref.c')
-rw-r--r-- | board/broadcom/bcm968580xref/bcm968580xref.c | 62 |
1 files changed, 0 insertions, 62 deletions
diff --git a/board/broadcom/bcm968580xref/bcm968580xref.c b/board/broadcom/bcm968580xref/bcm968580xref.c deleted file mode 100644 index 1bd723d49ed..00000000000 --- a/board/broadcom/bcm968580xref/bcm968580xref.c +++ /dev/null @@ -1,62 +0,0 @@ -// SPDX-License-Identifier: GPL-2.0+ -/* - * Copyright (C) 2018 Philippe Reynes <philippe.reynes@softathome.com> - */ - -#include <common.h> -#include <fdtdec.h> -#include <init.h> -#include <linux/io.h> - -#ifdef CONFIG_ARM64 -#include <asm/armv8/mmu.h> - -static struct mm_region broadcom_bcm968580xref_mem_map[] = { - { - /* RAM */ - .virt = 0x00000000UL, - .phys = 0x00000000UL, - .size = 8UL * SZ_1G, - .attrs = PTE_BLOCK_MEMTYPE(MT_NORMAL) | - PTE_BLOCK_INNER_SHARE - }, { - /* SoC */ - .virt = 0x80000000UL, - .phys = 0x80000000UL, - .size = 0xff80000000UL, - .attrs = PTE_BLOCK_MEMTYPE(MT_DEVICE_NGNRNE) | - PTE_BLOCK_NON_SHARE | - PTE_BLOCK_PXN | PTE_BLOCK_UXN - }, { - /* List terminator */ - 0, - } -}; - -struct mm_region *mem_map = broadcom_bcm968580xref_mem_map; -#endif - -int board_init(void) -{ - return 0; -} - -int dram_init(void) -{ - if (fdtdec_setup_mem_size_base() != 0) - printf("fdtdec_setup_mem_size_base() has failed\n"); - - return 0; -} - -int dram_init_banksize(void) -{ - fdtdec_setup_memory_banksize(); - - return 0; -} - -int print_cpuinfo(void) -{ - return 0; -} |