changelog.yaml 27 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413
  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: CPU feature / ID register handling in general
  87. scope: cpufeat
  88. - title: Guarded Control Stack (FEAT_GCS)
  89. scope: gcs
  90. - title: Support for the `HCRX_EL2` register (FEAT_HCX)
  91. scope: hcx
  92. - title: Memory Partitioning and Monitoring (MPAM) Extension (FEAT_MPAM)
  93. scope: mpam
  94. - title: Memory Tagging Extension2
  95. scope: mte2
  96. deprecated:
  97. - mte
  98. - title: Pointer Authentication Extension
  99. scope: pauth
  100. - title: Performance Monitors Extension (FEAT_PMUv3)
  101. scope: pmu
  102. - title: Trapping support for RNDR/RNDRRS (FEAT_RNG_TRAP)
  103. scope: rng-trap
  104. - title: Scalable Matrix Extension (FEAT_SME, FEAT_SME2)
  105. scope: sme
  106. - title: Statistical profiling Extension (FEAT_SPE)
  107. scope: spe
  108. - title: Scalable Vector Extension (FEAT_SVE)
  109. scope: sve
  110. - title: System Register Trace Extensions (FEAT_ETMv4, FEAT_ETE and FEAT_ETEv1.1)
  111. scope: sys-reg-trace
  112. deprecated:
  113. - sys_reg_trace
  114. - title: Trace Buffer Extension (FEAT_TRBE)
  115. scope: trbe
  116. - title: Self-hosted Trace Extensions (FEAT_TRF)
  117. scope: trf
  118. - title: Platforms
  119. scope: platforms
  120. deprecated:
  121. - plat/common
  122. subsections:
  123. - title: Allwinner
  124. scope: allwinner
  125. deprecated:
  126. - plat/allwinner
  127. - title: Arm
  128. scope: arm
  129. deprecated:
  130. - plat/arm
  131. subsections:
  132. - title: A5DS
  133. scope: a5ds
  134. - title: CSS
  135. scope: css
  136. deprecated:
  137. - plat/arm/css
  138. - plat/css
  139. - title: FPGA
  140. scope: fpga
  141. deprecated:
  142. - arm_fgpa
  143. - plat/arm_fpga
  144. - arm/fpga
  145. - title: FVP
  146. scope: fvp
  147. deprecated:
  148. - plat/fvp
  149. - fvp/tsp_manifest
  150. - title: FVP-R
  151. scope: fvp-r
  152. deprecated:
  153. - fvp_r
  154. - title: FVP Versatile Express
  155. scope: fvp_ve
  156. - title: Juno
  157. scope: juno
  158. - title: Morello
  159. scope: morello
  160. - title: N1SDP
  161. scope: n1sdp
  162. - title: RD
  163. scope: rd
  164. subsections:
  165. - title: RD-N1 Edge
  166. scope: rdn1edge
  167. - title: RD-N2
  168. scope: rdn2
  169. deprecated:
  170. - board/rdn2
  171. - title: SGI
  172. scope: sgi
  173. deprecated:
  174. - plat/sgi
  175. - plat/arm/sgi
  176. - title: TC
  177. scope: tc
  178. deprecated:
  179. - plat/tc
  180. subsections:
  181. - title: TC0
  182. scope: tc0
  183. deprecated:
  184. - plat/tc0
  185. - title: Corstone-1000
  186. scope: corstone-1000
  187. - title: Aspeed
  188. scope: aspeed
  189. subsections:
  190. - title: AST2700
  191. scope: ast2700
  192. - title: Broadcom
  193. scope: brcm
  194. - title: Cadence
  195. scope: cadence
  196. - title: HiSilicon
  197. scope: hisilicon
  198. subsections:
  199. - title: HiKey
  200. scope: hikey
  201. - title: HiKey960
  202. scope: hikey960
  203. - title: Intel
  204. scope: intel
  205. subsections:
  206. - title: SoC
  207. scope: soc
  208. - title: Marvell
  209. scope: marvell
  210. deprecated:
  211. - plat/marvell
  212. subsections:
  213. - title: Armada
  214. scope: armada
  215. deprecated:
  216. - plat/marvell/armada
  217. subsections:
  218. - title: A3K
  219. scope: a3k
  220. deprecated:
  221. - plat/marvell/a3k
  222. - title: A8K
  223. scope: a8k
  224. deprecated:
  225. - plat/marvell/a8k
  226. - title: MediaTek
  227. scope: mediatek
  228. deprecated:
  229. - plat/mediatek/common
  230. - plat/mediatek
  231. subsections:
  232. - title: MT8183
  233. scope: mt8183
  234. deprecated:
  235. - plat/mediatek/mt8183
  236. - title: MT8186
  237. scope: mt8186
  238. deprecated:
  239. - plat/mediatek/mt8186
  240. - mt8186-emi-mpu
  241. - title: MT8188
  242. scope: mt8188
  243. - title: MT8192
  244. scope: mt8192
  245. deprecated:
  246. - plat/mdeiatek/mt8192
  247. - title: MT8195
  248. scope: mt8195
  249. deprecated:
  250. - plat/mediatek/me8195
  251. - plat/mediatek/mt8195
  252. - plat/mdeiatek/mt8195
  253. - title: NVIDIA
  254. scope: nvidia
  255. subsections:
  256. - title: Tegra
  257. scope: tegra
  258. deprecated:
  259. - plat/tegra
  260. subsections:
  261. - title: Tegra 132
  262. scope: tegra132
  263. - title: Tegra 194
  264. scope: tegra194
  265. - title: Tegra 210
  266. scope: tegra210
  267. - title: NXP
  268. scope: nxp
  269. deprecated:
  270. - plat/nxp
  271. - plat/nxp/common
  272. subsections:
  273. - title: i.MX
  274. scope: imx
  275. deprecated:
  276. - plat/imx
  277. - plat/imx/imx
  278. subsections:
  279. - title: i.MX 8M
  280. scope: imx8m
  281. deprecated:
  282. - plat/imx8m
  283. - plat/imx/imx8m
  284. subsections:
  285. - title: i.MX 8M Nano
  286. scope: imx8mn
  287. deprecated:
  288. - plat/imx/imx8m/imx8mn
  289. - title: i.MX 8M Mini
  290. scope: imx8mm
  291. deprecated:
  292. - plat/imx/imx8m/imx8mm
  293. - title: i.MX 8M Plus
  294. scope: imx8mp
  295. deprecated:
  296. - plat/imx/imx8m/imx8mp
  297. - title: i.MX 8Q
  298. scope: imx8mq
  299. deprecated:
  300. - plat/imx/imx8m/imx8mq
  301. - title: i.MX 8
  302. scope: imx8
  303. - title: i.MX 8ULP
  304. scope: imx8ulp
  305. - title: i.MX 9
  306. scope: imx9
  307. subsections:
  308. - title: i.MX93
  309. scope: imx93
  310. - title: Layerscape
  311. scope: layerscape
  312. deprecated:
  313. - docs/nxp/layerscape
  314. subsections:
  315. - title: LS1028A
  316. scope: ls1028a
  317. deprecated:
  318. - plat/nxp/ls1028a
  319. subsections:
  320. - title: LS1028ARDB
  321. scope: ls1028ardb
  322. deprecated:
  323. - plat/nxp/ls1028ardb
  324. - title: LS1043A
  325. scope: ls1043a
  326. deprecated:
  327. - plat/nxp/ls1043a
  328. subsections:
  329. - title: LS1043ARDB
  330. scope: ls1043ardb
  331. deprecated:
  332. - plat/nxp/ls1043ardb
  333. - title: LX2
  334. scope: lx2
  335. deprecated:
  336. - plat/nxp/lx2
  337. subsections:
  338. - title: LX216
  339. scope: lx216
  340. deprecated:
  341. - plat/nxp/lx216x
  342. subsections:
  343. - title: LX2160
  344. scope: lx2160
  345. deprecated:
  346. - plat/soc-lx2160
  347. - title: LS1046A
  348. scope: ls1046a
  349. subsections:
  350. - title: LS1046ARDB
  351. scope: ls1046ardb
  352. - title: LS1046AFRWY
  353. scope: ls1046afrwy
  354. - title: LS1046AQDS
  355. scope: ls1046aqds
  356. - title: LS1088A
  357. scope: ls1088a
  358. subsections:
  359. - title: LS1088ARDB
  360. scope: ls1088ardb
  361. - title: LS1088AQDS
  362. scope: ls1088aqds
  363. - title: QEMU
  364. scope: qemu
  365. deprecated:
  366. - plat/qemu
  367. subsections:
  368. - title: SBSA
  369. scope: qemu-sbsa
  370. deprecated:
  371. - qemu_sbsa
  372. - title: QTI
  373. scope: qti
  374. deprecated:
  375. - plat/qti
  376. subsections:
  377. - title: SC1780
  378. scope: sc7180
  379. deprecated:
  380. - plat/qti/sc7180
  381. - title: SC7280
  382. scope: sc7280
  383. deprecated:
  384. - plat/qti/sc7280
  385. - title: MSM8916
  386. scope: msm8916
  387. - title: Raspberry Pi
  388. scope: rpi
  389. subsections:
  390. - title: Raspberry Pi 3
  391. scope: rpi3
  392. - title: Raspberry Pi 4
  393. scope: rpi4
  394. - title: Raspberry Pi 5
  395. scope: rpi5
  396. - title: Renesas
  397. scope: renesas
  398. subsections:
  399. - title: R-Car
  400. scope: rcar
  401. deprecated:
  402. - plat/rcar
  403. subsections:
  404. - title: R-Car 3
  405. scope: rcar3
  406. deprecated:
  407. - plat/rcar3
  408. - title: Rockchip
  409. scope: rockchip
  410. subsections:
  411. - title: RK3399
  412. scope: rk3399
  413. deprecated:
  414. - rockchip/rk3399
  415. - rk3399/suspend
  416. - title: RK3328
  417. scope: rk3328
  418. - title: Socionext
  419. scope: socionext
  420. subsections:
  421. - title: Synquacer
  422. scope: synquacer
  423. deprecated:
  424. - plat/synquacer
  425. - title: ST
  426. scope: st
  427. deprecated:
  428. - plat/st
  429. subsections:
  430. - title: STM32MP1
  431. scope: stm32mp1
  432. deprecated:
  433. - plat/st/stm32mp1
  434. subsections:
  435. - title: STM32MP13
  436. scope: stm32mp13
  437. - title: STM32MP15
  438. scope: stm32mp15
  439. - title: STM32MP2
  440. scope: stm32mp2
  441. - title: Texas Instruments
  442. scope: ti
  443. subsections:
  444. - title: K3
  445. scope: k3
  446. deprecated:
  447. - ti-k3
  448. - title: Xilinx
  449. scope: xilinx
  450. deprecated:
  451. - plat/xilinx
  452. subsections:
  453. - title: DCC (Debug Communication Channel)
  454. scope: dcc
  455. - title: Versal
  456. scope: versal
  457. deprecated:
  458. - plat/xilinx/versal/include
  459. - plat/xilinx/versal
  460. - plat/versal
  461. subsections:
  462. - title: Versal NET
  463. scope: versal-net
  464. deprecated:
  465. - versal_net
  466. - title: ZynqMP
  467. scope: zynqmp
  468. deprecated:
  469. - plat/zynqmp
  470. - plat/xilinx/zynqmp
  471. - title: Nuvoton
  472. scope: nuvoton
  473. subsections:
  474. - title: npcm845x
  475. scope: npcm845x
  476. - title: Bootloader Images
  477. scope: bl
  478. deprecated:
  479. - bl_common
  480. subsections:
  481. - title: BL1
  482. scope: bl1
  483. - title: BL2
  484. scope: bl2
  485. - title: BL31
  486. scope: bl31
  487. - title: BL32
  488. scope: bl32
  489. subsections:
  490. - title: TSP
  491. scope: tsp
  492. - title: Services
  493. scope: services
  494. subsections:
  495. - title: FF-A
  496. scope: ff-a
  497. deprecated:
  498. - ffa
  499. - title: RME
  500. scope: rme
  501. deprecated:
  502. - rme/fid
  503. subsections:
  504. - title: TRP
  505. scope: trp
  506. - title: RMMD
  507. scope: rmmd
  508. - title: RMM
  509. scope: rmm
  510. - title: SPM
  511. scope: spm
  512. subsections:
  513. - title: EL3 SPM
  514. scope: el3-spm
  515. - title: EL3 SPMC
  516. scope: el3-spmc
  517. deprecated:
  518. - spmc
  519. - title: SPMD
  520. scope: spmd
  521. - title: SPM MM
  522. scope: spm-mm
  523. - title: DRTM
  524. scope: drtm
  525. - title: TRNG
  526. scope: trng
  527. - title: ERRATA ABI
  528. scope: errata-abi
  529. deprecated:
  530. - errata_abi
  531. - title: Libraries
  532. scope: lib
  533. subsections:
  534. - title: CPU Support
  535. scope: cpus
  536. deprecated:
  537. - cpu
  538. - errata
  539. - errata_report
  540. - title: EL3 Runtime
  541. scope: el3-runtime
  542. deprecated:
  543. - el3_runtime
  544. subsections:
  545. - title: Context Management
  546. scope: cm
  547. - title: RAS
  548. scope: ras
  549. - title: FCONF
  550. scope: fconf
  551. - title: MPMM
  552. scope: mpmm
  553. - title: OP-TEE
  554. scope: optee
  555. deprecated:
  556. - lib/optee
  557. - title: PSCI
  558. scope: psci
  559. - title: ROMlib
  560. scope: romlib
  561. - title: GPT
  562. scope: gpt
  563. deprecated:
  564. - gpt_rme
  565. - title: SMCCC
  566. scope: smccc
  567. - title: Translation Tables
  568. scope: xlat
  569. - title: C Standard Library
  570. scope: libc
  571. - title: Locks
  572. scope: locks
  573. - title: PSA
  574. scope: psa
  575. deprecated:
  576. - lib/psa
  577. - title: DICE Protection Environment
  578. scope: dice
  579. - title: Context Management
  580. scope: context-mgmt
  581. deprecated:
  582. - context mgmt
  583. - title: Semihosting
  584. scope: semihosting
  585. - title: Firmware Handoff
  586. scope: handoff
  587. - title: Drivers
  588. subsections:
  589. - title: Authentication
  590. scope: auth
  591. deprecated:
  592. - driver/auth
  593. subsections:
  594. - title: CryptoCell-713
  595. scope: cc-713
  596. - title: Crypto
  597. scope: crypto
  598. - title: mbedTLS
  599. scope: mbedtls
  600. - title: mbedTLS-PSA
  601. scope: mbedtls-psa
  602. - title: Console
  603. scope: console
  604. - title: Generic Clock
  605. scope: clk
  606. - title: FWU
  607. scope: fwu
  608. deprecated:
  609. - fwu_metadata
  610. - title: I/O
  611. scope: io
  612. subsections:
  613. - title: MTD
  614. scope: mtd
  615. deprecated:
  616. - io_mtd
  617. - title: Measured Boot
  618. scope: measured-boot
  619. deprecated:
  620. - measured boot
  621. - measured_boot
  622. - title: MMC
  623. scope: mmc
  624. deprecated:
  625. - drivers/mmc
  626. - title: MTD
  627. scope: mtd
  628. deprecated:
  629. - drivers/mtd
  630. subsections:
  631. - title: NAND
  632. scope: nand
  633. subsections:
  634. - title: SPI NAND
  635. scope: spi-nand
  636. deprecated:
  637. - spi_nand
  638. - title: GUID Partition Tables Support
  639. scope: guid-partition
  640. deprecated:
  641. - partition
  642. - title: SCMI
  643. scope: scmi
  644. deprecated:
  645. - scmi_common
  646. - drivers/scmi-msg
  647. - scmi-msg
  648. - title: UFS
  649. scope: ufs
  650. - title: Arm
  651. scope: arm-drivers
  652. subsections:
  653. - title: Ethos-N
  654. scope: ethos-n
  655. deprecated:
  656. - drivers/arm/ethosn
  657. - title: GIC
  658. scope: gic
  659. subsections:
  660. - title: GICv3
  661. scope: gicv3
  662. deprecated:
  663. - gicv3/multichip
  664. subsections:
  665. - title: GIC-600
  666. scope: gic600
  667. - title: GIC-600AE
  668. scope: gic600ae
  669. - title: GICv2
  670. scope: gicv2
  671. - title: SMMU
  672. scope: smmu
  673. - title: MHU
  674. scope: mhu
  675. deprecated:
  676. - drivers/arm/mhu
  677. - title: RSS
  678. scope: rss
  679. deprecated:
  680. - drivers/arm/rss
  681. - title: TZC
  682. scope: tzc
  683. subsections:
  684. - title: TZC-400
  685. scope: tzc400
  686. deprecated:
  687. - drivers/tzc400
  688. - title: TZC-380
  689. scope: tzc380
  690. deprecated:
  691. - drivers/tzc380
  692. - title: SBSA
  693. scope: sbsa
  694. - title: Marvell
  695. scope: marvell-drivers
  696. subsections:
  697. - title: COMPHY
  698. scope: marvell-comphy
  699. deprecated:
  700. - drivers/marvell/comphy
  701. subsections:
  702. - title: Armada 3700
  703. scope: marvell-comphy-3700
  704. deprecated:
  705. - drivers/marvell/comphy-3700
  706. - title: CP110
  707. scope: marvell-comphy-cp110
  708. deprecated:
  709. - drivers/marvell/comphy-cp110
  710. - title: UART
  711. scope: marvell-uart
  712. deprecated:
  713. - plat/marvell/uart
  714. - title: Armada
  715. scope: armada-drivers
  716. subsections:
  717. - title: A3K
  718. scope: a3k-drivers
  719. subsections:
  720. - title: A3720
  721. scope: a3720-uart
  722. deprecated:
  723. - plat/marvell/a3720/uart
  724. - title: MediaTek
  725. scope: mediatek-drivers
  726. subsections:
  727. - title: APU
  728. scope: mediatek-apu
  729. deprecated:
  730. - plat/mediatek/apu
  731. - title: EMI MPU
  732. scope: mediatek-emi-mpu
  733. deprecated:
  734. - plat/mediatek/mpu
  735. - title: PMIC Wrapper
  736. scope: mediatek-pmic-wrapper
  737. deprecated:
  738. - plat/mediatek/pmic_wrap
  739. - title: MT8192
  740. scope: mt8192-drivers
  741. subsections:
  742. - title: SPM
  743. scope: mt8192-spm
  744. deprecated:
  745. - mediatek/mt8192/spm
  746. - title: NXP
  747. scope: nxp-drivers
  748. subsections:
  749. - title: DCFG
  750. scope: nxp-dcfg
  751. deprecated:
  752. - driver/nxp/dcfg
  753. - title: FLEXSPI
  754. scope: flexspi
  755. deprecated:
  756. - include/drivers/flexspi
  757. - driver/nxp/xspi
  758. - title: SCFG
  759. scope: nxp-scfg
  760. deprecated:
  761. - nxp/scfg
  762. - title: SFP
  763. scope: nxp-sfp
  764. deprecated:
  765. - drivers/nxp/sfp
  766. - title: QSPI
  767. scope: nxp-qspi
  768. - title: NXP Crypto
  769. scope: nxp-crypto
  770. - title: DDR
  771. scope: nxp-ddr
  772. - title: GIC
  773. scope: nxp-gic
  774. - title: CSU
  775. scope: nxp-csu
  776. - title: IFC NAND
  777. scope: nxp-ifc-nand
  778. - title: IFC NOR
  779. scope: nxp-ifc-nor
  780. - title: TZC-380
  781. scope: nxp-tzc380
  782. - title: TRDC
  783. scope: imx-trdc
  784. - title: Renesas
  785. scope: renesas-drivers
  786. subsections:
  787. - title: R-Car3
  788. scope: rcar3-drivers
  789. deprecated:
  790. - drivers/rcar3
  791. - title: ST
  792. scope: st-drivers
  793. deprecated:
  794. - drivers/st
  795. subsections:
  796. - title: BSEC
  797. scope: st-bsec
  798. - title: Clock
  799. scope: st-clock
  800. deprecated:
  801. - stm32mp_clk
  802. - drivers/st/clk
  803. - stm32mp1_clk
  804. - title: Crypto
  805. scope: st-crypto
  806. - title: DDR
  807. scope: st-ddr
  808. - title: I/O
  809. scope: st-io-drivers
  810. subsections:
  811. - title: STM32 Image
  812. scope: st-io-stm32image
  813. deprecated:
  814. - io-stm32image
  815. - io_stm32image
  816. - title: I2C
  817. scope: st-i2c
  818. - title: FMC
  819. scope: st-fmc
  820. - title: GPIO
  821. scope: st-gpio
  822. - title: SDMMC2
  823. scope: st-sdmmc2
  824. deprecated:
  825. - stm32_sdmmc2
  826. - title: ST PMIC
  827. scope: st-pmic
  828. deprecated:
  829. - drivers/st/pmic
  830. - title: STPMIC1
  831. scope: stpmic1
  832. - title: Regulator
  833. scope: st-regulator
  834. - title: Reset
  835. scope: st-reset
  836. - title: SPI
  837. scope: st-spi
  838. - title: UART
  839. scope: st-uart
  840. subsections:
  841. - title: STM32 Console
  842. scope: stm32-console
  843. deprecated:
  844. - stm32_console
  845. - title: USB
  846. scope: st-usb
  847. deprecated:
  848. - drivers/st/usb
  849. - title: Watchdog
  850. scope: st-iwdg
  851. - title: USB
  852. scope: usb
  853. deprecated:
  854. - drivers/usb
  855. - title: Miscellaneous
  856. subsections:
  857. - title: AArch64
  858. scope: aarch64
  859. - title: Debug
  860. scope: debug
  861. deprecated:
  862. - common/debug
  863. - title: CRC32
  864. scope: crc32
  865. subsections:
  866. - title: Hardware CRC32
  867. scope: hw-crc32
  868. deprecated:
  869. - hw_crc
  870. - hw_crc32
  871. - title: Software CRC32
  872. scope: sw-crc32
  873. deprecated:
  874. - sw_crc32
  875. - title: DT Bindings
  876. scope: dt-bindings
  877. - title: FDT Wrappers
  878. scope: fdt-wrappers
  879. - title: FDTs
  880. scope: fdts
  881. deprecated:
  882. - fdt
  883. subsections:
  884. - title: Morello
  885. scope: morello-fdts
  886. deprecated:
  887. - fdts/morello
  888. - title: STM32MP1
  889. scope: stm32mp1-fdts
  890. deprecated:
  891. - fdts stm32mp1
  892. subsections:
  893. - title: STM32MP13
  894. scope: stm32mp13-fdts
  895. - title: STM32MP15
  896. scope: stm32mp15-fdts
  897. - title: STM32MP2
  898. scope: stm32mp2-fdts
  899. - title: PIE
  900. scope: pie
  901. - title: PIE/POR
  902. scope: pie/por
  903. - title: Security
  904. scope: security
  905. - title: SDEI
  906. scope: sdei
  907. - title: TBBR
  908. scope: tbbr
  909. - title: NXP
  910. subsections:
  911. - title: OCRAM
  912. scope: nxp-ocram
  913. deprecated:
  914. - nxp/common/ocram
  915. - title: PSCI
  916. scope: nxp-psci
  917. deprecated:
  918. - plat/nxp/common/psci
  919. - title: UUID
  920. scope: uuid
  921. - title: Documentation
  922. scope: docs
  923. deprecated:
  924. - doc
  925. subsections:
  926. - title: Changelog
  927. scope: changelog
  928. - title: Commit Style
  929. scope: commit-style
  930. - title: Contribution Guidelines
  931. scope: contributing
  932. deprecated:
  933. - contribution-guidelines
  934. - docs-contributing.rst
  935. - title: Maintainers
  936. scope: maintainers
  937. - title: Prerequisites
  938. scope: prerequisites
  939. - title: Threat Model
  940. scope: threat-model
  941. - title: Porting Guide
  942. scope: porting
  943. - title: Build System
  944. scope: build
  945. deprecated:
  946. - makefile
  947. - Makefile
  948. subsections:
  949. - title: Git Hooks
  950. scope: hooks
  951. deprecated:
  952. - git-hooks
  953. - title: Tools
  954. subsections:
  955. - title: STM32 Image
  956. scope: stm32image
  957. deprecated:
  958. - tools/stm32image
  959. - title: NXP Tools
  960. scope: nxp-tools
  961. - title: Firmware Image Package Tool
  962. scope: fiptool
  963. - title: Secure Partition Tool
  964. scope: sptool
  965. - title: Certificate Creation Tool
  966. scope: cert-create
  967. - title: Memory Mapping Tool
  968. scope: memmap
  969. deprecated:
  970. - cert_create
  971. - title: Marvell Tools
  972. scope: marvell-tools
  973. - title: Dependencies
  974. scope: deps
  975. subsections:
  976. - title: checkpatch
  977. scope: checkpatch
  978. - title: commitlint
  979. scope: commitlint
  980. - title: Compiler runtime libraries
  981. scope: compiler-rt
  982. - title: libfdt
  983. scope: libfdt
  984. - title: Node Package Manager (NPM)
  985. scope: npm
  986. - title: Poetry
  987. scope: poetry
  988. - title: zlib
  989. scope: zlib