porting-guide.rst 136 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615
  1. Porting Guide
  2. =============
  3. Introduction
  4. ------------
  5. Porting Trusted Firmware-A (TF-A) to a new platform involves making some
  6. mandatory and optional modifications for both the cold and warm boot paths.
  7. Modifications consist of:
  8. - Implementing a platform-specific function or variable,
  9. - Setting up the execution context in a certain way, or
  10. - Defining certain constants (for example #defines).
  11. The platform-specific functions and variables are declared in
  12. ``include/plat/common/platform.h``. The firmware provides a default
  13. implementation of variables and functions to fulfill the optional requirements
  14. in order to ease the porting effort. Each platform port can use them as is or
  15. provide their own implementation if the default implementation is inadequate.
  16. .. note::
  17. TF-A historically provided default implementations of platform interfaces
  18. as *weak* functions. This practice is now discouraged and new platform
  19. interfaces as they get introduced in the code base should be *strongly*
  20. defined. We intend to convert existing weak functions over time. Until
  21. then, you will find references to *weak* functions in this document.
  22. Please review the :ref:`Threat Model` documents as part of the porting
  23. effort. Some platform interfaces play a key role in mitigating against some of
  24. the threats. Failing to fulfill these expectations could undermine the security
  25. guarantees offered by TF-A. These platform responsibilities are highlighted in
  26. the threat assessment section, under the "`Mitigations implemented?`" box for
  27. each threat.
  28. Some modifications are common to all Boot Loader (BL) stages. Section 2
  29. discusses these in detail. The subsequent sections discuss the remaining
  30. modifications for each BL stage in detail.
  31. Please refer to the :ref:`Platform Ports Policy` for the policy regarding
  32. compatibility and deprecation of these porting interfaces.
  33. Only Arm development platforms (such as FVP and Juno) may use the
  34. functions/definitions in ``include/plat/arm/common/`` and the corresponding
  35. source files in ``plat/arm/common/``. This is done so that there are no
  36. dependencies between platforms maintained by different people/companies. If you
  37. want to use any of the functionality present in ``plat/arm`` files, please
  38. propose a patch that moves the code to ``plat/common`` so that it can be
  39. discussed.
  40. Common modifications
  41. --------------------
  42. This section covers the modifications that should be made by the platform for
  43. each BL stage to correctly port the firmware stack. They are categorized as
  44. either mandatory or optional.
  45. Common mandatory modifications
  46. ------------------------------
  47. A platform port must enable the Memory Management Unit (MMU) as well as the
  48. instruction and data caches for each BL stage. Setting up the translation
  49. tables is the responsibility of the platform port because memory maps differ
  50. across platforms. A memory translation library (see ``lib/xlat_tables_v2/``) is
  51. provided to help in this setup.
  52. Note that although this library supports non-identity mappings, this is intended
  53. only for re-mapping peripheral physical addresses and allows platforms with high
  54. I/O addresses to reduce their virtual address space. All other addresses
  55. corresponding to code and data must currently use an identity mapping.
  56. Also, the only translation granule size supported in TF-A is 4KB, as various
  57. parts of the code assume that is the case. It is not possible to switch to
  58. 16 KB or 64 KB granule sizes at the moment.
  59. In Arm standard platforms, each BL stage configures the MMU in the
  60. platform-specific architecture setup function, ``blX_plat_arch_setup()``, and uses
  61. an identity mapping for all addresses.
  62. If the build option ``USE_COHERENT_MEM`` is enabled, each platform can allocate a
  63. block of identity mapped secure memory with Device-nGnRE attributes aligned to
  64. page boundary (4K) for each BL stage. All sections which allocate coherent
  65. memory are grouped under ``.coherent_ram``. For ex: Bakery locks are placed in a
  66. section identified by name ``.bakery_lock`` inside ``.coherent_ram`` so that its
  67. possible for the firmware to place variables in it using the following C code
  68. directive:
  69. ::
  70. __section(".bakery_lock")
  71. Or alternatively the following assembler code directive:
  72. ::
  73. .section .bakery_lock
  74. The ``.coherent_ram`` section is a sum of all sections like ``.bakery_lock`` which are
  75. used to allocate any data structures that are accessed both when a CPU is
  76. executing with its MMU and caches enabled, and when it's running with its MMU
  77. and caches disabled. Examples are given below.
  78. The following variables, functions and constants must be defined by the platform
  79. for the firmware to work correctly.
  80. .. _platform_def_mandatory:
  81. File : platform_def.h [mandatory]
  82. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  83. Each platform must ensure that a header file of this name is in the system
  84. include path with the following constants defined. This will require updating
  85. the list of ``PLAT_INCLUDES`` in the ``platform.mk`` file.
  86. Platform ports may optionally use the file ``include/plat/common/common_def.h``,
  87. which provides typical values for some of the constants below. These values are
  88. likely to be suitable for all platform ports.
  89. - **#define : PLATFORM_LINKER_FORMAT**
  90. Defines the linker format used by the platform, for example
  91. ``elf64-littleaarch64``.
  92. - **#define : PLATFORM_LINKER_ARCH**
  93. Defines the processor architecture for the linker by the platform, for
  94. example ``aarch64``.
  95. - **#define : PLATFORM_STACK_SIZE**
  96. Defines the normal stack memory available to each CPU. This constant is used
  97. by ``plat/common/aarch64/platform_mp_stack.S`` and
  98. ``plat/common/aarch64/platform_up_stack.S``.
  99. - **#define : CACHE_WRITEBACK_GRANULE**
  100. Defines the size in bytes of the largest cache line across all the cache
  101. levels in the platform.
  102. - **#define : FIRMWARE_WELCOME_STR**
  103. Defines the character string printed by BL1 upon entry into the ``bl1_main()``
  104. function.
  105. - **#define : PLATFORM_CORE_COUNT**
  106. Defines the total number of CPUs implemented by the platform across all
  107. clusters in the system.
  108. - **#define : PLAT_NUM_PWR_DOMAINS**
  109. Defines the total number of nodes in the power domain topology
  110. tree at all the power domain levels used by the platform.
  111. This macro is used by the PSCI implementation to allocate
  112. data structures to represent power domain topology.
  113. - **#define : PLAT_MAX_PWR_LVL**
  114. Defines the maximum power domain level that the power management operations
  115. should apply to. More often, but not always, the power domain level
  116. corresponds to affinity level. This macro allows the PSCI implementation
  117. to know the highest power domain level that it should consider for power
  118. management operations in the system that the platform implements. For
  119. example, the Base AEM FVP implements two clusters with a configurable
  120. number of CPUs and it reports the maximum power domain level as 1.
  121. - **#define : PLAT_MAX_OFF_STATE**
  122. Defines the local power state corresponding to the deepest power down
  123. possible at every power domain level in the platform. The local power
  124. states for each level may be sparsely allocated between 0 and this value
  125. with 0 being reserved for the RUN state. The PSCI implementation uses this
  126. value to initialize the local power states of the power domain nodes and
  127. to specify the requested power state for a PSCI_CPU_OFF call.
  128. - **#define : PLAT_MAX_RET_STATE**
  129. Defines the local power state corresponding to the deepest retention state
  130. possible at every power domain level in the platform. This macro should be
  131. a value less than PLAT_MAX_OFF_STATE and greater than 0. It is used by the
  132. PSCI implementation to distinguish between retention and power down local
  133. power states within PSCI_CPU_SUSPEND call.
  134. - **#define : PLAT_MAX_PWR_LVL_STATES**
  135. Defines the maximum number of local power states per power domain level
  136. that the platform supports. The default value of this macro is 2 since
  137. most platforms just support a maximum of two local power states at each
  138. power domain level (power-down and retention). If the platform needs to
  139. account for more local power states, then it must redefine this macro.
  140. Currently, this macro is used by the Generic PSCI implementation to size
  141. the array used for PSCI_STAT_COUNT/RESIDENCY accounting.
  142. - **#define : BL1_RO_BASE**
  143. Defines the base address in secure ROM where BL1 originally lives. Must be
  144. aligned on a page-size boundary.
  145. - **#define : BL1_RO_LIMIT**
  146. Defines the maximum address in secure ROM that BL1's actual content (i.e.
  147. excluding any data section allocated at runtime) can occupy.
  148. - **#define : BL1_RW_BASE**
  149. Defines the base address in secure RAM where BL1's read-write data will live
  150. at runtime. Must be aligned on a page-size boundary.
  151. - **#define : BL1_RW_LIMIT**
  152. Defines the maximum address in secure RAM that BL1's read-write data can
  153. occupy at runtime.
  154. - **#define : BL2_BASE**
  155. Defines the base address in secure RAM where BL1 loads the BL2 binary image.
  156. Must be aligned on a page-size boundary. This constant is not applicable
  157. when BL2_IN_XIP_MEM is set to '1'.
  158. - **#define : BL2_LIMIT**
  159. Defines the maximum address in secure RAM that the BL2 image can occupy.
  160. This constant is not applicable when BL2_IN_XIP_MEM is set to '1'.
  161. - **#define : BL2_RO_BASE**
  162. Defines the base address in secure XIP memory where BL2 RO section originally
  163. lives. Must be aligned on a page-size boundary. This constant is only needed
  164. when BL2_IN_XIP_MEM is set to '1'.
  165. - **#define : BL2_RO_LIMIT**
  166. Defines the maximum address in secure XIP memory that BL2's actual content
  167. (i.e. excluding any data section allocated at runtime) can occupy. This
  168. constant is only needed when BL2_IN_XIP_MEM is set to '1'.
  169. - **#define : BL2_RW_BASE**
  170. Defines the base address in secure RAM where BL2's read-write data will live
  171. at runtime. Must be aligned on a page-size boundary. This constant is only
  172. needed when BL2_IN_XIP_MEM is set to '1'.
  173. - **#define : BL2_RW_LIMIT**
  174. Defines the maximum address in secure RAM that BL2's read-write data can
  175. occupy at runtime. This constant is only needed when BL2_IN_XIP_MEM is set
  176. to '1'.
  177. - **#define : BL31_BASE**
  178. Defines the base address in secure RAM where BL2 loads the BL31 binary
  179. image. Must be aligned on a page-size boundary.
  180. - **#define : BL31_LIMIT**
  181. Defines the maximum address in secure RAM that the BL31 image can occupy.
  182. - **#define : PLAT_RSE_COMMS_PAYLOAD_MAX_SIZE**
  183. Defines the maximum message size between AP and RSE. Need to define if
  184. platform supports RSE.
  185. For every image, the platform must define individual identifiers that will be
  186. used by BL1 or BL2 to load the corresponding image into memory from non-volatile
  187. storage. For the sake of performance, integer numbers will be used as
  188. identifiers. The platform will use those identifiers to return the relevant
  189. information about the image to be loaded (file handler, load address,
  190. authentication information, etc.). The following image identifiers are
  191. mandatory:
  192. - **#define : BL2_IMAGE_ID**
  193. BL2 image identifier, used by BL1 to load BL2.
  194. - **#define : BL31_IMAGE_ID**
  195. BL31 image identifier, used by BL2 to load BL31.
  196. - **#define : BL33_IMAGE_ID**
  197. BL33 image identifier, used by BL2 to load BL33.
  198. If Trusted Board Boot is enabled, the following certificate identifiers must
  199. also be defined:
  200. - **#define : TRUSTED_BOOT_FW_CERT_ID**
  201. BL2 content certificate identifier, used by BL1 to load the BL2 content
  202. certificate.
  203. - **#define : TRUSTED_KEY_CERT_ID**
  204. Trusted key certificate identifier, used by BL2 to load the trusted key
  205. certificate.
  206. - **#define : SOC_FW_KEY_CERT_ID**
  207. BL31 key certificate identifier, used by BL2 to load the BL31 key
  208. certificate.
  209. - **#define : SOC_FW_CONTENT_CERT_ID**
  210. BL31 content certificate identifier, used by BL2 to load the BL31 content
  211. certificate.
  212. - **#define : NON_TRUSTED_FW_KEY_CERT_ID**
  213. BL33 key certificate identifier, used by BL2 to load the BL33 key
  214. certificate.
  215. - **#define : NON_TRUSTED_FW_CONTENT_CERT_ID**
  216. BL33 content certificate identifier, used by BL2 to load the BL33 content
  217. certificate.
  218. - **#define : FWU_CERT_ID**
  219. Firmware Update (FWU) certificate identifier, used by NS_BL1U to load the
  220. FWU content certificate.
  221. If the AP Firmware Updater Configuration image, BL2U is used, the following
  222. must also be defined:
  223. - **#define : BL2U_BASE**
  224. Defines the base address in secure memory where BL1 copies the BL2U binary
  225. image. Must be aligned on a page-size boundary.
  226. - **#define : BL2U_LIMIT**
  227. Defines the maximum address in secure memory that the BL2U image can occupy.
  228. - **#define : BL2U_IMAGE_ID**
  229. BL2U image identifier, used by BL1 to fetch an image descriptor
  230. corresponding to BL2U.
  231. If the SCP Firmware Update Configuration Image, SCP_BL2U is used, the following
  232. must also be defined:
  233. - **#define : SCP_BL2U_IMAGE_ID**
  234. SCP_BL2U image identifier, used by BL1 to fetch an image descriptor
  235. corresponding to SCP_BL2U.
  236. .. note::
  237. TF-A does not provide source code for this image.
  238. If the Non-Secure Firmware Updater ROM, NS_BL1U is used, the following must
  239. also be defined:
  240. - **#define : NS_BL1U_BASE**
  241. Defines the base address in non-secure ROM where NS_BL1U executes.
  242. Must be aligned on a page-size boundary.
  243. .. note::
  244. TF-A does not provide source code for this image.
  245. - **#define : NS_BL1U_IMAGE_ID**
  246. NS_BL1U image identifier, used by BL1 to fetch an image descriptor
  247. corresponding to NS_BL1U.
  248. If the Non-Secure Firmware Updater, NS_BL2U is used, the following must also
  249. be defined:
  250. - **#define : NS_BL2U_BASE**
  251. Defines the base address in non-secure memory where NS_BL2U executes.
  252. Must be aligned on a page-size boundary.
  253. .. note::
  254. TF-A does not provide source code for this image.
  255. - **#define : NS_BL2U_IMAGE_ID**
  256. NS_BL2U image identifier, used by BL1 to fetch an image descriptor
  257. corresponding to NS_BL2U.
  258. For the the Firmware update capability of TRUSTED BOARD BOOT, the following
  259. macros may also be defined:
  260. - **#define : PLAT_FWU_MAX_SIMULTANEOUS_IMAGES**
  261. Total number of images that can be loaded simultaneously. If the platform
  262. doesn't specify any value, it defaults to 10.
  263. If a SCP_BL2 image is supported by the platform, the following constants must
  264. also be defined:
  265. - **#define : SCP_BL2_IMAGE_ID**
  266. SCP_BL2 image identifier, used by BL2 to load SCP_BL2 into secure memory
  267. from platform storage before being transferred to the SCP.
  268. - **#define : SCP_FW_KEY_CERT_ID**
  269. SCP_BL2 key certificate identifier, used by BL2 to load the SCP_BL2 key
  270. certificate (mandatory when Trusted Board Boot is enabled).
  271. - **#define : SCP_FW_CONTENT_CERT_ID**
  272. SCP_BL2 content certificate identifier, used by BL2 to load the SCP_BL2
  273. content certificate (mandatory when Trusted Board Boot is enabled).
  274. If a BL32 image is supported by the platform, the following constants must
  275. also be defined:
  276. - **#define : BL32_IMAGE_ID**
  277. BL32 image identifier, used by BL2 to load BL32.
  278. - **#define : TRUSTED_OS_FW_KEY_CERT_ID**
  279. BL32 key certificate identifier, used by BL2 to load the BL32 key
  280. certificate (mandatory when Trusted Board Boot is enabled).
  281. - **#define : TRUSTED_OS_FW_CONTENT_CERT_ID**
  282. BL32 content certificate identifier, used by BL2 to load the BL32 content
  283. certificate (mandatory when Trusted Board Boot is enabled).
  284. - **#define : BL32_BASE**
  285. Defines the base address in secure memory where BL2 loads the BL32 binary
  286. image. Must be aligned on a page-size boundary.
  287. - **#define : BL32_LIMIT**
  288. Defines the maximum address that the BL32 image can occupy.
  289. If the Test Secure-EL1 Payload (TSP) instantiation of BL32 is supported by the
  290. platform, the following constants must also be defined:
  291. - **#define : TSP_SEC_MEM_BASE**
  292. Defines the base address of the secure memory used by the TSP image on the
  293. platform. This must be at the same address or below ``BL32_BASE``.
  294. - **#define : TSP_SEC_MEM_SIZE**
  295. Defines the size of the secure memory used by the BL32 image on the
  296. platform. ``TSP_SEC_MEM_BASE`` and ``TSP_SEC_MEM_SIZE`` must fully
  297. accommodate the memory required by the BL32 image, defined by ``BL32_BASE``
  298. and ``BL32_LIMIT``.
  299. - **#define : TSP_IRQ_SEC_PHY_TIMER**
  300. Defines the ID of the secure physical generic timer interrupt used by the
  301. TSP's interrupt handling code.
  302. If the platform port uses the translation table library code, the following
  303. constants must also be defined:
  304. - **#define : PLAT_XLAT_TABLES_DYNAMIC**
  305. Optional flag that can be set per-image to enable the dynamic allocation of
  306. regions even when the MMU is enabled. If not defined, only static
  307. functionality will be available, if defined and set to 1 it will also
  308. include the dynamic functionality.
  309. - **#define : MAX_XLAT_TABLES**
  310. Defines the maximum number of translation tables that are allocated by the
  311. translation table library code. To minimize the amount of runtime memory
  312. used, choose the smallest value needed to map the required virtual addresses
  313. for each BL stage. If ``PLAT_XLAT_TABLES_DYNAMIC`` flag is enabled for a BL
  314. image, ``MAX_XLAT_TABLES`` must be defined to accommodate the dynamic regions
  315. as well.
  316. - **#define : MAX_MMAP_REGIONS**
  317. Defines the maximum number of regions that are allocated by the translation
  318. table library code. A region consists of physical base address, virtual base
  319. address, size and attributes (Device/Memory, RO/RW, Secure/Non-Secure), as
  320. defined in the ``mmap_region_t`` structure. The platform defines the regions
  321. that should be mapped. Then, the translation table library will create the
  322. corresponding tables and descriptors at runtime. To minimize the amount of
  323. runtime memory used, choose the smallest value needed to register the
  324. required regions for each BL stage. If ``PLAT_XLAT_TABLES_DYNAMIC`` flag is
  325. enabled for a BL image, ``MAX_MMAP_REGIONS`` must be defined to accommodate
  326. the dynamic regions as well.
  327. - **#define : PLAT_VIRT_ADDR_SPACE_SIZE**
  328. Defines the total size of the virtual address space in bytes. For example,
  329. for a 32 bit virtual address space, this value should be ``(1ULL << 32)``.
  330. - **#define : PLAT_PHY_ADDR_SPACE_SIZE**
  331. Defines the total size of the physical address space in bytes. For example,
  332. for a 32 bit physical address space, this value should be ``(1ULL << 32)``.
  333. If the platform port uses the IO storage framework, the following constants
  334. must also be defined:
  335. - **#define : MAX_IO_DEVICES**
  336. Defines the maximum number of registered IO devices. Attempting to register
  337. more devices than this value using ``io_register_device()`` will fail with
  338. -ENOMEM.
  339. - **#define : MAX_IO_HANDLES**
  340. Defines the maximum number of open IO handles. Attempting to open more IO
  341. entities than this value using ``io_open()`` will fail with -ENOMEM.
  342. - **#define : MAX_IO_BLOCK_DEVICES**
  343. Defines the maximum number of registered IO block devices. Attempting to
  344. register more devices this value using ``io_dev_open()`` will fail
  345. with -ENOMEM. MAX_IO_BLOCK_DEVICES should be less than MAX_IO_DEVICES.
  346. With this macro, multiple block devices could be supported at the same
  347. time.
  348. If the platform needs to allocate data within the per-cpu data framework in
  349. BL31, it should define the following macro. Currently this is only required if
  350. the platform decides not to use the coherent memory section by undefining the
  351. ``USE_COHERENT_MEM`` build flag. In this case, the framework allocates the
  352. required memory within the the per-cpu data to minimize wastage.
  353. - **#define : PLAT_PCPU_DATA_SIZE**
  354. Defines the memory (in bytes) to be reserved within the per-cpu data
  355. structure for use by the platform layer.
  356. The following constants are optional. They should be defined when the platform
  357. memory layout implies some image overlaying like in Arm standard platforms.
  358. - **#define : BL31_PROGBITS_LIMIT**
  359. Defines the maximum address in secure RAM that the BL31's progbits sections
  360. can occupy.
  361. - **#define : TSP_PROGBITS_LIMIT**
  362. Defines the maximum address that the TSP's progbits sections can occupy.
  363. If the platform supports OS-initiated mode, i.e. the build option
  364. ``PSCI_OS_INIT_MODE`` is enabled, and if the platform's maximum power domain
  365. level for PSCI_CPU_SUSPEND differs from ``PLAT_MAX_PWR_LVL``, the following
  366. constant must be defined.
  367. - **#define : PLAT_MAX_CPU_SUSPEND_PWR_LVL**
  368. Defines the maximum power domain level that PSCI_CPU_SUSPEND should apply to.
  369. If the platform port uses the PL061 GPIO driver, the following constant may
  370. optionally be defined:
  371. - **PLAT_PL061_MAX_GPIOS**
  372. Maximum number of GPIOs required by the platform. This allows control how
  373. much memory is allocated for PL061 GPIO controllers. The default value is
  374. #. $(eval $(call add_define,PLAT_PL061_MAX_GPIOS))
  375. If the platform port uses the partition driver, the following constant may
  376. optionally be defined:
  377. - **PLAT_PARTITION_MAX_ENTRIES**
  378. Maximum number of partition entries required by the platform. This allows
  379. control how much memory is allocated for partition entries. The default
  380. value is 128.
  381. For example, define the build flag in ``platform.mk``:
  382. PLAT_PARTITION_MAX_ENTRIES := 12
  383. $(eval $(call add_define,PLAT_PARTITION_MAX_ENTRIES))
  384. - **PLAT_PARTITION_BLOCK_SIZE**
  385. The size of partition block. It could be either 512 bytes or 4096 bytes.
  386. The default value is 512.
  387. For example, define the build flag in ``platform.mk``:
  388. PLAT_PARTITION_BLOCK_SIZE := 4096
  389. $(eval $(call add_define,PLAT_PARTITION_BLOCK_SIZE))
  390. If the platform port uses the Arm® Ethos™-N NPU driver, the following
  391. configuration must be performed:
  392. - The NPU SiP service handler must be hooked up. This consists of both the
  393. initial setup (``ethosn_smc_setup``) and the handler itself
  394. (``ethosn_smc_handler``)
  395. If the platform port uses the Arm® Ethos™-N NPU driver with TZMP1 support
  396. enabled, the following constants and configuration must also be defined:
  397. - **ETHOSN_NPU_PROT_FW_NSAID**
  398. Defines the Non-secure Access IDentity (NSAID) that the NPU shall use to
  399. access the protected memory that contains the NPU's firmware.
  400. - **ETHOSN_NPU_PROT_DATA_RW_NSAID**
  401. Defines the Non-secure Access IDentity (NSAID) that the NPU shall use for
  402. read/write access to the protected memory that contains inference data.
  403. - **ETHOSN_NPU_PROT_DATA_RO_NSAID**
  404. Defines the Non-secure Access IDentity (NSAID) that the NPU shall use for
  405. read-only access to the protected memory that contains inference data.
  406. - **ETHOSN_NPU_NS_RW_DATA_NSAID**
  407. Defines the Non-secure Access IDentity (NSAID) that the NPU shall use for
  408. read/write access to the non-protected memory.
  409. - **ETHOSN_NPU_NS_RO_DATA_NSAID**
  410. Defines the Non-secure Access IDentity (NSAID) that the NPU shall use for
  411. read-only access to the non-protected memory.
  412. - **ETHOSN_NPU_FW_IMAGE_BASE** and **ETHOSN_NPU_FW_IMAGE_LIMIT**
  413. Defines the physical address range that the NPU's firmware will be loaded
  414. into and executed from.
  415. - Configure the platforms TrustZone Controller (TZC) with appropriate regions
  416. of protected memory. At minimum this must include a region for the NPU's
  417. firmware code and a region for protected inference data, and these must be
  418. accessible using the NSAIDs defined above.
  419. - Include the NPU firmware and certificates in the FIP.
  420. - Provide FCONF entries to configure the image source for the NPU firmware
  421. and certificates.
  422. - Add MMU mappings such that:
  423. - BL2 can write the NPU firmware into the region defined by
  424. ``ETHOSN_NPU_FW_IMAGE_BASE`` and ``ETHOSN_NPU_FW_IMAGE_LIMIT``
  425. - BL31 (SiP service) can read the NPU firmware from the same region
  426. - Add the firmware image ID ``ETHOSN_NPU_FW_IMAGE_ID`` to the list of images
  427. loaded by BL2.
  428. Please see the reference implementation code for the Juno platform as an example.
  429. The following constant is optional. It should be defined to override the default
  430. behaviour of the ``assert()`` function (for example, to save memory).
  431. - **PLAT_LOG_LEVEL_ASSERT**
  432. If ``PLAT_LOG_LEVEL_ASSERT`` is higher or equal than ``LOG_LEVEL_VERBOSE``,
  433. ``assert()`` prints the name of the file, the line number and the asserted
  434. expression. Else if it is higher than ``LOG_LEVEL_INFO``, it prints the file
  435. name and the line number. Else if it is lower than ``LOG_LEVEL_INFO``, it
  436. doesn't print anything to the console. If ``PLAT_LOG_LEVEL_ASSERT`` isn't
  437. defined, it defaults to ``LOG_LEVEL``.
  438. If the platform port uses the DRTM feature, the following constants must be
  439. defined:
  440. - **#define : PLAT_DRTM_EVENT_LOG_MAX_SIZE**
  441. Maximum Event Log size used by the platform. Platform can decide the maximum
  442. size of the Event Log buffer, depending upon the highest hash algorithm
  443. chosen and the number of components selected to measure during the DRTM
  444. execution flow.
  445. - **#define : PLAT_DRTM_MMAP_ENTRIES**
  446. Number of the MMAP entries used by the DRTM implementation to calculate the
  447. size of address map region of the platform.
  448. File : plat_macros.S [mandatory]
  449. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  450. Each platform must ensure a file of this name is in the system include path with
  451. the following macro defined. In the Arm development platforms, this file is
  452. found in ``plat/arm/board/<plat_name>/include/plat_macros.S``.
  453. - **Macro : plat_crash_print_regs**
  454. This macro allows the crash reporting routine to print relevant platform
  455. registers in case of an unhandled exception in BL31. This aids in debugging
  456. and this macro can be defined to be empty in case register reporting is not
  457. desired.
  458. For instance, GIC or interconnect registers may be helpful for
  459. troubleshooting.
  460. Handling Reset
  461. --------------
  462. BL1 by default implements the reset vector where execution starts from a cold
  463. or warm boot. BL31 can be optionally set as a reset vector using the
  464. ``RESET_TO_BL31`` make variable.
  465. For each CPU, the reset vector code is responsible for the following tasks:
  466. #. Distinguishing between a cold boot and a warm boot.
  467. #. In the case of a cold boot and the CPU being a secondary CPU, ensuring that
  468. the CPU is placed in a platform-specific state until the primary CPU
  469. performs the necessary steps to remove it from this state.
  470. #. In the case of a warm boot, ensuring that the CPU jumps to a platform-
  471. specific address in the BL31 image in the same processor mode as it was
  472. when released from reset.
  473. The following functions need to be implemented by the platform port to enable
  474. reset vector code to perform the above tasks.
  475. Function : plat_get_my_entrypoint() [mandatory when PROGRAMMABLE_RESET_ADDRESS == 0]
  476. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  477. ::
  478. Argument : void
  479. Return : uintptr_t
  480. This function is called with the MMU and caches disabled
  481. (``SCTLR_EL3.M`` = 0 and ``SCTLR_EL3.C`` = 0). The function is responsible for
  482. distinguishing between a warm and cold reset for the current CPU using
  483. platform-specific means. If it's a warm reset, then it returns the warm
  484. reset entrypoint point provided to ``plat_setup_psci_ops()`` during
  485. BL31 initialization. If it's a cold reset then this function must return zero.
  486. This function does not follow the Procedure Call Standard used by the
  487. Application Binary Interface for the Arm 64-bit architecture. The caller should
  488. not assume that callee saved registers are preserved across a call to this
  489. function.
  490. This function fulfills requirement 1 and 3 listed above.
  491. Note that for platforms that support programming the reset address, it is
  492. expected that a CPU will start executing code directly at the right address,
  493. both on a cold and warm reset. In this case, there is no need to identify the
  494. type of reset nor to query the warm reset entrypoint. Therefore, implementing
  495. this function is not required on such platforms.
  496. Function : plat_secondary_cold_boot_setup() [mandatory when COLD_BOOT_SINGLE_CPU == 0]
  497. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  498. ::
  499. Argument : void
  500. This function is called with the MMU and data caches disabled. It is responsible
  501. for placing the executing secondary CPU in a platform-specific state until the
  502. primary CPU performs the necessary actions to bring it out of that state and
  503. allow entry into the OS. This function must not return.
  504. In the Arm FVP port, when using the normal boot flow, each secondary CPU powers
  505. itself off. The primary CPU is responsible for powering up the secondary CPUs
  506. when normal world software requires them. When booting an EL3 payload instead,
  507. they stay powered on and are put in a holding pen until their mailbox gets
  508. populated.
  509. This function fulfills requirement 2 above.
  510. Note that for platforms that can't release secondary CPUs out of reset, only the
  511. primary CPU will execute the cold boot code. Therefore, implementing this
  512. function is not required on such platforms.
  513. Function : plat_is_my_cpu_primary() [mandatory when COLD_BOOT_SINGLE_CPU == 0]
  514. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  515. ::
  516. Argument : void
  517. Return : unsigned int
  518. This function identifies whether the current CPU is the primary CPU or a
  519. secondary CPU. A return value of zero indicates that the CPU is not the
  520. primary CPU, while a non-zero return value indicates that the CPU is the
  521. primary CPU.
  522. Note that for platforms that can't release secondary CPUs out of reset, only the
  523. primary CPU will execute the cold boot code. Therefore, there is no need to
  524. distinguish between primary and secondary CPUs and implementing this function is
  525. not required.
  526. Function : platform_mem_init() [mandatory]
  527. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  528. ::
  529. Argument : void
  530. Return : void
  531. This function is called before any access to data is made by the firmware, in
  532. order to carry out any essential memory initialization.
  533. Function: plat_get_rotpk_info()
  534. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  535. ::
  536. Argument : void *, void **, unsigned int *, unsigned int *
  537. Return : int
  538. This function is mandatory when Trusted Board Boot is enabled. It returns a
  539. pointer to the ROTPK stored in the platform (or a hash of it) and its length.
  540. The ROTPK must be encoded in DER format according to the following ASN.1
  541. structure:
  542. ::
  543. AlgorithmIdentifier ::= SEQUENCE {
  544. algorithm OBJECT IDENTIFIER,
  545. parameters ANY DEFINED BY algorithm OPTIONAL
  546. }
  547. SubjectPublicKeyInfo ::= SEQUENCE {
  548. algorithm AlgorithmIdentifier,
  549. subjectPublicKey BIT STRING
  550. }
  551. In case the function returns a hash of the key:
  552. ::
  553. DigestInfo ::= SEQUENCE {
  554. digestAlgorithm AlgorithmIdentifier,
  555. digest OCTET STRING
  556. }
  557. The function returns 0 on success. Any other value is treated as error by the
  558. Trusted Board Boot. The function also reports extra information related
  559. to the ROTPK in the flags parameter:
  560. ::
  561. ROTPK_IS_HASH : Indicates that the ROTPK returned by the platform is a
  562. hash.
  563. ROTPK_NOT_DEPLOYED : This allows the platform to skip certificate ROTPK
  564. verification while the platform ROTPK is not deployed.
  565. When this flag is set, the function does not need to
  566. return a platform ROTPK, and the authentication
  567. framework uses the ROTPK in the certificate without
  568. verifying it against the platform value. This flag
  569. must not be used in a deployed production environment.
  570. Function: plat_get_nv_ctr()
  571. ~~~~~~~~~~~~~~~~~~~~~~~~~~~
  572. ::
  573. Argument : void *, unsigned int *
  574. Return : int
  575. This function is mandatory when Trusted Board Boot is enabled. It returns the
  576. non-volatile counter value stored in the platform in the second argument. The
  577. cookie in the first argument may be used to select the counter in case the
  578. platform provides more than one (for example, on platforms that use the default
  579. TBBR CoT, the cookie will correspond to the OID values defined in
  580. TRUSTED_FW_NVCOUNTER_OID or NON_TRUSTED_FW_NVCOUNTER_OID).
  581. The function returns 0 on success. Any other value means the counter value could
  582. not be retrieved from the platform.
  583. Function: plat_set_nv_ctr()
  584. ~~~~~~~~~~~~~~~~~~~~~~~~~~~
  585. ::
  586. Argument : void *, unsigned int
  587. Return : int
  588. This function is mandatory when Trusted Board Boot is enabled. It sets a new
  589. counter value in the platform. The cookie in the first argument may be used to
  590. select the counter (as explained in plat_get_nv_ctr()). The second argument is
  591. the updated counter value to be written to the NV counter.
  592. The function returns 0 on success. Any other value means the counter value could
  593. not be updated.
  594. Function: plat_set_nv_ctr2()
  595. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  596. ::
  597. Argument : void *, const auth_img_desc_t *, unsigned int
  598. Return : int
  599. This function is optional when Trusted Board Boot is enabled. If this
  600. interface is defined, then ``plat_set_nv_ctr()`` need not be defined. The
  601. first argument passed is a cookie and is typically used to
  602. differentiate between a Non Trusted NV Counter and a Trusted NV
  603. Counter. The second argument is a pointer to an authentication image
  604. descriptor and may be used to decide if the counter is allowed to be
  605. updated or not. The third argument is the updated counter value to
  606. be written to the NV counter.
  607. The function returns 0 on success. Any other value means the counter value
  608. either could not be updated or the authentication image descriptor indicates
  609. that it is not allowed to be updated.
  610. Dynamic Root of Trust for Measurement support (in BL31)
  611. -------------------------------------------------------
  612. The functions mentioned in this section are mandatory, when platform enables
  613. DRTM_SUPPORT build flag.
  614. Function : plat_get_addr_mmap()
  615. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  616. ::
  617. Argument : void
  618. Return : const mmap_region_t *
  619. This function is used to return the address of the platform *address-map* table,
  620. which describes the regions of normal memory, memory mapped I/O
  621. and non-volatile memory.
  622. Function : plat_has_non_host_platforms()
  623. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  624. ::
  625. Argument : void
  626. Return : bool
  627. This function returns *true* if the platform has any trusted devices capable of
  628. DMA, otherwise returns *false*.
  629. Function : plat_has_unmanaged_dma_peripherals()
  630. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  631. ::
  632. Argument : void
  633. Return : bool
  634. This function returns *true* if platform uses peripherals whose DMA is not
  635. managed by an SMMU, otherwise returns *false*.
  636. Note -
  637. If the platform has peripherals that are not managed by the SMMU, then the
  638. platform should investigate such peripherals to determine whether they can
  639. be trusted, and such peripherals should be moved under "Non-host platforms"
  640. if they can be trusted.
  641. Function : plat_get_total_num_smmus()
  642. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  643. ::
  644. Argument : void
  645. Return : unsigned int
  646. This function returns the total number of SMMUs in the platform.
  647. Function : plat_enumerate_smmus()
  648. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  649. ::
  650. Argument : void
  651. Return : const uintptr_t *, size_t
  652. This function returns an array of SMMU addresses and the actual number of SMMUs
  653. reported by the platform.
  654. Function : plat_drtm_get_dma_prot_features()
  655. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  656. ::
  657. Argument : void
  658. Return : const plat_drtm_dma_prot_features_t*
  659. This function returns the address of plat_drtm_dma_prot_features_t structure
  660. containing the maximum number of protected regions and bitmap with the types
  661. of DMA protection supported by the platform.
  662. For more details see section 3.3 Table 6 of `DRTM`_ specification.
  663. Function : plat_drtm_dma_prot_get_max_table_bytes()
  664. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  665. ::
  666. Argument : void
  667. Return : uint64_t
  668. This function returns the maximum size of DMA protected regions table in
  669. bytes.
  670. Function : plat_drtm_get_tpm_features()
  671. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  672. ::
  673. Argument : void
  674. Return : const plat_drtm_tpm_features_t*
  675. This function returns the address of *plat_drtm_tpm_features_t* structure
  676. containing PCR usage schema, TPM-based hash, and firmware hash algorithm
  677. supported by the platform.
  678. Function : plat_drtm_get_min_size_normal_world_dce()
  679. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  680. ::
  681. Argument : void
  682. Return : uint64_t
  683. This function returns the size normal-world DCE of the platform.
  684. Function : plat_drtm_get_imp_def_dlme_region_size()
  685. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  686. ::
  687. Argument : void
  688. Return : uint64_t
  689. This function returns the size of implementation defined DLME region
  690. of the platform.
  691. Function : plat_drtm_get_tcb_hash_table_size()
  692. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  693. ::
  694. Argument : void
  695. Return : uint64_t
  696. This function returns the size of TCB hash table of the platform.
  697. Function : plat_drtm_get_tcb_hash_features()
  698. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  699. ::
  700. Argument : void
  701. Return : uint64_t
  702. This function returns the Maximum number of TCB hashes recorded by the
  703. platform.
  704. For more details see section 3.3 Table 6 of `DRTM`_ specification.
  705. Function : plat_drtm_validate_ns_region()
  706. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  707. ::
  708. Argument : uintptr_t, uintptr_t
  709. Return : int
  710. This function validates that given region is within the Non-Secure region
  711. of DRAM. This function takes a region start address and size an input
  712. arguments, and returns 0 on success and -1 on failure.
  713. Function : plat_set_drtm_error()
  714. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  715. ::
  716. Argument : uint64_t
  717. Return : int
  718. This function writes a 64 bit error code received as input into
  719. non-volatile storage and returns 0 on success and -1 on failure.
  720. Function : plat_get_drtm_error()
  721. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  722. ::
  723. Argument : uint64_t*
  724. Return : int
  725. This function reads a 64 bit error code from the non-volatile storage
  726. into the received address, and returns 0 on success and -1 on failure.
  727. Common mandatory function modifications
  728. ---------------------------------------
  729. The following functions are mandatory functions which need to be implemented
  730. by the platform port.
  731. Function : plat_my_core_pos()
  732. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  733. ::
  734. Argument : void
  735. Return : unsigned int
  736. This function returns the index of the calling CPU which is used as a
  737. CPU-specific linear index into blocks of memory (for example while allocating
  738. per-CPU stacks). This function will be invoked very early in the
  739. initialization sequence which mandates that this function should be
  740. implemented in assembly and should not rely on the availability of a C
  741. runtime environment. This function can clobber x0 - x8 and must preserve
  742. x9 - x29.
  743. This function plays a crucial role in the power domain topology framework in
  744. PSCI and details of this can be found in
  745. :ref:`PSCI Power Domain Tree Structure`.
  746. Function : plat_core_pos_by_mpidr()
  747. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  748. ::
  749. Argument : u_register_t
  750. Return : int
  751. This function validates the ``MPIDR`` of a CPU and converts it to an index,
  752. which can be used as a CPU-specific linear index into blocks of memory. In
  753. case the ``MPIDR`` is invalid, this function returns -1. This function will only
  754. be invoked by BL31 after the power domain topology is initialized and can
  755. utilize the C runtime environment. For further details about how TF-A
  756. represents the power domain topology and how this relates to the linear CPU
  757. index, please refer :ref:`PSCI Power Domain Tree Structure`.
  758. Function : plat_get_mbedtls_heap() [when TRUSTED_BOARD_BOOT == 1]
  759. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  760. ::
  761. Arguments : void **heap_addr, size_t *heap_size
  762. Return : int
  763. This function is invoked during Mbed TLS library initialisation to get a heap,
  764. by means of a starting address and a size. This heap will then be used
  765. internally by the Mbed TLS library. Hence, each BL stage that utilises Mbed TLS
  766. must be able to provide a heap to it.
  767. A helper function can be found in `drivers/auth/mbedtls/mbedtls_common.c` in
  768. which a heap is statically reserved during compile time inside every image
  769. (i.e. every BL stage) that utilises Mbed TLS. In this default implementation,
  770. the function simply returns the address and size of this "pre-allocated" heap.
  771. For a platform to use this default implementation, only a call to the helper
  772. from inside plat_get_mbedtls_heap() body is enough and nothing else is needed.
  773. However, by writting their own implementation, platforms have the potential to
  774. optimise memory usage. For example, on some Arm platforms, the Mbed TLS heap is
  775. shared between BL1 and BL2 stages and, thus, the necessary space is not reserved
  776. twice.
  777. On success the function should return 0 and a negative error code otherwise.
  778. Function : plat_get_enc_key_info() [when FW_ENC_STATUS == 0 or 1]
  779. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  780. ::
  781. Arguments : enum fw_enc_status_t fw_enc_status, uint8_t *key,
  782. size_t *key_len, unsigned int *flags, const uint8_t *img_id,
  783. size_t img_id_len
  784. Return : int
  785. This function provides a symmetric key (either SSK or BSSK depending on
  786. fw_enc_status) which is invoked during runtime decryption of encrypted
  787. firmware images. `plat/common/plat_bl_common.c` provides a dummy weak
  788. implementation for testing purposes which must be overridden by the platform
  789. trying to implement a real world firmware encryption use-case.
  790. It also allows the platform to pass symmetric key identifier rather than
  791. actual symmetric key which is useful in cases where the crypto backend provides
  792. secure storage for the symmetric key. So in this case ``ENC_KEY_IS_IDENTIFIER``
  793. flag must be set in ``flags``.
  794. In addition to above a platform may also choose to provide an image specific
  795. symmetric key/identifier using img_id.
  796. On success the function should return 0 and a negative error code otherwise.
  797. Note that this API depends on ``DECRYPTION_SUPPORT`` build flag.
  798. Function : plat_fwu_set_images_source() [when PSA_FWU_SUPPORT == 1]
  799. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  800. ::
  801. Argument : const struct fwu_metadata *metadata
  802. Return : void
  803. This function is mandatory when PSA_FWU_SUPPORT is enabled.
  804. It provides a means to retrieve image specification (offset in
  805. non-volatile storage and length) of active/updated images using the passed
  806. FWU metadata, and update I/O policies of active/updated images using retrieved
  807. image specification information.
  808. Further I/O layer operations such as I/O open, I/O read, etc. on these
  809. images rely on this function call.
  810. In Arm platforms, this function is used to set an I/O policy of the FIP image,
  811. container of all active/updated secure and non-secure images.
  812. Function : plat_fwu_set_metadata_image_source() [when PSA_FWU_SUPPORT == 1]
  813. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  814. ::
  815. Argument : unsigned int image_id, uintptr_t *dev_handle,
  816. uintptr_t *image_spec
  817. Return : int
  818. This function is mandatory when PSA_FWU_SUPPORT is enabled. It is
  819. responsible for setting up the platform I/O policy of the requested metadata
  820. image (either FWU_METADATA_IMAGE_ID or BKUP_FWU_METADATA_IMAGE_ID) that will
  821. be used to load this image from the platform's non-volatile storage.
  822. FWU metadata can not be always stored as a raw image in non-volatile storage
  823. to define its image specification (offset in non-volatile storage and length)
  824. statically in I/O policy.
  825. For example, the FWU metadata image is stored as a partition inside the GUID
  826. partition table image. Its specification is defined in the partition table
  827. that needs to be parsed dynamically.
  828. This function provides a means to retrieve such dynamic information to set
  829. the I/O policy of the FWU metadata image.
  830. Further I/O layer operations such as I/O open, I/O read, etc. on FWU metadata
  831. image relies on this function call.
  832. It returns '0' on success, otherwise a negative error value on error.
  833. Alongside, returns device handle and image specification from the I/O policy
  834. of the requested FWU metadata image.
  835. Function : plat_fwu_get_boot_idx() [when PSA_FWU_SUPPORT == 1]
  836. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  837. ::
  838. Argument : void
  839. Return : uint32_t
  840. This function is mandatory when PSA_FWU_SUPPORT is enabled. It provides the
  841. means to retrieve the boot index value from the platform. The boot index is the
  842. bank from which the platform has booted the firmware images.
  843. By default, the platform will read the metadata structure and try to boot from
  844. the active bank. If the platform fails to boot from the active bank due to
  845. reasons like an Authentication failure, or on crossing a set number of watchdog
  846. resets while booting from the active bank, the platform can then switch to boot
  847. from a different bank. This function then returns the bank that the platform
  848. should boot its images from.
  849. Common optional modifications
  850. -----------------------------
  851. The following are helper functions implemented by the firmware that perform
  852. common platform-specific tasks. A platform may choose to override these
  853. definitions.
  854. Function : plat_set_my_stack()
  855. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  856. ::
  857. Argument : void
  858. Return : void
  859. This function sets the current stack pointer to the normal memory stack that
  860. has been allocated for the current CPU. For BL images that only require a
  861. stack for the primary CPU, the UP version of the function is used. The size
  862. of the stack allocated to each CPU is specified by the platform defined
  863. constant ``PLATFORM_STACK_SIZE``.
  864. Common implementations of this function for the UP and MP BL images are
  865. provided in ``plat/common/aarch64/platform_up_stack.S`` and
  866. ``plat/common/aarch64/platform_mp_stack.S``
  867. Function : plat_get_my_stack()
  868. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  869. ::
  870. Argument : void
  871. Return : uintptr_t
  872. This function returns the base address of the normal memory stack that
  873. has been allocated for the current CPU. For BL images that only require a
  874. stack for the primary CPU, the UP version of the function is used. The size
  875. of the stack allocated to each CPU is specified by the platform defined
  876. constant ``PLATFORM_STACK_SIZE``.
  877. Common implementations of this function for the UP and MP BL images are
  878. provided in ``plat/common/aarch64/platform_up_stack.S`` and
  879. ``plat/common/aarch64/platform_mp_stack.S``
  880. Function : plat_report_exception()
  881. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  882. ::
  883. Argument : unsigned int
  884. Return : void
  885. A platform may need to report various information about its status when an
  886. exception is taken, for example the current exception level, the CPU security
  887. state (secure/non-secure), the exception type, and so on. This function is
  888. called in the following circumstances:
  889. - In BL1, whenever an exception is taken.
  890. - In BL2, whenever an exception is taken.
  891. The default implementation doesn't do anything, to avoid making assumptions
  892. about the way the platform displays its status information.
  893. For AArch64, this function receives the exception type as its argument.
  894. Possible values for exceptions types are listed in the
  895. ``include/common/bl_common.h`` header file. Note that these constants are not
  896. related to any architectural exception code; they are just a TF-A convention.
  897. For AArch32, this function receives the exception mode as its argument.
  898. Possible values for exception modes are listed in the
  899. ``include/lib/aarch32/arch.h`` header file.
  900. Function : plat_reset_handler()
  901. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  902. ::
  903. Argument : void
  904. Return : void
  905. A platform may need to do additional initialization after reset. This function
  906. allows the platform to do the platform specific initializations. Platform
  907. specific errata workarounds could also be implemented here. The API should
  908. preserve the values of callee saved registers x19 to x29.
  909. The default implementation doesn't do anything. If a platform needs to override
  910. the default implementation, refer to the :ref:`Firmware Design` for general
  911. guidelines.
  912. Function : plat_disable_acp()
  913. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  914. ::
  915. Argument : void
  916. Return : void
  917. This API allows a platform to disable the Accelerator Coherency Port (if
  918. present) during a cluster power down sequence. The default weak implementation
  919. doesn't do anything. Since this API is called during the power down sequence,
  920. it has restrictions for stack usage and it can use the registers x0 - x17 as
  921. scratch registers. It should preserve the value in x18 register as it is used
  922. by the caller to store the return address.
  923. Function : plat_error_handler()
  924. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  925. ::
  926. Argument : int
  927. Return : void
  928. This API is called when the generic code encounters an error situation from
  929. which it cannot continue. It allows the platform to perform error reporting or
  930. recovery actions (for example, reset the system). This function must not return.
  931. The parameter indicates the type of error using standard codes from ``errno.h``.
  932. Possible errors reported by the generic code are:
  933. - ``-EAUTH``: a certificate or image could not be authenticated (when Trusted
  934. Board Boot is enabled)
  935. - ``-ENOENT``: the requested image or certificate could not be found or an IO
  936. error was detected
  937. - ``-ENOMEM``: resources exhausted. TF-A does not use dynamic memory, so this
  938. error is usually an indication of an incorrect array size
  939. The default implementation simply spins.
  940. Function : plat_panic_handler()
  941. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  942. ::
  943. Argument : void
  944. Return : void
  945. This API is called when the generic code encounters an unexpected error
  946. situation from which it cannot recover. This function must not return,
  947. and must be implemented in assembly because it may be called before the C
  948. environment is initialized.
  949. .. note::
  950. The address from where it was called is stored in x30 (Link Register).
  951. The default implementation simply spins.
  952. Function : plat_system_reset()
  953. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  954. ::
  955. Argument : void
  956. Return : void
  957. This function is used by the platform to resets the system. It can be used
  958. in any specific use-case where system needs to be resetted. For example,
  959. in case of DRTM implementation this function reset the system after
  960. writing the DRTM error code in the non-volatile storage. This function
  961. never returns. Failure in reset results in panic.
  962. Function : plat_get_bl_image_load_info()
  963. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  964. ::
  965. Argument : void
  966. Return : bl_load_info_t *
  967. This function returns pointer to the list of images that the platform has
  968. populated to load. This function is invoked in BL2 to load the
  969. BL3xx images.
  970. Function : plat_get_next_bl_params()
  971. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  972. ::
  973. Argument : void
  974. Return : bl_params_t *
  975. This function returns a pointer to the shared memory that the platform has
  976. kept aside to pass TF-A related information that next BL image needs. This
  977. function is invoked in BL2 to pass this information to the next BL
  978. image.
  979. Function : plat_get_stack_protector_canary()
  980. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  981. ::
  982. Argument : void
  983. Return : u_register_t
  984. This function returns a random value that is used to initialize the canary used
  985. when the stack protector is enabled with ENABLE_STACK_PROTECTOR. A predictable
  986. value will weaken the protection as the attacker could easily write the right
  987. value as part of the attack most of the time. Therefore, it should return a
  988. true random number.
  989. .. warning::
  990. For the protection to be effective, the global data need to be placed at
  991. a lower address than the stack bases. Failure to do so would allow an
  992. attacker to overwrite the canary as part of the stack buffer overflow attack.
  993. Function : plat_flush_next_bl_params()
  994. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  995. ::
  996. Argument : void
  997. Return : void
  998. This function flushes to main memory all the image params that are passed to
  999. next image. This function is invoked in BL2 to flush this information
  1000. to the next BL image.
  1001. Function : plat_log_get_prefix()
  1002. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  1003. ::
  1004. Argument : unsigned int
  1005. Return : const char *
  1006. This function defines the prefix string corresponding to the `log_level` to be
  1007. prepended to all the log output from TF-A. The `log_level` (argument) will
  1008. correspond to one of the standard log levels defined in debug.h. The platform
  1009. can override the common implementation to define a different prefix string for
  1010. the log output. The implementation should be robust to future changes that
  1011. increase the number of log levels.
  1012. Function : plat_get_soc_version()
  1013. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  1014. ::
  1015. Argument : void
  1016. Return : int32_t
  1017. This function returns soc version which mainly consist of below fields
  1018. ::
  1019. soc_version[30:24] = JEP-106 continuation code for the SiP
  1020. soc_version[23:16] = JEP-106 identification code with parity bit for the SiP
  1021. soc_version[15:0] = Implementation defined SoC ID
  1022. Function : plat_get_soc_revision()
  1023. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  1024. ::
  1025. Argument : void
  1026. Return : int32_t
  1027. This function returns soc revision in below format
  1028. ::
  1029. soc_revision[0:30] = SOC revision of specific SOC
  1030. Function : plat_is_smccc_feature_available()
  1031. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  1032. ::
  1033. Argument : u_register_t
  1034. Return : int32_t
  1035. This function returns SMC_ARCH_CALL_SUCCESS if the platform supports
  1036. the SMCCC function specified in the argument; otherwise returns
  1037. SMC_ARCH_CALL_NOT_SUPPORTED.
  1038. Function : plat_can_cmo()
  1039. ~~~~~~~~~~~~~~~~~~~~~~~~~
  1040. ::
  1041. Argument : void
  1042. Return : uint64_t
  1043. When CONDITIONAL_CMO flag is enabled:
  1044. - This function indicates whether cache management operations should be
  1045. performed. It returns 0 if CMOs should be skipped and non-zero
  1046. otherwise.
  1047. - The function must not clobber x1, x2 and x3. It's also not safe to rely on
  1048. stack. Otherwise obey AAPCS.
  1049. Struct: plat_try_images_ops [optional]
  1050. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  1051. This optional structure holds platform hooks for alternative images load.
  1052. It has to be defined in platform code and registered by calling
  1053. plat_setup_try_img_ops() function, passing it the address of the
  1054. plat_try_images_ops struct.
  1055. Function : plat_setup_try_img_ops [optional]
  1056. ............................................
  1057. ::
  1058. Argument : const struct plat_try_images_ops *
  1059. Return : void
  1060. This optional function is called to register platform try images ops, given
  1061. as argument.
  1062. Function : plat_try_images_ops.next_instance [optional]
  1063. .......................................................
  1064. ::
  1065. Argument : unsigned int image_id
  1066. Return : int
  1067. This optional function tries to load images from alternative places.
  1068. In case PSA FWU is not used, it can be any instance or media. If PSA FWU is
  1069. used, it is mandatory that the backup image is on the same media.
  1070. This is required for MTD devices like NAND.
  1071. The argument is the ID of the image for which we are looking for an alternative
  1072. place. It returns 0 in case of success and a negative errno value otherwise.
  1073. Modifications specific to a Boot Loader stage
  1074. ---------------------------------------------
  1075. Boot Loader Stage 1 (BL1)
  1076. -------------------------
  1077. BL1 implements the reset vector where execution starts from after a cold or
  1078. warm boot. For each CPU, BL1 is responsible for the following tasks:
  1079. #. Handling the reset as described in section 2.2
  1080. #. In the case of a cold boot and the CPU being the primary CPU, ensuring that
  1081. only this CPU executes the remaining BL1 code, including loading and passing
  1082. control to the BL2 stage.
  1083. #. Identifying and starting the Firmware Update process (if required).
  1084. #. Loading the BL2 image from non-volatile storage into secure memory at the
  1085. address specified by the platform defined constant ``BL2_BASE``.
  1086. #. Populating a ``meminfo`` structure with the following information in memory,
  1087. accessible by BL2 immediately upon entry.
  1088. ::
  1089. meminfo.total_base = Base address of secure RAM visible to BL2
  1090. meminfo.total_size = Size of secure RAM visible to BL2
  1091. By default, BL1 places this ``meminfo`` structure at the end of secure
  1092. memory visible to BL2.
  1093. It is possible for the platform to decide where it wants to place the
  1094. ``meminfo`` structure for BL2 or restrict the amount of memory visible to
  1095. BL2 by overriding the weak default implementation of
  1096. ``bl1_plat_handle_post_image_load`` API.
  1097. The following functions need to be implemented by the platform port to enable
  1098. BL1 to perform the above tasks.
  1099. Function : bl1_early_platform_setup() [mandatory]
  1100. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  1101. ::
  1102. Argument : void
  1103. Return : void
  1104. This function executes with the MMU and data caches disabled. It is only called
  1105. by the primary CPU.
  1106. On Arm standard platforms, this function:
  1107. - Enables a secure instance of SP805 to act as the Trusted Watchdog.
  1108. - Initializes a UART (PL011 console), which enables access to the ``printf``
  1109. family of functions in BL1.
  1110. - Enables issuing of snoop and DVM (Distributed Virtual Memory) requests to
  1111. the CCI slave interface corresponding to the cluster that includes the
  1112. primary CPU.
  1113. Function : bl1_plat_arch_setup() [mandatory]
  1114. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  1115. ::
  1116. Argument : void
  1117. Return : void
  1118. This function performs any platform-specific and architectural setup that the
  1119. platform requires. Platform-specific setup might include configuration of
  1120. memory controllers and the interconnect.
  1121. In Arm standard platforms, this function enables the MMU.
  1122. This function helps fulfill requirement 2 above.
  1123. Function : bl1_platform_setup() [mandatory]
  1124. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  1125. ::
  1126. Argument : void
  1127. Return : void
  1128. This function executes with the MMU and data caches enabled. It is responsible
  1129. for performing any remaining platform-specific setup that can occur after the
  1130. MMU and data cache have been enabled.
  1131. In Arm standard platforms, this function initializes the storage abstraction
  1132. layer used to load the next bootloader image.
  1133. This function helps fulfill requirement 4 above.
  1134. Function : bl1_plat_sec_mem_layout() [mandatory]
  1135. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  1136. ::
  1137. Argument : void
  1138. Return : meminfo *
  1139. This function should only be called on the cold boot path. It executes with the
  1140. MMU and data caches enabled. The pointer returned by this function must point to
  1141. a ``meminfo`` structure containing the extents and availability of secure RAM for
  1142. the BL1 stage.
  1143. ::
  1144. meminfo.total_base = Base address of secure RAM visible to BL1
  1145. meminfo.total_size = Size of secure RAM visible to BL1
  1146. This information is used by BL1 to load the BL2 image in secure RAM. BL1 also
  1147. populates a similar structure to tell BL2 the extents of memory available for
  1148. its own use.
  1149. This function helps fulfill requirements 4 and 5 above.
  1150. Function : bl1_plat_prepare_exit() [optional]
  1151. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  1152. ::
  1153. Argument : entry_point_info_t *
  1154. Return : void
  1155. This function is called prior to exiting BL1 in response to the
  1156. ``BL1_SMC_RUN_IMAGE`` SMC request raised by BL2. It should be used to perform
  1157. platform specific clean up or bookkeeping operations before transferring
  1158. control to the next image. It receives the address of the ``entry_point_info_t``
  1159. structure passed from BL2. This function runs with MMU disabled.
  1160. Function : bl1_plat_set_ep_info() [optional]
  1161. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  1162. ::
  1163. Argument : unsigned int image_id, entry_point_info_t *ep_info
  1164. Return : void
  1165. This function allows platforms to override ``ep_info`` for the given ``image_id``.
  1166. The default implementation just returns.
  1167. Function : bl1_plat_get_next_image_id() [optional]
  1168. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  1169. ::
  1170. Argument : void
  1171. Return : unsigned int
  1172. This and the following function must be overridden to enable the FWU feature.
  1173. BL1 calls this function after platform setup to identify the next image to be
  1174. loaded and executed. If the platform returns ``BL2_IMAGE_ID`` then BL1 proceeds
  1175. with the normal boot sequence, which loads and executes BL2. If the platform
  1176. returns a different image id, BL1 assumes that Firmware Update is required.
  1177. The default implementation always returns ``BL2_IMAGE_ID``. The Arm development
  1178. platforms override this function to detect if firmware update is required, and
  1179. if so, return the first image in the firmware update process.
  1180. Function : bl1_plat_get_image_desc() [optional]
  1181. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  1182. ::
  1183. Argument : unsigned int image_id
  1184. Return : image_desc_t *
  1185. BL1 calls this function to get the image descriptor information ``image_desc_t``
  1186. for the provided ``image_id`` from the platform.
  1187. The default implementation always returns a common BL2 image descriptor. Arm
  1188. standard platforms return an image descriptor corresponding to BL2 or one of
  1189. the firmware update images defined in the Trusted Board Boot Requirements
  1190. specification.
  1191. Function : bl1_plat_handle_pre_image_load() [optional]
  1192. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  1193. ::
  1194. Argument : unsigned int image_id
  1195. Return : int
  1196. This function can be used by the platforms to update/use image information
  1197. corresponding to ``image_id``. This function is invoked in BL1, both in cold
  1198. boot and FWU code path, before loading the image.
  1199. Function : bl1_plat_calc_bl2_layout() [optional]
  1200. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  1201. ::
  1202. Argument : const meminfo_t *bl1_mem_layout, meminfo_t *bl2_mem_layout
  1203. Return : void
  1204. This utility function calculates the memory layout of BL2, representing it in a
  1205. `meminfo_t` structure. The default implementation derives this layout from the
  1206. positioning of BL1’s RW data at the top of the memory layout.
  1207. Function : bl1_plat_handle_post_image_load() [optional]
  1208. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  1209. ::
  1210. Argument : unsigned int image_id
  1211. Return : int
  1212. This function can be used by the platforms to update/use image information
  1213. corresponding to ``image_id``. This function is invoked in BL1, both in cold
  1214. boot and FWU code path, after loading and authenticating the image.
  1215. The default weak implementation of this function calculates the amount of
  1216. Trusted SRAM that can be used by BL2 and allocates a ``meminfo_t``
  1217. structure at the beginning of this free memory and populates it. The address
  1218. of ``meminfo_t`` structure is updated in ``arg1`` of the entrypoint
  1219. information to BL2.
  1220. Function : bl1_plat_fwu_done() [optional]
  1221. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  1222. ::
  1223. Argument : unsigned int image_id, uintptr_t image_src,
  1224. unsigned int image_size
  1225. Return : void
  1226. BL1 calls this function when the FWU process is complete. It must not return.
  1227. The platform may override this function to take platform specific action, for
  1228. example to initiate the normal boot flow.
  1229. The default implementation spins forever.
  1230. Function : bl1_plat_mem_check() [mandatory]
  1231. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  1232. ::
  1233. Argument : uintptr_t mem_base, unsigned int mem_size,
  1234. unsigned int flags
  1235. Return : int
  1236. BL1 calls this function while handling FWU related SMCs, more specifically when
  1237. copying or authenticating an image. Its responsibility is to ensure that the
  1238. region of memory identified by ``mem_base`` and ``mem_size`` is mapped in BL1, and
  1239. that this memory corresponds to either a secure or non-secure memory region as
  1240. indicated by the security state of the ``flags`` argument.
  1241. This function can safely assume that the value resulting from the addition of
  1242. ``mem_base`` and ``mem_size`` fits into a ``uintptr_t`` type variable and does not
  1243. overflow.
  1244. This function must return 0 on success, a non-null error code otherwise.
  1245. The default implementation of this function asserts therefore platforms must
  1246. override it when using the FWU feature.
  1247. Boot Loader Stage 2 (BL2)
  1248. -------------------------
  1249. The BL2 stage is executed only by the primary CPU, which is determined in BL1
  1250. using the ``platform_is_primary_cpu()`` function. BL1 passed control to BL2 at
  1251. ``BL2_BASE``. BL2 executes in Secure EL1 and and invokes
  1252. ``plat_get_bl_image_load_info()`` to retrieve the list of images to load from
  1253. non-volatile storage to secure/non-secure RAM. After all the images are loaded
  1254. then BL2 invokes ``plat_get_next_bl_params()`` to get the list of executable
  1255. images to be passed to the next BL image.
  1256. The following functions must be implemented by the platform port to enable BL2
  1257. to perform the above tasks.
  1258. Function : bl2_early_platform_setup2() [mandatory]
  1259. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  1260. ::
  1261. Argument : u_register_t, u_register_t, u_register_t, u_register_t
  1262. Return : void
  1263. This function executes with the MMU and data caches disabled. It is only called
  1264. by the primary CPU. The 4 arguments are passed by BL1 to BL2 and these arguments
  1265. are platform specific.
  1266. On Arm standard platforms, the arguments received are :
  1267. arg0 - Points to load address of FW_CONFIG
  1268. arg1 - ``meminfo`` structure populated by BL1. The platform copies
  1269. the contents of ``meminfo`` as it may be subsequently overwritten by BL2.
  1270. On Arm standard platforms, this function also:
  1271. - Initializes a UART (PL011 console), which enables access to the ``printf``
  1272. family of functions in BL2.
  1273. - Initializes the storage abstraction layer used to load further bootloader
  1274. images. It is necessary to do this early on platforms with a SCP_BL2 image,
  1275. since the later ``bl2_platform_setup`` must be done after SCP_BL2 is loaded.
  1276. Function : bl2_plat_arch_setup() [mandatory]
  1277. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  1278. ::
  1279. Argument : void
  1280. Return : void
  1281. This function executes with the MMU and data caches disabled. It is only called
  1282. by the primary CPU.
  1283. The purpose of this function is to perform any architectural initialization
  1284. that varies across platforms.
  1285. On Arm standard platforms, this function enables the MMU.
  1286. Function : bl2_platform_setup() [mandatory]
  1287. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  1288. ::
  1289. Argument : void
  1290. Return : void
  1291. This function may execute with the MMU and data caches enabled if the platform
  1292. port does the necessary initialization in ``bl2_plat_arch_setup()``. It is only
  1293. called by the primary CPU.
  1294. The purpose of this function is to perform any platform initialization
  1295. specific to BL2.
  1296. In Arm standard platforms, this function performs security setup, including
  1297. configuration of the TrustZone controller to allow non-secure masters access
  1298. to most of DRAM. Part of DRAM is reserved for secure world use.
  1299. Function : bl2_plat_handle_pre_image_load() [optional]
  1300. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  1301. ::
  1302. Argument : unsigned int
  1303. Return : int
  1304. This function can be used by the platforms to update/use image information
  1305. for given ``image_id``. This function is currently invoked in BL2 before
  1306. loading each image.
  1307. Function : bl2_plat_handle_post_image_load() [optional]
  1308. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  1309. ::
  1310. Argument : unsigned int
  1311. Return : int
  1312. This function can be used by the platforms to update/use image information
  1313. for given ``image_id``. This function is currently invoked in BL2 after
  1314. loading each image.
  1315. Function : bl2_plat_preload_setup [optional]
  1316. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  1317. ::
  1318. Argument : void
  1319. Return : void
  1320. This optional function performs any BL2 platform initialization
  1321. required before image loading, that is not done later in
  1322. bl2_platform_setup().
  1323. Boot Loader Stage 2 (BL2) at EL3
  1324. --------------------------------
  1325. When the platform has a non-TF-A Boot ROM it is desirable to jump
  1326. directly to BL2 instead of TF-A BL1. In this case BL2 is expected to
  1327. execute at EL3 instead of executing at EL1. Refer to the :ref:`Firmware Design`
  1328. document for more information.
  1329. All mandatory functions of BL2 must be implemented, except the functions
  1330. bl2_early_platform_setup and bl2_el3_plat_arch_setup, because
  1331. their work is done now by bl2_el3_early_platform_setup and
  1332. bl2_el3_plat_arch_setup. These functions should generally implement
  1333. the bl1_plat_xxx() and bl2_plat_xxx() functionality combined.
  1334. Function : bl2_el3_early_platform_setup() [mandatory]
  1335. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  1336. ::
  1337. Argument : u_register_t, u_register_t, u_register_t, u_register_t
  1338. Return : void
  1339. This function executes with the MMU and data caches disabled. It is only called
  1340. by the primary CPU. This function receives four parameters which can be used
  1341. by the platform to pass any needed information from the Boot ROM to BL2.
  1342. On Arm standard platforms, this function does the following:
  1343. - Initializes a UART (PL011 console), which enables access to the ``printf``
  1344. family of functions in BL2.
  1345. - Initializes the storage abstraction layer used to load further bootloader
  1346. images. It is necessary to do this early on platforms with a SCP_BL2 image,
  1347. since the later ``bl2_platform_setup`` must be done after SCP_BL2 is loaded.
  1348. - Initializes the private variables that define the memory layout used.
  1349. Function : bl2_el3_plat_arch_setup() [mandatory]
  1350. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  1351. ::
  1352. Argument : void
  1353. Return : void
  1354. This function executes with the MMU and data caches disabled. It is only called
  1355. by the primary CPU.
  1356. The purpose of this function is to perform any architectural initialization
  1357. that varies across platforms.
  1358. On Arm standard platforms, this function enables the MMU.
  1359. Function : bl2_el3_plat_prepare_exit() [optional]
  1360. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  1361. ::
  1362. Argument : void
  1363. Return : void
  1364. This function is called prior to exiting BL2 and run the next image.
  1365. It should be used to perform platform specific clean up or bookkeeping
  1366. operations before transferring control to the next image. This function
  1367. runs with MMU disabled.
  1368. FWU Boot Loader Stage 2 (BL2U)
  1369. ------------------------------
  1370. The AP Firmware Updater Configuration, BL2U, is an optional part of the FWU
  1371. process and is executed only by the primary CPU. BL1 passes control to BL2U at
  1372. ``BL2U_BASE``. BL2U executes in Secure-EL1 and is responsible for:
  1373. #. (Optional) Transferring the optional SCP_BL2U binary image from AP secure
  1374. memory to SCP RAM. BL2U uses the SCP_BL2U ``image_info`` passed by BL1.
  1375. ``SCP_BL2U_BASE`` defines the address in AP secure memory where SCP_BL2U
  1376. should be copied from. Subsequent handling of the SCP_BL2U image is
  1377. implemented by the platform specific ``bl2u_plat_handle_scp_bl2u()`` function.
  1378. If ``SCP_BL2U_BASE`` is not defined then this step is not performed.
  1379. #. Any platform specific setup required to perform the FWU process. For
  1380. example, Arm standard platforms initialize the TZC controller so that the
  1381. normal world can access DDR memory.
  1382. The following functions must be implemented by the platform port to enable
  1383. BL2U to perform the tasks mentioned above.
  1384. Function : bl2u_early_platform_setup() [mandatory]
  1385. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  1386. ::
  1387. Argument : meminfo *mem_info, void *plat_info
  1388. Return : void
  1389. This function executes with the MMU and data caches disabled. It is only
  1390. called by the primary CPU. The arguments to this function is the address
  1391. of the ``meminfo`` structure and platform specific info provided by BL1.
  1392. The platform may copy the contents of the ``mem_info`` and ``plat_info`` into
  1393. private storage as the original memory may be subsequently overwritten by BL2U.
  1394. On Arm CSS platforms ``plat_info`` is interpreted as an ``image_info_t`` structure,
  1395. to extract SCP_BL2U image information, which is then copied into a private
  1396. variable.
  1397. Function : bl2u_plat_arch_setup() [mandatory]
  1398. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  1399. ::
  1400. Argument : void
  1401. Return : void
  1402. This function executes with the MMU and data caches disabled. It is only
  1403. called by the primary CPU.
  1404. The purpose of this function is to perform any architectural initialization
  1405. that varies across platforms, for example enabling the MMU (since the memory
  1406. map differs across platforms).
  1407. Function : bl2u_platform_setup() [mandatory]
  1408. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  1409. ::
  1410. Argument : void
  1411. Return : void
  1412. This function may execute with the MMU and data caches enabled if the platform
  1413. port does the necessary initialization in ``bl2u_plat_arch_setup()``. It is only
  1414. called by the primary CPU.
  1415. The purpose of this function is to perform any platform initialization
  1416. specific to BL2U.
  1417. In Arm standard platforms, this function performs security setup, including
  1418. configuration of the TrustZone controller to allow non-secure masters access
  1419. to most of DRAM. Part of DRAM is reserved for secure world use.
  1420. Function : bl2u_plat_handle_scp_bl2u() [optional]
  1421. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  1422. ::
  1423. Argument : void
  1424. Return : int
  1425. This function is used to perform any platform-specific actions required to
  1426. handle the SCP firmware. Typically it transfers the image into SCP memory using
  1427. a platform-specific protocol and waits until SCP executes it and signals to the
  1428. Application Processor (AP) for BL2U execution to continue.
  1429. This function returns 0 on success, a negative error code otherwise.
  1430. This function is included if SCP_BL2U_BASE is defined.
  1431. Boot Loader Stage 3-1 (BL31)
  1432. ----------------------------
  1433. During cold boot, the BL31 stage is executed only by the primary CPU. This is
  1434. determined in BL1 using the ``platform_is_primary_cpu()`` function. BL1 passes
  1435. control to BL31 at ``BL31_BASE``. During warm boot, BL31 is executed by all
  1436. CPUs. BL31 executes at EL3 and is responsible for:
  1437. #. Re-initializing all architectural and platform state. Although BL1 performs
  1438. some of this initialization, BL31 remains resident in EL3 and must ensure
  1439. that EL3 architectural and platform state is completely initialized. It
  1440. should make no assumptions about the system state when it receives control.
  1441. #. Passing control to a normal world BL image, pre-loaded at a platform-
  1442. specific address by BL2. On ARM platforms, BL31 uses the ``bl_params`` list
  1443. populated by BL2 in memory to do this.
  1444. #. Providing runtime firmware services. Currently, BL31 only implements a
  1445. subset of the Power State Coordination Interface (PSCI) API as a runtime
  1446. service. See :ref:`psci_in_bl31` below for details of porting the PSCI
  1447. implementation.
  1448. #. Optionally passing control to the BL32 image, pre-loaded at a platform-
  1449. specific address by BL2. BL31 exports a set of APIs that allow runtime
  1450. services to specify the security state in which the next image should be
  1451. executed and run the corresponding image. On ARM platforms, BL31 uses the
  1452. ``bl_params`` list populated by BL2 in memory to do this.
  1453. If BL31 is a reset vector, It also needs to handle the reset as specified in
  1454. section 2.2 before the tasks described above.
  1455. The following functions must be implemented by the platform port to enable BL31
  1456. to perform the above tasks.
  1457. Function : bl31_early_platform_setup2() [mandatory]
  1458. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  1459. ::
  1460. Argument : u_register_t, u_register_t, u_register_t, u_register_t
  1461. Return : void
  1462. This function executes with the MMU and data caches disabled. It is only called
  1463. by the primary CPU. BL2 can pass 4 arguments to BL31 and these arguments are
  1464. platform specific.
  1465. In Arm standard platforms, the arguments received are :
  1466. arg0 - The pointer to the head of `bl_params_t` list
  1467. which is list of executable images following BL31,
  1468. arg1 - Points to load address of SOC_FW_CONFIG if present
  1469. except in case of Arm FVP and Juno platform.
  1470. In case of Arm FVP and Juno platform, points to load address
  1471. of FW_CONFIG.
  1472. arg2 - Points to load address of HW_CONFIG if present
  1473. arg3 - A special value to verify platform parameters from BL2 to BL31. Not
  1474. used in release builds.
  1475. The function runs through the `bl_param_t` list and extracts the entry point
  1476. information for BL32 and BL33. It also performs the following:
  1477. - Initialize a UART (PL011 console), which enables access to the ``printf``
  1478. family of functions in BL31.
  1479. - Enable issuing of snoop and DVM (Distributed Virtual Memory) requests to the
  1480. CCI slave interface corresponding to the cluster that includes the primary
  1481. CPU.
  1482. Function : bl31_plat_arch_setup() [mandatory]
  1483. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  1484. ::
  1485. Argument : void
  1486. Return : void
  1487. This function executes with the MMU and data caches disabled. It is only called
  1488. by the primary CPU.
  1489. The purpose of this function is to perform any architectural initialization
  1490. that varies across platforms.
  1491. On Arm standard platforms, this function enables the MMU.
  1492. Function : bl31_platform_setup() [mandatory]
  1493. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  1494. ::
  1495. Argument : void
  1496. Return : void
  1497. This function may execute with the MMU and data caches enabled if the platform
  1498. port does the necessary initialization in ``bl31_plat_arch_setup()``. It is only
  1499. called by the primary CPU.
  1500. The purpose of this function is to complete platform initialization so that both
  1501. BL31 runtime services and normal world software can function correctly.
  1502. On Arm standard platforms, this function does the following:
  1503. - Initialize the generic interrupt controller.
  1504. Depending on the GIC driver selected by the platform, the appropriate GICv2
  1505. or GICv3 initialization will be done, which mainly consists of:
  1506. - Enable secure interrupts in the GIC CPU interface.
  1507. - Disable the legacy interrupt bypass mechanism.
  1508. - Configure the priority mask register to allow interrupts of all priorities
  1509. to be signaled to the CPU interface.
  1510. - Mark SGIs 8-15 and the other secure interrupts on the platform as secure.
  1511. - Target all secure SPIs to CPU0.
  1512. - Enable these secure interrupts in the GIC distributor.
  1513. - Configure all other interrupts as non-secure.
  1514. - Enable signaling of secure interrupts in the GIC distributor.
  1515. - Enable system-level implementation of the generic timer counter through the
  1516. memory mapped interface.
  1517. - Grant access to the system counter timer module
  1518. - Initialize the power controller device.
  1519. In particular, initialise the locks that prevent concurrent accesses to the
  1520. power controller device.
  1521. Function : bl31_plat_runtime_setup() [optional]
  1522. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  1523. ::
  1524. Argument : void
  1525. Return : void
  1526. The purpose of this function is allow the platform to perform any BL31 runtime
  1527. setup just prior to BL31 exit during cold boot. The default weak
  1528. implementation of this function will invoke ``console_switch_state()`` to switch
  1529. console output to consoles marked for use in the ``runtime`` state.
  1530. Function : bl31_plat_get_next_image_ep_info() [mandatory]
  1531. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  1532. ::
  1533. Argument : uint32_t
  1534. Return : entry_point_info *
  1535. This function may execute with the MMU and data caches enabled if the platform
  1536. port does the necessary initializations in ``bl31_plat_arch_setup()``.
  1537. This function is called by ``bl31_main()`` to retrieve information provided by
  1538. BL2 for the next image in the security state specified by the argument. BL31
  1539. uses this information to pass control to that image in the specified security
  1540. state. This function must return a pointer to the ``entry_point_info`` structure
  1541. (that was copied during ``bl31_early_platform_setup()``) if the image exists. It
  1542. should return NULL otherwise.
  1543. Function : plat_rmmd_get_cca_attest_token() [mandatory when ENABLE_RME == 1]
  1544. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  1545. ::
  1546. Argument : uintptr_t, size_t *, uintptr_t, size_t, size_t *
  1547. Return : int
  1548. This function returns the Platform attestation token. If the full token does
  1549. not fit in the buffer, the function will return a hunk of the token and
  1550. indicate how many bytes were copied and how many are pending. Multiple calls
  1551. to this function may be needed to retrieve the entire token.
  1552. The parameters of the function are:
  1553. arg0 - A pointer to the buffer where the Platform token should be copied by
  1554. this function. If the platform token does not completely fit in the
  1555. buffer, the function may return a piece of the token only.
  1556. arg1 - Contains the size (in bytes) of the buffer passed in arg0. In
  1557. addition, this parameter is used by the function to return the size
  1558. of the platform token length hunk copied to the buffer.
  1559. arg2 - A pointer to the buffer where the challenge object is stored.
  1560. arg3 - The length of the challenge object in bytes. Possible values are 32,
  1561. 48 and 64. This argument must be zero for subsequent calls to
  1562. retrieve the remaining hunks of the token.
  1563. arg4 - Returns the remaining length of the token (in bytes) that is yet to
  1564. be returned in further calls.
  1565. The function returns 0 on success, -EINVAL on failure and -EAGAIN if the
  1566. resource associated with the platform token retrieval is busy.
  1567. Function : plat_rmmd_get_cca_realm_attest_key() [mandatory when ENABLE_RME == 1]
  1568. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  1569. ::
  1570. Argument : uintptr_t, size_t *, unsigned int
  1571. Return : int
  1572. This function returns the delegated realm attestation key which will be used to
  1573. sign Realm attestation token. The API currently only supports P-384 ECC curve
  1574. key.
  1575. The parameters of the function are:
  1576. arg0 - A pointer to the buffer where the attestation key should be copied
  1577. by this function. The buffer must be big enough to hold the
  1578. attestation key.
  1579. arg1 - Contains the size (in bytes) of the buffer passed in arg0. The
  1580. function returns the attestation key length in this parameter.
  1581. arg2 - The type of the elliptic curve to which the requested attestation key
  1582. belongs.
  1583. The function returns 0 on success, -EINVAL on failure.
  1584. Function : plat_rmmd_get_el3_rmm_shared_mem() [when ENABLE_RME == 1]
  1585. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  1586. ::
  1587. Argument : uintptr_t *
  1588. Return : size_t
  1589. This function returns the size of the shared area between EL3 and RMM (or 0 on
  1590. failure). A pointer to the shared area (or a NULL pointer on failure) is stored
  1591. in the pointer passed as argument.
  1592. Function : plat_rmmd_load_manifest() [when ENABLE_RME == 1]
  1593. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  1594. ::
  1595. Arguments : rmm_manifest_t *manifest
  1596. Return : int
  1597. When ENABLE_RME is enabled, this function populates a boot manifest for the
  1598. RMM image and stores it in the area specified by manifest.
  1599. When ENABLE_RME is disabled, this function is not used.
  1600. Function : bl31_plat_enable_mmu [optional]
  1601. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  1602. ::
  1603. Argument : uint32_t
  1604. Return : void
  1605. This function enables the MMU. The boot code calls this function with MMU and
  1606. caches disabled. This function should program necessary registers to enable
  1607. translation, and upon return, the MMU on the calling PE must be enabled.
  1608. The function must honor flags passed in the first argument. These flags are
  1609. defined by the translation library, and can be found in the file
  1610. ``include/lib/xlat_tables/xlat_mmu_helpers.h``.
  1611. On DynamIQ systems, this function must not use stack while enabling MMU, which
  1612. is how the function in xlat table library version 2 is implemented.
  1613. Function : plat_init_apkey [optional]
  1614. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  1615. ::
  1616. Argument : void
  1617. Return : uint128_t
  1618. This function returns the 128-bit value which can be used to program ARMv8.3
  1619. pointer authentication keys.
  1620. The value should be obtained from a reliable source of randomness.
  1621. This function is only needed if ARMv8.3 pointer authentication is used in the
  1622. Trusted Firmware by building with ``BRANCH_PROTECTION`` option set to non-zero.
  1623. Function : plat_get_syscnt_freq2() [mandatory]
  1624. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  1625. ::
  1626. Argument : void
  1627. Return : unsigned int
  1628. This function is used by the architecture setup code to retrieve the counter
  1629. frequency for the CPU's generic timer. This value will be programmed into the
  1630. ``CNTFRQ_EL0`` register. In Arm standard platforms, it returns the base frequency
  1631. of the system counter, which is retrieved from the first entry in the frequency
  1632. modes table.
  1633. #define : PLAT_PERCPU_BAKERY_LOCK_SIZE [optional]
  1634. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  1635. When ``USE_COHERENT_MEM = 0``, this constant defines the total memory (in
  1636. bytes) aligned to the cache line boundary that should be allocated per-cpu to
  1637. accommodate all the bakery locks.
  1638. If this constant is not defined when ``USE_COHERENT_MEM = 0``, the linker
  1639. calculates the size of the ``.bakery_lock`` input section, aligns it to the
  1640. nearest ``CACHE_WRITEBACK_GRANULE``, multiplies it with ``PLATFORM_CORE_COUNT``
  1641. and stores the result in a linker symbol. This constant prevents a platform
  1642. from relying on the linker and provide a more efficient mechanism for
  1643. accessing per-cpu bakery lock information.
  1644. If this constant is defined and its value is not equal to the value
  1645. calculated by the linker then a link time assertion is raised. A compile time
  1646. assertion is raised if the value of the constant is not aligned to the cache
  1647. line boundary.
  1648. .. _porting_guide_sdei_requirements:
  1649. SDEI porting requirements
  1650. ~~~~~~~~~~~~~~~~~~~~~~~~~
  1651. The |SDEI| dispatcher requires the platform to provide the following macros
  1652. and functions, of which some are optional, and some others mandatory.
  1653. Macros
  1654. ......
  1655. Macro: PLAT_SDEI_NORMAL_PRI [mandatory]
  1656. ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  1657. This macro must be defined to the EL3 exception priority level associated with
  1658. Normal |SDEI| events on the platform. This must have a higher value
  1659. (therefore of lower priority) than ``PLAT_SDEI_CRITICAL_PRI``.
  1660. Macro: PLAT_SDEI_CRITICAL_PRI [mandatory]
  1661. ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  1662. This macro must be defined to the EL3 exception priority level associated with
  1663. Critical |SDEI| events on the platform. This must have a lower value
  1664. (therefore of higher priority) than ``PLAT_SDEI_NORMAL_PRI``.
  1665. **Note**: |SDEI| exception priorities must be the lowest among Secure
  1666. priorities. Among the |SDEI| exceptions, Critical |SDEI| priority must
  1667. be higher than Normal |SDEI| priority.
  1668. Functions
  1669. .........
  1670. Function: int plat_sdei_validate_entry_point() [optional]
  1671. ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  1672. ::
  1673. Argument: uintptr_t ep, unsigned int client_mode
  1674. Return: int
  1675. This function validates the entry point address of the event handler provided by
  1676. the client for both event registration and *Complete and Resume* |SDEI| calls.
  1677. The function ensures that the address is valid in the client translation regime.
  1678. The second argument is the exception level that the client is executing in. It
  1679. can be Non-Secure EL1 or Non-Secure EL2.
  1680. The function must return ``0`` for successful validation, or ``-1`` upon failure.
  1681. The default implementation always returns ``0``. On Arm platforms, this function
  1682. translates the entry point address within the client translation regime and
  1683. further ensures that the resulting physical address is located in Non-secure
  1684. DRAM.
  1685. Function: void plat_sdei_handle_masked_trigger(uint64_t mpidr, unsigned int intr) [optional]
  1686. ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  1687. ::
  1688. Argument: uint64_t
  1689. Argument: unsigned int
  1690. Return: void
  1691. |SDEI| specification requires that a PE comes out of reset with the events
  1692. masked. The client therefore is expected to call ``PE_UNMASK`` to unmask
  1693. |SDEI| events on the PE. No |SDEI| events can be dispatched until such
  1694. time.
  1695. Should a PE receive an interrupt that was bound to an |SDEI| event while the
  1696. events are masked on the PE, the dispatcher implementation invokes the function
  1697. ``plat_sdei_handle_masked_trigger``. The MPIDR of the PE that received the
  1698. interrupt and the interrupt ID are passed as parameters.
  1699. The default implementation only prints out a warning message.
  1700. .. _porting_guide_trng_requirements:
  1701. TRNG porting requirements
  1702. ~~~~~~~~~~~~~~~~~~~~~~~~~
  1703. The |TRNG| backend requires the platform to provide the following values
  1704. and mandatory functions.
  1705. Values
  1706. ......
  1707. value: uuid_t plat_trng_uuid [mandatory]
  1708. ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  1709. This value must be defined to the UUID of the TRNG backend that is specific to
  1710. the hardware after ``plat_entropy_setup`` function is called. This value must
  1711. conform to the SMCCC calling convention; The most significant 32 bits of the
  1712. UUID must not equal ``0xffffffff`` or the signed integer ``-1`` as this value in
  1713. w0 indicates failure to get a TRNG source.
  1714. Functions
  1715. .........
  1716. Function: void plat_entropy_setup(void) [mandatory]
  1717. ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  1718. ::
  1719. Argument: none
  1720. Return: none
  1721. This function is expected to do platform-specific initialization of any TRNG
  1722. hardware. This may include generating a UUID from a hardware-specific seed.
  1723. Function: bool plat_get_entropy(uint64_t \*out) [mandatory]
  1724. ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  1725. ::
  1726. Argument: uint64_t *
  1727. Return: bool
  1728. Out : when the return value is true, the entropy has been written into the
  1729. storage pointed to
  1730. This function writes entropy into storage provided by the caller. If no entropy
  1731. is available, it must return false and the storage must not be written.
  1732. .. _psci_in_bl31:
  1733. Power State Coordination Interface (in BL31)
  1734. --------------------------------------------
  1735. The TF-A implementation of the PSCI API is based around the concept of a
  1736. *power domain*. A *power domain* is a CPU or a logical group of CPUs which
  1737. share some state on which power management operations can be performed as
  1738. specified by `PSCI`_. Each CPU in the system is assigned a cpu index which is
  1739. a unique number between ``0`` and ``PLATFORM_CORE_COUNT - 1``. The
  1740. *power domains* are arranged in a hierarchical tree structure and each
  1741. *power domain* can be identified in a system by the cpu index of any CPU that
  1742. is part of that domain and a *power domain level*. A processing element (for
  1743. example, a CPU) is at level 0. If the *power domain* node above a CPU is a
  1744. logical grouping of CPUs that share some state, then level 1 is that group of
  1745. CPUs (for example, a cluster), and level 2 is a group of clusters (for
  1746. example, the system). More details on the power domain topology and its
  1747. organization can be found in :ref:`PSCI Power Domain Tree Structure`.
  1748. BL31's platform initialization code exports a pointer to the platform-specific
  1749. power management operations required for the PSCI implementation to function
  1750. correctly. This information is populated in the ``plat_psci_ops`` structure. The
  1751. PSCI implementation calls members of the ``plat_psci_ops`` structure for performing
  1752. power management operations on the power domains. For example, the target
  1753. CPU is specified by its ``MPIDR`` in a PSCI ``CPU_ON`` call. The ``pwr_domain_on()``
  1754. handler (if present) is called for the CPU power domain.
  1755. The ``power-state`` parameter of a PSCI ``CPU_SUSPEND`` call can be used to
  1756. describe composite power states specific to a platform. The PSCI implementation
  1757. defines a generic representation of the power-state parameter, which is an
  1758. array of local power states where each index corresponds to a power domain
  1759. level. Each entry contains the local power state the power domain at that power
  1760. level could enter. It depends on the ``validate_power_state()`` handler to
  1761. convert the power-state parameter (possibly encoding a composite power state)
  1762. passed in a PSCI ``CPU_SUSPEND`` call to this representation.
  1763. The following functions form part of platform port of PSCI functionality.
  1764. Function : plat_psci_stat_accounting_start() [optional]
  1765. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  1766. ::
  1767. Argument : const psci_power_state_t *
  1768. Return : void
  1769. This is an optional hook that platforms can implement for residency statistics
  1770. accounting before entering a low power state. The ``pwr_domain_state`` field of
  1771. ``state_info`` (first argument) can be inspected if stat accounting is done
  1772. differently at CPU level versus higher levels. As an example, if the element at
  1773. index 0 (CPU power level) in the ``pwr_domain_state`` array indicates a power down
  1774. state, special hardware logic may be programmed in order to keep track of the
  1775. residency statistics. For higher levels (array indices > 0), the residency
  1776. statistics could be tracked in software using PMF. If ``ENABLE_PMF`` is set, the
  1777. default implementation will use PMF to capture timestamps.
  1778. Function : plat_psci_stat_accounting_stop() [optional]
  1779. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  1780. ::
  1781. Argument : const psci_power_state_t *
  1782. Return : void
  1783. This is an optional hook that platforms can implement for residency statistics
  1784. accounting after exiting from a low power state. The ``pwr_domain_state`` field
  1785. of ``state_info`` (first argument) can be inspected if stat accounting is done
  1786. differently at CPU level versus higher levels. As an example, if the element at
  1787. index 0 (CPU power level) in the ``pwr_domain_state`` array indicates a power down
  1788. state, special hardware logic may be programmed in order to keep track of the
  1789. residency statistics. For higher levels (array indices > 0), the residency
  1790. statistics could be tracked in software using PMF. If ``ENABLE_PMF`` is set, the
  1791. default implementation will use PMF to capture timestamps.
  1792. Function : plat_psci_stat_get_residency() [optional]
  1793. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  1794. ::
  1795. Argument : unsigned int, const psci_power_state_t *, unsigned int
  1796. Return : u_register_t
  1797. This is an optional interface that is is invoked after resuming from a low power
  1798. state and provides the time spent resident in that low power state by the power
  1799. domain at a particular power domain level. When a CPU wakes up from suspend,
  1800. all its parent power domain levels are also woken up. The generic PSCI code
  1801. invokes this function for each parent power domain that is resumed and it
  1802. identified by the ``lvl`` (first argument) parameter. The ``state_info`` (second
  1803. argument) describes the low power state that the power domain has resumed from.
  1804. The current CPU is the first CPU in the power domain to resume from the low
  1805. power state and the ``last_cpu_idx`` (third parameter) is the index of the last
  1806. CPU in the power domain to suspend and may be needed to calculate the residency
  1807. for that power domain.
  1808. Function : plat_get_target_pwr_state() [optional]
  1809. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  1810. ::
  1811. Argument : unsigned int, const plat_local_state_t *, unsigned int
  1812. Return : plat_local_state_t
  1813. The PSCI generic code uses this function to let the platform participate in
  1814. state coordination during a power management operation. The function is passed
  1815. a pointer to an array of platform specific local power state ``states`` (second
  1816. argument) which contains the requested power state for each CPU at a particular
  1817. power domain level ``lvl`` (first argument) within the power domain. The function
  1818. is expected to traverse this array of upto ``ncpus`` (third argument) and return
  1819. a coordinated target power state by the comparing all the requested power
  1820. states. The target power state should not be deeper than any of the requested
  1821. power states.
  1822. A weak definition of this API is provided by default wherein it assumes
  1823. that the platform assigns a local state value in order of increasing depth
  1824. of the power state i.e. for two power states X & Y, if X < Y
  1825. then X represents a shallower power state than Y. As a result, the
  1826. coordinated target local power state for a power domain will be the minimum
  1827. of the requested local power state values.
  1828. Function : plat_get_power_domain_tree_desc() [mandatory]
  1829. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  1830. ::
  1831. Argument : void
  1832. Return : const unsigned char *
  1833. This function returns a pointer to the byte array containing the power domain
  1834. topology tree description. The format and method to construct this array are
  1835. described in :ref:`PSCI Power Domain Tree Structure`. The BL31 PSCI
  1836. initialization code requires this array to be described by the platform, either
  1837. statically or dynamically, to initialize the power domain topology tree. In case
  1838. the array is populated dynamically, then plat_core_pos_by_mpidr() and
  1839. plat_my_core_pos() should also be implemented suitably so that the topology tree
  1840. description matches the CPU indices returned by these APIs. These APIs together
  1841. form the platform interface for the PSCI topology framework.
  1842. Function : plat_setup_psci_ops() [mandatory]
  1843. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  1844. ::
  1845. Argument : uintptr_t, const plat_psci_ops **
  1846. Return : int
  1847. This function may execute with the MMU and data caches enabled if the platform
  1848. port does the necessary initializations in ``bl31_plat_arch_setup()``. It is only
  1849. called by the primary CPU.
  1850. This function is called by PSCI initialization code. Its purpose is to let
  1851. the platform layer know about the warm boot entrypoint through the
  1852. ``sec_entrypoint`` (first argument) and to export handler routines for
  1853. platform-specific psci power management actions by populating the passed
  1854. pointer with a pointer to BL31's private ``plat_psci_ops`` structure.
  1855. A description of each member of this structure is given below. Please refer to
  1856. the Arm FVP specific implementation of these handlers in
  1857. ``plat/arm/board/fvp/fvp_pm.c`` as an example. For each PSCI function that the
  1858. platform wants to support, the associated operation or operations in this
  1859. structure must be provided and implemented (Refer section 4 of
  1860. :ref:`Firmware Design` for the PSCI API supported in TF-A). To disable a PSCI
  1861. function in a platform port, the operation should be removed from this
  1862. structure instead of providing an empty implementation.
  1863. plat_psci_ops.cpu_standby()
  1864. ...........................
  1865. Perform the platform-specific actions to enter the standby state for a cpu
  1866. indicated by the passed argument. This provides a fast path for CPU standby
  1867. wherein overheads of PSCI state management and lock acquisition is avoided.
  1868. For this handler to be invoked by the PSCI ``CPU_SUSPEND`` API implementation,
  1869. the suspend state type specified in the ``power-state`` parameter should be
  1870. STANDBY and the target power domain level specified should be the CPU. The
  1871. handler should put the CPU into a low power retention state (usually by
  1872. issuing a wfi instruction) and ensure that it can be woken up from that
  1873. state by a normal interrupt. The generic code expects the handler to succeed.
  1874. plat_psci_ops.pwr_domain_on()
  1875. .............................
  1876. Perform the platform specific actions to power on a CPU, specified
  1877. by the ``MPIDR`` (first argument). The generic code expects the platform to
  1878. return PSCI_E_SUCCESS on success or PSCI_E_INTERN_FAIL for any failure.
  1879. plat_psci_ops.pwr_domain_off_early() [optional]
  1880. ...............................................
  1881. This optional function performs the platform specific actions to check if
  1882. powering off the calling CPU and its higher parent power domain levels as
  1883. indicated by the ``target_state`` (first argument) is possible or allowed.
  1884. The ``target_state`` encodes the platform coordinated target local power states
  1885. for the CPU power domain and its parent power domain levels.
  1886. For this handler, the local power state for the CPU power domain will be a
  1887. power down state where as it could be either power down, retention or run state
  1888. for the higher power domain levels depending on the result of state
  1889. coordination. The generic code expects PSCI_E_DENIED return code if the
  1890. platform thinks that CPU_OFF should not proceed on the calling CPU.
  1891. plat_psci_ops.pwr_domain_off()
  1892. ..............................
  1893. Perform the platform specific actions to prepare to power off the calling CPU
  1894. and its higher parent power domain levels as indicated by the ``target_state``
  1895. (first argument). It is called by the PSCI ``CPU_OFF`` API implementation.
  1896. The ``target_state`` encodes the platform coordinated target local power states
  1897. for the CPU power domain and its parent power domain levels. The handler
  1898. needs to perform power management operation corresponding to the local state
  1899. at each power level.
  1900. For this handler, the local power state for the CPU power domain will be a
  1901. power down state where as it could be either power down, retention or run state
  1902. for the higher power domain levels depending on the result of state
  1903. coordination. The generic code expects the handler to succeed.
  1904. plat_psci_ops.pwr_domain_validate_suspend() [optional]
  1905. ......................................................
  1906. This is an optional function that is only compiled into the build if the build
  1907. option ``PSCI_OS_INIT_MODE`` is enabled.
  1908. If implemented, this function allows the platform to perform platform specific
  1909. validations based on hardware states. The generic code expects this function to
  1910. return PSCI_E_SUCCESS on success, or either PSCI_E_DENIED or
  1911. PSCI_E_INVALID_PARAMS as appropriate for any invalid requests.
  1912. plat_psci_ops.pwr_domain_suspend_pwrdown_early() [optional]
  1913. ...........................................................
  1914. This optional function may be used as a performance optimization to replace
  1915. or complement pwr_domain_suspend() on some platforms. Its calling semantics
  1916. are identical to pwr_domain_suspend(), except the PSCI implementation only
  1917. calls this function when suspending to a power down state, and it guarantees
  1918. that data caches are enabled.
  1919. When HW_ASSISTED_COHERENCY = 0, the PSCI implementation disables data caches
  1920. before calling pwr_domain_suspend(). If the target_state corresponds to a
  1921. power down state and it is safe to perform some or all of the platform
  1922. specific actions in that function with data caches enabled, it may be more
  1923. efficient to move those actions to this function. When HW_ASSISTED_COHERENCY
  1924. = 1, data caches remain enabled throughout, and so there is no advantage to
  1925. moving platform specific actions to this function.
  1926. plat_psci_ops.pwr_domain_suspend()
  1927. ..................................
  1928. Perform the platform specific actions to prepare to suspend the calling
  1929. CPU and its higher parent power domain levels as indicated by the
  1930. ``target_state`` (first argument). It is called by the PSCI ``CPU_SUSPEND``
  1931. API implementation.
  1932. The ``target_state`` has a similar meaning as described in
  1933. the ``pwr_domain_off()`` operation. It encodes the platform coordinated
  1934. target local power states for the CPU power domain and its parent
  1935. power domain levels. The handler needs to perform power management operation
  1936. corresponding to the local state at each power level. The generic code
  1937. expects the handler to succeed.
  1938. The difference between turning a power domain off versus suspending it is that
  1939. in the former case, the power domain is expected to re-initialize its state
  1940. when it is next powered on (see ``pwr_domain_on_finish()``). In the latter
  1941. case, the power domain is expected to save enough state so that it can resume
  1942. execution by restoring this state when its powered on (see
  1943. ``pwr_domain_suspend_finish()``).
  1944. When suspending a core, the platform can also choose to power off the GICv3
  1945. Redistributor and ITS through an implementation-defined sequence. To achieve
  1946. this safely, the ITS context must be saved first. The architectural part is
  1947. implemented by the ``gicv3_its_save_disable()`` helper, but most of the needed
  1948. sequence is implementation defined and it is therefore the responsibility of
  1949. the platform code to implement the necessary sequence. Then the GIC
  1950. Redistributor context can be saved using the ``gicv3_rdistif_save()`` helper.
  1951. Powering off the Redistributor requires the implementation to support it and it
  1952. is the responsibility of the platform code to execute the right implementation
  1953. defined sequence.
  1954. When a system suspend is requested, the platform can also make use of the
  1955. ``gicv3_distif_save()`` helper to save the context of the GIC Distributor after
  1956. it has saved the context of the Redistributors and ITS of all the cores in the
  1957. system. The context of the Distributor can be large and may require it to be
  1958. allocated in a special area if it cannot fit in the platform's global static
  1959. data, for example in DRAM. The Distributor can then be powered down using an
  1960. implementation-defined sequence.
  1961. plat_psci_ops.pwr_domain_pwr_down_wfi()
  1962. .......................................
  1963. This is an optional function and, if implemented, is expected to perform
  1964. platform specific actions including the ``wfi`` invocation which allows the
  1965. CPU to powerdown. Since this function is invoked outside the PSCI locks,
  1966. the actions performed in this hook must be local to the CPU or the platform
  1967. must ensure that races between multiple CPUs cannot occur.
  1968. The ``target_state`` has a similar meaning as described in the ``pwr_domain_off()``
  1969. operation and it encodes the platform coordinated target local power states for
  1970. the CPU power domain and its parent power domain levels. This function must
  1971. not return back to the caller (by calling wfi in an infinite loop to ensure
  1972. some CPUs power down mitigations work properly).
  1973. If this function is not implemented by the platform, PSCI generic
  1974. implementation invokes ``psci_power_down_wfi()`` for power down.
  1975. plat_psci_ops.pwr_domain_on_finish()
  1976. ....................................
  1977. This function is called by the PSCI implementation after the calling CPU is
  1978. powered on and released from reset in response to an earlier PSCI ``CPU_ON`` call.
  1979. It performs the platform-specific setup required to initialize enough state for
  1980. this CPU to enter the normal world and also provide secure runtime firmware
  1981. services.
  1982. The ``target_state`` (first argument) is the prior state of the power domains
  1983. immediately before the CPU was turned on. It indicates which power domains
  1984. above the CPU might require initialization due to having previously been in
  1985. low power states. The generic code expects the handler to succeed.
  1986. plat_psci_ops.pwr_domain_on_finish_late() [optional]
  1987. ...........................................................
  1988. This optional function is called by the PSCI implementation after the calling
  1989. CPU is fully powered on with respective data caches enabled. The calling CPU and
  1990. the associated cluster are guaranteed to be participating in coherency. This
  1991. function gives the flexibility to perform any platform-specific actions safely,
  1992. such as initialization or modification of shared data structures, without the
  1993. overhead of explicit cache maintainace operations.
  1994. The ``target_state`` has a similar meaning as described in the ``pwr_domain_on_finish()``
  1995. operation. The generic code expects the handler to succeed.
  1996. plat_psci_ops.pwr_domain_suspend_finish()
  1997. .........................................
  1998. This function is called by the PSCI implementation after the calling CPU is
  1999. powered on and released from reset in response to an asynchronous wakeup
  2000. event, for example a timer interrupt that was programmed by the CPU during the
  2001. ``CPU_SUSPEND`` call or ``SYSTEM_SUSPEND`` call. It performs the platform-specific
  2002. setup required to restore the saved state for this CPU to resume execution
  2003. in the normal world and also provide secure runtime firmware services.
  2004. The ``target_state`` (first argument) has a similar meaning as described in
  2005. the ``pwr_domain_on_finish()`` operation. The generic code expects the platform
  2006. to succeed.
  2007. If the Distributor, Redistributors or ITS have been powered off as part of a
  2008. suspend, their context must be restored in this function in the reverse order
  2009. to how they were saved during suspend sequence.
  2010. plat_psci_ops.system_off()
  2011. ..........................
  2012. This function is called by PSCI implementation in response to a ``SYSTEM_OFF``
  2013. call. It performs the platform-specific system poweroff sequence after
  2014. notifying the Secure Payload Dispatcher.
  2015. plat_psci_ops.system_reset()
  2016. ............................
  2017. This function is called by PSCI implementation in response to a ``SYSTEM_RESET``
  2018. call. It performs the platform-specific system reset sequence after
  2019. notifying the Secure Payload Dispatcher.
  2020. plat_psci_ops.validate_power_state()
  2021. ....................................
  2022. This function is called by the PSCI implementation during the ``CPU_SUSPEND``
  2023. call to validate the ``power_state`` parameter of the PSCI API and if valid,
  2024. populate it in ``req_state`` (second argument) array as power domain level
  2025. specific local states. If the ``power_state`` is invalid, the platform must
  2026. return PSCI_E_INVALID_PARAMS as error, which is propagated back to the
  2027. normal world PSCI client.
  2028. plat_psci_ops.validate_ns_entrypoint()
  2029. ......................................
  2030. This function is called by the PSCI implementation during the ``CPU_SUSPEND``,
  2031. ``SYSTEM_SUSPEND`` and ``CPU_ON`` calls to validate the non-secure ``entry_point``
  2032. parameter passed by the normal world. If the ``entry_point`` is invalid,
  2033. the platform must return PSCI_E_INVALID_ADDRESS as error, which is
  2034. propagated back to the normal world PSCI client.
  2035. plat_psci_ops.get_sys_suspend_power_state()
  2036. ...........................................
  2037. This function is called by the PSCI implementation during the ``SYSTEM_SUSPEND``
  2038. call to get the ``req_state`` parameter from platform which encodes the power
  2039. domain level specific local states to suspend to system affinity level. The
  2040. ``req_state`` will be utilized to do the PSCI state coordination and
  2041. ``pwr_domain_suspend()`` will be invoked with the coordinated target state to
  2042. enter system suspend.
  2043. plat_psci_ops.get_pwr_lvl_state_idx()
  2044. .....................................
  2045. This is an optional function and, if implemented, is invoked by the PSCI
  2046. implementation to convert the ``local_state`` (first argument) at a specified
  2047. ``pwr_lvl`` (second argument) to an index between 0 and
  2048. ``PLAT_MAX_PWR_LVL_STATES`` - 1. This function is only needed if the platform
  2049. supports more than two local power states at each power domain level, that is
  2050. ``PLAT_MAX_PWR_LVL_STATES`` is greater than 2, and needs to account for these
  2051. local power states.
  2052. plat_psci_ops.translate_power_state_by_mpidr()
  2053. ..............................................
  2054. This is an optional function and, if implemented, verifies the ``power_state``
  2055. (second argument) parameter of the PSCI API corresponding to a target power
  2056. domain. The target power domain is identified by using both ``MPIDR`` (first
  2057. argument) and the power domain level encoded in ``power_state``. The power domain
  2058. level specific local states are to be extracted from ``power_state`` and be
  2059. populated in the ``output_state`` (third argument) array. The functionality
  2060. is similar to the ``validate_power_state`` function described above and is
  2061. envisaged to be used in case the validity of ``power_state`` depend on the
  2062. targeted power domain. If the ``power_state`` is invalid for the targeted power
  2063. domain, the platform must return PSCI_E_INVALID_PARAMS as error. If this
  2064. function is not implemented, then the generic implementation relies on
  2065. ``validate_power_state`` function to translate the ``power_state``.
  2066. This function can also be used in case the platform wants to support local
  2067. power state encoding for ``power_state`` parameter of PSCI_STAT_COUNT/RESIDENCY
  2068. APIs as described in Section 5.18 of `PSCI`_.
  2069. plat_psci_ops.get_node_hw_state()
  2070. .................................
  2071. This is an optional function. If implemented this function is intended to return
  2072. the power state of a node (identified by the first parameter, the ``MPIDR``) in
  2073. the power domain topology (identified by the second parameter, ``power_level``),
  2074. as retrieved from a power controller or equivalent component on the platform.
  2075. Upon successful completion, the implementation must map and return the final
  2076. status among ``HW_ON``, ``HW_OFF`` or ``HW_STANDBY``. Upon encountering failures, it
  2077. must return either ``PSCI_E_INVALID_PARAMS`` or ``PSCI_E_NOT_SUPPORTED`` as
  2078. appropriate.
  2079. Implementations are not expected to handle ``power_levels`` greater than
  2080. ``PLAT_MAX_PWR_LVL``.
  2081. plat_psci_ops.system_reset2()
  2082. .............................
  2083. This is an optional function. If implemented this function is
  2084. called during the ``SYSTEM_RESET2`` call to perform a reset
  2085. based on the first parameter ``reset_type`` as specified in
  2086. `PSCI`_. The parameter ``cookie`` can be used to pass additional
  2087. reset information. If the ``reset_type`` is not supported, the
  2088. function must return ``PSCI_E_NOT_SUPPORTED``. For architectural
  2089. resets, all failures must return ``PSCI_E_INVALID_PARAMETERS``
  2090. and vendor reset can return other PSCI error codes as defined
  2091. in `PSCI`_. On success this function will not return.
  2092. plat_psci_ops.write_mem_protect()
  2093. .................................
  2094. This is an optional function. If implemented it enables or disables the
  2095. ``MEM_PROTECT`` functionality based on the value of ``val``.
  2096. A non-zero value enables ``MEM_PROTECT`` and a value of zero
  2097. disables it. Upon encountering failures it must return a negative value
  2098. and on success it must return 0.
  2099. plat_psci_ops.read_mem_protect()
  2100. ................................
  2101. This is an optional function. If implemented it returns the current
  2102. state of ``MEM_PROTECT`` via the ``val`` parameter. Upon encountering
  2103. failures it must return a negative value and on success it must
  2104. return 0.
  2105. plat_psci_ops.mem_protect_chk()
  2106. ...............................
  2107. This is an optional function. If implemented it checks if a memory
  2108. region defined by a base address ``base`` and with a size of ``length``
  2109. bytes is protected by ``MEM_PROTECT``. If the region is protected
  2110. then it must return 0, otherwise it must return a negative number.
  2111. .. _porting_guide_imf_in_bl31:
  2112. Interrupt Management framework (in BL31)
  2113. ----------------------------------------
  2114. BL31 implements an Interrupt Management Framework (IMF) to manage interrupts
  2115. generated in either security state and targeted to EL1 or EL2 in the non-secure
  2116. state or EL3/S-EL1 in the secure state. The design of this framework is
  2117. described in the :ref:`Interrupt Management Framework`
  2118. A platform should export the following APIs to support the IMF. The following
  2119. text briefly describes each API and its implementation in Arm standard
  2120. platforms. The API implementation depends upon the type of interrupt controller
  2121. present in the platform. Arm standard platform layer supports both
  2122. `Arm Generic Interrupt Controller version 2.0 (GICv2)`_
  2123. and `3.0 (GICv3)`_. Juno builds the Arm platform layer to use GICv2 and the
  2124. FVP can be configured to use either GICv2 or GICv3 depending on the build flag
  2125. ``FVP_USE_GIC_DRIVER`` (See :ref:`build_options_arm_fvp_platform` for more
  2126. details).
  2127. See also: :ref:`Interrupt Controller Abstraction APIs<Platform Interrupt Controller API>`.
  2128. Function : plat_interrupt_type_to_line() [mandatory]
  2129. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  2130. ::
  2131. Argument : uint32_t, uint32_t
  2132. Return : uint32_t
  2133. The Arm processor signals an interrupt exception either through the IRQ or FIQ
  2134. interrupt line. The specific line that is signaled depends on how the interrupt
  2135. controller (IC) reports different interrupt types from an execution context in
  2136. either security state. The IMF uses this API to determine which interrupt line
  2137. the platform IC uses to signal each type of interrupt supported by the framework
  2138. from a given security state. This API must be invoked at EL3.
  2139. The first parameter will be one of the ``INTR_TYPE_*`` values (see
  2140. :ref:`Interrupt Management Framework`) indicating the target type of the
  2141. interrupt, the second parameter is the security state of the originating
  2142. execution context. The return result is the bit position in the ``SCR_EL3``
  2143. register of the respective interrupt trap: IRQ=1, FIQ=2.
  2144. In the case of Arm standard platforms using GICv2, S-EL1 interrupts are
  2145. configured as FIQs and Non-secure interrupts as IRQs from either security
  2146. state.
  2147. In the case of Arm standard platforms using GICv3, the interrupt line to be
  2148. configured depends on the security state of the execution context when the
  2149. interrupt is signalled and are as follows:
  2150. - The S-EL1 interrupts are signaled as IRQ in S-EL0/1 context and as FIQ in
  2151. NS-EL0/1/2 context.
  2152. - The Non secure interrupts are signaled as FIQ in S-EL0/1 context and as IRQ
  2153. in the NS-EL0/1/2 context.
  2154. - The EL3 interrupts are signaled as FIQ in both S-EL0/1 and NS-EL0/1/2
  2155. context.
  2156. Function : plat_ic_get_pending_interrupt_type() [mandatory]
  2157. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  2158. ::
  2159. Argument : void
  2160. Return : uint32_t
  2161. This API returns the type of the highest priority pending interrupt at the
  2162. platform IC. The IMF uses the interrupt type to retrieve the corresponding
  2163. handler function. ``INTR_TYPE_INVAL`` is returned when there is no interrupt
  2164. pending. The valid interrupt types that can be returned are ``INTR_TYPE_EL3``,
  2165. ``INTR_TYPE_S_EL1`` and ``INTR_TYPE_NS``. This API must be invoked at EL3.
  2166. In the case of Arm standard platforms using GICv2, the *Highest Priority
  2167. Pending Interrupt Register* (``GICC_HPPIR``) is read to determine the id of
  2168. the pending interrupt. The type of interrupt depends upon the id value as
  2169. follows.
  2170. #. id < 1022 is reported as a S-EL1 interrupt
  2171. #. id = 1022 is reported as a Non-secure interrupt.
  2172. #. id = 1023 is reported as an invalid interrupt type.
  2173. In the case of Arm standard platforms using GICv3, the system register
  2174. ``ICC_HPPIR0_EL1``, *Highest Priority Pending group 0 Interrupt Register*,
  2175. is read to determine the id of the pending interrupt. The type of interrupt
  2176. depends upon the id value as follows.
  2177. #. id = ``PENDING_G1S_INTID`` (1020) is reported as a S-EL1 interrupt
  2178. #. id = ``PENDING_G1NS_INTID`` (1021) is reported as a Non-secure interrupt.
  2179. #. id = ``GIC_SPURIOUS_INTERRUPT`` (1023) is reported as an invalid interrupt type.
  2180. #. All other interrupt id's are reported as EL3 interrupt.
  2181. Function : plat_ic_get_pending_interrupt_id() [mandatory]
  2182. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  2183. ::
  2184. Argument : void
  2185. Return : uint32_t
  2186. This API returns the id of the highest priority pending interrupt at the
  2187. platform IC. ``INTR_ID_UNAVAILABLE`` is returned when there is no interrupt
  2188. pending.
  2189. In the case of Arm standard platforms using GICv2, the *Highest Priority
  2190. Pending Interrupt Register* (``GICC_HPPIR``) is read to determine the id of the
  2191. pending interrupt. The id that is returned by API depends upon the value of
  2192. the id read from the interrupt controller as follows.
  2193. #. id < 1022. id is returned as is.
  2194. #. id = 1022. The *Aliased Highest Priority Pending Interrupt Register*
  2195. (``GICC_AHPPIR``) is read to determine the id of the non-secure interrupt.
  2196. This id is returned by the API.
  2197. #. id = 1023. ``INTR_ID_UNAVAILABLE`` is returned.
  2198. In the case of Arm standard platforms using GICv3, if the API is invoked from
  2199. EL3, the system register ``ICC_HPPIR0_EL1``, *Highest Priority Pending Interrupt
  2200. group 0 Register*, is read to determine the id of the pending interrupt. The id
  2201. that is returned by API depends upon the value of the id read from the
  2202. interrupt controller as follows.
  2203. #. id < ``PENDING_G1S_INTID`` (1020). id is returned as is.
  2204. #. id = ``PENDING_G1S_INTID`` (1020) or ``PENDING_G1NS_INTID`` (1021). The system
  2205. register ``ICC_HPPIR1_EL1``, *Highest Priority Pending Interrupt group 1
  2206. Register* is read to determine the id of the group 1 interrupt. This id
  2207. is returned by the API as long as it is a valid interrupt id
  2208. #. If the id is any of the special interrupt identifiers,
  2209. ``INTR_ID_UNAVAILABLE`` is returned.
  2210. When the API invoked from S-EL1 for GICv3 systems, the id read from system
  2211. register ``ICC_HPPIR1_EL1``, *Highest Priority Pending group 1 Interrupt
  2212. Register*, is returned if is not equal to GIC_SPURIOUS_INTERRUPT (1023) else
  2213. ``INTR_ID_UNAVAILABLE`` is returned.
  2214. Function : plat_ic_acknowledge_interrupt() [mandatory]
  2215. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  2216. ::
  2217. Argument : void
  2218. Return : uint32_t
  2219. This API is used by the CPU to indicate to the platform IC that processing of
  2220. the highest pending interrupt has begun. It should return the raw, unmodified
  2221. value obtained from the interrupt controller when acknowledging an interrupt.
  2222. The actual interrupt number shall be extracted from this raw value using the API
  2223. `plat_ic_get_interrupt_id()<plat_ic_get_interrupt_id>`.
  2224. This function in Arm standard platforms using GICv2, reads the *Interrupt
  2225. Acknowledge Register* (``GICC_IAR``). This changes the state of the highest
  2226. priority pending interrupt from pending to active in the interrupt controller.
  2227. It returns the value read from the ``GICC_IAR``, unmodified.
  2228. In the case of Arm standard platforms using GICv3, if the API is invoked
  2229. from EL3, the function reads the system register ``ICC_IAR0_EL1``, *Interrupt
  2230. Acknowledge Register group 0*. If the API is invoked from S-EL1, the function
  2231. reads the system register ``ICC_IAR1_EL1``, *Interrupt Acknowledge Register
  2232. group 1*. The read changes the state of the highest pending interrupt from
  2233. pending to active in the interrupt controller. The value read is returned
  2234. unmodified.
  2235. The TSP uses this API to start processing of the secure physical timer
  2236. interrupt.
  2237. Function : plat_ic_end_of_interrupt() [mandatory]
  2238. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  2239. ::
  2240. Argument : uint32_t
  2241. Return : void
  2242. This API is used by the CPU to indicate to the platform IC that processing of
  2243. the interrupt corresponding to the id (passed as the parameter) has
  2244. finished. The id should be the same as the id returned by the
  2245. ``plat_ic_acknowledge_interrupt()`` API.
  2246. Arm standard platforms write the id to the *End of Interrupt Register*
  2247. (``GICC_EOIR``) in case of GICv2, and to ``ICC_EOIR0_EL1`` or ``ICC_EOIR1_EL1``
  2248. system register in case of GICv3 depending on where the API is invoked from,
  2249. EL3 or S-EL1. This deactivates the corresponding interrupt in the interrupt
  2250. controller.
  2251. The TSP uses this API to finish processing of the secure physical timer
  2252. interrupt.
  2253. Function : plat_ic_get_interrupt_type() [mandatory]
  2254. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  2255. ::
  2256. Argument : uint32_t
  2257. Return : uint32_t
  2258. This API returns the type of the interrupt id passed as the parameter.
  2259. ``INTR_TYPE_INVAL`` is returned if the id is invalid. If the id is valid, a valid
  2260. interrupt type (one of ``INTR_TYPE_EL3``, ``INTR_TYPE_S_EL1`` and ``INTR_TYPE_NS``) is
  2261. returned depending upon how the interrupt has been configured by the platform
  2262. IC. This API must be invoked at EL3.
  2263. Arm standard platforms using GICv2 configures S-EL1 interrupts as Group0 interrupts
  2264. and Non-secure interrupts as Group1 interrupts. It reads the group value
  2265. corresponding to the interrupt id from the relevant *Interrupt Group Register*
  2266. (``GICD_IGROUPRn``). It uses the group value to determine the type of interrupt.
  2267. In the case of Arm standard platforms using GICv3, both the *Interrupt Group
  2268. Register* (``GICD_IGROUPRn``) and *Interrupt Group Modifier Register*
  2269. (``GICD_IGRPMODRn``) is read to figure out whether the interrupt is configured
  2270. as Group 0 secure interrupt, Group 1 secure interrupt or Group 1 NS interrupt.
  2271. Common helper functions
  2272. -----------------------
  2273. Function : elx_panic()
  2274. ~~~~~~~~~~~~~~~~~~~~~~
  2275. ::
  2276. Argument : void
  2277. Return : void
  2278. This API is called from assembly files when reporting a critical failure
  2279. that has occured in lower EL and is been trapped in EL3. This call
  2280. **must not** return.
  2281. Function : el3_panic()
  2282. ~~~~~~~~~~~~~~~~~~~~~~
  2283. ::
  2284. Argument : void
  2285. Return : void
  2286. This API is called from assembly files when encountering a critical failure that
  2287. cannot be recovered from. This function assumes that it is invoked from a C
  2288. runtime environment i.e. valid stack exists. This call **must not** return.
  2289. Function : panic()
  2290. ~~~~~~~~~~~~~~~~~~
  2291. ::
  2292. Argument : void
  2293. Return : void
  2294. This API called from C files when encountering a critical failure that cannot
  2295. be recovered from. This function in turn prints backtrace (if enabled) and calls
  2296. el3_panic(). This call **must not** return.
  2297. Crash Reporting mechanism (in BL31)
  2298. -----------------------------------
  2299. BL31 implements a crash reporting mechanism which prints the various registers
  2300. of the CPU to enable quick crash analysis and debugging. This mechanism relies
  2301. on the platform implementing ``plat_crash_console_init``,
  2302. ``plat_crash_console_putc`` and ``plat_crash_console_flush``.
  2303. The file ``plat/common/aarch64/crash_console_helpers.S`` contains sample
  2304. implementation of all of them. Platforms may include this file to their
  2305. makefiles in order to benefit from them. By default, they will cause the crash
  2306. output to be routed over the normal console infrastructure and get printed on
  2307. consoles configured to output in crash state. ``console_set_scope()`` can be
  2308. used to control whether a console is used for crash output.
  2309. .. note::
  2310. Platforms are responsible for making sure that they only mark consoles for
  2311. use in the crash scope that are able to support this, i.e. that are written
  2312. in assembly and conform with the register clobber rules for putc()
  2313. (x0-x2, x16-x17) and flush() (x0-x3, x16-x17) crash callbacks.
  2314. In some cases (such as debugging very early crashes that happen before the
  2315. normal boot console can be set up), platforms may want to control crash output
  2316. more explicitly. These platforms may instead provide custom implementations for
  2317. these. They are executed outside of a C environment and without a stack. Many
  2318. console drivers provide functions named ``console_xxx_core_init/putc/flush``
  2319. that are designed to be used by these functions. See Arm platforms (like juno)
  2320. for an example of this.
  2321. Function : plat_crash_console_init [mandatory]
  2322. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  2323. ::
  2324. Argument : void
  2325. Return : int
  2326. This API is used by the crash reporting mechanism to initialize the crash
  2327. console. It must only use the general purpose registers x0 through x7 to do the
  2328. initialization and returns 1 on success.
  2329. Function : plat_crash_console_putc [mandatory]
  2330. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  2331. ::
  2332. Argument : int
  2333. Return : int
  2334. This API is used by the crash reporting mechanism to print a character on the
  2335. designated crash console. It must only use general purpose registers x1 and
  2336. x2 to do its work. The parameter and the return value are in general purpose
  2337. register x0.
  2338. Function : plat_crash_console_flush [mandatory]
  2339. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  2340. ::
  2341. Argument : void
  2342. Return : void
  2343. This API is used by the crash reporting mechanism to force write of all buffered
  2344. data on the designated crash console. It should only use general purpose
  2345. registers x0 through x5 to do its work.
  2346. Function : plat_setup_early_console [optional]
  2347. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  2348. ::
  2349. Argument : void
  2350. Return : void
  2351. This API is used to setup the early console, it is required only if the flag
  2352. ``EARLY_CONSOLE`` is enabled.
  2353. .. _External Abort handling and RAS Support:
  2354. External Abort handling and RAS Support
  2355. ---------------------------------------
  2356. Function : plat_ea_handler
  2357. ~~~~~~~~~~~~~~~~~~~~~~~~~~
  2358. ::
  2359. Argument : int
  2360. Argument : uint64_t
  2361. Argument : void *
  2362. Argument : void *
  2363. Argument : uint64_t
  2364. Return : void
  2365. This function is invoked by the runtime exception handling framework for the
  2366. platform to handle an External Abort received at EL3. The intention of the
  2367. function is to attempt to resolve the cause of External Abort and return;
  2368. if that's not possible then an orderly shutdown of the system is initiated.
  2369. The first parameter (``int ea_reason``) indicates the reason for External Abort.
  2370. Its value is one of ``ERROR_EA_*`` constants defined in ``ea_handle.h``.
  2371. The second parameter (``uint64_t syndrome``) is the respective syndrome
  2372. presented to EL3 after having received the External Abort. Depending on the
  2373. nature of the abort (as can be inferred from the ``ea_reason`` parameter), this
  2374. can be the content of either ``ESR_EL3`` or ``DISR_EL1``.
  2375. The third parameter (``void *cookie``) is unused for now. The fourth parameter
  2376. (``void *handle``) is a pointer to the preempted context. The fifth parameter
  2377. (``uint64_t flags``) indicates the preempted security state. These parameters
  2378. are received from the top-level exception handler.
  2379. This function must be implemented if a platform expects Firmware First handling
  2380. of External Aborts.
  2381. Function : plat_handle_uncontainable_ea
  2382. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  2383. ::
  2384. Argument : int
  2385. Argument : uint64_t
  2386. Return : void
  2387. This function is invoked by the RAS framework when an External Abort of
  2388. Uncontainable type is received at EL3. Due to the critical nature of
  2389. Uncontainable errors, the intention of this function is to initiate orderly
  2390. shutdown of the system, and is not expected to return.
  2391. This function must be implemented in assembly.
  2392. The first and second parameters are the same as that of ``plat_ea_handler``.
  2393. The default implementation of this function calls
  2394. ``report_unhandled_exception``.
  2395. Function : plat_handle_double_fault
  2396. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  2397. ::
  2398. Argument : int
  2399. Argument : uint64_t
  2400. Return : void
  2401. This function is invoked by the RAS framework when another External Abort is
  2402. received at EL3 while one is already being handled. I.e., a call to
  2403. ``plat_ea_handler`` is outstanding. Due to its critical nature, the intention of
  2404. this function is to initiate orderly shutdown of the system, and is not expected
  2405. recover or return.
  2406. This function must be implemented in assembly.
  2407. The first and second parameters are the same as that of ``plat_ea_handler``.
  2408. The default implementation of this function calls
  2409. ``report_unhandled_exception``.
  2410. Function : plat_handle_el3_ea
  2411. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  2412. ::
  2413. Return : void
  2414. This function is invoked when an External Abort is received while executing in
  2415. EL3. Due to its critical nature, the intention of this function is to initiate
  2416. orderly shutdown of the system, and is not expected recover or return.
  2417. This function must be implemented in assembly.
  2418. The default implementation of this function calls
  2419. ``report_unhandled_exception``.
  2420. Function : plat_handle_rng_trap
  2421. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  2422. ::
  2423. Argument : uint64_t
  2424. Argument : cpu_context_t *
  2425. Return : int
  2426. This function is invoked by BL31's exception handler when there is a synchronous
  2427. system register trap caused by access to the RNDR or RNDRRS registers. It allows
  2428. platforms implementing ``FEAT_RNG_TRAP`` and enabling ``ENABLE_FEAT_RNG_TRAP`` to
  2429. emulate those system registers by returing back some entropy to the lower EL.
  2430. The first parameter (``uint64_t esr_el3``) contains the content of the ESR_EL3
  2431. syndrome register, which encodes the instruction that was trapped. The interesting
  2432. information in there is the target register (``get_sysreg_iss_rt()``).
  2433. The second parameter (``cpu_context_t *ctx``) represents the CPU state in the
  2434. lower exception level, at the time when the execution of the ``mrs`` instruction
  2435. was trapped. Its content can be changed, to put the entropy into the target
  2436. register.
  2437. The return value indicates how to proceed:
  2438. - When returning ``TRAP_RET_UNHANDLED`` (-1), the machine will panic.
  2439. - When returning ``TRAP_RET_REPEAT`` (0), the exception handler will return
  2440. to the same instruction, so its execution will be repeated.
  2441. - When returning ``TRAP_RET_CONTINUE`` (1), the exception handler will return
  2442. to the next instruction.
  2443. This function needs to be implemented by a platform if it enables FEAT_RNG_TRAP.
  2444. Function : plat_handle_impdef_trap
  2445. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  2446. ::
  2447. Argument : uint64_t
  2448. Argument : cpu_context_t *
  2449. Return : int
  2450. This function is invoked by BL31's exception handler when there is a synchronous
  2451. system register trap caused by access to the implementation defined registers.
  2452. It allows platforms enabling ``IMPDEF_SYSREG_TRAP`` to emulate those system
  2453. registers choosing to program bits of their choice.
  2454. The first parameter (``uint64_t esr_el3``) contains the content of the ESR_EL3
  2455. syndrome register, which encodes the instruction that was trapped.
  2456. The second parameter (``cpu_context_t *ctx``) represents the CPU state in the
  2457. lower exception level, at the time when the execution of the ``mrs`` instruction
  2458. was trapped.
  2459. The return value indicates how to proceed:
  2460. - When returning ``TRAP_RET_UNHANDLED`` (-1), the machine will panic.
  2461. - When returning ``TRAP_RET_REPEAT`` (0), the exception handler will return
  2462. to the same instruction, so its execution will be repeated.
  2463. - When returning ``TRAP_RET_CONTINUE`` (1), the exception handler will return
  2464. to the next instruction.
  2465. This function needs to be implemented by a platform if it enables
  2466. IMPDEF_SYSREG_TRAP.
  2467. Build flags
  2468. -----------
  2469. There are some build flags which can be defined by the platform to control
  2470. inclusion or exclusion of certain BL stages from the FIP image. These flags
  2471. need to be defined in the platform makefile which will get included by the
  2472. build system.
  2473. - **NEED_BL33**
  2474. By default, this flag is defined ``yes`` by the build system and ``BL33``
  2475. build option should be supplied as a build option. The platform has the
  2476. option of excluding the BL33 image in the ``fip`` image by defining this flag
  2477. to ``no``. If any of the options ``EL3_PAYLOAD_BASE`` or ``PRELOADED_BL33_BASE``
  2478. are used, this flag will be set to ``no`` automatically.
  2479. - **ARM_ARCH_MAJOR and ARM_ARCH_MINOR**
  2480. By default, ARM_ARCH_MAJOR.ARM_ARCH_MINOR is set to 8.0 in ``defaults.mk``,
  2481. if the platform makefile/build defines or uses the correct ARM_ARCH_MAJOR and
  2482. ARM_ARCH_MINOR then mandatory Architectural features available for that Arch
  2483. version will be enabled by default and any optional Arch feature supported by
  2484. the Architecture and available in TF-A can be enabled from platform specific
  2485. makefile. Look up to ``arch_features.mk`` for details pertaining to mandatory
  2486. and optional Arch specific features.
  2487. Platform include paths
  2488. ----------------------
  2489. Platforms are allowed to add more include paths to be passed to the compiler.
  2490. The ``PLAT_INCLUDES`` variable is used for this purpose. This is needed in
  2491. particular for the file ``platform_def.h``.
  2492. Example:
  2493. .. code:: c
  2494. PLAT_INCLUDES += -Iinclude/plat/myplat/include
  2495. C Library
  2496. ---------
  2497. To avoid subtle toolchain behavioral dependencies, the header files provided
  2498. by the compiler are not used. The software is built with the ``-nostdinc`` flag
  2499. to ensure no headers are included from the toolchain inadvertently. Instead the
  2500. required headers are included in the TF-A source tree. The library only
  2501. contains those C library definitions required by the local implementation. If
  2502. more functionality is required, the needed library functions will need to be
  2503. added to the local implementation.
  2504. Some C headers have been obtained from `FreeBSD`_ and `SCC`_, while others have
  2505. been written specifically for TF-A. Some implementation files have been obtained
  2506. from `FreeBSD`_, others have been written specifically for TF-A as well. The
  2507. files can be found in ``include/lib/libc`` and ``lib/libc``.
  2508. SCC can be found in http://www.simple-cc.org/. A copy of the `FreeBSD`_ sources
  2509. can be obtained from http://github.com/freebsd/freebsd.
  2510. Storage abstraction layer
  2511. -------------------------
  2512. In order to improve platform independence and portability a storage abstraction
  2513. layer is used to load data from non-volatile platform storage. Currently
  2514. storage access is only required by BL1 and BL2 phases and performed inside the
  2515. ``load_image()`` function in ``bl_common.c``.
  2516. .. uml:: resources/diagrams/plantuml/io_framework_usage_overview.puml
  2517. It is mandatory to implement at least one storage driver. For the Arm
  2518. development platforms the Firmware Image Package (FIP) driver is provided as
  2519. the default means to load data from storage (see :ref:`firmware_design_fip`).
  2520. The storage layer is described in the header file
  2521. ``include/drivers/io/io_storage.h``. The implementation of the common library is
  2522. in ``drivers/io/io_storage.c`` and the driver files are located in
  2523. ``drivers/io/``.
  2524. .. uml:: resources/diagrams/plantuml/io_arm_class_diagram.puml
  2525. Each IO driver must provide ``io_dev_*`` structures, as described in
  2526. ``drivers/io/io_driver.h``. These are returned via a mandatory registration
  2527. function that is called on platform initialization. The semi-hosting driver
  2528. implementation in ``io_semihosting.c`` can be used as an example.
  2529. Each platform should register devices and their drivers via the storage
  2530. abstraction layer. These drivers then need to be initialized by bootloader
  2531. phases as required in their respective ``blx_platform_setup()`` functions.
  2532. .. uml:: resources/diagrams/plantuml/io_dev_registration.puml
  2533. The storage abstraction layer provides mechanisms (``io_dev_init()``) to
  2534. initialize storage devices before IO operations are called.
  2535. .. uml:: resources/diagrams/plantuml/io_dev_init_and_check.puml
  2536. The basic operations supported by the layer
  2537. include ``open()``, ``close()``, ``read()``, ``write()``, ``size()`` and ``seek()``.
  2538. Drivers do not have to implement all operations, but each platform must
  2539. provide at least one driver for a device capable of supporting generic
  2540. operations such as loading a bootloader image.
  2541. The current implementation only allows for known images to be loaded by the
  2542. firmware. These images are specified by using their identifiers, as defined in
  2543. ``include/plat/common/common_def.h`` (or a separate header file included from
  2544. there). The platform layer (``plat_get_image_source()``) then returns a reference
  2545. to a device and a driver-specific ``spec`` which will be understood by the driver
  2546. to allow access to the image data.
  2547. The layer is designed in such a way that is it possible to chain drivers with
  2548. other drivers. For example, file-system drivers may be implemented on top of
  2549. physical block devices, both represented by IO devices with corresponding
  2550. drivers. In such a case, the file-system "binding" with the block device may
  2551. be deferred until the file-system device is initialised.
  2552. The abstraction currently depends on structures being statically allocated
  2553. by the drivers and callers, as the system does not yet provide a means of
  2554. dynamically allocating memory. This may also have the affect of limiting the
  2555. amount of open resources per driver.
  2556. Measured Boot Platform Interface
  2557. --------------------------------
  2558. Enabling the MEASURED_BOOT flag adds extra platform requirements. Please refer
  2559. to :ref:`Measured Boot Design` for more details.
  2560. --------------
  2561. *Copyright (c) 2013-2024, Arm Limited and Contributors. All rights reserved.*
  2562. .. _PSCI: https://developer.arm.com/documentation/den0022/latest/
  2563. .. _Arm Generic Interrupt Controller version 2.0 (GICv2): http://infocenter.arm.com/help/topic/com.arm.doc.ihi0048b/index.html
  2564. .. _3.0 (GICv3): http://infocenter.arm.com/help/topic/com.arm.doc.ihi0069b/index.html
  2565. .. _FreeBSD: https://www.freebsd.org
  2566. .. _SCC: http://www.simple-cc.org/
  2567. .. _DRTM: https://developer.arm.com/documentation/den0113/a