Linux 蜂鸣器实验
Linux 蜂鸣器实验
1、修改设备树文件
I.MX6U-ALPHA开发板上的BEEP使用了SNVS_TAMPER1这个PIN,打开imx6ull-alientekemmc.dts,在 iomuxc 节点的 imx6ul-evk 子节点下创建一个名为“pinctrl_beep”的子节点,节点内容如下所示:
pinctrl_beep: beepgrp{
fsl,pins = <
MX6ULL_PAD_SNVS_TAMPER1__GPIO5_IO01 0x10B0 /* BEEP*/
>;
};
2、添加 BEEP 设备节点
beep {
#address-cells = <1>;
#size-cells = <1>;
compatible = "atkalpha-beep";
pinctrl-names = "default";
pinctrl-0 = <&pinctrl_beep>;
beep-gpio = <&gpio5 1 GPIO_ACTIVE_HIGH>;
status = "okay";
};
3、检查 PIN 是否被其他外设使用
在本章实验中蜂鸣器使用的 PIN 为 SNVS_TAMPER1,因此先检查 PIN 为 SNVS_TAMPER1这个 PIN 有没有被其他的 pinctrl 节点使用,如果有使用的话就要屏蔽掉,然后再检查GPIO5_IO01 这个 GPIO 有没有被其他外设使用,如果有的话也要屏蔽掉
4、驱动程序编写
驱动程序编写与上节课驱动led基本类似,具体内容如下:
#include <linux/types.h>
#include <linux/kernel.h>
#include <linux/delay.h>
#include <linux/ide.h>
#include <linux/init.h>
#include <linux/module.h>
#include <linux/errno.h>
#include <linux/gpio.h>
#include <linux/cdev.h>
#include <linux/device.h>
#include <linux/of.h>
#include <linux/of_address.h>
#include <linux/of_gpio.h>
#include <asm/mach/map.h>
#include <asm/uaccess.h>
#include <asm/io.h>
#define BEEP_CNT 1 /* 设备号个数 */
#define BEEP_NAME "beep" /* 名字 */
#define BEEPOFF 0 /* 关灯 */
#define BEEPON 1 /* 开灯 */
struct beep_dev
{
dev_t devid; /* 设备号 */
struct cdev cdev; /* cdev */
struct class *class; /* 类 */
struct device *device; /* 设备 */
int major; /* 主设备号 */
int minor; /* 次设备号 */
struct device_node *nd; /* 设备节点 */
int beep_gpio; /* beep 所使用的 GPIO 编号 */
};
struct beep_dev beep;
static int beep_open(struct inode *inode, struct file *filp)
{
filp->private_data = &beep; /* 设置私有数据 */
return 0;
}
/*
* @description : 从设备读取数据
* @param – filp : 要打开的设备文件(文件描述符)
* @param - buf : 返回给用户空间的数据缓冲区
* @param - cnt : 要读取的数据长度
* @param – offt : 相对于文件首地址的偏移
* @return : 读取的字节数,如果为负值,表示读取失败
*/
static ssize_t beep_read(struct file *filp, char __user *buf, size_t cnt, loff_t *offt)
{
return 0;
}
/*
73 * @description : 向设备写数据
74 * @param - filp : 设备文件,表示打开的文件描述符
75 * @param - buf : 要写给设备写入的数据
76 * @param - cnt : 要写入的数据长度
77 * @param – offt : 相对于文件首地址的偏移
78 * @return : 写入的字节数,如果为负值,表示写入失败
79 */
static ssize_t beep_write(struct file *filp, const char __user *buf, size_t cnt, loff_t *offt)
{
int retvalue;
unsigned char databuf[1];
unsigned char beepstat;
struct beep_dev *dev = filp->private_data;
retvalue = copy_from_user(databuf, buf, cnt);
if (retvalue < 0)
{
printk("kernel write faibeep!\r\n");
return -EFAULT;
}
beepstat = databuf[0]; /* 获取状态值 */
if (beepstat == BEEPON)
{
gpio_set_value(dev->beep_gpio, 0); /* 打开 beep 灯 */
}
else if (beepstat == BEEPOFF)
{
gpio_set_value(dev->beep_gpio, 1); /* 关闭 beep 灯 */
}
return 0;
}
/*
104 * @description : 关闭/释放设备
105 * @param – filp : 要关闭的设备文件(文件描述符)
106 * @return : 0 成功;其他 失败
*/
static int beep_release(struct inode *inode, struct file *filp)
{
return 0;
}
/* 设备操作函数 */
static struct file_operations beep_fops = {
.owner = THIS_MODULE,
.open = beep_open,
.read = beep_read,
.write = beep_write,
.release = beep_release,
};
static int __init beep_init(void)
{
int ret = 0;
/* 设置 beep 所使用的 GPIO */
/* 1、获取设备节点: beep */
beep.nd = of_find_node_by_path("/beep");
if (beep.nd == NULL)
{
printk("beep node cant not found!\r\n");
return -EINVAL;
}
else
{
printk("beep node has been found!\r\n");
}
/* 2、 获取设备树中的 gpio 属性,得到 beep 所使用的 beep 编号 */
beep.beep_gpio = of_get_named_gpio(beep.nd, "beep-gpio", 0);
if (beep.beep_gpio < 0)
{
printk("can't get beep-gpio");
return -EINVAL;
}
printk("beep-gpio num = %d\r\n", beep.beep_gpio);
ret = gpio_direction_output(beep.beep_gpio, 1);
if (ret < 0)
{
printk("can't set gpio!\r\n");
}
/*1、创建设备号*/
if (beep.major)
{
beep.devid = MKDEV(beep.major, 0);
register_chrdev_region(beep.devid, BEEP_CNT, BEEP_NAME);
}
else
{
alloc_chrdev_region(&beep.devid, 0, BEEP_CNT, BEEP_NAME);
beep.major = MAJOR(beep.devid);
beep.minor = MINOR(beep.devid);
}
printk("newchebeep major: %d minor: %d", beep.major, beep.minor);
beep.cdev.owner = THIS_MODULE;
cdev_init(&beep.cdev, &beep_fops);
cdev_add(&beep.cdev, beep.devid, BEEP_CNT);
beep.class = class_create(THIS_MODULE, BEEP_NAME);
if (IS_ERR(beep.class))
{
return PTR_ERR(beep.class);
}
beep.device = device_create(beep.class, NULL, beep.devid, NULL, BEEP_NAME);
if (IS_ERR(beep.device))
{
return PTR_ERR(beep.device);
}
return 0;
}
static void __exit beep_exit(void)
{
/* 注销字符设备驱动 */
cdev_del(&beep.cdev); /* 删除 cdev */
unregister_chrdev_region(beep.devid, BEEP_CNT);
device_destroy(beep.class, beep.devid);
class_destroy(beep.class);
}
module_init(beep_init);
module_exit(beep_exit);
MODULE_LICENSE("GPL");
MODULE_AUTHOR("wyw");
其余步骤仍旧和上一节编写驱动开发类似。
本文来自博客园,作者:Bathwind_W,转载请注明原文链接:https://www.cnblogs.com/bathwind/p/18242994