Tom Rini | 83d290c | 2018-05-06 17:58:06 -0400 | [diff] [blame] | 1 | // SPDX-License-Identifier: GPL-2.0+ |
Kumar Gala | 4bcae9c | 2008-01-16 01:16:16 -0600 | [diff] [blame] | 2 | /* |
Kumar Gala | 64a1686 | 2010-12-17 06:01:24 -0600 | [diff] [blame] | 3 | * Copyright 2008, 2010 Freescale Semiconductor, Inc. |
Kumar Gala | 4bcae9c | 2008-01-16 01:16:16 -0600 | [diff] [blame] | 4 | * |
| 5 | * (C) Copyright 2000 |
| 6 | * Wolfgang Denk, DENX Software Engineering, wd@denx.de. |
Kumar Gala | 4bcae9c | 2008-01-16 01:16:16 -0600 | [diff] [blame] | 7 | */ |
| 8 | |
| 9 | #include <common.h> |
| 10 | #include <asm/fsl_law.h> |
| 11 | #include <asm/mmu.h> |
| 12 | |
| 13 | struct law_entry law_table[] = { |
Kumar Gala | 002741a | 2009-09-19 11:20:54 -0500 | [diff] [blame] | 14 | SET_LAW(CONFIG_SYS_LBC_NONCACHE_BASE, LAW_SIZE_128M, LAW_TRGT_IF_LBC), |
Kumar Gala | 4bcae9c | 2008-01-16 01:16:16 -0600 | [diff] [blame] | 15 | }; |
| 16 | |
| 17 | int num_law_entries = ARRAY_SIZE(law_table); |