2018-05-06 21:58:06 +00:00
|
|
|
// SPDX-License-Identifier: GPL-2.0+
|
2008-01-23 22:31:02 +00:00
|
|
|
/*
|
2010-12-17 16:42:33 +00:00
|
|
|
* Copyright 2008,2010 Freescale Semiconductor, Inc.
|
2008-01-23 22:31:02 +00:00
|
|
|
*
|
|
|
|
* (C) Copyright 2000
|
|
|
|
* Wolfgang Denk, DENX Software Engineering, wd@denx.de.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <common.h>
|
|
|
|
#include <asm/fsl_law.h>
|
|
|
|
#include <asm/mmu.h>
|
|
|
|
|
|
|
|
struct law_entry law_table[] = {
|
|
|
|
#if !defined(CONFIG_SPD_EEPROM)
|
2008-10-16 13:01:15 +00:00
|
|
|
SET_LAW(CONFIG_SYS_DDR_SDRAM_BASE, LAW_SIZE_512M, LAW_TRGT_IF_DDR_1),
|
2008-01-23 22:31:02 +00:00
|
|
|
#endif
|
2008-06-11 05:51:45 +00:00
|
|
|
SET_LAW(PIXIS_BASE, LAW_SIZE_2M, LAW_TRGT_IF_LBC),
|
2008-10-16 13:01:15 +00:00
|
|
|
SET_LAW(CONFIG_SYS_FLASH_BASE, LAW_SIZE_256M, LAW_TRGT_IF_LBC),
|
2008-01-23 22:31:02 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
int num_law_entries = ARRAY_SIZE(law_table);
|