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

网站开发合作运营平台合同专业做简历找什么店

网站开发合作运营平台合同,专业做简历找什么店,公司名称被大量网站收录,德钦网站建设目录 1、gic的版本2、GICv3/gicv4的模型图3、gic中断号的划分4、GIC连接方式5、gic的状态6、gic框架7、gic Configuring推荐 本文转自 周贺贺#xff0c;baron#xff0c;代码改变世界ctw#xff0c;Arm精选#xff0c; armv8/armv9#xff0c;trustzone/tee#xff0c;s… 目录 1、gic的版本2、GICv3/gicv4的模型图3、gic中断号的划分4、GIC连接方式5、gic的状态6、gic框架7、gic Configuring推荐 本文转自 周贺贺baron代码改变世界ctwArm精选 armv8/armv9trustzone/teesecureboot资深安全架构专家11年手机安全/SOC底层安全开发经验。擅长trustzone/tee安全产品的设计和开发。 1、gic的版本 GIC是一个为Cortex-A和Arm Cortex-R设计的标准的中断控制器 2、GICv3/gicv4的模型图 3、gic中断号的划分 Shared Peripheral Interrupt (SPI) Private Peripheral Interrupt (PPI) Software Generated Interrupt (SGI) Locality-specific Peripheral Interrupt (LPI) 使用示例 4、GIC连接方式 5、gic的状态 中断的生命周期: 对于电平触发的中断(level-sensitive interrupts)一个上升沿输入将中断变成pending中断信号线保持高电平直到PE断言该中断信号. 对于边沿触发的中断(edge-sensitive interrupts)一个上升沿输入将中断变成pending中断信号线不会保持高电平. 6、gic框架 • Distributor interface • Redistributor interface • CPU interface Distributor (GICD_*) for SPIs • Interrupt prioritization and distribution of SPIs • Enable and disable SPIs • Set the priority level of each SPI • Route information for each SPI • Set each SPI to be level-sensitive or edge-triggered • Generate message-signaled SPIs • Control the active and pending state of SPIs • Determine the programmer’s model that is used in each Security state: affinity routing or legacy Redistributors (GICR_*) • Enable and disable SGIs and PPIs • Set the priority level of SGIs and PPIs • Set each PPI to be level-sensitive or edge-triggered • Assign each SGI and PPI to an interrupt group • Control the state of SGIs and PPIs • Control the base address for the data structures in memory that support the associated interrupt properties and pending state for LPIs • Provide power management support for the connected PE CPU interfaces (ICC_*_ELn) • Provide general control and configuration to enable interrupt handling • Acknowledge an interrupt • Perform a priority drop and deactivation of interrupts • Set an interrupt priority mask for the PE • Define the preemption policy for the PE • Determine the highest priority pending interrupt for the PE In Arm CoreLink GICv3, the CPU Interface registers are accessed as System registers: ICC_*_ELn. 7、gic Configuring 全局配置 GICD_CTLR.ARE: Enable Affinity routing (ARE bits), 1-使用gicv3 mode0-使用legacy mode(gicv2 mode). 默认为1 GICD_CTLR.EnableGrp1S GICD_CTLR.EnableGrp1NS GICD_CTLR.EnableGrp0 注意在GIC-600 does not support legacy operation (Redistributor)Settings for each PE Redistributor中包含了一个GICR_WAKER寄存器用于记录connected PE的状态是onLine还是offline. 如果让PE变成online软件则必需这样做 • Clear GICR_WAKER.ProcessorSleep to 0. • Poll GICR_WAKER.ChildrenAsleep until it reads 0 如果PE is offline (GICR_WAKER.ProcessorSleep1)时来了一个中断target到该PE上将产一个wake request信号这个信号连接PE的power controller该controller将会打开PE。然后PE clear the ProcessorSleep bit CPU interfaces (ICC_*_ELn) SRE bit— enable cpu interface 注有些处理器可能不支持legacy operationSRE比特位也是固定为1那么软件就不需要处理该比特了 Set Priority Mask and Binary Point registers ICC_PMR_EL1、ICC_BPRn_EL1 Set EOI mode EOI:End of interrupt ICC_CTLR_EL1 and ICC_CTLR_EL3 Enable signaling of each interrupt group ICC_IGRPEN1_EL1 (banked by Security state) ICC_IGRPEN0_EL1 PE configuration Routing controls - SCR_EL3 、 HCR_EL2Interrupt masks - PSTATEVector table - VBAR_ELn interrupt sources configuration SPIs are configured through the Distributor, using the GICD_* registers.PPIs and SGIs are configured through the individual Redistributors, using the GICR_* registers 对于每一个中断软件必需配置的 Priority: GICD_IPRIORITYn, GICR_IPRIORITYnGroup: GICD_IGROUPn, GICD_IGRPMODn, GICR_IGROUPn, GICR_IGRPMODnEdge-triggered or level-sensitive: GICD_ICFGRn, GICR_ICFGRnEnable: GICD_ISENABLERn, GICD_ICENABLER, GICR_ISENABLERn, GICR_ICENABLERn Setting the target PE for SPIs GICD_IROUTERn.Interrupt_Routing_Mode 0 rounting到制定的PEGICD_IROUTERn.Interrupt_Routing_Mode 1 Distributor硬件会自动选择一个PE可以是0-n A PE can opt out of receiving 1-of-N interrupts. This is controlled by the DPG1S, DPG1NS and DPG0 bits in GICR_CTLR. Routing a pending interrupt to a PE Check that the group associated with the interrupt is enabledCheck that the interrupt is enabledCheck the routing controls to decide which PEs can receive the interrupt. routing is controlled by GICD_IROUTERnAn SPI can target one specific PE, or any one of the connected PEsCheck the interrupt priority and priority mask to decide which PEs are suitable to handle the interrupt Each PE has a Priority Mask register, ICC_PMR_EL1, in its CPU interfaceCheck the running priority to decide which PEs are available to handle the interrup Only an interrupt with a higher priority than the running priority can preempt the current interrupt 软件读取中断号 中断优先级 中断结束End of interrupt Priority drop - 将中断优先级降到中断产生之前的值Deactivation - 将中断从active变成inactive 在gicv3中drop和deactivation通常是一起打开的。 ICC_CTLR_ELn.EOImode 1: 通过写ICC_EOIR0_EL1、ICC_EOIR1_EL1让drop and deactivation同时生效 ICC_CTLR_ELn.EOImode 0: 通过写ICC_EOIR0_EL1、ICC_EOIR1_EL1让drop生效写ICC_DIR_EL1让deactivation生效这在虚拟化中会用到. 大多数的软件系统中 EOIMode0而下hypervisor的系统中 EOIMode1 中断号的状态 产生SGI中断 PE在secure执行时可以产生secure和non-secure的SGI; PE在non-secure执行时也是可以产生secure的SGI但是取决于GICR_NSACR寄存器的配置该寄存器只能在secure中读写 比较GICv3和GICv2 在gicv2中SGI INTIDs对于originating PE和the target PE是banked 在gicv3中SGI仅仅对target PE是banked 在gicv2中同时收到两个SGI5中断两个中断都会被PE处理。 而在gicv3上由于originating不是banked所有前一个SGI5中断将会丢失。PE只能收到一个 Legacy operation When ARE0, affinity routing is disabled (legacy operation)When ARE1, affinity routing is enabled (GICv3 operation) 推荐 ARMv8/ARMv9架构从入门到精通 --博客专栏《Armv8/Armv9架构从入门到精通 第二期》 --大课程8天入门ARM架构 --入门课程
文章转载自:
http://www.morning.xmrmk.cn.gov.cn.xmrmk.cn
http://www.morning.tqsmc.cn.gov.cn.tqsmc.cn
http://www.morning.reababy.com.gov.cn.reababy.com
http://www.morning.jspnx.cn.gov.cn.jspnx.cn
http://www.morning.wrbx.cn.gov.cn.wrbx.cn
http://www.morning.ywqw.cn.gov.cn.ywqw.cn
http://www.morning.qstjr.cn.gov.cn.qstjr.cn
http://www.morning.kmldm.cn.gov.cn.kmldm.cn
http://www.morning.zlqyj.cn.gov.cn.zlqyj.cn
http://www.morning.rknsp.cn.gov.cn.rknsp.cn
http://www.morning.bdypl.cn.gov.cn.bdypl.cn
http://www.morning.prsxj.cn.gov.cn.prsxj.cn
http://www.morning.gctgc.cn.gov.cn.gctgc.cn
http://www.morning.wwkft.cn.gov.cn.wwkft.cn
http://www.morning.krdmn.cn.gov.cn.krdmn.cn
http://www.morning.grqlc.cn.gov.cn.grqlc.cn
http://www.morning.bnbtp.cn.gov.cn.bnbtp.cn
http://www.morning.srnhk.cn.gov.cn.srnhk.cn
http://www.morning.c7495.cn.gov.cn.c7495.cn
http://www.morning.fhwfk.cn.gov.cn.fhwfk.cn
http://www.morning.khdw.cn.gov.cn.khdw.cn
http://www.morning.sgbjh.cn.gov.cn.sgbjh.cn
http://www.morning.fxzgw.com.gov.cn.fxzgw.com
http://www.morning.plqhb.cn.gov.cn.plqhb.cn
http://www.morning.nlqgb.cn.gov.cn.nlqgb.cn
http://www.morning.dwwlg.cn.gov.cn.dwwlg.cn
http://www.morning.pjfmq.cn.gov.cn.pjfmq.cn
http://www.morning.plfy.cn.gov.cn.plfy.cn
http://www.morning.fhqsm.cn.gov.cn.fhqsm.cn
http://www.morning.wtcd.cn.gov.cn.wtcd.cn
http://www.morning.bnfrj.cn.gov.cn.bnfrj.cn
http://www.morning.gbyng.cn.gov.cn.gbyng.cn
http://www.morning.fkmrj.cn.gov.cn.fkmrj.cn
http://www.morning.jqkrt.cn.gov.cn.jqkrt.cn
http://www.morning.jfxth.cn.gov.cn.jfxth.cn
http://www.morning.fyzsq.cn.gov.cn.fyzsq.cn
http://www.morning.trffl.cn.gov.cn.trffl.cn
http://www.morning.jfcbz.cn.gov.cn.jfcbz.cn
http://www.morning.tbkqs.cn.gov.cn.tbkqs.cn
http://www.morning.nrfrd.cn.gov.cn.nrfrd.cn
http://www.morning.bztzm.cn.gov.cn.bztzm.cn
http://www.morning.ygwbg.cn.gov.cn.ygwbg.cn
http://www.morning.xphls.cn.gov.cn.xphls.cn
http://www.morning.nyqxy.cn.gov.cn.nyqxy.cn
http://www.morning.hgcz.cn.gov.cn.hgcz.cn
http://www.morning.xbxks.cn.gov.cn.xbxks.cn
http://www.morning.brwnd.cn.gov.cn.brwnd.cn
http://www.morning.dqwkm.cn.gov.cn.dqwkm.cn
http://www.morning.kgjyy.cn.gov.cn.kgjyy.cn
http://www.morning.fssjw.cn.gov.cn.fssjw.cn
http://www.morning.brbmf.cn.gov.cn.brbmf.cn
http://www.morning.bnygf.cn.gov.cn.bnygf.cn
http://www.morning.rhwty.cn.gov.cn.rhwty.cn
http://www.morning.rgxn.cn.gov.cn.rgxn.cn
http://www.morning.ykmg.cn.gov.cn.ykmg.cn
http://www.morning.tcxzn.cn.gov.cn.tcxzn.cn
http://www.morning.rnnts.cn.gov.cn.rnnts.cn
http://www.morning.qbpqw.cn.gov.cn.qbpqw.cn
http://www.morning.rglzy.cn.gov.cn.rglzy.cn
http://www.morning.hmsong.com.gov.cn.hmsong.com
http://www.morning.fqsxf.cn.gov.cn.fqsxf.cn
http://www.morning.mkccd.cn.gov.cn.mkccd.cn
http://www.morning.qzqfq.cn.gov.cn.qzqfq.cn
http://www.morning.tytly.cn.gov.cn.tytly.cn
http://www.morning.rongxiaoman.com.gov.cn.rongxiaoman.com
http://www.morning.jyfrz.cn.gov.cn.jyfrz.cn
http://www.morning.knqzd.cn.gov.cn.knqzd.cn
http://www.morning.jbfzx.cn.gov.cn.jbfzx.cn
http://www.morning.ntyks.cn.gov.cn.ntyks.cn
http://www.morning.bnfsw.cn.gov.cn.bnfsw.cn
http://www.morning.njddz.cn.gov.cn.njddz.cn
http://www.morning.bhdtx.cn.gov.cn.bhdtx.cn
http://www.morning.bpmfg.cn.gov.cn.bpmfg.cn
http://www.morning.mmsf.cn.gov.cn.mmsf.cn
http://www.morning.mhpmw.cn.gov.cn.mhpmw.cn
http://www.morning.nxbsq.cn.gov.cn.nxbsq.cn
http://www.morning.qlck.cn.gov.cn.qlck.cn
http://www.morning.a3e2r.com.gov.cn.a3e2r.com
http://www.morning.fgppj.cn.gov.cn.fgppj.cn
http://www.morning.paoers.com.gov.cn.paoers.com
http://www.tj-hxxt.cn/news/282292.html

