SDIO使用指导
使用流程
使用SDIO的一般流程如图1所示。
打开SDIO控制器
在使用SDIO进行通信前,首先要调用SdioOpen获取SDIO控制器的设备句柄,该函数会返回指定总线号的SDIO控制器的设备句柄。
struct DevHandle *SdioOpen(int16_t busNum);
表 1 SdioOpen函数的参数和返回值描述
打开SDIO控制器的示例如下:
struct DevHandle *handle = NULL;
int16_t busNum = 1;
/* 打开总线号为1的SDIO控制器 */
handle = SdioOpen(busNum);
if (handle == NULL) {
HDF_LOGE("SdioOpen: failed!\n");
}
独占HOST
获取到SDIO控制器的设备句柄之后,需要先独占HOST才能进行SDIO后续的一系列操作,独占HOST函数如下所示:
void SdioClaimHost(struct DevHandle *handle);
表 2 SdioClaimHost函数的参数描述
独占HOST示例如下:
SdioClaimHost(handle); /* 独占HOST */
使能SDIO设备
在访问寄存器之前,需要先使能SDIO设备,使能SDIO设备的函数如下所示:
int32_t SdioEnableFunc(struct DevHandle *handle);
表 3 SdioEnableFunc函数的参数和返回值描述
使能SDIO设备的示例如下:
int32_t ret;
/* 使能SDIO设备 */
ret = SdioEnableFunc(handle);
if (ret != 0) {
HDF_LOGE("SdioEnableFunc: failed, ret %d\n", ret);
}
注册SDIO中断
在通信之前,还需要注册SDIO中断,注册SDIO中断函数如下图所示:
int32_t SdioClaimIrq(struct DevHandle *handle, SdioIrqHandler *handler);
表 4 SdioClaimIrq函数的参数和返回值描述
注册SDIO中的示例如下:
/* 中断服务函数需要根据各自平台的情况去实现 */
static void SdioIrqFunc(void *data)
{
if (data == NULL) {
HDF_LOGE("SdioIrqFunc: data is NULL.\n");
return;
}
/* 需要开发者自行添加具体实现 */
}
int32_t ret;
/* 注册SDIO中断 */
ret = SdioClaimIrq(handle, SdioIrqFunc);
if (ret != 0) {
HDF_LOGE("SdioClaimIrq: failed, ret %d\n", ret);
}
进行SDIO通信
- 向SDIO设备增量写入指定长度的数据
对应的接口函数如下所示:
int32_t SdioWriteBytes(struct DevHandle *handle, uint8_t *data, uint32_t addr, uint32_t size, uint32_t timeOut);
表 5 SdioWriteBytes函数的参数和返回值描述
向SDIO设备增量写入指定长度的数据的示例如下:
int32_t ret;
uint8_t wbuff[] = {1,2,3,4,5};
uint32_t addr = 0x100 + 0x09;
/* 向SDIO设备起始地址0x109,增量写入5个字节的数据 */
ret = SdioWriteBytes(handle, wbuff, addr, sizeof(wbuff) / sizeof(wbuff[0]), 0);
if (ret != 0) {
HDF_LOGE("SdioWriteBytes: failed, ret %d\n", ret);
}
- 从SDIO设备增量读取指定长度的数据
对应的接口函数如下所示:
int32_t SdioReadBytes(struct DevHandle *handle, uint8_t *data, uint32_t addr, uint32_t size, uint32_t timeOut);
表 6 SdioReadBytes函数的参数和返回值描述
从SDIO设备增量读取指定长度的数据的示例如下:
int32_t ret;
uint8_t rbuff[5] = {0};
uint32_t addr = 0x100 + 0x09;
/* 从SDIO设备起始地址0x109,增量读取5个字节的数据 */
ret = SdioReadBytes(handle, rbuff, addr, 5, 0);
if (ret != 0) {
HDF_LOGE("SdioReadBytes: failed, ret %d\n", ret);
}
向SDIO设备的固定地址写入指定长度的数据
对应的接口函数如下所示:
int32_t SdioWriteBytesToFixedAddr(struct DevHandle *handle, uint8_t *data, uint32_t addr, uint32_t size, uint32_t timeOut)
表 7 SdioWriteBytesToFixedAddr函数的参数和返回值描述
向SDIO设备的固定地址写入指定长度的数据的示例如下:
int32_t ret;
uint8_t wbuff[] = {1,2,3,4,5};
uint32_t addr = 0x100 + 0x09;
/* 向SDIO设备固定地址0x109写入5个字节的数据 */
ret = SdioWriteBytesToFixedAddr(handle, wbuff, addr, sizeof(wbuff) / sizeof(wbuff[0]), 0);
if (ret != 0) {
HDF_LOGE("SdioWriteBytesToFixedAddr: failed, ret %d\n", ret);
}
从SDIO设备的固定地址读取指定长度的数据
对应的接口函数如下所示:
int32_t SdioReadBytesFromFixedAddr(struct DevHandle *handle, uint8_t *data, uint32_t addr, uint32_t size, uint32_t timeOut)
表 8 SdioReadBytesFromFixedAddr函数的参数和返回值描述
从SDIO设备的固定地址读取指定长度的数据的示例如下:
int32_t ret;
uint8_t rbuff[5] = {0};
uint32_t addr = 0x100 + 0x09;
/* 从SDIO设备固定地址0x109中读取5个字节的数据 */
ret = SdioReadBytesFromFixedAddr(handle, rbuff, addr, 5, 0);
if (ret != 0) {
HDF_LOGE("SdioReadBytesFromFixedAddr: failed, ret %d\n", ret);
}
- 向SDIO function 0的指定地址空间写入指定长度的数据
当前只支持写入一个字节的数据,对应的接口函数如下所示:
int32_t SdioWriteBytesToFunc0(struct DevHandle *handle, uint8_t *data, uint32_t addr, uint32_t size, uint32_t timeOut);
表 9 SdioWriteBytesToFunc0函数的参数和返回值描述
向SDIO function 0的指定地址空间写入指定长度的数据的示例如下:
int32_t ret;
uint8_t wbuff = 1;
/* 向SDIO function 0地址0x2中写入1字节的数据 */
ret = SdioWriteBytesToFunc0(handle, &wbuff, 0x2, 1, 0);
if (ret != 0) {
HDF_LOGE("SdioWriteBytesToFunc0: failed, ret %d\n", ret);
}
- 从SDIO function 0的指定地址空间读取指定长度的数据
当前只支持读取一个字节的数据,对应的接口函数如下所示:
int32_t SdioReadBytesFromFunc0(struct DevHandle *handle, uint8_t *data, uint32_t addr, uint32_t size, uint32_t timeOut);
表 10 SdioReadBytesFromFunc0函数的参数和返回值描述
从SDIO function 0的指定地址空间读取指定长度的数据的示例如下:
int32_t ret;
uint8_t rbuff;
/* 从SDIO function 0设备地址0x2中读取1字节的数据 */
ret = SdioReadBytesFromFunc0(handle, &rbuff, 0x2, 1, 0);
if (ret != 0) {
HDF_LOGE("SdioReadBytesFromFunc0: failed, ret %d\n", ret);
}
释放SDIO中断
通信完成之后,需要释放SDIO中断,函数如下所示:
int32_t SdioReleaseIrq(struct DevHandle *handle);
表 11 SdioReleaseIrq函数的参数和返回值描述
释放SDIO中断的示例如下:
int32_t ret;
/* 释放SDIO中断 */
ret = SdioReleaseIrq(handle);
if (ret != 0) {
HDF_LOGE("SdioReleaseIrq: failed, ret %d\n", ret);
}
去使能SDIO设备
通信完成之后,还需要去使能SDIO设备,函数如下所示:
int32_t SdioDisableFunc(struct DevHandle *handle);
表 12 SdioDisableFunc函数的参数和返回值描述
去使能SDIO设备的示例如下:
int32_t ret;
/* 去使能SDIO设备 */
ret = SdioDisableFunc(handle);
if (ret != 0) {
HDF_LOGE("SdioDisableFunc: failed, ret %d\n", ret);
}
释放HOST
通信完成之后,还需要释放去HOST,函数如下所示:
void SdioReleaseHost(struct DevHandle *handle);
表 13 SdioReleaseHost函数的参数描述
释放HOST的示例如下:
SdioReleaseHost(handle); /* 释放HOST */
关闭SDIO控制器
SDIO通信完成之后,最后需要关闭SDIO控制器,函数如下所示:
void SdioClose(struct DevHandle *handle);
该函数会释放掉申请的资源。
表 14 SdioClose函数的参数描述
关闭SDIO控制器的示例如下:
SdioClose(handle); /* 关闭SDIO控制器 */