led_dev.c驱动源码:
#include "linux/module.h"
#include "linux/version.h"
#include "linux/init.h"
#include "linux/kernel.h"
#include "linux/types.h"
#include "linux/interrupt.h"
#include "linux/list.h"
#include "linux/timer.h"
#include "linux/init.h"
#include "linux/serial_core.h"
#include "linux/platform_device.h"
// 分配/设置/注册一个platform_device
static struct resource led_resource[] = {
[0] = {
.start = 0xE0200280,
.end = 0xE0200280 + 8 - 1,
.flags = IORESOURCE_MEM,
},
[1] = {
.start = 0,
.end = 0,
.flags = IORESOURCE_IRQ,
}
};
static void led_release(struct device * dev)
{
}
static struct platform_device led_dev = {
.name = "myled",
.id = -1,
.num_resources = ARRAY_SIZE(led_resource),
.resource = led_resource,
.dev = {
.release = led_release,
},
};
static int led_dev_init(void)
{
platform_device_register(&led_dev);
return 0;
}
static void led_dev_exit(void)
{
platform_device_unregister(&led_dev);
}
module_init(led_dev_init);
module_exit(led_dev_exit);
MODULE_LICENSE("GPL");
===================================================================
led_drv.c驱动源码:
// 分配/设置/注册一个platform_driver
#include "linux/module.h"
#include "linux/version.h"
#include "linux/init.h"
#include "linux/fs.h"
#include "linux/interrupt.h"
#include "linux/irq.h"
#include "linux/sched.h"
#include "linux/pm.h"
#include "linux/sysctl.h"
#include "linux/proc_fs.h"
#include "linux/delay.h"
#include "linux/platform_device.h"
#include "linux/input.h"
#include "linux/irq.h"
#include "asm/uaccess.h"
#include "asm/io.h"
static int major;
static struct class *cls;
static volatile unsigned long *gpio_con;
static volatile unsigned long *gpio_dat;
static int pin;
static int led_open(struct inode *inode, struct file *file)
{
//printk("first_drv_open\n");
// 配置为输出
*gpio_con &= ~(0xf<<(pin*4));
*gpio_con |= (0x1<<(pin*4));
return 0;
}
static ssize_t led_write(struct file *file, const char __user *buf, size_t count, loff_t * ppos)
{
int val;
//printk("first_drv_write\n");
copy_from_user(&val, buf, count); // copy_to_user();
if (val == 1)
{
// 点灯
*gpio_dat &= ~(1< } else { // 灭灯 *gpio_dat |= (1< } return 0; } static struct file_operations led_fops = { .owner = THIS_MODULE, // 这是一个宏,推向编译模块时自动创建的__this_module变量 .open = led_open, .write = led_write, }; static int led_probe(struct platform_device *pdev) { struct resource *res; // 根据platform_device的资源进行ioremap res = platform_get_resource(pdev, IORESOURCE_MEM, 0); gpio_con = ioremap(res->start, res->end - res->start + 1); gpio_dat = gpio_con + 1; res = platform_get_resource(pdev, IORESOURCE_IRQ, 0); pin = res->start; // 注册字符设备驱动程序 printk("led_probe, found led\n"); major = register_chrdev(0, "myled", &led_fops); cls = class_create(THIS_MODULE, "myled"); device_create(cls, NULL, MKDEV(major, 0), NULL, "led"); // /dev/led return 0; } static int led_remove(struct platform_device *pdev) { // 卸载字符设备驱动程序 // iounmap printk("led_remove, remove led\n"); device_destroy(cls, MKDEV(major, 0)); class_destroy(cls); unregister_chrdev(major, "myled"); iounmap(gpio_con); return 0; } struct platform_driver led_drv = { .probe = led_probe, .remove = led_remove, .driver = { .name = "myled", } }; static int led_drv_init(void) { platform_driver_register(&led_drv); return 0; } static void led_drv_exit(void) { platform_driver_unregister(&led_drv); } module_init(led_drv_init); module_exit(led_drv_exit); MODULE_LICENSE("GPL"); ==================================================================== led_test.c测试程序: #include "sys/types.h" #include "sys/stat.h" #include "fcntl.h" #include "stdio.h" // led_test on // led_test off int main(int argc, char **argv) { int fd; int val = 1; fd = open("/dev/led", O_RDWR); if (fd < 0) { printf("can't open!\n"); } if (argc != 2) { printf("Usage :\n"); printf("%s 《on|off》\n", argv[0]); //实际为"<" return 0; } if (strcmp(argv[1], "on") == 0) { val = 1; } else { val = 0; } write(fd, &val, 4); return 0; }
上一篇:Tiny210驱动之LCD驱动程序
下一篇:Tiny210按键输入子系统
推荐阅读
史海拾趣
随着国内市场的饱和,EOZ Secme开始积极寻求海外市场的拓展。公司制定了详细的国际化战略,通过参加国际展会、建立海外销售渠道等方式,逐步打开了国际市场的大门。同时,EOZ Secme还积极与国际知名企业开展合作,共同研发新产品,拓展业务领域。这些努力使得EOZ Secme在国际市场上的影响力不断增强。
DIALIGHT公司的故事始于1938年的纽约布鲁克林,当时该公司专注于为飞机生产仪表板灯。随着技术的不断进步和市场的变化,公司在1971年,即LED推出仅一年后,推出了他们的第一个LED产品。这一举措标志着DIALIGHT正式从传统的飞机仪表板灯制造转向LED照明技术的研发和应用。从此,DIALIGHT彻底改变了LED的用途,将其广泛应用于世界各地的交通控制、指示灯、结构塔和工业场所,为全球提供了优质的照明解决方案。
在追求经济效益的同时,Horn公司也注重可持续发展。公司积极采用环保材料和绿色生产工艺,减少对环境的影响。此外,Horn公司还注重人才培养和团队建设,为公司的长期发展奠定了坚实的人才基础。展望未来,Horn公司将继续秉承“创新、质量、服务”的企业理念,致力于成为切削工具行业的领导者,为全球客户提供更加优质的产品和服务。
Auctor Corp公司的创始人,一群富有远见和冒险精神的工程师,怀揣着对电子技术的热情和对市场的敏锐洞察,决定共同创办这家公司。在创业初期,公司面临着资金紧张、技术储备不足等多重困难。然而,团队成员们凭借着坚韧不拔的精神和对技术的执着追求,通过自主研发和不断改进,逐渐在市场上站稳了脚跟。
关注IC设计基地模式创新 来源: 作者: 添加日期:2005-10-21 11:56:00 点击次数: 16 经过四年以上的运作,七个国家级集成电路设计产业化基地已经在孵化小企业、构建公共服务平台方面取得了相当成就,今后,集成电路设计产业化基 ...… 查看全部问答∨ |
基于AVR单片机的汽车空调控制系统 要论文+仿真 一口价:300元 有意者联系: qq:756805375 邮箱:ydc888888@163.com 手机:(只接受短信)15852492541… 查看全部问答∨ |
最近设计一个电路,输入为24V,要求输出为正负12V,电流300mA,供传感器用 所以系统的功率是3W 方案如下lm2576由24V产生5V,MAX742(频率100kHz)由5V产生正负精度为4%的正负15V电源 再由lm7812与lm7912产生-12V 问电路这样设计有什么bug [ 本帖最后 ...… 查看全部问答∨ |
|