processor.h 2.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485
  1. /* SPDX-License-Identifier: GPL-2.0-only */
  2. /*
  3. * Copyright (C) 2012 Regents of the University of California
  4. */
  5. #ifndef _ASM_RISCV_PROCESSOR_H
  6. #define _ASM_RISCV_PROCESSOR_H
  7. #include <linux/const.h>
  8. #include <vdso/processor.h>
  9. #include <asm/ptrace.h>
  10. /*
  11. * This decides where the kernel will search for a free chunk of vm
  12. * space during mmap's.
  13. */
  14. #define TASK_UNMAPPED_BASE PAGE_ALIGN(TASK_SIZE / 3)
  15. #define STACK_TOP TASK_SIZE
  16. #ifdef CONFIG_64BIT
  17. #define STACK_TOP_MAX TASK_SIZE_64
  18. #else
  19. #define STACK_TOP_MAX TASK_SIZE
  20. #endif
  21. #define STACK_ALIGN 16
  22. #ifndef __ASSEMBLY__
  23. struct task_struct;
  24. struct pt_regs;
  25. /* CPU-specific state of a task */
  26. struct thread_struct {
  27. /* Callee-saved registers */
  28. unsigned long ra;
  29. unsigned long sp; /* Kernel mode stack */
  30. unsigned long s[12]; /* s[0]: frame pointer */
  31. struct __riscv_d_ext_state fstate;
  32. unsigned long bad_cause;
  33. };
  34. /* Whitelist the fstate from the task_struct for hardened usercopy */
  35. static inline void arch_thread_struct_whitelist(unsigned long *offset,
  36. unsigned long *size)
  37. {
  38. *offset = offsetof(struct thread_struct, fstate);
  39. *size = sizeof_field(struct thread_struct, fstate);
  40. }
  41. #define INIT_THREAD { \
  42. .sp = sizeof(init_stack) + (long)&init_stack, \
  43. }
  44. #define task_pt_regs(tsk) \
  45. ((struct pt_regs *)(task_stack_page(tsk) + THREAD_SIZE \
  46. - ALIGN(sizeof(struct pt_regs), STACK_ALIGN)))
  47. #define KSTK_EIP(tsk) (task_pt_regs(tsk)->epc)
  48. #define KSTK_ESP(tsk) (task_pt_regs(tsk)->sp)
  49. /* Do necessary setup to start up a newly executed thread. */
  50. extern void start_thread(struct pt_regs *regs,
  51. unsigned long pc, unsigned long sp);
  52. extern unsigned long __get_wchan(struct task_struct *p);
  53. static inline void wait_for_interrupt(void)
  54. {
  55. __asm__ __volatile__ ("wfi");
  56. }
  57. struct device_node;
  58. int riscv_of_processor_hartid(struct device_node *node, unsigned long *hartid);
  59. int riscv_of_parent_hartid(struct device_node *node, unsigned long *hartid);
  60. extern void riscv_fill_hwcap(void);
  61. extern int arch_dup_task_struct(struct task_struct *dst, struct task_struct *src);
  62. #endif /* __ASSEMBLY__ */
  63. #endif /* _ASM_RISCV_PROCESSOR_H */