isr_tables.c 2.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768
  1. /*
  2. * Copyright (c) 2017 Intel Corporation.
  3. *
  4. * SPDX-License-Identifier: Apache-2.0
  5. */
  6. #include <toolchain.h>
  7. #include <linker/sections.h>
  8. #include <sw_isr_table.h>
  9. #include <arch/cpu.h>
  10. /* There is an additional member at the end populated by the linker script
  11. * which indicates the number of interrupts specified
  12. */
  13. struct int_list_header {
  14. uint32_t table_size;
  15. uint32_t offset;
  16. };
  17. /* These values are not included in the resulting binary, but instead form the
  18. * header of the initList section, which is used by gen_isr_tables.py to create
  19. * the vector and sw isr tables,
  20. */
  21. #ifndef __UVISION_VERSION
  22. Z_GENERIC_SECTION(.irq_info) struct int_list_header _iheader = {
  23. .table_size = IRQ_TABLE_SIZE,
  24. .offset = CONFIG_GEN_IRQ_START_VECTOR,
  25. };
  26. #endif
  27. /* These are placeholder tables. They will be replaced by the real tables
  28. * generated by gen_isr_tables.py.
  29. *
  30. * z_irq_spurious is used as a placeholder value to ensure that it is not
  31. * optimized out in the first linker pass. The first linker pass must contain
  32. * the same symbols as the second linker pass for the code generation to work.
  33. */
  34. /* Some arches don't use a vector table, they have a common exception entry
  35. * point for all interrupts. Don't generate a table in this case.
  36. */
  37. #ifdef CONFIG_GEN_IRQ_VECTOR_TABLE
  38. /* When both the IRQ vector table and the software ISR table are used, populate
  39. * the IRQ vector table with the common software ISR by default, such that all
  40. * indirect interrupt vectors are handled using the software ISR table;
  41. * otherwise, populate the IRQ vector table with z_irq_spurious so that all
  42. * un-connected IRQ vectors end up in the spurious IRQ handler.
  43. */
  44. #ifdef CONFIG_GEN_SW_ISR_TABLE
  45. #define IRQ_VECTOR_TABLE_DEFAULT_ISR _isr_wrapper
  46. #else
  47. #define IRQ_VECTOR_TABLE_DEFAULT_ISR z_irq_spurious
  48. #endif /* CONFIG_GEN_SW_ISR_TABLE */
  49. uintptr_t __irq_vector_table _irq_vector_table[IRQ_TABLE_SIZE] = {
  50. [0 ...(IRQ_TABLE_SIZE - 1)] = (uintptr_t)&IRQ_VECTOR_TABLE_DEFAULT_ISR,
  51. };
  52. #endif /* CONFIG_GEN_IRQ_VECTOR_TABLE */
  53. /* If there are no interrupts at all, or all interrupts are of the 'direct'
  54. * type and bypass the _sw_isr_table, then do not generate one.
  55. */
  56. #ifdef CONFIG_GEN_SW_ISR_TABLE
  57. struct _isr_table_entry __sw_isr_table _sw_isr_table[IRQ_TABLE_SIZE] = {
  58. [0 ...(IRQ_TABLE_SIZE - 1)] = {(const void *)0x42,
  59. (void *)&z_irq_spurious},
  60. };
  61. #endif