boot_diagram_k3_current.svg 65 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929
  1. <?xml version="1.0" encoding="UTF-8" standalone="no"?>
  2. <!--SPDX-License-Identifier: GPL-2.0-or-later OR BSD-3-Clause-->
  3. <!--Copyright (C) 2023 Texas Instruments Incorporated - https://www.ti.com/-->
  4. <svg
  5. version="1.1"
  6. width="706px"
  7. height="951px"
  8. viewBox="-0.5 -0.5 706 951"
  9. id="svg408"
  10. sodipodi:docname="boot_diagram_j7200_am62x.svg"
  11. inkscape:version="1.1.2 (0a00cf5339, 2022-02-04)"
  12. xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
  13. xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
  14. xmlns:xlink="http://www.w3.org/1999/xlink"
  15. xmlns="http://www.w3.org/2000/svg"
  16. xmlns:svg="http://www.w3.org/2000/svg"
  17. xmlns:xhtml="http://www.w3.org/1999/xhtml">
  18. <sodipodi:namedview
  19. id="namedview410"
  20. pagecolor="#ffffff"
  21. bordercolor="#666666"
  22. borderopacity="1.0"
  23. inkscape:pageshadow="2"
  24. inkscape:pageopacity="0.0"
  25. inkscape:pagecheckerboard="0"
  26. showgrid="false"
  27. inkscape:zoom="1.4342797"
  28. inkscape:cx="184.06452"
  29. inkscape:cy="292.1327"
  30. inkscape:window-width="3440"
  31. inkscape:window-height="1416"
  32. inkscape:window-x="0"
  33. inkscape:window-y="0"
  34. inkscape:window-maximized="1"
  35. inkscape:current-layer="svg408" />
  36. <defs
  37. id="defs2" />
  38. <g
  39. id="g398">
  40. <rect
  41. x="235.5"
  42. y="50"
  43. width="137.5"
  44. height="40"
  45. rx="6"
  46. ry="6"
  47. fill="rgb(255, 255, 255)"
  48. stroke="rgb(0, 0, 0)"
  49. pointer-events="all"
  50. id="rect4" />
  51. <path
  52. d="M 304.25 90 L 304.25 940"
  53. fill="none"
  54. stroke="rgb(0, 0, 0)"
  55. stroke-miterlimit="10"
  56. stroke-dasharray="3 3"
  57. pointer-events="all"
  58. id="path6" />
  59. <g
  60. transform="translate(-0.5 -0.5)"
  61. id="g12">
  62. <switch
  63. id="switch10">
  64. <foreignObject
  65. style="overflow: visible; text-align: left;"
  66. pointer-events="none"
  67. width="100%"
  68. height="100%"
  69. requiredFeatures="http://www.w3.org/TR/SVG11/feature#Extensibility">
  70. <xhtml:div
  71. style="display: flex; align-items: unsafe center; justify-content: unsafe center; width: 136px; height: 1px; padding-top: 70px; margin-left: 237px;">
  72. <xhtml:div
  73. style="box-sizing: border-box; font-size: 0px; text-align: center;"
  74. data-drawio-colors="color: rgb(0, 0, 0); ">
  75. <xhtml:div
  76. 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>
  77. </xhtml:div>
  78. </xhtml:div>
  79. </foreignObject>
  80. <text
  81. x="304"
  82. y="74"
  83. fill="rgb(0, 0, 0)"
  84. font-family="Verdana"
  85. font-size="12px"
  86. text-anchor="middle"
  87. id="text8">Cortex-R</text>
  88. </switch>
  89. </g>
  90. <rect
  91. x="298.75"
  92. y="160"
  93. width="10"
  94. height="130"
  95. fill="rgb(255, 255, 255)"
  96. stroke="rgb(0, 0, 0)"
  97. pointer-events="all"
  98. id="rect14" />
  99. <rect
  100. x="301"
  101. y="161"
  102. width="71.5"
  103. height="30"
  104. fill="#ffe6cc"
  105. stroke="#d79b00"
  106. pointer-events="all"
  107. id="rect16" />
  108. <g
  109. transform="translate(-0.5 -0.5)"
  110. id="g22">
  111. <switch
  112. id="switch20">
  113. <foreignObject
  114. style="overflow: visible; text-align: left;"
  115. pointer-events="none"
  116. width="100%"
  117. height="100%"
  118. requiredFeatures="http://www.w3.org/TR/SVG11/feature#Extensibility">
  119. <xhtml:div
  120. style="display: flex; align-items: unsafe center; justify-content: unsafe center; width: 70px; height: 1px; padding-top: 176px; margin-left: 302px;">
  121. <xhtml:div
  122. style="box-sizing: border-box; font-size: 0px; text-align: center;"
  123. data-drawio-colors="color: rgb(0, 0, 0); ">
  124. <xhtml:div
  125. 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>
  126. </xhtml:div>
  127. </xhtml:div>
  128. </foreignObject>
  129. <text
  130. x="337"
  131. y="180"
  132. fill="rgb(0, 0, 0)"
  133. font-family="Helvetica"
  134. font-size="12px"
  135. text-anchor="middle"
  136. id="text18">ROM</text>
  137. </switch>
  138. </g>
  139. <rect
  140. x="299.75"
  141. y="305"
  142. width="10"
  143. height="205"
  144. fill="rgb(255, 255, 255)"
  145. stroke="rgb(0, 0, 0)"
  146. pointer-events="all"
  147. id="rect24" />
  148. <rect
  149. x="302"
  150. y="306"
  151. width="105.5"
  152. height="30"
  153. fill="#d5e8d4"
  154. stroke="#82b366"
  155. pointer-events="all"
  156. id="rect26" />
  157. <g
  158. transform="translate(-0.5 -0.5)"
  159. id="g32">
  160. <switch
  161. id="switch30">
  162. <foreignObject
  163. style="overflow: visible; text-align: left;"
  164. pointer-events="none"
  165. width="100%"
  166. height="100%"
  167. requiredFeatures="http://www.w3.org/TR/SVG11/feature#Extensibility">
  168. <xhtml:div
  169. style="display: flex; align-items: unsafe center; justify-content: unsafe center; width: 104px; height: 1px; padding-top: 321px; margin-left: 303px;">
  170. <xhtml:div
  171. style="box-sizing: border-box; font-size: 0px; text-align: center;"
  172. data-drawio-colors="color: rgb(0, 0, 0); ">
  173. <xhtml:div
  174. 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>
  175. </xhtml:div>
  176. </xhtml:div>
  177. </foreignObject>
  178. <text
  179. x="355"
  180. y="325"
  181. fill="rgb(0, 0, 0)"
  182. font-family="Helvetica"
  183. font-size="12px"
  184. text-anchor="middle"
  185. id="text28">Cortex-R SPL</text>
  186. </switch>
  187. </g>
  188. <rect
  189. x="308.75"
  190. y="190"
  191. width="90"
  192. height="40"
  193. rx="6"
  194. ry="6"
  195. fill="none"
  196. stroke="rgb(0, 0, 0)"
  197. pointer-events="all"
  198. id="rect34" />
  199. <g
  200. transform="translate(-0.5 -0.5)"
  201. id="g40">
  202. <switch
  203. id="switch38">
  204. <foreignObject
  205. style="overflow: visible; text-align: left;"
  206. pointer-events="none"
  207. width="100%"
  208. height="100%"
  209. requiredFeatures="http://www.w3.org/TR/SVG11/feature#Extensibility">
  210. <xhtml:div
  211. style="display: flex; align-items: unsafe center; justify-content: unsafe center; width: 88px; height: 1px; padding-top: 210px; margin-left: 310px;">
  212. <xhtml:div
  213. style="box-sizing: border-box; font-size: 0px; text-align: center;"
  214. data-drawio-colors="color: rgb(0, 0, 0); ">
  215. <xhtml:div
  216. 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>
  217. </xhtml:div>
  218. </xhtml:div>
  219. </foreignObject>
  220. <text
  221. x="354"
  222. y="214"
  223. fill="rgb(0, 0, 0)"
  224. font-family="Helvetica"
  225. font-size="12px"
  226. text-anchor="middle"
  227. id="text36">Load and auth t...</text>
  228. </switch>
  229. </g>
  230. <rect
  231. x="309"
  232. y="262"
  233. width="90"
  234. height="32"
  235. rx="4.8"
  236. ry="4.8"
  237. fill="none"
  238. stroke="rgb(0, 0, 0)"
  239. pointer-events="all"
  240. id="rect42" />
  241. <g
  242. transform="translate(-0.5 -0.5)"
  243. id="g48">
  244. <switch
  245. id="switch46">
  246. <foreignObject
  247. style="overflow: visible; text-align: left;"
  248. pointer-events="none"
  249. width="100%"
  250. height="100%"
  251. requiredFeatures="http://www.w3.org/TR/SVG11/feature#Extensibility">
  252. <xhtml:div
  253. style="display: flex; align-items: unsafe center; justify-content: unsafe center; width: 88px; height: 1px; padding-top: 278px; margin-left: 310px;">
  254. <xhtml:div
  255. style="box-sizing: border-box; font-size: 0px; text-align: center;"
  256. data-drawio-colors="color: rgb(0, 0, 0); ">
  257. <xhtml:div
  258. 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 />
  259. config data</xhtml:div>
  260. </xhtml:div>
  261. </xhtml:div>
  262. </foreignObject>
  263. <text
  264. x="354"
  265. y="282"
  266. fill="rgb(0, 0, 0)"
  267. font-family="Helvetica"
  268. font-size="12px"
  269. text-anchor="middle"
  270. id="text44">Load system...</text>
  271. </switch>
  272. </g>
  273. <rect
  274. x="310"
  275. y="336"
  276. width="90"
  277. height="32"
  278. rx="4.8"
  279. ry="4.8"
  280. fill="none"
  281. stroke="rgb(0, 0, 0)"
  282. pointer-events="all"
  283. id="rect50" />
  284. <g
  285. transform="translate(-0.5 -0.5)"
  286. id="g56">
  287. <switch
  288. id="switch54">
  289. <foreignObject
  290. style="overflow: visible; text-align: left;"
  291. pointer-events="none"
  292. width="100%"
  293. height="100%"
  294. requiredFeatures="http://www.w3.org/TR/SVG11/feature#Extensibility">
  295. <xhtml:div
  296. style="display: flex; align-items: unsafe center; justify-content: unsafe center; width: 88px; height: 1px; padding-top: 352px; margin-left: 311px;">
  297. <xhtml:div
  298. style="box-sizing: border-box; font-size: 0px; text-align: center;"
  299. data-drawio-colors="color: rgb(0, 0, 0); ">
  300. <xhtml:div
  301. 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>
  302. </xhtml:div>
  303. </xhtml:div>
  304. </foreignObject>
  305. <text
  306. x="355"
  307. y="356"
  308. fill="rgb(0, 0, 0)"
  309. font-family="Helvetica"
  310. font-size="12px"
  311. text-anchor="middle"
  312. id="text52">DDR Config</text>
  313. </switch>
  314. </g>
  315. <rect
  316. x="310"
  317. y="368"
  318. width="90"
  319. height="32"
  320. rx="4.8"
  321. ry="4.8"
  322. fill="none"
  323. stroke="rgb(0, 0, 0)"
  324. pointer-events="all"
  325. id="rect58" />
  326. <g
  327. transform="translate(-0.5 -0.5)"
  328. id="g64">
  329. <switch
  330. id="switch62">
  331. <foreignObject
  332. style="overflow: visible; text-align: left;"
  333. pointer-events="none"
  334. width="100%"
  335. height="100%"
  336. requiredFeatures="http://www.w3.org/TR/SVG11/feature#Extensibility">
  337. <xhtml:div
  338. style="display: flex; align-items: unsafe center; justify-content: unsafe center; width: 88px; height: 1px; padding-top: 384px; margin-left: 311px;">
  339. <xhtml:div
  340. style="box-sizing: border-box; font-size: 0px; text-align: center;"
  341. data-drawio-colors="color: rgb(0, 0, 0); ">
  342. <xhtml:div
  343. 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>
  344. </xhtml:div>
  345. </xhtml:div>
  346. </foreignObject>
  347. <text
  348. x="355"
  349. y="388"
  350. fill="rgb(0, 0, 0)"
  351. font-family="Helvetica"
  352. font-size="12px"
  353. text-anchor="middle"
  354. id="text60">Load tispl.bin</text>
  355. </switch>
  356. </g>
  357. <rect
  358. x="310"
  359. y="440"
  360. width="90"
  361. height="32"
  362. rx="4.8"
  363. ry="4.8"
  364. fill="none"
  365. stroke="rgb(0, 0, 0)"
  366. pointer-events="all"
  367. id="rect66" />
  368. <g
  369. transform="translate(-0.5 -0.5)"
  370. id="g72">
  371. <switch
  372. id="switch70">
  373. <foreignObject
  374. style="overflow: visible; text-align: left;"
  375. pointer-events="none"
  376. width="100%"
  377. height="100%"
  378. requiredFeatures="http://www.w3.org/TR/SVG11/feature#Extensibility">
  379. <xhtml:div
  380. style="display: flex; align-items: unsafe center; justify-content: unsafe center; width: 88px; height: 1px; padding-top: 456px; margin-left: 311px;">
  381. <xhtml:div
  382. style="box-sizing: border-box; font-size: 0px; text-align: center;"
  383. data-drawio-colors="color: rgb(0, 0, 0); ">
  384. <xhtml:div
  385. 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>
  386. </xhtml:div>
  387. </xhtml:div>
  388. </foreignObject>
  389. <text
  390. x="355"
  391. y="460"
  392. fill="rgb(0, 0, 0)"
  393. font-family="Helvetica"
  394. font-size="12px"
  395. text-anchor="middle"
  396. id="text68">Start Cortex-A</text>
  397. </switch>
  398. </g>
  399. <rect
  400. x="310"
  401. y="472"
  402. width="90"
  403. height="32"
  404. rx="4.8"
  405. ry="4.8"
  406. fill="none"
  407. stroke="rgb(0, 0, 0)"
  408. pointer-events="all"
  409. id="rect74" />
  410. <g
  411. transform="translate(-0.5 -0.5)"
  412. id="g80">
  413. <switch
  414. id="switch78">
  415. <foreignObject
  416. style="overflow: visible; text-align: left;"
  417. pointer-events="none"
  418. width="100%"
  419. height="100%"
  420. requiredFeatures="http://www.w3.org/TR/SVG11/feature#Extensibility">
  421. <xhtml:div
  422. style="display: flex; align-items: unsafe center; justify-content: unsafe center; width: 88px; height: 1px; padding-top: 488px; margin-left: 311px;">
  423. <xhtml:div
  424. style="box-sizing: border-box; font-size: 0px; text-align: center;"
  425. data-drawio-colors="color: rgb(0, 0, 0); ">
  426. <xhtml:div
  427. 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>
  428. </xhtml:div>
  429. </xhtml:div>
  430. </foreignObject>
  431. <text
  432. x="355"
  433. y="492"
  434. fill="rgb(0, 0, 0)"
  435. font-family="Helvetica"
  436. font-size="12px"
  437. text-anchor="middle"
  438. id="text76">Start DM</text>
  439. </switch>
  440. </g>
  441. <rect
  442. x="300"
  443. y="530"
  444. width="10"
  445. height="410"
  446. fill="rgb(255, 255, 255)"
  447. stroke="rgb(0, 0, 0)"
  448. pointer-events="all"
  449. id="rect82" />
  450. <rect
  451. x="302"
  452. y="535"
  453. width="71.5"
  454. height="30"
  455. fill="#e1d5e7"
  456. stroke="#9673a6"
  457. pointer-events="all"
  458. id="rect84" />
  459. <g
  460. transform="translate(-0.5 -0.5)"
  461. id="g90">
  462. <switch
  463. id="switch88">
  464. <foreignObject
  465. style="overflow: visible; text-align: left;"
  466. pointer-events="none"
  467. width="100%"
  468. height="100%"
  469. requiredFeatures="http://www.w3.org/TR/SVG11/feature#Extensibility">
  470. <xhtml:div
  471. style="display: flex; align-items: unsafe center; justify-content: unsafe center; width: 70px; height: 1px; padding-top: 550px; margin-left: 303px;">
  472. <xhtml:div
  473. style="box-sizing: border-box; font-size: 0px; text-align: center;"
  474. data-drawio-colors="color: rgb(0, 0, 0); ">
  475. <xhtml:div
  476. 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>
  477. </xhtml:div>
  478. </xhtml:div>
  479. </foreignObject>
  480. <text
  481. x="338"
  482. y="554"
  483. fill="rgb(0, 0, 0)"
  484. font-family="Helvetica"
  485. font-size="12px"
  486. text-anchor="middle"
  487. id="text86">Device Mgr</text>
  488. </switch>
  489. </g>
  490. <path
  491. d="M 299 456 L 139.37 456"
  492. fill="none"
  493. stroke="rgb(0, 0, 0)"
  494. stroke-miterlimit="10"
  495. pointer-events="stroke"
  496. id="path92" />
  497. <path
  498. d="M 134.12 456 L 141.12 452.5 L 139.37 456 L 141.12 459.5 Z"
  499. fill="rgb(0, 0, 0)"
  500. stroke="rgb(0, 0, 0)"
  501. stroke-miterlimit="10"
  502. pointer-events="all"
  503. id="path94" />
  504. <g
  505. transform="translate(-0.5 -0.5)"
  506. id="g100">
  507. <switch
  508. id="switch98">
  509. <foreignObject
  510. style="overflow: visible; text-align: left;"
  511. pointer-events="none"
  512. width="100%"
  513. height="100%"
  514. requiredFeatures="http://www.w3.org/TR/SVG11/feature#Extensibility">
  515. <xhtml:div
  516. style="display: flex; align-items: unsafe center; justify-content: unsafe center; width: 1px; height: 1px; padding-top: 440px; margin-left: 257px;">
  517. <xhtml:div
  518. style="box-sizing: border-box; font-size: 0px; text-align: center;"
  519. data-drawio-colors="color: rgb(0, 0, 0); background-color: rgb(255, 255, 255); ">
  520. <xhtml:div
  521. 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>
  522. </xhtml:div>
  523. </xhtml:div>
  524. </foreignObject>
  525. <text
  526. x="257"
  527. y="443"
  528. fill="rgb(0, 0, 0)"
  529. font-family="Helvetica"
  530. font-size="11px"
  531. text-anchor="middle"
  532. id="text96">Start Cort...</text>
  533. </switch>
  534. </g>
  535. <path
  536. d="M 481 601 L 139.37 601"
  537. fill="none"
  538. stroke="rgb(0, 0, 0)"
  539. stroke-miterlimit="10"
  540. pointer-events="stroke"
  541. id="path102" />
  542. <path
  543. d="M 134.12 601 L 141.12 597.5 L 139.37 601 L 141.12 604.5 Z"
  544. fill="rgb(0, 0, 0)"
  545. stroke="rgb(0, 0, 0)"
  546. stroke-miterlimit="10"
  547. pointer-events="all"
  548. id="path104" />
  549. <path
  550. d="M 481 711 L 139.37 711"
  551. fill="none"
  552. stroke="rgb(0, 0, 0)"
  553. stroke-miterlimit="10"
  554. pointer-events="stroke"
  555. id="path106" />
  556. <path
  557. d="M 134.12 711 L 141.12 707.5 L 139.37 711 L 141.12 714.5 Z"
  558. fill="rgb(0, 0, 0)"
  559. stroke="rgb(0, 0, 0)"
  560. stroke-miterlimit="10"
  561. pointer-events="all"
  562. id="path108" />
  563. <path
  564. d="M 482 692 L 317.37 691.04"
  565. fill="none"
  566. stroke="rgb(0, 0, 0)"
  567. stroke-miterlimit="10"
  568. pointer-events="stroke"
  569. id="path110" />
  570. <path
  571. d="M 312.12 691.01 L 319.14 687.55 L 317.37 691.04 L 319.1 694.55 Z"
  572. fill="rgb(0, 0, 0)"
  573. stroke="rgb(0, 0, 0)"
  574. stroke-miterlimit="10"
  575. pointer-events="all"
  576. id="path112" />
  577. <path
  578. d="M 482 799 L 317.37 798.04"
  579. fill="none"
  580. stroke="rgb(0, 0, 0)"
  581. stroke-miterlimit="10"
  582. pointer-events="stroke"
  583. id="path114" />
  584. <path
  585. d="M 312.12 798.01 L 319.14 794.55 L 317.37 798.04 L 319.1 801.55 Z"
  586. fill="rgb(0, 0, 0)"
  587. stroke="rgb(0, 0, 0)"
  588. stroke-miterlimit="10"
  589. pointer-events="all"
  590. id="path116" />
  591. <path
  592. d="M 481 791 L 139.37 791"
  593. fill="none"
  594. stroke="rgb(0, 0, 0)"
  595. stroke-miterlimit="10"
  596. pointer-events="stroke"
  597. id="path118" />
  598. <path
  599. d="M 134.12 791 L 141.12 787.5 L 139.37 791 L 141.12 794.5 Z"
  600. fill="rgb(0, 0, 0)"
  601. stroke="rgb(0, 0, 0)"
  602. stroke-miterlimit="10"
  603. pointer-events="all"
  604. id="path120" />
  605. <path
  606. d="M 481 890 L 315.37 890.96"
  607. fill="none"
  608. stroke="rgb(0, 0, 0)"
  609. stroke-miterlimit="10"
  610. pointer-events="stroke"
  611. id="path122" />
  612. <path
  613. d="M 310.12 890.99 L 317.1 887.45 L 315.37 890.96 L 317.14 894.45 Z"
  614. fill="rgb(0, 0, 0)"
  615. stroke="rgb(0, 0, 0)"
  616. stroke-miterlimit="10"
  617. pointer-events="all"
  618. id="path124" />
  619. <path
  620. d="M 481 879 L 139.37 881.95"
  621. fill="none"
  622. stroke="rgb(0, 0, 0)"
  623. stroke-miterlimit="10"
  624. pointer-events="stroke"
  625. id="path126" />
  626. <path
  627. d="M 134.12 881.99 L 141.09 878.43 L 139.37 881.95 L 141.15 885.43 Z"
  628. fill="rgb(0, 0, 0)"
  629. stroke="rgb(0, 0, 0)"
  630. stroke-miterlimit="10"
  631. pointer-events="all"
  632. id="path128" />
  633. <rect
  634. x="437"
  635. y="50"
  636. width="100"
  637. height="40"
  638. rx="6"
  639. ry="6"
  640. fill="rgb(255, 255, 255)"
  641. stroke="rgb(0, 0, 0)"
  642. pointer-events="all"
  643. id="rect130" />
  644. <path
  645. d="M 487 90 L 487 820"
  646. fill="none"
  647. stroke="rgb(0, 0, 0)"
  648. stroke-miterlimit="10"
  649. stroke-dasharray="3 3"
  650. pointer-events="all"
  651. id="path132" />
  652. <g
  653. transform="translate(-0.5 -0.5)"
  654. id="g138">
  655. <switch
  656. id="switch136">
  657. <foreignObject
  658. style="overflow: visible; text-align: left;"
  659. pointer-events="none"
  660. width="100%"
  661. height="100%"
  662. requiredFeatures="http://www.w3.org/TR/SVG11/feature#Extensibility">
  663. <xhtml:div
  664. style="display: flex; align-items: unsafe center; justify-content: unsafe center; width: 98px; height: 1px; padding-top: 70px; margin-left: 438px;">
  665. <xhtml:div
  666. style="box-sizing: border-box; font-size: 0px; text-align: center;"
  667. data-drawio-colors="color: rgb(0, 0, 0); ">
  668. <xhtml:div
  669. 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>
  670. </xhtml:div>
  671. </xhtml:div>
  672. </foreignObject>
  673. <text
  674. x="487"
  675. y="74"
  676. fill="rgb(0, 0, 0)"
  677. font-family="Verdana"
  678. font-size="12px"
  679. text-anchor="middle"
  680. id="text134">Cortex-A</text>
  681. </switch>
  682. </g>
  683. <rect
  684. x="482"
  685. y="510"
  686. width="10"
  687. height="70"
  688. fill="rgb(255, 255, 255)"
  689. stroke="rgb(0, 0, 0)"
  690. pointer-events="all"
  691. id="rect140" />
  692. <path
  693. d="M 482 565 L 139.37 565"
  694. fill="none"
  695. stroke="rgb(0, 0, 0)"
  696. stroke-miterlimit="10"
  697. pointer-events="stroke"
  698. id="path142" />
  699. <path
  700. d="M 134.12 565 L 141.12 561.5 L 139.37 565 L 141.12 568.5 Z"
  701. fill="rgb(0, 0, 0)"
  702. stroke="rgb(0, 0, 0)"
  703. stroke-miterlimit="10"
  704. pointer-events="all"
  705. id="path144" />
  706. <rect
  707. x="577"
  708. y="50"
  709. width="116.5"
  710. height="40"
  711. rx="6"
  712. ry="6"
  713. fill="rgb(255, 255, 255)"
  714. stroke="rgb(0, 0, 0)"
  715. pointer-events="all"
  716. id="rect146" />
  717. <path
  718. d="M 635.25 90 L 635.25 950"
  719. fill="none"
  720. stroke="rgb(0, 0, 0)"
  721. stroke-miterlimit="10"
  722. stroke-dasharray="3 3"
  723. pointer-events="all"
  724. id="path148" />
  725. <g
  726. transform="translate(-0.5 -0.5)"
  727. id="g154">
  728. <switch
  729. id="switch152">
  730. <foreignObject
  731. style="overflow: visible; text-align: left;"
  732. pointer-events="none"
  733. width="100%"
  734. height="100%"
  735. requiredFeatures="http://www.w3.org/TR/SVG11/feature#Extensibility">
  736. <xhtml:div
  737. style="display: flex; align-items: unsafe center; justify-content: unsafe center; width: 115px; height: 1px; padding-top: 70px; margin-left: 578px;">
  738. <xhtml:div
  739. style="box-sizing: border-box; font-size: 0px; text-align: center;"
  740. data-drawio-colors="color: rgb(0, 0, 0); ">
  741. <xhtml:div
  742. 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 />
  743. C6x/C7x</xhtml:div>
  744. </xhtml:div>
  745. </xhtml:div>
  746. </foreignObject>
  747. <text
  748. x="635"
  749. y="74"
  750. fill="rgb(0, 0, 0)"
  751. font-family="Verdana"
  752. font-size="12px"
  753. text-anchor="middle"
  754. id="text150">Cortex-R/M...</text>
  755. </switch>
  756. </g>
  757. <rect
  758. x="631"
  759. y="910"
  760. width="10"
  761. height="38"
  762. fill="rgb(255, 255, 255)"
  763. stroke="rgb(0, 0, 0)"
  764. pointer-events="all"
  765. id="rect156" />
  766. <rect
  767. x="633"
  768. y="912"
  769. width="71.5"
  770. height="30"
  771. fill="#e1d5e7"
  772. stroke="#9673a6"
  773. pointer-events="all"
  774. id="rect158" />
  775. <g
  776. transform="translate(-0.5 -0.5)"
  777. id="g164">
  778. <switch
  779. id="switch162">
  780. <foreignObject
  781. style="overflow: visible; text-align: left;"
  782. pointer-events="none"
  783. width="100%"
  784. height="100%"
  785. requiredFeatures="http://www.w3.org/TR/SVG11/feature#Extensibility">
  786. <xhtml:div
  787. style="display: flex; align-items: unsafe center; justify-content: unsafe center; width: 70px; height: 1px; padding-top: 927px; margin-left: 634px;">
  788. <xhtml:div
  789. style="box-sizing: border-box; font-size: 0px; text-align: center;"
  790. data-drawio-colors="color: rgb(0, 0, 0); ">
  791. <xhtml:div
  792. 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>
  793. </xhtml:div>
  794. </xhtml:div>
  795. </foreignObject>
  796. <text
  797. x="669"
  798. y="931"
  799. fill="rgb(0, 0, 0)"
  800. font-family="Helvetica"
  801. font-size="12px"
  802. text-anchor="middle"
  803. id="text160">Aux f/w</text>
  804. </switch>
  805. </g>
  806. <rect
  807. x="77"
  808. y="50"
  809. width="100"
  810. height="40"
  811. rx="6"
  812. ry="6"
  813. fill="rgb(255, 255, 255)"
  814. stroke="rgb(0, 0, 0)"
  815. pointer-events="all"
  816. id="rect166" />
  817. <path
  818. d="M 127 90 L 127 940"
  819. fill="none"
  820. stroke="rgb(0, 0, 0)"
  821. stroke-miterlimit="10"
  822. stroke-dasharray="3 3"
  823. pointer-events="all"
  824. id="path168" />
  825. <g
  826. transform="translate(-0.5 -0.5)"
  827. id="g174">
  828. <switch
  829. id="switch172">
  830. <foreignObject
  831. style="overflow: visible; text-align: left;"
  832. pointer-events="none"
  833. width="100%"
  834. height="100%"
  835. requiredFeatures="http://www.w3.org/TR/SVG11/feature#Extensibility">
  836. <xhtml:div
  837. style="display: flex; align-items: unsafe center; justify-content: unsafe center; width: 98px; height: 1px; padding-top: 70px; margin-left: 78px;">
  838. <xhtml:div
  839. style="box-sizing: border-box; font-size: 0px; text-align: center;"
  840. data-drawio-colors="color: rgb(0, 0, 0); ">
  841. <xhtml:div
  842. 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>
  843. </xhtml:div>
  844. </xhtml:div>
  845. </foreignObject>
  846. <text
  847. x="127"
  848. y="74"
  849. fill="rgb(0, 0, 0)"
  850. font-family="Verdana"
  851. font-size="12px"
  852. text-anchor="middle"
  853. id="text170">TIFS/DMSC</text>
  854. </switch>
  855. </g>
  856. <rect
  857. x="122"
  858. y="130"
  859. width="10"
  860. height="110"
  861. fill="rgb(255, 255, 255)"
  862. stroke="rgb(0, 0, 0)"
  863. pointer-events="all"
  864. id="rect176" />
  865. <rect
  866. x="79"
  867. y="132"
  868. width="50"
  869. height="30"
  870. fill="#ffe6cc"
  871. stroke="#d79b00"
  872. pointer-events="all"
  873. id="rect178" />
  874. <g
  875. transform="translate(-0.5 -0.5)"
  876. id="g184">
  877. <switch
  878. id="switch182">
  879. <foreignObject
  880. style="overflow: visible; text-align: left;"
  881. pointer-events="none"
  882. width="100%"
  883. height="100%"
  884. requiredFeatures="http://www.w3.org/TR/SVG11/feature#Extensibility">
  885. <xhtml:div
  886. style="display: flex; align-items: unsafe center; justify-content: unsafe center; width: 48px; height: 1px; padding-top: 147px; margin-left: 80px;">
  887. <xhtml:div
  888. style="box-sizing: border-box; font-size: 0px; text-align: center;"
  889. data-drawio-colors="color: rgb(0, 0, 0); ">
  890. <xhtml:div
  891. 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>
  892. </xhtml:div>
  893. </xhtml:div>
  894. </foreignObject>
  895. <text
  896. x="104"
  897. y="151"
  898. fill="rgb(0, 0, 0)"
  899. font-family="Helvetica"
  900. font-size="12px"
  901. text-anchor="middle"
  902. id="text180">ROM</text>
  903. </switch>
  904. </g>
  905. <rect
  906. x="122"
  907. y="253"
  908. width="10"
  909. height="687"
  910. fill="rgb(255, 255, 255)"
  911. stroke="rgb(0, 0, 0)"
  912. pointer-events="all"
  913. id="rect186" />
  914. <path
  915. d="M 297 238 L 138.37 238"
  916. fill="none"
  917. stroke="rgb(0, 0, 0)"
  918. stroke-miterlimit="10"
  919. pointer-events="stroke"
  920. id="path188" />
  921. <path
  922. d="M 133.12 238 L 140.12 234.5 L 138.37 238 L 140.12 241.5 Z"
  923. fill="rgb(0, 0, 0)"
  924. stroke="rgb(0, 0, 0)"
  925. stroke-miterlimit="10"
  926. pointer-events="all"
  927. id="path190" />
  928. <g
  929. transform="translate(-0.5 -0.5)"
  930. id="g196">
  931. <switch
  932. id="switch194">
  933. <foreignObject
  934. style="overflow: visible; text-align: left;"
  935. pointer-events="none"
  936. width="100%"
  937. height="100%"
  938. requiredFeatures="http://www.w3.org/TR/SVG11/feature#Extensibility">
  939. <xhtml:div
  940. style="display: flex; align-items: unsafe center; justify-content: unsafe center; width: 1px; height: 1px; padding-top: 230px; margin-left: 267px;">
  941. <xhtml:div
  942. style="box-sizing: border-box; font-size: 0px; text-align: center;"
  943. data-drawio-colors="color: rgb(0, 0, 0); background-color: rgb(255, 255, 255); ">
  944. <xhtml:div
  945. 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>
  946. </xhtml:div>
  947. </xhtml:div>
  948. </foreignObject>
  949. <text
  950. x="267"
  951. y="233"
  952. fill="rgb(0, 0, 0)"
  953. font-family="Helvetica"
  954. font-size="11px"
  955. text-anchor="middle"
  956. id="text192">Start TIFS</text>
  957. </switch>
  958. </g>
  959. <rect
  960. x="80"
  961. y="255"
  962. width="50"
  963. height="30"
  964. fill="#f8cecc"
  965. stroke="#b85450"
  966. pointer-events="all"
  967. id="rect198" />
  968. <g
  969. transform="translate(-0.5 -0.5)"
  970. id="g204">
  971. <switch
  972. id="switch202">
  973. <foreignObject
  974. style="overflow: visible; text-align: left;"
  975. pointer-events="none"
  976. width="100%"
  977. height="100%"
  978. requiredFeatures="http://www.w3.org/TR/SVG11/feature#Extensibility">
  979. <xhtml:div
  980. style="display: flex; align-items: unsafe center; justify-content: unsafe center; width: 48px; height: 1px; padding-top: 270px; margin-left: 81px;">
  981. <xhtml:div
  982. style="box-sizing: border-box; font-size: 0px; text-align: center;"
  983. data-drawio-colors="color: rgb(0, 0, 0); ">
  984. <xhtml:div
  985. 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>
  986. </xhtml:div>
  987. </xhtml:div>
  988. </foreignObject>
  989. <text
  990. x="105"
  991. y="274"
  992. fill="rgb(0, 0, 0)"
  993. font-family="Helvetica"
  994. font-size="12px"
  995. text-anchor="middle"
  996. id="text200">TIFS</text>
  997. </switch>
  998. </g>
  999. <path
  1000. d="M 62 0 L 178 0 L 192 14 L 192 35 L 62 35 L 62 0 Z"
  1001. fill="rgb(255, 255, 255)"
  1002. stroke="rgb(0, 0, 0)"
  1003. stroke-miterlimit="10"
  1004. pointer-events="all"
  1005. id="path206" />
  1006. <path
  1007. d="M 178 0 L 178 14 L 192 14"
  1008. fill="none"
  1009. stroke="rgb(0, 0, 0)"
  1010. stroke-miterlimit="10"
  1011. pointer-events="all"
  1012. id="path208" />
  1013. <g
  1014. transform="translate(-0.5 -0.5)"
  1015. id="g214">
  1016. <switch
  1017. id="switch212">
  1018. <foreignObject
  1019. style="overflow: visible; text-align: left;"
  1020. pointer-events="none"
  1021. width="100%"
  1022. height="100%"
  1023. requiredFeatures="http://www.w3.org/TR/SVG11/feature#Extensibility">
  1024. <xhtml:div
  1025. style="display: flex; align-items: unsafe flex-start; justify-content: unsafe center; width: 128px; height: 1px; padding-top: 1px; margin-left: 63px;">
  1026. <xhtml:div
  1027. style="box-sizing: border-box; font-size: 0px; text-align: center;"
  1028. data-drawio-colors="color: rgb(0, 0, 0); ">
  1029. <xhtml:div
  1030. 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>
  1031. </xhtml:div>
  1032. </xhtml:div>
  1033. </foreignObject>
  1034. <text
  1035. x="127"
  1036. y="13"
  1037. fill="rgb(0, 0, 0)"
  1038. font-family="Verdana"
  1039. font-size="12px"
  1040. text-anchor="middle"
  1041. id="text210">Security Enclave Boot...</text>
  1042. </switch>
  1043. </g>
  1044. <path
  1045. d="M 241 0 L 361 0 L 375 14 L 375 35 L 241 35 L 241 0 Z"
  1046. fill="rgb(255, 255, 255)"
  1047. stroke="rgb(0, 0, 0)"
  1048. stroke-miterlimit="10"
  1049. pointer-events="all"
  1050. id="path216" />
  1051. <path
  1052. d="M 361 0 L 361 14 L 375 14"
  1053. fill="none"
  1054. stroke="rgb(0, 0, 0)"
  1055. stroke-miterlimit="10"
  1056. pointer-events="all"
  1057. id="path218" />
  1058. <g
  1059. transform="translate(-0.5 -0.5)"
  1060. id="g224">
  1061. <switch
  1062. id="switch222">
  1063. <foreignObject
  1064. style="overflow: visible; text-align: left;"
  1065. pointer-events="none"
  1066. width="100%"
  1067. height="100%"
  1068. requiredFeatures="http://www.w3.org/TR/SVG11/feature#Extensibility">
  1069. <xhtml:div
  1070. style="display: flex; align-items: unsafe flex-start; justify-content: unsafe center; width: 132px; height: 1px; padding-top: 1px; margin-left: 242px;">
  1071. <xhtml:div
  1072. style="box-sizing: border-box; font-size: 0px; text-align: center;"
  1073. data-drawio-colors="color: rgb(0, 0, 0); ">
  1074. <xhtml:div
  1075. 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 />
  1076. Processor</xhtml:div>
  1077. </xhtml:div>
  1078. </xhtml:div>
  1079. </foreignObject>
  1080. <text
  1081. x="308"
  1082. y="13"
  1083. fill="rgb(0, 0, 0)"
  1084. font-family="Verdana"
  1085. font-size="12px"
  1086. text-anchor="middle"
  1087. id="text220">Boot Loader...</text>
  1088. </switch>
  1089. </g>
  1090. <path
  1091. d="M 437 0 L 523 0 L 537 14 L 537 35 L 437 35 L 437 0 Z"
  1092. fill="rgb(255, 255, 255)"
  1093. stroke="rgb(0, 0, 0)"
  1094. stroke-miterlimit="10"
  1095. pointer-events="all"
  1096. id="path226" />
  1097. <path
  1098. d="M 523 0 L 523 14 L 537 14"
  1099. fill="none"
  1100. stroke="rgb(0, 0, 0)"
  1101. stroke-miterlimit="10"
  1102. pointer-events="all"
  1103. id="path228" />
  1104. <g
  1105. transform="translate(-0.5 -0.5)"
  1106. id="g234">
  1107. <switch
  1108. id="switch232">
  1109. <foreignObject
  1110. style="overflow: visible; text-align: left;"
  1111. pointer-events="none"
  1112. width="100%"
  1113. height="100%"
  1114. requiredFeatures="http://www.w3.org/TR/SVG11/feature#Extensibility">
  1115. <xhtml:div
  1116. style="display: flex; align-items: unsafe flex-start; justify-content: unsafe center; width: 98px; height: 1px; padding-top: 1px; margin-left: 438px;">
  1117. <xhtml:div
  1118. style="box-sizing: border-box; font-size: 0px; text-align: center;"
  1119. data-drawio-colors="color: rgb(0, 0, 0); ">
  1120. <xhtml:div
  1121. 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>
  1122. </xhtml:div>
  1123. </xhtml:div>
  1124. </foreignObject>
  1125. <text
  1126. x="487"
  1127. y="13"
  1128. fill="rgb(0, 0, 0)"
  1129. font-family="Verdana"
  1130. font-size="12px"
  1131. text-anchor="middle"
  1132. id="text230">Main CPU</text>
  1133. </switch>
  1134. </g>
  1135. <path
  1136. d="M 577 0 L 663 0 L 677 14 L 677 35 L 577 35 L 577 0 Z"
  1137. fill="rgb(255, 255, 255)"
  1138. stroke="rgb(0, 0, 0)"
  1139. stroke-miterlimit="10"
  1140. pointer-events="all"
  1141. id="path236" />
  1142. <path
  1143. d="M 663 0 L 663 14 L 677 14"
  1144. fill="none"
  1145. stroke="rgb(0, 0, 0)"
  1146. stroke-miterlimit="10"
  1147. pointer-events="all"
  1148. id="path238" />
  1149. <g
  1150. transform="translate(-0.5 -0.5)"
  1151. id="g244">
  1152. <switch
  1153. id="switch242">
  1154. <foreignObject
  1155. style="overflow: visible; text-align: left;"
  1156. pointer-events="none"
  1157. width="100%"
  1158. height="100%"
  1159. requiredFeatures="http://www.w3.org/TR/SVG11/feature#Extensibility">
  1160. <xhtml:div
  1161. style="display: flex; align-items: unsafe flex-start; justify-content: unsafe center; width: 98px; height: 1px; padding-top: 1px; margin-left: 578px;">
  1162. <xhtml:div
  1163. style="box-sizing: border-box; font-size: 0px; text-align: center;"
  1164. data-drawio-colors="color: rgb(0, 0, 0); ">
  1165. <xhtml:div
  1166. 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 />
  1167. Processor</xhtml:div>
  1168. </xhtml:div>
  1169. </xhtml:div>
  1170. </foreignObject>
  1171. <text
  1172. x="627"
  1173. y="13"
  1174. fill="rgb(0, 0, 0)"
  1175. font-family="Verdana"
  1176. font-size="12px"
  1177. text-anchor="middle"
  1178. id="text240">Auxiliary...</text>
  1179. </switch>
  1180. </g>
  1181. <path
  1182. d="M 7 120 L 120.63 120"
  1183. fill="none"
  1184. stroke="rgb(0, 0, 0)"
  1185. stroke-miterlimit="10"
  1186. stroke-dasharray="12 12"
  1187. pointer-events="stroke"
  1188. id="path246" />
  1189. <path
  1190. d="M 125.88 120 L 118.88 123.5 L 120.63 120 L 118.88 116.5 Z"
  1191. fill="rgb(0, 0, 0)"
  1192. stroke="rgb(0, 0, 0)"
  1193. stroke-miterlimit="10"
  1194. pointer-events="all"
  1195. id="path248" />
  1196. <g
  1197. transform="translate(-0.5 -0.5)"
  1198. id="g254">
  1199. <switch
  1200. id="switch252">
  1201. <foreignObject
  1202. style="overflow: visible; text-align: left;"
  1203. pointer-events="none"
  1204. width="100%"
  1205. height="100%"
  1206. requiredFeatures="http://www.w3.org/TR/SVG11/feature#Extensibility">
  1207. <xhtml:div
  1208. style="display: flex; align-items: unsafe flex-end; justify-content: unsafe flex-start; width: 1px; height: 1px; padding-top: 118px; margin-left: 9px;">
  1209. <xhtml:div
  1210. style="box-sizing: border-box; font-size: 0px; text-align: left;"
  1211. data-drawio-colors="color: rgb(0, 0, 0); background-color: rgb(255, 255, 255); ">
  1212. <xhtml:div
  1213. 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>
  1214. </xhtml:div>
  1215. </xhtml:div>
  1216. </foreignObject>
  1217. <text
  1218. x="9"
  1219. y="118"
  1220. fill="#000000"
  1221. font-family="Helvetica"
  1222. font-size="11px"
  1223. id="text250">H/w Seq: Reset rls</text>
  1224. </switch>
  1225. </g>
  1226. <path
  1227. d="M 298 200 L 138.37 199.98"
  1228. fill="none"
  1229. stroke="rgb(0, 0, 0)"
  1230. stroke-miterlimit="10"
  1231. pointer-events="stroke"
  1232. id="path256" />
  1233. <path
  1234. d="M 133.12 199.98 L 140.12 196.48 L 138.37 199.98 L 140.12 203.48 Z"
  1235. fill="rgb(0, 0, 0)"
  1236. stroke="rgb(0, 0, 0)"
  1237. stroke-miterlimit="10"
  1238. pointer-events="all"
  1239. id="path258" />
  1240. <g
  1241. transform="translate(-0.5 -0.5)"
  1242. id="g264">
  1243. <switch
  1244. id="switch262">
  1245. <foreignObject
  1246. style="overflow: visible; text-align: left;"
  1247. pointer-events="none"
  1248. width="100%"
  1249. height="100%"
  1250. requiredFeatures="http://www.w3.org/TR/SVG11/feature#Extensibility">
  1251. <xhtml:div
  1252. style="display: flex; align-items: unsafe center; justify-content: unsafe center; width: 1px; height: 1px; padding-top: 190px; margin-left: 257px;">
  1253. <xhtml:div
  1254. style="box-sizing: border-box; font-size: 0px; text-align: center;"
  1255. data-drawio-colors="color: rgb(0, 0, 0); background-color: rgb(255, 255, 255); ">
  1256. <xhtml:div
  1257. 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>
  1258. </xhtml:div>
  1259. </xhtml:div>
  1260. </foreignObject>
  1261. <text
  1262. x="257"
  1263. y="193"
  1264. fill="rgb(0, 0, 0)"
  1265. font-family="Helvetica"
  1266. font-size="11px"
  1267. text-anchor="middle"
  1268. id="text260">Auth tiboo...</text>
  1269. </switch>
  1270. </g>
  1271. <path
  1272. d="M 133 159 L 297.38 159"
  1273. fill="none"
  1274. stroke="rgb(0, 0, 0)"
  1275. stroke-miterlimit="10"
  1276. pointer-events="stroke"
  1277. id="path266" />
  1278. <path
  1279. d="M 302.63 159 L 295.63 162.5 L 297.38 159 L 295.63 155.5 Z"
  1280. fill="rgb(0, 0, 0)"
  1281. stroke="rgb(0, 0, 0)"
  1282. stroke-miterlimit="10"
  1283. pointer-events="all"
  1284. id="path268" />
  1285. <g
  1286. transform="translate(-0.5 -0.5)"
  1287. id="g274">
  1288. <switch
  1289. id="switch272">
  1290. <foreignObject
  1291. style="overflow: visible; text-align: left;"
  1292. pointer-events="none"
  1293. width="100%"
  1294. height="100%"
  1295. requiredFeatures="http://www.w3.org/TR/SVG11/feature#Extensibility">
  1296. <xhtml:div
  1297. style="display: flex; align-items: unsafe center; justify-content: unsafe center; width: 1px; height: 1px; padding-top: 150px; margin-left: 177px;">
  1298. <xhtml:div
  1299. style="box-sizing: border-box; font-size: 0px; text-align: center;"
  1300. data-drawio-colors="color: rgb(0, 0, 0); background-color: rgb(255, 255, 255); ">
  1301. <xhtml:div
  1302. 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>
  1303. </xhtml:div>
  1304. </xhtml:div>
  1305. </foreignObject>
  1306. <text
  1307. x="177"
  1308. y="153"
  1309. fill="rgb(0, 0, 0)"
  1310. font-family="Helvetica"
  1311. font-size="11px"
  1312. text-anchor="middle"
  1313. id="text270">Release Re...</text>
  1314. </switch>
  1315. </g>
  1316. <path
  1317. d="M 299 281.94 L 139.37 281.04"
  1318. fill="none"
  1319. stroke="rgb(0, 0, 0)"
  1320. stroke-miterlimit="10"
  1321. pointer-events="stroke"
  1322. id="path276" />
  1323. <path
  1324. d="M 134.12 281.01 L 141.14 277.55 L 139.37 281.04 L 141.1 284.55 Z"
  1325. fill="rgb(0, 0, 0)"
  1326. stroke="rgb(0, 0, 0)"
  1327. stroke-miterlimit="10"
  1328. pointer-events="all"
  1329. id="path278" />
  1330. <g
  1331. transform="translate(-0.5 -0.5)"
  1332. id="g284">
  1333. <switch
  1334. id="switch282">
  1335. <foreignObject
  1336. style="overflow: visible; text-align: left;"
  1337. pointer-events="none"
  1338. width="100%"
  1339. height="100%"
  1340. requiredFeatures="http://www.w3.org/TR/SVG11/feature#Extensibility">
  1341. <xhtml:div
  1342. style="display: flex; align-items: unsafe center; justify-content: unsafe center; width: 1px; height: 1px; padding-top: 270px; margin-left: 237px;">
  1343. <xhtml:div
  1344. style="box-sizing: border-box; font-size: 0px; text-align: center;"
  1345. data-drawio-colors="color: rgb(0, 0, 0); background-color: rgb(255, 255, 255); ">
  1346. <xhtml:div
  1347. 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>
  1348. </xhtml:div>
  1349. </xhtml:div>
  1350. </foreignObject>
  1351. <text
  1352. x="237"
  1353. y="273"
  1354. fill="rgb(0, 0, 0)"
  1355. font-family="Helvetica"
  1356. font-size="11px"
  1357. text-anchor="middle"
  1358. id="text280">Load syste...</text>
  1359. </switch>
  1360. </g>
  1361. <rect
  1362. x="308.75"
  1363. y="230"
  1364. width="90"
  1365. height="32"
  1366. rx="4.8"
  1367. ry="4.8"
  1368. fill="none"
  1369. stroke="rgb(0, 0, 0)"
  1370. pointer-events="all"
  1371. id="rect286" />
  1372. <g
  1373. transform="translate(-0.5 -0.5)"
  1374. id="g292">
  1375. <switch
  1376. id="switch290">
  1377. <foreignObject
  1378. style="overflow: visible; text-align: left;"
  1379. pointer-events="none"
  1380. width="100%"
  1381. height="100%"
  1382. requiredFeatures="http://www.w3.org/TR/SVG11/feature#Extensibility">
  1383. <xhtml:div
  1384. style="display: flex; align-items: unsafe center; justify-content: unsafe center; width: 88px; height: 1px; padding-top: 246px; margin-left: 310px;">
  1385. <xhtml:div
  1386. style="box-sizing: border-box; font-size: 0px; text-align: center;"
  1387. data-drawio-colors="color: rgb(0, 0, 0); ">
  1388. <xhtml:div
  1389. 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>
  1390. </xhtml:div>
  1391. </xhtml:div>
  1392. </foreignObject>
  1393. <text
  1394. x="354"
  1395. y="250"
  1396. fill="rgb(0, 0, 0)"
  1397. font-family="Helvetica"
  1398. font-size="12px"
  1399. text-anchor="middle"
  1400. id="text288">Start TIFS</text>
  1401. </switch>
  1402. </g>
  1403. <rect
  1404. x="310"
  1405. y="400"
  1406. width="90"
  1407. height="32"
  1408. rx="4.8"
  1409. ry="4.8"
  1410. fill="none"
  1411. stroke="rgb(0, 0, 0)"
  1412. pointer-events="all"
  1413. id="rect294" />
  1414. <g
  1415. transform="translate(-0.5 -0.5)"
  1416. id="g300">
  1417. <switch
  1418. id="switch298">
  1419. <foreignObject
  1420. style="overflow: visible; text-align: left;"
  1421. pointer-events="none"
  1422. width="100%"
  1423. height="100%"
  1424. requiredFeatures="http://www.w3.org/TR/SVG11/feature#Extensibility">
  1425. <xhtml:div
  1426. style="display: flex; align-items: unsafe center; justify-content: unsafe center; width: 88px; height: 1px; padding-top: 416px; margin-left: 311px;">
  1427. <xhtml:div
  1428. style="box-sizing: border-box; font-size: 0px; text-align: center;"
  1429. data-drawio-colors="color: rgb(0, 0, 0); ">
  1430. <xhtml:div
  1431. 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>
  1432. </xhtml:div>
  1433. </xhtml:div>
  1434. </foreignObject>
  1435. <text
  1436. x="355"
  1437. y="420"
  1438. fill="rgb(0, 0, 0)"
  1439. font-family="Helvetica"
  1440. font-size="12px"
  1441. text-anchor="middle"
  1442. id="text296">Load DM f/w</text>
  1443. </switch>
  1444. </g>
  1445. <path
  1446. d="M 303 510 L 333 510 L 333 530 L 309.12 530"
  1447. fill="none"
  1448. stroke="rgb(0, 0, 0)"
  1449. stroke-miterlimit="10"
  1450. pointer-events="stroke"
  1451. id="path302" />
  1452. <path
  1453. d="M 302.12 530 L 309.12 526.5 L 309.12 533.5 Z"
  1454. fill="rgb(0, 0, 0)"
  1455. stroke="rgb(0, 0, 0)"
  1456. stroke-miterlimit="10"
  1457. pointer-events="all"
  1458. id="path304" />
  1459. <g
  1460. transform="translate(-0.5 -0.5)"
  1461. id="g310">
  1462. <switch
  1463. id="switch308">
  1464. <foreignObject
  1465. style="overflow: visible; text-align: left;"
  1466. pointer-events="none"
  1467. width="100%"
  1468. height="100%"
  1469. requiredFeatures="http://www.w3.org/TR/SVG11/feature#Extensibility">
  1470. <xhtml:div
  1471. style="display: flex; align-items: unsafe center; justify-content: unsafe flex-start; width: 1px; height: 1px; padding-top: 521px; margin-left: 337px;">
  1472. <xhtml:div
  1473. style="box-sizing: border-box; font-size: 0px; text-align: left;"
  1474. data-drawio-colors="color: rgb(0, 0, 0); background-color: rgb(255, 255, 255); ">
  1475. <xhtml:div
  1476. 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>
  1477. </xhtml:div>
  1478. </xhtml:div>
  1479. </foreignObject>
  1480. <text
  1481. x="337"
  1482. y="524"
  1483. fill="rgb(0, 0, 0)"
  1484. font-family="Helvetica"
  1485. font-size="11px"
  1486. id="text306">branch</text>
  1487. </switch>
  1488. </g>
  1489. <path
  1490. d="M 133 511 L 137 511 L 476.63 511"
  1491. fill="none"
  1492. stroke="rgb(0, 0, 0)"
  1493. stroke-miterlimit="10"
  1494. pointer-events="stroke"
  1495. id="path312" />
  1496. <path
  1497. d="M 481.88 511 L 474.88 514.5 L 476.63 511 L 474.88 507.5 Z"
  1498. fill="rgb(0, 0, 0)"
  1499. stroke="rgb(0, 0, 0)"
  1500. stroke-miterlimit="10"
  1501. pointer-events="all"
  1502. id="path314" />
  1503. <g
  1504. transform="translate(-0.5 -0.5)"
  1505. id="g320">
  1506. <switch
  1507. id="switch318">
  1508. <foreignObject
  1509. style="overflow: visible; text-align: left;"
  1510. pointer-events="none"
  1511. width="100%"
  1512. height="100%"
  1513. requiredFeatures="http://www.w3.org/TR/SVG11/feature#Extensibility">
  1514. <xhtml:div
  1515. style="display: flex; align-items: unsafe center; justify-content: unsafe center; width: 1px; height: 1px; padding-top: 500px; margin-left: 177px;">
  1516. <xhtml:div
  1517. style="box-sizing: border-box; font-size: 0px; text-align: center;"
  1518. data-drawio-colors="color: rgb(0, 0, 0); background-color: rgb(255, 255, 255); ">
  1519. <xhtml:div
  1520. 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>
  1521. </xhtml:div>
  1522. </xhtml:div>
  1523. </foreignObject>
  1524. <text
  1525. x="177"
  1526. y="503"
  1527. fill="rgb(0, 0, 0)"
  1528. font-family="Helvetica"
  1529. font-size="11px"
  1530. text-anchor="middle"
  1531. id="text316">Release Re...</text>
  1532. </switch>
  1533. </g>
  1534. <rect
  1535. x="484"
  1536. y="513"
  1537. width="71.5"
  1538. height="30"
  1539. fill="#d5e8d4"
  1540. stroke="#82b366"
  1541. pointer-events="all"
  1542. id="rect322" />
  1543. <g
  1544. transform="translate(-0.5 -0.5)"
  1545. id="g328">
  1546. <switch
  1547. id="switch326">
  1548. <foreignObject
  1549. style="overflow: visible; text-align: left;"
  1550. pointer-events="none"
  1551. width="100%"
  1552. height="100%"
  1553. requiredFeatures="http://www.w3.org/TR/SVG11/feature#Extensibility">
  1554. <xhtml:div
  1555. style="display: flex; align-items: unsafe center; justify-content: unsafe center; width: 70px; height: 1px; padding-top: 528px; margin-left: 485px;">
  1556. <xhtml:div
  1557. style="box-sizing: border-box; font-size: 0px; text-align: center;"
  1558. data-drawio-colors="color: rgb(0, 0, 0); ">
  1559. <xhtml:div
  1560. 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>
  1561. </xhtml:div>
  1562. </xhtml:div>
  1563. </foreignObject>
  1564. <text
  1565. x="520"
  1566. y="532"
  1567. fill="rgb(0, 0, 0)"
  1568. font-family="Helvetica"
  1569. font-size="12px"
  1570. text-anchor="middle"
  1571. id="text324">TF-A</text>
  1572. </switch>
  1573. </g>
  1574. <rect
  1575. x="482"
  1576. y="581"
  1577. width="10"
  1578. height="70"
  1579. fill="rgb(255, 255, 255)"
  1580. stroke="rgb(0, 0, 0)"
  1581. pointer-events="all"
  1582. id="rect330" />
  1583. <rect
  1584. x="484"
  1585. y="584"
  1586. width="71.5"
  1587. height="30"
  1588. fill="#d5e8d4"
  1589. stroke="#82b366"
  1590. pointer-events="all"
  1591. id="rect332" />
  1592. <g
  1593. transform="translate(-0.5 -0.5)"
  1594. id="g338">
  1595. <switch
  1596. id="switch336">
  1597. <foreignObject
  1598. style="overflow: visible; text-align: left;"
  1599. pointer-events="none"
  1600. width="100%"
  1601. height="100%"
  1602. requiredFeatures="http://www.w3.org/TR/SVG11/feature#Extensibility">
  1603. <xhtml:div
  1604. style="display: flex; align-items: unsafe center; justify-content: unsafe center; width: 70px; height: 1px; padding-top: 599px; margin-left: 485px;">
  1605. <xhtml:div
  1606. style="box-sizing: border-box; font-size: 0px; text-align: center;"
  1607. data-drawio-colors="color: rgb(0, 0, 0); ">
  1608. <xhtml:div
  1609. 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>
  1610. </xhtml:div>
  1611. </xhtml:div>
  1612. </foreignObject>
  1613. <text
  1614. x="520"
  1615. y="603"
  1616. fill="rgb(0, 0, 0)"
  1617. font-family="Helvetica"
  1618. font-size="12px"
  1619. text-anchor="middle"
  1620. id="text334">OP-TEE</text>
  1621. </switch>
  1622. </g>
  1623. <rect
  1624. x="482"
  1625. y="662"
  1626. width="10"
  1627. height="78"
  1628. fill="rgb(255, 255, 255)"
  1629. stroke="rgb(0, 0, 0)"
  1630. pointer-events="all"
  1631. id="rect340" />
  1632. <rect
  1633. x="484"
  1634. y="665"
  1635. width="83"
  1636. height="30"
  1637. fill="#d5e8d4"
  1638. stroke="#82b366"
  1639. pointer-events="all"
  1640. id="rect342" />
  1641. <g
  1642. transform="translate(-0.5 -0.5)"
  1643. id="g348">
  1644. <switch
  1645. id="switch346">
  1646. <foreignObject
  1647. style="overflow: visible; text-align: left;"
  1648. pointer-events="none"
  1649. width="100%"
  1650. height="100%"
  1651. requiredFeatures="http://www.w3.org/TR/SVG11/feature#Extensibility">
  1652. <xhtml:div
  1653. style="display: flex; align-items: unsafe center; justify-content: unsafe center; width: 81px; height: 1px; padding-top: 680px; margin-left: 485px;">
  1654. <xhtml:div
  1655. style="box-sizing: border-box; font-size: 0px; text-align: center;"
  1656. data-drawio-colors="color: rgb(0, 0, 0); ">
  1657. <xhtml:div
  1658. 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>
  1659. </xhtml:div>
  1660. </xhtml:div>
  1661. </foreignObject>
  1662. <text
  1663. x="526"
  1664. y="684"
  1665. fill="rgb(0, 0, 0)"
  1666. font-family="Helvetica"
  1667. font-size="12px"
  1668. text-anchor="middle"
  1669. id="text344">Cortex-A SPL</text>
  1670. </switch>
  1671. </g>
  1672. <rect
  1673. x="482"
  1674. y="748"
  1675. width="10"
  1676. height="192"
  1677. fill="rgb(255, 255, 255)"
  1678. stroke="rgb(0, 0, 0)"
  1679. pointer-events="all"
  1680. id="rect350" />
  1681. <rect
  1682. x="484"
  1683. y="751"
  1684. width="83"
  1685. height="30"
  1686. fill="#d5e8d4"
  1687. stroke="#82b366"
  1688. pointer-events="all"
  1689. id="rect352" />
  1690. <g
  1691. transform="translate(-0.5 -0.5)"
  1692. id="g358">
  1693. <switch
  1694. id="switch356">
  1695. <foreignObject
  1696. style="overflow: visible; text-align: left;"
  1697. pointer-events="none"
  1698. width="100%"
  1699. height="100%"
  1700. requiredFeatures="http://www.w3.org/TR/SVG11/feature#Extensibility">
  1701. <xhtml:div
  1702. style="display: flex; align-items: unsafe center; justify-content: unsafe center; width: 81px; height: 1px; padding-top: 766px; margin-left: 485px;">
  1703. <xhtml:div
  1704. style="box-sizing: border-box; font-size: 0px; text-align: center;"
  1705. data-drawio-colors="color: rgb(0, 0, 0); ">
  1706. <xhtml:div
  1707. 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>
  1708. </xhtml:div>
  1709. </xhtml:div>
  1710. </foreignObject>
  1711. <text
  1712. x="526"
  1713. y="770"
  1714. fill="rgb(0, 0, 0)"
  1715. font-family="Helvetica"
  1716. font-size="12px"
  1717. text-anchor="middle"
  1718. id="text354">U-Boot</text>
  1719. </switch>
  1720. </g>
  1721. <rect
  1722. x="492"
  1723. y="700"
  1724. width="103"
  1725. height="32"
  1726. rx="4.8"
  1727. ry="4.8"
  1728. fill="none"
  1729. stroke="rgb(0, 0, 0)"
  1730. pointer-events="all"
  1731. id="rect360" />
  1732. <g
  1733. transform="translate(-0.5 -0.5)"
  1734. id="g366">
  1735. <switch
  1736. id="switch364">
  1737. <foreignObject
  1738. style="overflow: visible; text-align: left;"
  1739. pointer-events="none"
  1740. width="100%"
  1741. height="100%"
  1742. requiredFeatures="http://www.w3.org/TR/SVG11/feature#Extensibility">
  1743. <xhtml:div
  1744. style="display: flex; align-items: unsafe center; justify-content: unsafe center; width: 101px; height: 1px; padding-top: 716px; margin-left: 493px;">
  1745. <xhtml:div
  1746. style="box-sizing: border-box; font-size: 0px; text-align: center;"
  1747. data-drawio-colors="color: rgb(0, 0, 0); ">
  1748. <xhtml:div
  1749. 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>
  1750. </xhtml:div>
  1751. </xhtml:div>
  1752. </foreignObject>
  1753. <text
  1754. x="544"
  1755. y="720"
  1756. fill="rgb(0, 0, 0)"
  1757. font-family="Helvetica"
  1758. font-size="12px"
  1759. text-anchor="middle"
  1760. id="text362">Load u-boot.img</text>
  1761. </switch>
  1762. </g>
  1763. <rect
  1764. x="492"
  1765. y="820"
  1766. width="103"
  1767. height="32"
  1768. rx="4.8"
  1769. ry="4.8"
  1770. fill="none"
  1771. stroke="rgb(0, 0, 0)"
  1772. pointer-events="all"
  1773. id="rect368" />
  1774. <g
  1775. transform="translate(-0.5 -0.5)"
  1776. id="g374">
  1777. <switch
  1778. id="switch372">
  1779. <foreignObject
  1780. style="overflow: visible; text-align: left;"
  1781. pointer-events="none"
  1782. width="100%"
  1783. height="100%"
  1784. requiredFeatures="http://www.w3.org/TR/SVG11/feature#Extensibility">
  1785. <xhtml:div
  1786. style="display: flex; align-items: unsafe center; justify-content: unsafe center; width: 101px; height: 1px; padding-top: 836px; margin-left: 493px;">
  1787. <xhtml:div
  1788. style="box-sizing: border-box; font-size: 0px; text-align: center;"
  1789. data-drawio-colors="color: rgb(0, 0, 0); ">
  1790. <xhtml:div
  1791. 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 />
  1792. (optional)</xhtml:div>
  1793. </xhtml:div>
  1794. </xhtml:div>
  1795. </foreignObject>
  1796. <text
  1797. x="544"
  1798. y="840"
  1799. fill="rgb(0, 0, 0)"
  1800. font-family="Helvetica"
  1801. font-size="12px"
  1802. text-anchor="middle"
  1803. id="text370">Load Aux core f/w...</text>
  1804. </switch>
  1805. </g>
  1806. <rect
  1807. x="492"
  1808. y="860"
  1809. width="103"
  1810. height="32"
  1811. rx="4.8"
  1812. ry="4.8"
  1813. fill="none"
  1814. stroke="rgb(0, 0, 0)"
  1815. pointer-events="all"
  1816. id="rect376" />
  1817. <g
  1818. transform="translate(-0.5 -0.5)"
  1819. id="g382">
  1820. <switch
  1821. id="switch380">
  1822. <foreignObject
  1823. style="overflow: visible; text-align: left;"
  1824. pointer-events="none"
  1825. width="100%"
  1826. height="100%"
  1827. requiredFeatures="http://www.w3.org/TR/SVG11/feature#Extensibility">
  1828. <xhtml:div
  1829. style="display: flex; align-items: unsafe center; justify-content: unsafe center; width: 101px; height: 1px; padding-top: 876px; margin-left: 493px;">
  1830. <xhtml:div
  1831. style="box-sizing: border-box; font-size: 0px; text-align: center;"
  1832. data-drawio-colors="color: rgb(0, 0, 0); ">
  1833. <xhtml:div
  1834. 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 />
  1835. (optional)</xhtml:div>
  1836. </xhtml:div>
  1837. </xhtml:div>
  1838. </foreignObject>
  1839. <text
  1840. x="544"
  1841. y="880"
  1842. fill="rgb(0, 0, 0)"
  1843. font-family="Helvetica"
  1844. font-size="12px"
  1845. text-anchor="middle"
  1846. id="text378">Start Aux core...</text>
  1847. </switch>
  1848. </g>
  1849. <path
  1850. d="M 311 909 L 628.38 909"
  1851. fill="none"
  1852. stroke="rgb(0, 0, 0)"
  1853. stroke-miterlimit="10"
  1854. pointer-events="stroke"
  1855. id="path384" />
  1856. <path
  1857. d="M 633.63 909 L 626.63 912.5 L 628.38 909 L 626.63 905.5 Z"
  1858. fill="rgb(0, 0, 0)"
  1859. stroke="rgb(0, 0, 0)"
  1860. stroke-miterlimit="10"
  1861. pointer-events="all"
  1862. id="path386" />
  1863. <g
  1864. transform="translate(-0.5 -0.5)"
  1865. id="g392">
  1866. <switch
  1867. id="switch390">
  1868. <foreignObject
  1869. style="overflow: visible; text-align: left;"
  1870. pointer-events="none"
  1871. width="100%"
  1872. height="100%"
  1873. requiredFeatures="http://www.w3.org/TR/SVG11/feature#Extensibility">
  1874. <xhtml:div
  1875. style="display: flex; align-items: unsafe center; justify-content: unsafe center; width: 1px; height: 1px; padding-top: 900px; margin-left: 357px;">
  1876. <xhtml:div
  1877. style="box-sizing: border-box; font-size: 0px; text-align: center;"
  1878. data-drawio-colors="color: rgb(0, 0, 0); background-color: rgb(255, 255, 255); ">
  1879. <xhtml:div
  1880. 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>
  1881. </xhtml:div>
  1882. </xhtml:div>
  1883. </foreignObject>
  1884. <text
  1885. x="357"
  1886. y="903"
  1887. fill="rgb(0, 0, 0)"
  1888. font-family="Helvetica"
  1889. font-size="11px"
  1890. text-anchor="middle"
  1891. id="text388">Release Re...</text>
  1892. </switch>
  1893. </g>
  1894. <path
  1895. d="M 482 632.91 L 315.37 632.91"
  1896. fill="none"
  1897. stroke="rgb(0, 0, 0)"
  1898. stroke-miterlimit="10"
  1899. pointer-events="stroke"
  1900. id="path394" />
  1901. <path
  1902. d="M 310.12 632.91 L 317.12 629.41 L 315.37 632.91 L 317.12 636.41 Z"
  1903. fill="rgb(0, 0, 0)"
  1904. stroke="rgb(0, 0, 0)"
  1905. stroke-miterlimit="10"
  1906. pointer-events="all"
  1907. id="path396" />
  1908. </g>
  1909. <switch
  1910. id="switch406">
  1911. <g
  1912. requiredFeatures="http://www.w3.org/TR/SVG11/feature#Extensibility"
  1913. id="g400" />
  1914. <a
  1915. transform="translate(0,-5)"
  1916. xlink:href="https://www.drawio.com/doc/faq/svg-export-text-problems"
  1917. target="_blank"
  1918. id="a404">
  1919. <text
  1920. text-anchor="middle"
  1921. font-size="10px"
  1922. x="50%"
  1923. y="100%"
  1924. id="text402">Text is not SVG - cannot display</text>
  1925. </a>
  1926. </switch>
  1927. </svg>