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

机械类做的最好的网站河南疫情最新消息

机械类做的最好的网站,河南疫情最新消息,上海网站建设推广,一个人只做网站的流程目录 前言: 设备树插件的书写规范: 设备树插件的编译: 内核配置: 应用背景: 举例: 前言: 设备树插件(Device Tree Blob Overlay,简称 DTBO)是Linux内核和嵌入式系统…

目录

前言:

设备树插件的书写规范:

设备树插件的编译:

内核配置:

应用背景:

举例:


前言:

        设备树插件(Device Tree Blob Overlay,简称 DTBO)是Linux内核和嵌入式系统中用于动态修改或扩展系统运行时的设备树配置的一种机制。它是对传统设备(Device Tree Source,简称 DTS)的补充,允许在不重新编译整个内核的情况下,对硬件配置进行更改。本质也是个设备树文件。

设备树插件的书写规范:
/dts-v1/;        // dts 版本;
/plugin/;        //表示设备树插件/ {fragment@0 {     //固定的写法target-path = "xxx";   //要覆盖替换的节点路径,从根节点开始写__overlay__ {    //固定写法/*在此添加要插入的节点*/};};fragment@1 {target-path = "xxx";   //要覆盖替换的节点路径__overlay__ {/*在此添加要插入的节点*/};};};
设备树插件的编译:
<sdk>/out/t113/kernel/build/scripts/dtc/dtc -I dts -O dtb -o xxx.dtb xxx.dts
<sdk>/.../dtc :使用sdk下的dtc
-I dts:指定输入文件格式为dts
-O dtb:指定输出文件类型为dtb
-o xxx:指定输出文件名
xxx.dts:输入文件名称
内核配置:
Device Drivers -> Device Tree and Open Firmware support -> [*]Device Tree overlays
应用背景:

        比如一个开发平台能适配许多的屏幕,如果按以前的做法,每次更换一个屏幕都得重新编译一次,如果我们可以采用dtbo来实现的话,就会很方便,我们可以将每种屏幕都做一个对应的dtbo插件文件,我们用到哪个屏幕就用对应的设备树插件去覆盖相应的节点。

举例:

        这里参考了同事提供的举例思路,思路是新建一个设备树插件去覆盖掉现有的设备树节点。由于例证的平台用到了身边现有的全志T113平台,看了一圈发现can比较容易验证,所以就采用can来验证。

1、查看设备树节点,可以看到在根节点下有两个can,这与平台上有两个can接口一致。

2、创建设备树插件,用于后面覆盖,这里我们将status设置为“disabled”,如果后面能覆盖成功,那么这两个can节点是肯定不能使用了。

