sipi.h 2.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687
  1. /*
  2. * Copyright (c) 2015 Gooogle, Inc
  3. * Written by Simon Glass <sjg@chromium.org>
  4. *
  5. * SPDX-License-Identifier: GPL-2.0+
  6. */
  7. #ifndef _ASM_SIPI_H
  8. #define _ASM_SIPI_H
  9. #define AP_DEFAULT_BASE 0x30000
  10. #define AP_DEFAULT_SIZE 0x10000
  11. #ifndef __ASSEMBLER__
  12. /**
  13. * struct sipi_params_16bit - 16-bit SIPI entry-point parameters
  14. *
  15. * These are set up in the same space as the SIPI 16-bit code so that each AP
  16. * can access the parameters when it boots.
  17. *
  18. * Each of these must be set up for the AP to boot, except @segment which is
  19. * set in the assembly code.
  20. *
  21. * @ap_start: 32-bit SIPI entry point for U-Boot
  22. * @segment: Code segment for U-Boot
  23. * @pad: Padding (not used)
  24. * @gdt_limit: U-Boot GDT limit (X86_GDT_SIZE - 1)
  25. * @gdt: U-Boot GDT (gd->arch.gdt)
  26. * @unused: Not used
  27. */
  28. struct __packed sipi_params_16bit {
  29. u32 ap_start;
  30. u16 segment;
  31. u16 pad;
  32. u16 gdt_limit;
  33. u32 gdt;
  34. u16 unused;
  35. };
  36. /**
  37. * struct sipi_params - 32-bit SIP entry-point parameters
  38. *
  39. * These are used by the AP init code and must be set up before the APs start.
  40. * The members must match with the sipi_params layout in sipi_vector.S.
  41. *
  42. * The stack area extends down from @stack_top, with @stack_size allocated
  43. * for each AP.
  44. *
  45. * @idt_ptr: Interrupt descriptor table pointer
  46. * @stack_top: Top of the AP stack area
  47. * @stack_size: Size of each AP's stack
  48. * @microcode_lock: Used to ensure only one AP loads microcode at once
  49. * 0xffffffff enables parallel loading.
  50. * @microcode_ptr: Pointer to microcode, or 0 if none
  51. * @msr_table_ptr: Pointer to saved MSRs, a list of struct saved_msr
  52. * @msr_count: Number of saved MSRs
  53. * @c_handler: C function to call once early init is complete
  54. * @ap_count: Shared atomic value to allocate CPU indexes
  55. */
  56. struct sipi_params {
  57. u32 idt_ptr;
  58. u32 stack_top;
  59. u32 stack_size;
  60. u32 microcode_lock;
  61. u32 microcode_ptr;
  62. u32 msr_table_ptr;
  63. u32 msr_count;
  64. u32 c_handler;
  65. atomic_t ap_count;
  66. };
  67. /* 16-bit AP entry point */
  68. void ap_start16(void);
  69. /* end of 16-bit code/data, marks the region to be copied to SIP vector */
  70. void ap_start16_code_end(void);
  71. /* 32-bit AP entry point */
  72. void ap_start(void);
  73. extern char sipi_params_16bit[];
  74. extern char sipi_params[];
  75. #endif /* __ASSEMBLER__ */
  76. #endif