changelog.yaml 26 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378
  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: STM32MP2
  425. scope: stm32mp2
  426. - title: Texas Instruments
  427. scope: ti
  428. subsections:
  429. - title: K3
  430. scope: k3
  431. deprecated:
  432. - ti-k3
  433. - title: Xilinx
  434. scope: xilinx
  435. deprecated:
  436. - plat/xilinx
  437. subsections:
  438. - title: DCC (Debug Communication Channel)
  439. scope: dcc
  440. - title: Versal
  441. scope: versal
  442. deprecated:
  443. - plat/xilinx/versal/include
  444. - plat/xilinx/versal
  445. - plat/versal
  446. subsections:
  447. - title: Versal NET
  448. scope: versal-net
  449. deprecated:
  450. - versal_net
  451. - title: ZynqMP
  452. scope: zynqmp
  453. deprecated:
  454. - plat/zynqmp
  455. - plat/xilinx/zynqmp
  456. - title: Nuvoton
  457. scope: nuvoton
  458. subsections:
  459. - title: npcm845x
  460. scope: npcm845x
  461. - title: Bootloader Images
  462. scope: bl
  463. deprecated:
  464. - bl_common
  465. subsections:
  466. - title: BL1
  467. scope: bl1
  468. - title: BL2
  469. scope: bl2
  470. - title: BL31
  471. scope: bl31
  472. - title: BL32
  473. scope: bl32
  474. subsections:
  475. - title: TSP
  476. scope: tsp
  477. - title: Services
  478. scope: services
  479. subsections:
  480. - title: FF-A
  481. scope: ff-a
  482. deprecated:
  483. - ffa
  484. - title: RME
  485. scope: rme
  486. deprecated:
  487. - rme/fid
  488. subsections:
  489. - title: TRP
  490. scope: trp
  491. - title: RMMD
  492. scope: rmmd
  493. - title: RMM
  494. scope: rmm
  495. - title: SPM
  496. scope: spm
  497. subsections:
  498. - title: EL3 SPMC
  499. scope: el3-spmc
  500. deprecated:
  501. - spmc
  502. - title: SPMD
  503. scope: spmd
  504. - title: SPM MM
  505. scope: spm-mm
  506. - title: DRTM
  507. scope: drtm
  508. - title: TRNG
  509. scope: trng
  510. - title: ERRATA ABI
  511. scope: errata-abi
  512. deprecated:
  513. - errata_abi
  514. - title: Libraries
  515. subsections:
  516. - title: CPU Support
  517. scope: cpus
  518. deprecated:
  519. - cpu
  520. - errata
  521. - errata_report
  522. - title: EL3 Runtime
  523. scope: el3-runtime
  524. deprecated:
  525. - el3_runtime
  526. subsections:
  527. - title: Context Management
  528. scope: cm
  529. - title: RAS
  530. scope: ras
  531. - title: FCONF
  532. scope: fconf
  533. - title: MPMM
  534. scope: mpmm
  535. - title: OP-TEE
  536. scope: optee
  537. deprecated:
  538. - lib/optee
  539. - title: PSCI
  540. scope: psci
  541. - title: GPT
  542. scope: gpt
  543. deprecated:
  544. - gpt_rme
  545. - title: SMCCC
  546. scope: smccc
  547. - title: Translation Tables
  548. scope: xlat
  549. - title: C Standard Library
  550. scope: libc
  551. - title: Locks
  552. scope: locks
  553. - title: PSA
  554. scope: psa
  555. deprecated:
  556. - lib/psa
  557. - title: Context Management
  558. scope: context-mgmt
  559. deprecated:
  560. - context mgmt
  561. - title: Semihosting
  562. scope: semihosting
  563. - title: Firmware Handoff
  564. scope: handoff
  565. - title: Drivers
  566. subsections:
  567. - title: Authentication
  568. scope: auth
  569. deprecated:
  570. - driver/auth
  571. subsections:
  572. - title: CryptoCell-713
  573. scope: cc-713
  574. - title: Crypto
  575. scope: crypto
  576. - title: mbedTLS
  577. scope: mbedtls
  578. - title: mbedTLS-PSA
  579. scope: mbedtls-psa
  580. - title: Console
  581. scope: console
  582. - title: Generic Clock
  583. scope: clk
  584. - title: FWU
  585. scope: fwu
  586. deprecated:
  587. - fwu_metadata
  588. - title: I/O
  589. scope: io
  590. subsections:
  591. - title: MTD
  592. scope: mtd
  593. deprecated:
  594. - io_mtd
  595. - title: Measured Boot
  596. scope: measured-boot
  597. deprecated:
  598. - measured boot
  599. - measured_boot
  600. - title: MMC
  601. scope: mmc
  602. deprecated:
  603. - drivers/mmc
  604. - title: MTD
  605. scope: mtd
  606. deprecated:
  607. - drivers/mtd
  608. subsections:
  609. - title: NAND
  610. scope: nand
  611. subsections:
  612. - title: SPI NAND
  613. scope: spi-nand
  614. deprecated:
  615. - spi_nand
  616. - title: GUID Partition Tables Support
  617. scope: guid-partition
  618. deprecated:
  619. - partition
  620. - title: SCMI
  621. scope: scmi
  622. deprecated:
  623. - scmi_common
  624. - drivers/scmi-msg
  625. - scmi-msg
  626. - title: UFS
  627. scope: ufs
  628. - title: Arm
  629. scope: arm-drivers
  630. subsections:
  631. - title: Ethos-N
  632. scope: ethos-n
  633. deprecated:
  634. - drivers/arm/ethosn
  635. - title: GIC
  636. scope: gic
  637. subsections:
  638. - title: GICv3
  639. scope: gicv3
  640. deprecated:
  641. - gicv3/multichip
  642. subsections:
  643. - title: GIC-600
  644. scope: gic600
  645. - title: GIC-600AE
  646. scope: gic600ae
  647. - title: GICv2
  648. scope: gicv2
  649. - title: SMMU
  650. scope: smmu
  651. - title: MHU
  652. scope: mhu
  653. deprecated:
  654. - drivers/arm/mhu
  655. - title: RSS
  656. scope: rss
  657. deprecated:
  658. - drivers/arm/rss
  659. - title: TZC
  660. scope: tzc
  661. subsections:
  662. - title: TZC-400
  663. scope: tzc400
  664. deprecated:
  665. - drivers/tzc400
  666. - title: TZC-380
  667. scope: tzc380
  668. deprecated:
  669. - drivers/tzc380
  670. - title: SBSA
  671. scope: sbsa
  672. - title: Marvell
  673. scope: marvell-drivers
  674. subsections:
  675. - title: COMPHY
  676. scope: marvell-comphy
  677. deprecated:
  678. - drivers/marvell/comphy
  679. subsections:
  680. - title: Armada 3700
  681. scope: marvell-comphy-3700
  682. deprecated:
  683. - drivers/marvell/comphy-3700
  684. - title: CP110
  685. scope: marvell-comphy-cp110
  686. deprecated:
  687. - drivers/marvell/comphy-cp110
  688. - title: UART
  689. scope: marvell-uart
  690. deprecated:
  691. - plat/marvell/uart
  692. - title: Armada
  693. scope: armada-drivers
  694. subsections:
  695. - title: A3K
  696. scope: a3k-drivers
  697. subsections:
  698. - title: A3720
  699. scope: a3720-uart
  700. deprecated:
  701. - plat/marvell/a3720/uart
  702. - title: MediaTek
  703. scope: mediatek-drivers
  704. subsections:
  705. - title: APU
  706. scope: mediatek-apu
  707. deprecated:
  708. - plat/mediatek/apu
  709. - title: EMI MPU
  710. scope: mediatek-emi-mpu
  711. deprecated:
  712. - plat/mediatek/mpu
  713. - title: PMIC Wrapper
  714. scope: mediatek-pmic-wrapper
  715. deprecated:
  716. - plat/mediatek/pmic_wrap
  717. - title: MT8192
  718. scope: mt8192-drivers
  719. subsections:
  720. - title: SPM
  721. scope: mt8192-spm
  722. deprecated:
  723. - mediatek/mt8192/spm
  724. - title: NXP
  725. scope: nxp-drivers
  726. subsections:
  727. - title: DCFG
  728. scope: nxp-dcfg
  729. deprecated:
  730. - driver/nxp/dcfg
  731. - title: FLEXSPI
  732. scope: flexspi
  733. deprecated:
  734. - include/drivers/flexspi
  735. - driver/nxp/xspi
  736. - title: SCFG
  737. scope: nxp-scfg
  738. deprecated:
  739. - nxp/scfg
  740. - title: SFP
  741. scope: nxp-sfp
  742. deprecated:
  743. - drivers/nxp/sfp
  744. - title: QSPI
  745. scope: nxp-qspi
  746. - title: NXP Crypto
  747. scope: nxp-crypto
  748. - title: DDR
  749. scope: nxp-ddr
  750. - title: GIC
  751. scope: nxp-gic
  752. - title: CSU
  753. scope: nxp-csu
  754. - title: IFC NAND
  755. scope: nxp-ifc-nand
  756. - title: IFC NOR
  757. scope: nxp-ifc-nor
  758. - title: TZC-380
  759. scope: nxp-tzc380
  760. - title: TRDC
  761. scope: imx-trdc
  762. - title: Renesas
  763. scope: renesas-drivers
  764. subsections:
  765. - title: R-Car3
  766. scope: rcar3-drivers
  767. deprecated:
  768. - drivers/rcar3
  769. - title: ST
  770. scope: st-drivers
  771. deprecated:
  772. - drivers/st
  773. subsections:
  774. - title: BSEC
  775. scope: st-bsec
  776. - title: Clock
  777. scope: st-clock
  778. deprecated:
  779. - stm32mp_clk
  780. - drivers/st/clk
  781. - stm32mp1_clk
  782. - title: Crypto
  783. scope: st-crypto
  784. - title: DDR
  785. scope: st-ddr
  786. - title: I/O
  787. scope: st-io-drivers
  788. subsections:
  789. - title: STM32 Image
  790. scope: st-io-stm32image
  791. deprecated:
  792. - io-stm32image
  793. - io_stm32image
  794. - title: I2C
  795. scope: st-i2c
  796. - title: FMC
  797. scope: st-fmc
  798. - title: GPIO
  799. scope: st-gpio
  800. - title: SDMMC2
  801. scope: st-sdmmc2
  802. deprecated:
  803. - stm32_sdmmc2
  804. - title: ST PMIC
  805. scope: st-pmic
  806. deprecated:
  807. - drivers/st/pmic
  808. - title: STPMIC1
  809. scope: stpmic1
  810. - title: Regulator
  811. scope: st-regulator
  812. - title: Reset
  813. scope: st-reset
  814. - title: SPI
  815. scope: st-spi
  816. - title: UART
  817. scope: st-uart
  818. subsections:
  819. - title: STM32 Console
  820. scope: stm32-console
  821. deprecated:
  822. - stm32_console
  823. - title: USB
  824. scope: st-usb
  825. deprecated:
  826. - drivers/st/usb
  827. - title: Watchdog
  828. scope: st-iwdg
  829. - title: USB
  830. scope: usb
  831. deprecated:
  832. - drivers/usb
  833. - title: Miscellaneous
  834. subsections:
  835. - title: AArch64
  836. scope: aarch64
  837. - title: Debug
  838. scope: debug
  839. deprecated:
  840. - common/debug
  841. - title: CRC32
  842. scope: crc32
  843. subsections:
  844. - title: Hardware CRC32
  845. scope: hw-crc32
  846. deprecated:
  847. - hw_crc
  848. - hw_crc32
  849. - title: Software CRC32
  850. scope: sw-crc32
  851. deprecated:
  852. - sw_crc32
  853. - title: DT Bindings
  854. scope: dt-bindings
  855. - title: FDT Wrappers
  856. scope: fdt-wrappers
  857. - title: FDTs
  858. scope: fdts
  859. deprecated:
  860. - fdt
  861. subsections:
  862. - title: Morello
  863. scope: morello-fdts
  864. deprecated:
  865. - fdts/morello
  866. - title: STM32MP1
  867. scope: stm32mp1-fdts
  868. deprecated:
  869. - fdts stm32mp1
  870. subsections:
  871. - title: STM32MP13
  872. scope: stm32mp13-fdts
  873. - title: STM32MP15
  874. scope: stm32mp15-fdts
  875. - title: STM32MP2
  876. scope: stm32mp2-fdts
  877. - title: PIE
  878. scope: pie
  879. - title: PIE/POR
  880. scope: pie/por
  881. - title: Security
  882. scope: security
  883. - title: SDEI
  884. scope: sdei
  885. - title: TBBR
  886. scope: tbbr
  887. - title: NXP
  888. subsections:
  889. - title: OCRAM
  890. scope: nxp-ocram
  891. deprecated:
  892. - nxp/common/ocram
  893. - title: PSCI
  894. scope: nxp-psci
  895. deprecated:
  896. - plat/nxp/common/psci
  897. - title: UUID
  898. scope: uuid
  899. - title: Documentation
  900. scope: docs
  901. deprecated:
  902. - doc
  903. subsections:
  904. - title: Changelog
  905. scope: changelog
  906. - title: Commit Style
  907. scope: commit-style
  908. - title: Contribution Guidelines
  909. scope: contributing
  910. deprecated:
  911. - contribution-guidelines
  912. - docs-contributing.rst
  913. - title: Maintainers
  914. scope: maintainers
  915. - title: Prerequisites
  916. scope: prerequisites
  917. - title: Threat Model
  918. scope: threat-model
  919. - title: Porting Guide
  920. scope: porting
  921. - title: Build System
  922. scope: build
  923. deprecated:
  924. - makefile
  925. - Makefile
  926. subsections:
  927. - title: Git Hooks
  928. scope: hooks
  929. deprecated:
  930. - git-hooks
  931. - title: Tools
  932. subsections:
  933. - title: STM32 Image
  934. scope: stm32image
  935. deprecated:
  936. - tools/stm32image
  937. - title: NXP Tools
  938. scope: nxp-tools
  939. - title: Firmware Image Package Tool
  940. scope: fiptool
  941. - title: Secure Partition Tool
  942. scope: sptool
  943. - title: Certificate Creation Tool
  944. scope: cert-create
  945. - title: Memory Mapping Tool
  946. scope: memmap
  947. deprecated:
  948. - cert_create
  949. - title: Dependencies
  950. scope: deps
  951. subsections:
  952. - title: checkpatch
  953. scope: checkpatch
  954. - title: commitlint
  955. scope: commitlint
  956. - title: Compiler runtime libraries
  957. scope: compiler-rt
  958. - title: libfdt
  959. scope: libfdt
  960. - title: Node Package Manager (NPM)
  961. scope: npm
  962. - title: Poetry
  963. scope: poetry
  964. - title: zlib
  965. scope: zlib