law.c 422 B

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