processor.h 3.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115
  1. /* SPDX-License-Identifier: GPL-2.0 */
  2. // Copyright (C) 2018 Hangzhou C-SKY Microsystems co.,ltd.
  3. #ifndef __ASM_CSKY_PROCESSOR_H
  4. #define __ASM_CSKY_PROCESSOR_H
  5. #include <linux/bitops.h>
  6. #include <asm/segment.h>
  7. #include <asm/ptrace.h>
  8. #include <asm/current.h>
  9. #include <asm/cache.h>
  10. #include <abi/reg_ops.h>
  11. #include <abi/regdef.h>
  12. #ifdef CONFIG_CPU_HAS_FPU
  13. #include <abi/fpu.h>
  14. #endif
  15. struct cpuinfo_csky {
  16. unsigned long udelay_val;
  17. unsigned long asid_cache;
  18. /*
  19. * Capability and feature descriptor structure for CSKY CPU
  20. */
  21. unsigned long options;
  22. unsigned int processor_id[4];
  23. unsigned int fpu_id;
  24. } __aligned(SMP_CACHE_BYTES);
  25. extern struct cpuinfo_csky cpu_data[];
  26. /*
  27. * User space process size: 2GB. This is hardcoded into a few places,
  28. * so don't change it unless you know what you are doing. TASK_SIZE
  29. * for a 64 bit kernel expandable to 8192EB, of which the current CSKY
  30. * implementations will "only" be able to use 1TB ...
  31. */
  32. #define TASK_SIZE 0x7fff8000UL
  33. #ifdef __KERNEL__
  34. #define STACK_TOP TASK_SIZE
  35. #define STACK_TOP_MAX STACK_TOP
  36. #endif
  37. /* This decides where the kernel will search for a free chunk of vm
  38. * space during mmap's.
  39. */
  40. #define TASK_UNMAPPED_BASE (TASK_SIZE / 3)
  41. struct thread_struct {
  42. unsigned long ksp; /* kernel stack pointer */
  43. unsigned long sr; /* saved status register */
  44. unsigned long esp0; /* points to SR of stack frame */
  45. unsigned long hi;
  46. unsigned long lo;
  47. /* Other stuff associated with the thread. */
  48. unsigned long address; /* Last user fault */
  49. unsigned long error_code;
  50. /* FPU regs */
  51. struct user_fp __aligned(16) user_fp;
  52. };
  53. #define INIT_THREAD { \
  54. .ksp = (unsigned long) init_thread_union.stack + THREAD_SIZE, \
  55. .sr = DEFAULT_PSR_VALUE, \
  56. }
  57. /*
  58. * Do necessary setup to start up a newly executed thread.
  59. *
  60. * pass the data segment into user programs if it exists,
  61. * it can't hurt anything as far as I can tell
  62. */
  63. #define start_thread(_regs, _pc, _usp) \
  64. do { \
  65. set_fs(USER_DS); /* reads from user space */ \
  66. (_regs)->pc = (_pc); \
  67. (_regs)->regs[1] = 0; /* ABIV1 is R7, uClibc_main rtdl arg */ \
  68. (_regs)->regs[2] = 0; \
  69. (_regs)->regs[3] = 0; /* ABIV2 is R7, use it? */ \
  70. (_regs)->sr &= ~PS_S; \
  71. (_regs)->usp = (_usp); \
  72. } while (0)
  73. /* Forward declaration, a strange C thing */
  74. struct task_struct;
  75. /* Free all resources held by a thread. */
  76. static inline void release_thread(struct task_struct *dead_task)
  77. {
  78. }
  79. /* Prepare to copy thread state - unlazy all lazy status */
  80. #define prepare_to_copy(tsk) do { } while (0)
  81. extern int kernel_thread(int (*fn)(void *), void *arg, unsigned long flags);
  82. #define copy_segments(tsk, mm) do { } while (0)
  83. #define release_segments(mm) do { } while (0)
  84. #define forget_segments() do { } while (0)
  85. extern unsigned long thread_saved_pc(struct task_struct *tsk);
  86. unsigned long get_wchan(struct task_struct *p);
  87. #define KSTK_EIP(tsk) (task_pt_regs(tsk)->pc)
  88. #define KSTK_ESP(tsk) (task_pt_regs(tsk)->usp)
  89. #define task_pt_regs(p) \
  90. ((struct pt_regs *)(THREAD_SIZE + p->stack) - 1)
  91. #define cpu_relax() barrier()
  92. #endif /* __ASM_CSKY_PROCESSOR_H */