processor.h 2.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889
  1. /* SPDX-License-Identifier: GPL-2.0 */
  2. /*
  3. * include/asm-alpha/processor.h
  4. *
  5. * Copyright (C) 1994 Linus Torvalds
  6. */
  7. #ifndef __ASM_ALPHA_PROCESSOR_H
  8. #define __ASM_ALPHA_PROCESSOR_H
  9. #include <linux/personality.h> /* for ADDR_LIMIT_32BIT */
  10. /*
  11. * Returns current instruction pointer ("program counter").
  12. */
  13. #define current_text_addr() \
  14. ({ void *__pc; __asm__ ("br %0,.+4" : "=r"(__pc)); __pc; })
  15. /*
  16. * We have a 42-bit user address space: 4TB user VM...
  17. */
  18. #define TASK_SIZE (0x40000000000UL)
  19. #define STACK_TOP \
  20. (current->personality & ADDR_LIMIT_32BIT ? 0x80000000 : 0x00120000000UL)
  21. #define STACK_TOP_MAX 0x00120000000UL
  22. /* This decides where the kernel will search for a free chunk of vm
  23. * space during mmap's.
  24. */
  25. #define TASK_UNMAPPED_BASE \
  26. ((current->personality & ADDR_LIMIT_32BIT) ? 0x40000000 : TASK_SIZE / 2)
  27. typedef struct {
  28. unsigned long seg;
  29. } mm_segment_t;
  30. /* This is dead. Everything has been moved to thread_info. */
  31. struct thread_struct { };
  32. #define INIT_THREAD { }
  33. /* Return saved PC of a blocked thread. */
  34. struct task_struct;
  35. extern unsigned long thread_saved_pc(struct task_struct *);
  36. /* Do necessary setup to start up a newly executed thread. */
  37. struct pt_regs;
  38. extern void start_thread(struct pt_regs *, unsigned long, unsigned long);
  39. /* Free all resources held by a thread. */
  40. extern void release_thread(struct task_struct *);
  41. unsigned long get_wchan(struct task_struct *p);
  42. #define KSTK_EIP(tsk) (task_pt_regs(tsk)->pc)
  43. #define KSTK_ESP(tsk) \
  44. ((tsk) == current ? rdusp() : task_thread_info(tsk)->pcb.usp)
  45. #define cpu_relax() barrier()
  46. #define ARCH_HAS_PREFETCH
  47. #define ARCH_HAS_PREFETCHW
  48. #define ARCH_HAS_SPINLOCK_PREFETCH
  49. #ifndef CONFIG_SMP
  50. /* Nothing to prefetch. */
  51. #define spin_lock_prefetch(lock) do { } while (0)
  52. #endif
  53. extern inline void prefetch(const void *ptr)
  54. {
  55. __builtin_prefetch(ptr, 0, 3);
  56. }
  57. extern inline void prefetchw(const void *ptr)
  58. {
  59. __builtin_prefetch(ptr, 1, 3);
  60. }
  61. #ifdef CONFIG_SMP
  62. extern inline void spin_lock_prefetch(const void *ptr)
  63. {
  64. __builtin_prefetch(ptr, 1, 3);
  65. }
  66. #endif
  67. #endif /* __ASM_ALPHA_PROCESSOR_H */