- c - 在位数组中找到第一个零
- linux - Unix 显示有关匹配两种模式之一的文件的信息
- 正则表达式替换多个文件
- linux - 隐藏来自 xtrace 的命令
我想知道是否有一种方法可以在不使用 file_operations 结构中提供的任何函数的情况下编写字符驱动程序。
我是 Linux 设备驱动程序的新手,就像任何新手一样,我开始阅读 LDD3书。我成功地编写了一个简单的字符驱动程序。
include<linux/module.h>
#include<linux/kernel.h>
#include<linux/fs.h>
#include<linux/cdev.h>
#include<linux/semaphore.h>
#include<linux/uaccess.h>
int chardev_init(void);
void chardev_exit(void);
static int device_open(struct inode *, struct file *);
static int device_close(struct inode *, struct file *);
static ssize_t device_read(struct file *, char *, size_t , loff_t *);
static ssize_t device_write(struct file *, const char *, size_t, loff_t *);
static loff_t device_lseek(struct file *filp, loff_t offset, int orig);
#define BUFFER_SIZE 1024
#define DEVICE_NAME "readWrite"
static char deviceBuffer[BUFFER_SIZE];
dev_t devNum; /* device number allocated by the kernel */
struct cdev *mcdev; /* name of the char driver that will be registered */
struct semaphore sem;
int majorNum;
int minorNum;
int ret;
static int device_open(struct inode *inode, struct file *filp)
{
if(down_interruptible(&sem) != 0)
{
printk(KERN_ALERT "%s: device has been opened by some other device, unable to open lock\n", DEVICE_NAME);
return -1;
}
printk(KERN_INFO "%s: device opened successfully\n", DEVICE_NAME);
return 0;
}
static ssize_t device_read(struct file *fp, char *buff, size_t length, loff_t *ppos)
{
int maxbytes; /* maximum bytes that can be read from ppos to BUFFER_SIZE */
int bytes_to_read; /* gives the number of bytes to read */
int bytes_read; /* number of bytes actually read */
maxbytes = BUFFER_SIZE - *ppos;
if(maxbytes > length)
bytes_to_read = length;
else
bytes_to_read = maxbytes;
if(bytes_to_read == 0)
printk(KERN_INFO "%s: reached the end of the device\n", DEVICE_NAME);
bytes_read = bytes_to_read - copy_to_user(buff, deviceBuffer + *ppos, bytes_to_read);
printk(KERN_INFO "%s: device has been read %d bytes\n", DEVICE_NAME, bytes_read);
*ppos += bytes_read;
printk(KERN_INFO "%s: device has been read\n", DEVICE_NAME);
return bytes_read;
}
static ssize_t device_write(struct file *fp, const char * buff, size_t length, loff_t *ppos)
{
int maxbytes; /* maximum bytes that can be written */
int bytes_to_write;
int bytes_written;
maxbytes = BUFFER_SIZE - *ppos;
if(maxbytes < length)
bytes_to_write = maxbytes;
else
bytes_to_write = length;
bytes_written = bytes_to_write - copy_from_user(deviceBuffer + *ppos, buff, bytes_to_write);
printk(KERN_INFO "%s: device has been written %d bytes\n", DEVICE_NAME, bytes_written);
*ppos += bytes_written;
printk(KERN_INFO "%s: device has been written %d\n", DEVICE_NAME, bytes_written);
return bytes_written;
}
static loff_t device_lseek(struct file *filp, loff_t offset, int orig)
{
loff_t new_pos = 0;
printk(KERN_INFO "%s: lseek function in work\n", DEVICE_NAME);
switch(orig)
{
case 0: /* seek set */
new_pos = offset;
break;
case 1: /* seek cur */
new_pos = filp->f_pos + offset;
break;
case 2: /* seek end */
new_pos = BUFFER_SIZE - offset;
break;
}
if(new_pos > BUFFER_SIZE)
new_pos = BUFFER_SIZE;
if(new_pos < 0)
new_pos = 0;
filp->f_pos = new_pos;
return new_pos;
}
static int device_close(struct inode *inode, struct file *filp)
{
up(&sem);
printk(KERN_INFO "%s: device has been closed\n", DEVICE_NAME);
return 0;
}
struct file_operations fops =
{
.owner = THIS_MODULE,
.read = device_read,
.write = device_write,
.llseek = device_lseek,
.release = device_close,
.open = device_open
};
int chardev_init(void)
{
/* get the major number dynamically */
ret = alloc_chrdev_region(&devNum, 0, 1, DEVICE_NAME);
if(ret < 0)
{
printk(KERN_ALERT "%s: failed to allocate major number\n", DEVICE_NAME);
return ret;
}
else
printk(KERN_INFO "%s: major number allocation successful\n", DEVICE_NAME);
majorNum = MAJOR(devNum);
minorNum = MINOR(devNum);
printk(KERN_INFO "%s: major number of our device is %d\n", DEVICE_NAME, majorNum);
printk(KERN_INFO "%s: minor number of our device is %d\n", DEVICE_NAME, minorNum);
printk(KERN_INFO "%s: to use mknod /dev/%s c %d 0\n", DEVICE_NAME, DEVICE_NAME, majorNum);
mcdev = cdev_alloc(); /* create, allocate and initialize our cdev structure */
mcdev->ops = &fops;
mcdev->owner = THIS_MODULE;
/* after creating and initializing our cdev structure, we need to add it to the kernel */
ret = cdev_add(mcdev, devNum, 1);
if(ret < 0)
{
printk(KERN_ALERT "%s: adding device to the kernel failed\n",DEVICE_NAME);
return ret;
}
else
printk(KERN_INFO "%s: adding device to the kernel successful\n", DEVICE_NAME);
sema_init(&sem, 1); /* initial value to 1 */
return 0;
}
void chardev_exit(void)
{
cdev_del(mcdev); /* removing the mcdev structure */
printk(KERN_INFO "%s: removed the mcdev from kernel\n", DEVICE_NAME);
unregister_chrdev_region(devNum,1);
printk(KERN_INFO "%s: unregistered the device numbers\n", DEVICE_NAME);
printk(KERN_ALERT "%s: character driver is exiting\n", DEVICE_NAME);
}
MODULE_AUTHOR("SJ");
MODULE_DESCRIPTION("read write char driver");
MODULE_LICENSE("GPL");
module_init(chardev_init);
module_exit(chardev_exit);
现在我开始了解更复杂的驱动程序,例如 this one ,但我完全不解。因为没有 file_operations 结构,所以没有 module_init() 或 module_exit() 函数。
我有很多问题,比如,
在 code 中分配主要编号的位置?
cdev结构在哪里?
如何处理读写操作?
有没有Linux嵌入式设备驱动编写经验的,帮我解答一下。
谢谢!
最佳答案
character 驱动程序是创建character 设备的驱动程序,即 /dev/
中的某个设备节点,允许您访问通过open
/read
/write
等系统调用驱动程序
对于以其他方式访问的设备,还有许多其他驱动程序类型。对于 SPI 驱动程序,内核 SPI 框架处理大部分设备管理; spi-omap2-mcspi
驱动程序注册自己的 spi_master
结构,该结构等同于通用 cdev
/fops
结构。
关于c - 是否可以在不使用 file_operations 结构的情况下编写字符驱动程序?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22836997/
关闭。这个问题不符合Stack Overflow guidelines .它目前不接受答案。 要求提供代码的问题必须表现出对所解决问题的最低限度理解。包括尝试过的解决方案、为什么它们不起作用,以及预
为什么在 C# 中添加两个 char 结果是 int 类型? 例如,当我这样做时: var pr = 'R' + 'G' + 'B' + 'Y' + 'P'; pr 变量变为 int 类型。我希望它是
下面的代码可以编译,但 char 类型的行为与 int 类型的行为不同。 特别是 cout ::ikIsX >() ::ikIsX >() ::ikIsX >() using names
我正在寻找一个正则表达式,它可以匹配长度为 1 个或多个字符但不匹配 500 的内容。这将在 Rails 路由文件中使用,特别是用于处理异常。 路线.rb match '/500', to: 'err
对于 C 编程作业,我正在尝试编写几个头文件来检查所谓的“X 编程语言”的语法。我最近才开始,正在编写第一个头文件。这是我编写的代码: #ifndef _DeclarationsChecker_h_
为什么扩展的 ascii 字符(â、é 等)被替换为 字符? 我附上了一张图片...但我正在使用 PHP 从 MySQL 中提取数据,其中一些位置有扩展字符...我使用的是 Arial 字体。 您可以
我有一个与 R 中的断线相关的简单问题。 我正在尝试粘贴,但在获取(字符/数字)之间的断线时遇到问题。请注意,这些值包含在向量中(V1=81,V2=55,V3=25)我已经尝试过这段代码: cat(p
如何将 ANSI 字符 (char) 转换为 Unicode 字符 (wchar_t),反之亦然? 是否有用于此目的的任何跨平台源代码? 最佳答案 是的,在 中你有mbstowcs()和 wcsto
函数 fromCharCode 不适用于国际 ANSI 字符。例如,对于 ID 为 192 到 223 的俄语 ANSI (cp-1251) 字符,它返回特殊字符。如何解决这个问题? 我认为,需要将A
如果不喜欢,我想隐藏 id,但不起作用 SELECT * FROM character, character_actor WHERE character.id NOT LIKE character_a
现在这个程序成功地反转了键盘输入的单词。但是我想在我反转它之前“保存”指针中的单词,所以我可以比较两者,反转的和“原始的”,并检查它们是否是回文。我还没有太多经验,可能会出现比我知道的更多的错误,但我
Memcpy 和 memcmp 函数可以接受指针变量吗? char *p; char* q; memcpy(p,q,10); //will this work? memcmp(p,q,10); //w
恐怕我对一个相当过饱和的主题的细节有疑问,我搜索了很多,但找不到一个明确的答案来解决这个特定的明显-imho-重要的问题: 使用UTF-8将byte[]转换为String时,每个字节(8bit)都变成
我有一个奇怪的问题。我需要从 stat 命令打印输出字符串。 我已经编写了获取一些信息的代码。 import glob import os for file in glob.glob('system1
我正在使用 Java 并具有其值如下所示的字符串, String data = "vale-cx"; data = data.replaceAll("\\-", "\\-\\"); 我正在替换其中的“
String urlParameters = "login=test&password=te&ff"; 我有一个String urlParams,& - 是密码的一部分,如何使其转义,从而不被识别为分
大家好,我只想从此字符串中提取第一个字母: String str = "使 徒 行 傳 16:31 ERV-ZH"; 我只想获取这些字符: 使 徒 行 傳 并且不包括 ERV-ZH 仅数
这个问题已经有答案了: Crash or "segmentation fault" when data is copied/scanned/read to an uninitialized point
所以, 我有一个字符**;它本质上是一个句子,带有指向该句子中每个单词的指针;即 'h''i''\0''w''o''r''l''d''\0''y''a''y''!''\0' 在这种情况下,我希望使用可
这个问题在这里已经有了答案: Using quotation marks inside quotation marks (12 个答案) 关闭 7 年前。 如何打印 " 字符? 我知道打印 % 符号
我是一名优秀的程序员,十分优秀!