]> git.ipfire.org Git - people/ms/u-boot.git/blame - board/freescale/mpc8548cds/law.c
Add GPL-2.0+ SPDX-License-Identifier to source files
[people/ms/u-boot.git] / board / freescale / mpc8548cds / law.c
CommitLineData
2cfaa1aa 1/*
8b47d7ec 2 * Copyright 2008,2010-2011 Freescale Semiconductor, Inc.
2cfaa1aa
KG
3 *
4 * (C) Copyright 2000
5 * Wolfgang Denk, DENX Software Engineering, wd@denx.de.
6 *
1a459660 7 * SPDX-License-Identifier: GPL-2.0+
2cfaa1aa
KG
8 */
9
10#include <common.h>
11#include <asm/fsl_law.h>
12#include <asm/mmu.h>
13
2cfaa1aa 14struct law_entry law_table[] = {
fff80975 15 /* LBC window - maps 256M */
16 SET_LAW(CONFIG_SYS_LBC_SDRAM_BASE_PHYS, LAW_SIZE_256M, LAW_TRGT_IF_LBC),
2cfaa1aa
KG
17};
18
19int num_law_entries = ARRAY_SIZE(law_table);