Peter Tyser | 5da6f80 | 2009-06-30 17:26:01 -0500 | [diff] [blame] | 1 | /* |
| 2 | * Copyright 2008 Freescale Semiconductor, Inc. |
| 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+ |
Peter Tyser | 5da6f80 | 2009-06-30 17:26:01 -0500 | [diff] [blame] | 8 | */ |
| 9 | |
| 10 | #include <common.h> |
| 11 | #include <asm/fsl_law.h> |
| 12 | #include <asm/mmu.h> |
| 13 | |
| 14 | /* |
| 15 | * Notes: |
| 16 | * CCSRBAR don't need a configured Local Access Window. |
| 17 | * If flash is 8M at default position (last 8M), no LAW needed. |
| 18 | */ |
| 19 | |
| 20 | struct law_entry law_table[] = { |
| 21 | SET_LAW(CONFIG_SYS_FLASH_BASE2, LAW_SIZE_256M, LAW_TRGT_IF_LBC), |
| 22 | #ifdef CONFIG_SYS_NAND_BASE |
| 23 | /* NAND LAW covers 2 NAND flashes */ |
| 24 | SET_LAW(CONFIG_SYS_NAND_BASE, LAW_SIZE_512K, LAW_TRGT_IF_LBC), |
| 25 | #endif |
Peter Tyser | 5da6f80 | 2009-06-30 17:26:01 -0500 | [diff] [blame] | 26 | }; |
| 27 | |
| 28 | int num_law_entries = ARRAY_SIZE(law_table); |