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