原文网址:http://www.cnblogs.com/biglucky/p/4057499.html

devicetree中数据和structdevice有什么关系

总体来说,devicetree与structdevice的关系应该还是在其生成platformdevice的时候,一直传递的structdevice *parent参数。下面先把其源码中传递过程描述如下(仍以At91rm9200为例):

1,

DT_MACHINE_START(at91sam_dt,"Atmel AT91SAM (Device Tree)")

/*Maintainer: Atmel */

.timer =&at91sam926x_timer,

.map_io =at91_map_io,

.init_early =at91_dt_initialize,

.init_irq =at91_dt_init_irq,

.init_machine =at91_dt_device_init,

.dt_compat =at91_dt_board_compat,

MACHINE_END

2,

staticvoid __init at91_dt_device_init(void)

{

of_platform_populate(NULL,of_default_bus_match_table, NULL, NULL);

}

3,

/**

*of_platform_populate() - Populate platform_devices from device treedata

*@root: parent of the first level to probe or NULL for the root of thetree

*@matches: match table, NULL to use the default

*@parent: parent to hook devicesfrom, NULL for toplevel

*

*Similar to of_platform_bus_probe(), this function walks the devicetree

*and creates devices from nodes. It differs in that it follows themodern

*convention of requiring all device nodes to have a 'compatible'property,

*and it is suitable for creating devices which are children of theroot

*node (of_platform_bus_probe will only create children of the rootwhich

*are selected by the @matches argument).

*

*New board support should be using this function instead of

*of_platform_bus_probe().

*

*Returns 0 on success, < 0 on failure.

*/

//从devicetree数据中populateplatform devices。

intof_platform_populate(structdevice_node *root,

conststruct of_device_id *matches,

conststruct of_dev_auxdata *lookup,

structdevice *parent)

{

structdevice_node *child;

intrc = 0;

root= root ? of_node_get(root) : of_find_node_by_path("/");

if(!root)

return-EINVAL;

for_each_child_of_node(root,child) {

//生成platformdevice

rc= of_platform_bus_create(child,matches, lookup, parent,true);

if(rc)

break;

}

of_node_put(root);

returnrc;

}

4,

/**

*of_platform_bus_create() - Create a device for a node and itschildren.

*@bus: device node of the bus to instantiate

*@matches: match table for bus nodes

*@lookup: auxdata table for matching id and platform_data with devicenodes

*@parent: parent for new device, or NULL for top level.

*@strict: require compatible property

*

*Creates a platform_device for the provided device_node, andoptionally

*recursively create devices for all the child nodes.

*/

//为节点和其孩子节点生成一个设备文件。

staticint of_platform_bus_create(structdevice_node *bus,

const struct of_device_id *matches,

const struct of_dev_auxdata *lookup,

struct device *parent, boolstrict)

{

conststruct of_dev_auxdata *auxdata;

structdevice_node *child;

structplatform_device *dev;

constchar *bus_id = NULL;

void*platform_data = NULL;

intrc = 0;

/*Make sure it has a compatible property */

if(strict && (!of_get_property(bus, "compatible",NULL))) {

pr_debug("%s()- skipping %s, no compatible prop\n",

__func__, bus->full_name);

return0;

}

auxdata= of_dev_lookup(lookup, bus);

if(auxdata) {

bus_id= auxdata->name;

platform_data= auxdata->platform_data;

}

if(of_device_is_compatible(bus, "arm,primecell")) {

of_amba_device_create(bus,bus_id, platform_data, parent);

return0;

}

dev= of_platform_device_create_pdata(bus,bus_id, platform_data, parent);

if(!dev || !of_match_node(matches, bus))

return0;

for_each_child_of_node(bus,child) {

pr_debug(" create child: %s\n", child->full_name);

rc= of_platform_bus_create(child, matches, lookup, &dev->dev,strict);

if(rc) {

of_node_put(child);

break;

}

}

returnrc;

}

代码在这儿分了两步走:4.1和4.2。

4.1

