Skip to content

Commit

Permalink
review: Modify based on the feedback.
Browse files Browse the repository at this point in the history
Temporary use to code viewing and subsequent rebase to other commits

Signed-off-by: Xiaoxu Zeng <zengxiaoxu@huawei.com>
  • Loading branch information
xiaoxuZeng committed May 22, 2023
1 parent 5704523 commit 975f2f1
Show file tree
Hide file tree
Showing 8 changed files with 345 additions and 330 deletions.
5 changes: 5 additions & 0 deletions core/arch/arm/include/arm64.h
Original file line number Diff line number Diff line change
Expand Up @@ -288,6 +288,11 @@ static inline __noprof void dsb_ishst(void)
asm volatile ("dsb ishst" : : : "memory");
}

static inline __noprof void dsb_osh(void)
{
asm volatile ("dsb osh" : : : "memory");
}

static inline __noprof void sev(void)
{
asm volatile ("sev" : : : "memory");
Expand Down
4 changes: 2 additions & 2 deletions core/arch/arm/plat-d06/main.c
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,11 @@
* Copyright (c) 2022, Huawei Technologies Co., Ltd
*/
#include <console.h>
#include <drivers/gic.h>
#include <drivers/lpc_uart.h>
#include <platform_config.h>
#include <kernel/boot.h>
#include <drivers/gic.h>
#include <kernel/interrupt.h>
#include <platform_config.h>

static struct lpc_uart_data console_data __nex_bss;
static struct gic_data gic_data __nex_bss;
Expand Down
Loading

0 comments on commit 975f2f1

Please sign in to comment.