summaryrefslogtreecommitdiffstats
path: root/board/varisys/cyrus/law.c
diff options
context:
space:
mode:
authorTom Rini <trini@konsulko.com>2021-04-11 14:11:05 -0400
committerTom Rini <trini@konsulko.com>2021-04-11 14:11:05 -0400
commit3b676a1662ac6b54d1e97ea40a0c41ee0925ffe3 (patch)
treed793c47b6ee68f30fb1426d526ac66f15b7cb636 /board/varisys/cyrus/law.c
parentc6a4ee2aaee541c12d290dd25561e771396817cc (diff)
parentd3cfc474b764fc9d8fca6dc1dfe56f42e564f0f5 (diff)
downloadu-boot-3b676a1662ac6b54d1e97ea40a0c41ee0925ffe3.tar.gz
u-boot-3b676a1662ac6b54d1e97ea40a0c41ee0925ffe3.tar.xz
u-boot-3b676a1662ac6b54d1e97ea40a0c41ee0925ffe3.zip
Merge branch '2021-04-11-remove-non-migrated-boards'
- Remove a large number of boards that have not migrated to DM_MMC, for which the migration deadline with 2 years ago at v2019.04.
Diffstat (limited to 'board/varisys/cyrus/law.c')
-rw-r--r--board/varisys/cyrus/law.c26
1 files changed, 0 insertions, 26 deletions
diff --git a/board/varisys/cyrus/law.c b/board/varisys/cyrus/law.c
deleted file mode 100644
index 8b1b118b55..0000000000
--- a/board/varisys/cyrus/law.c
+++ /dev/null
@@ -1,26 +0,0 @@
-// SPDX-License-Identifier: GPL-2.0+
-/*
- * Author: Adrian Cox
- * Based on corenet_ds law files.
- */
-
-#include <common.h>
-#include <asm/fsl_law.h>
-#include <asm/mmu.h>
-
-struct law_entry law_table[] = {
- SET_LAW(CONFIG_SYS_LBC0_BASE_PHYS, LAW_SIZE_64K, LAW_TRGT_IF_LBC),
- SET_LAW(CONFIG_SYS_LBC1_BASE_PHYS, LAW_SIZE_4K, LAW_TRGT_IF_LBC),
-#ifdef CONFIG_SYS_BMAN_MEM_PHYS
- SET_LAW(CONFIG_SYS_BMAN_MEM_PHYS, LAW_SIZE_2M, LAW_TRGT_IF_BMAN),
-#endif
-#ifdef CONFIG_SYS_QMAN_MEM_PHYS
- SET_LAW(CONFIG_SYS_QMAN_MEM_PHYS, LAW_SIZE_2M, LAW_TRGT_IF_QMAN),
-#endif
-#ifdef CONFIG_SYS_DCSRBAR_PHYS
- /* Limit DCSR to 32M to access NPC Trace Buffer */
- SET_LAW(CONFIG_SYS_DCSRBAR_PHYS, LAW_SIZE_32M, LAW_TRGT_IF_DCSR),
-#endif
-};
-
-int num_law_entries = ARRAY_SIZE(law_table);