android9.0(核心版本kernel-4.9)核心GPIO驅動實現-----高通平臺
阿新 • • 發佈:2020-12-20
針對kernel-4.9(android9.0)核心GPIO驅動變化作一下記錄:
之前的核心版本可以直接在原始碼中定義管腳後,直接使用核心GPIO申請和控制介面就可以操作,但是到android這樣操作直接的結果就是提示GPIO申請失敗,所以必須要修改才能實現。
kernel-4.9之前使用:
#define MC2_GPIO_TOMCU_PIN6 6
gpio_request(MC2_GPIO_TOMCU_PIN6 , “GPIO6”);
gpio_direction_output(MC2_GPIO_TOMCU_PIN6, 0);
gpio_set_value(MC2_GPIO_TOMCU_PIN6,1)
kernel-4.9以及之後的不能使用以上方式,管腳定義必須放到裝置樹對應的驅動元件中,驅動中在probe()函式中通過 gpio_ldo_pin = of_get_named_gpio(pdev->dev.of_node, “qcom,gpio_ldo_pin”, 0);方式來取得對應的GPIO,仍後再呼叫GPIO請求函式去申請,請參考高通平臺的實現方式:
高通平臺參考以下驅動:
1、dts檔案
gpio_ldo_power {
compatible = "xcz,gpio_ldo_power";
qcom,gpio_ldo_pin = <&msm_gpio 22 0>; //GPIO22
};
2、驅動
#include <linux/types.h>
#include <linux/pm.h>
#include <linux/gpio.h>
#include <linux/slab.h>
#include <linux/init.h>
#include <linux/platform_device.h>
#include <linux/fsl_devices.h>
#include <asm/setup.h>
#include <linux/of.h>
#include <linux/of_gpio.h>
#include <linux/stat.h>
#include <linux/module.h>
#include <linux/err.h>
#include <linux/spinlock.h>
#include <linux/err.h>
#include <linux/regulator/consumer.h>
int gpio_ldo_pin = -1;
int gpio_flag = -1;
static struct class *gpio_ldo_power_class = NULL;
static struct device *gpio_ldo_power_dev = NULL;
#define CTL_POWER_ON "1"
#define CTL_POWER_OFF "0"
static ssize_t gpio_22_show(struct device *dev,
struct device_attribute *attr, char *buf)
{
printk("%s\n", __func__);
sprintf(buf, "gpio_22 is %d\n", gpio_flag);
return strlen(buf);
}
static ssize_t gpio_22_store(struct device *dev,
struct device_attribute *attr, const char *buf,
size_t count)
{
if(!strncmp(buf, CTL_POWER_ON, strlen(CTL_POWER_ON))) {
printk("%s: to enable gpio_22\n", __func__);
gpio_set_value(gpio_ldo_pin, 1);
gpio_flag = 1;
} else if(!strncmp(buf, CTL_POWER_OFF, strlen(CTL_POWER_OFF))) {
printk("%s: to disable gpio_22\n", __func__);
gpio_set_value(gpio_ldo_pin, 0);
gpio_flag = 0;
}
return count;
}
static struct device_attribute gpio_22_dev_attr = {
.attr = {
.name = "gpio_22",
.mode = S_IRWXU|S_IRWXG|S_IRWXO,
},
.show = gpio_22_show,
.store = gpio_22_store,
};
static int gpio_ldo_power_probe(struct platform_device *pdev)
{
int ret = 0;
printk("xcz enter gpio_ldo_power_probe \n");
gpio_ldo_pin = of_get_named_gpio(pdev->dev.of_node, "qcom,gpio_ldo_pin", 0);
if (gpio_ldo_pin < 0)
printk("xcz gpio_ldo_pin is not available \n");
ret = gpio_request(gpio_ldo_pin, "gpio_ldo_pin");
if(0 != ret) {
printk("xcz gpio request %d failed.", gpio_ldo_pin);
goto fail1;
}
gpio_direction_output(gpio_ldo_pin, 0);
gpio_set_value(gpio_ldo_pin, 0);
gpio_flag = 0;
gpio_ldo_power_class = class_create(THIS_MODULE, "gpio_ldo_power");
if(IS_ERR(gpio_ldo_power_class))
{
ret = PTR_ERR(gpio_ldo_power_class);
printk("Failed to create class.\n");
return ret;
}
gpio_ldo_power_dev = device_create(gpio_ldo_power_class, NULL, 0, NULL, "gpio_gpio_22");
if (IS_ERR(gpio_ldo_power_dev))
{
ret = PTR_ERR(gpio_ldo_power_class);
printk("Failed to create device(gpio_ldo_power_dev)!\n");
return ret;
}
ret = device_create_file(gpio_ldo_power_dev, &gpio_22_dev_attr);
if(ret)
{
pr_err("%s: gpio_22 creat sysfs failed\n",__func__);
return ret;
}
printk("xcz enter gpio_ldo_power_probe, ok \n");
fail1:
return ret;
}
static int gpio_ldo_power_remove(struct platform_device *pdev)
{
device_destroy(gpio_ldo_power_class, 0);
class_destroy(gpio_ldo_power_class);
device_remove_file(gpio_ldo_power_dev, &gpio_22_dev_attr);
return 0;
}
static int gpio_ldo_power_suspend(struct platform_device *pdev,pm_message_t state)
{
return 0;
}
static int gpio_ldo_power_resume(struct platform_device *pdev)
{
return 0;
}
static struct of_device_id gpio_ldo_power_dt_match[] = {
{ .compatible = "xcz,gpio_ldo_power",},
{ },
};
MODULE_DEVICE_TABLE(of, gpio_ldo_power_dt_match);
static struct platform_driver gpio_power_driver = {
.driver = {
.name = "gpio_ldo_power",
.owner = THIS_MODULE,
.of_match_table = of_match_ptr(gpio_ldo_power_dt_match),
},
.probe = gpio_ldo_power_probe,
.remove = gpio_ldo_power_remove,
.suspend = gpio_ldo_power_suspend,
.resume = gpio_ldo_power_resume,
};
static __init int gpio_power_init(void)
{
return platform_driver_register(&gpio_power_driver);
}
static void __exit gpio_power_exit(void)
{
platform_driver_unregister(&gpio_power_driver);
}
module_init(gpio_power_init);
module_exit(gpio_power_exit);
MODULE_AUTHOR("GPIO_LDO_POWER, Inc.");
MODULE_DESCRIPTION("XCZ GPIO_LDO_POWER");
MODULE_LICENSE("GPL");