changelog.yaml 26 KB

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