/* * Copyright (c) 2023 - 2024 MINRES Technologies GmbH * * SPDX-License-Identifier: Apache-2.0 * * Generated at 2024-02-19 14:24:37 UTC * by peakrdl_mnrs version 1.2.2 */ #ifndef _BSP_APB3ACLINT_H #define _BSP_APB3ACLINT_H #include typedef struct __attribute((__packed__)) { volatile uint32_t MSIP0; volatile uint32_t MTIMECMP0LO; volatile uint32_t MTIMECMP0HI; volatile uint32_t MTIME_LO; volatile uint32_t MTIME_HI; }apb3aclint_t; inline uint32_t get_aclint_msip0(volatile apb3aclint_t *reg){ return (reg->MSIP0 >> 0) & 0x1; } inline void set_aclint_msip0(volatile apb3aclint_t *reg, uint8_t value){ reg->MSIP0 = (reg->MSIP0 & ~(0x1U << 0)) | (value << 0); } inline uint32_t get_aclint_mtimecmp0lo(volatile apb3aclint_t *reg){ return (reg->MTIMECMP0LO >> 0) & 0xffffffff; } inline void set_aclint_mtimecmp0lo(volatile apb3aclint_t *reg, uint32_t value){ reg->MTIMECMP0LO = (reg->MTIMECMP0LO & ~(0xffffffffU << 0)) | (value << 0); } inline uint32_t get_aclint_mtimecmp0hi(volatile apb3aclint_t *reg){ return (reg->MTIMECMP0HI >> 0) & 0xffffffff; } inline void set_aclint_mtimecmp0hi(volatile apb3aclint_t *reg, uint32_t value){ reg->MTIMECMP0HI = (reg->MTIMECMP0HI & ~(0xffffffffU << 0)) | (value << 0); } inline uint32_t get_aclint_mtime_lo(volatile apb3aclint_t *reg){ return (reg->MTIME_LO >> 0) & 0xffffffff; } inline void set_aclint_mtime_lo(volatile apb3aclint_t *reg, uint32_t value){ reg->MTIME_LO = (reg->MTIME_LO & ~(0xffffffffU << 0)) | (value << 0); } inline uint32_t get_aclint_mtime_hi(volatile apb3aclint_t *reg){ return (reg->MTIME_HI >> 0) & 0xffffffff; } inline void set_aclint_mtime_hi(volatile apb3aclint_t *reg, uint32_t value){ reg->MTIME_HI = (reg->MTIME_HI & ~(0xffffffffU << 0)) | (value << 0); } #endif /* _BSP_APB3ACLINT_H */