processor.h 2.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091
  1. /*
  2. * Copyright (C) 2012 Regents of the University of California
  3. *
  4. * This program is free software; you can redistribute it and/or
  5. * modify it under the terms of the GNU General Public License
  6. * as published by the Free Software Foundation, version 2.
  7. *
  8. * This program is distributed in the hope that it will be useful,
  9. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  10. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  11. * GNU General Public License for more details.
  12. */
  13. #ifndef _ASM_RISCV_PROCESSOR_H
  14. #define _ASM_RISCV_PROCESSOR_H
  15. #include <linux/const.h>
  16. #include <asm/ptrace.h>
  17. /*
  18. * This decides where the kernel will search for a free chunk of vm
  19. * space during mmap's.
  20. */
  21. #define TASK_UNMAPPED_BASE PAGE_ALIGN(TASK_SIZE >> 1)
  22. #define STACK_TOP TASK_SIZE
  23. #define STACK_TOP_MAX STACK_TOP
  24. #define STACK_ALIGN 16
  25. #ifndef __ASSEMBLY__
  26. struct task_struct;
  27. struct pt_regs;
  28. /* CPU-specific state of a task */
  29. struct thread_struct {
  30. /* Callee-saved registers */
  31. unsigned long ra;
  32. unsigned long sp; /* Kernel mode stack */
  33. unsigned long s[12]; /* s[0]: frame pointer */
  34. struct __riscv_d_ext_state fstate;
  35. };
  36. #define INIT_THREAD { \
  37. .sp = sizeof(init_stack) + (long)&init_stack, \
  38. }
  39. #define task_pt_regs(tsk) \
  40. ((struct pt_regs *)(task_stack_page(tsk) + THREAD_SIZE \
  41. - ALIGN(sizeof(struct pt_regs), STACK_ALIGN)))
  42. #define KSTK_EIP(tsk) (task_pt_regs(tsk)->sepc)
  43. #define KSTK_ESP(tsk) (task_pt_regs(tsk)->sp)
  44. /* Do necessary setup to start up a newly executed thread. */
  45. extern void start_thread(struct pt_regs *regs,
  46. unsigned long pc, unsigned long sp);
  47. /* Free all resources held by a thread. */
  48. static inline void release_thread(struct task_struct *dead_task)
  49. {
  50. }
  51. extern unsigned long get_wchan(struct task_struct *p);
  52. static inline void cpu_relax(void)
  53. {
  54. #ifdef __riscv_muldiv
  55. int dummy;
  56. /* In lieu of a halt instruction, induce a long-latency stall. */
  57. __asm__ __volatile__ ("div %0, %0, zero" : "=r" (dummy));
  58. #endif
  59. barrier();
  60. }
  61. static inline void wait_for_interrupt(void)
  62. {
  63. __asm__ __volatile__ ("wfi");
  64. }
  65. struct device_node;
  66. int riscv_of_processor_hartid(struct device_node *node);
  67. extern void riscv_fill_hwcap(void);
  68. #endif /* __ASSEMBLY__ */
  69. #endif /* _ASM_RISCV_PROCESSOR_H */