mirror of
https://github.com/zephyrproject-rtos/zephyr
synced 2025-09-14 07:21:56 +00:00
Adds native_posix hw counter model and the counter driver. Functionality is needed by software which is tested on native_posix and has dependency on counter. Hardware model was developed similarly to HW timer model. The counter driver wraps HW counter functions and exposes basic functionalities: starting, stopping, setting and cancelling single channel alarms. Code was tested against: tests/drivers/counter/counter_basic_api. Signed-off-by: Filip Zajdel <filip.zajdel@nordicsemi.no>
49 lines
1.2 KiB
C
49 lines
1.2 KiB
C
/*
|
|
* Copyright (c) 2017 Oticon A/S
|
|
*
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*/
|
|
/**
|
|
* @file Extra definitions provided by the board to soc.h
|
|
*
|
|
* Background:
|
|
* The POSIC ARCH/SOC/board layering is different than in normal archs
|
|
* The "SOC" does not provide almost any of the typical SOC functionality
|
|
* but that is left for the "board" to define it
|
|
* Device code may rely on the soc.h defining some things (like the interrupts
|
|
* numbers)
|
|
* Therefore this file is included from the inf_clock soc.h to allow a board
|
|
* to define that kind of SOC related snippets
|
|
*/
|
|
|
|
#ifndef _POSIX_SP_BOARD_SOC_H
|
|
#define _POSIX_SP_BOARD_SOC_H
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
#define TIMER_TICK_IRQ 0
|
|
#define OFFLOAD_SW_IRQ 1
|
|
#define COUNTER_EVENT_IRQ 2
|
|
|
|
/*
|
|
* This interrupt will awake the CPU if IRQs are not locked,
|
|
* This interrupt does not have an associated status bit or handler
|
|
*/
|
|
#define PHONY_WEAK_IRQ 0xFFFE
|
|
/*
|
|
* This interrupt will awake the CPU even if IRQs are locked,
|
|
* This interrupt does not have an associated status bit or handler
|
|
* (the lock is only ignored when the interrupt is raised from the HW models,
|
|
* SW threads should not try to use this)
|
|
*/
|
|
#define PHONY_HARD_IRQ 0xFFFF
|
|
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif /* _POSIX_SP_BOARD_SOC_H */
|