process.c 3.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154
  1. // SPDX-License-Identifier: GPL-2.0
  2. /*
  3. * linux/arch/m32r/kernel/process.c
  4. *
  5. * Copyright (c) 2001, 2002 Hiroyuki Kondo, Hirokazu Takata,
  6. * Hitoshi Yamamoto
  7. * Taken from sh version.
  8. * Copyright (C) 1995 Linus Torvalds
  9. * SuperH version: Copyright (C) 1999, 2000 Niibe Yutaka & Kaz Kojima
  10. */
  11. #undef DEBUG_PROCESS
  12. #ifdef DEBUG_PROCESS
  13. #define DPRINTK(fmt, args...) printk("%s:%d:%s: " fmt, __FILE__, __LINE__, \
  14. __func__, ##args)
  15. #else
  16. #define DPRINTK(fmt, args...)
  17. #endif
  18. /*
  19. * This file handles the architecture-dependent parts of process handling..
  20. */
  21. #include <linux/fs.h>
  22. #include <linux/slab.h>
  23. #include <linux/sched/debug.h>
  24. #include <linux/sched/task.h>
  25. #include <linux/sched/task_stack.h>
  26. #include <linux/module.h>
  27. #include <linux/ptrace.h>
  28. #include <linux/unistd.h>
  29. #include <linux/hardirq.h>
  30. #include <linux/rcupdate.h>
  31. #include <asm/io.h>
  32. #include <linux/uaccess.h>
  33. #include <asm/mmu_context.h>
  34. #include <asm/elf.h>
  35. #include <asm/m32r.h>
  36. #include <linux/err.h>
  37. void (*pm_power_off)(void) = NULL;
  38. EXPORT_SYMBOL(pm_power_off);
  39. void machine_restart(char *__unused)
  40. {
  41. #if defined(CONFIG_PLAT_MAPPI3)
  42. outw(1, (unsigned long)PLD_REBOOT);
  43. #endif
  44. printk("Please push reset button!\n");
  45. while (1)
  46. cpu_relax();
  47. }
  48. void machine_halt(void)
  49. {
  50. printk("Please push reset button!\n");
  51. while (1)
  52. cpu_relax();
  53. }
  54. void machine_power_off(void)
  55. {
  56. /* M32R_FIXME */
  57. }
  58. void show_regs(struct pt_regs * regs)
  59. {
  60. printk("\n");
  61. show_regs_print_info(KERN_DEFAULT);
  62. printk("BPC[%08lx]:PSW[%08lx]:LR [%08lx]:FP [%08lx]\n", \
  63. regs->bpc, regs->psw, regs->lr, regs->fp);
  64. printk("BBPC[%08lx]:BBPSW[%08lx]:SPU[%08lx]:SPI[%08lx]\n", \
  65. regs->bbpc, regs->bbpsw, regs->spu, regs->spi);
  66. printk("R0 [%08lx]:R1 [%08lx]:R2 [%08lx]:R3 [%08lx]\n", \
  67. regs->r0, regs->r1, regs->r2, regs->r3);
  68. printk("R4 [%08lx]:R5 [%08lx]:R6 [%08lx]:R7 [%08lx]\n", \
  69. regs->r4, regs->r5, regs->r6, regs->r7);
  70. printk("R8 [%08lx]:R9 [%08lx]:R10[%08lx]:R11[%08lx]\n", \
  71. regs->r8, regs->r9, regs->r10, regs->r11);
  72. printk("R12[%08lx]\n", \
  73. regs->r12);
  74. #if defined(CONFIG_ISA_M32R2) && defined(CONFIG_ISA_DSP_LEVEL2)
  75. printk("ACC0H[%08lx]:ACC0L[%08lx]\n", \
  76. regs->acc0h, regs->acc0l);
  77. printk("ACC1H[%08lx]:ACC1L[%08lx]\n", \
  78. regs->acc1h, regs->acc1l);
  79. #elif defined(CONFIG_ISA_M32R2) || defined(CONFIG_ISA_M32R)
  80. printk("ACCH[%08lx]:ACCL[%08lx]\n", \
  81. regs->acc0h, regs->acc0l);
  82. #else
  83. #error unknown isa configuration
  84. #endif
  85. }
  86. void flush_thread(void)
  87. {
  88. DPRINTK("pid = %d\n", current->pid);
  89. memset(&current->thread.debug_trap, 0, sizeof(struct debug_trap));
  90. }
  91. void release_thread(struct task_struct *dead_task)
  92. {
  93. /* do nothing */
  94. DPRINTK("pid = %d\n", dead_task->pid);
  95. }
  96. /* Fill in the fpu structure for a core dump.. */
  97. int dump_fpu(struct pt_regs *regs, elf_fpregset_t *fpu)
  98. {
  99. return 0; /* Task didn't use the fpu at all. */
  100. }
  101. int copy_thread(unsigned long clone_flags, unsigned long spu,
  102. unsigned long arg, struct task_struct *tsk)
  103. {
  104. struct pt_regs *childregs = task_pt_regs(tsk);
  105. extern void ret_from_fork(void);
  106. extern void ret_from_kernel_thread(void);
  107. if (unlikely(tsk->flags & PF_KTHREAD)) {
  108. memset(childregs, 0, sizeof(struct pt_regs));
  109. childregs->psw = M32R_PSW_BIE;
  110. childregs->r1 = spu; /* fn */
  111. childregs->r0 = arg;
  112. tsk->thread.lr = (unsigned long)ret_from_kernel_thread;
  113. } else {
  114. /* Copy registers */
  115. *childregs = *current_pt_regs();
  116. if (spu)
  117. childregs->spu = spu;
  118. childregs->r0 = 0; /* Child gets zero as return value */
  119. tsk->thread.lr = (unsigned long)ret_from_fork;
  120. }
  121. tsk->thread.sp = (unsigned long)childregs;
  122. return 0;
  123. }
  124. /*
  125. * These bracket the sleeping functions..
  126. */
  127. #define first_sched ((unsigned long) scheduling_functions_start_here)
  128. #define last_sched ((unsigned long) scheduling_functions_end_here)
  129. unsigned long get_wchan(struct task_struct *p)
  130. {
  131. /* M32R_FIXME */
  132. return (0);
  133. }