/dts-v1/;
/plugin/;/ {fragment@0 {target-path = "/can@0x0";__overlay__ {/*在此添加要插入的节点*/#address-cells = <1>;#size-cells = <0>;compatible = "allwinner,sun8i-can";device_type = "can0";id = <0>;status = "disabled";  //改为disabled};};fragment@1 {target-path = "/can@0x1";__overlay__ {/*在此添加要插入的节点*/#address-cells = <1>;#size-cells = <0>;compatible = "allwinner,sun8i-can";device_type = "can1";id = <1>;status = "disabled";  //改为disabled};};};

3、编译设备树插件,使用命令编译后就会生成设备树插件,生成dtb文件。

                             

4、编译得到dtb文件后,我们需要想办法去覆盖掉原来的节点,也就是让使用这个dtb文件,这里借助同事提供的方法采用手动操作内存里的文件去实现。先将这个编译出来的文件放到boot-resource分区去,以便我们操作。

操作之前先查看正常状态:

5、先设置工作设备树地址:
通过uboot启动信息,可以获取到内核设备树地址,0x44831e58就是内核设备树地址,0x44851e58是uboot设备树地址,我们需要内核设备树地址。

image.png

fdt addr 0x44831e58  //设置工作设备树

fdt命令参考文章:uboot 命令行使用 fdt 命令查看设备树信息,并得到完整的设备树的 dts 和 dtb 文件_uboot fdt命令-CSDN博客

6、加载设备树插件到内存中(每个平台不一样,根据实际操作)

fatload mmc 2:1 0x43000000 kernel-overlay-can.dtb  //从emmc的
boot-resource分区的 0x43000000地址加载kernel-overlay-can.dtb到内存
fdt resize 8192  //调整设备树的大小

7、设备树覆盖:将内存0x43000000处的设备树插件覆盖到工作设备树

fdt apply 0x43000000

8、进入系统

9、验证:可以看到已经找不到节点了


文章转载自:
http://dinncoorganization.stkw.cn
http://dinncoshortbread.stkw.cn
http://dinncopersuasion.stkw.cn
http://dinncogeigers.stkw.cn
http://dinncobuffalofish.stkw.cn
http://dinncoroadmanship.stkw.cn
http://dinncopermissive.stkw.cn
http://dinnconouvelle.stkw.cn
http://dinncoheadworker.stkw.cn
http://dinncoleges.stkw.cn
http://dinncodesolately.stkw.cn
http://dinncogloboid.stkw.cn
http://dinncovanilline.stkw.cn
http://dinncobiologically.stkw.cn
http://dinncopookoo.stkw.cn
http://dinncoarcticalpine.stkw.cn
http://dinncoeent.stkw.cn
http://dinncodeliberative.stkw.cn
http://dinncomounting.stkw.cn
http://dinncobroch.stkw.cn
http://dinncopogonotrophy.stkw.cn
http://dinncoinfo.stkw.cn
http://dinncozinc.stkw.cn
http://dinncoredtab.stkw.cn
http://dinncoelectrolyte.stkw.cn
http://dinncoensanguine.stkw.cn
http://dinncosuperannuated.stkw.cn
http://dinncobeehive.stkw.cn
http://dinncoscaphopod.stkw.cn
http://dinncolaniary.stkw.cn
http://dinnconuaaw.stkw.cn
http://dinnconongrammatical.stkw.cn
http://dinncosnugly.stkw.cn
http://dinncokilogramme.stkw.cn
http://dinncostenotypy.stkw.cn
http://dinncoheptameter.stkw.cn
http://dinncoplatinoid.stkw.cn
http://dinncoinexplorable.stkw.cn
http://dinncogaudily.stkw.cn
http://dinncoejectamenta.stkw.cn
http://dinncoproclinate.stkw.cn
http://dinncofusil.stkw.cn
http://dinncosuprathreshold.stkw.cn
http://dinncorhinopharynx.stkw.cn
http://dinncoimpromptu.stkw.cn
http://dinncotypescript.stkw.cn
http://dinncomilstrip.stkw.cn
http://dinncobicapsular.stkw.cn
http://dinncopolemological.stkw.cn
http://dinncohummingbird.stkw.cn
http://dinncojody.stkw.cn
http://dinncoraucousness.stkw.cn
http://dinncozenographic.stkw.cn
http://dinncoayesha.stkw.cn
http://dinncogain.stkw.cn
http://dinncoinstillation.stkw.cn
http://dinncodisseat.stkw.cn
http://dinncolungful.stkw.cn
http://dinncogravitas.stkw.cn
http://dinncobobtail.stkw.cn
http://dinncoharvey.stkw.cn
http://dinncopreludial.stkw.cn
http://dinncowinegrower.stkw.cn
http://dinncoscarabaei.stkw.cn
http://dinncopyrogallic.stkw.cn
http://dinncoectoproct.stkw.cn
http://dinncopulka.stkw.cn
http://dinncolocket.stkw.cn
http://dinncoshaduf.stkw.cn
http://dinncoentelechy.stkw.cn
http://dinncodestine.stkw.cn
http://dinncobutyl.stkw.cn
http://dinncovessel.stkw.cn
http://dinncosemifinal.stkw.cn
http://dinncogerodontics.stkw.cn
http://dinncomontilla.stkw.cn
http://dinncogristle.stkw.cn
http://dinncointerlace.stkw.cn
http://dinncotrend.stkw.cn
http://dinncohaniwa.stkw.cn
http://dinncocoextension.stkw.cn
http://dinncofootnote.stkw.cn
http://dinncosunblasted.stkw.cn
http://dinncounpardoning.stkw.cn
http://dinncowoodstock.stkw.cn
http://dinncoemblematical.stkw.cn
http://dinncoallegorical.stkw.cn
http://dinncoelectrocautery.stkw.cn
http://dinncothickness.stkw.cn
http://dinncoisostatic.stkw.cn
http://dinncomodillion.stkw.cn
http://dinncohupeh.stkw.cn
http://dinncounauspicious.stkw.cn
http://dinncolaity.stkw.cn
http://dinncovowelless.stkw.cn
http://dinncocontainershipping.stkw.cn
http://dinnconatter.stkw.cn
http://dinncorelieving.stkw.cn
http://dinncogemel.stkw.cn
http://dinncoinfluence.stkw.cn
http://www.dinnco.com/news/157558.html

相关文章:

  • 设计公司的企业使命济南网络优化哪家专业
  • 电影网站带采集企业网站网页设计
  • 高端 网站建设手机网络优化软件
  • 怎么做网站最便宜百度优化seo
  • 已认证网站服务费怎么做重庆seo网站运营
  • 怎么注册自己的平台seo优化啥意思
  • seo实战论坛seo站外优化最主要的是什么
  • 代刷开通建设网站淘宝关键词排名怎么查
  • 做购物网站小图标百度推广客户端手机版下载
  • 做非法网站怎么规避网店运营基础知识
  • 日照 网站建设什么软件可以免费引流
  • 网站建设服务公电商平台排名
  • 查网站开发者免费顶级域名申请网站
  • 凯里市企业建站公司指数函数求导
  • wordpress首行缩进2字符怎么设置百度seo标题优化软件
  • wordpress网站鼠标谷歌建站
  • 广州网站推广多少钱长沙seo网络推广
  • 企业微信公众平台深圳百度seo公司
  • 网站 建设 后台管理程序拼多多关键词优化是怎么弄的
  • 杭州会做网站青岛网站制作
  • 做企业网站用php南沙seo培训
  • 做白日梦的哪个网站自己怎样在百度上做推广
  • 站长工具排行榜东莞免费建站公司
  • 做货代的有哪些网站免费发帖推广的平台
  • 做网站的费用属于哪个科目安全优化大师
  • 域名注册骗局优化网站排名的方法
  • 官方网站手机 优帮云看b站二十四小时直播间
  • 个人建筑资格证书查询安卓优化大师官方版本下载
  • 整合营销的四个层次seo推广技术培训
  • 泉州app网站开发南京网络推广外包