一天入门STM32
一天入门STM32 pdfC秉火《零死角玩转STM32》一F1系列时钟源To T钟电路FR和RAMROM定时/计数5系统总线又CPU并行Io口串行Io口中断系统P0p1P2 P3 TXD RXD I。I:图151系统结构框图我们说的51一般是指51系列的单片机,型号有很多,常见的有STC89C51、AT89S51,其中国内用的最多的是STC89C51/2,下面我们就以STC89C51来讲解,并以51简称。内核51由一个IP核和片上外设组成,IP核就是上图中的CPU,片上外设就是上图中的:时钟电路、SFR和RAM、ROM、定时/计数器、并行IO口、串行IO口、中断系统。IP核跟外设之间由系统总线连接,且是8bit的,速度有限51内核是上个世纪70年代 intel公司设计的,速度只有12M,外设是IC丿商(STC)在内核的基础上添加的,不同的IC厂商会在内核上添加不同的外设,从而设计出各具特色的单片机。这里 intel属于PP核厂商,STC属于IC厂商。我们后面要讲的STM32世样,ARM属于P核厂商,ARM给ST授权,ST公司在 Cortex-M3内核的基础上设计出STM32单片机。外设我们在学习51的时候,关于内核部分接触的比较少,使用的最多的是片上外设,我们在编程的时候操作的也就是这些外设。第3页共53页C秉火《零死角玩转STM32》一F1系列编程的时候操作的寄存器位于SFR和RAM这个部分,其中SFR(特殊功能寄存器)占有128字节(实际上只用了26个字节,只有26个寄存器,其他都属于保留区),RAM占有128字节,我们在程序中定义的变量就是放在RAM中。其中SFR和RAM在地址上是重合的,都是在80-FF这个地址区间,但在物理区间上是分开的,所以51的RAM是有256个字节编写好的程序是烧写到ROM区。剩下的外设都是我们非常熟悉的IO口,串∏、定时器、中断这几个外设STM32系统结构STM32系统结构框图接PashDCodeCortexM3SystemSFAMDMATDMAFSMCSDIO通道1套通道2AHB系线线桥接2桥接1APB 1APB2复位和时钟通道7控制DC2PIOD PWR SP1129DMA请求ADCsGFIOE BKPUSART1 GPioF bxCAN WDGSPlGPOG USETIM1RICExTIt2C2TIM2DMA212C1TIEUARTS TIM5GPc日UART& TIM4AHTa通道1USaRT TIM2通通通5AA请求图2STM32系统结构框图内核在系统结构上,STM32和51都属于单片机,都是由内核和片上外设组成。只是STM32使用的 Cortex-M3内核比51复杂得多,优秀得多,支持的外设也比51多得多,同时总线宽度也上升到32bit,无论速度、功耗、外设都强与51。第4页共53页C秉火《零死角玩转STM32》一F1系列从结构框图上看,对比5内核只有一种总线,取指和取数共用。 Cortex-M3内部有若干个总线接∏,以使CM3能同时取址和访内(访问内存),它们是:指令存储区总线(两条)、系统总线、私有外设总线。有两条代码存储区总线负责对代码存储区(即 FLASH外设)的访问,分别是 I-Code总线和 D-Code总线。I-Code用于取指, D-Code用于查表等操作,它们按最佳执行速度进行优化。系统总线( System)用J访问内存和外设,覆盖的区域包括SRAM,片上外设,片外RAM,片夕扩展设备,以及系统级存储区的部分空间。私有外设总线负责一部分私有外设的访问,主要就是访问调试组件。它们也在系统级存储区。还有一个MDA总线,从字面上看,DMA是 data memory access的意思,是一种连接内核和外设的桥梁,它可以访问外设、内存,传输不受CPU的控制,并且是双向通信。简而言之,这个家伙就是一个速度很快的且不受老大控制的数据般运工,这个在51里面是没有的外设从结构框图上看,STM32比51的外设多得多,51有的串口、定时器、O口等外设STM32都有。STM32还多了很多特色外设:如FSMC、SDIO、SPI、2C等,这些外设按照速度的不同,分别挂载到AHB、APB2、APB1这三条总线上。小结从内核和外设这两大方面米比较,SIM32之于51就是一个升级版的单片机。它适应市场,引流淛流,在中低端的微控制器中流光溢彩。12学习方法的区别学习51用寄存器,学习STM32用库。以前我们在学习51的时候,用的是寄存器编程的方法,想要实现什么效果,直接往寄存器里面赋值,优点是直观,简单粗暴,知道自己具体干了啥,心里踏实直接操作寄存器之所以在51上可行,究其原因,我想有两点:1、51主频不高,资源有限,必须注重程序执行的效率,只能直接操作寄存器。关键的地方还得用汇编,不适合用同件库。第5页共53页C秉火《零死角玩转STM32》一F1系列要知道当初我们学习51单片机的时候用的还是汇编,连现在的C编程都不是,就更别说什么斥函数编程2、51功能简单,寄存器不多。以国内普及最广的STC89C52为例,寄存器仝部加起来不到30个。按照功能区分来记的话,可以把每个寄存器背的滚瓜烂熟,并且寄存器每一位的功能都可以记得住,在编程的时候做到了然于胸。现在从51过度到STM32的学习,很多人还是喜欢沿用51的学习方法。接受不了库,在学习库的时候陷入迷糊之中,来回几个月下来,都不知道到底有没学会STM32,因为在这一路的学习中都是在调用库函数,压根就没有操作过寄存器,心里面很不踏实。其实大家在调用库函数的时候心中难道就没有疑问,库的底层是怎么实现的?难道就没有勇气对庥的底层探究竟。可最后当我们丌始跟踪斥函数底层的时候,看到·堆的宏定义、结构体、指针、各种的文件包含,而且注释全部都是荚文的,是不是乂心生忌惮。鉴于此,我想用两个原因来总结下很多初学者畏惧库不愿意用库的原因。1、C语言知识点的欠缺库在实现寄存器映像时使用的宏定义,强制类型转换,在定义寄存器时使用的结构体,在外设初始化函数时使用的指针,在组织头文件时使用的条件编译等C语言知识,在大学课程中很少涉及,大多数老师也基本是不讲。在一些简单的51单片机编程中又很少会用到这些知识。学单片机,做嵌入式开发其实80%的工作都跟C语言编程相关,剩下的20%的匚作就是阅读各种数据手册,熟悉各和硬件外设。所以掌握这些基本的C语言知识,是嵌入式学习中一道迈不过去的坎,STM32的库则给」我们一次提升C的机会凡是可以从书本中找到的,相信我们基本都可以学会,很多初学者并不是不够聪明或者勤奋,只是缺少方向性的指导罢了。对于这欠缺的知识点我们稍微花点时间就可以掌握,剩下的就是不断地实践词试。这里我为大家推荐·本C语言的书籍《C和指针》。2、程序架构设计思想的欠缺这个比较难搞,很多C语言学习得挺好好的人,也比较难掌握。还好我们遇到了SIM32的库,这给了我们一个学习和提升C语言绝佳的机会。库的整个架构是如何搭建起来的,代码上是如何如何一步一步写出来的:从寄存器映像开始,到寄存器的封装,然后到函数的编写,到每个外设函数对应的驱动文件,这里面涉及到了大量的条件编译,文件包含的思想,对应刚写过几行51单片机的初学者来说简直就是噩梦。但是,如果你把这系列的关系弄明自了,那么对库的整个架构也了解的差不多了,以后你就不用嚷嚷着说要操作奇存器了。如果你一开始不喜欢用库,对库开发很忌惮,那么请自问:是不是我的C语学得不够好。库是一种全新的学习方法,是一种河流,我更把它看做是与C语言的又一次历练和提升。是否用库,只差你一个闪亮的回眸第6页共53页C秉火《零死角玩转STM32》一F1系列1.3用寄存器点亮LED为了顺利过渡到库开发,在STM32编程的开始,我们对照51点亮一个LED的方法,给大家演示一下STM32如何用操作寄存器的方法点亮一个IFD,然后再慢慢讲解到底什么是库,让大家知道库跟寄存器的关系1.3.1用51点亮一个LED在用STM32点亮一个LED之前,我们先来复习下用5如何点亮一个LED。硬件上我们假设51单片札的P0口的第0位接了一个LED,负逻辑亮。如果我们要点亮这个LED,代码上我们会这么写1P0=0XFF;//总线操作点亮FD这时侯我们就把LED点亮了,如果要关掉LED,则是:1P0=0xFF;//总线操作关闭二ED这里面我们用的是总线操作的方法,即是对P0口的8个1O同时操作,但起作用的只是P0^0除了这种总线操作的方法,我们还学习过位操作,利用51编译器的关键字sbit,我们可以定义个位变量1sbit工E0^0那么LED=0;就点亮了LED,LED=1;就关闭了LED。为了让程序看起来见名知义,我们定义两个宏:1 #define on 02 define OfF 1点亮和关闭LED的代码就变成了:1 LED//位操作点亮IED2 LED= OFF//位操作关闭LD稍微整理下代码,整体的效果就是:1//假设51单片机的P0~0口接TFD,负逻辑点亮3 #define ON 04 definc Ofe 16 sbit lEd poo8 void main(void)第7页共53页C秉火《零死角玩转STM32》一F1系列9{10PO OXFE;/总线操作点亮0=0XE彐//总线操作关闭LED13工ED=ON;//位操作点亮LED14LED=OF彐;/位操作关闭LED15」上血总线和位操作的的方法,学过51的朋友是非常熟悉的,也很容易理解。那么我们再说一下大家容易忽略的几个知识点。什么是寄存器在点亮LED的时候,我们都是用操作寄存器的方法来实现的,那大家是否想过,这个寄存器到底是什么?为什么我们可以直接操作P0口?解答上面的问题之前,我们先简单介绍下51单片机的主要组成部分,这对我们学习其他单片机也有好处。我们以国内的STC89C51为例,该单片机主要由51内核、外设IP、和总线这三人部分组成。内核是由 Intel公司生产的,外设P就是STC公司在内核的基础上添加的诸如定时器、串口、IO凵等这些东西,总线就是用米连接內核和外设的接凵单元。 Intel在这里属于IP核设计公司,STC属」I设计公司。世界上能设计IP核的公司屈指可数。我们非常熟悉的ARM公司就属于IP核设计公司,ARM给其他公司授权,其他IC公司就在ARM内核上设计出各具特色的MCU,我们后面要学习的STM32就是属于一中基于ARM内核的MCU。寄存器则是内置于各个IP外设中,是一种用于配置外设功能的存储器,就是一种内存,并且有想对应的地址。学过C语言我们就知道,要操作这些内存就可以使用C语言中的指针,通过寻址的方式来操作这些具有特殊功能的内存一寄存器。比如P0口对应的地址是0X80,那么我们要修改0X80这个地址对应的内存的内容的话,按照常理可以这样操作1*(+0X80)=0XEE;点亮LED可当我们编译的吋候,编译器会报错,在51里面只能通过SFR和SBIT这两个关键字来实现寄存器映像,不能直接操作寄存器对应的地址,这是51相较于STM32不同的地万51单片机的这些寄存器位于地址80H~HFH中,对应着128个地址,但不是每个地址都是有效的,51系列的单片机有21个,52系列的则有26个,其他的都是保留区第8页共53页C秉火《零死角玩转STM32》一F1系列表2AT89c52SFR映象及复位状态OFBDEFHDFOHo00000DFTHOE8H0D000000DETH00000003DOTHOC8H0000000)XXXXXXODDCFHx00000037HEDAFH0粪0H11111111DATHSCON98H00000002SBUF9FHP1111111197HTCON88H0000000)TMODTLOTL100000000000000000000000000000000000BFHSPDPHPCON80H1DPLco111OXXX0000图351寄存器映射2.寄存器映射实际上我们在编程的吋侯并不是通过指针来操作奇存器的,而是直接给PO、Pl这些端口寄存器赋值。那么这些外设资源是如何与地址建立一一对应的关系(寄存器映射定义),这得益与51特有的两个关键字:SFR和sbit,其但单片机没有,只能用其他的方式来实现寄存器映射。这两个关健字帮我们实现了所有寄存器的定义,所以我们才可以像操作普通变量一个米操作寄存器。其实我们一开始提到的点亮LED的代码,全貌应该是这样的:1 sfr pocx80;//寄存器定义2P0=0ⅩFE;/总线操作点亮LED为了方便起见,我们可以扣奇存器映射全部写好封装在个头文件里面,不用每用个寄存器就定义一次。其实这方面的工作不用我们做,我们在编程的时候都会在开始的地方添加一个头文件1 include 第9页共53页C秉火《零死角玩转STM32》一F1系列这个头文件已经实现了全部寄存器的定义,该文件是kei自带,在安装目录:KeiC5IINC可以找到。这个文件实现了字节寄存器和位寄存器的定义2 REG514 Header file for generic 80C51 and 80C31 microcontroller5 Copyright (c)-988-2002 Keil ELektronik GIbH and Kei- Software, Inc6 All rights reserved.9 +ifdef REG5- H10#define RFG5. H1112/* BYTF, Reci ster *13sfr0=x80;1456PEE2×90sfrCaO;13BO17 sfr PSWRDO18 sfr AccCeO:901strBsExFO;12222x8-;3 sIr PCoN24 sr icon Cx8825 sfr TMOD Cx89:sfr TloxiA2222367890sfr TCx8Bfr TCx8Cifr Ti18D831 sfr t2×B832 sfr sLHHEPCB9833 sfr sbuf993436/* BIT Register37/+PSW*/38 sbit CYOxD39 sbit ACOxD640 sbit Fo41 sbit rs0xD4;43 sbit ov44 sbit P=0×D0;4546/*TCON*/47 sbit TF0x8F;48 sbit TR0x8E;49 sbit TFo0x8D:50 sbit mro0x8C51 sbit IE-= 0x8B;53 sbit Ieo0x894 shit tto08856/+IE57 sbit eA0×AF58 sbit fs0×AC59 sbit er0×AB;60 sbit EX0×AA61 sbit ero0x90×A8第10页共53页
- 2020-12-08下载
- 积分:1
microTCA规范
PICMG microTCA.0 Specification RC1.0ContentsIntroduction and objectives1.1 Overview1.2 Introduction1.2.1S1.2.2 MicroTCa implementation options1画1-21.2.3 Design goals1-21.2.4 Elements of microtca1-312.5 Theory of operation……着1国面1面日正1-81.3 Micro TCA enclosure types191.3.1 Single Shelf implementation191.3.2 TWo Tier mⅸ ed Width Shelf implementation.…….….….….….….….…....1-101.3.3 Two-Tier fixed Single Width Shelf implementation ....................1-101.3.4 Back-to-Back Shelf implementation.1-101.3.5 Cube Shelf implementation..1-101.3.6 Pico Shelf implementations1111.3.7 Other implementation options1111.4 Application examples1-1114.1 Base station…1-111.42 Router1-121.4.3∨ olP node.….1-121.4.4 Other Telecom Network applicationsE画1-121.4.5 Enterprise applications1-131.4.6 Other applications.....1-131.4.7 Consumer applications1-131.5 Special word usage1-131.6 Conformance1-141.7 Dimensions1-141.8 Regulatory guidelines1-141.9 Reference specifications1.10 MicroTCA0 Specification contributor……1-151-161.11 Name and logo usage1-161.12 Intellectual property……1-171.12.1 Necessary claims1,,面,国国,,国面正∴1-181.12.2 Unnecessary claims11181.12. 3 Third party disclosures1-181.13 Glossary1-192Mechanical2-12.1 Mechanical overview∴………….2-12.1.1 Terminology…2-22.1.2 Typical arrangement examples2-22.2 Dimensions, tolerances, drawing symbols, and nomenclature2-62.3 Mechanical concept2-82.4 AdvancedMC Module orientation, location, and positioning2-1624.1 Module orientation.2-162.4.2 Module positioning, horizontal--mandatory2-172.4.3 Module positioning, vertical-mandatoryU.882-192. 4. 4 Module positioning, depth--mandatory,.42-21PICMG( Micro TCAO Specification Draft RC1. 0, May 26, 2006Do not specify or claim compliance with this Draft Specification2.5 Slot detail dimensions2-222.5.1S|ot..2-222.5.2 Slot configurations, subdividing Slots2-222.5.3 Card guide, Strut, and Card Guide Support Plate(CGSP)…………2232.5.4 Optional Subrack attachment plane2-322.5.5 AdvancedMC Module--optional locking………………………2-342.6 Backplane2-3627 Subrack dimensions2-412.7.1 Mandatory Subrack2-422.8 Shelf2-472.8. 1 Shelf types.2-482.8.2 Shelf width and height…...…2-492.8.3 Shelf depth2-492.8.4 Air filter provision2-502.8.5 ESD wrist strap interface2-502.8.6 Shelf alarm LEDs2-512.9 Cable management2-522. 10 Power entry /Power Module2-562.10.1 Power Module pcb dimensions2-582.10.2 Power Module component height1·面2-632.10.3 Power module face plate2-642.10. 4 Power Module handle/Latch mechanism.2672.10.5 Power module lEDs2-672. 10.6 Power Module EMc gasketing2-672.10.7 Power Module satety covers2-672.10 8 Power module labels2-682.10. 9 Power Module Backplane Connector2-682.11 MCH Module2-692.11.1 Module types2-692.11.2 MCH PCB dimensions.2-702.11.3 MCH Subrack slot details2-772.11. 4 Plug Connector.2-792.11.5 Sequencing and contact area2-812.11.6 MCH positioning2-812. 12 Air flow management面2-822.13 Auxiliary Connector(Zone 2 and zone 3)keying2-832.13.1 Component keep- in height2-842.13.2 Connector keep-in height2-842.133 Keying block…2-852.13.5 AMC0 electrically compatible keying block2.13. 4 Keying block with electrical connections2-86.2-872.14 MicroTCa cube2892.15 MicroTCA Pico2.16 Microtca filler pane的∵面1面面,面2-902-902.17 Cooling Units(CUs)2-912.18 Subrack/Shelf/Cube/Pico performance.2922. 18.1 Load carrying2-922.18.2 Insertion cycles2922.18.3ESD2-922.18.4EMC2-93PICMG MicroTCA. 0 Specification Draft RC1.O, May 26, 2006Do not specify or claim compliance with this Draft Specification2. 18.5 Safety2-932.18.6 Physical Slot and Tier numbering2932.19 Subrack/Shelf environmental2-962.19. 1 Subrack shock and vibration2-962.19.2 Earthquake.........2-962.19.3 Flammability2-962.19.4 Atmospheric2-962. 19.5 Thermal2-972.19.6 Acoustic∴…………………2972.19.7 Surface temperatures2-972.20 References2-973 Hardware platform management3-13.1 Overview3.1.1 Micro Tca Carrier model3-13.1.3 Relationship with IPMI, AdvancedMC, and AdvancedTCA.3.1.2 MicroTCA management architecture3-23-73.1.4 Key differences from PICMG 3.0 and AMC.0 specifications..........3-73.1.5 PICMG properties and FRU Device ID assignments3-93.2 Management-related interconnects3-113.2.1 AdvancedMc interconnects3-113.2.2 Power Module and Cooling Unit interconnects3.2.3 Guidelines for OEM Module interconnects and management3-133-143.2.4 Carrier FRU Information device requirements.3-153.25 Microtca carrier interconnects3-193.3 Carrier Manager.…….…..…...…3-203.3.1 MCH Face Plate indicators3-223.3.2 Payload Interface3-223.3.3 Carrier Manager IP address3-223.3.4 IPM event support∴3-243.3.5 Redundant MCH operation3-253.3.6 Addressing3-263.3.7 Carrier number3-293.3.8 Location information34 Shelf Manager…3-383. 4.1 Shelf Manager configuration options383.4.2 Differences from the AdvancedTca shelf Manager3-403.4.3 Shelf-Carrier Manager Interface翻套国画1面,国面,1面D国画面国3-423.4.4 Shelf Manager IP addre3-433.5 MCMC requirements3453.6 EMMC requirements3-463.7 Operational state management3-483.7.1 Carrier Manager start up……….….….….………..……3483.7.2 Shelf Manager actions on Carrier detection3-483.7.3 Normal Shelf operation1B面面国B3-483.7.4 Abnormal situation handling3-4938 Power management.……3-493.8.1 Power clapping国面3-503.8.2 Micro T CA Carrier Power Management records.3-513.8.3 Early power management356PICMG( Micro TCAO Specification Draft RC1. 0, May 26, 2006Do not specify or claim compliance with this Draft Specification3.8.4 Normal power management.3-573.8.5 Power management commands and sensors3-593.8.6 Abnormal power condition handling3-673.9 Cooling management3-693.9.1 Fan geography.…3-703.9.2 Cooling control…3-713.9.3 Normal cooling operation3-723.9.4 Abnormal cooling operation3-733.9.5 Fan tachometer sensors3-733.9.6 Temperature sensors翻画1国翻B1B…3-733.10 Electronic Keying3-743.10.1 Micro TCA Carrier point-to-point connectivity information3-753.10.2 Module point-to-point connectivity information.3-773.10.3 AMC Port state commands3-783.10.4 Clock b- Keying……3-783.11 Telco alarm management3-73. 12 System Event log…………3-863.13 Sensor management3-863.13.1 Guidelines and requirements for fru sensor events3-863.13.2 MCMC SDR requirements.3-873.13.3 EMMC SDR requirements3-883.13.4 Carrier Manager SDR requirements3-883.14 fru Information.3-913. 14.1 EMMC FRU Information3-913. 14.2 MCMC FRU Information3-913.143 Carrier FRu Information3-923. 14.4 Shelf fru information面国面国面3-923.15 PMI message bridging……….3-933.15.1 Message bridging process3-933.16 PMI functions and command3-943. 16.1 Required IPMI functions..3-953.16.2 Command assignments3-973.17 FRU records, sensors and entity Ids∴3-1084 Power…4-14.1 Overview4-14.2 Loads on the Power Subsystem4-24.2.1 Microtca carrier hub(MCH),………,………………………24-24.2.2 Cooling Units4-74.2.3 Advanced mezzanine cards4-104.3 Power architecture4-134.3.1 Basic functionality4-134.3.2 Partitioning of the Power Subsystem:.::a:.4-154.3.3 Power sources4-154.3. 4 Power Subsystem redundancy4-164.3.5 System Grounding considerations4-214.3.6 Power distribution and backplane considerations4-234.4 Control and monitoring of the Power Subsystem4-2444.1 PM-EMMCs4-244.4.2 Geographic Address4-24PICMG MicroTCA. 0 Specification Draft RC1.O, May 26, 2006Do not specify or claim compliance with this Draft Specification4.4.3|PMB-04-2444.4Ps1[S|o#4-254.4.5EN[Slof]#,…4-2544.6 PWRON_[Sot]…4-254.4.7PSPM#4-2644.8 PM-EMMC watchdog timer……4264.4.9 Power Module oK4-2744.10 Power module reset4-274.4.11 System power-up4-274.4.12 Input voltage sensors1国面面量面1国面4-294.4.13 Temperature sensors4-294414 Power module extraction switch4-304,415 Blue lED4-304.4.16LED14-314 4.17 Other leds4-314.5 Connectors4-314.5. 1 Power Module Output Connector4-324.5.2 Power Module Input Connectors81国面面4-324.6 Single-Width,Fu‖- Height Power Module…∴4-334.6.1 Inputs4-344.6.2 Outputs4-354.6.3 Bulk supply current limit4-384.6.4 Control and monitoring………………………4-384.6.5 Redundancy4-384.6.6 Mechanical4-4546.7 Thermals.8...8.88.84-45画·面4.6.8 Regulatory.4-4547 Other mechanical considerations…4-464.7.1 Double-Width form factor4-464.7.2 Form factors other than Full-Height4-464.8 Power source considerations.4-464.8.1 DC power feeds4-474.8.2 AC power feeds4-554.9 References4-605 Thermal5.1 Overview5-15.2 AMC. 0 Modules and microtCa国着画5-15.3 AMC.0 Carriers and microtca5.4 Subrack slot5-25.5 Airflow path5.6 AMC.0 Modules and power dissipation.5-35-35.7 MicroTCA system cooling configuration……….….….…....545. 8 Air distribution in a slot5-45.9 Air inlet and exhaust5-55. 10 Slot cooling capability5-55. 11 Module cooling requirements●5.12 Standard air.5-75.12.1 Derivatie5.122 Barometric changes due to weather....…...……….57PICMG( Micro TCAO Specification Draft RC1. 0, May 26, 2006Do not specify or claim compliance with this Draft Specification5.13 Slot impedance curve.5-85.14 Slot fan flow curve5.15 Cooling Unit failure5-85.16 Filters5.17 System sensors….…….….……5-95.18 Thermal and operating environment5-105.19 Thermal and cabling5-105.20 Simulation and impedance testing5-105.20.1 AdvancedMC/MCH reference Module..5-115.20.2 Power Unit reference module∴5-125.21 Simulation environment5.22 Thermal dynamic modeling5-135.23 Fluid networking modeling5.24 Acoustic noise5-135.25 Surface temperature5-145.26 Design recommendations5-155.27 Cooling limitations and examples..5-175.28 References1面5-226 Interconnect6-16.1 Introduction.…6-16.2 Fabric interface6.2.1 Backplane fabric interface support requirements6-26.2.2 MCH fabric interface support requirements6.3 MCH Specific Interfaces6-46.3.1 MCH update Channel interface6-46.3.2 MCH cross-over Channel interface.6-56. 3. 3 MCH PWR ON interface6-66.3.4 Inter-MCH IPMB-L interface6.4 Synchronization clock interface6.4.1 Signal descriptions6-86. 4.2 Clock architectures6-96.4.3 Non-Telecom and Telecom clocks6-136.5 JTAG interface.…6-136.5.1 JSM Overview6-146.5.2 JSM Signaling Overview6-166.5.3 JSM Interface to mch16.54 JSM Interface to mch2.……6-186.5.5 JSM Interface to Advancedmcs.6-196.5.6 JSM Interface to Power modules.6-226.5.7 JSM Master mode selection6-236.5.8 JSM Interface to External tester..6-246.5.9 MCH JTAG6-266.5. 10 Power module jtAG6-276.6 MicroTCA Interface topologies1画6-276.6. 1 Topology models6-286.6.2 Correlation to AdvancedMc fabric regions6-296.7 MCH Connector pin allocation6-306.7.1 Pin naming conventions6-316.7.2 Fabric interface naming conventions6-31PICMG MicroTCA. 0 Specification Draft RC1.o, May 26, 2006Do not specify or claim compliance with this Draft Specification6.7.3 Synchronization clock interface naming convention6-316.7.4 MCH Connector pin list……………6-326.8 System examples.6-386.8. 1 Redundant MicroTCA system6-386.8.2 Variant redundant microtca interconnect6-416.8.3 Non-redundant MicroTCA system6-45Connectors7-17.1 General information7-17.2 AdvancedMC Backplane Connectors7-17.2.1 AdvancedMC Backplane Connector pin list7-27.2.2 AdvancedMC Backplane Connector dimensions7-27.2.3 Advancedmc backplane connector pcb layout∴7-67. 2. 4 AdvancedMC Backplane Connector electrical characteristics7-107.2.5 AdvancedMC Backplane Connector high-speed characteristics7-147.2.6 AdvancedMC Backplane Connector mechanical characteristics7-187.3 Micro TCa Carrier hub connectors7-197.3.1 Micro TCA Carrier Hub Connector pin list7-197.3.2 Micro TCA Carrier Hub mating interface design7-207.3.3 Micro TCA Carrier Hub backplane connector7-227.3. 4 Micro TCA Carrier Hub Connector Backplane PCB layout7-237. 3.5 Micro tca Carrier Hub connector electrical characteristics7-247.3.6 Micro TCA Carrier Hub Connector high-speed characteristics7-2573.7 Micro tCa Carrier hub connector mechanical characteristics7-297.4 Power Module Output Connector7.4.1 Power Module Output Connector pin list and mating sequence7-317.4.2 Power Module Output Connector dimensions7-327. 4.3 Power Module Output Connector Backplane PCb layout7-347.4.4 Electrical characteristics for power Module output connector.7-367.4.5 Power Module Output Connector mechanical characteristics7-397.5 Power Module Input Connector7.5.1 Power Module Input Connector pin list and mating sequence7-417.5.2 Power Module Input Connector dimensions7-427.5.3 Electrical characteristics for Power Module Input Connector7-477.5.4 Power Module Input Connector mechanical characteristics7-517.6 AdvancedMC Auxiliary Connector7-537.7 Test schedule7-547.7.1 Specimen measurement arrangements7-547.7.2 Test schedule tables.7-647. 8 References.7-798 Regulatory requirements and industry standard guidelines8-18.1 Regulatory……8-18.1.1 Safety8-18.1.2 Electromagnetic compatibility..……………8-28.1.3 Ecology standards.8-28.2 Telecommunications industry standards requirements8-38. 2. 1 EMC/safety requirements for the telecommunications industry.......8-38.2.2 Environmental requirements for the telecommunications industry ..............8-48.3 Reliability/MTBF standards8-7PICMG( Micro TCAO Specification Draft RC1. 0, May 26, 2006Do not specify or claim compliance with this Draft Specification8.4 Cross reference list8.5 FRU test guidelines∴8-78.5. 1 FRU safety test8-88.5.2 FRU EMC testing.8-88.5.3 FRU environmental testing8-9a Module mis-insertion considerationsA-1A 1 MCH Module mis-insertion combinationsA-2A 2 AdvancedMc module mis-insertion combinationsA-5A3 Power management implicationsA-8A 4 System management implicationsA-8A.4.1 Optional MMC instance on MCH ModuleA-9A.4.2 Using an AdvancedMC in an MCH SlotA-13A.4.3 Using an mch in an AdvancedMc SlotA-15A.4.4 Detecting mis-insertionsA-16A.5 Hardware implicationsA-1A. 5. 1 GNd pins at same locations........A-20A.5.2 PSO# and PS1# pins at same locationsA-23A.5.3 PWR and MP pins at same locationsA27A.5. 4 PWR ON pinA-29A.5.5 Ga[2: 0] pins at same locations道1面4…A-31A.5.6 ENABLE# pin at same locationA-35A.5.7 SDA L and SCL L pinsA-37A 5.8 JTAG pinsA-38A 5.9 Cross-over pinsA-39A.5. 10 TMREQ#, 12C SDA, and I2C SCL pins…A-39B Requirement list….B-1PICMG MicroTCA. 0 Specification Draft RC1.O, May 26, 2006Do not specify or claim compliance with this Draft Specification
- 2020-06-05下载
- 积分:1