law.c 405 B

123456789101112131415161718
  1. /*
  2. * Copyright 2008, 2010 Freescale Semiconductor, Inc.
  3. *
  4. * (C) Copyright 2000
  5. * Wolfgang Denk, DENX Software Engineering, wd@denx.de.
  6. *
  7. * SPDX-License-Identifier: GPL-2.0+
  8. */
  9. #include <common.h>
  10. #include <asm/fsl_law.h>
  11. #include <asm/mmu.h>
  12. struct law_entry law_table[] = {
  13. SET_LAW(CONFIG_SYS_LBC_NONCACHE_BASE, LAW_SIZE_128M, LAW_TRGT_IF_LBC),
  14. };
  15. int num_law_entries = ARRAY_SIZE(law_table);