Recently I have done some thoughts on STM32 and SD card communication. I have been plagued by the drive and application of SD for a long time. When I saw the SD simplified version of the physical layer protocol during the winter vacation, I was stupid. I saw the SD driver drive 3000. The line of code is also shaken. I looked at the relevant contents of the SD card several times in the past few days, summed up some experiences, and I feel that it is not so terrible. I decided to discuss the driver and application of SD from the layering, because it can build a clear logic, and I don't know which computer master once said: All computer problems can be solved in a layered way.
I have divided the SD card from driver to application into 4 layers, from bottom to top: driver layer, physical layer, file system layer, and application layer. Let's take a look at some of the important operations of each layer.
1) Driver layerThe driver layer, corresponding to the ST library, is the two files stm32f10x_sdio.c/.h. In fact, using any STM32 peripheral, as long as the library function is inseparable from the corresponding .c/.h file. For the SDIO peripheral, it is used to operate the register. Since it involves writing the ST library function, it is incapable of interpreting it. The implementation process is not described here.
2) Physical layerThis layer can be said to be the first layer, connected to the driver layer, used to operate the register, connected to the file system layer, used to manage files in a unified manner, can be described as the core code of the entire SD driver. In fact, if the requirements for SD are not high, you can directly perform file operations on this layer, but it is really inconvenient to operate without a file system. The reason why it is called the physical layer is because this part of the code mainly refers to the "SD card physical layer simplification protocol". This protocol specifies the format and timing of the various instructions that the controller operates on the SD card. This layer corresponds to the two files sdio_sdcard.c/.h in the source code, then what is its main function? The most important function of this layer is SD_Init() - the initialization function of the SD card. This function includes three important steps of power-on, identification, and card initialization of the SD card, corresponding to two sub-functions, SD_PowerOn and SD_IniTIalizeCards(), and the return value of SD_IniTIalizeCards() contains the type information of the card. The implementation of these two sub-functions is completed by sending the CMD command through the STM32 built-in SDIO controller. The transmission of this command must strictly follow the flow chart of the SD protocol, and the flag should be judged in time, otherwise it is easy to run the program. Sending a CMD command is done by filling in the SDIO_CmdInitStructure structure. for example:
SDIO_CmdInitStructure.SDIO_Argument = 0x00;
SDIO_CmdInitStructure.SDIO_CmdIndex = SD_CMD_APP_CMD;
SDIO_CmdInitStructure.SDIO_Response = SDIO_Response_Short;
SDIO_CmdInitStructure.SDIO_Wait = SDIO_Wait_No;
SDIO_CmdInitStructure.SDIO_CPSM = SDIO_CPSM_Enable;
This structure contains five parameters, which are controlled from top to bottom: parameters, command index, response format, wait, hardware flow control. Filling out the five structures will also configure a CMD command format, using the SDIO_SendCommand() function to send commands. Of course, this layer also contains initialization of some other peripherals - NVIC (configure interrupt vector priority), GPIO (IO port with SD slot configured), DMA (transfer using DMA mode). To sum up, this part is that the host (STM32) controls the SD card with the CMD command, so it is said that the function can be directly called for initialization and read and write operations at this level. So why is there a file system layer?
3) File system layerIts existence is used to manage files. An SD card, now the ordinary 8 G, if you use the physical layer to operate directly, it is necessary for the operator to remember the address, length, etc. of many files. These things were originally done by the computer, so people invented the file. The system is such a thing, used to manage large-capacity storage devices, to operate on the file system, the whole pattern is very large, but also higher-end atmospheric grades, otherwise it is necessary to write an address to call a file, what 0x20000f54 and the like The person who uses it must not be crazy. Having said that, the role of the file system is a management layer, connected to the physical layer of SD, used to send various CMD operations SDIO controller registers, the application function, the package is free to be called by the developer, it can be said It is also the key code to keep up. And fortunately, someone has written the vast majority of this code for you, you only need to make the right amount of modifications to build a file system for you. FATFS is a good person who has written something for you in a very distant place. This thing is very versatile, completely separate from the driver layer, leaving some interface functions. To which platform to migrate, fill in the corresponding interface. The function is fine. This interface connects the physical layer of the SD card and the operation functions of the file system. The ff.c/.h file corresponding to this layer is written by a very distant god. Therefore, I don’t know how to achieve it here.
4) Application layer This layer should be a layer played by hardware developers. Because the corresponding platform is different, the interface function of this layer is completely different. The application layer is composed of various interfaces left by the upper layer (file system layer). We fill in the interface function and run the file system directly. How to write the interface function? In addition to leaving the function name, FATFS leaves the parameters and the functions and formats corresponding to the parameters. The help file has the function to be implemented by the corresponding interface function. In fact, you can guess the help file through the name of the interface function. For example, disk_read is the read disk. To implement the disk reading function, this interface function must call various functions written in the physical layer, such as SD_ReadBlock(). As long as the child function and the parent function call parameters are consistent, this consistency requires the developer to fully understand the function. The parameters are functional. This part of the code is very small, it is not difficult to write, it is necessary to pay attention to remember the flag.
At this point, the SD operation function has been encapsulated, and only need to query the functions of various operation functions in FATFS can call it.
There are still many problems with the SD driver. I didn't figure out the problem. I just stepped on the source code and looked at the function implementation process. Then I was ready to try to transplant the file system. I hope it will succeed. The SD driver is still very interesting to do. It can achieve song playback and picture display by connecting with other peripherals, such as MP3 module or LCD module. It is quite a sense of accomplishment. I used to use electronic products before, but I didn’t expect to listen to the songs so complicated. From the original code of 0101 to the analog signal we saw and heard, after so many processes, I just had to sigh the wisdom of human beings. Endless.
SWITCH SOCKET
Guangdong Shunde Langzhi Trading CO., Ltd , https://www.langzhielectrical.com