law.c 665 B

12345678910111213141516171819202122232425
  1. // SPDX-License-Identifier: GPL-2.0+
  2. /*
  3. * Copyright 2008 Extreme Engineering Solutions, Inc.
  4. * Copyright 2008 Freescale Semiconductor, Inc.
  5. *
  6. * (C) Copyright 2000
  7. * Wolfgang Denk, DENX Software Engineering, wd@denx.de.
  8. */
  9. #include <common.h>
  10. #include <asm/fsl_law.h>
  11. #include <asm/mmu.h>
  12. /*
  13. * Notes:
  14. * CCSRBAR and L2-as-SRAM don't need a configured Local Access Window.
  15. * If flash is 8M at default position (last 8M), no LAW needed.
  16. */
  17. struct law_entry law_table[] = {
  18. SET_LAW(CONFIG_SYS_FLASH_BASE2, LAW_SIZE_256M, LAW_TRGT_IF_LBC),
  19. SET_LAW(CONFIG_SYS_NAND_BASE, LAW_SIZE_1M, LAW_TRGT_IF_LBC),
  20. };
  21. int num_law_entries = ARRAY_SIZE(law_table);