rt-thread/bsp/phytium/libraries/standalone/drivers/mmc/fsdio/fsdio_sinit.c

64 lines
2.1 KiB
C
Raw Normal View History

/*
* 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: fsdio_sinit.c
* Date: 2022-02-10 14:53:42
* LastEditTime: 2022-02-18 08:48:41
* Description:  This file is for static init
*
* Modify History:
* Ver   Who        Date         Changes
* ----- ------     --------    --------------------------------------
* 1.0 zhugengyu 2021/12/2 init
* 1.1 zhugengyu 2022/6/6 modify according to tech manual.
*/
/***************************** Include Files *********************************/
#include "ftypes.h"
#include "fparameters.h"
#include "fsdio.h"
/************************** Constant Definitions *****************************/
/**************************** Type Definitions *******************************/
/***************** Macros (Inline Functions) Definitions *********************/
/************************** Variable Definitions *****************************/
extern const FSdioConfig FSDIO_CONFIG_TBL[FSDIO_NUM];
/************************** Function Prototypes ******************************/
/**
* @name: FSdioLookupConfig
* @msg: Get the device instance default configure
* @return {const FSdioConfig *} default configure
* @param {u32} instance_id
*/
const FSdioConfig *FSdioLookupConfig(u32 instance_id)
{
const FSdioConfig *ptr = NULL;
u32 index;
for (index = 0; index < (u32)FSDIO_NUM; index++)
{
if (FSDIO_CONFIG_TBL[index].instance_id == instance_id)
{
ptr = &FSDIO_CONFIG_TBL[index];
break;
}
}
return (const FSdioConfig *)ptr;
}