我有一个 i2c 芯片驱动程序作为 linux 内核的一部分。我可以从内核启动消息中验证 i2c 芯片驱动程序是否在内核中。我的问题,是否应该通过 sysfs 访问这样的 i2c 芯片驱动程序,如果是,那么如何访问。我的用户空间程序不会高度依赖于一个特定的驱动器吗
问问题
1471 次
1 回答
0
您可以将属性作为文件添加到sysfs
条目和写入方法以具有读/写访问权限。
1. create attributes using `DEVICE_ATTR`. It is a preprocessor derivative.
2. After creating the attributes create files in the same name which you gave while creating attributes.
Once done, you can access your i2c driver.
请参阅此材料以供进一步参考:非常清楚 http://www.kernel.org/pub/linux/kernel/people/mochel/doc/papers/ols-2005/mochel.pdf
于 2013-02-18T18:25:47.040 回答