驱动开发课程LED点亮

head.h

cs 复制代码
#ifndef __HEAD_H__
#define __HEAD_H__
#define PHY_LED1_MODER 0x50006000
#define PHY_LED1_ODR 0x50006014
#define PHY_RCC 0x50000A28

#define PHY_LED2_MODER 0x50007000
#define PHY_LED2_ODR 0x50007014

#define PHY_LED3_MODER 0x50006000
#define PHY_LED3_ODR 0x50006014

#endif

test.c

cs 复制代码
#include <stdio.h>
#include <sys/types.h>
#include <sys/stat.h>
#include <fcntl.h>
#include <unistd.h>
#include <string.h>
int main(int argc,char const *argv[])
{
    char buf[128] = {0};
    int fd = open("/dev/mychrdev",O_RDWR);
    if(fd<0)
    {
        printf("打开设备文件失败\n");
        return -1;
    }
    printf("打开设备文件成功\n");
    while(1)
    {
        printf("请输入要进行的操作:0(关灯) 1(开灯)>");
        fgets(buf,sizeof(buf),stdin);
        buf[strlen(buf)-1]='\0';

        write(fd,buf,sizeof(buf));
    }
    close(fd);
    return 0;
}

demo.c

cs 复制代码
#include <linux/init.h>
#include <linux/module.h>
#include <linux/fs.h>
#include <linux/uaccess.h>
#include <linux/io.h>
#include "head.h"
unsigned int major;
char kbuf[128]={};
unsigned int *vir_led1_moder;
unsigned int *vir_led1_odr;
unsigned int *vir_led2_moder;
unsigned int *vir_led2_odr;
unsigned int *vir_led3_moder;
unsigned int *vir_led3_odr;
unsigned int *vir_rcc;
int mycdev_open(struct inode *inode, struct file *file)
{
    printk("%s:%s:%d\n",__FILE__,__func__,__LINE__);
    return 0;
}
ssize_t mycdev_read(struct file *file,char *ubuf,size_t size,loff_t *lof)
{
    printk("%s:%s:%d\n",__FILE__,__func__,__LINE__);
    int ret;
    ret=copy_to_user(ubuf,kbuf,size);
    if(ret)
    {
        printk("copy_to_user filed\n");
        return -EIO;
    }
    return 0;
}
ssize_t mycdev_write(struct file *file,const char *ubuf,size_t size,loff_t *lof)
{
    printk("%s:%s:%d\n",__FILE__,__func__,__LINE__);
    int ret;
    ret=copy_from_user(kbuf,ubuf,size);
    if(ret)
    {
        printk("copy_from_user filed\n");
        return -EIO;
    }
    if(kbuf[0] == '1')
    {
        if(kbuf[1] == '0')
        {
        (*vir_led1_odr) &= (~(0x1<<10));
        }
        else if(kbuf[1]=='1')
        {
        (*vir_led1_odr) |= (0x1<<10);
        }
    }
    else if(kbuf[0]=='2')
    {
        if(kbuf[1] == '0')
        {
        (*vir_led2_odr) &= (~(0x1<<10));
        }
        else if(kbuf[1]=='1')
        {
        (*vir_led2_odr) |= (0x1<<10);
        }
    }
    else if(kbuf[0]=='3')
    {
        if(kbuf[1] == '0')
        {
        (*vir_led3_odr) &= (~(0x1<<8));
        }
        else if(kbuf[1]=='1')
        {
        (*vir_led3_odr) |= (0x1<<8);
        }
    }
    return 0;
}
int mycdev_close(struct inode *inode, struct file *file)
{
    printk("%s:%s:%d\n",__FILE__,__func__,__LINE__);
    return 0;
}

struct file_operations fops =
{
    .open=mycdev_open,
    .read=mycdev_read,
    .write=mycdev_write,
    .release=mycdev_close,
};


