blob: ab44add7b7f352d47f64be8eb3b5bc34c950d610 [file] [log] [blame]
Kumar Gala129ba612008-08-12 11:13:08 -05001/*
Kumar Gala18ea5552010-12-17 06:53:52 -06002 * Copyright 2008, 2010 Freescale Semiconductor, Inc.
Kumar Gala129ba612008-08-12 11:13:08 -05003 *
4 * (C) Copyright 2000
5 * Wolfgang Denk, DENX Software Engineering, wd@denx.de.
6 *
Wolfgang Denk1a459662013-07-08 09:37:19 +02007 * SPDX-License-Identifier: GPL-2.0+
Kumar Gala129ba612008-08-12 11:13:08 -05008 */
9
10#include <common.h>
11#include <asm/fsl_law.h>
12#include <asm/mmu.h>
13
14struct law_entry law_table[] = {
Kumar Galac953ddf2008-12-02 14:19:34 -060015 SET_LAW(CONFIG_SYS_FLASH_BASE_PHYS, LAW_SIZE_256M, LAW_TRGT_IF_LBC),
Kumar Gala52b565f2008-12-02 14:19:33 -060016 SET_LAW(PIXIS_BASE_PHYS, LAW_SIZE_4K, LAW_TRGT_IF_LBC),
Haiying Wangc013b742008-10-29 13:32:59 -040017 SET_LAW(CONFIG_SYS_NAND_BASE_PHYS, LAW_SIZE_1M, LAW_TRGT_IF_LBC),
Kumar Gala129ba612008-08-12 11:13:08 -050018};
19
20int num_law_entries = ARRAY_SIZE(law_table);