sec_rsrc.h 479 B

12345678910111213141516171819202122232425
  1. /*
  2. * Copyright (c) 2015-2018, ARM Limited and Contributors. All rights reserved.
  3. *
  4. * SPDX-License-Identifier: BSD-3-Clause
  5. */
  6. /* resources that are going to stay in secure partition */
  7. sc_rsrc_t secure_rsrcs[] = {
  8. SC_R_MU_0A,
  9. SC_R_A35,
  10. SC_R_A35_0,
  11. SC_R_A35_1,
  12. SC_R_A35_2,
  13. SC_R_A35_3,
  14. SC_R_GIC,
  15. SC_R_SYSTEM,
  16. SC_R_IRQSTR_SCU2,
  17. SC_R_GPT_0
  18. };
  19. /* resources that have register access for non-secure domain */
  20. sc_rsrc_t ns_access_allowed[] = {
  21. SC_R_GIC,
  22. SC_R_GPT_0
  23. };