]> git.ipfire.org Git - thirdparty/u-boot.git/blame - board/freescale/mpc8610hpcd/law.c
SPDX: Convert all of our single license tags to Linux Kernel style
[thirdparty/u-boot.git] / board / freescale / mpc8610hpcd / law.c
CommitLineData
83d290c5 1// SPDX-License-Identifier: GPL-2.0+
031976f6 2/*
b8526212 3 * Copyright 2008,2010 Freescale Semiconductor, Inc.
031976f6
BB
4 *
5 * (C) Copyright 2000
6 * Wolfgang Denk, DENX Software Engineering, wd@denx.de.
031976f6
BB
7 */
8
9#include <common.h>
10#include <asm/fsl_law.h>
11#include <asm/mmu.h>
12
13struct law_entry law_table[] = {
14#if !defined(CONFIG_SPD_EEPROM)
6d0f6bcf 15 SET_LAW(CONFIG_SYS_DDR_SDRAM_BASE, LAW_SIZE_512M, LAW_TRGT_IF_DDR_1),
031976f6 16#endif
859a86a2 17 SET_LAW(PIXIS_BASE, LAW_SIZE_2M, LAW_TRGT_IF_LBC),
6d0f6bcf 18 SET_LAW(CONFIG_SYS_FLASH_BASE, LAW_SIZE_256M, LAW_TRGT_IF_LBC),
031976f6
BB
19};
20
21int num_law_entries = ARRAY_SIZE(law_table);