nuttx/arch/x86_64/include/irq.h
buxiasen 89455bc9a1 arch: up_getusrsp change to inline and implement in irq.h
Signed-off-by: buxiasen <buxiasen@xiaomi.com>
2025-01-06 23:03:05 +08:00

199 lines
6 KiB
C

/****************************************************************************
* arch/x86_64/include/irq.h
*
* SPDX-License-Identifier: Apache-2.0
*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership. The
* ASF licenses this file to you under the Apache License, Version 2.0 (the
* "License"); you may not use this file except in compliance with the
* License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
* License for the specific language governing permissions and limitations
* under the License.
*
****************************************************************************/
/* This file should never be included directly but, rather, only indirectly
* through nuttx/irq.h
*/
#ifndef __ARCH_X86_64_INCLUDE_IRQ_H
#define __ARCH_X86_64_INCLUDE_IRQ_H
/****************************************************************************
* Included Files
****************************************************************************/
/* Include NuttX-specific IRQ definitions */
#include <nuttx/irq.h>
/* Include chip-specific IRQ definitions (including IRQ numbers) */
#include <arch/chip/irq.h>
/* Include architecture-specific IRQ definitions (including register save
* structure and up_irq_save()/up_irq_restore() macros).
*/
#ifdef CONFIG_ARCH_INTEL64
# include <arch/intel64/irq.h>
#endif
/****************************************************************************
* Pre-processor Definitions
****************************************************************************/
#define X86_64_CPUPRIV_USTACK_OFFSET (16)
#define X86_64_CPUPRIV_UVBASE_OFFSET (24)
#define X86_64_CPUPRIV_KTOPSTK_OFFSET (32)
/****************************************************************************
* Public Data
****************************************************************************/
#ifndef __ASSEMBLY__
/* CPU private data */
struct intel64_cpu_s
{
int id;
uint8_t loapic_id;
bool ready;
/* Interrupt Context */
bool interrupt_context;
/* Current task */
struct tcb_s *this_task;
#ifdef CONFIG_LIB_SYSCALL
/* Current user RSP for syscall */
uint64_t *ustack;
/* Userspace virtual address */
uint64_t *uvbase;
#endif
#ifdef CONFIG_ARCH_KERNEL_STACK
/* Kernel stack pointer.
*
* We have to track the current kernel stack pointer to handle
* syscalls in kernel mode. All registers are occupied when entering
* syscall, so we cannot get this value from tcb in syscall handler.
* We keep referenve to kernel stack in CPU private data and update it
* at each context switch.
*/
uint64_t *ktopstk;
#endif
};
/****************************************************************************
* Public Function Prototypes
****************************************************************************/
#ifdef __cplusplus
#define EXTERN extern "C"
extern "C"
{
#else
#define EXTERN extern
#endif
/****************************************************************************
* Name: up_cpu_index
*
* Description:
* Return the real core number regardless CONFIG_SMP setting
*
****************************************************************************/
#ifdef CONFIG_ARCH_HAVE_MULTICPU
static inline_function int up_cpu_index(void)
{
int cpu;
__asm__ volatile(
"\tmovl %%gs:(%c1), %0\n"
: "=r" (cpu)
: "i" (offsetof(struct intel64_cpu_s, id))
:);
return cpu;
}
#endif /* CONFIG_ARCH_HAVE_MULTICPU */
/****************************************************************************
* Inline functions
****************************************************************************/
static inline_function bool up_interrupt_context(void)
{
bool flag;
__asm__ volatile("movb %%gs:(%c1), %0"
: "=qm" (flag)
: "i" (offsetof(struct intel64_cpu_s,
interrupt_context)));
return flag;
}
static inline_function void up_set_interrupt_context(bool flag)
{
__asm__ volatile("movb %0, %%gs:(%c1)"
:: "r" (flag),
"i" (offsetof(struct intel64_cpu_s,
interrupt_context)));
}
/****************************************************************************
* Schedule acceleration macros
****************************************************************************/
#define up_this_task() \
({ \
struct tcb_s *this_task; \
__asm__ volatile("movq %%gs:(%c1), %0" \
: "=r" (this_task) \
: "i" (offsetof(struct intel64_cpu_s, this_task))); \
this_task; \
})
#define up_update_task(t) \
__asm__ volatile("movq %0, %%gs:(%c1)" \
:: "r" ((struct tcb_s *)t), \
"i" (offsetof(struct intel64_cpu_s, this_task)))
/****************************************************************************
* Name: up_getusrpc
****************************************************************************/
#define up_getusrpc(regs) \
(((uint64_t *)((regs) ? (regs) : running_regs()))[REG_RIP])
/****************************************************************************
* Name: up_getusrsp
****************************************************************************/
#define up_getusrsp(regs) \
((uintptr_t)((uint64_t *)(regs))[REG_RSP])
#undef EXTERN
#ifdef __cplusplus
}
#endif
#endif
#endif /* __ARCH_X86_64_INCLUDE_IRQ_H */