相关文章:

  • 什么事网站建设免费网络项目资源网
  • 山西网站开发二次开发wordpress 注册邮箱验证失败
  • 小蘑菇网站建设下载东莞 外贸网站建设
  • 域名到期了网站备案还有效吗wordpress中文手册下载
  • 广西区建设厅网站南康家具网站建设
  • 江苏做网站的公司有哪些中企动力常州分公司
  • 自建网站系统北京html5网站建设
  • 保定 网站制作 招聘网站起域名原则
  • 织梦网站栏目字体怎么调摄影设计素材
  • 工控网做网站维护吗凤岗网站建设
  • 网站开发软硬件配置网站建设有那几个类型
  • 网站改版规则青岛联通网站备案
  • 网站做SEO优化多少钱wordpress 值得买主题
  • 网站开发公司云鲸互创怎么联系适合seo的wordpress模板
  • 济宁网站建设有限公司网站推广注册
  • 中文网站做google广告怎么样网站空间后台
  • 怎么找上海网站建网站建设公司天强科技
  • 随州建设局网站茂名做网站
  • 怀远做网站用地方别名做网站名
  • 郑州注册公司流程广州网站优化服务
  • 中国设计网站官网地址好的公文写作网站
  • 网站开发用到哪些技术手机商城系统
  • 温州快速网站建设排名购物网站建设运营需求
  • 河北网络营销推广seo霸榜seo
  • 有关网站建设国内外现状的文献山东网站建设优化技术
  • 给孩子做衣服的网站9i网站建设
  • 网站怎么做定时任务室内设计网站推荐知乎
  • 模板的种类云南昆明网站建设快速优化
  • 哪里可以做企业网站wordpress修改发布页面插件
  • 网站改版设计流程seo排名怎么样