changelog.yaml 29 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542
  1. #
  2. # Copyright (c) 2021-2024, Arm Limited. All rights reserved.
  3. #
  4. # SPDX-License-Identifier: BSD-3-Clause
  5. #
  6. #
  7. # The following block describes the top-level sections of the changelog. Commits are categorized
  8. # into these top-level sections based on the commit message "type":
  9. #
  10. # feat(xyz): add the xyz feature
  11. # ^^^^
  12. #
  13. sections:
  14. - title: New Features
  15. description: A new feature
  16. type: feat
  17. - title: Resolved Issues
  18. description: A bug fix
  19. type: fix
  20. - title: Build System
  21. description: Changes that affect the build system or external dependencies
  22. type: build
  23. hidden: true
  24. - title: Continuous Integration
  25. description: Changes to our CI configuration files and scripts
  26. type: ci
  27. hidden: true
  28. - title: Documentation
  29. description: Documentation-only changes
  30. type: docs
  31. hidden: true
  32. - title: Performance Improvements
  33. description: A code change that improves performance
  34. type: perf
  35. hidden: true
  36. - title: Code Refactoring
  37. description: A code change that neither fixes a bug nor adds a feature
  38. type: refactor
  39. hidden: true
  40. - title: Reverted Changes
  41. description: Changes that revert a previous change
  42. type: revert
  43. hidden: true
  44. - title: Style
  45. description: Changes that do not affect the meaning of the code (white-space, formatting, missing semi-colons, etc.)
  46. type: style
  47. hidden: true
  48. - title: Tests
  49. description: Adding missing tests or correcting existing tests
  50. type: test
  51. hidden: true
  52. - title: Miscellaneous
  53. description: Any other change
  54. type: chore
  55. hidden: true
  56. #
  57. # The following block describes the sub-sections of the changelog. These sub-sections may appear in
  58. # any of the top-level sections, and describe the individual components that a change may relate to.
  59. #
  60. # Sub-sections have an optional associated commit message "scope":
  61. #
  62. # feat(xyz): add the xyz feature
  63. # ^^^
  64. #
  65. # This file also describes deprecated scopes, which are scopes that were used before we introduced
  66. # scope enforcement. These will not pass CI checks when used, but they will be used to generate the
  67. # changelog.
  68. #
  69. # Please note that new scopes should be kebab-case: https://en.wiktionary.org/wiki/kebab_case
  70. #
  71. subsections:
  72. - title: Architecture
  73. subsections:
  74. - title: Activity Monitors Extension (FEAT_AMU)
  75. scope: amu
  76. - title: Branch Record Buffer Extension (FEAT_BRBE)
  77. scope: brbe
  78. - title: Branch Target Identification Extension
  79. scope: bti
  80. - title: Confidential Compute Architecture (CCA)
  81. scope: cca
  82. - title: Extended Cache Index (FEAT_CCIDX)
  83. scope: ccidx
  84. - title: Extended Translation Control Register (FEAT_TCR2).
  85. scope: tcr2
  86. - title: Fine-grained Traps 2 (FEAT_FGT2).
  87. scope: fgt2
  88. - title: CPU feature / ID register handling in general
  89. scope: cpufeat
  90. - title: Debug Extension (FEAT_Debugv8p9)
  91. scope: debugv8p9
  92. - title: Guarded Control Stack (FEAT_GCS)
  93. scope: gcs
  94. - title: Support for the `HCRX_EL2` register (FEAT_HCX)
  95. scope: hcx
  96. - title: Memory Partitioning and Monitoring (MPAM) Extension (FEAT_MPAM)
  97. scope: mpam
  98. - title: Memory Tagging Extension2
  99. scope: mte2
  100. deprecated:
  101. - mte
  102. - title: Pointer Authentication Extension
  103. scope: pauth
  104. - title: Performance Monitors Extension (FEAT_PMUv3)
  105. scope: pmu
  106. - title: Trapping support for RNDR/RNDRRS (FEAT_RNG_TRAP)
  107. scope: rng-trap
  108. - title: Scalable Matrix Extension (FEAT_SME, FEAT_SME2)
  109. scope: sme
  110. - title: Statistical profiling Extension (FEAT_SPE)
  111. scope: spe
  112. - title: Scalable Vector Extension (FEAT_SVE)
  113. scope: sve
  114. - title: System Register Trace Extensions (FEAT_ETMv4, FEAT_ETE and FEAT_ETEv1.1)
  115. scope: sys-reg-trace
  116. deprecated:
  117. - sys_reg_trace
  118. - title: Trace Buffer Extension (FEAT_TRBE)
  119. scope: trbe
  120. - title: Self-hosted Trace Extensions (FEAT_TRF)
  121. scope: trf
  122. - title: DynamIQ Shared Unit (DSU)
  123. scope: dsu
  124. - title: Extension to SCTLR_ELx (FEAT_SCTLR2)
  125. scope: sctlr2
  126. deprecated:
  127. - feat_sctlr2
  128. - title: 128-bit Translation Tables (FEAT_D128)
  129. scope: d128
  130. - title: Translation Hardening Extension (FEAT_THE)
  131. scope: the
  132. - title: Platforms
  133. scope: platforms
  134. deprecated:
  135. - plat/common
  136. - plat
  137. subsections:
  138. - title: Allwinner
  139. scope: allwinner
  140. deprecated:
  141. - plat/allwinner
  142. - title: Arm
  143. scope: arm
  144. deprecated:
  145. - plat/arm
  146. subsections:
  147. - title: Common
  148. scope: common
  149. - title: A5DS
  150. scope: a5ds
  151. - title: CSS
  152. scope: css
  153. deprecated:
  154. - plat/arm/css
  155. - plat/css
  156. - title: FPGA
  157. scope: fpga
  158. deprecated:
  159. - arm_fgpa
  160. - plat/arm_fpga
  161. - arm/fpga
  162. - title: FVP
  163. scope: fvp
  164. deprecated:
  165. - plat/fvp
  166. - fvp/tsp_manifest
  167. - title: FVP-R
  168. scope: fvp-r
  169. deprecated:
  170. - fvp_r
  171. - title: FVP Versatile Express
  172. scope: fvp_ve
  173. - title: Juno
  174. scope: juno
  175. - title: Morello
  176. scope: morello
  177. - title: N1SDP
  178. scope: n1sdp
  179. - title: Neoverse-RD
  180. scope: neoverse-rd
  181. subsections:
  182. - title: SGI-575
  183. scope: sgi575
  184. - title: RD-E1-Edge
  185. scope: rde1edge
  186. - title: RD-N1-Edge
  187. scope: rdn1edge
  188. - title: RD-V1
  189. scope: rdv1
  190. - title: RD-V1-MC
  191. scope: rdv1mc
  192. - title: RD-N2
  193. scope: rdn2
  194. - title: RD-V3
  195. scope: rdv3
  196. deprecated:
  197. - board/rdn2
  198. - rdfremont
  199. deprecated:
  200. - neoverse
  201. - title: TC
  202. scope: tc
  203. deprecated:
  204. - plat/tc
  205. subsections:
  206. - title: TC0
  207. scope: tc0
  208. deprecated:
  209. - plat/tc0
  210. - title: Corstone-1000
  211. scope: corstone-1000
  212. deprecated:
  213. - corstone1000
  214. - title: Automotive RD
  215. scope: automotive_rd
  216. subsections:
  217. - title: RD-1 AE
  218. scope: rd1ae
  219. - title: Aspeed
  220. scope: aspeed
  221. subsections:
  222. - title: AST2700
  223. scope: ast2700
  224. - title: Broadcom
  225. scope: brcm
  226. - title: Cadence
  227. scope: cadence
  228. - title: HiSilicon
  229. scope: hisilicon
  230. subsections:
  231. - title: HiKey
  232. scope: hikey
  233. - title: HiKey960
  234. scope: hikey960
  235. - title: Poplar
  236. scope: poplar
  237. - title: Intel
  238. scope: intel
  239. subsections:
  240. - title: SoC
  241. scope: soc
  242. - title: Marvell
  243. scope: marvell
  244. deprecated:
  245. - plat/marvell
  246. subsections:
  247. - title: Armada
  248. scope: armada
  249. deprecated:
  250. - plat/marvell/armada
  251. subsections:
  252. - title: A3K
  253. scope: a3k
  254. deprecated:
  255. - plat/marvell/a3k
  256. - title: A8K
  257. scope: a8k
  258. deprecated:
  259. - plat/marvell/a8k
  260. - title: MediaTek
  261. scope: mediatek
  262. deprecated:
  263. - plat/mediatek/common
  264. - plat/mediatek
  265. subsections:
  266. - title: MT8183
  267. scope: mt8183
  268. deprecated:
  269. - plat/mediatek/mt8183
  270. - title: MT8186
  271. scope: mt8186
  272. deprecated:
  273. - plat/mediatek/mt8186
  274. - mt8186-emi-mpu
  275. - title: MT8188
  276. scope: mt8188
  277. - title: MT8192
  278. scope: mt8192
  279. deprecated:
  280. - plat/mdeiatek/mt8192
  281. - title: MT8195
  282. scope: mt8195
  283. deprecated:
  284. - plat/mediatek/me8195
  285. - plat/mediatek/mt8195
  286. - plat/mdeiatek/mt8195
  287. - title: NVIDIA
  288. scope: nvidia
  289. subsections:
  290. - title: Tegra
  291. scope: tegra
  292. deprecated:
  293. - plat/tegra
  294. subsections:
  295. - title: Tegra 132
  296. scope: tegra132
  297. - title: Tegra 194
  298. scope: tegra194
  299. - title: Tegra 210
  300. scope: tegra210
  301. - title: NXP
  302. scope: nxp
  303. deprecated:
  304. - plat/nxp
  305. - plat/nxp/common
  306. subsections:
  307. - title: i.MX
  308. scope: imx
  309. deprecated:
  310. - plat/imx
  311. - plat/imx/imx
  312. subsections:
  313. - title: i.MX 8M
  314. scope: imx8m
  315. deprecated:
  316. - plat/imx8m
  317. - plat/imx/imx8m
  318. subsections:
  319. - title: i.MX 8M Nano
  320. scope: imx8mn
  321. deprecated:
  322. - plat/imx/imx8m/imx8mn
  323. - title: i.MX 8M Mini
  324. scope: imx8mm
  325. deprecated:
  326. - plat/imx/imx8m/imx8mm
  327. - title: i.MX 8M Plus
  328. scope: imx8mp
  329. deprecated:
  330. - plat/imx/imx8m/imx8mp
  331. - title: i.MX 8Q
  332. scope: imx8mq
  333. deprecated:
  334. - plat/imx/imx8m/imx8mq
  335. - title: i.MX 8
  336. scope: imx8
  337. - title: i.MX 8ULP
  338. scope: imx8ulp
  339. - title: i.MX 9
  340. scope: imx9
  341. subsections:
  342. - title: i.MX93
  343. scope: imx93
  344. - title: Layerscape
  345. scope: layerscape
  346. deprecated:
  347. - docs/nxp/layerscape
  348. subsections:
  349. - title: LS1028A
  350. scope: ls1028a
  351. deprecated:
  352. - plat/nxp/ls1028a
  353. subsections:
  354. - title: LS1028ARDB
  355. scope: ls1028ardb
  356. deprecated:
  357. - plat/nxp/ls1028ardb
  358. - title: LS1043A
  359. scope: ls1043a
  360. deprecated:
  361. - plat/nxp/ls1043a
  362. subsections:
  363. - title: LS1043ARDB
  364. scope: ls1043ardb
  365. deprecated:
  366. - plat/nxp/ls1043ardb
  367. - title: LX2
  368. scope: lx2
  369. deprecated:
  370. - plat/nxp/lx2
  371. subsections:
  372. - title: LX216
  373. scope: lx216
  374. deprecated:
  375. - plat/nxp/lx216x
  376. subsections:
  377. - title: LX2160
  378. scope: lx2160
  379. deprecated:
  380. - plat/soc-lx2160
  381. - title: LS1046A
  382. scope: ls1046a
  383. subsections:
  384. - title: LS1046ARDB
  385. scope: ls1046ardb
  386. - title: LS1046AFRWY
  387. scope: ls1046afrwy
  388. - title: LS1046AQDS
  389. scope: ls1046aqds
  390. - title: LS1088A
  391. scope: ls1088a
  392. subsections:
  393. - title: LS1088ARDB
  394. scope: ls1088ardb
  395. - title: LS1088AQDS
  396. scope: ls1088aqds
  397. - title: S32G274A
  398. scope: s32g274a
  399. subsections:
  400. - title: S32G274ARDB
  401. scope: s32g274ardb
  402. - title: QEMU
  403. scope: qemu
  404. deprecated:
  405. - plat/qemu
  406. subsections:
  407. - title: SBSA
  408. scope: qemu-sbsa
  409. deprecated:
  410. - qemu_sbsa
  411. - title: QTI
  412. scope: qti
  413. deprecated:
  414. - plat/qti
  415. subsections:
  416. - title: SC1780
  417. scope: sc7180
  418. deprecated:
  419. - plat/qti/sc7180
  420. - title: SC7280
  421. scope: sc7280
  422. deprecated:
  423. - plat/qti/sc7280
  424. - title: MSM8916
  425. scope: msm8916
  426. - title: Raspberry Pi
  427. scope: rpi
  428. subsections:
  429. - title: Raspberry Pi 3
  430. scope: rpi3
  431. - title: Raspberry Pi 4
  432. scope: rpi4
  433. - title: Raspberry Pi 5
  434. scope: rpi5
  435. - title: Renesas
  436. scope: renesas
  437. subsections:
  438. - title: R-Car
  439. scope: rcar
  440. deprecated:
  441. - plat/rcar
  442. subsections:
  443. - title: R-Car 3
  444. scope: rcar3
  445. deprecated:
  446. - plat/rcar3
  447. - title: Rockchip
  448. scope: rockchip
  449. subsections:
  450. - title: RK3399
  451. scope: rk3399
  452. deprecated:
  453. - rockchip/rk3399
  454. - rk3399/suspend
  455. - title: RK3328
  456. scope: rk3328
  457. - title: RK3588
  458. scope: rk3588
  459. - title: Socionext
  460. scope: socionext
  461. subsections:
  462. - title: Synquacer
  463. scope: synquacer
  464. deprecated:
  465. - plat/synquacer
  466. - title: ST
  467. scope: st
  468. deprecated:
  469. - plat/st
  470. subsections:
  471. - title: STM32MP1
  472. scope: stm32mp1
  473. deprecated:
  474. - plat/st/stm32mp1
  475. subsections:
  476. - title: STM32MP13
  477. scope: stm32mp13
  478. - title: STM32MP15
  479. scope: stm32mp15
  480. - title: STM32MP2
  481. scope: stm32mp2
  482. subsections:
  483. - title: STM32MP25
  484. scope: stm32mp25
  485. - title: Texas Instruments
  486. scope: ti
  487. subsections:
  488. - title: K3
  489. scope: k3
  490. deprecated:
  491. - ti-k3
  492. - title: Xilinx
  493. scope: xilinx
  494. deprecated:
  495. - plat/xilinx
  496. subsections:
  497. - title: DCC (Debug Communication Channel)
  498. scope: dcc
  499. - title: Versal
  500. scope: versal
  501. deprecated:
  502. - plat/xilinx/versal/include
  503. - plat/xilinx/versal
  504. - plat/versal
  505. - title: Versal NET
  506. scope: versal-net
  507. deprecated:
  508. - versal_net
  509. - title: ZynqMP
  510. scope: zynqmp
  511. deprecated:
  512. - plat/zynqmp
  513. - plat/xilinx/zynqmp
  514. - title: AMD
  515. scope: amd
  516. subsections:
  517. - title: Versal Gen 2
  518. scope: versal2
  519. - title: Nuvoton
  520. scope: nuvoton
  521. subsections:
  522. - title: npcm845x
  523. scope: npcm845x
  524. - title: Bootloader Images
  525. scope: bl
  526. deprecated:
  527. - bl_common
  528. subsections:
  529. - title: BL1
  530. scope: bl1
  531. - title: BL2
  532. scope: bl2
  533. - title: BL31
  534. scope: bl31
  535. - title: BL32
  536. scope: bl32
  537. subsections:
  538. - title: TSP
  539. scope: tsp
  540. - title: Services
  541. scope: services
  542. deprecated:
  543. - std_svc
  544. subsections:
  545. - title: FF-A
  546. scope: ff-a
  547. deprecated:
  548. - ffa
  549. - title: RME
  550. scope: rme
  551. deprecated:
  552. - rme/fid
  553. subsections:
  554. - title: TRP
  555. scope: trp
  556. - title: RMMD
  557. scope: rmmd
  558. - title: RMM
  559. scope: rmm
  560. - title: SPM
  561. scope: spm
  562. subsections:
  563. - title: EL3 SPM
  564. scope: el3-spm
  565. - title: EL3 SPMC
  566. scope: el3-spmc
  567. deprecated:
  568. - spmc
  569. - title: SPMD
  570. scope: spmd
  571. - title: SPM MM
  572. scope: spm-mm
  573. - title: DRTM
  574. scope: drtm
  575. - title: TRNG
  576. scope: trng
  577. - title: ERRATA ABI
  578. scope: errata-abi
  579. deprecated:
  580. - errata_abi
  581. - title: ChromeOS
  582. scope: cros
  583. - title: Secure Payload Dispatcher
  584. scope: spd
  585. subsections:
  586. - title: OP-TEE
  587. scope: optee
  588. deprecated:
  589. - lib/optee
  590. - title: ProvenCore
  591. scope: pncd
  592. - title: Trusted Little Kernel
  593. scope: tlkd
  594. - title: Trusty
  595. scope: trusty
  596. - title: TSP
  597. scope: tspd
  598. - title: Libraries
  599. scope: lib
  600. subsections:
  601. - title: CPU Support
  602. scope: cpus
  603. deprecated:
  604. - cpu
  605. - errata
  606. - errata_report
  607. - title: EL3 Runtime
  608. scope: el3-runtime
  609. deprecated:
  610. - el3_runtime
  611. subsections:
  612. - title: Context Management
  613. scope: cm
  614. - title: RAS
  615. scope: ras
  616. - title: SIMD
  617. scope: simd
  618. - title: FCONF
  619. scope: fconf
  620. - title: MPMM
  621. scope: mpmm
  622. - title: PSCI
  623. scope: psci
  624. - title: ROMlib
  625. scope: romlib
  626. - title: GPT
  627. scope: gpt
  628. deprecated:
  629. - gpt_rme
  630. - title: SMCCC
  631. scope: smccc
  632. - title: Translation Tables
  633. scope: xlat
  634. - title: C Standard Library
  635. scope: libc
  636. - title: Locks
  637. scope: locks
  638. - title: PSA
  639. scope: psa
  640. deprecated:
  641. - lib/psa
  642. - title: DICE Protection Environment
  643. scope: dice
  644. - title: Context Management
  645. scope: context-mgmt
  646. deprecated:
  647. - context mgmt
  648. - title: Semihosting
  649. scope: semihosting
  650. - title: Firmware Handoff
  651. scope: handoff
  652. - title: Exception Handling Framework (EHF)
  653. scope: ehf
  654. - title: Drivers
  655. subsections:
  656. - title: Authentication
  657. scope: auth
  658. deprecated:
  659. - driver/auth
  660. subsections:
  661. - title: CryptoCell-713
  662. scope: cc-713
  663. - title: Crypto
  664. scope: crypto
  665. - title: mbedTLS
  666. scope: mbedtls
  667. - title: mbedTLS-PSA
  668. scope: mbedtls-psa
  669. - title: Console
  670. scope: console
  671. - title: Delay Timer
  672. scope: delay-timer
  673. - title: Generic Clock
  674. scope: clk
  675. - title: FWU
  676. scope: fwu
  677. deprecated:
  678. - fwu_metadata
  679. - title: I/O
  680. scope: io
  681. subsections:
  682. - title: MTD
  683. scope: mtd
  684. deprecated:
  685. - io_mtd
  686. - title: Measured Boot
  687. scope: measured-boot
  688. deprecated:
  689. - measured boot
  690. - measured_boot
  691. - title: MMC
  692. scope: mmc
  693. deprecated:
  694. - drivers/mmc
  695. - title: MTD
  696. scope: mtd
  697. deprecated:
  698. - drivers/mtd
  699. subsections:
  700. - title: NAND
  701. scope: nand
  702. subsections:
  703. - title: SPI NAND
  704. scope: spi-nand
  705. deprecated:
  706. - spi_nand
  707. - title: GUID Partition Tables Support
  708. scope: guid-partition
  709. deprecated:
  710. - partition
  711. - title: SCMI
  712. scope: scmi
  713. deprecated:
  714. - scmi_common
  715. - drivers/scmi-msg
  716. - scmi-msg
  717. - title: UFS
  718. scope: ufs
  719. - title: Arm
  720. scope: arm-drivers
  721. subsections:
  722. - title: Ethos-N
  723. scope: ethos-n
  724. deprecated:
  725. - drivers/arm/ethosn
  726. - title: GIC
  727. scope: gic
  728. subsections:
  729. - title: GICv3
  730. scope: gicv3
  731. deprecated:
  732. - gicv3/multichip
  733. subsections:
  734. - title: GIC-600
  735. scope: gic600
  736. - title: GIC-600AE
  737. scope: gic600ae
  738. - title: GICv2
  739. scope: gicv2
  740. - title: SMMU
  741. scope: smmu
  742. - title: MHU
  743. scope: mhu
  744. deprecated:
  745. - drivers/arm/mhu
  746. - title: RSE
  747. scope: rse
  748. deprecated:
  749. - drivers/arm/rss
  750. - rss
  751. - title: TZC
  752. scope: tzc
  753. subsections:
  754. - title: TZC-400
  755. scope: tzc400
  756. deprecated:
  757. - drivers/tzc400
  758. - title: TZC-380
  759. scope: tzc380
  760. deprecated:
  761. - drivers/tzc380
  762. - title: SBSA
  763. scope: sbsa
  764. - title: Marvell
  765. scope: marvell-drivers
  766. subsections:
  767. - title: COMPHY
  768. scope: marvell-comphy
  769. deprecated:
  770. - drivers/marvell/comphy
  771. subsections:
  772. - title: Armada 3700
  773. scope: marvell-comphy-3700
  774. deprecated:
  775. - drivers/marvell/comphy-3700
  776. - title: CP110
  777. scope: marvell-comphy-cp110
  778. deprecated:
  779. - drivers/marvell/comphy-cp110
  780. - title: UART
  781. scope: marvell-uart
  782. deprecated:
  783. - plat/marvell/uart
  784. - title: Armada
  785. scope: armada-drivers
  786. subsections:
  787. - title: A3K
  788. scope: a3k-drivers
  789. subsections:
  790. - title: A3720
  791. scope: a3720-uart
  792. deprecated:
  793. - plat/marvell/a3720/uart
  794. - title: MediaTek
  795. scope: mediatek-drivers
  796. subsections:
  797. - title: APU
  798. scope: mediatek-apu
  799. deprecated:
  800. - plat/mediatek/apu
  801. - title: EMI MPU
  802. scope: mediatek-emi-mpu
  803. deprecated:
  804. - plat/mediatek/mpu
  805. - title: PMIC Wrapper
  806. scope: mediatek-pmic-wrapper
  807. deprecated:
  808. - plat/mediatek/pmic_wrap
  809. - title: MT8192
  810. scope: mt8192-drivers
  811. subsections:
  812. - title: SPM
  813. scope: mt8192-spm
  814. deprecated:
  815. - mediatek/mt8192/spm
  816. - title: NXP
  817. scope: nxp-drivers
  818. subsections:
  819. - title: DCFG
  820. scope: nxp-dcfg
  821. deprecated:
  822. - driver/nxp/dcfg
  823. - title: FLEXSPI
  824. scope: flexspi
  825. deprecated:
  826. - include/drivers/flexspi
  827. - driver/nxp/xspi
  828. - title: SCFG
  829. scope: nxp-scfg
  830. deprecated:
  831. - nxp/scfg
  832. - title: SFP
  833. scope: nxp-sfp
  834. deprecated:
  835. - drivers/nxp/sfp
  836. - title: QSPI
  837. scope: nxp-qspi
  838. - title: NXP Crypto
  839. scope: nxp-crypto
  840. - title: DDR
  841. scope: nxp-ddr
  842. - title: GIC
  843. scope: nxp-gic
  844. - title: CSU
  845. scope: nxp-csu
  846. - title: IFC NAND
  847. scope: nxp-ifc-nand
  848. - title: IFC NOR
  849. scope: nxp-ifc-nor
  850. - title: TZC-380
  851. scope: nxp-tzc380
  852. - title: TRDC
  853. scope: imx-trdc
  854. - title: Clock
  855. scope: nxp-clk
  856. - title: Renesas
  857. scope: renesas-drivers
  858. subsections:
  859. - title: R-Car3
  860. scope: rcar3-drivers
  861. deprecated:
  862. - drivers/rcar3
  863. - title: ST
  864. scope: st-drivers
  865. deprecated:
  866. - drivers/st
  867. subsections:
  868. - title: BSEC
  869. scope: st-bsec
  870. - title: Clock
  871. scope: st-clock
  872. deprecated:
  873. - stm32mp_clk
  874. - drivers/st/clk
  875. - stm32mp1_clk
  876. - title: Crypto
  877. scope: st-crypto
  878. - title: DDR
  879. scope: st-ddr
  880. - title: I/O
  881. scope: st-io-drivers
  882. subsections:
  883. - title: STM32 Image
  884. scope: st-io-stm32image
  885. deprecated:
  886. - io-stm32image
  887. - io_stm32image
  888. - title: I2C
  889. scope: st-i2c
  890. - title: FMC
  891. scope: st-fmc
  892. - title: GPIO
  893. scope: st-gpio
  894. - title: SDMMC2
  895. scope: st-sdmmc2
  896. deprecated:
  897. - stm32_sdmmc2
  898. - title: ST PMIC
  899. scope: st-pmic
  900. deprecated:
  901. - drivers/st/pmic
  902. - title: STPMIC1
  903. scope: stpmic1
  904. - title: Regulator
  905. scope: st-regulator
  906. - title: Reset
  907. scope: st-reset
  908. - title: SPI
  909. scope: st-spi
  910. - title: UART
  911. scope: st-uart
  912. subsections:
  913. - title: STM32 Console
  914. scope: stm32-console
  915. deprecated:
  916. - stm32_console
  917. - title: USB
  918. scope: st-usb
  919. deprecated:
  920. - drivers/st/usb
  921. - title: Watchdog
  922. scope: st-iwdg
  923. - title: USB
  924. scope: usb
  925. deprecated:
  926. - drivers/usb
  927. - title: Miscellaneous
  928. subsections:
  929. - title: AArch64
  930. scope: aarch64
  931. - title: Debug
  932. scope: debug
  933. deprecated:
  934. - common/debug
  935. - title: CRC32
  936. scope: crc32
  937. subsections:
  938. - title: Hardware CRC32
  939. scope: hw-crc32
  940. deprecated:
  941. - hw_crc
  942. - hw_crc32
  943. - title: Software CRC32
  944. scope: sw-crc32
  945. deprecated:
  946. - sw_crc32
  947. - title: DT Bindings
  948. scope: dt-bindings
  949. - title: FDT Wrappers
  950. scope: fdt-wrappers
  951. - title: FDTs
  952. scope: fdts
  953. deprecated:
  954. - fdt
  955. subsections:
  956. - title: Morello
  957. scope: morello-fdts
  958. deprecated:
  959. - fdts/morello
  960. - title: STM32MP1
  961. scope: stm32mp1-fdts
  962. deprecated:
  963. - fdts stm32mp1
  964. subsections:
  965. - title: STM32MP13
  966. scope: stm32mp13-fdts
  967. - title: STM32MP15
  968. scope: stm32mp15-fdts
  969. - title: STM32MP2
  970. scope: stm32mp2-fdts
  971. subsections:
  972. - title: STM32MP25
  973. scope: stm32mp25-fdts
  974. - title: PIE
  975. scope: pie
  976. - title: PIE/POR
  977. scope: pie/por
  978. - title: Security
  979. scope: security
  980. - title: SDEI
  981. scope: sdei
  982. - title: TBBR
  983. scope: tbbr
  984. - title: NXP
  985. subsections:
  986. - title: OCRAM
  987. scope: nxp-ocram
  988. deprecated:
  989. - nxp/common/ocram
  990. - title: PSCI
  991. scope: nxp-psci
  992. deprecated:
  993. - plat/nxp/common/psci
  994. - title: UUID
  995. scope: uuid
  996. - title: Documentation
  997. scope: docs
  998. deprecated:
  999. - doc
  1000. subsections:
  1001. - title: Changelog
  1002. scope: changelog
  1003. - title: Commit Style
  1004. scope: commit-style
  1005. - title: Contribution Guidelines
  1006. scope: contributing
  1007. deprecated:
  1008. - contribution-guidelines
  1009. - docs-contributing.rst
  1010. - title: Maintainers
  1011. scope: maintainers
  1012. - title: Prerequisites
  1013. scope: prerequisites
  1014. - title: Threat Model
  1015. scope: threat-model
  1016. - title: Porting Guide
  1017. scope: porting
  1018. - title: Build System
  1019. scope: build
  1020. deprecated:
  1021. - makefile
  1022. - Makefile
  1023. subsections:
  1024. - title: Git Hooks
  1025. scope: hooks
  1026. deprecated:
  1027. - git-hooks
  1028. - title: Tools
  1029. scope: tools
  1030. subsections:
  1031. - title: STM32 Image
  1032. scope: stm32image
  1033. deprecated:
  1034. - tools/stm32image
  1035. - title: NXP Tools
  1036. scope: nxp-tools
  1037. - title: Firmware Image Package Tool
  1038. scope: fiptool
  1039. - title: Secure Partition Tool
  1040. scope: sptool
  1041. - title: Certificate Creation Tool
  1042. scope: cert-create
  1043. - title: Firmware Encryption Tool
  1044. scope: encrypt-fw
  1045. - title: Memory Mapping Tool
  1046. scope: memmap
  1047. deprecated:
  1048. - cert_create
  1049. - title: Marvell Tools
  1050. scope: marvell-tools
  1051. - title: Renesas Tools
  1052. scope: renesas-tools
  1053. subsections:
  1054. - title: R-Car Layout Tool
  1055. scope: rcar-layout
  1056. - title: R/ZG Layout Tool
  1057. scope: rzg-layout
  1058. - title: Transfer List Compiler
  1059. scope: tlc
  1060. - title: Chain of Trust device tree to C source file
  1061. scope: cot-dt2c
  1062. - title: Dependencies
  1063. scope: deps
  1064. subsections:
  1065. - title: checkpatch
  1066. scope: checkpatch
  1067. - title: commitlint
  1068. scope: commitlint
  1069. - title: Compiler runtime libraries
  1070. scope: compiler-rt
  1071. - title: libfdt
  1072. scope: libfdt
  1073. - title: Node Package Manager (NPM)
  1074. scope: npm
  1075. - title: Poetry
  1076. scope: poetry
  1077. - title: zlib
  1078. scope: zlib