123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990 |
- /*
- #include <rt-thread/libcpu/risc-v/hpmicro/cpuport.h>
- #include <rt-thread/libcpu/risc-v/hpmicro/riscv-stackframe.h>
- * Copyright (c) 2006-2021, RT-Thread Development Team
- *
- * SPDX-License-Identifier: Apache-2.0
- *
- * Change Logs:
- * Date Author Notes
- * 2018/10/28 Bernard The unify RISC-V porting code.
- * 2020/11/20 BalanceTWK Add FPU support
- */
- #include <rthw.h>
- #include <rtthread.h>
- #include "riscv-stackframe.h"
- volatile rt_ubase_t rt_interrupt_from_thread = 0;
- volatile rt_ubase_t rt_interrupt_to_thread = 0;
- volatile rt_uint32_t rt_thread_switch_interrupt_flag = 0;
- /**
- * This function will initialize thread stack
- *
- * @param tentry the entry of thread
- * @param parameter the parameter of entry
- * @param stack_addr the beginning stack address
- * @param texit the function will be called when thread exit
- *
- * @return stack address
- */
- rt_uint8_t *rt_hw_stack_init(void *tentry,
- void *parameter,
- rt_uint8_t *stack_addr,
- void *texit)
- {
- struct rt_hw_stack_frame *frame;
- rt_uint8_t *stk;
- int i;
- stk = stack_addr + sizeof(rt_ubase_t);
- stk = (rt_uint8_t *)RT_ALIGN_DOWN((rt_ubase_t)stk, REGBYTES);
- stk -= sizeof(struct rt_hw_stack_frame);
- frame = (struct rt_hw_stack_frame *)stk;
- for (i = 0; i < sizeof(struct rt_hw_stack_frame) / sizeof(rt_ubase_t); i++)
- {
- ((rt_ubase_t *)frame)[i] = 0xdeadbeef;
- }
- frame->ra = (rt_ubase_t)texit;
- frame->a0 = (rt_ubase_t)parameter;
- frame->epc = (rt_ubase_t)tentry;
- /* force to machine mode(MPP=11) and set MPIE to 1 */
- frame->mstatus = 0x00007880;
- return stk;
- }
- /*
- * void rt_hw_context_switch_interrupt(rt_ubase_t from, rt_ubase_t to);
- */
- void rt_hw_context_switch_interrupt(rt_ubase_t from, rt_ubase_t to)
- {
- if (rt_thread_switch_interrupt_flag == 0)
- rt_interrupt_from_thread = from;
- rt_interrupt_to_thread = to;
- rt_thread_switch_interrupt_flag = 1;
- return ;
- }
- /** shutdown CPU */
- RT_WEAK void rt_hw_cpu_shutdown()
- {
- rt_uint32_t level;
- rt_kprintf("shutdown...\n");
- level = rt_hw_interrupt_disable();
- while (level)
- {
- RT_ASSERT(0);
- }
- }
|