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: fsdio_g.c
|
|
|
|
|
* Date: 2022-02-10 14:53:42
|
|
|
|
|
* LastEditTime: 2022-02-18 08:37:44
|
2023-05-11 10:25:21 +08:00
|
|
|
|
* Description: This file is for static init
|
2022-11-10 22:22:48 +08:00
|
|
|
|
*
|
|
|
|
|
* 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"
|
|
|
|
|
#include "fsdio_hw.h"
|
|
|
|
|
|
|
|
|
|
/************************** Constant Definitions *****************************/
|
|
|
|
|
|
|
|
|
|
/**************************** Type Definitions *******************************/
|
|
|
|
|
|
|
|
|
|
/***************** Macros (Inline Functions) Definitions *********************/
|
|
|
|
|
|
|
|
|
|
/************************** Function Prototypes ******************************/
|
|
|
|
|
|
|
|
|
|
/************************** Variable Definitions *****************************/
|
|
|
|
|
|
2023-05-11 10:25:21 +08:00
|
|
|
|
const FSdioConfig FSDIO_CONFIG_TBL[FSDIO_NUM] =
|
2022-11-10 22:22:48 +08:00
|
|
|
|
{
|
2023-05-11 10:25:21 +08:00
|
|
|
|
[FSDIO0_ID] =
|
2022-11-10 22:22:48 +08:00
|
|
|
|
{
|
2023-05-11 10:25:21 +08:00
|
|
|
|
.instance_id = FSDIO0_ID,
|
|
|
|
|
.base_addr = FSDIO0_BASE_ADDR,
|
|
|
|
|
.irq_num = FSDIO0_IRQ_NUM,
|
2022-11-10 22:22:48 +08:00
|
|
|
|
.trans_mode = FSDIO_IDMA_TRANS_MODE,
|
|
|
|
|
.voltage = FSDIO_SD_3_3V_VOLTAGE,
|
2023-05-11 10:25:21 +08:00
|
|
|
|
.non_removable = FALSE,
|
|
|
|
|
.filp_resp_byte_order = FALSE
|
2022-11-10 22:22:48 +08:00
|
|
|
|
},
|
|
|
|
|
|
2023-05-11 10:25:21 +08:00
|
|
|
|
[FSDIO1_ID] =
|
2022-11-10 22:22:48 +08:00
|
|
|
|
{
|
2023-05-11 10:25:21 +08:00
|
|
|
|
.instance_id = FSDIO1_ID,
|
|
|
|
|
.base_addr = FSDIO1_BASE_ADDR,
|
|
|
|
|
.irq_num = FSDIO1_IRQ_NUM,
|
2022-11-10 22:22:48 +08:00
|
|
|
|
.trans_mode = FSDIO_IDMA_TRANS_MODE,
|
|
|
|
|
.voltage = FSDIO_SD_3_3V_VOLTAGE,
|
2023-05-11 10:25:21 +08:00
|
|
|
|
.non_removable = FALSE,
|
|
|
|
|
.filp_resp_byte_order = FALSE
|
2022-11-10 22:22:48 +08:00
|
|
|
|
}
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/*****************************************************************************/
|