将 platform_driver 与 i2c_driver 结合在一起的内核驱动程序

问题描述 投票:0回答:2

我正在为 LCD 编写内核驱动程序。该 LCD 使用 8 条 GPIO 线(d0...d7)发送数据到显示器,一些 GPIO 控制信号(开/关、启用背光和读/写)和一个电位器来控制显示对比度,连接到 I2C 总线。

我编写了一个 platform_driver,它使用“probe”和“remove”回调来注册/注销一个杂项设备,该设备创建一个 /dev/lcd 字符设备,可从用户空间使用该设备发送要在屏幕上打印的缓冲区。我能够读取 DTS 上正确定义的 GPIOS,并管理这些 GPIOS 以在 LCD 上打印字符串。这是骨架:

#define MODULE_NAME     "lcd"
static void lcd_hw_setup(void)
{ ...  }
static int lcd_open(struct inode *inode, struct file *file)
{ ... }
static ssize_t lcd_write (struct file *file, const char *buf, size_t     count, loff_t *ppos)
{ ... }
static int lcd_close(struct inode *inode, struct file *file)
{ ... }
/* declare & initialize file_operations structure */
static const struct file_operations lcd_dev_fops = {
    .owner = THIS_MODULE,
    .open = lcd_open,
    .write = lcd_write,
    .release = lcd_close
};
/* declare & initialize miscdevice structure */
static struct miscdevice lcd_misc = {
    .minor = MISC_DYNAMIC_MINOR, /* major = 10 assigned by the misc framework */
    .name = MODULE_NAME, /* /dev/lcd */
    .fops = &lcd_dev_fops,
};
static int lcd_probe(struct platform_device *pdev)
{
    struct device *dev;
    pr_info(MODULE_NAME ": lcd_probe init\n");
    /* Register the misc device with the kernel */
    misc_register(&lcd_misc);
    dev = &pdev->dev;
    /* gpiod_get calls to get gpios from DTS */
    lcd_hw_setup();
    pr_info(MODULE_NAME ": lcd_probe ok\n");
    return 0;
}
static int lcd_remove(struct platform_device *pdev)
{
    pr_info(MODULE_NAME ": lcd_remove\n");
    /* Release gpio resources */
    ... 
    /* Unregister the device with the kernel */
    misc_deregister(&lcd_misc);
    return 0;
}
/* declare a list of devices supported by this driver */
static const struct of_device_id lcd_of_ids[] = {
    { .compatible = "my-lcd" },
    { /* sentinel */ },
};
MODULE_DEVICE_TABLE(of, lcd_of_ids);
/* declare & initialize platform_driver structure */
static struct platform_driver lcd_pdrv = {
    .probe = lcd_probe,
    .remove = lcd_remove,
    .driver = {
        .name = "my-lcd", /* match with compatible */
        .of_match_table = lcd_of_ids,
        .owner = THIS_MODULE,
    },
};
/* register platform driver */
module_platform_driver(lcd_pdrv);

效果真的很好。

现在我需要向 I2C 电位器发送一个初始化值来设置显示对比度。这需要调用 i2c_smbus_write_byte_data。为此,我需要访问 i2c_client 结构。

我发现一些 I2C 示例创建了一个 i2c_driver,它提供探测和删除回调,并在探测函数中接收指向该 i2c_client 结构的指针。但我没有找到一种方法将 i2c_driver 与我的 platform_driver 关联起来。他们似乎是完全独立的司机。

我的问题:

  • platform_driver 和 i2c_driver 可以组合在一个内核模块中吗?我的意思是,我可以在单个内核模块中添加 module_platform_driver 和 module_i2c_driver 调用吗?

  • 或者也许我必须创建第二个驱动程序来控制 I2C 电位器。在这种特殊情况下,两个内核模块之间存在依赖性。应如何管理这种依赖性?

请提供一些帮助,这将非常有帮助。非常感谢!

linux kernel driver i2c platform
2个回答
0
投票

作为初步解决方案,我开发了第二个驱动程序(i2c_driver),只是为了从探针回调中调用 i2c_smbus_write_byte_data 函数。它有效,但我想知道这是否是解决此问题的正确方法。谢谢!


0
投票

“platform_driver 和 i2c_driver 可以组合在一个内核模块中吗?” 您可以使用“MFD”(多功能设备),https://www.kernel.org/doc/Documentation/devicetree/bindings/mfd/mfd.txt

© www.soinside.com 2019 - 2024. All rights reserved.