当前位置: 首页 > news >正文

成都专业网站建设价格低旅游网站建设需求说明书

成都专业网站建设价格低,旅游网站建设需求说明书,鸿蒙最新版本,浙江建设培训中心网站1 Linux为什么要引入Component框架#xff1f; 为了让subsystem按照一定顺序初始化设备才提出来的。 subsystem中由很多设备模块#xff0c;内核加载这些模块的时间不确定。子系统内有些模块是需要依赖其它模块先初始化才能进行自己初始化工作(例如v4l2 subdev和v4l2 video …1 Linux为什么要引入Component框架 为了让subsystem按照一定顺序初始化设备才提出来的。 subsystem中由很多设备模块内核加载这些模块的时间不确定。子系统内有些模块是需要依赖其它模块先初始化才能进行自己初始化工作(例如v4l2 subdev和v4l2 video device)这时就要用到component框架。 例如v4l2 subdev和v4l2 video device中谁依赖谁先创建 v4l2 video device依赖V4l2 subdev它要等subdev创建后再创建同时将subdev绑定到v4l2 video device上。 1.1 高通camera kmd中component的使用 入口camera_init是入口。 submodule_table[i].component[j].init() 对submodule table中定义的每个component做init。 相关定义 static const struct camera_submodule_component camera_base[] {{cam_req_mgr_init, cam_req_mgr_exit},{cam_sync_init, cam_sync_exit},{cam_smmu_init_module, cam_smmu_exit_module},{cam_cpas_dev_init_module, cam_cpas_dev_exit_module},{cam_cdm_intf_init_module, cam_cdm_intf_exit_module},{cam_hw_cdm_init_module, cam_hw_cdm_exit_module}, }; static const struct camera_submodule_component camera_isp[] {{cam_ife_csid_init_module, cam_ife_csid_exit_module},{cam_ife_csid_lite_init_module, cam_ife_csid_lite_exit_module},{cam_vfe_init_module, cam_vfe_exit_module},{cam_sfe_init_module, cam_sfe_exit_module},{cam_isp_dev_init_module, cam_isp_dev_exit_module}, }; ... static const struct camera_submodule submodule_table[] {{.name Camera BASE,.num_component ARRAY_SIZE(camera_base),.component camera_base,},{.name Camera TFE,.num_component ARRAY_SIZE(camera_tfe),.component camera_tfe,},{.name Camera ISP,.num_component ARRAY_SIZE(camera_isp),.component camera_isp,},{.name Camera SENSOR,.num_component ARRAY_SIZE(camera_sensor),.component camera_sensor},... };1.2 重要数据结构 master 表示要构建的系统 struct master {struct list_head node; //用于链接到全局masters中bool bound; //标记当前master是否bind了const struct component_master_ops *ops; //master设备的回调接口struct device *dev;struct component_match *match; //安装顺序保存了当前master的所有component匹配条件 };Component 表示系统组件 struct component {struct list_head node;//用于链接到全局的component_list中struct master *master;//保存本组件属于哪个master devicebool bound;//本component是否bind过const struct component_ops *ops;//本component的回调接口struct device *dev; //本组件属于哪个设备 };component_match 用来匹配系统需要的组件并规定了组件的初始化顺序 struct component_match_array {void *data;//比较数据int (*compare)(struct device *, void *);//比较接口void (*release)(struct device *, void *);struct component *component;//当前比较匹配规则属于哪个componentbool duplicate;//标记是否做移除 };struct component_match {size_t alloc;//分配了多少个比较条件对象component_match_array size_t num;//保存了多少个component匹配条件struct component_match_array *compare;//匹配条件数组地址 };全局变量masters和component_list 保存整个linux系统中所有主设备的数据结构。 保存整个linux系统中所有添加到component框架里的component数据结构。 static LIST_HEAD(component_list); static LIST_HEAD(masters);1.3 CRM和其他component如何联系起来 在高通KMD框架中CRM属于主设备master设备其他cam_sync、cam_smmu、cam_cap、cam_tfe、cam_sensor等属于组件component。 他们是通过配置cam_component_platform_drivers时联系起来。 static struct platform_driver *const cam_component_platform_drivers[] { /* BASE */cam_sync_driver,cam_smmu_driver,cam_cpas_driver,cam_cdm_intf_driver,cam_hw_cdm_driver, #ifdef CONFIG_SPECTRA_TFEcam_csid_ppi100_driver,cam_tfe_driver,cam_tfe_csid_driver, #endif #ifdef CONFIG_SPECTRA_ISPcam_ife_csid_driver,cam_ife_csid_lite_driver,cam_vfe_driver,cam_sfe_driver,isp_driver, #endif... }1.4 camera kmd中component如何bind camera_submodule_component 的camera base数组中会依次执行cam_req_mgr_init和cam_sync_init以及其他component的init函数实现。 1.4.1 crm init cam_req_mgr_init就是crm的init也是master设备的init。 它主要做了什么 向linux系统注册crm的platform_driver驱动cam_req_mgr_probe crm的platform_driver驱动中定义了probe函数当驱动名称和设备名称匹配时调用驱动的probe函数。 这里cam_req_mgr_probe主要做了两件事 1遍历cam_component_platform_drivers按顺序添加到match_list 2添加match_list到master设备并遍历是否所有的component都添加完成。 如果所有的component都添加完成尝试初始化master_device。 尝试初始化master_device通过调用try_to_bring_up_aggregate_device(adev,NULL)它主要做两件事一是查看是不是所有component_match列表里的component都已经添加到全局链表component_list中二是如果所有component_match列表里的component都ready就调用master设备的bind接口进行初始化。master的bind会顺序执行各component的bind()。 通过调用component_bind_all() 1.4.2 cam_sync init 它主要做了什么 向linux系统注册cam_sync的platform_driver驱动cam_sync_probe cam_sync_probe做了什么 为cam_sync创建一个component并添加到component框架。 它会调用component_add()进行添加进一步调用try_to_bring_up_masters(component), try_to_bring_up_masters会遍历全局链表master_devices中所有的master设备尝试bringup每一个遍历出来的aggregate device。 1.5 component_match数据结构关系图
http://www.zqtcl.cn/news/957450/

