Kumar Gala | 2cfaa1a | 2008-01-16 01:45:10 -0600 | [diff] [blame] | 1 | /* |
Kumar Gala | 8b47d7e | 2011-01-04 17:57:59 -0600 | [diff] [blame] | 2 | * Copyright 2008,2010-2011 Freescale Semiconductor, Inc. |
Kumar Gala | 2cfaa1a | 2008-01-16 01:45:10 -0600 | [diff] [blame] | 3 | * |
| 4 | * (C) Copyright 2000 |
| 5 | * Wolfgang Denk, DENX Software Engineering, wd@denx.de. |
| 6 | * |
Wolfgang Denk | 1a45966 | 2013-07-08 09:37:19 +0200 | [diff] [blame] | 7 | * SPDX-License-Identifier: GPL-2.0+ |
Kumar Gala | 2cfaa1a | 2008-01-16 01:45:10 -0600 | [diff] [blame] | 8 | */ |
| 9 | |
| 10 | #include <common.h> |
| 11 | #include <asm/fsl_law.h> |
| 12 | #include <asm/mmu.h> |
| 13 | |
Kumar Gala | 2cfaa1a | 2008-01-16 01:45:10 -0600 | [diff] [blame] | 14 | struct law_entry law_table[] = { |
chenhui zhao | fff8097 | 2011-10-13 13:40:59 +0800 | [diff] [blame] | 15 | /* LBC window - maps 256M */ |
| 16 | SET_LAW(CONFIG_SYS_LBC_SDRAM_BASE_PHYS, LAW_SIZE_256M, LAW_TRGT_IF_LBC), |
Kumar Gala | 2cfaa1a | 2008-01-16 01:45:10 -0600 | [diff] [blame] | 17 | }; |
| 18 | |
| 19 | int num_law_entries = ARRAY_SIZE(law_table); |