2022-11-10 22:22:48 +08:00
|
|
|
|
/*
|
|
|
|
|
* Copyright : (C) 2022 Phytium Information Technology, Inc.
|
|
|
|
|
* All Rights Reserved.
|
|
|
|
|
*
|
|
|
|
|
* This program is OPEN SOURCE software: you can redistribute it and/or modify it
|
|
|
|
|
* under the terms of the Phytium Public License as published by the Phytium Technology Co.,Ltd,
|
|
|
|
|
* either version 1.0 of the License, or (at your option) any later version.
|
|
|
|
|
*
|
|
|
|
|
* This program is distributed in the hope that it will be useful,but WITHOUT ANY WARRANTY;
|
|
|
|
|
* without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
|
|
|
|
|
* See the Phytium Public License for more details.
|
|
|
|
|
*
|
|
|
|
|
*
|
|
|
|
|
* FilePath: fwdt_sinit.c
|
|
|
|
|
* Date: 2022-02-10 14:53:42
|
|
|
|
|
* LastEditTime: 2022-02-25 11:45:05
|
2023-05-11 10:25:21 +08:00
|
|
|
|
* Description: This file is for wdt static variables implementation.
|
2022-11-10 22:22:48 +08:00
|
|
|
|
*
|
|
|
|
|
* Modify History:
|
|
|
|
|
* Ver Who Date Changes
|
|
|
|
|
* ----- ------ -------- --------------------------------------
|
2023-05-11 10:25:21 +08:00
|
|
|
|
* 1.0 wangxiaodong 2022/4/25 init commit
|
2022-11-10 22:22:48 +08:00
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/***************************** Include Files *********************************/
|
|
|
|
|
|
|
|
|
|
#include "fwdt.h"
|
|
|
|
|
#include "fparameters.h"
|
|
|
|
|
|
|
|
|
|
#define FWDT_DEBUG_TAG "WDT_SINIT"
|
|
|
|
|
#define FWDT_ERROR(format, ...) FT_DEBUG_PRINT_E(FWDT_DEBUG_TAG, format, ##__VA_ARGS__)
|
|
|
|
|
#define FWDT_WARN(format, ...) FT_DEBUG_PRINT_W(FWDT_DEBUG_TAG, format, ##__VA_ARGS__)
|
|
|
|
|
#define FWDT_INFO(format, ...) FT_DEBUG_PRINT_I(FWDT_DEBUG_TAG, format, ##__VA_ARGS__)
|
|
|
|
|
#define FWDT_DEBUG(format, ...) FT_DEBUG_PRINT_D(FWDT_DEBUG_TAG, format, ##__VA_ARGS__)
|
|
|
|
|
|
|
|
|
|
|
2023-05-11 10:25:21 +08:00
|
|
|
|
extern FWdtConfig FWdtConfigTbl[FWDT_NUM];
|
2022-11-10 22:22:48 +08:00
|
|
|
|
/************************** Constant Definitions *****************************/
|
|
|
|
|
|
|
|
|
|
/**************************** Type Definitions *******************************/
|
|
|
|
|
|
|
|
|
|
/***************** Macros (Inline Functions) Definitions *********************/
|
|
|
|
|
|
|
|
|
|
/************************** Function Prototypes ******************************/
|
|
|
|
|
|
|
|
|
|
/*****************************************************************************/
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* @name: FWdtLookupConfig
|
|
|
|
|
* @msg: get wdt configs by id
|
|
|
|
|
* @param {u32} instance_id, id of wdt ctrl
|
|
|
|
|
* @return {FWdtConfig *}, wdt config address
|
|
|
|
|
*/
|
|
|
|
|
const FWdtConfig *FWdtLookupConfig(u32 instance_id)
|
|
|
|
|
{
|
|
|
|
|
const FWdtConfig *pconfig = NULL;
|
|
|
|
|
u32 index;
|
|
|
|
|
|
2023-05-11 10:25:21 +08:00
|
|
|
|
if (instance_id >= FWDT_NUM)
|
2022-11-10 22:22:48 +08:00
|
|
|
|
{
|
|
|
|
|
FWDT_ERROR("wdt id is not invalid.");
|
|
|
|
|
return NULL;
|
|
|
|
|
}
|
|
|
|
|
|
2023-05-11 10:25:21 +08:00
|
|
|
|
for (index = 0; index < (u32)FWDT_NUM; index++)
|
2022-11-10 22:22:48 +08:00
|
|
|
|
{
|
|
|
|
|
if (FWdtConfigTbl[index].instance_id == instance_id)
|
|
|
|
|
{
|
|
|
|
|
pconfig = &FWdtConfigTbl[index];
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
return (const FWdtConfig *)pconfig;
|
|
|
|
|
}
|
|
|
|
|
|