law.c 425 B

1234567891011121314151617
  1. /*
  2. * Copyright 2010 Freescale Semiconductor, Inc.
  3. * Authors: Srikanth Srinivasan <srikanth.srinivasan@freescale.com>
  4. * Timur Tabi <timur@freescale.com>
  5. *
  6. * SPDX-License-Identifier: GPL-2.0+
  7. */
  8. #include <common.h>
  9. #include <asm/fsl_law.h>
  10. #include <asm/mmu.h>
  11. struct law_entry law_table[] = {
  12. SET_LAW(CONFIG_SYS_ELBC_BASE_PHYS, LAW_SIZE_1M, LAW_TRGT_IF_LBC),
  13. };
  14. int num_law_entries = ARRAY_SIZE(law_table);