Kumar Gala | 129ba61 | 2008-08-12 11:13:08 -0500 | [diff] [blame] | 1 | /* |
Kumar Gala | 18ea555 | 2010-12-17 06:53:52 -0600 | [diff] [blame] | 2 | * Copyright 2008, 2010 Freescale Semiconductor, Inc. |
Kumar Gala | 129ba61 | 2008-08-12 11:13:08 -0500 | [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 | 129ba61 | 2008-08-12 11:13:08 -0500 | [diff] [blame] | 8 | */ |
| 9 | |
| 10 | #include <common.h> |
| 11 | #include <asm/fsl_law.h> |
| 12 | #include <asm/mmu.h> |
| 13 | |
| 14 | struct law_entry law_table[] = { |
Kumar Gala | c953ddf | 2008-12-02 14:19:34 -0600 | [diff] [blame] | 15 | SET_LAW(CONFIG_SYS_FLASH_BASE_PHYS, LAW_SIZE_256M, LAW_TRGT_IF_LBC), |
Kumar Gala | 52b565f | 2008-12-02 14:19:33 -0600 | [diff] [blame] | 16 | SET_LAW(PIXIS_BASE_PHYS, LAW_SIZE_4K, LAW_TRGT_IF_LBC), |
Haiying Wang | c013b74 | 2008-10-29 13:32:59 -0400 | [diff] [blame] | 17 | SET_LAW(CONFIG_SYS_NAND_BASE_PHYS, LAW_SIZE_1M, LAW_TRGT_IF_LBC), |
Kumar Gala | 129ba61 | 2008-08-12 11:13:08 -0500 | [diff] [blame] | 18 | }; |
| 19 | |
| 20 | int num_law_entries = ARRAY_SIZE(law_table); |