1. 程式人生 > >芯靈思Sinlinx A64 linux 通過設備樹寫LED驅動(附參考代碼,未測試)

芯靈思Sinlinx A64 linux 通過設備樹寫LED驅動(附參考代碼,未測試)

ren sibling struct 設備號 free 創建 arm64 初始化 dead

開發平臺 芯靈思Sinlinx A64

內存: 1GB 存儲: 4GB
詳細參數 https://m.tb.cn/h.3wMaSKm
開發板交流群 641395230

全誌A64設備樹結構體

#include <linux/of.h> //設備樹裏的每個設備及每個設備子節點都用此結構體描述

struct device_node
{
    const char *name;
    const char *type;
    phandle phandle;
    const char *full_name;
    struct property *properties; //屬性
    struct property *deadprops; /* removed properties */
    struct device_node *parent; //在設備子節點對象,指向屬於的設備對象
    struct device_node *child; //在設備對象,指向子節點
    struct device_node *sibling; //指向同級的下一個對象.
    struct device_node *next; /* next device of same type */ //應是指向device_type是同樣的對象
    struct device_node *allnext; /* next in list of all nodes */ ...
};

//下面函數用於獲取設備樹裏的設備節點及設備子節點
extern struct device_node *of_find_node_by_name(struct device_node *from, const char *name);
//通過名字查找相應的設備節點
static inline int of_get_child_count(const struct device_node *np);
//獲取指定設備的子節點個數
extern struct device_node *of_find_node_by_path(const char *path);
//通過路徑來獲取設備節點,可用於獲取設備子節點
extern struct device_node *of_find_node_by_type(struct device_node *from, const char *type);

//通過指定的device_type來獲取設備節點

//下面函數用於獲取設備節點或設備子節點的屬性

static inline int of_property_read_u32(const struct device_node *np, const char *propname, u32 *out_value)
extern int of_property_read_u32_index(const struct device_node *np, const char *propname, u32 index, u32 *out_value);
extern int of_property_read_u8_array(const struct device_node *np, const char *propname, u8 *out_values, size_t sz);
extern int of_property_read_u16_array(const struct device_node *np, const char *propname, u16 *out_values, size_t sz);
extern int of_property_read_u32_array(const struct device_node *np, const char *propname, u32 *out_values, size_t sz);
extern int of_property_read_u64(const struct device_node *np, const char *propname, u64 *out_value);
extern int of_property_read_string(struct device_node *np, const char *propname, const char **out_string)

首先增加節點,修改dtsi文件。
vim /lichee/linux-3.10/arch/arm64/boot/dts/sun50iw1p1-pinctrl.dtsi
技術分享圖片

技術分享圖片

