Zephyr API Documentation 3.7.99
A Scalable Open Source RTOS
Loading...
Searching...
No Matches
sys_io.h
Go to the documentation of this file.
1/*
2 * Copyright (c) 2015, Wind River Systems, Inc.
3 * Copyright (c) 2017, Oticon A/S
4 *
5 * SPDX-License-Identifier: Apache-2.0
6 */
7
8/* "Arch" bit manipulation functions in non-arch-specific C code (uses some
9 * gcc builtins)
10 */
11
12#ifndef ZEPHYR_INCLUDE_ARCH_ARM64_SYS_IO_H_
13#define ZEPHYR_INCLUDE_ARCH_ARM64_SYS_IO_H_
14
15#ifndef _ASMLANGUAGE
16
17#include <zephyr/types.h>
18#include <zephyr/sys/sys_io.h>
19#include <zephyr/sys/barrier.h>
20
21#ifdef __cplusplus
22extern "C" {
23#endif
24
25/* Memory mapped registers I/O functions */
26
27/*
28 * We need to use explicit assembler instruction there, because with classic
29 * "volatile pointer" approach compiler might generate instruction with
30 * immediate value like
31 *
32 * str w4, [x1], #4
33 *
34 * Such instructions produce invalid syndrome in HSR register, so hypervisor
35 * can't emulate MMIO when it traps memory access.
36 */
38{
39 uint8_t val;
40
41 __asm__ volatile("ldrb %w0, [%1]" : "=r" (val) : "r" (addr));
42
44 return val;
45}
46
48{
50 __asm__ volatile("strb %w0, [%1]" : : "r" (data), "r" (addr));
51}
52
54{
55 uint16_t val;
56
57 __asm__ volatile("ldrh %w0, [%1]" : "=r" (val) : "r" (addr));
58
60 return val;
61}
62
64{
66 __asm__ volatile("strh %w0, [%1]" : : "r" (data), "r" (addr));
67}
68
70{
71 uint32_t val;
72
73 __asm__ volatile("ldr %w0, [%1]" : "=r" (val) : "r" (addr));
74
76 return val;
77}
78
80{
82 __asm__ volatile("str %w0, [%1]" : : "r" (data), "r" (addr));
83}
84
86{
87 uint64_t val;
88
89 __asm__ volatile("ldr %x0, [%1]" : "=r" (val) : "r" (addr));
90
92 return val;
93}
94
96{
98 __asm__ volatile("str %x0, [%1]" : : "r" (data), "r" (addr));
99}
100
101#ifdef __cplusplus
102}
103#endif
104
105#endif /* _ASMLANGUAGE */
106
107#endif /* ZEPHYR_INCLUDE_ARCH_ARM64_SYS_IO_H_ */
static ALWAYS_INLINE void sys_write64(uint64_t data, mem_addr_t addr)
Definition sys_io.h:95
static ALWAYS_INLINE void sys_write32(uint32_t data, mem_addr_t addr)
Definition sys_io.h:69
static ALWAYS_INLINE uint8_t sys_read8(mem_addr_t addr)
Definition sys_io.h:27
static ALWAYS_INLINE void sys_write16(uint16_t data, mem_addr_t addr)
Definition sys_io.h:53
static ALWAYS_INLINE uint32_t sys_read32(mem_addr_t addr)
Definition sys_io.h:59
static ALWAYS_INLINE uint16_t sys_read16(mem_addr_t addr)
Definition sys_io.h:43
static ALWAYS_INLINE void sys_write8(uint8_t data, mem_addr_t addr)
Definition sys_io.h:37
static ALWAYS_INLINE uint64_t sys_read64(mem_addr_t addr)
Definition sys_io.h:75
#define ALWAYS_INLINE
Definition common.h:129
static ALWAYS_INLINE void barrier_dmem_fence_full(void)
Full/sequentially-consistent data memory barrier.
Definition barrier.h:40
__UINT32_TYPE__ uint32_t
Definition stdint.h:90
__UINT64_TYPE__ uint64_t
Definition stdint.h:91
__UINT8_TYPE__ uint8_t
Definition stdint.h:88
__UINT16_TYPE__ uint16_t
Definition stdint.h:89
uintptr_t mem_addr_t
Definition sys_io.h:21