blob: 10613ead3f21f1b7c72a36879bf28cc050e2d6a4 [file] [log] [blame]
Tom Rini83d290c2018-05-06 17:58:06 -04001// SPDX-License-Identifier: GPL-2.0+
Peter Tyser1f03cbf2008-12-23 16:32:00 -06002/*
3 * Copyright 2008 Extreme Engineering Solutions, Inc.
4 * Copyright 2008 Freescale Semiconductor, Inc.
5 *
6 * (C) Copyright 2000
7 * Wolfgang Denk, DENX Software Engineering, wd@denx.de.
Peter Tyser1f03cbf2008-12-23 16:32:00 -06008 */
9
10#include <common.h>
11#include <asm/fsl_law.h>
12#include <asm/mmu.h>
13
14/*
15 * Notes:
16 * CCSRBAR and L2-as-SRAM don't need a configured Local Access Window.
17 * If flash is 8M at default position (last 8M), no LAW needed.
18 */
19
20struct law_entry law_table[] = {
21 /* LBC window - maps 256M 0xf0000000 -> 0xffffffff */
22 SET_LAW(CONFIG_SYS_FLASH_BASE2, LAW_SIZE_256M, LAW_TRGT_IF_LBC),
23 SET_LAW(CONFIG_SYS_NAND_BASE, LAW_SIZE_1M, LAW_TRGT_IF_LBC),
Peter Tyser1f03cbf2008-12-23 16:32:00 -060024};
25
26int num_law_entries = ARRAY_SIZE(law_table);