67 lines
2.2 KiB
C
67 lines
2.2 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: fi2c_sinit.c
|
||
* Date: 2022-02-10 14:53:42
|
||
* LastEditTime: 2022-02-18 08:36:52
|
||
* Description: This files is for
|
||
*
|
||
* Modify History:
|
||
* Ver Who Date Changes
|
||
* ----- ------ -------- --------------------------------------
|
||
*/
|
||
|
||
|
||
|
||
/* - This file contains the implementation of driver's static initialization functionality.
|
||
- 驱动静态初始化 */
|
||
|
||
/***************************** Include Files *********************************/
|
||
|
||
#include "ftypes.h"
|
||
#include "fparameters.h"
|
||
#include "fi2c.h"
|
||
#include "sdkconfig.h"
|
||
/************************** Constant Definitions *****************************/
|
||
|
||
/**************************** Type Definitions *******************************/
|
||
|
||
/***************** Macros (Inline Functions) Definitions *********************/
|
||
|
||
/************************** Variable Definitions *****************************/
|
||
|
||
extern const FI2cConfig FI2C_CONFIG_TBL[I2C_INSTANCE_NUM];
|
||
/************************** Function Prototypes ******************************/
|
||
/**
|
||
* @name: FI2cLookupConfig
|
||
* @msg: 获取I2C驱动的默认配置参数
|
||
* @return {const FI2cConfig*} 驱动默认参数
|
||
* @param {u32} instance_id, 当前控制的I2C控制器实例号
|
||
*/
|
||
const FI2cConfig *FI2cLookupConfig(u32 instance_id)
|
||
{
|
||
const FI2cConfig *ptr = NULL;
|
||
u32 index;
|
||
|
||
for (index = 0; index < (u32)I2C_INSTANCE_NUM; index++)
|
||
{
|
||
if (FI2C_CONFIG_TBL[index].instance_id == instance_id)
|
||
{
|
||
ptr = &FI2C_CONFIG_TBL[index];
|
||
break;
|
||
}
|
||
}
|
||
|
||
return (const FI2cConfig *)ptr;
|
||
}
|