/****************** * Advanced character device driver *********************/ (1)ioctl In addition to reading and writing to devices, most drivers require the ability to perform various types of hardware control through device drivers. For example, eject media, change baud rate, etc. These operations are supported via the ioctl method, which implements the system call of the same name. In user space, the prototype of the ioctl system call is:
The prototypes of the driver's ioctl methods are slightly different from the userspace versions:
Most ioctl implementations include a switch statement to select the corresponding operation based on the cmd parameter. The command numbers in user space and kernel space must be consistent. (2) Select the ioctl command number Before writing ioctl code, you need to choose numbers corresponding to different commands. You can't simply choose the number starting from 0 or 1, because Linux requires that this command number should be unique system-wide. The Linux kernel uses a convention to select ioctl numbers for drivers. You can refer to include/asm/ioctl.h and Documentation/ioctl-number.txt. An ioctl number is 32 bits long. Linux divides it into four parts. The macros needed to construct an ioctl number are defined in <linux/ioctl.h>:
You can use the macros in <linux/ioctl.h> to construct an ioctl number
Return Value For system calls, positive return values are protected first, while negative values are considered an error and are used to set the error variable in user space. If an undefined ioctl number is passed in when calling the ioctl method, the error value returned by the system is -ENVAL and -ENOTTY. (3) Blocking and non-blocking operations For operations such as read and write, the default operation is blocking, and its characteristics are: *If a process calls read but there is no data to read, the process must block. When data arrives, the process is awakened and the data is returned to the caller, even if the amount of data is less than the data specified by the count parameter. *If a process calls write but there is no space in the buffer, this process must block and must sleep on a wait queue different from the reading process. When some data is written to the hardware device, thus freeing up part of the output buffer, the process is awakened and the write call succeeds. Sometimes we want to change this feature and make it non-blocking, so that the read/write method returns immediately regardless of whether the device has data to read or write. If you want to set a file to be non-blocking, you should set the O_NONBLOCK flag of filp->f_flags. When dealing with non-blocking files, applications must be very careful when calling stdio functions, because it is easy to mistake a non-blocking return for EOF, so errno must always be checked. (4) Asynchronous Notification a. The role of asynchronous notification Most of the time a combination of blocking and non-blocking operations and the select method can effectively query the device, but there are times when this technique is not efficient. In the face of certain random or rarely occurring situations (such as typing CTRL+C on the keyboard), asynchronous notification is required. b. How to start asynchronous notification in user space program To start the asynchronous notification mechanism for a file, the user program must perform two steps:
(5) How to implement asynchronous notification in the driver a. Correspondence of user space operations in the kernel
b. Add the fasync_struct pointer to the device structure This structure is defined in <linux/fs.h>: struct fasync_struct { int magic; int fa_fd; struct fasync_struct *fa_next; struct file *fa_file; }; c. Two functions to be called by the driver These two functions are declared in <linux/fs.h>. Defined in /fs/fcntl.c. The prototype is as follows:
When the FASYNC flag of an open file is modified, fasync_helper is called to add or remove the file from the list of associated processes, and kill_fasync notifies all associated processes when data arrives. d. Example 01. Define the fasync_struct dynamic data structure in the device type struct my_pipe { struct fasync_struct *async_queue; /* Asynchronous read structure*/ ...... }; 02. The fasync function in the driver calls fasync_helper int my_fasync(fasync_file fd, struct file *filp, int mode) { my_pipe *dev = filp->private_data; return fasync_helper(fd, filp, mode, &dev->async_queue); } 03. Call kill_fasync when the asynchronous notification conditions are met The asynchronous notification is for a reading process, so kill_fasync should be sent using write. Call kill_fasync to send the signal SIGIO to all processes registered in the asynchronous queue async_queue on the device. ssize_t my_write(struct file *filp, const char *buf, size_t count, loff_t *f_pos) { ...... if (dev->async_queue) kill_fasync(&dev->async_queue, SIGIO, POLL_IN); ...... } 04. The fasync method must be called when closing a file The fasync method must be called when closing a file in order to remove the file from the list of active asynchronous readers. Call in release: scull_p_fasync(-1, filp, 0); Summarize The above is the full content of this article. I hope that the content of this article will have certain reference learning value for your study or work. Thank you for your support of 123WORDPRESS.COM. If you want to learn more about this, please check out the following links You may also be interested in:
|
<<: A brief discussion on common operations of MySQL in cmd and python
>>: Detailed graphic explanation of MySql5.7.18 character set configuration
In the previous chapters, we have learned how to ...
For sorting, order by is a keyword we use very fr...
Table of contents Preface call usage accomplish A...
Table of contents 1. Basic conditions for databas...
Make a blank space for Taobao: When you shrink th...
Overview It is usually not what we want to presen...
Preface During the development process, we someti...
mysql between boundary range The range of between...
<br />In HTML language, you can automaticall...
DIV background is semi-transparent, but the words ...
1. What is floating? Floating, as the name sugges...
Preface Before talking about covering index, we m...
Mongodb has a db.serverStatus() command, which ca...
The essence of a flat website structure is simpli...
In our daily work, we often come into contact wit...