blob: 1e1f0a105155b0c4343b8b85887d474e09c40f51 [file] [log] [blame]
Chris Kay82117d72021-12-01 16:34:55 +00001#
Yann Gautier1832d662023-01-06 17:05:48 +01002# Copyright (c) 2021-2023, 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
Yann Gautier1832d662023-01-06 17:05:48 +0100747 - title: Console
748 scope: console
749
Jayanth Dodderi Chidanandb16bc302022-05-19 11:03:07 +0100750 - title: Generic Clock
751 scope: clk
752
Chris Kay82117d72021-12-01 16:34:55 +0000753 - title: FWU
754 scope: fwu
755
756 deprecated:
757 - fwu_metadata
758
759 - title: I/O
760 scope: io
761
762 subsections:
763 - title: MTD
764 scope: mtd
765
766 deprecated:
767 - io_mtd
768
769 - title: Measured Boot
770 scope: measured-boot
771
772 deprecated:
773 - measured boot
774 - measured_boot
775
776 - title: MMC
777 scope: mmc
778
779 deprecated:
780 - drivers/mmc
781
782 - title: MTD
783 scope: mtd
784
785 deprecated:
786 - drivers/mtd
787
788 subsections:
789 - title: NAND
790 scope: nand
791
792 subsections:
793 - title: SPI NAND
794 scope: spi-nand
795
796 deprecated:
797 - spi_nand
798
Jayanth Dodderi Chidanandb16bc302022-05-19 11:03:07 +0100799 - title: GUID Partition Tables Support
800 scope: guid-partition
Sughosh Ganu540e0322022-01-19 11:31:20 +0530801
Chris Kay82117d72021-12-01 16:34:55 +0000802 - title: SCMI
803 scope: scmi
804
805 deprecated:
806 - scmi_common
807 - drivers/scmi-msg
laurenw-arm7c66fca2022-11-01 14:45:33 -0500808 - scmi-msg
Chris Kay82117d72021-12-01 16:34:55 +0000809
810 - title: UFS
811 scope: ufs
812
813 - title: Arm
814 scope: arm-drivers
815
816 subsections:
817 - title: Ethos-N
818 scope: ethos-n
819
820 deprecated:
821 - drivers/arm/ethosn
822
823 - title: GIC
824 scope: gic
825
826 subsections:
827 - title: GICv3
828 scope: gicv3
829
laurenw-arm7c66fca2022-11-01 14:45:33 -0500830 deprecated:
831 - gicv3/multichip
832
Chris Kay82117d72021-12-01 16:34:55 +0000833 subsections:
laurenw-arm7c66fca2022-11-01 14:45:33 -0500834 - title: GIC-600
835 scope: gic600
836
Chris Kay82117d72021-12-01 16:34:55 +0000837 - title: GIC-600AE
838 scope: gic600ae
839
Manish V Badarkhebcaeb672022-03-24 18:23:37 +0000840 - title: SMMU
841 scope: smmu
842
Jayanth Dodderi Chidanandb16bc302022-05-19 11:03:07 +0100843 - title: MHU
844 scope: mhu
845
846 deprecated:
847 - drivers/arm/mhu
848
849 - title: RSS
850 scope: rss
851
852 deprecated:
853 - drivers/arm/rss
854
Chris Kay82117d72021-12-01 16:34:55 +0000855 - title: TZC
856 scope: tzc
857
858 subsections:
859 - title: TZC-400
860 scope: tzc400
861
862 deprecated:
863 - drivers/tzc400
864
Jayanth Dodderi Chidanandb16bc302022-05-19 11:03:07 +0100865 - title: TZC-380
866 scope: tzc380
867
868 deprecated:
869 - drivers/tzc380
870
Chris Kay82117d72021-12-01 16:34:55 +0000871 - title: Marvell
872 scope: marvell-drivers
873
874 subsections:
875 - title: COMPHY
876 scope: marvell-comphy
877
878 deprecated:
879 - drivers/marvell/comphy
880
881 subsections:
882 - title: Armada 3700
883 scope: marvell-comphy-3700
884
885 deprecated:
886 - drivers/marvell/comphy-3700
887
888 - title: CP110
889 scope: marvell-comphy-cp110
890
891 deprecated:
892 - drivers/marvell/comphy-cp110
893
894 - title: UART
895 scope: marvell-uart
896
897 deprecated:
898 - plat/marvell/uart
899
900 - title: Armada
901 scope: armada-drivers
902
903 subsections:
904 - title: A3K
905 scope: a3k-drivers
906
907 subsections:
908 - title: A3720
909 scope: a3720-uart
910
911 deprecated:
912 - plat/marvell/a3720/uart
913
914 - title: MediaTek
915 scope: mediatek-drivers
916
917 subsections:
918 - title: APU
919 scope: mediatek-apu
920
921 deprecated:
922 - plat/mediatek/apu
923
924 - title: EMI MPU
925 scope: mediatek-emi-mpu
926
927 deprecated:
928 - plat/mediatek/mpu
929
930 - title: PMIC Wrapper
931 scope: mediatek-pmic-wrapper
932
933 deprecated:
934 - plat/mediatek/pmic_wrap
935
936 - title: MT8192
937 scope: mt8192-drivers
938
939 subsections:
940 - title: SPM
941 scope: mt8192-spm
942
943 deprecated:
944 - mediatek/mt8192/spm
945
946 - title: NXP
947 scope: nxp-drivers
948
949 subsections:
950 - title: DCFG
951 scope: nxp-dcfg
952
953 deprecated:
954 - driver/nxp/dcfg
955
956 - title: FLEXSPI
957 scope: flexspi
958
959 deprecated:
960 - include/drivers/flexspi
961 - driver/nxp/xspi
962
963 - title: SCFG
964 scope: nxp-scfg
965
966 deprecated:
967 - nxp/scfg
968
969 - title: SFP
970 scope: nxp-sfp
971
972 deprecated:
973 - drivers/nxp/sfp
974
Jiafei Pan18ba9e42022-02-10 10:39:56 +0800975 - title: QSPI
976 scope: nxp-qspi
977
Jiafei Pan94450412022-02-18 12:02:04 +0800978 - title: NXP Crypto
979 scope: nxp-crypto
980
Jiafei Panfa3f7612022-02-22 11:05:00 +0800981 - title: DDR
982 scope: nxp-ddr
983
984 - title: GIC
985 scope: nxp-gic
986
Jayanth Dodderi Chidanandb16bc302022-05-19 11:03:07 +0100987 - title: CSU
988 scope: nxp-csu
989
990 - title: IFC NAND
991 scope: nxp-ifc-nand
992
993 - title: IFC NOR
994 scope: nxp-ifc-nor
995
996 - title: TZC-380
997 scope: nxp-tzc380
998
Chris Kay82117d72021-12-01 16:34:55 +0000999 - title: Renesas
1000 scope: renesas-drivers
1001
1002 subsections:
1003 - title: R-Car3
1004 scope: rcar3-drivers
1005
1006 deprecated:
1007 - drivers/rcar3
1008
1009 - title: ST
1010 scope: st-drivers
1011
1012 deprecated:
1013 - drivers/st
1014
1015 subsections:
Yann Gautier9f359fd2022-01-27 09:25:47 +01001016 - title: BSEC
1017 scope: st-bsec
1018
Chris Kay82117d72021-12-01 16:34:55 +00001019 - title: Clock
1020 scope: st-clock
1021
1022 deprecated:
1023 - stm32mp_clk
1024 - drivers/st/clk
1025 - stm32mp1_clk
1026
Yann Gautier9f359fd2022-01-27 09:25:47 +01001027 - title: Crypto
1028 scope: st-crypto
1029
1030 - title: DDR
1031 scope: st-ddr
1032
Chris Kay82117d72021-12-01 16:34:55 +00001033 - title: I/O
1034 scope: st-io-drivers
1035
1036 subsections:
1037 - title: STM32 Image
1038 scope: st-io-stm32image
1039
1040 deprecated:
1041 - io-stm32image
1042 - io_stm32image
1043
Yann Gautier9f359fd2022-01-27 09:25:47 +01001044 - title: I2C
1045 scope: st-i2c
1046
1047 - title: FMC
1048 scope: st-fmc
1049
1050 - title: GPIO
1051 scope: st-gpio
1052
Chris Kay82117d72021-12-01 16:34:55 +00001053 - title: SDMMC2
1054 scope: st-sdmmc2
1055
1056 deprecated:
1057 - stm32_sdmmc2
1058
1059 - title: ST PMIC
1060 scope: st-pmic
1061
1062 deprecated:
1063 - drivers/st/pmic
1064
1065 - title: STPMIC1
1066 scope: stpmic1
1067
Yann Gautier9f359fd2022-01-27 09:25:47 +01001068 - title: Regulator
1069 scope: st-regulator
1070
1071 - title: Reset
1072 scope: st-reset
1073
1074 - title: SPI
1075 scope: st-spi
1076
Chris Kay82117d72021-12-01 16:34:55 +00001077 - title: UART
1078 scope: st-uart
1079
1080 subsections:
1081 - title: STM32 Console
1082 scope: stm32-console
1083
1084 deprecated:
1085 - stm32_console
1086
1087 - title: USB
1088 scope: st-usb
1089
1090 deprecated:
1091 - drivers/st/usb
1092
Yann Gautier9f359fd2022-01-27 09:25:47 +01001093 - title: Watchdog
1094 scope: st-iwdg
1095
Chris Kay82117d72021-12-01 16:34:55 +00001096 - title: USB
1097 scope: usb
1098
1099 deprecated:
1100 - drivers/usb
1101
1102 - title: Miscellaneous
1103
1104 subsections:
1105 - title: AArch64
1106 scope: aarch64
1107
1108 - title: Debug
1109 scope: debug
1110
1111 deprecated:
1112 - common/debug
1113
1114 - title: CRC32
1115 scope: crc32
1116
1117 subsections:
1118 - title: Hardware CRC32
1119 scope: hw-crc32
1120
1121 deprecated:
1122 - hw_crc
1123 - hw_crc32
1124
1125 - title: Software CRC32
1126 scope: sw-crc32
1127
1128 deprecated:
1129 - sw_crc32
1130
1131 - title: DT Bindings
1132 scope: dt-bindings
1133
1134 - title: FDT Wrappers
1135 scope: fdt-wrappers
1136
1137 - title: FDTs
1138 scope: fdts
1139
1140 deprecated:
1141 - fdt
1142
1143 subsections:
1144 - title: Morello
1145 scope: morello-fdts
1146
1147 deprecated:
1148 - fdts/morello
1149
1150 - title: STM32MP1
1151 scope: stm32mp1-fdts
1152
1153 deprecated:
1154 - fdts stm32mp1
1155
Yann Gautier2c962252022-07-08 15:55:14 +02001156 subsections:
1157 - title: STM32MP13
1158 scope: stm32mp13-fdts
1159
1160 - title: STM32MP15
1161 scope: stm32mp15-fdts
1162
Chris Kay82117d72021-12-01 16:34:55 +00001163 - title: PIE
1164 scope: pie
1165
1166 - title: Security
1167 scope: security
1168
1169 - title: SDEI
1170 scope: sdei
1171
1172 - title: TBBR
1173 scope: tbbr
1174
1175 - title: NXP
1176
1177 subsections:
1178 - title: OCRAM
1179 scope: nxp-ocram
1180
1181 deprecated:
1182 - nxp/common/ocram
1183
1184 - title: PSCI
1185 scope: nxp-psci
1186
1187 deprecated:
1188 - plat/nxp/common/psci
1189
1190 - title: Documentation
1191 scope: docs
1192
1193 deprecated:
1194 - doc
1195
1196 subsections:
1197 - title: Changelog
1198 scope: changelog
1199
1200 - title: Commit Style
1201 scope: commit-style
1202
1203 - title: Contribution Guidelines
1204 scope: contributing
1205
1206 deprecated:
1207 - contribution-guidelines
1208 - docs-contributing.rst
1209
1210 - title: Maintainers
1211 scope: maintainers
1212
1213 - title: Prerequisites
1214 scope: prerequisites
1215
Sandrine Bailleux3c8fdf72022-05-10 14:53:44 +02001216 - title: Threat Model
1217 scope: threat-model
1218
Chris Kay82117d72021-12-01 16:34:55 +00001219 - title: Build System
1220 scope: build
1221
1222 deprecated:
1223 - makefile
1224 - Makefile
1225
1226 subsections:
1227 - title: Git Hooks
1228 scope: hooks
1229
1230 - title: Tools
1231
1232 subsections:
1233 - title: STM32 Image
1234 scope: stm32image
1235
1236 deprecated:
1237 - tools/stm32image
1238
Jiafei Pan18ba9e42022-02-10 10:39:56 +08001239 - title: NXP Tools
1240 scope: nxp-tools
1241
Jayanth Dodderi Chidanandb16bc302022-05-19 11:03:07 +01001242 - title: Firmware Image Package Tool
1243 scope: fiptool
1244
1245 - title: Secure Partition Tool
1246 scope: sptool
1247
1248 - title: Certificate Creation Tool
1249 scope: cert-create
1250
laurenw-arm7c66fca2022-11-01 14:45:33 -05001251 deprecated:
1252 - cert_create
1253
Chris Kay82117d72021-12-01 16:34:55 +00001254 - title: Dependencies
1255 scope: deps
1256
1257 subsections:
1258 - title: checkpatch
1259 scope: checkpatch
1260
1261 - title: commitlint
1262 scope: commitlint
1263
Daniel Boulbyc550e702022-10-05 11:03:44 +01001264 - title: Compiler runtime libraries
1265 scope: compiler-rt
1266
Chris Kay82117d72021-12-01 16:34:55 +00001267 - title: libfdt
1268 scope: libfdt
1269
1270 - title: Node Package Manager (NPM)
1271 scope: npm
Daniel Boulbyc550e702022-10-05 11:03:44 +01001272
1273 - title: zlib
1274 scope: zlib
1275