摘要: 摘要: 安规距离要求部分 抗干扰、EMC部分 整体布局及走线部分 热设计部分 工艺处理部分 安规距离要求部分 包括电气间隙(空间距离),爬电距离(沿面距离)和绝缘穿透距离。 1、电气间隙:两相邻导体或一个导体与相邻电机壳表面的沿空气测量的最短距离。 2、爬电距离:两相邻导体或一个导体与相邻电机壳表面 阅读全文
posted @ 2022-02-23 21:13 liujunhuasd 阅读(1400) 评论(0) 推荐(0) 编辑
摘要: 在U-boot中引入驱动模型(driver model),为驱动的定义和范文接口提供统一的方法,提高驱动间的兼容性以及访问的标准性,u-boot中的驱动模型(DM)和kernel中的设备驱动模型类似,但是也有所区别 通过宏定义CONFIG_DM使能驱动模型,对应的实际驱动设备则需要通过使能CONFI 阅读全文
posted @ 2022-02-23 21:10 liujunhuasd 阅读(1276) 评论(0) 推荐(0) 编辑
摘要: 函数位置在dirver/core/ofnode.c文件 bool ofnode_pre_reloc(ofnode node) { #if defined(CONFIG_SPL_BUILD) || defined(CONFIG_TPL_BUILD) /* for SPL and TPL the rem 阅读全文
posted @ 2022-02-23 21:08 liujunhuasd 阅读(89) 评论(0) 推荐(0) 编辑
摘要: /* * Translate an address from the device-tree into a CPU physical address, * this walks up the tree and applies the various bus mappings on the * way 阅读全文
posted @ 2022-02-23 21:07 liujunhuasd 阅读(201) 评论(0) 推荐(0) 编辑
摘要: const void *fdt_getprop(const void *fdt, int nodeoffset, const char *name, int *lenp) { return fdt_getprop_namelen(fdt, nodeoffset, name, strlen(name) 阅读全文
posted @ 2022-02-23 19:42 liujunhuasd 阅读(605) 评论(0) 推荐(0) 编辑
摘要: fdt_addr_t devfdt_get_addr_index(const struct udevice *dev, int index) { #if CONFIG_IS_ENABLED(OF_CONTROL) && !CONFIG_IS_ENABLED(OF_PLATDATA) fdt_addr 阅读全文
posted @ 2022-02-23 13:06 liujunhuasd 阅读(264) 评论(0) 推荐(0) 编辑