Skip to content

Commit eb1f3bf

Browse files
committed
added target_arch = "riscv64"
1 parent 7c2bc13 commit eb1f3bf

File tree

2 files changed

+8
-8
lines changed

2 files changed

+8
-8
lines changed

async-embedded/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ typenum = "1.11.2"
1616
cortex-m = "0.6.2"
1717
cortex-m-udf = { path = "../cortex-m-udf" }
1818

19-
[target.'cfg(target_arch = "riscv32")'.dependencies]
19+
[target.'cfg(any(target_arch = "riscv32", target_arch = "riscv64"))'.dependencies]
2020
riscv = "0.5.6"
2121

2222
[features]

async-embedded/src/lib.rs

+7-7
Original file line numberDiff line numberDiff line change
@@ -33,27 +33,27 @@ pub(crate) unsafe fn wait_for_event() {
3333
asm::wfe();
3434
}
3535

36-
#[cfg(target_arch = "riscv32")]
36+
#[cfg(any(target_arch = "riscv32", target_arch = "riscv64"))]
3737
/// This keeps dropping into the debugger and never returns
3838
pub fn abort() -> ! {
3939
loop {
4040
unsafe { riscv::asm::ebreak() }
4141
}
4242
}
4343

44-
#[cfg(all(target_arch = "riscv32", feature = "riscv-wait-nop"))]
44+
#[cfg(all(any(target_arch = "riscv32", target_arch = "riscv64"), feature = "riscv-wait-nop"))]
4545
#[inline]
4646
/// Prevent next `wait_for_interrupt` from sleeping, wake up other harts if needed.
4747
/// This particular implementation does nothing, since `wait_for_interrupt` never sleeps
4848
pub(crate) unsafe fn signal_event_ready() {}
4949

50-
#[cfg(all(target_arch = "riscv32", feature = "riscv-wait-nop"))]
50+
#[cfg(all(any(target_arch = "riscv32", target_arch = "riscv64"), feature = "riscv-wait-nop"))]
5151
#[inline]
5252
/// Wait for an interrupt or until notified by other hart via `signal_task_ready`
5353
/// This particular implementation does nothing
5454
pub(crate) unsafe fn wait_for_event() {}
5555

56-
#[cfg(all(target_arch = "riscv32", feature = "riscv-wait-extern"))]
56+
#[cfg(all(any(target_arch = "riscv32", target_arch = "riscv64"), feature = "riscv-wait-extern"))]
5757
extern "C" {
5858
/// Prevent next `wait_for_interrupt` from sleeping, wake up other harts if needed.
5959
/// User is expected to provide an actual implementation, like the one shown below.
@@ -74,10 +74,10 @@ extern "C" {
7474
pub(crate) fn wait_for_event();
7575
}
7676

77-
#[cfg(all(target_arch = "riscv32", feature = "riscv-wait-wfi-single-hart"))]
77+
#[cfg(all(any(target_arch = "riscv32", target_arch = "riscv64"), feature = "riscv-wait-wfi-single-hart"))]
7878
static mut TASK_READY: bool = false;
7979

80-
#[cfg(all(target_arch = "riscv32", feature = "riscv-wait-wfi-single-hart"))]
80+
#[cfg(all(any(target_arch = "riscv32", target_arch = "riscv64"), feature = "riscv-wait-wfi-single-hart"))]
8181
#[inline]
8282
/// Prevent next `wait_for_interrupt` from sleeping, wake up other harts if needed.
8383
/// This particular implementation prevents `wait_for_interrupt` from sleeping by setting
@@ -86,7 +86,7 @@ pub(crate) unsafe fn signal_event_ready() {
8686
TASK_READY = true;
8787
}
8888

89-
#[cfg(all(target_arch = "riscv32", feature = "riscv-wait-wfi-single-hart"))]
89+
#[cfg(all(any(target_arch = "riscv32", target_arch = "riscv64"), feature = "riscv-wait-wfi-single-hart"))]
9090
#[inline]
9191
/// Wait for an interrupt or until notified by other hart via `signal_task_ready`
9292
/// This particular implementation decides whether to sleep or not by checking

0 commit comments

Comments
 (0)