xref: /openbmc/u-boot/board/freescale/mpc8544ds/law.c (revision 78a88f79)
1 // SPDX-License-Identifier: GPL-2.0+
2 /*
3  * Copyright 2008, 2010 Freescale Semiconductor, Inc.
4  *
5  * (C) Copyright 2000
6  * Wolfgang Denk, DENX Software Engineering, wd@denx.de.
7  */
8 
9 #include <common.h>
10 #include <asm/fsl_law.h>
11 #include <asm/mmu.h>
12 
13 struct law_entry law_table[] = {
14 	SET_LAW(CONFIG_SYS_LBC_NONCACHE_BASE, LAW_SIZE_128M, LAW_TRGT_IF_LBC),
15 };
16 
17 int num_law_entries = ARRAY_SIZE(law_table);
18