Tom Rini | 83d290c | 2018-05-06 17:58:06 -0400 | [diff] [blame] | 1 | // SPDX-License-Identifier: GPL-2.0+ |
Peter Tyser | 5da6f80 | 2009-06-30 17:26:01 -0500 | [diff] [blame] | 2 | /* |
| 3 | * Copyright 2008 Freescale Semiconductor, Inc. |
| 4 | * |
| 5 | * (C) Copyright 2000 |
| 6 | * Wolfgang Denk, DENX Software Engineering, wd@denx.de. |
Peter Tyser | 5da6f80 | 2009-06-30 17:26:01 -0500 | [diff] [blame] | 7 | */ |
| 8 | |
| 9 | #include <common.h> |
| 10 | #include <asm/fsl_law.h> |
| 11 | #include <asm/mmu.h> |
| 12 | |
| 13 | /* |
| 14 | * Notes: |
| 15 | * CCSRBAR don't need a configured Local Access Window. |
| 16 | * If flash is 8M at default position (last 8M), no LAW needed. |
| 17 | */ |
| 18 | |
| 19 | struct law_entry law_table[] = { |
| 20 | SET_LAW(CONFIG_SYS_FLASH_BASE2, LAW_SIZE_256M, LAW_TRGT_IF_LBC), |
| 21 | #ifdef CONFIG_SYS_NAND_BASE |
| 22 | /* NAND LAW covers 2 NAND flashes */ |
| 23 | SET_LAW(CONFIG_SYS_NAND_BASE, LAW_SIZE_512K, LAW_TRGT_IF_LBC), |
| 24 | #endif |
Peter Tyser | 5da6f80 | 2009-06-30 17:26:01 -0500 | [diff] [blame] | 25 | }; |
| 26 | |
| 27 | int num_law_entries = ARRAY_SIZE(law_table); |