staticstruct amba_device *of_amba_device_create(structdevice_node *node,

const char *bus_id,

void *platform_data,

struct device *parent)

{

structamba_device *dev;

constvoid *prop;

inti, ret;

pr_debug("Creatingamba device %s\n", node->full_name);

if(!of_device_is_available(node))

returnNULL;

dev= amba_device_alloc(NULL, 0, 0);

if(!dev)

returnNULL;

/*setup generic device info */

dev->dev.coherent_dma_mask= ~0;

dev->dev.of_node= of_node_get(node);

dev->dev.parent= parent;

dev->dev.platform_data= platform_data;

…...

}

4.2

/**

*of_platform_device_create_pdata - Alloc, initialize and register anof_device

*@np: pointer to node to create device for

*@bus_id: name to assign device

*@platform_data: pointer to populate platform_data pointer with

*@parent: Linux device model parentdevice.

*

*Returns pointer to created platform device, or NULL if a device wasnot

*registered. Unavailable devices will not get registered.

*/

//分配内存,初始化和注册一个of_device

structplatform_device *of_platform_device_create_pdata(

structdevice_node *np,

constchar *bus_id,

void*platform_data,

structdevice *parent)

{

structplatform_device *dev;

if(!of_device_is_available(np))

returnNULL;

dev= of_device_alloc(np,bus_id, parent);

…...

returndev;

}

4.2.1

/**

*of_device_alloc - Allocate and initialize an of_device

*@np: device node to assign to device

*@bus_id: Name to assign to the device. May be null to use defaultname.

*@parent: Parent device.

*/

//分配内存和初始化of_device

structplatform_device *of_device_alloc(structdevice_node *np,

const char *bus_id,

struct device *parent)

{

structplatform_device *dev;

intrc, i, num_reg = 0, num_irq;

structresource *res, temp_res;

dev= platform_device_alloc("", -1);

if(!dev)

returnNULL;

/*count the io and irq resources */

if(of_can_translate_address(np))

while(of_address_to_resource(np, num_reg, &temp_res) == 0)

num_reg++;

num_irq= of_irq_count(np);

/*Populate the resource table */

if(num_irq || num_reg) {

res= kzalloc(sizeof(*res) * (num_irq + num_reg), GFP_KERNEL);

if(!res) {

platform_device_put(dev);

returnNULL;

}

dev->num_resources= num_reg + num_irq;

dev->resource= res;

for(i = 0; i < num_reg; i++, res++) {

rc= of_address_to_resource(np, i, res);

WARN_ON(rc);

}

WARN_ON(of_irq_to_resource_table(np,res, num_irq) != num_irq);

}

dev->dev.of_node= of_node_get(np);

#ifdefined(CONFIG_MICROBLAZE)

dev->dev.dma_mask= &dev->archdata.dma_mask;

#endif

dev->dev.parent= parent;

if(bus_id)

dev_set_name(&dev->dev,"%s", bus_id);

else

of_device_make_bus_id(&dev->dev);

returndev;

}

总的分析:parent参数开始初始化为NULL,其中一直没有赋值,直到最后赋值给platformdevice的dev.parent属性。其中关系耐人寻味。

