mirror of
https://github.com/ARM-software/arm-trusted-firmware.git
synced 2025-04-22 20:38:03 +00:00

All identifiers, regardless of use, that start with two underscores are reserved. This means they can't be used in header guards. The style that this project is now to use the full name of the file in capital letters followed by 'H'. For example, for a file called "uart_example.h", the header guard is UART_EXAMPLE_H. The exceptions are files that are imported from other projects: - CryptoCell driver - dt-bindings folders - zlib headers Change-Id: I50561bf6c88b491ec440d0c8385c74650f3c106e Signed-off-by: Antonio Nino Diaz <antonio.ninodiaz@arm.com>
76 lines
1.5 KiB
C
76 lines
1.5 KiB
C
/*
|
|
* Copyright (c) 2013-2014, ARM Limited and Contributors. All rights reserved.
|
|
*
|
|
* SPDX-License-Identifier: BSD-3-Clause
|
|
*/
|
|
|
|
#ifndef MMIO_H
|
|
#define MMIO_H
|
|
|
|
#include <stdint.h>
|
|
|
|
static inline void mmio_write_8(uintptr_t addr, uint8_t value)
|
|
{
|
|
*(volatile uint8_t*)addr = value;
|
|
}
|
|
|
|
static inline uint8_t mmio_read_8(uintptr_t addr)
|
|
{
|
|
return *(volatile uint8_t*)addr;
|
|
}
|
|
|
|
static inline void mmio_write_16(uintptr_t addr, uint16_t value)
|
|
{
|
|
*(volatile uint16_t*)addr = value;
|
|
}
|
|
|
|
static inline uint16_t mmio_read_16(uintptr_t addr)
|
|
{
|
|
return *(volatile uint16_t*)addr;
|
|
}
|
|
|
|
static inline void mmio_clrsetbits_16(uintptr_t addr,
|
|
uint16_t clear,
|
|
uint16_t set)
|
|
{
|
|
mmio_write_16(addr, (mmio_read_16(addr) & ~clear) | set);
|
|
}
|
|
|
|
static inline void mmio_write_32(uintptr_t addr, uint32_t value)
|
|
{
|
|
*(volatile uint32_t*)addr = value;
|
|
}
|
|
|
|
static inline uint32_t mmio_read_32(uintptr_t addr)
|
|
{
|
|
return *(volatile uint32_t*)addr;
|
|
}
|
|
|
|
static inline void mmio_write_64(uintptr_t addr, uint64_t value)
|
|
{
|
|
*(volatile uint64_t*)addr = value;
|
|
}
|
|
|
|
static inline uint64_t mmio_read_64(uintptr_t addr)
|
|
{
|
|
return *(volatile uint64_t*)addr;
|
|
}
|
|
|
|
static inline void mmio_clrbits_32(uintptr_t addr, uint32_t clear)
|
|
{
|
|
mmio_write_32(addr, mmio_read_32(addr) & ~clear);
|
|
}
|
|
|
|
static inline void mmio_setbits_32(uintptr_t addr, uint32_t set)
|
|
{
|
|
mmio_write_32(addr, mmio_read_32(addr) | set);
|
|
}
|
|
|
|
static inline void mmio_clrsetbits_32(uintptr_t addr,
|
|
uint32_t clear,
|
|
uint32_t set)
|
|
{
|
|
mmio_write_32(addr, (mmio_read_32(addr) & ~clear) | set);
|
|
}
|
|
|
|
#endif /* MMIO_H */
|