Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
在普通的板文件中,我的平台数据成员之一是平台设备,有没有什么办法可以在linux内核中使用设备树来传递?在普通的板文件中,我的平台数据中有 struct platform_device 作为成员。
设备树文件中的设备树节点类似于platform_device旧板文件中的结构。您可以在设备树文件的设备节点中定义和声明您喜欢的任何属性(数据)。
platform_device
内核提供了开放固件(OF)API,具有许多功能,例如of_find_property()设备 of_property_read_string()驱动程序从树文件中的任何设备获取数据。
of_find_property()
of_property_read_string()