【转】(DT系列六)devicetree中数据和 struct device有什么关系的更多相关文章

  1. (DT系列六)devicetree中数据和 struct device有什么关系

    devicetree中数据和structdevice有什么关系 总体来说,devicetree与structdevice的关系应该还是在其生成platformdevice的时候,一直传递的struct ...

  2. (DT系列五)Linux kernel 是怎么将 devicetree中的内容生成plateform_device

    Linux kernel 是怎么将 devicetree中的内容生成plateform_device 1,实现场景(以Versatile Express V2M为例说明其过程)以arch/arm/ma ...

  3. 【转】(DT系列五)Linux kernel 是怎么将 devicetree中的内容生成plateform_device

    原文网址:http://www.cnblogs.com/biglucky/p/4057495.html Linux kernel 是怎么将 devicetree中的内容生成plateform_devi ...

  4. (DT系列五)Linux kernel 是怎么将 devicetree中的内容生成plateform_device【转】

    转自:https://blog.csdn.net/lichengtongxiazai/article/details/38942033 Linux kernel 是怎么将 devicetree中的内容 ...

  5. 大数据系列-CDH环境中SOLR入数据

    1       创建集合 SSH远程连接到安装了SOLR的CDH节点. 运行solrctl  instancedir  --generate  /solr/test/GX_SH_TL_TGRYXX_2 ...

  6. SQL Server 2008空间数据应用系列六:基于SQLCRL的空间数据可编程性

    原文:SQL Server 2008空间数据应用系列六:基于SQLCRL的空间数据可编程性 友情提示,您阅读本篇博文的先决条件如下: 1.本文示例基于Microsoft SQL Server 2008 ...

  7. R语言数据分析系列六

    R语言数据分析系列六 -- by comaple.zhang 上一节讲了R语言作图,本节来讲讲当你拿到一个数据集的时候怎样下手分析,数据分析的第一步.探索性数据分析. 统计量,即统计学里面关注的数据集 ...

  8. 【C++自我精讲】基础系列六 PIMPL模式

    [C++自我精讲]基础系列六 PIMPL模式 0 前言 很实用的一种基础模式. 1 PIMPL解释 PIMPL(Private Implementation 或 Pointer to Implemen ...

  9. 《Visual C++ 2010入门教程》系列六:VC2010常见调试技术

    <Visual C++ 2010入门教程>系列六:VC2010常见调试技术   犹豫了好久,最终还是决定开始这一章,因为我不清楚到底有没有必要写这样的一章,是应该在这里说明一些简单的调试方 ...

随机推荐

  1. Gson解析json数据(转)

    一. www.json.org这是JSON的官方网站. 首先,我,我们需要在code.google.com/p/google-gson/downloads/list下载JSON的jar包,解析后把gs ...

  2. Ouath协议

    OAuth是一个开放协议,允许用户让第三方应用以安全且标准的方式获取该用户在某一网站.移动或桌面应用上存储的私密的资源(如用户个人信息.照片.视频.联系人列表),而无需将用户名和密码提供给第三方应用. ...

  3. text-overflow:ellipsis的巧妙运用

    关键字: text-overflow:ellipsis 语法:text-overflow : clip | ellipsis 取值: clip :默认值 .不显示省略标记(...),而是简单的裁切. ...

  4. Wpf 数据绑定简介、实例1

    简介:1.WPF绑定使用的源属性必须是依赖项属性,这是因为依赖项属性具有内置的更改通知支持,元素绑定表达式使用了Xaml扩展标记, WPF绑定一个控件是使用Binding.ElementName, 绑 ...

  5. C#word(2007)操作类--新建文档、添加页眉页脚、设置格式、添加文本和超链接、添加图片、表格处理、文档格式转化

    转:http://www.cnblogs.com/lantionzy/archive/2009/10/23/1588511.html 1.新建Word文档 #region 新建Word文档/// &l ...

  6. android6.0源码分析之Camera API2.0下的Capture流程分析

    前面对Camera2的初始化以及预览的相关流程进行了详细分析,本文将会对Camera2的capture(拍照)流程进行分析. 前面分析preview的时候,当预览成功后,会使能ShutterButto ...

  7. tomcat启动项目内存溢出问题

    catalina.bat文件的第二行加下面的即可: 注意最大内存设置,和系统的内存有关系 set JAVA_OPTS=%JAVA_OPTS% -Xms512m -Xmx1024m -XX:PermSi ...

  8. js单条新闻向上滚动

    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xht ...

  9. java 懒汉式--初步解决安全问题

    2016-07-28 00:10:14 懒汉式: class text { public String k;       private static text t=null;//右边代码结构比上边饿 ...

  10. POJ 2395 Out of Hay(最小生成树中的最大长度)

    POJ 2395 Out of Hay 本题是要求最小生成树中的最大长度, 无向边,初始化es结构体时要加倍,别忘了init(n)并查集的初始化,同时要单独标记使用过的边数, 判断ans==n-1时, ...