SPDX: Convert all of our single license tags to Linux Kernel style
[platform/kernel/u-boot.git] / board / freescale / bsc9132qds / law.c
1 // SPDX-License-Identifier: GPL-2.0+
2 /*
3  * Copyright 2013 Freescale Semiconductor, Inc.
4  */
5
6 #include <common.h>
7 #include <asm/fsl_law.h>
8 #include <asm/mmu.h>
9
10 struct law_entry law_table[] = {
11         SET_LAW(CONFIG_SYS_FLASH_BASE_PHYS, LAW_SIZE_128M, LAW_TRGT_IF_IFC),
12 #ifdef CONFIG_SYS_NAND_BASE_PHYS
13         SET_LAW(CONFIG_SYS_NAND_BASE_PHYS, LAW_SIZE_1M, LAW_TRGT_IF_IFC),
14 #endif
15 #ifdef CONFIG_SYS_FPGA_BASE_PHYS
16         SET_LAW(CONFIG_SYS_FPGA_BASE_PHYS, LAW_SIZE_128K, LAW_TRGT_IF_IFC),
17 #endif
18         SET_LAW(CONFIG_SYS_FSL_DSP_CCSRBAR_PHYS, LAW_SIZE_1M,
19                 LAW_TRGT_IF_DSP_CCSR),
20         SET_LAW(CONFIG_SYS_FSL_DSP_M2_RAM_ADDR, LAW_SIZE_32M,
21                 LAW_TRGT_IF_OCN_DSP),
22         SET_LAW(CONFIG_SYS_FSL_DSP_M3_RAM_ADDR, LAW_SIZE_32K,
23                 LAW_TRGT_IF_CLASS_DSP),
24         SET_LAW(CONFIG_SYS_FSL_DSP_DDR_ADDR, LAW_SIZE_1G,
25                 LAW_TRGT_IF_CLASS_DSP)
26 };
27
28 int num_law_entries = ARRAY_SIZE(law_table);