123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351 |
- /*
- * Copyright (c) 2021-2023 HPMicro
- *
- * SPDX-License-Identifier: BSD-3-Clause
- *
- */
- #ifndef _HPM_COMMON_H
- #define _HPM_COMMON_H
- #include <assert.h>
- #include <stdbool.h>
- #include <stdint.h>
- #include <string.h>
- #include <stdlib.h>
- /**
- *
- * @brief COMMON driver APIs
- * @defgroup common_interface COMMON driver APIs
- * @{
- *
- */
- #define __R volatile const /* Define "read-only" permission */
- #define __RW volatile /* Define "read-write" permission */
- #define __W volatile /* Define "write-only" permission */
- #ifndef __I
- #define __I __R
- #endif
- #ifndef __IO
- #define __IO __RW
- #endif
- #ifndef __O
- #define __O __W
- #endif
- #ifndef ARRAY_SIZE
- #define ARRAY_SIZE(a) (sizeof(a) / sizeof((a)[0]))
- #endif
- #ifndef MAX
- #define MAX(a, b) ((a) > (b) ? (a) : (b))
- #endif
- #ifndef MIN
- #define MIN(a, b) ((a) < (b) ? (a) : (b))
- #endif
- #ifndef HPM_ALIGN_DOWN
- #define HPM_ALIGN_DOWN(a, n) ((uint32_t)(a) & ~(n-1U))
- #endif
- #ifndef HPM_ALIGN_UP
- #define HPM_ALIGN_UP(a, n) (((uint32_t)(a) + (n-1U)) & ~(n-1U))
- #endif
- #define HPM_BITSMASK(val, offset) ((uint32_t)(val) << (offset))
- #define IS_HPM_BITMASK_SET(val, mask) (((uint32_t)(val) & (uint32_t)(mask)) != 0U)
- #define IS_HPM_BIT_SET(val, offset) (((uint32_t)(val) & (1UL << (offset))) != 0U)
- #define IS_HPM_BITMASK_CLR(val, mask) (((uint32_t)(val) & (uint32_t)(mask)) == 0U)
- #define IS_HPM_BIT_CLR(val, offset) (((uint32_t)(val) & (1UL << (offset))) == 0U)
- #define HPM_BREAK_IF(cond) if (cond) { break; }
- #define HPM_CONTINUE_IF(cond) if (cond) { continue; }
- #define HPM_DIV_ROUND_CLOSEST(x, div) (((x) + (div) / 2) / (div))
- #define HPM_DIV_ROUND_UP(x, div) (((x) + (div) - 1) / (div))
- #define HPM_NUM_TO_EVEN_CEILING(x) ((x + 1) & 0xFFFFFFFEUL)
- #define HPM_NUM_TO_EVEN_FLOOR(x) ((x) & 0xFFFFFFFEUL)
- #define HPM_CHECK_RET(x) \
- do { \
- stat = (x); \
- if (status_success != stat) { \
- return stat; \
- } \
- } while (false)
- #define SIZE_1KB (1024UL)
- #define SIZE_1MB (1048576UL)
- #define BIT0_MASK (0x00000001UL)
- #define BIT1_MASK (0x00000002UL)
- #define BIT2_MASK (0x00000004UL)
- #define BIT3_MASK (0x00000008UL)
- #define BIT4_MASK (0x00000010UL)
- #define BIT5_MASK (0x00000020UL)
- #define BIT6_MASK (0x00000040UL)
- #define BIT7_MASK (0x00000080UL)
- #define BIT8_MASK (0x00000100UL)
- #define BIT9_MASK (0x00000200UL)
- #define BIT10_MASK (0x00000400UL)
- #define BIT11_MASK (0x00000800UL)
- #define BIT12_MASK (0x00001000UL)
- #define BIT13_MASK (0x00002000UL)
- #define BIT14_MASK (0x00004000UL)
- #define BIT15_MASK (0x00008000UL)
- #define BIT16_MASK (0x00010000UL)
- #define BIT17_MASK (0x00020000UL)
- #define BIT18_MASK (0x00040000UL)
- #define BIT19_MASK (0x00080000UL)
- #define BIT20_MASK (0x00100000UL)
- #define BIT21_MASK (0x00200000UL)
- #define BIT22_MASK (0x00400000UL)
- #define BIT23_MASK (0x00800000UL)
- #define BIT24_MASK (0x01000000UL)
- #define BIT25_MASK (0x02000000UL)
- #define BIT26_MASK (0x04000000UL)
- #define BIT27_MASK (0x08000000UL)
- #define BIT28_MASK (0x10000000UL)
- #define BIT29_MASK (0x20000000UL)
- #define BIT30_MASK (0x40000000UL)
- #define BIT31_MASK (0x80000000UL)
- typedef uint32_t hpm_stat_t;
- /* @brief Enum definition for the Status group
- * Rule:
- * [Group] 0-999 for the SoC driver and the corresponding components
- * 1000 or above for the application status group
- * [Code] Valid value: 0-999
- *
- */
- #define MAKE_STATUS(group, code) ((uint32_t)(group)*1000U + (uint32_t)(code))
- /* @brief System status group definitions */
- enum {
- status_group_common = 0,
- status_group_uart = 1,
- status_group_i2c = 2,
- status_group_spi = 3,
- status_group_usb = 4,
- status_group_i2s = 5,
- status_group_xpi = 6,
- status_group_l1c,
- status_group_dma,
- status_group_femc,
- status_group_sdp,
- status_group_xpi_nor,
- status_group_otp,
- status_group_lcdc,
- status_group_mbx,
- status_group_rng,
- status_group_pdma,
- status_group_wdg,
- status_group_pmic_sec,
- status_group_can,
- status_group_sdxc,
- status_group_pcfg,
- status_group_clk,
- status_group_pllctl,
- status_group_pllctlv2,
- status_group_ffa,
- status_group_mcan,
- status_group_ewdg,
- status_group_esc,
- status_group_middleware_start = 500,
- status_group_sdmmc = status_group_middleware_start,
- status_group_audio_codec,
- status_group_dma_manager,
- status_group_spi_nor_flash,
- status_group_touch,
- };
- /* @brief Common status code definitions */
- enum {
- status_success = MAKE_STATUS(status_group_common, 0),
- status_fail = MAKE_STATUS(status_group_common, 1),
- status_invalid_argument = MAKE_STATUS(status_group_common, 2),
- status_timeout = MAKE_STATUS(status_group_common, 3),
- };
- #if defined(__GNUC__)
- /* weak */
- #define ATTR_WEAK __attribute__((weak))
- #define HPM_ATTR_MACHINE_INTERRUPT __attribute__ ((section(".isr_vector"), interrupt("machine"), aligned(4)))
- #define HPM_ATTR_SUPERVISOR_INTERRUPT __attribute__ ((section(".isr_s_vector"), interrupt("supervisor"), aligned(4)))
- #elif defined(__ICCRISCV__)
- /* weak */
- #define ATTR_WEAK __weak
- #define HPM_ATTR_MACHINE_INTERRUPT __machine __interrupt
- #define HPM_ATTR_SUPERVISOR_INTERRUPT __supervisor __interrupt
- #ifndef __TIMEVAL_DEFINED
- #define __TIMEVAL_DEFINED 1
- struct timeval {
- long tv_sec; /* Seconds since the Epoch */
- long tv_usec; /* Microseconds */
- };
- #endif
- #else
- #error Unknown toolchain
- #endif
- #if defined(__GNUC__) || defined(__ICCRISCV__)
- /* alway_inline */
- #define ATTR_ALWAYS_INLINE __attribute__((always_inline))
- /* alignment */
- #define ATTR_ALIGN(alignment) __attribute__((aligned(alignment)))
- #define ATTR_PACKED __attribute__((packed, aligned(1)))
- /* place var_declare at section_name, e.x. PLACE_AT(".target_section", var); */
- #define ATTR_PLACE_AT(section_name) __attribute__((section(section_name)))
- #define ATTR_PLACE_AT_WITH_ALIGNMENT(section_name, alignment) \
- ATTR_PLACE_AT(section_name) ATTR_ALIGN(alignment)
- #define ATTR_PLACE_AT_NONCACHEABLE ATTR_PLACE_AT(".noncacheable")
- #define ATTR_PLACE_AT_NONCACHEABLE_WITH_ALIGNMENT(alignment) \
- ATTR_PLACE_AT_NONCACHEABLE ATTR_ALIGN(alignment)
- #define ATTR_PLACE_AT_NONCACHEABLE_BSS ATTR_PLACE_AT(".noncacheable.bss")
- #define ATTR_PLACE_AT_NONCACHEABLE_BSS_WITH_ALIGNMENT(alignment) \
- ATTR_PLACE_AT_NONCACHEABLE_BSS ATTR_ALIGN(alignment)
- /* initialize variable x with y using PLACE_AT_NONCACHEABLE_INIT(x) = {y}; */
- #define ATTR_PLACE_AT_NONCACHEABLE_INIT ATTR_PLACE_AT(".noncacheable.init")
- #define ATTR_PLACE_AT_NONCACHEABLE_INIT_WITH_ALIGNMENT(alignment) \
- ATTR_PLACE_AT_NONCACHEABLE_INIT ATTR_ALIGN(alignment)
- /* .fast_ram section */
- #define ATTR_PLACE_AT_FAST_RAM ATTR_PLACE_AT(".fast_ram")
- #define ATTR_PLACE_AT_FAST_RAM_WITH_ALIGNMENT(alignment) \
- ATTR_PLACE_AT_FAST_RAM ATTR_ALIGN(alignment)
- #define ATTR_PLACE_AT_FAST_RAM_BSS ATTR_PLACE_AT(".fast_ram.bss")
- #define ATTR_PLACE_AT_FAST_RAM_BSS_WITH_ALIGNMENT(alignment) \
- ATTR_PLACE_AT_FAST_RAM_BSS ATTR_ALIGN(alignment)
- #define ATTR_PLACE_AT_FAST_RAM_INIT ATTR_PLACE_AT(".fast_ram.init")
- #define ATTR_PLACE_AT_FAST_RAM_INIT_WITH_ALIGNMENT(alignment) \
- ATTR_PLACE_AT_FAST_RAM_INIT ATTR_ALIGN(alignment)
- #define ATTR_RAMFUNC ATTR_PLACE_AT(".fast")
- #define ATTR_RAMFUNC_WITH_ALIGNMENT(alignment) \
- ATTR_RAMFUNC ATTR_ALIGN(alignment)
- #define ATTR_SHARE_MEM ATTR_PLACE_AT(".sh_mem")
- #define NOP() __asm volatile("nop")
- #define WFI() __asm volatile("wfi")
- #endif
- #ifdef __cplusplus
- extern "C" {
- #endif
- /**
- * @brief Count bits set to 1
- *
- * @param value Data to be counted
- *
- * @return number of bits set to 1
- */
- static inline uint32_t count_set_bits(uint32_t value)
- {
- if (value == 0) {
- return 0;
- }
- return 1 + count_set_bits(value & (value - 1));
- }
- /**
- * @brief Count bits set to 1 from least significant bit
- *
- * @param value Data to be counted
- *
- * @return number of bits set to 1
- * @return 0xFFFFFFFF if no bit was set to 1
- */
- static inline uint32_t get_first_set_bit_from_lsb(uint32_t value)
- {
- uint32_t i = 0;
- if (!value) {
- return 0xFFFFFFFFUL;
- }
- while (value && !(value & 0x1)) {
- value >>= 1;
- i++;
- }
- return i;
- }
- /**
- * @brief Count bits set to 1 from most significant bit
- *
- * @param value Data to be counted
- *
- * @return number of bits set to 1
- * @return 0xFFFFFFFF if no bit was set to 1
- */
- static inline uint32_t get_first_set_bit_from_msb(uint32_t value)
- {
- uint32_t i = 31;
- if (!value) {
- return 0xFFFFFFFFUL;
- }
- while (value && !(value & 0x80000000)) {
- value <<= 1;
- value &= ~1;
- i--;
- }
- return i;
- }
- /**
- * @brief Convert the elapsed ticks to microseconds according to the source clock frequency
- * @param [in] ticks elapsed ticks
- * @param [in] src_clk_freq The Frequency of the source
- *
- * @return elapsed microseconds
- */
- static inline uint32_t hpm_convert_ticks_to_us(uint32_t ticks, uint32_t src_clk_freq)
- {
- uint32_t ticks_per_us = (src_clk_freq + 1000000UL - 1UL) / 1000000UL;
- return (ticks + ticks_per_us - 1UL) / ticks_per_us;
- }
- /**
- * @brief Convert the elapsed ticks to milliseconds according to the source clock frequency
- * @param [in] ticks elapsed ticks
- * @param [in] src_clk_freq The Frequency of the source
- *
- * @return elapsed milliseconds
- */
- static inline uint32_t hpm_convert_ticks_to_ms(uint32_t ticks, uint32_t src_clk_freq)
- {
- uint32_t ticks_per_ms = (src_clk_freq + 1000UL - 1UL) / 1000UL;
- return (ticks + ticks_per_ms - 1UL) / ticks_per_ms;
- }
- #ifdef __cplusplus
- }
- #endif
- /**
- * @}
- */
- #endif /* _HPM_COMMON_H */
|