intlist.ld 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. /*
  2. * Copyright (c) 2017 Intel Corporation
  3. *
  4. * SPDX-License-Identifier: Apache-2.0
  5. */
  6. /* This creates a special section which is not included by the final binary,
  7. * instead it is consumed by the gen_isr_tables.py script.
  8. *
  9. * What we create here is a data structure:
  10. *
  11. * struct {
  12. * uint32_t num_vectors; <- typically CONFIG_NUM_IRQS
  13. * struct _isr_list isrs[]; <- Usually of smaller size than num_vectors
  14. * }
  15. *
  16. * Which indicates the memory address of the number of isrs that were
  17. * defined, the total number of IRQ lines in the system, followed by
  18. * an appropriate number of instances of struct _isr_list. See
  19. * include/sw_isr_table.h
  20. *
  21. * You will need to declare a bogus memory region for IDT_LIST. It doesn't
  22. * matter where this region goes as it is stripped from the final ELF image.
  23. * The address doesn't even have to be valid on the target. However, it
  24. * shouldn't overlap any other regions. On most arches the following should be
  25. * fine:
  26. *
  27. * MEMORY {
  28. * .. other regions ..
  29. * IDT_LIST : ORIGIN = 0xfffff7ff, LENGTH = 2K
  30. * }
  31. */
  32. #ifndef LINKER_ZEPHYR_FINAL
  33. SECTION_PROLOGUE(.intList,,)
  34. {
  35. KEEP(*(.irq_info*))
  36. KEEP(*(.intList*))
  37. } GROUP_ROM_LINK_IN(IDT_LIST, IDT_LIST)
  38. #else
  39. /DISCARD/ :
  40. {
  41. KEEP(*(.irq_info*))
  42. KEEP(*(.intList*))
  43. }
  44. #endif