blob: f804bae1257007eeb9e2136997424123fd624201 [file] [log] [blame]
Kumar Galafd83aa82008-07-25 13:31:05 -05001/*
2 * Copyright 2008 Freescale Semiconductor, Inc.
3 *
4 * (C) Copyright 2000
5 * Wolfgang Denk, DENX Software Engineering, wd@denx.de.
6 *
Wolfgang Denkd79de1d2013-07-08 09:37:19 +02007 * SPDX-License-Identifier: GPL-2.0+
Kumar Galafd83aa82008-07-25 13:31:05 -05008 */
9
10#include <common.h>
11#include <asm/fsl_law.h>
12#include <asm/mmu.h>
13
14struct law_entry law_table[] = {
Kumar Gala4be8b572008-12-02 14:19:34 -060015 SET_LAW(CONFIG_SYS_FLASH_BASE_PHYS, LAW_SIZE_256M, LAW_TRGT_IF_LBC),
Kumar Gala0f492b42008-12-02 14:19:33 -060016 SET_LAW(PIXIS_BASE_PHYS, LAW_SIZE_4K, LAW_TRGT_IF_LBC),
Jason Jin3a1e04f2008-10-31 05:07:04 -050017 SET_LAW(CONFIG_SYS_NAND_BASE_PHYS, LAW_SIZE_1M, LAW_TRGT_IF_LBC),
Kumar Galafd83aa82008-07-25 13:31:05 -050018};
19
20int num_law_entries = ARRAY_SIZE(law_table);