law.c 674 B

12345678910111213141516171819202122232425262728
  1. /*
  2. * Copyright 2008 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. /*
  13. * Notes:
  14. * CCSRBAR 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. #ifdef CONFIG_SYS_NAND_BASE
  20. /* NAND LAW covers 2 NAND flashes */
  21. SET_LAW(CONFIG_SYS_NAND_BASE, LAW_SIZE_512K, LAW_TRGT_IF_LBC),
  22. #endif
  23. };
  24. int num_law_entries = ARRAY_SIZE(law_table);