1. SPI driver source file directoryLinux common spi driver. kernel - 4.14 / drivers / spi / spi.c General interface encapsulation layer driver provided by Linux spi controller driver, provided by IC manufacturers, with different names for different manufacturers. kernel - 4.14 / drivers / spi / spi - mt65xx.c MTK SPI controller driver dts. kernel - 4.14 / arch / arm / boot / dts / … The above files correspond to the following SPI driver software architecture: SPI controller driverThe SPI controller does not need to care about the specific functions of the device. It is only responsible for sending the data prepared by the upper-layer protocol driver to the SPI device according to the timing requirements of the SPI bus, and returning the data received from the device to the upper-layer protocol driver. Therefore, the kernel separates the driver program of the SPI controller. The SPI controller driver is responsible for controlling specific controller hardware, such as DMA and interrupt operations, etc. Because multiple upper-level protocol drivers may request data transfer operations through the controller, the SPI controller driver is also responsible for queue management of these requests to ensure the first-in-first-out principle. SPI general interface encapsulation layerIn order to simplify the programming of the SPI driver and reduce the coupling between the protocol driver and the controller driver, the kernel encapsulates some common operations of the controller driver and the protocol driver into a standard interface, plus some common logic processing operations, to form the SPI general interface encapsulation layer. The advantage of this is that for the controller driver, it only needs to implement the standard interface callback API and register it to the general interface layer, without directly interacting with the protocol layer driver. For the protocol layer driver, it only needs to complete the registration of the device and driver through the API provided by the general interface layer, and complete the data transmission through the API of the general interface layer, without paying attention to the implementation details of the SPI controller driver. SPI protocol driverThe specific functions of the SPI device are completed by the SPI protocol driver, which understands the functions of the device and the protocol format of the communication data. Downward, the protocol driver exchanges data with the controller through the general interface layer, and upward, the protocol driver usually interacts with other subsystems of the kernel according to the specific functions of the device. For example, we can interact with the MTD layer to implement a storage device with an SPI interface as a file system, interact with the TTY subsystem to implement an SPI device as a TTY device, and interact with the network subsystem to implement an SPI device as a network device. If it is a proprietary SPI device, we can also implement our own proprietary protocol driver according to the protocol requirements of the device. SPI generic device driverConsidering the variability of devices connected to the SPI controller, there is no corresponding protocol driver in the kernel. For this case, the kernel prepares a general SPI device driver for us. The general device driver provides a control interface for controlling SPI control to the user space. The specific protocol control and data transmission are completed by the user space according to the specific device. In this way, only a synchronous method can be used to communicate with the SPI device, so it is usually used for some simple SPI devices with less data volume. 2. SPI general interface layer
kernel-4.14/drivers/spi/spi.c. static int __init spi_init ( void ) The SPI bus is created here, and the /sys/bus/spi node and /sys/class/spi_master node are created. Important data structures: spi_device Important APIs. spi_message_init Next, we will analyze the structure and API in detail, only explaining the key parts. For a complete analysis, please refer to the official documentation: https://www.kernel.org/doc/html/v4.14//driver-api/spi.html. Only by being familiar with what is stored in each structure can you truly understand the SPI module. spi_master/spi_controller: describes a spi master device. struct spi_master { spi_device: describes a spi slave device. struct spi_device { spi_driver: describes a spi device driver. struct spi_driver { spi_board_info: describes the board-level information of a spi slave device, used when there is no device tree. struct spi_board_info { spi_transfer: describes the specific data transmitted by spi. struct spi_transfer { spi_message: Information describing a spi transmission. struct spi_message { QueuingSPI data transmission can be done in two ways: synchronous and asynchronous. Synchronous mode: The initiator of data transmission must wait for the end of this transmission and cannot do other things during this period. To explain it in code, after calling the transmission function, the function will not return until the data transmission is completed. Asynchronous mode: The initiator of data transmission does not need to wait for the end of the transmission, and can do other things during the data transmission. To explain it in code, after calling the transmission function, the function will return immediately without waiting for the data transmission to be completed. We only need to set a callback function. After the transmission is completed, the callback function will be called to notify the initiator that the data transmission has been completed. The synchronous method is simple and easy to use, and is very suitable for processing single transmission of small amounts of data. However, for transmission of large amounts of data and frequent transmissions, the asynchronous method is more suitable. For the SPI controller, the following two conditions must be considered to support asynchronous mode:
Queuing is to solve the above problems. Queuing means putting the messages waiting to be transmitted into a waiting queue. Initiating a transmission operation actually means putting the corresponding messages into a waiting queue in order. The system will continuously detect whether there are messages waiting to be transmitted in the queue. If there are, the data transmission kernel thread will be continuously scheduled to take out the messages in the queue one by one for processing until the queue becomes empty. The SPI general interface layer implements the basic framework of queuing for us. spi_message is an atomic operation of SPI data exchange and cannot be interrupted. 3. SPI controller driver layerThe SPI controller driver layer is responsible for the lowest level of data transmission and reception, and has the following main functions:
SPI master driver is the SPI controller driver of SOC. Linux kernel uses spi_master/spi_controller to represent SPI master driver. spi_master is a structure defined in include/linux/spi/spi.h file. The core of the SPI master driver is to apply for spi_master, then initialize spi_master, and finally register spi_master with the Linux kernel. The API is as follows: spi_alloc_master function: apply for spi_master. SPI master driver loadingTake MTK as an example, the source code comes from Xiaomi open source project: https://github.com/MiCode/Xiaomi_Kernel_OpenSource. Every time Xiaomi starts a project, it will open source the kernel part because it needs to comply with the Linux GPL open source agreement. 【Device】Declared in the device tree kernel - 4.14 / arch / arm64 / boot / dts / mediatek / mt6885.dts 【drive】kernel-4.14/drivers/spi/spi-mt65xx.c. After matching, the probe function is executed, spi_master is applied for, spi_master is initialized, and finally spi_master is registered with the Linux kernel. 4. Software ProcessIf you understand this diagram, you will have a complete understanding of the SPI driver framework. 1, 2, 3 are executed in sequence. First, the SPI bus is registered, then the SPI controller driver is loaded, and then the device driver is loaded. The difference is that when the spi controller driver is loaded, it relies on the platform bus to match the device (controller) and the driver. When the spi device driver is loaded, it relies on the spi bus to match the device (peripheral IC) and the driver. init flowCall sequence diagram of spi_register_masterQueuing working mechanism and processWhen the protocol driver initiates a message request through spi_async, the queue and worker threads are activated, triggering a series of operations and finally completing the message transmission operation. spi_sync is similar to spi_async, except that there is a wait process. 5. SPI device driver【Device】Declared in the device tree. Note: In the device declaration, the slave device node should be included under the &spi node you want to mount, and bind the device to the master. Then specify the GPIO through the pinctrl method and operate the pinctrl handle in the driver. 【Driver】demoThe Linux kernel uses the spi_driver structure to represent the spi device driver. We need to implement spi_driver when writing SPI device drivers. The spi_driver structure is defined in the include/linux/spi/spi.h file. spi_register_driver: Register spi_driver /* probe function */ Call spi_register_driver in the driver entry function to register spi_driver. Call spi_unregister_driver in the driver exit function to unregister spi_driver. spi read and write data demo. /* SPI multi-byte transmission */ In addition to init, exit, probe, remove, read, and write functions, other functions are implemented according to requirements. These are the most basic. 6. SummaryLinux is a framework of buses, devices, and drivers. If you understand this framework, you can understand all module driver frameworks. SPI driver is much simpler than I2C driver. |
<<: A comprehensive guide to IP addresses
>>: An article to introduce you to network protocols
Friendhosting released this year's Black Frid...
As a product of the deep integration and applicat...
[51CTO.com original article] Huawei recently rele...
In the past two years, with the rise of big model...
At 2:30 pm on July 28, 2020, the Maker Beijing 20...
[51CTO.com original article] On March 22, Huawei ...
The networking industry is changing rapidly, and ...
The tribe has shared information about RepriseHos...
At HUAWEI CONNECT 2017, Huawei released the SD-WA...
[[277794]] The core of the service framework The ...
[[393747]] When it comes to 5G, is your first rea...
The Network Management Guide explains the challen...
The summer of 2022 is coming, and the person to t...
[[406813]] There is a saying in the martial arts ...
Part 01: Background China Mobile Group has furthe...