| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929 |
- <?xml version="1.0" encoding="UTF-8" standalone="no"?>
- <!--SPDX-License-Identifier: GPL-2.0-or-later OR BSD-3-Clause-->
- <!--Copyright (C) 2023 Texas Instruments Incorporated - https://www.ti.com/-->
- <svg
- version="1.1"
- width="706px"
- height="951px"
- viewBox="-0.5 -0.5 706 951"
- id="svg408"
- sodipodi:docname="boot_diagram_j7200_am62x.svg"
- inkscape:version="1.1.2 (0a00cf5339, 2022-02-04)"
- xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
- xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
- xmlns:xlink="http://www.w3.org/1999/xlink"
- xmlns="http://www.w3.org/2000/svg"
- xmlns:svg="http://www.w3.org/2000/svg"
- xmlns:xhtml="http://www.w3.org/1999/xhtml">
- <sodipodi:namedview
- id="namedview410"
- pagecolor="#ffffff"
- bordercolor="#666666"
- borderopacity="1.0"
- inkscape:pageshadow="2"
- inkscape:pageopacity="0.0"
- inkscape:pagecheckerboard="0"
- showgrid="false"
- inkscape:zoom="1.4342797"
- inkscape:cx="184.06452"
- inkscape:cy="292.1327"
- inkscape:window-width="3440"
- inkscape:window-height="1416"
- inkscape:window-x="0"
- inkscape:window-y="0"
- inkscape:window-maximized="1"
- inkscape:current-layer="svg408" />
- <defs
- id="defs2" />
- <g
- id="g398">
- <rect
- x="235.5"
- y="50"
- width="137.5"
- height="40"
- rx="6"
- ry="6"
- fill="rgb(255, 255, 255)"
- stroke="rgb(0, 0, 0)"
- pointer-events="all"
- id="rect4" />
- <path
- d="M 304.25 90 L 304.25 940"
- fill="none"
- stroke="rgb(0, 0, 0)"
- stroke-miterlimit="10"
- stroke-dasharray="3 3"
- pointer-events="all"
- id="path6" />
- <g
- transform="translate(-0.5 -0.5)"
- id="g12">
- <switch
- id="switch10">
- <foreignObject
- style="overflow: visible; text-align: left;"
- pointer-events="none"
- width="100%"
- height="100%"
- requiredFeatures="http://www.w3.org/TR/SVG11/feature#Extensibility">
- <xhtml:div
- style="display: flex; align-items: unsafe center; justify-content: unsafe center; width: 136px; height: 1px; padding-top: 70px; margin-left: 237px;">
- <xhtml:div
- style="box-sizing: border-box; font-size: 0px; text-align: center;"
- data-drawio-colors="color: rgb(0, 0, 0); ">
- <xhtml:div
- style="display: inline-block; font-size: 12px; font-family: Verdana; color: rgb(0, 0, 0); line-height: 1.2; pointer-events: all; white-space: normal; overflow-wrap: normal;">Cortex-R</xhtml:div>
- </xhtml:div>
- </xhtml:div>
- </foreignObject>
- <text
- x="304"
- y="74"
- fill="rgb(0, 0, 0)"
- font-family="Verdana"
- font-size="12px"
- text-anchor="middle"
- id="text8">Cortex-R</text>
- </switch>
- </g>
- <rect
- x="298.75"
- y="160"
- width="10"
- height="130"
- fill="rgb(255, 255, 255)"
- stroke="rgb(0, 0, 0)"
- pointer-events="all"
- id="rect14" />
- <rect
- x="301"
- y="161"
- width="71.5"
- height="30"
- fill="#ffe6cc"
- stroke="#d79b00"
- pointer-events="all"
- id="rect16" />
- <g
- transform="translate(-0.5 -0.5)"
- id="g22">
- <switch
- id="switch20">
- <foreignObject
- style="overflow: visible; text-align: left;"
- pointer-events="none"
- width="100%"
- height="100%"
- requiredFeatures="http://www.w3.org/TR/SVG11/feature#Extensibility">
- <xhtml:div
- style="display: flex; align-items: unsafe center; justify-content: unsafe center; width: 70px; height: 1px; padding-top: 176px; margin-left: 302px;">
- <xhtml:div
- style="box-sizing: border-box; font-size: 0px; text-align: center;"
- data-drawio-colors="color: rgb(0, 0, 0); ">
- <xhtml:div
- style="display: inline-block; font-size: 12px; font-family: Helvetica; color: rgb(0, 0, 0); line-height: 1.2; pointer-events: all; white-space: normal; overflow-wrap: normal;">ROM</xhtml:div>
- </xhtml:div>
- </xhtml:div>
- </foreignObject>
- <text
- x="337"
- y="180"
- fill="rgb(0, 0, 0)"
- font-family="Helvetica"
- font-size="12px"
- text-anchor="middle"
- id="text18">ROM</text>
- </switch>
- </g>
- <rect
- x="299.75"
- y="305"
- width="10"
- height="205"
- fill="rgb(255, 255, 255)"
- stroke="rgb(0, 0, 0)"
- pointer-events="all"
- id="rect24" />
- <rect
- x="302"
- y="306"
- width="105.5"
- height="30"
- fill="#d5e8d4"
- stroke="#82b366"
- pointer-events="all"
- id="rect26" />
- <g
- transform="translate(-0.5 -0.5)"
- id="g32">
- <switch
- id="switch30">
- <foreignObject
- style="overflow: visible; text-align: left;"
- pointer-events="none"
- width="100%"
- height="100%"
- requiredFeatures="http://www.w3.org/TR/SVG11/feature#Extensibility">
- <xhtml:div
- style="display: flex; align-items: unsafe center; justify-content: unsafe center; width: 104px; height: 1px; padding-top: 321px; margin-left: 303px;">
- <xhtml:div
- style="box-sizing: border-box; font-size: 0px; text-align: center;"
- data-drawio-colors="color: rgb(0, 0, 0); ">
- <xhtml:div
- style="display: inline-block; font-size: 12px; font-family: Helvetica; color: rgb(0, 0, 0); line-height: 1.2; pointer-events: all; white-space: normal; overflow-wrap: normal;">Cortex-R SPL</xhtml:div>
- </xhtml:div>
- </xhtml:div>
- </foreignObject>
- <text
- x="355"
- y="325"
- fill="rgb(0, 0, 0)"
- font-family="Helvetica"
- font-size="12px"
- text-anchor="middle"
- id="text28">Cortex-R SPL</text>
- </switch>
- </g>
- <rect
- x="308.75"
- y="190"
- width="90"
- height="40"
- rx="6"
- ry="6"
- fill="none"
- stroke="rgb(0, 0, 0)"
- pointer-events="all"
- id="rect34" />
- <g
- transform="translate(-0.5 -0.5)"
- id="g40">
- <switch
- id="switch38">
- <foreignObject
- style="overflow: visible; text-align: left;"
- pointer-events="none"
- width="100%"
- height="100%"
- requiredFeatures="http://www.w3.org/TR/SVG11/feature#Extensibility">
- <xhtml:div
- style="display: flex; align-items: unsafe center; justify-content: unsafe center; width: 88px; height: 1px; padding-top: 210px; margin-left: 310px;">
- <xhtml:div
- style="box-sizing: border-box; font-size: 0px; text-align: center;"
- data-drawio-colors="color: rgb(0, 0, 0); ">
- <xhtml:div
- style="display: inline-block; font-size: 12px; font-family: Helvetica; color: rgb(0, 0, 0); line-height: 1.2; pointer-events: all; white-space: normal; overflow-wrap: normal;">Load and auth tiboot3.bin</xhtml:div>
- </xhtml:div>
- </xhtml:div>
- </foreignObject>
- <text
- x="354"
- y="214"
- fill="rgb(0, 0, 0)"
- font-family="Helvetica"
- font-size="12px"
- text-anchor="middle"
- id="text36">Load and auth t...</text>
- </switch>
- </g>
- <rect
- x="309"
- y="262"
- width="90"
- height="32"
- rx="4.8"
- ry="4.8"
- fill="none"
- stroke="rgb(0, 0, 0)"
- pointer-events="all"
- id="rect42" />
- <g
- transform="translate(-0.5 -0.5)"
- id="g48">
- <switch
- id="switch46">
- <foreignObject
- style="overflow: visible; text-align: left;"
- pointer-events="none"
- width="100%"
- height="100%"
- requiredFeatures="http://www.w3.org/TR/SVG11/feature#Extensibility">
- <xhtml:div
- style="display: flex; align-items: unsafe center; justify-content: unsafe center; width: 88px; height: 1px; padding-top: 278px; margin-left: 310px;">
- <xhtml:div
- style="box-sizing: border-box; font-size: 0px; text-align: center;"
- data-drawio-colors="color: rgb(0, 0, 0); ">
- <xhtml:div
- style="display: inline-block; font-size: 12px; font-family: Helvetica; color: rgb(0, 0, 0); line-height: 1.2; pointer-events: all; white-space: normal; overflow-wrap: normal;">Load system<xhtml:br />
- config data</xhtml:div>
- </xhtml:div>
- </xhtml:div>
- </foreignObject>
- <text
- x="354"
- y="282"
- fill="rgb(0, 0, 0)"
- font-family="Helvetica"
- font-size="12px"
- text-anchor="middle"
- id="text44">Load system...</text>
- </switch>
- </g>
- <rect
- x="310"
- y="336"
- width="90"
- height="32"
- rx="4.8"
- ry="4.8"
- fill="none"
- stroke="rgb(0, 0, 0)"
- pointer-events="all"
- id="rect50" />
- <g
- transform="translate(-0.5 -0.5)"
- id="g56">
- <switch
- id="switch54">
- <foreignObject
- style="overflow: visible; text-align: left;"
- pointer-events="none"
- width="100%"
- height="100%"
- requiredFeatures="http://www.w3.org/TR/SVG11/feature#Extensibility">
- <xhtml:div
- style="display: flex; align-items: unsafe center; justify-content: unsafe center; width: 88px; height: 1px; padding-top: 352px; margin-left: 311px;">
- <xhtml:div
- style="box-sizing: border-box; font-size: 0px; text-align: center;"
- data-drawio-colors="color: rgb(0, 0, 0); ">
- <xhtml:div
- style="display: inline-block; font-size: 12px; font-family: Helvetica; color: rgb(0, 0, 0); line-height: 1.2; pointer-events: all; white-space: normal; overflow-wrap: normal;">DDR Config</xhtml:div>
- </xhtml:div>
- </xhtml:div>
- </foreignObject>
- <text
- x="355"
- y="356"
- fill="rgb(0, 0, 0)"
- font-family="Helvetica"
- font-size="12px"
- text-anchor="middle"
- id="text52">DDR Config</text>
- </switch>
- </g>
- <rect
- x="310"
- y="368"
- width="90"
- height="32"
- rx="4.8"
- ry="4.8"
- fill="none"
- stroke="rgb(0, 0, 0)"
- pointer-events="all"
- id="rect58" />
- <g
- transform="translate(-0.5 -0.5)"
- id="g64">
- <switch
- id="switch62">
- <foreignObject
- style="overflow: visible; text-align: left;"
- pointer-events="none"
- width="100%"
- height="100%"
- requiredFeatures="http://www.w3.org/TR/SVG11/feature#Extensibility">
- <xhtml:div
- style="display: flex; align-items: unsafe center; justify-content: unsafe center; width: 88px; height: 1px; padding-top: 384px; margin-left: 311px;">
- <xhtml:div
- style="box-sizing: border-box; font-size: 0px; text-align: center;"
- data-drawio-colors="color: rgb(0, 0, 0); ">
- <xhtml:div
- style="display: inline-block; font-size: 12px; font-family: Helvetica; color: rgb(0, 0, 0); line-height: 1.2; pointer-events: all; white-space: normal; overflow-wrap: normal;">Load tispl.bin</xhtml:div>
- </xhtml:div>
- </xhtml:div>
- </foreignObject>
- <text
- x="355"
- y="388"
- fill="rgb(0, 0, 0)"
- font-family="Helvetica"
- font-size="12px"
- text-anchor="middle"
- id="text60">Load tispl.bin</text>
- </switch>
- </g>
- <rect
- x="310"
- y="440"
- width="90"
- height="32"
- rx="4.8"
- ry="4.8"
- fill="none"
- stroke="rgb(0, 0, 0)"
- pointer-events="all"
- id="rect66" />
- <g
- transform="translate(-0.5 -0.5)"
- id="g72">
- <switch
- id="switch70">
- <foreignObject
- style="overflow: visible; text-align: left;"
- pointer-events="none"
- width="100%"
- height="100%"
- requiredFeatures="http://www.w3.org/TR/SVG11/feature#Extensibility">
- <xhtml:div
- style="display: flex; align-items: unsafe center; justify-content: unsafe center; width: 88px; height: 1px; padding-top: 456px; margin-left: 311px;">
- <xhtml:div
- style="box-sizing: border-box; font-size: 0px; text-align: center;"
- data-drawio-colors="color: rgb(0, 0, 0); ">
- <xhtml:div
- style="display: inline-block; font-size: 12px; font-family: Helvetica; color: rgb(0, 0, 0); line-height: 1.2; pointer-events: all; white-space: normal; overflow-wrap: normal;">Start Cortex-A</xhtml:div>
- </xhtml:div>
- </xhtml:div>
- </foreignObject>
- <text
- x="355"
- y="460"
- fill="rgb(0, 0, 0)"
- font-family="Helvetica"
- font-size="12px"
- text-anchor="middle"
- id="text68">Start Cortex-A</text>
- </switch>
- </g>
- <rect
- x="310"
- y="472"
- width="90"
- height="32"
- rx="4.8"
- ry="4.8"
- fill="none"
- stroke="rgb(0, 0, 0)"
- pointer-events="all"
- id="rect74" />
- <g
- transform="translate(-0.5 -0.5)"
- id="g80">
- <switch
- id="switch78">
- <foreignObject
- style="overflow: visible; text-align: left;"
- pointer-events="none"
- width="100%"
- height="100%"
- requiredFeatures="http://www.w3.org/TR/SVG11/feature#Extensibility">
- <xhtml:div
- style="display: flex; align-items: unsafe center; justify-content: unsafe center; width: 88px; height: 1px; padding-top: 488px; margin-left: 311px;">
- <xhtml:div
- style="box-sizing: border-box; font-size: 0px; text-align: center;"
- data-drawio-colors="color: rgb(0, 0, 0); ">
- <xhtml:div
- style="display: inline-block; font-size: 12px; font-family: Helvetica; color: rgb(0, 0, 0); line-height: 1.2; pointer-events: all; white-space: normal; overflow-wrap: normal;">Start DM</xhtml:div>
- </xhtml:div>
- </xhtml:div>
- </foreignObject>
- <text
- x="355"
- y="492"
- fill="rgb(0, 0, 0)"
- font-family="Helvetica"
- font-size="12px"
- text-anchor="middle"
- id="text76">Start DM</text>
- </switch>
- </g>
- <rect
- x="300"
- y="530"
- width="10"
- height="410"
- fill="rgb(255, 255, 255)"
- stroke="rgb(0, 0, 0)"
- pointer-events="all"
- id="rect82" />
- <rect
- x="302"
- y="535"
- width="71.5"
- height="30"
- fill="#e1d5e7"
- stroke="#9673a6"
- pointer-events="all"
- id="rect84" />
- <g
- transform="translate(-0.5 -0.5)"
- id="g90">
- <switch
- id="switch88">
- <foreignObject
- style="overflow: visible; text-align: left;"
- pointer-events="none"
- width="100%"
- height="100%"
- requiredFeatures="http://www.w3.org/TR/SVG11/feature#Extensibility">
- <xhtml:div
- style="display: flex; align-items: unsafe center; justify-content: unsafe center; width: 70px; height: 1px; padding-top: 550px; margin-left: 303px;">
- <xhtml:div
- style="box-sizing: border-box; font-size: 0px; text-align: center;"
- data-drawio-colors="color: rgb(0, 0, 0); ">
- <xhtml:div
- style="display: inline-block; font-size: 12px; font-family: Helvetica; color: rgb(0, 0, 0); line-height: 1.2; pointer-events: all; white-space: normal; overflow-wrap: normal;">Device Mgr</xhtml:div>
- </xhtml:div>
- </xhtml:div>
- </foreignObject>
- <text
- x="338"
- y="554"
- fill="rgb(0, 0, 0)"
- font-family="Helvetica"
- font-size="12px"
- text-anchor="middle"
- id="text86">Device Mgr</text>
- </switch>
- </g>
- <path
- d="M 299 456 L 139.37 456"
- fill="none"
- stroke="rgb(0, 0, 0)"
- stroke-miterlimit="10"
- pointer-events="stroke"
- id="path92" />
- <path
- d="M 134.12 456 L 141.12 452.5 L 139.37 456 L 141.12 459.5 Z"
- fill="rgb(0, 0, 0)"
- stroke="rgb(0, 0, 0)"
- stroke-miterlimit="10"
- pointer-events="all"
- id="path94" />
- <g
- transform="translate(-0.5 -0.5)"
- id="g100">
- <switch
- id="switch98">
- <foreignObject
- style="overflow: visible; text-align: left;"
- pointer-events="none"
- width="100%"
- height="100%"
- requiredFeatures="http://www.w3.org/TR/SVG11/feature#Extensibility">
- <xhtml:div
- style="display: flex; align-items: unsafe center; justify-content: unsafe center; width: 1px; height: 1px; padding-top: 440px; margin-left: 257px;">
- <xhtml:div
- style="box-sizing: border-box; font-size: 0px; text-align: center;"
- data-drawio-colors="color: rgb(0, 0, 0); background-color: rgb(255, 255, 255); ">
- <xhtml:div
- style="display: inline-block; font-size: 11px; font-family: Helvetica; color: rgb(0, 0, 0); line-height: 1.2; pointer-events: all; background-color: rgb(255, 255, 255); white-space: nowrap;">Start Cortex-A</xhtml:div>
- </xhtml:div>
- </xhtml:div>
- </foreignObject>
- <text
- x="257"
- y="443"
- fill="rgb(0, 0, 0)"
- font-family="Helvetica"
- font-size="11px"
- text-anchor="middle"
- id="text96">Start Cort...</text>
- </switch>
- </g>
- <path
- d="M 481 601 L 139.37 601"
- fill="none"
- stroke="rgb(0, 0, 0)"
- stroke-miterlimit="10"
- pointer-events="stroke"
- id="path102" />
- <path
- d="M 134.12 601 L 141.12 597.5 L 139.37 601 L 141.12 604.5 Z"
- fill="rgb(0, 0, 0)"
- stroke="rgb(0, 0, 0)"
- stroke-miterlimit="10"
- pointer-events="all"
- id="path104" />
- <path
- d="M 481 711 L 139.37 711"
- fill="none"
- stroke="rgb(0, 0, 0)"
- stroke-miterlimit="10"
- pointer-events="stroke"
- id="path106" />
- <path
- d="M 134.12 711 L 141.12 707.5 L 139.37 711 L 141.12 714.5 Z"
- fill="rgb(0, 0, 0)"
- stroke="rgb(0, 0, 0)"
- stroke-miterlimit="10"
- pointer-events="all"
- id="path108" />
- <path
- d="M 482 692 L 317.37 691.04"
- fill="none"
- stroke="rgb(0, 0, 0)"
- stroke-miterlimit="10"
- pointer-events="stroke"
- id="path110" />
- <path
- d="M 312.12 691.01 L 319.14 687.55 L 317.37 691.04 L 319.1 694.55 Z"
- fill="rgb(0, 0, 0)"
- stroke="rgb(0, 0, 0)"
- stroke-miterlimit="10"
- pointer-events="all"
- id="path112" />
- <path
- d="M 482 799 L 317.37 798.04"
- fill="none"
- stroke="rgb(0, 0, 0)"
- stroke-miterlimit="10"
- pointer-events="stroke"
- id="path114" />
- <path
- d="M 312.12 798.01 L 319.14 794.55 L 317.37 798.04 L 319.1 801.55 Z"
- fill="rgb(0, 0, 0)"
- stroke="rgb(0, 0, 0)"
- stroke-miterlimit="10"
- pointer-events="all"
- id="path116" />
- <path
- d="M 481 791 L 139.37 791"
- fill="none"
- stroke="rgb(0, 0, 0)"
- stroke-miterlimit="10"
- pointer-events="stroke"
- id="path118" />
- <path
- d="M 134.12 791 L 141.12 787.5 L 139.37 791 L 141.12 794.5 Z"
- fill="rgb(0, 0, 0)"
- stroke="rgb(0, 0, 0)"
- stroke-miterlimit="10"
- pointer-events="all"
- id="path120" />
- <path
- d="M 481 890 L 315.37 890.96"
- fill="none"
- stroke="rgb(0, 0, 0)"
- stroke-miterlimit="10"
- pointer-events="stroke"
- id="path122" />
- <path
- d="M 310.12 890.99 L 317.1 887.45 L 315.37 890.96 L 317.14 894.45 Z"
- fill="rgb(0, 0, 0)"
- stroke="rgb(0, 0, 0)"
- stroke-miterlimit="10"
- pointer-events="all"
- id="path124" />
- <path
- d="M 481 879 L 139.37 881.95"
- fill="none"
- stroke="rgb(0, 0, 0)"
- stroke-miterlimit="10"
- pointer-events="stroke"
- id="path126" />
- <path
- d="M 134.12 881.99 L 141.09 878.43 L 139.37 881.95 L 141.15 885.43 Z"
- fill="rgb(0, 0, 0)"
- stroke="rgb(0, 0, 0)"
- stroke-miterlimit="10"
- pointer-events="all"
- id="path128" />
- <rect
- x="437"
- y="50"
- width="100"
- height="40"
- rx="6"
- ry="6"
- fill="rgb(255, 255, 255)"
- stroke="rgb(0, 0, 0)"
- pointer-events="all"
- id="rect130" />
- <path
- d="M 487 90 L 487 820"
- fill="none"
- stroke="rgb(0, 0, 0)"
- stroke-miterlimit="10"
- stroke-dasharray="3 3"
- pointer-events="all"
- id="path132" />
- <g
- transform="translate(-0.5 -0.5)"
- id="g138">
- <switch
- id="switch136">
- <foreignObject
- style="overflow: visible; text-align: left;"
- pointer-events="none"
- width="100%"
- height="100%"
- requiredFeatures="http://www.w3.org/TR/SVG11/feature#Extensibility">
- <xhtml:div
- style="display: flex; align-items: unsafe center; justify-content: unsafe center; width: 98px; height: 1px; padding-top: 70px; margin-left: 438px;">
- <xhtml:div
- style="box-sizing: border-box; font-size: 0px; text-align: center;"
- data-drawio-colors="color: rgb(0, 0, 0); ">
- <xhtml:div
- style="display: inline-block; font-size: 12px; font-family: Verdana; color: rgb(0, 0, 0); line-height: 1.2; pointer-events: all; white-space: normal; overflow-wrap: normal;">Cortex-A</xhtml:div>
- </xhtml:div>
- </xhtml:div>
- </foreignObject>
- <text
- x="487"
- y="74"
- fill="rgb(0, 0, 0)"
- font-family="Verdana"
- font-size="12px"
- text-anchor="middle"
- id="text134">Cortex-A</text>
- </switch>
- </g>
- <rect
- x="482"
- y="510"
- width="10"
- height="70"
- fill="rgb(255, 255, 255)"
- stroke="rgb(0, 0, 0)"
- pointer-events="all"
- id="rect140" />
- <path
- d="M 482 565 L 139.37 565"
- fill="none"
- stroke="rgb(0, 0, 0)"
- stroke-miterlimit="10"
- pointer-events="stroke"
- id="path142" />
- <path
- d="M 134.12 565 L 141.12 561.5 L 139.37 565 L 141.12 568.5 Z"
- fill="rgb(0, 0, 0)"
- stroke="rgb(0, 0, 0)"
- stroke-miterlimit="10"
- pointer-events="all"
- id="path144" />
- <rect
- x="577"
- y="50"
- width="116.5"
- height="40"
- rx="6"
- ry="6"
- fill="rgb(255, 255, 255)"
- stroke="rgb(0, 0, 0)"
- pointer-events="all"
- id="rect146" />
- <path
- d="M 635.25 90 L 635.25 950"
- fill="none"
- stroke="rgb(0, 0, 0)"
- stroke-miterlimit="10"
- stroke-dasharray="3 3"
- pointer-events="all"
- id="path148" />
- <g
- transform="translate(-0.5 -0.5)"
- id="g154">
- <switch
- id="switch152">
- <foreignObject
- style="overflow: visible; text-align: left;"
- pointer-events="none"
- width="100%"
- height="100%"
- requiredFeatures="http://www.w3.org/TR/SVG11/feature#Extensibility">
- <xhtml:div
- style="display: flex; align-items: unsafe center; justify-content: unsafe center; width: 115px; height: 1px; padding-top: 70px; margin-left: 578px;">
- <xhtml:div
- style="box-sizing: border-box; font-size: 0px; text-align: center;"
- data-drawio-colors="color: rgb(0, 0, 0); ">
- <xhtml:div
- style="display: inline-block; font-size: 12px; font-family: Verdana; color: rgb(0, 0, 0); line-height: 1.2; pointer-events: all; white-space: normal; overflow-wrap: normal;">Cortex-R/M<xhtml:br />
- C6x/C7x</xhtml:div>
- </xhtml:div>
- </xhtml:div>
- </foreignObject>
- <text
- x="635"
- y="74"
- fill="rgb(0, 0, 0)"
- font-family="Verdana"
- font-size="12px"
- text-anchor="middle"
- id="text150">Cortex-R/M...</text>
- </switch>
- </g>
- <rect
- x="631"
- y="910"
- width="10"
- height="38"
- fill="rgb(255, 255, 255)"
- stroke="rgb(0, 0, 0)"
- pointer-events="all"
- id="rect156" />
- <rect
- x="633"
- y="912"
- width="71.5"
- height="30"
- fill="#e1d5e7"
- stroke="#9673a6"
- pointer-events="all"
- id="rect158" />
- <g
- transform="translate(-0.5 -0.5)"
- id="g164">
- <switch
- id="switch162">
- <foreignObject
- style="overflow: visible; text-align: left;"
- pointer-events="none"
- width="100%"
- height="100%"
- requiredFeatures="http://www.w3.org/TR/SVG11/feature#Extensibility">
- <xhtml:div
- style="display: flex; align-items: unsafe center; justify-content: unsafe center; width: 70px; height: 1px; padding-top: 927px; margin-left: 634px;">
- <xhtml:div
- style="box-sizing: border-box; font-size: 0px; text-align: center;"
- data-drawio-colors="color: rgb(0, 0, 0); ">
- <xhtml:div
- style="display: inline-block; font-size: 12px; font-family: Helvetica; color: rgb(0, 0, 0); line-height: 1.2; pointer-events: all; white-space: normal; overflow-wrap: normal;">Aux f/w</xhtml:div>
- </xhtml:div>
- </xhtml:div>
- </foreignObject>
- <text
- x="669"
- y="931"
- fill="rgb(0, 0, 0)"
- font-family="Helvetica"
- font-size="12px"
- text-anchor="middle"
- id="text160">Aux f/w</text>
- </switch>
- </g>
- <rect
- x="77"
- y="50"
- width="100"
- height="40"
- rx="6"
- ry="6"
- fill="rgb(255, 255, 255)"
- stroke="rgb(0, 0, 0)"
- pointer-events="all"
- id="rect166" />
- <path
- d="M 127 90 L 127 940"
- fill="none"
- stroke="rgb(0, 0, 0)"
- stroke-miterlimit="10"
- stroke-dasharray="3 3"
- pointer-events="all"
- id="path168" />
- <g
- transform="translate(-0.5 -0.5)"
- id="g174">
- <switch
- id="switch172">
- <foreignObject
- style="overflow: visible; text-align: left;"
- pointer-events="none"
- width="100%"
- height="100%"
- requiredFeatures="http://www.w3.org/TR/SVG11/feature#Extensibility">
- <xhtml:div
- style="display: flex; align-items: unsafe center; justify-content: unsafe center; width: 98px; height: 1px; padding-top: 70px; margin-left: 78px;">
- <xhtml:div
- style="box-sizing: border-box; font-size: 0px; text-align: center;"
- data-drawio-colors="color: rgb(0, 0, 0); ">
- <xhtml:div
- style="display: inline-block; font-size: 12px; font-family: Verdana; color: rgb(0, 0, 0); line-height: 1.2; pointer-events: all; white-space: normal; overflow-wrap: normal;">TIFS/DMSC</xhtml:div>
- </xhtml:div>
- </xhtml:div>
- </foreignObject>
- <text
- x="127"
- y="74"
- fill="rgb(0, 0, 0)"
- font-family="Verdana"
- font-size="12px"
- text-anchor="middle"
- id="text170">TIFS/DMSC</text>
- </switch>
- </g>
- <rect
- x="122"
- y="130"
- width="10"
- height="110"
- fill="rgb(255, 255, 255)"
- stroke="rgb(0, 0, 0)"
- pointer-events="all"
- id="rect176" />
- <rect
- x="79"
- y="132"
- width="50"
- height="30"
- fill="#ffe6cc"
- stroke="#d79b00"
- pointer-events="all"
- id="rect178" />
- <g
- transform="translate(-0.5 -0.5)"
- id="g184">
- <switch
- id="switch182">
- <foreignObject
- style="overflow: visible; text-align: left;"
- pointer-events="none"
- width="100%"
- height="100%"
- requiredFeatures="http://www.w3.org/TR/SVG11/feature#Extensibility">
- <xhtml:div
- style="display: flex; align-items: unsafe center; justify-content: unsafe center; width: 48px; height: 1px; padding-top: 147px; margin-left: 80px;">
- <xhtml:div
- style="box-sizing: border-box; font-size: 0px; text-align: center;"
- data-drawio-colors="color: rgb(0, 0, 0); ">
- <xhtml:div
- style="display: inline-block; font-size: 12px; font-family: Helvetica; color: rgb(0, 0, 0); line-height: 1.2; pointer-events: all; white-space: normal; overflow-wrap: normal;">ROM</xhtml:div>
- </xhtml:div>
- </xhtml:div>
- </foreignObject>
- <text
- x="104"
- y="151"
- fill="rgb(0, 0, 0)"
- font-family="Helvetica"
- font-size="12px"
- text-anchor="middle"
- id="text180">ROM</text>
- </switch>
- </g>
- <rect
- x="122"
- y="253"
- width="10"
- height="687"
- fill="rgb(255, 255, 255)"
- stroke="rgb(0, 0, 0)"
- pointer-events="all"
- id="rect186" />
- <path
- d="M 297 238 L 138.37 238"
- fill="none"
- stroke="rgb(0, 0, 0)"
- stroke-miterlimit="10"
- pointer-events="stroke"
- id="path188" />
- <path
- d="M 133.12 238 L 140.12 234.5 L 138.37 238 L 140.12 241.5 Z"
- fill="rgb(0, 0, 0)"
- stroke="rgb(0, 0, 0)"
- stroke-miterlimit="10"
- pointer-events="all"
- id="path190" />
- <g
- transform="translate(-0.5 -0.5)"
- id="g196">
- <switch
- id="switch194">
- <foreignObject
- style="overflow: visible; text-align: left;"
- pointer-events="none"
- width="100%"
- height="100%"
- requiredFeatures="http://www.w3.org/TR/SVG11/feature#Extensibility">
- <xhtml:div
- style="display: flex; align-items: unsafe center; justify-content: unsafe center; width: 1px; height: 1px; padding-top: 230px; margin-left: 267px;">
- <xhtml:div
- style="box-sizing: border-box; font-size: 0px; text-align: center;"
- data-drawio-colors="color: rgb(0, 0, 0); background-color: rgb(255, 255, 255); ">
- <xhtml:div
- style="display: inline-block; font-size: 11px; font-family: Helvetica; color: rgb(0, 0, 0); line-height: 1.2; pointer-events: all; background-color: rgb(255, 255, 255); white-space: nowrap;">Start TIFS</xhtml:div>
- </xhtml:div>
- </xhtml:div>
- </foreignObject>
- <text
- x="267"
- y="233"
- fill="rgb(0, 0, 0)"
- font-family="Helvetica"
- font-size="11px"
- text-anchor="middle"
- id="text192">Start TIFS</text>
- </switch>
- </g>
- <rect
- x="80"
- y="255"
- width="50"
- height="30"
- fill="#f8cecc"
- stroke="#b85450"
- pointer-events="all"
- id="rect198" />
- <g
- transform="translate(-0.5 -0.5)"
- id="g204">
- <switch
- id="switch202">
- <foreignObject
- style="overflow: visible; text-align: left;"
- pointer-events="none"
- width="100%"
- height="100%"
- requiredFeatures="http://www.w3.org/TR/SVG11/feature#Extensibility">
- <xhtml:div
- style="display: flex; align-items: unsafe center; justify-content: unsafe center; width: 48px; height: 1px; padding-top: 270px; margin-left: 81px;">
- <xhtml:div
- style="box-sizing: border-box; font-size: 0px; text-align: center;"
- data-drawio-colors="color: rgb(0, 0, 0); ">
- <xhtml:div
- style="display: inline-block; font-size: 12px; font-family: Helvetica; color: rgb(0, 0, 0); line-height: 1.2; pointer-events: all; white-space: normal; overflow-wrap: normal;">TIFS</xhtml:div>
- </xhtml:div>
- </xhtml:div>
- </foreignObject>
- <text
- x="105"
- y="274"
- fill="rgb(0, 0, 0)"
- font-family="Helvetica"
- font-size="12px"
- text-anchor="middle"
- id="text200">TIFS</text>
- </switch>
- </g>
- <path
- d="M 62 0 L 178 0 L 192 14 L 192 35 L 62 35 L 62 0 Z"
- fill="rgb(255, 255, 255)"
- stroke="rgb(0, 0, 0)"
- stroke-miterlimit="10"
- pointer-events="all"
- id="path206" />
- <path
- d="M 178 0 L 178 14 L 192 14"
- fill="none"
- stroke="rgb(0, 0, 0)"
- stroke-miterlimit="10"
- pointer-events="all"
- id="path208" />
- <g
- transform="translate(-0.5 -0.5)"
- id="g214">
- <switch
- id="switch212">
- <foreignObject
- style="overflow: visible; text-align: left;"
- pointer-events="none"
- width="100%"
- height="100%"
- requiredFeatures="http://www.w3.org/TR/SVG11/feature#Extensibility">
- <xhtml:div
- style="display: flex; align-items: unsafe flex-start; justify-content: unsafe center; width: 128px; height: 1px; padding-top: 1px; margin-left: 63px;">
- <xhtml:div
- style="box-sizing: border-box; font-size: 0px; text-align: center;"
- data-drawio-colors="color: rgb(0, 0, 0); ">
- <xhtml:div
- style="display: inline-block; font-size: 12px; font-family: Verdana; color: rgb(0, 0, 0); line-height: 1.2; pointer-events: all; white-space: normal; overflow-wrap: normal;">Security Enclave Boot Processor</xhtml:div>
- </xhtml:div>
- </xhtml:div>
- </foreignObject>
- <text
- x="127"
- y="13"
- fill="rgb(0, 0, 0)"
- font-family="Verdana"
- font-size="12px"
- text-anchor="middle"
- id="text210">Security Enclave Boot...</text>
- </switch>
- </g>
- <path
- d="M 241 0 L 361 0 L 375 14 L 375 35 L 241 35 L 241 0 Z"
- fill="rgb(255, 255, 255)"
- stroke="rgb(0, 0, 0)"
- stroke-miterlimit="10"
- pointer-events="all"
- id="path216" />
- <path
- d="M 361 0 L 361 14 L 375 14"
- fill="none"
- stroke="rgb(0, 0, 0)"
- stroke-miterlimit="10"
- pointer-events="all"
- id="path218" />
- <g
- transform="translate(-0.5 -0.5)"
- id="g224">
- <switch
- id="switch222">
- <foreignObject
- style="overflow: visible; text-align: left;"
- pointer-events="none"
- width="100%"
- height="100%"
- requiredFeatures="http://www.w3.org/TR/SVG11/feature#Extensibility">
- <xhtml:div
- style="display: flex; align-items: unsafe flex-start; justify-content: unsafe center; width: 132px; height: 1px; padding-top: 1px; margin-left: 242px;">
- <xhtml:div
- style="box-sizing: border-box; font-size: 0px; text-align: center;"
- data-drawio-colors="color: rgb(0, 0, 0); ">
- <xhtml:div
- style="display: inline-block; font-size: 12px; font-family: Verdana; color: rgb(0, 0, 0); line-height: 1.2; pointer-events: all; white-space: normal; overflow-wrap: normal;">Boot Loader <xhtml:br />
- Processor</xhtml:div>
- </xhtml:div>
- </xhtml:div>
- </foreignObject>
- <text
- x="308"
- y="13"
- fill="rgb(0, 0, 0)"
- font-family="Verdana"
- font-size="12px"
- text-anchor="middle"
- id="text220">Boot Loader...</text>
- </switch>
- </g>
- <path
- d="M 437 0 L 523 0 L 537 14 L 537 35 L 437 35 L 437 0 Z"
- fill="rgb(255, 255, 255)"
- stroke="rgb(0, 0, 0)"
- stroke-miterlimit="10"
- pointer-events="all"
- id="path226" />
- <path
- d="M 523 0 L 523 14 L 537 14"
- fill="none"
- stroke="rgb(0, 0, 0)"
- stroke-miterlimit="10"
- pointer-events="all"
- id="path228" />
- <g
- transform="translate(-0.5 -0.5)"
- id="g234">
- <switch
- id="switch232">
- <foreignObject
- style="overflow: visible; text-align: left;"
- pointer-events="none"
- width="100%"
- height="100%"
- requiredFeatures="http://www.w3.org/TR/SVG11/feature#Extensibility">
- <xhtml:div
- style="display: flex; align-items: unsafe flex-start; justify-content: unsafe center; width: 98px; height: 1px; padding-top: 1px; margin-left: 438px;">
- <xhtml:div
- style="box-sizing: border-box; font-size: 0px; text-align: center;"
- data-drawio-colors="color: rgb(0, 0, 0); ">
- <xhtml:div
- style="display: inline-block; font-size: 12px; font-family: Verdana; color: rgb(0, 0, 0); line-height: 1.2; pointer-events: all; white-space: normal; overflow-wrap: normal;">Main CPU</xhtml:div>
- </xhtml:div>
- </xhtml:div>
- </foreignObject>
- <text
- x="487"
- y="13"
- fill="rgb(0, 0, 0)"
- font-family="Verdana"
- font-size="12px"
- text-anchor="middle"
- id="text230">Main CPU</text>
- </switch>
- </g>
- <path
- d="M 577 0 L 663 0 L 677 14 L 677 35 L 577 35 L 577 0 Z"
- fill="rgb(255, 255, 255)"
- stroke="rgb(0, 0, 0)"
- stroke-miterlimit="10"
- pointer-events="all"
- id="path236" />
- <path
- d="M 663 0 L 663 14 L 677 14"
- fill="none"
- stroke="rgb(0, 0, 0)"
- stroke-miterlimit="10"
- pointer-events="all"
- id="path238" />
- <g
- transform="translate(-0.5 -0.5)"
- id="g244">
- <switch
- id="switch242">
- <foreignObject
- style="overflow: visible; text-align: left;"
- pointer-events="none"
- width="100%"
- height="100%"
- requiredFeatures="http://www.w3.org/TR/SVG11/feature#Extensibility">
- <xhtml:div
- style="display: flex; align-items: unsafe flex-start; justify-content: unsafe center; width: 98px; height: 1px; padding-top: 1px; margin-left: 578px;">
- <xhtml:div
- style="box-sizing: border-box; font-size: 0px; text-align: center;"
- data-drawio-colors="color: rgb(0, 0, 0); ">
- <xhtml:div
- style="display: inline-block; font-size: 12px; font-family: Verdana; color: rgb(0, 0, 0); line-height: 1.2; pointer-events: all; white-space: normal; overflow-wrap: normal;">Auxiliary<xhtml:br />
- Processor</xhtml:div>
- </xhtml:div>
- </xhtml:div>
- </foreignObject>
- <text
- x="627"
- y="13"
- fill="rgb(0, 0, 0)"
- font-family="Verdana"
- font-size="12px"
- text-anchor="middle"
- id="text240">Auxiliary...</text>
- </switch>
- </g>
- <path
- d="M 7 120 L 120.63 120"
- fill="none"
- stroke="rgb(0, 0, 0)"
- stroke-miterlimit="10"
- stroke-dasharray="12 12"
- pointer-events="stroke"
- id="path246" />
- <path
- d="M 125.88 120 L 118.88 123.5 L 120.63 120 L 118.88 116.5 Z"
- fill="rgb(0, 0, 0)"
- stroke="rgb(0, 0, 0)"
- stroke-miterlimit="10"
- pointer-events="all"
- id="path248" />
- <g
- transform="translate(-0.5 -0.5)"
- id="g254">
- <switch
- id="switch252">
- <foreignObject
- style="overflow: visible; text-align: left;"
- pointer-events="none"
- width="100%"
- height="100%"
- requiredFeatures="http://www.w3.org/TR/SVG11/feature#Extensibility">
- <xhtml:div
- style="display: flex; align-items: unsafe flex-end; justify-content: unsafe flex-start; width: 1px; height: 1px; padding-top: 118px; margin-left: 9px;">
- <xhtml:div
- style="box-sizing: border-box; font-size: 0px; text-align: left;"
- data-drawio-colors="color: rgb(0, 0, 0); background-color: rgb(255, 255, 255); ">
- <xhtml:div
- style="display: inline-block; font-size: 11px; font-family: Helvetica; color: rgb(0, 0, 0); line-height: 1.2; pointer-events: all; background-color: rgb(255, 255, 255); white-space: nowrap;">H/w Seq: Reset rls</xhtml:div>
- </xhtml:div>
- </xhtml:div>
- </foreignObject>
- <text
- x="9"
- y="118"
- fill="#000000"
- font-family="Helvetica"
- font-size="11px"
- id="text250">H/w Seq: Reset rls</text>
- </switch>
- </g>
- <path
- d="M 298 200 L 138.37 199.98"
- fill="none"
- stroke="rgb(0, 0, 0)"
- stroke-miterlimit="10"
- pointer-events="stroke"
- id="path256" />
- <path
- d="M 133.12 199.98 L 140.12 196.48 L 138.37 199.98 L 140.12 203.48 Z"
- fill="rgb(0, 0, 0)"
- stroke="rgb(0, 0, 0)"
- stroke-miterlimit="10"
- pointer-events="all"
- id="path258" />
- <g
- transform="translate(-0.5 -0.5)"
- id="g264">
- <switch
- id="switch262">
- <foreignObject
- style="overflow: visible; text-align: left;"
- pointer-events="none"
- width="100%"
- height="100%"
- requiredFeatures="http://www.w3.org/TR/SVG11/feature#Extensibility">
- <xhtml:div
- style="display: flex; align-items: unsafe center; justify-content: unsafe center; width: 1px; height: 1px; padding-top: 190px; margin-left: 257px;">
- <xhtml:div
- style="box-sizing: border-box; font-size: 0px; text-align: center;"
- data-drawio-colors="color: rgb(0, 0, 0); background-color: rgb(255, 255, 255); ">
- <xhtml:div
- style="display: inline-block; font-size: 11px; font-family: Helvetica; color: rgb(0, 0, 0); line-height: 1.2; pointer-events: all; background-color: rgb(255, 255, 255); white-space: nowrap;">Auth tiboot3.bin</xhtml:div>
- </xhtml:div>
- </xhtml:div>
- </foreignObject>
- <text
- x="257"
- y="193"
- fill="rgb(0, 0, 0)"
- font-family="Helvetica"
- font-size="11px"
- text-anchor="middle"
- id="text260">Auth tiboo...</text>
- </switch>
- </g>
- <path
- d="M 133 159 L 297.38 159"
- fill="none"
- stroke="rgb(0, 0, 0)"
- stroke-miterlimit="10"
- pointer-events="stroke"
- id="path266" />
- <path
- d="M 302.63 159 L 295.63 162.5 L 297.38 159 L 295.63 155.5 Z"
- fill="rgb(0, 0, 0)"
- stroke="rgb(0, 0, 0)"
- stroke-miterlimit="10"
- pointer-events="all"
- id="path268" />
- <g
- transform="translate(-0.5 -0.5)"
- id="g274">
- <switch
- id="switch272">
- <foreignObject
- style="overflow: visible; text-align: left;"
- pointer-events="none"
- width="100%"
- height="100%"
- requiredFeatures="http://www.w3.org/TR/SVG11/feature#Extensibility">
- <xhtml:div
- style="display: flex; align-items: unsafe center; justify-content: unsafe center; width: 1px; height: 1px; padding-top: 150px; margin-left: 177px;">
- <xhtml:div
- style="box-sizing: border-box; font-size: 0px; text-align: center;"
- data-drawio-colors="color: rgb(0, 0, 0); background-color: rgb(255, 255, 255); ">
- <xhtml:div
- style="display: inline-block; font-size: 11px; font-family: Helvetica; color: rgb(0, 0, 0); line-height: 1.2; pointer-events: all; background-color: rgb(255, 255, 255); white-space: nowrap;">Release Reset</xhtml:div>
- </xhtml:div>
- </xhtml:div>
- </foreignObject>
- <text
- x="177"
- y="153"
- fill="rgb(0, 0, 0)"
- font-family="Helvetica"
- font-size="11px"
- text-anchor="middle"
- id="text270">Release Re...</text>
- </switch>
- </g>
- <path
- d="M 299 281.94 L 139.37 281.04"
- fill="none"
- stroke="rgb(0, 0, 0)"
- stroke-miterlimit="10"
- pointer-events="stroke"
- id="path276" />
- <path
- d="M 134.12 281.01 L 141.14 277.55 L 139.37 281.04 L 141.1 284.55 Z"
- fill="rgb(0, 0, 0)"
- stroke="rgb(0, 0, 0)"
- stroke-miterlimit="10"
- pointer-events="all"
- id="path278" />
- <g
- transform="translate(-0.5 -0.5)"
- id="g284">
- <switch
- id="switch282">
- <foreignObject
- style="overflow: visible; text-align: left;"
- pointer-events="none"
- width="100%"
- height="100%"
- requiredFeatures="http://www.w3.org/TR/SVG11/feature#Extensibility">
- <xhtml:div
- style="display: flex; align-items: unsafe center; justify-content: unsafe center; width: 1px; height: 1px; padding-top: 270px; margin-left: 237px;">
- <xhtml:div
- style="box-sizing: border-box; font-size: 0px; text-align: center;"
- data-drawio-colors="color: rgb(0, 0, 0); background-color: rgb(255, 255, 255); ">
- <xhtml:div
- style="display: inline-block; font-size: 11px; font-family: Helvetica; color: rgb(0, 0, 0); line-height: 1.2; pointer-events: all; background-color: rgb(255, 255, 255); white-space: nowrap;">Load system config data</xhtml:div>
- </xhtml:div>
- </xhtml:div>
- </foreignObject>
- <text
- x="237"
- y="273"
- fill="rgb(0, 0, 0)"
- font-family="Helvetica"
- font-size="11px"
- text-anchor="middle"
- id="text280">Load syste...</text>
- </switch>
- </g>
- <rect
- x="308.75"
- y="230"
- width="90"
- height="32"
- rx="4.8"
- ry="4.8"
- fill="none"
- stroke="rgb(0, 0, 0)"
- pointer-events="all"
- id="rect286" />
- <g
- transform="translate(-0.5 -0.5)"
- id="g292">
- <switch
- id="switch290">
- <foreignObject
- style="overflow: visible; text-align: left;"
- pointer-events="none"
- width="100%"
- height="100%"
- requiredFeatures="http://www.w3.org/TR/SVG11/feature#Extensibility">
- <xhtml:div
- style="display: flex; align-items: unsafe center; justify-content: unsafe center; width: 88px; height: 1px; padding-top: 246px; margin-left: 310px;">
- <xhtml:div
- style="box-sizing: border-box; font-size: 0px; text-align: center;"
- data-drawio-colors="color: rgb(0, 0, 0); ">
- <xhtml:div
- style="display: inline-block; font-size: 12px; font-family: Helvetica; color: rgb(0, 0, 0); line-height: 1.2; pointer-events: all; white-space: normal; overflow-wrap: normal;">Start TIFS</xhtml:div>
- </xhtml:div>
- </xhtml:div>
- </foreignObject>
- <text
- x="354"
- y="250"
- fill="rgb(0, 0, 0)"
- font-family="Helvetica"
- font-size="12px"
- text-anchor="middle"
- id="text288">Start TIFS</text>
- </switch>
- </g>
- <rect
- x="310"
- y="400"
- width="90"
- height="32"
- rx="4.8"
- ry="4.8"
- fill="none"
- stroke="rgb(0, 0, 0)"
- pointer-events="all"
- id="rect294" />
- <g
- transform="translate(-0.5 -0.5)"
- id="g300">
- <switch
- id="switch298">
- <foreignObject
- style="overflow: visible; text-align: left;"
- pointer-events="none"
- width="100%"
- height="100%"
- requiredFeatures="http://www.w3.org/TR/SVG11/feature#Extensibility">
- <xhtml:div
- style="display: flex; align-items: unsafe center; justify-content: unsafe center; width: 88px; height: 1px; padding-top: 416px; margin-left: 311px;">
- <xhtml:div
- style="box-sizing: border-box; font-size: 0px; text-align: center;"
- data-drawio-colors="color: rgb(0, 0, 0); ">
- <xhtml:div
- style="display: inline-block; font-size: 12px; font-family: Helvetica; color: rgb(0, 0, 0); line-height: 1.2; pointer-events: all; white-space: normal; overflow-wrap: normal;">Load DM f/w</xhtml:div>
- </xhtml:div>
- </xhtml:div>
- </foreignObject>
- <text
- x="355"
- y="420"
- fill="rgb(0, 0, 0)"
- font-family="Helvetica"
- font-size="12px"
- text-anchor="middle"
- id="text296">Load DM f/w</text>
- </switch>
- </g>
- <path
- d="M 303 510 L 333 510 L 333 530 L 309.12 530"
- fill="none"
- stroke="rgb(0, 0, 0)"
- stroke-miterlimit="10"
- pointer-events="stroke"
- id="path302" />
- <path
- d="M 302.12 530 L 309.12 526.5 L 309.12 533.5 Z"
- fill="rgb(0, 0, 0)"
- stroke="rgb(0, 0, 0)"
- stroke-miterlimit="10"
- pointer-events="all"
- id="path304" />
- <g
- transform="translate(-0.5 -0.5)"
- id="g310">
- <switch
- id="switch308">
- <foreignObject
- style="overflow: visible; text-align: left;"
- pointer-events="none"
- width="100%"
- height="100%"
- requiredFeatures="http://www.w3.org/TR/SVG11/feature#Extensibility">
- <xhtml:div
- style="display: flex; align-items: unsafe center; justify-content: unsafe flex-start; width: 1px; height: 1px; padding-top: 521px; margin-left: 337px;">
- <xhtml:div
- style="box-sizing: border-box; font-size: 0px; text-align: left;"
- data-drawio-colors="color: rgb(0, 0, 0); background-color: rgb(255, 255, 255); ">
- <xhtml:div
- style="display: inline-block; font-size: 11px; font-family: Helvetica; color: rgb(0, 0, 0); line-height: 1.2; pointer-events: all; background-color: rgb(255, 255, 255); white-space: nowrap;">branch</xhtml:div>
- </xhtml:div>
- </xhtml:div>
- </foreignObject>
- <text
- x="337"
- y="524"
- fill="rgb(0, 0, 0)"
- font-family="Helvetica"
- font-size="11px"
- id="text306">branch</text>
- </switch>
- </g>
- <path
- d="M 133 511 L 137 511 L 476.63 511"
- fill="none"
- stroke="rgb(0, 0, 0)"
- stroke-miterlimit="10"
- pointer-events="stroke"
- id="path312" />
- <path
- d="M 481.88 511 L 474.88 514.5 L 476.63 511 L 474.88 507.5 Z"
- fill="rgb(0, 0, 0)"
- stroke="rgb(0, 0, 0)"
- stroke-miterlimit="10"
- pointer-events="all"
- id="path314" />
- <g
- transform="translate(-0.5 -0.5)"
- id="g320">
- <switch
- id="switch318">
- <foreignObject
- style="overflow: visible; text-align: left;"
- pointer-events="none"
- width="100%"
- height="100%"
- requiredFeatures="http://www.w3.org/TR/SVG11/feature#Extensibility">
- <xhtml:div
- style="display: flex; align-items: unsafe center; justify-content: unsafe center; width: 1px; height: 1px; padding-top: 500px; margin-left: 177px;">
- <xhtml:div
- style="box-sizing: border-box; font-size: 0px; text-align: center;"
- data-drawio-colors="color: rgb(0, 0, 0); background-color: rgb(255, 255, 255); ">
- <xhtml:div
- style="display: inline-block; font-size: 11px; font-family: Helvetica; color: rgb(0, 0, 0); line-height: 1.2; pointer-events: all; background-color: rgb(255, 255, 255); white-space: nowrap;">Release Reset</xhtml:div>
- </xhtml:div>
- </xhtml:div>
- </foreignObject>
- <text
- x="177"
- y="503"
- fill="rgb(0, 0, 0)"
- font-family="Helvetica"
- font-size="11px"
- text-anchor="middle"
- id="text316">Release Re...</text>
- </switch>
- </g>
- <rect
- x="484"
- y="513"
- width="71.5"
- height="30"
- fill="#d5e8d4"
- stroke="#82b366"
- pointer-events="all"
- id="rect322" />
- <g
- transform="translate(-0.5 -0.5)"
- id="g328">
- <switch
- id="switch326">
- <foreignObject
- style="overflow: visible; text-align: left;"
- pointer-events="none"
- width="100%"
- height="100%"
- requiredFeatures="http://www.w3.org/TR/SVG11/feature#Extensibility">
- <xhtml:div
- style="display: flex; align-items: unsafe center; justify-content: unsafe center; width: 70px; height: 1px; padding-top: 528px; margin-left: 485px;">
- <xhtml:div
- style="box-sizing: border-box; font-size: 0px; text-align: center;"
- data-drawio-colors="color: rgb(0, 0, 0); ">
- <xhtml:div
- style="display: inline-block; font-size: 12px; font-family: Helvetica; color: rgb(0, 0, 0); line-height: 1.2; pointer-events: all; white-space: normal; overflow-wrap: normal;">TF-A</xhtml:div>
- </xhtml:div>
- </xhtml:div>
- </foreignObject>
- <text
- x="520"
- y="532"
- fill="rgb(0, 0, 0)"
- font-family="Helvetica"
- font-size="12px"
- text-anchor="middle"
- id="text324">TF-A</text>
- </switch>
- </g>
- <rect
- x="482"
- y="581"
- width="10"
- height="70"
- fill="rgb(255, 255, 255)"
- stroke="rgb(0, 0, 0)"
- pointer-events="all"
- id="rect330" />
- <rect
- x="484"
- y="584"
- width="71.5"
- height="30"
- fill="#d5e8d4"
- stroke="#82b366"
- pointer-events="all"
- id="rect332" />
- <g
- transform="translate(-0.5 -0.5)"
- id="g338">
- <switch
- id="switch336">
- <foreignObject
- style="overflow: visible; text-align: left;"
- pointer-events="none"
- width="100%"
- height="100%"
- requiredFeatures="http://www.w3.org/TR/SVG11/feature#Extensibility">
- <xhtml:div
- style="display: flex; align-items: unsafe center; justify-content: unsafe center; width: 70px; height: 1px; padding-top: 599px; margin-left: 485px;">
- <xhtml:div
- style="box-sizing: border-box; font-size: 0px; text-align: center;"
- data-drawio-colors="color: rgb(0, 0, 0); ">
- <xhtml:div
- style="display: inline-block; font-size: 12px; font-family: Helvetica; color: rgb(0, 0, 0); line-height: 1.2; pointer-events: all; white-space: normal; overflow-wrap: normal;">OP-TEE</xhtml:div>
- </xhtml:div>
- </xhtml:div>
- </foreignObject>
- <text
- x="520"
- y="603"
- fill="rgb(0, 0, 0)"
- font-family="Helvetica"
- font-size="12px"
- text-anchor="middle"
- id="text334">OP-TEE</text>
- </switch>
- </g>
- <rect
- x="482"
- y="662"
- width="10"
- height="78"
- fill="rgb(255, 255, 255)"
- stroke="rgb(0, 0, 0)"
- pointer-events="all"
- id="rect340" />
- <rect
- x="484"
- y="665"
- width="83"
- height="30"
- fill="#d5e8d4"
- stroke="#82b366"
- pointer-events="all"
- id="rect342" />
- <g
- transform="translate(-0.5 -0.5)"
- id="g348">
- <switch
- id="switch346">
- <foreignObject
- style="overflow: visible; text-align: left;"
- pointer-events="none"
- width="100%"
- height="100%"
- requiredFeatures="http://www.w3.org/TR/SVG11/feature#Extensibility">
- <xhtml:div
- style="display: flex; align-items: unsafe center; justify-content: unsafe center; width: 81px; height: 1px; padding-top: 680px; margin-left: 485px;">
- <xhtml:div
- style="box-sizing: border-box; font-size: 0px; text-align: center;"
- data-drawio-colors="color: rgb(0, 0, 0); ">
- <xhtml:div
- style="display: inline-block; font-size: 12px; font-family: Helvetica; color: rgb(0, 0, 0); line-height: 1.2; pointer-events: all; white-space: normal; overflow-wrap: normal;">Cortex-A SPL</xhtml:div>
- </xhtml:div>
- </xhtml:div>
- </foreignObject>
- <text
- x="526"
- y="684"
- fill="rgb(0, 0, 0)"
- font-family="Helvetica"
- font-size="12px"
- text-anchor="middle"
- id="text344">Cortex-A SPL</text>
- </switch>
- </g>
- <rect
- x="482"
- y="748"
- width="10"
- height="192"
- fill="rgb(255, 255, 255)"
- stroke="rgb(0, 0, 0)"
- pointer-events="all"
- id="rect350" />
- <rect
- x="484"
- y="751"
- width="83"
- height="30"
- fill="#d5e8d4"
- stroke="#82b366"
- pointer-events="all"
- id="rect352" />
- <g
- transform="translate(-0.5 -0.5)"
- id="g358">
- <switch
- id="switch356">
- <foreignObject
- style="overflow: visible; text-align: left;"
- pointer-events="none"
- width="100%"
- height="100%"
- requiredFeatures="http://www.w3.org/TR/SVG11/feature#Extensibility">
- <xhtml:div
- style="display: flex; align-items: unsafe center; justify-content: unsafe center; width: 81px; height: 1px; padding-top: 766px; margin-left: 485px;">
- <xhtml:div
- style="box-sizing: border-box; font-size: 0px; text-align: center;"
- data-drawio-colors="color: rgb(0, 0, 0); ">
- <xhtml:div
- style="display: inline-block; font-size: 12px; font-family: Helvetica; color: rgb(0, 0, 0); line-height: 1.2; pointer-events: all; white-space: normal; overflow-wrap: normal;">U-Boot</xhtml:div>
- </xhtml:div>
- </xhtml:div>
- </foreignObject>
- <text
- x="526"
- y="770"
- fill="rgb(0, 0, 0)"
- font-family="Helvetica"
- font-size="12px"
- text-anchor="middle"
- id="text354">U-Boot</text>
- </switch>
- </g>
- <rect
- x="492"
- y="700"
- width="103"
- height="32"
- rx="4.8"
- ry="4.8"
- fill="none"
- stroke="rgb(0, 0, 0)"
- pointer-events="all"
- id="rect360" />
- <g
- transform="translate(-0.5 -0.5)"
- id="g366">
- <switch
- id="switch364">
- <foreignObject
- style="overflow: visible; text-align: left;"
- pointer-events="none"
- width="100%"
- height="100%"
- requiredFeatures="http://www.w3.org/TR/SVG11/feature#Extensibility">
- <xhtml:div
- style="display: flex; align-items: unsafe center; justify-content: unsafe center; width: 101px; height: 1px; padding-top: 716px; margin-left: 493px;">
- <xhtml:div
- style="box-sizing: border-box; font-size: 0px; text-align: center;"
- data-drawio-colors="color: rgb(0, 0, 0); ">
- <xhtml:div
- style="display: inline-block; font-size: 12px; font-family: Helvetica; color: rgb(0, 0, 0); line-height: 1.2; pointer-events: all; white-space: normal; overflow-wrap: normal;">Load u-boot.img</xhtml:div>
- </xhtml:div>
- </xhtml:div>
- </foreignObject>
- <text
- x="544"
- y="720"
- fill="rgb(0, 0, 0)"
- font-family="Helvetica"
- font-size="12px"
- text-anchor="middle"
- id="text362">Load u-boot.img</text>
- </switch>
- </g>
- <rect
- x="492"
- y="820"
- width="103"
- height="32"
- rx="4.8"
- ry="4.8"
- fill="none"
- stroke="rgb(0, 0, 0)"
- pointer-events="all"
- id="rect368" />
- <g
- transform="translate(-0.5 -0.5)"
- id="g374">
- <switch
- id="switch372">
- <foreignObject
- style="overflow: visible; text-align: left;"
- pointer-events="none"
- width="100%"
- height="100%"
- requiredFeatures="http://www.w3.org/TR/SVG11/feature#Extensibility">
- <xhtml:div
- style="display: flex; align-items: unsafe center; justify-content: unsafe center; width: 101px; height: 1px; padding-top: 836px; margin-left: 493px;">
- <xhtml:div
- style="box-sizing: border-box; font-size: 0px; text-align: center;"
- data-drawio-colors="color: rgb(0, 0, 0); ">
- <xhtml:div
- style="display: inline-block; font-size: 12px; font-family: Helvetica; color: rgb(0, 0, 0); line-height: 1.2; pointer-events: all; white-space: normal; overflow-wrap: normal;">Load Aux core f/w<xhtml:br />
- (optional)</xhtml:div>
- </xhtml:div>
- </xhtml:div>
- </foreignObject>
- <text
- x="544"
- y="840"
- fill="rgb(0, 0, 0)"
- font-family="Helvetica"
- font-size="12px"
- text-anchor="middle"
- id="text370">Load Aux core f/w...</text>
- </switch>
- </g>
- <rect
- x="492"
- y="860"
- width="103"
- height="32"
- rx="4.8"
- ry="4.8"
- fill="none"
- stroke="rgb(0, 0, 0)"
- pointer-events="all"
- id="rect376" />
- <g
- transform="translate(-0.5 -0.5)"
- id="g382">
- <switch
- id="switch380">
- <foreignObject
- style="overflow: visible; text-align: left;"
- pointer-events="none"
- width="100%"
- height="100%"
- requiredFeatures="http://www.w3.org/TR/SVG11/feature#Extensibility">
- <xhtml:div
- style="display: flex; align-items: unsafe center; justify-content: unsafe center; width: 101px; height: 1px; padding-top: 876px; margin-left: 493px;">
- <xhtml:div
- style="box-sizing: border-box; font-size: 0px; text-align: center;"
- data-drawio-colors="color: rgb(0, 0, 0); ">
- <xhtml:div
- style="display: inline-block; font-size: 12px; font-family: Helvetica; color: rgb(0, 0, 0); line-height: 1.2; pointer-events: all; white-space: normal; overflow-wrap: normal;">Start Aux core<xhtml:br />
- (optional)</xhtml:div>
- </xhtml:div>
- </xhtml:div>
- </foreignObject>
- <text
- x="544"
- y="880"
- fill="rgb(0, 0, 0)"
- font-family="Helvetica"
- font-size="12px"
- text-anchor="middle"
- id="text378">Start Aux core...</text>
- </switch>
- </g>
- <path
- d="M 311 909 L 628.38 909"
- fill="none"
- stroke="rgb(0, 0, 0)"
- stroke-miterlimit="10"
- pointer-events="stroke"
- id="path384" />
- <path
- d="M 633.63 909 L 626.63 912.5 L 628.38 909 L 626.63 905.5 Z"
- fill="rgb(0, 0, 0)"
- stroke="rgb(0, 0, 0)"
- stroke-miterlimit="10"
- pointer-events="all"
- id="path386" />
- <g
- transform="translate(-0.5 -0.5)"
- id="g392">
- <switch
- id="switch390">
- <foreignObject
- style="overflow: visible; text-align: left;"
- pointer-events="none"
- width="100%"
- height="100%"
- requiredFeatures="http://www.w3.org/TR/SVG11/feature#Extensibility">
- <xhtml:div
- style="display: flex; align-items: unsafe center; justify-content: unsafe center; width: 1px; height: 1px; padding-top: 900px; margin-left: 357px;">
- <xhtml:div
- style="box-sizing: border-box; font-size: 0px; text-align: center;"
- data-drawio-colors="color: rgb(0, 0, 0); background-color: rgb(255, 255, 255); ">
- <xhtml:div
- style="display: inline-block; font-size: 11px; font-family: Helvetica; color: rgb(0, 0, 0); line-height: 1.2; pointer-events: all; background-color: rgb(255, 255, 255); white-space: nowrap;">Release Reset</xhtml:div>
- </xhtml:div>
- </xhtml:div>
- </foreignObject>
- <text
- x="357"
- y="903"
- fill="rgb(0, 0, 0)"
- font-family="Helvetica"
- font-size="11px"
- text-anchor="middle"
- id="text388">Release Re...</text>
- </switch>
- </g>
- <path
- d="M 482 632.91 L 315.37 632.91"
- fill="none"
- stroke="rgb(0, 0, 0)"
- stroke-miterlimit="10"
- pointer-events="stroke"
- id="path394" />
- <path
- d="M 310.12 632.91 L 317.12 629.41 L 315.37 632.91 L 317.12 636.41 Z"
- fill="rgb(0, 0, 0)"
- stroke="rgb(0, 0, 0)"
- stroke-miterlimit="10"
- pointer-events="all"
- id="path396" />
- </g>
- <switch
- id="switch406">
- <g
- requiredFeatures="http://www.w3.org/TR/SVG11/feature#Extensibility"
- id="g400" />
- <a
- transform="translate(0,-5)"
- xlink:href="https://www.drawio.com/doc/faq/svg-export-text-problems"
- target="_blank"
- id="a404">
- <text
- text-anchor="middle"
- font-size="10px"
- x="50%"
- y="100%"
- id="text402">Text is not SVG - cannot display</text>
- </a>
- </switch>
- </svg>
|