驅動代碼:

    #include <linux/module.h>   
    #include <linux/init.h>  
    #include <linux/fs.h>   
    #include <linux/device.h>   
    #include <linux/slab.h>  
    #include <linux/cdev.h>  
    #include <asm/uaccess.h>  
    #include <linux/io.h>  
    #include <linux/of.h>  
    #include <linux/of_gpio.h>  
    #include <linux/gpio.h>  
    #include <linux/sys_config.h>  

    #define MY_DEVICE_NAME "my_led_device"  
    // 獲取到設備樹中到節點  
    static int gpio = -1;   
    int get_irqno_from_node(void)  
    {  

        struct gpio_config config;   
        struct device_node *np = of_find_node_by_path("/leds");  
        if(np){  
            printk("find node ok\n");  
        }  
        else{  
            printk("find node failed\n");  
        }  

        gpio = of_get_named_gpio_flags(nd, "gpios", i, (enum of_gpio_flags *)&config);// 從設備樹中讀取gpios的GPIO配置編號和標誌  
        if(!gpio_is_valid(gpio)){  
            //判斷該 GPIO 編號是否有效,有效gpio_request 則申請占用該 GPIO。如果初始化過程出錯,需要調用 gpio_free 來釋放之前申請過且成功的 GPIO   
            printk("gpio isn‘t valid\n");  
            return -1;  
        }  
        if(gpio_request(gpio, "leds") < 0)   
            printk("gpio request failed %d\n", gpio);   
        gpio_direction_output(gpio, 1); //關燈  

        return 0;   

    }  

    static int my_open (struct inode *node, struct file *filp)  
    {  
        if(gpio)   
        {  
            printk("open ok\n");   
        }  
        else   
        {  
            return -EINVAL;  
        }  
        return 0;  
    }  

    static ssize_t my_write (struct file *filp, const char __user *buf, size_t size, loff_t *off)  
    {  
        unsigned char val;          
        copy_from_user(&val, buf, 1);  
        printk(" gpl_dat address   0x%x\n",gpl_dat);  
        if (val)  
        {      
            gpio_direction_output(gpio, 0); //關燈  
            printk("led on\n");  
        }  
        else  
        {  
           gpio_direction_output(gpio, 1); //關燈  
            printk("led off\n");  
        }  

        return 1;   
    }  

    static const struct file_operations my_led_fops = {  
        //step 1 :定義file_operations結構體  
        .open = my_open,  
        .write = my_write,      
    };  

    //step 1 :  
    static struct class *led_class;  
    static struct cdev *pcdev;      //定義一個cdev指針  
    static dev_t n_dev;            //第一個設備號(包含了主和次)  
    static int __init led_device_init(void)  
    {//step 2 :註冊   
        int ret = -1;  
        pcdev = cdev_alloc();//分配cdev結構空間  
        if(pcdev == NULL) {  
            printk(KERN_EMERG" cdev_alloc  error\n");  
            ret = -ENOMEM;   /* 分配失敗 */  
            return ret;  
        }  
        //2. 動態申請設備號  
        ret = alloc_chrdev_region(&n_dev, 0 , 2, MY_DEVICE_NAME);  
        if(ret < 0 ) {  
            //釋放前面成功的資源  
            kfree(pcdev);                              /*釋放cdev結構空間 */  
            printk(KERN_EMERG"alloc_chrdev_region  error\n");  
            return ret;  
        }      
        cdev_init(pcdev, &my_led_fops);     //初始化cdev結構           /* 建立cdev和file_operations之間的連接 */   
        /* 
            或這樣初始化cdev結構 
            pcdev->owner = THIS_MODULE; 
            pcdev->ops = &my_led_fops; 
        */  
        ret = cdev_add(pcdev, n_dev, 2) ;// 向內核裏面添加一個驅動,註冊驅動  
        if(ret < 0 ) {  
            //釋放前面成功的資源  
            unregister_chrdev_region(n_dev,  2);       /*  釋放前面申請的調和號*/  
            kfree(pcdev);                               /* 釋放cdev結構空間 */  
            printk(KERN_EMERG"alloc_chrdev_region  error\n");  
            return ret;  
        }  

        /*自動創建設備節點/dev/SinlinxA64_LED*/  
        led_class = class_create(THIS_MODULE, "myled");      
        device_create(led_class, NULL, n_dev, NULL, "SinlinxA64_LED");   

        get_irqno_from_node();  
        printk(KERN_EMERG"cdev ok\n");      
        return 0;  
    }  

    static void __exit led_device_exit(void)  
    {    //step 2 :註銷  

        //註銷cdev結構  
        cdev_del(pcdev);  
        //釋放設備號  
        unregister_chrdev_region(n_dev, 2); /*起始設備號(主、次) 連續的次設備號數量*/  
        //釋放cdev結構空間  
        kfree(pcdev);  

        device_destroy(led_class, n_dev);  
        class_destroy(led_class);  
        gpio_free(gpio);   
        printk(KERN_EMERG"cdev_del ok\n");  
    }  

    module_init(led_device_init);  
    module_exit(led_device_exit);  
    MODULE_LICENSE("GPL");  

參考文章:https://blog.csdn.net/jklinux/article/details/82382066

芯靈思Sinlinx A64 linux 通過設備樹寫LED驅動(附參考代碼,未測試)