nysa-sdio-device
用Verilog编写的SDIO设备堆栈
状态:TLDR版本:仍在设计和编写Verilog内核
设计用于与SDIO主机接口。 辅助Linux驱动程序位于: :
代码组织:
rtl / sdio_stack.v(与应用程序交互的顶级文件)sdio_defines.v(此处为堆栈定义了定义)
generic/ (Small modules that are used throughout the code are here)
crc7.v (7-bit CRC Generator)
crc16.v (16-bit CRC Generator)
control/ (SDIO Card Controller)
sdio_card_control.v
cia/ (Common Information Area)
sdio_cia.v (T
1