static int __init mycdev_init(void)
{
    major = register_chrdev(0,"mychrdev",&fops);
    if(major<0)
    {
        printk("字符设备驱动注册失败\n");
        return major;
    }
    printk("注册字符设备驱动成功major=%d\n",major);

    vir_led1_moder = ioremap(PHY_LED1_MODER,4);
    if(vir_led1_moder == NULL)
    {
        printk("物理内存地址映射失败%d\n",__LINE__);
        return -EFAULT;
    }
    vir_led1_odr = ioremap(PHY_LED1_ODR,4);
    if(vir_led1_odr == NULL)
    {
        printk("物理内存地址映射失败%d\n",__LINE__);
        return -EFAULT;
    }
    vir_led2_moder = ioremap(PHY_LED2_MODER,4);
    if(vir_led2_moder == NULL)
    {
        printk("物理内存地址映射失败%d\n",__LINE__);
        return -EFAULT;
    }
    vir_led2_odr = ioremap(PHY_LED2_ODR,4);
    if(vir_led2_odr == NULL)
    {
        printk("物理内存地址映射失败%d\n",__LINE__);
        return -EFAULT;
    }
    vir_led3_moder = ioremap(PHY_LED3_MODER,4);
    if(vir_led3_moder == NULL)
    {
        printk("物理内存地址映射失败%d\n",__LINE__);
        return -EFAULT;
    }
    vir_led3_odr = ioremap(PHY_LED3_ODR,4);
    if(vir_led3_odr == NULL)
    {
        printk("物理内存地址映射失败%d\n",__LINE__);
        return -EFAULT;
    }
    vir_rcc = ioremap(PHY_RCC,4);
    if(vir_rcc == NULL)
    {
        printk("物理内存地址映射失败%d\n",__LINE__);
        return -EFAULT;
    }
    printk("寄存器内存映射成功\n");

    (*vir_rcc) |= (0x1<<4);
    (*vir_rcc) |= (0x1<<5);
    (*vir_led1_moder) &= (~(0x3<<20));
    (*vir_led1_moder) |= (0x1<<20);
    (*vir_led1_odr) &= (~(0x1<<10));

    (*vir_led2_moder) &= (~(0x3<<20));
    (*vir_led2_moder) |= (0x1<<20);
    (*vir_led2_odr) &= (~(0x1<<10));

    (*vir_led3_moder) &= (~(0x3<<16));
    (*vir_led3_moder) |= (0x1<<16);
    (*vir_led3_odr) &= (~(0x1<<8));
    return 0;
}
static void __exit mycdev_exit(void)
{
    iounmap(vir_led1_moder);
    iounmap(vir_led1_odr);

    iounmap(vir_led2_moder);
    iounmap(vir_led2_odr);

    iounmap(vir_led3_moder);
    iounmap(vir_led3_odr);
    iounmap(vir_rcc);
    unregister_chrdev(major,"mychrdev");
}

module_init(mycdev_init);
module_exit(mycdev_exit);
MODULE_LICENSE("GPL");

现象

相关推荐
ai.Neo13 分钟前
牛客网NC22012:判断闰年问题详解
开发语言·c++·算法
好吃的肘子19 分钟前
ElasticSearch进阶
大数据·开发语言·分布式·算法·elasticsearch·kafka·jenkins
CIb0la34 分钟前
数据可视化
程序人生·算法·信息可视化
袁气满满~_~39 分钟前
LeetCode:617、合并二叉树
算法·leetcode·二叉树
写个博客39 分钟前
代码随想录算法训练营第四十一天
算法
像风一样自由20201 小时前
算法模型部署后_python脚本API测试指南-记录3
python·算法·支持向量机
TO ENFJ1 小时前
day 17 无监督学习之聚类算法
学习·算法·聚类
GIS小天1 小时前
AI预测3D新模型百十个定位预测+胆码预测+去和尾2025年5月15日第78弹
人工智能·算法·机器学习·彩票
共享家95271 小时前
红黑树解析
数据结构·c++·算法
边跑边掩护1 小时前
LeetCode 820 单词的压缩编码题解
算法·leetcode·职场和发展