blob: cfb2bb5cc20afa73929dc6acbc04b69bbdb514cd [file] [log] [blame]
Chris Kay82117d72021-12-01 16:34:55 +00001#
Yann Gautier9f359fd2022-01-27 09:25:47 +01002# Copyright (c) 2021-2022, Arm Limited. All rights reserved.
Chris Kay82117d72021-12-01 16:34:55 +00003#
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 hidden: true
28
29 - title: Continuous Integration
30 description: Changes to our CI configuration files and scripts
31 type: ci
32 hidden: true
33
Chris Kayc938da72022-09-29 16:42:23 +010034 - title: Documentation
Chris Kay82117d72021-12-01 16:34:55 +000035 description: Documentation-only changes
36 type: docs
37 hidden: true
38
39 - title: Performance Improvements
40 description: A code change that improves performance
41 type: perf
42 hidden: true
43
44 - title: Code Refactoring
45 description: A code change that neither fixes a bug nor adds a feature
46 type: refactor
47 hidden: true
48
49 - title: Reverted Changes
50 description: Changes that revert a previous change
51 type: revert
52 hidden: true
53
54 - title: Style
55 description: Changes that do not affect the meaning of the code (white-space, formatting, missing semi-colons, etc.)
56 type: style
57 hidden: true
58
59 - title: Tests
60 description: Adding missing tests or correcting existing tests
61 type: test
62 hidden: true
63
64 - title: Miscellaneous
65 description: Any other change
66 type: chore
67 hidden: true
68
69#
70# The following block describes the sub-sections of the changelog. These sub-sections may appear in
71# any of the top-level sections, and describe the individual components that a change may relate to.
72#
73# Sub-sections have an optional associated commit message "scope":
74#
75# feat(xyz): add the xyz feature
76# ^^^
77#
78# This file also describes deprecated scopes, which are scopes that were used before we introduced
79# scope enforcement. These will not pass CI checks when used, but they will be used to generate the
80# changelog.
81#
82# Please note that new scopes should be kebab-case: https://en.wiktionary.org/wiki/kebab_case
83#
84
85subsections:
86 - title: Architecture
87
88 subsections:
89 - title: Activity Monitors Extension (FEAT_AMU)
90 scope: amu
91
laurenw-arm7c66fca2022-11-01 14:45:33 -050092 - title: Branch Record Buffer Extension (FEAT_BRBE)
93 scope: brbe
94
95 - title: Branch Target Identification Extension
96 scope: bti
97
laurenw-arme541eac2022-06-01 13:45:39 -050098 - title: Confidential Compute Architecture (CCA)
99 scope: cca
100
laurenw-arm7c66fca2022-11-01 14:45:33 -0500101 - title: Extended Cache Index (FEAT_CCIDX)
102 scope: ccidx
103
Chris Kay82117d72021-12-01 16:34:55 +0000104 - 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
laurenw-arm7c66fca2022-11-01 14:45:33 -0500110 - 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
Chris Kay82117d72021-12-01 16:34:55 +0000122 - title: Scalable Matrix Extension (FEAT_SME)
123 scope: sme
124
laurenw-arm7c66fca2022-11-01 14:45:33 -0500125 - title: Statistical profiling Extension (FEAT_SPE)
126 scope: spe
127
Chris Kay82117d72021-12-01 16:34:55 +0000128 - 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
145 subsections:
146 - title: Allwinner
147 scope: allwinner
148
149 deprecated:
150 - plat/allwinner
151
152 - title: Arm
153 scope: arm
154
155 deprecated:
156 - plat/arm
157
158 subsections:
laurenw-arm7c66fca2022-11-01 14:45:33 -0500159 - title: CSS
160 scope: css
161
162 deprecated:
163 - plat/arm/css
164
Chris Kay82117d72021-12-01 16:34:55 +0000165 - title: FPGA
166 scope: fpga
167
168 deprecated:
169 - arm_fgpa
170 - arm_fpga
171 - plat/arm_fpga
172
173 - title: FVP
174 scope: fvp
175
176 deprecated:
177 - plat/fvp
laurenw-arm7c66fca2022-11-01 14:45:33 -0500178 - fvp/tsp_manifest
Chris Kay82117d72021-12-01 16:34:55 +0000179
180 - title: FVP-R
181 scope: fvp-r
182
183 deprecated:
184 - fvp_r
185
laurenw-arm7c66fca2022-11-01 14:45:33 -0500186 - title: FVP Versatile Express
187 scope: fvp_ve
188
Chris Kay82117d72021-12-01 16:34:55 +0000189 - title: Juno
190 scope: juno
191
192 - title: Morello
193 scope: morello
194
Jayanth Dodderi Chidanandb16bc302022-05-19 11:03:07 +0100195 - title: N1SDP
196 scope: n1sdp
197
Chris Kay82117d72021-12-01 16:34:55 +0000198 - title: RD
199 scope: rd
200
201 subsections:
202 - title: RD-N2
203 scope: rdn2
204
205 deprecated:
206 - board/rdn2
207
208 - title: SGI
209 scope: sgi
210
211 deprecated:
212 - plat/sgi
213 - plat/arm/sgi
214
215 - title: TC
216 scope: tc
217
218 subsections:
219 - title: TC0
220 scope: tc0
221
222 deprecated:
223 - plat/tc0
224
Jayanth Dodderi Chidanandb16bc302022-05-19 11:03:07 +0100225 - title: Corstone-1000
226 scope: corstone-1000
227
228 - title: Broadcom
229 scope: brcm
230
laurenw-arm7c66fca2022-11-01 14:45:33 -0500231 - title: HiSilicon
232 scope: hisilicon
233
234 subsections:
235 - title: HiKey
236 scope: hikey
237
238 - title: HiKey960
239 scope: hikey960
240
Sieu Mun Tang9f3a13c2022-02-22 14:14:26 +0800241 - title: Intel
242 scope: intel
243
244 subsections:
245 - title: SoC
246 scope: soc
247
Chris Kay82117d72021-12-01 16:34:55 +0000248 - title: Marvell
249 scope: marvell
250
251 deprecated:
252 - plat/marvell
253
254 subsections:
255 - title: Armada
256 scope: armada
257
258 deprecated:
259 - plat/marvell/armada
260
261 subsections:
262 - title: A3K
263 scope: a3k
264
265 deprecated:
266 - plat/marvell/a3k
267
268 - title: A8K
269 scope: a8k
270
271 deprecated:
272 - plat/marvell/a8k
273
274 - title: MediaTek
275 scope: mediatek
276
277 deprecated:
278 - plat/mediatek/common
279 - plat/mediatek
280
281 subsections:
282 - title: MT8183
283 scope: mt8183
284
285 deprecated:
286 - plat/mediatek/mt8183
287
laurenw-arm7c66fca2022-11-01 14:45:33 -0500288 - title: MT8186
289 scope: mt8186
290
291 deprecated:
292 - plat/mediatek/mt8186
293 - mt8186-emi-mpu
294
295 - title: MT8188
296 scope: mt8188
297
Chris Kay82117d72021-12-01 16:34:55 +0000298 - title: MT8192
299 scope: mt8192
300
301 deprecated:
302 - plat/mdeiatek/mt8192
303
304 - title: MT8195
305 scope: mt8195
306
307 deprecated:
308 - plat/mediatek/me8195
309 - plat/mediatek/mt8195
310 - plat/mdeiatek/mt8195
311
312 - title: NVIDIA
313 scope: nvidia
314
315 subsections:
316 - title: Tegra
317 scope: tegra
318
319 deprecated:
320 - plat/tegra
321
322 subsections:
323 - title: Tegra 132
324 scope: tegra132
325
Jayanth Dodderi Chidanandb16bc302022-05-19 11:03:07 +0100326 - title: Tegra 194
327 scope: tegra194
328
Chris Kay82117d72021-12-01 16:34:55 +0000329 - title: NXP
330 scope: nxp
331
332 deprecated:
333 - plat/nxp
334 - plat/nxp/common
335
336 subsections:
337 - title: i.MX
338 scope: imx
339
340 deprecated:
341 - plat/imx
342 - plat/imx/imx
343
344 subsections:
345 - title: i.MX 8M
346 scope: imx8m
347
348 deprecated:
349 - plat/imx8m
350 - plat/imx/imx8m
351
352 subsections:
Jayanth Dodderi Chidanandb16bc302022-05-19 11:03:07 +0100353 - title: i.MX 8M Nano
354 scope: imx8mn
355
356 deprecated:
357 - plat/imx/imx8m/imx8mn
358
Chris Kay82117d72021-12-01 16:34:55 +0000359 - title: i.MX 8M Mini
360 scope: imx8mm
361
362 deprecated:
363 - plat/imx/imx8m/imx8mm
364
365 - title: i.MX 8M Plus
366 scope: imx8mp
367
368 deprecated:
369 - plat/imx/imx8m/imx8mp
370
Jayanth Dodderi Chidanandb16bc302022-05-19 11:03:07 +0100371 - title: i.MX 8Q
372 scope: imx8mq
373
374 deprecated:
375 - plat/imx/imx8m/imx8mq
376
Chris Kay82117d72021-12-01 16:34:55 +0000377 - title: Layerscape
378 scope: layerscape
379
380 deprecated:
381 - docs/nxp/layerscape
382
383 subsections:
384 - title: LS1028A
385 scope: ls1028a
386
387 deprecated:
388 - plat/nxp/ls1028a
389
390 subsections:
391 - title: LS1028ARDB
392 scope: ls1028ardb
393
394 deprecated:
395 - plat/nxp/ls1028ardb
396
Jayanth Dodderi Chidanandb16bc302022-05-19 11:03:07 +0100397 - title: LS1043A
398 scope: ls1043a
399
400 deprecated:
401 - plat/nxp/ls1043a
402
403 subsections:
404 - title: LS1043ARDB
405 scope: ls1043ardb
406
407 deprecated:
408 - plat/nxp/ls1043ardb
409
Chris Kay82117d72021-12-01 16:34:55 +0000410 - title: LX2
411 scope: lx2
412
413 deprecated:
414 - plat/nxp/lx2
415
416 subsections:
417 - title: LX216
418 scope: lx216
419
420 deprecated:
421 - plat/nxp/lx216x
422
423 subsections:
424 - title: LX2160
425 scope: lx2160
426
427 deprecated:
428 - plat/soc-lx2160
429
Jiafei Pan18ba9e42022-02-10 10:39:56 +0800430 - title: LS1046A
431 scope: ls1046a
432
433 subsections:
434 - title: LS1046ARDB
435 scope: ls1046ardb
436
437 - title: LS1046AFRWY
438 scope: ls1046afrwy
439
440 - title: LS1046AQDS
441 scope: ls1046aqds
442
Jiafei Pan290bf6f2022-02-24 16:00:35 +0800443 - title: LS1088A
444 scope: ls1088a
445
446 subsections:
447 - title: LS1088ARDB
448 scope: ls1088ardb
449
450 - title: LS1088AQDS
451 scope: ls1088aqds
452
Chris Kay82117d72021-12-01 16:34:55 +0000453 - title: QEMU
454 scope: qemu
455
456 deprecated:
457 - plat/qemu
458
459 - title: QTI
460 scope: qti
461
laurenw-arm7c66fca2022-11-01 14:45:33 -0500462 deprecated:
463 - plat/qti
464
Chris Kay82117d72021-12-01 16:34:55 +0000465 subsections:
466 - title: SC1780
467 scope: sc7180
468
469 deprecated:
470 - plat/qti/sc7180
471
472 - title: SC7280
473 scope: sc7280
474
475 deprecated:
476 - plat/qti/sc7280
477
Stephan Gerholdd0d0bf42021-12-01 20:00:00 +0100478 - title: MSM8916
479 scope: msm8916
480
Chris Kay82117d72021-12-01 16:34:55 +0000481 - title: Raspberry Pi
482 scope: rpi
483
484 subsections:
laurenw-arm7c66fca2022-11-01 14:45:33 -0500485 - title: Raspberry Pi 3
486 scope: rpi3
487
Chris Kay82117d72021-12-01 16:34:55 +0000488 - title: Raspberry Pi 4
489 scope: rpi4
490
491 - title: Renesas
492 scope: renesas
493
494 subsections:
495 - title: R-Car
496 scope: rcar
497
498 deprecated:
499 - plat/rcar
500
501 subsections:
502 - title: R-Car 3
503 scope: rcar3
504
505 deprecated:
506 - plat/rcar3
507
508 - title: Rockchip
509 scope: rockchip
510
511 subsections:
512 - title: RK3399
513 scope: rk3399
514
515 deprecated:
516 - rockchip/rk3399
517 - rk3399/suspend
518
519 - title: Socionext
520 scope: socionext
521
522 subsections:
523 - title: Synquacer
524 scope: synquacer
525
526 deprecated:
527 - plat/synquacer
528
529 - title: ST
530 scope: st
531
532 deprecated:
533 - plat/st
534
535 subsections:
Yann Gautier14b32e82022-06-01 18:17:43 +0200536 - title: STM32MP1
Chris Kay82117d72021-12-01 16:34:55 +0000537 scope: stm32mp1
538
539 deprecated:
540 - plat/st/stm32mp1
541
Yann Gautier14b32e82022-06-01 18:17:43 +0200542 subsections:
543 - title: STM32MP13
544 scope: stm32mp13
545
546 - title: STM32MP15
547 scope: stm32mp15
548
Dave Gerlach74c19f92022-03-22 11:02:52 -0500549 - title: Texas Instruments
550 scope: ti
551
552 subsections:
553 - title: K3
554 scope: k3
555
laurenw-arm7c66fca2022-11-01 14:45:33 -0500556 deprecated:
557 - ti-k3
558
Chris Kay82117d72021-12-01 16:34:55 +0000559 - title: Xilinx
560 scope: xilinx
561
562 deprecated:
563 - plat/xilinx
564
565 subsections:
566 - title: Versal
567 scope: versal
568
569 deprecated:
570 - plat/xilinx/versal/include
571 - plat/xilinx/versal
572 - plat/versal
573
laurenw-arm7c66fca2022-11-01 14:45:33 -0500574 subsections:
575 - title: Versal NET
576 scope: versal-net
577
578 deprecated:
579 - versal_net
580
Chris Kay82117d72021-12-01 16:34:55 +0000581 - title: ZynqMP
582 scope: zynqmp
583
584 deprecated:
585 - plat/zynqmp
586 - plat/xilinx/zynqmp
587
588 - title: Bootloader Images
589 scope: bl
590
591 deprecated:
592 - bl_common
593
594 subsections:
595 - title: BL1
596 scope: bl1
597
598 - title: BL2
599 scope: bl2
600
Jayanth Dodderi Chidanandb16bc302022-05-19 11:03:07 +0100601 - title: BL31
602 scope: bl31
603
Shruti Guptac31beb62022-08-09 10:46:07 +0100604 - title: BL32
605 scope: bl32
606
607 subsections:
608 - title: TSP
609 scope: tsp
610
Chris Kay82117d72021-12-01 16:34:55 +0000611 - title: Services
612 scope: services
613
614 subsections:
615 - title: FF-A
Daniel Boulby8d74d6a2021-12-06 14:44:35 +0000616 scope: ff-a
Chris Kay82117d72021-12-01 16:34:55 +0000617
618 deprecated:
Daniel Boulby8d74d6a2021-12-06 14:44:35 +0000619 - ffa
Chris Kay82117d72021-12-01 16:34:55 +0000620
621 - title: RME
622 scope: rme
623
laurenw-arm7c66fca2022-11-01 14:45:33 -0500624 deprecated:
625 - rme/fid
626
Jayanth Dodderi Chidanandb16bc302022-05-19 11:03:07 +0100627 subsections:
628 - title: TRP
629 scope: trp
630
Javier Almansa Sobrino7176a772021-11-24 18:37:37 +0000631 - title: RMMD
632 scope: rmmd
633
Chris Kay82117d72021-12-01 16:34:55 +0000634 - title: SPM
635 scope: spm
636
Jayanth Dodderi Chidanandb16bc302022-05-19 11:03:07 +0100637 subsections:
638 - title: EL3 SPMC
639 scope: el3-spmc
640
laurenw-arm7c66fca2022-11-01 14:45:33 -0500641 deprecated:
642 - spmc
643
Jayanth Dodderi Chidanandb16bc302022-05-19 11:03:07 +0100644 - title: SPMD
645 scope: spmd
Daniel Boulby8d74d6a2021-12-06 14:44:35 +0000646
Jayanth Dodderi Chidanandb16bc302022-05-19 11:03:07 +0100647 - title: SPM MM
648 scope: spm-mm
Chris Kay82117d72021-12-01 16:34:55 +0000649
Manish V Badarkhe478d3ee2022-06-27 09:21:14 +0100650 - title: DRTM
651 scope: drtm
652
Jayanth Dodderi Chidanand7c7faff2022-10-11 17:16:07 +0100653 - title: TRNG
654 scope: trng
655
Chris Kay82117d72021-12-01 16:34:55 +0000656 - title: Libraries
657
658 subsections:
659 - title: CPU Support
660 scope: cpus
661
662 deprecated:
663 - cpu
664 - errata
665 - errata_report
666
667 - title: EL3 Runtime
668 scope: el3-runtime
669
670 deprecated:
671 - el3_runtime
672
Jayanth Dodderi Chidanandb16bc302022-05-19 11:03:07 +0100673 subsections:
674 - title: Context Management
675 scope: cm
676
laurenw-arm7c66fca2022-11-01 14:45:33 -0500677 - title: RAS
678 scope: ras
679
Chris Kay82117d72021-12-01 16:34:55 +0000680 - title: FCONF
681 scope: fconf
682
683 - title: MPMM
684 scope: mpmm
685
686 - title: OP-TEE
687 scope: optee
688
689 deprecated:
690 - lib/optee
691
692 - title: PSCI
693 scope: psci
694
695 - title: GPT
696 scope: gpt
697
698 deprecated:
699 - gpt_rme
700
701 - title: SMCCC
702 scope: smccc
703
704 - title: Translation Tables
705 scope: xlat
706
Jayanth Dodderi Chidanandb16bc302022-05-19 11:03:07 +0100707 - title: C Standard Library
708 scope: libc
709
710 - title: Locks
711 scope: locks
712
713 - title: PSA
714 scope: psa
715
laurenw-arm7c66fca2022-11-01 14:45:33 -0500716 deprecated:
717 - lib/psa
718
Zelalem Aweke5362beb2022-04-04 17:42:48 -0500719 - title: Context Management
Chris Kaye76be0a2022-10-10 16:57:45 +0100720 scope: context-mgmt
721
722 deprecated:
723 - context mgmt
Zelalem Aweke5362beb2022-04-04 17:42:48 -0500724
Manish V Badarkhede920262022-09-26 15:06:56 +0100725 - title: Semihosting
726 scope: semihosting
727
Chris Kay82117d72021-12-01 16:34:55 +0000728 - title: Drivers
729
730 subsections:
731 - title: Authentication
732 scope: auth
733
734 deprecated:
735 - driver/auth
736
737 subsections:
738 - title: CryptoCell-713
739 scope: cc-713
740
Manish V Badarkhe8d91e982022-09-22 21:41:55 +0100741 - title: Crypto
742 scope: crypto
743
744 - title: mbedTLS
745 scope: mbedtls
746
Jayanth Dodderi Chidanandb16bc302022-05-19 11:03:07 +0100747 - title: Generic Clock
748 scope: clk
749
Chris Kay82117d72021-12-01 16:34:55 +0000750 - title: FWU
751 scope: fwu
752
753 deprecated:
754 - fwu_metadata
755
756 - title: I/O
757 scope: io
758
759 subsections:
760 - title: MTD
761 scope: mtd
762
763 deprecated:
764 - io_mtd
765
766 - title: Measured Boot
767 scope: measured-boot
768
769 deprecated:
770 - measured boot
771 - measured_boot
772
773 - title: MMC
774 scope: mmc
775
776 deprecated:
777 - drivers/mmc
778
779 - title: MTD
780 scope: mtd
781
782 deprecated:
783 - drivers/mtd
784
785 subsections:
786 - title: NAND
787 scope: nand
788
789 subsections:
790 - title: SPI NAND
791 scope: spi-nand
792
793 deprecated:
794 - spi_nand
795
Jayanth Dodderi Chidanandb16bc302022-05-19 11:03:07 +0100796 - title: GUID Partition Tables Support
797 scope: guid-partition
Sughosh Ganu540e0322022-01-19 11:31:20 +0530798
Chris Kay82117d72021-12-01 16:34:55 +0000799 - title: SCMI
800 scope: scmi
801
802 deprecated:
803 - scmi_common
804 - drivers/scmi-msg
laurenw-arm7c66fca2022-11-01 14:45:33 -0500805 - scmi-msg
Chris Kay82117d72021-12-01 16:34:55 +0000806
807 - title: UFS
808 scope: ufs
809
810 - title: Arm
811 scope: arm-drivers
812
813 subsections:
814 - title: Ethos-N
815 scope: ethos-n
816
817 deprecated:
818 - drivers/arm/ethosn
819
820 - title: GIC
821 scope: gic
822
823 subsections:
824 - title: GICv3
825 scope: gicv3
826
laurenw-arm7c66fca2022-11-01 14:45:33 -0500827 deprecated:
828 - gicv3/multichip
829
Chris Kay82117d72021-12-01 16:34:55 +0000830 subsections:
laurenw-arm7c66fca2022-11-01 14:45:33 -0500831 - title: GIC-600
832 scope: gic600
833
Chris Kay82117d72021-12-01 16:34:55 +0000834 - title: GIC-600AE
835 scope: gic600ae
836
Manish V Badarkhebcaeb672022-03-24 18:23:37 +0000837 - title: SMMU
838 scope: smmu
839
Jayanth Dodderi Chidanandb16bc302022-05-19 11:03:07 +0100840 - title: MHU
841 scope: mhu
842
843 deprecated:
844 - drivers/arm/mhu
845
846 - title: RSS
847 scope: rss
848
849 deprecated:
850 - drivers/arm/rss
851
Chris Kay82117d72021-12-01 16:34:55 +0000852 - title: TZC
853 scope: tzc
854
855 subsections:
856 - title: TZC-400
857 scope: tzc400
858
859 deprecated:
860 - drivers/tzc400
861
Jayanth Dodderi Chidanandb16bc302022-05-19 11:03:07 +0100862 - title: TZC-380
863 scope: tzc380
864
865 deprecated:
866 - drivers/tzc380
867
Chris Kay82117d72021-12-01 16:34:55 +0000868 - title: Marvell
869 scope: marvell-drivers
870
871 subsections:
872 - title: COMPHY
873 scope: marvell-comphy
874
875 deprecated:
876 - drivers/marvell/comphy
877
878 subsections:
879 - title: Armada 3700
880 scope: marvell-comphy-3700
881
882 deprecated:
883 - drivers/marvell/comphy-3700
884
885 - title: CP110
886 scope: marvell-comphy-cp110
887
888 deprecated:
889 - drivers/marvell/comphy-cp110
890
891 - title: UART
892 scope: marvell-uart
893
894 deprecated:
895 - plat/marvell/uart
896
897 - title: Armada
898 scope: armada-drivers
899
900 subsections:
901 - title: A3K
902 scope: a3k-drivers
903
904 subsections:
905 - title: A3720
906 scope: a3720-uart
907
908 deprecated:
909 - plat/marvell/a3720/uart
910
911 - title: MediaTek
912 scope: mediatek-drivers
913
914 subsections:
915 - title: APU
916 scope: mediatek-apu
917
918 deprecated:
919 - plat/mediatek/apu
920
921 - title: EMI MPU
922 scope: mediatek-emi-mpu
923
924 deprecated:
925 - plat/mediatek/mpu
926
927 - title: PMIC Wrapper
928 scope: mediatek-pmic-wrapper
929
930 deprecated:
931 - plat/mediatek/pmic_wrap
932
933 - title: MT8192
934 scope: mt8192-drivers
935
936 subsections:
937 - title: SPM
938 scope: mt8192-spm
939
940 deprecated:
941 - mediatek/mt8192/spm
942
943 - title: NXP
944 scope: nxp-drivers
945
946 subsections:
947 - title: DCFG
948 scope: nxp-dcfg
949
950 deprecated:
951 - driver/nxp/dcfg
952
953 - title: FLEXSPI
954 scope: flexspi
955
956 deprecated:
957 - include/drivers/flexspi
958 - driver/nxp/xspi
959
960 - title: SCFG
961 scope: nxp-scfg
962
963 deprecated:
964 - nxp/scfg
965
966 - title: SFP
967 scope: nxp-sfp
968
969 deprecated:
970 - drivers/nxp/sfp
971
Jiafei Pan18ba9e42022-02-10 10:39:56 +0800972 - title: QSPI
973 scope: nxp-qspi
974
Jiafei Pan94450412022-02-18 12:02:04 +0800975 - title: NXP Crypto
976 scope: nxp-crypto
977
Jiafei Panfa3f7612022-02-22 11:05:00 +0800978 - title: DDR
979 scope: nxp-ddr
980
981 - title: GIC
982 scope: nxp-gic
983
Jayanth Dodderi Chidanandb16bc302022-05-19 11:03:07 +0100984 - title: CSU
985 scope: nxp-csu
986
987 - title: IFC NAND
988 scope: nxp-ifc-nand
989
990 - title: IFC NOR
991 scope: nxp-ifc-nor
992
993 - title: TZC-380
994 scope: nxp-tzc380
995
Chris Kay82117d72021-12-01 16:34:55 +0000996 - title: Renesas
997 scope: renesas-drivers
998
999 subsections:
1000 - title: R-Car3
1001 scope: rcar3-drivers
1002
1003 deprecated:
1004 - drivers/rcar3
1005
1006 - title: ST
1007 scope: st-drivers
1008
1009 deprecated:
1010 - drivers/st
1011
1012 subsections:
Yann Gautier9f359fd2022-01-27 09:25:47 +01001013 - title: BSEC
1014 scope: st-bsec
1015
Chris Kay82117d72021-12-01 16:34:55 +00001016 - title: Clock
1017 scope: st-clock
1018
1019 deprecated:
1020 - stm32mp_clk
1021 - drivers/st/clk
1022 - stm32mp1_clk
1023
Yann Gautier9f359fd2022-01-27 09:25:47 +01001024 - title: Crypto
1025 scope: st-crypto
1026
1027 - title: DDR
1028 scope: st-ddr
1029
Chris Kay82117d72021-12-01 16:34:55 +00001030 - title: I/O
1031 scope: st-io-drivers
1032
1033 subsections:
1034 - title: STM32 Image
1035 scope: st-io-stm32image
1036
1037 deprecated:
1038 - io-stm32image
1039 - io_stm32image
1040
Yann Gautier9f359fd2022-01-27 09:25:47 +01001041 - title: I2C
1042 scope: st-i2c
1043
1044 - title: FMC
1045 scope: st-fmc
1046
1047 - title: GPIO
1048 scope: st-gpio
1049
Chris Kay82117d72021-12-01 16:34:55 +00001050 - title: SDMMC2
1051 scope: st-sdmmc2
1052
1053 deprecated:
1054 - stm32_sdmmc2
1055
1056 - title: ST PMIC
1057 scope: st-pmic
1058
1059 deprecated:
1060 - drivers/st/pmic
1061
1062 - title: STPMIC1
1063 scope: stpmic1
1064
Yann Gautier9f359fd2022-01-27 09:25:47 +01001065 - title: Regulator
1066 scope: st-regulator
1067
1068 - title: Reset
1069 scope: st-reset
1070
1071 - title: SPI
1072 scope: st-spi
1073
Chris Kay82117d72021-12-01 16:34:55 +00001074 - title: UART
1075 scope: st-uart
1076
1077 subsections:
1078 - title: STM32 Console
1079 scope: stm32-console
1080
1081 deprecated:
1082 - stm32_console
1083
1084 - title: USB
1085 scope: st-usb
1086
1087 deprecated:
1088 - drivers/st/usb
1089
Yann Gautier9f359fd2022-01-27 09:25:47 +01001090 - title: Watchdog
1091 scope: st-iwdg
1092
Chris Kay82117d72021-12-01 16:34:55 +00001093 - title: USB
1094 scope: usb
1095
1096 deprecated:
1097 - drivers/usb
1098
1099 - title: Miscellaneous
1100
1101 subsections:
1102 - title: AArch64
1103 scope: aarch64
1104
1105 - title: Debug
1106 scope: debug
1107
1108 deprecated:
1109 - common/debug
1110
1111 - title: CRC32
1112 scope: crc32
1113
1114 subsections:
1115 - title: Hardware CRC32
1116 scope: hw-crc32
1117
1118 deprecated:
1119 - hw_crc
1120 - hw_crc32
1121
1122 - title: Software CRC32
1123 scope: sw-crc32
1124
1125 deprecated:
1126 - sw_crc32
1127
1128 - title: DT Bindings
1129 scope: dt-bindings
1130
1131 - title: FDT Wrappers
1132 scope: fdt-wrappers
1133
1134 - title: FDTs
1135 scope: fdts
1136
1137 deprecated:
1138 - fdt
1139
1140 subsections:
1141 - title: Morello
1142 scope: morello-fdts
1143
1144 deprecated:
1145 - fdts/morello
1146
1147 - title: STM32MP1
1148 scope: stm32mp1-fdts
1149
1150 deprecated:
1151 - fdts stm32mp1
1152
Yann Gautier2c962252022-07-08 15:55:14 +02001153 subsections:
1154 - title: STM32MP13
1155 scope: stm32mp13-fdts
1156
1157 - title: STM32MP15
1158 scope: stm32mp15-fdts
1159
Chris Kay82117d72021-12-01 16:34:55 +00001160 - title: PIE
1161 scope: pie
1162
1163 - title: Security
1164 scope: security
1165
1166 - title: SDEI
1167 scope: sdei
1168
1169 - title: TBBR
1170 scope: tbbr
1171
1172 - title: NXP
1173
1174 subsections:
1175 - title: OCRAM
1176 scope: nxp-ocram
1177
1178 deprecated:
1179 - nxp/common/ocram
1180
1181 - title: PSCI
1182 scope: nxp-psci
1183
1184 deprecated:
1185 - plat/nxp/common/psci
1186
1187 - title: Documentation
1188 scope: docs
1189
1190 deprecated:
1191 - doc
1192
1193 subsections:
1194 - title: Changelog
1195 scope: changelog
1196
1197 - title: Commit Style
1198 scope: commit-style
1199
1200 - title: Contribution Guidelines
1201 scope: contributing
1202
1203 deprecated:
1204 - contribution-guidelines
1205 - docs-contributing.rst
1206
1207 - title: Maintainers
1208 scope: maintainers
1209
1210 - title: Prerequisites
1211 scope: prerequisites
1212
Sandrine Bailleux3c8fdf72022-05-10 14:53:44 +02001213 - title: Threat Model
1214 scope: threat-model
1215
Chris Kay82117d72021-12-01 16:34:55 +00001216 - title: Build System
1217 scope: build
1218
1219 deprecated:
1220 - makefile
1221 - Makefile
1222
1223 subsections:
1224 - title: Git Hooks
1225 scope: hooks
1226
1227 - title: Tools
1228
1229 subsections:
1230 - title: STM32 Image
1231 scope: stm32image
1232
1233 deprecated:
1234 - tools/stm32image
1235
Jiafei Pan18ba9e42022-02-10 10:39:56 +08001236 - title: NXP Tools
1237 scope: nxp-tools
1238
Jayanth Dodderi Chidanandb16bc302022-05-19 11:03:07 +01001239 - title: Firmware Image Package Tool
1240 scope: fiptool
1241
1242 - title: Secure Partition Tool
1243 scope: sptool
1244
1245 - title: Certificate Creation Tool
1246 scope: cert-create
1247
laurenw-arm7c66fca2022-11-01 14:45:33 -05001248 deprecated:
1249 - cert_create
1250
Chris Kay82117d72021-12-01 16:34:55 +00001251 - title: Dependencies
1252 scope: deps
1253
1254 subsections:
1255 - title: checkpatch
1256 scope: checkpatch
1257
1258 - title: commitlint
1259 scope: commitlint
1260
Daniel Boulbyc550e702022-10-05 11:03:44 +01001261 - title: Compiler runtime libraries
1262 scope: compiler-rt
1263
Chris Kay82117d72021-12-01 16:34:55 +00001264 - title: libfdt
1265 scope: libfdt
1266
1267 - title: Node Package Manager (NPM)
1268 scope: npm
Daniel Boulbyc550e702022-10-05 11:03:44 +01001269
1270 - title: zlib
1271 scope: zlib
1272