/**************************************************************************** * hacking a friend's Linux buzzer driver in OK335xS * 说明: * 解读朋友的Linux buzzer驱动,作为后续相关编码的参考. * * 2015-8-25 晴 深圳 南山平山村 曾剑锋 **************************************************…
/***************************************************************************** * I.MX6 PWM buzzer driver hacking with Demo test * 声明: * 1. I.MX6和OK335xS实现PWM驱动函数是不一样的: * 2. 通过分析PWM驱动,了解有哪些驱动函数可以用: * 3. 使用I.MX6提供的PWM函数,编写测试用例buzzer驱动: * 4. 使用C编写测试程序.…
还是没有接触到怎么控制硬件,但是在书里看到了一个挺巧妙的环形缓冲区实现. 此环形缓冲区实际为一个大小为bufsize的一维数组,有一个rp的读指针,一个wp的写指针. 在数据满时写进程会等待读进程读取数据,数据为空时读进程会等待写进程写入数据. 在上次代码上改的,所以名字还是ioctldemo ioctldemo.c #include <linux/module.h> #include <linux/init.h> #include <linux/stat.h> #in…
Linux Device Driver 学习(1) 一.搭建虚拟机开发环境 1.选择虚拟机VirtualBox,官网下载.deb包安装: VirtualBox Linux 5.1.6 下载fedora 24 workstation iso镜像 Fedora 24 WorkStation 具体虚拟机的安装和Fedora的安装,这里不再详细描述,可以自己在网上找到. 第一次使用Fedora,估计也有很多坑. 特别的,如果使用Ubuntu在安装的时候如果没选择安装源码,则在/usr/src下虽然可以看…
Program for Linux USB-devices driver 開始啃硬骨头~ 这里我打算一步步给出USB device driver 的demo.希望有心能可以共同交流学习. 希望认识很多其它对Linux有兴趣的geek. 眼下因为环境和自身能力方面原因还没能做实物的測试,篇章的最后打算给出一个在x86上模拟USB读写的driver.以后可以做实物測试之后再更新this blog 我的联系方式: jasonleaster@gmail.com(因为偶不能登QQ,所以thunder bi…
how to write your first linux device driver 0. environment-ubuntu 1804 64bit 1. apt-get install linux-headers-$(uname -r) 2. code hello.c #include <linux/init.h> #include <linux/module.h> MODULE_LICENSE("Dual BSD/GPL"); static int he…
catalog . 设备驱动程序简介 . I/O体系结构 . 访问设备 . 与文件系统关联 . 字符设备操作 . 块设备操作 . 资源分配 . 总线系统 1. 设备驱动程序简介 设备驱动程序是内核的关键领域,在很多时候,判断一个操作系统的性能时,主要是通过现有驱动程序可用的外设数目和驱动程序对外设的支持程序来判断,例如 . 显卡驱动能够多大程序地发挥显卡硬件本身的性能 . 网卡驱动能否100%挖掘硬件的处理速度 .. 因此,内核源代码的相当大一部分是在致力于设备驱动程序的实现设备驱动程序基于中心…
To learn device driver development, like any other new knowledge, the bestapproach for me is to learn first the theory and then to do some practice. If you don't know about operating systems, I recommend "Willam Stalling's OS book" [1]. This boo…
It's so painful to install nVidia driver by hand on linux. If you remove it or you want to upgrade by all your hand, you ought to need be very patient about this stuff coz it will kill you a lot of time. first you need to download the latest driver f…
Debugging by Printing printk lets you classify messages accoring to their severity by associating different loglevels. There are eight possible loglevel strings,defined in the header linux/kernel.h; we list them in order of decreasing severity: KERN_…