相关文章:

  • 太原建站公司模板宁波seo公司哪家好
  • 电商网站都是用什么做的承接电商网站建设
  • c2c网站代表有哪些怎样制作个人网站
  • wordpress linux 建站安丘市建设局官方网站
  • 谁给个好网站硬件开发是什么
  • 海外网站加速器免费长春做网站优化哪家好
  • 建立网站需要多长钱电脑网页设计培训
  • 给网站划分栏目邢台做网站优化费用
  • 网群企业网站管理系统红塔区住房和城乡建设局网站
  • 濮阳网站建设在哪做沈阳百度网站的优点
  • 网站上如何做问卷调查温州建设局官方网站
  • 做一件代发哪个网站好具有品牌的福州网站建设
  • 邢台移动端网站建设犀牛建模教程
  • 华池网站建设广西柳州市
  • 泰安网站建设推荐软件商店电脑版官方下载
  • 站长平台网站报价单模板表格
  • 织梦做的网站老是被黑杭州网站设计询问蓝韵网络
  • wordpress手机版如何设置福鼎整站优化
  • 网站建设小程序定制开发北京东宏建设网站
  • 网站制作还花钱网站图怎么做
  • 免费搭网站wordpress minty
  • 海沧建设网站多少国外调色网站
  • 中企动力建站怎么样网站建设与设计的心得体会
  • 打开网站出现directoryj2ee做网站
  • 如何建设一个视频网站西安个人做网站
  • wordpress站群教程市场营销培训课程
  • 17网站一起做网店白沟简单网页制作图片
  • 网站建设项目需求分析流程做商业地产的网站
  • 百度建站商业网点的定义
  • 古镇建设网站经济研究院网站建设方案