95 lines
4.0 KiB
C
95 lines
4.0 KiB
C
/*
|
|
* Copyright (c) 2006-2024, RT-Thread Development Team
|
|
*
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*
|
|
* Change Logs:
|
|
* Date Author Notes
|
|
* 2024/03/02 ShichengChu first version
|
|
*/
|
|
#ifndef __DRV_WDT_H__
|
|
#define __DRV_WDT_H__
|
|
|
|
#include "pinctrl.h"
|
|
#include "mmio.h"
|
|
|
|
struct cvi_wdt_regs_t {
|
|
uint32_t CR;
|
|
uint32_t TORR;
|
|
uint32_t CCVR;
|
|
uint32_t CRR;
|
|
uint32_t STAT;
|
|
uint32_t EOI;
|
|
};
|
|
|
|
static struct cvi_wdt_regs_t cv182x_wdt_reg = {
|
|
.CR = 0x0,
|
|
.TORR = 0x4,
|
|
.CCVR = 0x8,
|
|
.CRR = 0xc,
|
|
.STAT = 0x10,
|
|
.EOI = 0x14,
|
|
};
|
|
|
|
static struct cvi_wdt_regs_t *cvi_wdt_reg = &cv182x_wdt_reg;
|
|
|
|
#define CVI_WDT0_BASE 0x03010000
|
|
#define CVI_WDT1_BASE 0x03011000
|
|
#define CVI_WDT2_BASE 0x03012000
|
|
|
|
#define WDT_CR(reg_base) *((volatile uint32_t *)(reg_base + cvi_wdt_reg->CR))
|
|
#define WDT_TORR(reg_base) *((volatile uint32_t *)(reg_base + cvi_wdt_reg->TORR))
|
|
#define WDT_CCVR(reg_base) *((volatile const uint32_t *)(reg_base + cvi_wdt_reg->CCVR))
|
|
#define WDT_CRR(reg_base) *((volatile uint32_t *)(reg_base + cvi_wdt_reg->CRR))
|
|
#define WDT_STAT(reg_base) *((volatile const uint32_t *)(reg_base + cvi_wdt_reg->STAT))
|
|
#define WDT_EOI(reg_base) *((volatile const uint32_t *)(reg_base + cvi_wdt_reg->EOI))
|
|
|
|
#define CVI_WDT_TORR_WDT_TORR_Pos (0U)
|
|
#define CVI_WDT_TORR_WDT_TORR_Msk (0xf << CVI_WDT_TORR_WDT_TORR_Pos)
|
|
#define CVI_WDT_TORR_WDT_ITORR_Pos (4U)
|
|
#define CVI_WDT_TORR_WDT_ITORR_Msk (0xf << CVI_WDT_TORR_WDT_ITORR_Pos)
|
|
|
|
#define CVI_WDT_CR_WDT_ENABLE_Pos (0U)
|
|
#define CVI_WDT_CR_WDT_ENABLE_Msk (1U << CVI_WDT_CR_WDT_ENABLE_Pos)
|
|
#define CVI_WDT_CR_WDT_ENABLE_En CVI_WDT_CR_WDT_ENABLE_Msk
|
|
|
|
#define CVI_WDT_CR_WDT_RESPOND_Pos (1U)
|
|
#define CVI_WDT_CR_WDT_RESPOND_Msk (1U << CVI_WDT_CR_WDT_RESPOND_Pos)
|
|
#define CVI_WDT_CR_WDT_RESPOND_IRQ_THEN_RST CVI_WDT_CR_WDT_RESPOND_Msk
|
|
|
|
#define CVI_WDT_CR_WDT_RESET_PULSE_WIDTH_Pos (2U)
|
|
#define CVI_WDT_CR_WDT_RESET_PULSE_WIDTH_Msk (7U << CVI_WDT_CR_WDT_RESET_PULSE_WIDTH_Pos)
|
|
#define CVI_WDT_CR_WDT_RESET_PULSE_WIDTH_2_PCLK (0U << CVI_WDT_CR_WDT_RESET_PULSE_WIDTH_Pos)
|
|
#define CVI_WDT_CR_WDT_RESET_PULSE_WIDTH_4_PCLK (1U << CVI_WDT_CR_WDT_RESET_PULSE_WIDTH_Pos)
|
|
#define CVI_WDT_CR_WDT_RESET_PULSE_WIDTH_8_PCLK (2U << CVI_WDT_CR_WDT_RESET_PULSE_WIDTH_Pos)
|
|
#define CVI_WDT_CR_WDT_RESET_PULSE_WIDTH_16_PCLK (3U << CVI_WDT_CR_WDT_RESET_PULSE_WIDTH_Pos)
|
|
#define CVI_WDT_CR_WDT_RESET_PULSE_WIDTH_32_PCLK (4U << CVI_WDT_CR_WDT_RESET_PULSE_WIDTH_Pos)
|
|
#define CVI_WDT_CR_WDT_RESET_PULSE_WIDTH_64_PCLK (5U << CVI_WDT_CR_WDT_RESET_PULSE_WIDTH_Pos)
|
|
#define CVI_WDT_CR_WDT_RESET_PULSE_WIDTH_128_PCLK (6U << CVI_WDT_CR_WDT_RESET_PULSE_WIDTH_Pos)
|
|
#define CVI_WDT_CR_WDT_RESET_PULSE_WIDTH_256_PCLK CVI_WDT_CR_WDT_RESET_PULSE_WIDTH_Msk
|
|
|
|
#define CVI_WDT_CRR_FEED_Value 0x76
|
|
#define CVI_WDT_CRR_FEED_Pos (0U)
|
|
#define CVI_WDT_CRR_FEED_Msk (0xff << CVI_WDT_CRR_FEED_Pos)
|
|
#define CVI_WDT_CRR_FEED_En CVI_WDT_CRR_FEED_Value
|
|
|
|
#define CVI_WDT_CCVR_COUNTER_Pos (0U)
|
|
#define CVI_WDT_CCVR_COUNTER_Msk (0xffffffff << CVI_WDT_CCVR_COUNTER_Pos)
|
|
|
|
#define CVI_WDT_STAT_IRQ_STAT_Pos (0U)
|
|
#define CVI_WDT_STAT_IRQ_STAT_Msk (1U << CVI_WDT_STAT_IRQ_STAT_Pos)
|
|
|
|
#define CVI_WDT_STAT_IRQ_CLR_Pos (0U)
|
|
#define CVI_WDT_STAT_IRQ_CLR_Msk (1U << CVI_WDT_STAT_IRQ_STAT_Pos)
|
|
#define CVI_WDT_STAT_IRQ_CLR_En CVI_WDT_STAT_IRQ_CLR_Msk
|
|
|
|
#define CV_TOP 0x03000000
|
|
#define CV_TOP_WDT_OFFSET 0x8
|
|
#define CV_TOP_WDT_VAL 0x100
|
|
#define CV_RST_REG (CV_TOP + 0x3004)
|
|
#define CV_RST_WDT (1U << 16)
|
|
|
|
int rt_hw_wdt_init(void);
|
|
|
|
#endif /* __DRV_WDT_H__ */
|