76 lines
2.5 KiB
C
76 lines
2.5 KiB
C
|
/*
|
|||
|
* 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
|
|||
|
* Description: This files is for
|
|||
|
*
|
|||
|
* Modify History:
|
|||
|
* Ver Who Date Changes
|
|||
|
* ----- ------ -------- --------------------------------------
|
|||
|
*/
|
|||
|
|
|||
|
|
|||
|
/***************************** 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__)
|
|||
|
|
|||
|
|
|||
|
extern FWdtConfig FWdtConfigTbl[FWDT_INSTANCE_NUM];
|
|||
|
/************************** 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;
|
|||
|
|
|||
|
if (instance_id >= FWDT_INSTANCE_NUM)
|
|||
|
{
|
|||
|
FWDT_ERROR("wdt id is not invalid.");
|
|||
|
return NULL;
|
|||
|
}
|
|||
|
|
|||
|
for (index = 0; index < (u32)FWDT_INSTANCE_NUM; index++)
|
|||
|
{
|
|||
|
if (FWdtConfigTbl[index].instance_id == instance_id)
|
|||
|
{
|
|||
|
pconfig = &FWdtConfigTbl[index];
|
|||
|
break;
|
|||
|
}
|
|||
|
}
|
|||
|
return (const FWdtConfig *)pconfig;
|
|||
|
}
|
|||
|
|