blob: b1d52212d790cb32a4ec653bbbc40ef308c9509e [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
Chris Kay82117d72021-12-01 16:34:55 +0000653 - title: Libraries
654
655 subsections:
656 - title: CPU Support
657 scope: cpus
658
659 deprecated:
660 - cpu
661 - errata
662 - errata_report
663
664 - title: EL3 Runtime
665 scope: el3-runtime
666
667 deprecated:
668 - el3_runtime
669
Jayanth Dodderi Chidanandb16bc302022-05-19 11:03:07 +0100670 subsections:
671 - title: Context Management
672 scope: cm
673
laurenw-arm7c66fca2022-11-01 14:45:33 -0500674 - title: RAS
675 scope: ras
676
Chris Kay82117d72021-12-01 16:34:55 +0000677 - title: FCONF
678 scope: fconf
679
680 - title: MPMM
681 scope: mpmm
682
683 - title: OP-TEE
684 scope: optee
685
686 deprecated:
687 - lib/optee
688
689 - title: PSCI
690 scope: psci
691
692 - title: GPT
693 scope: gpt
694
695 deprecated:
696 - gpt_rme
697
698 - title: SMCCC
699 scope: smccc
700
701 - title: Translation Tables
702 scope: xlat
703
Jayanth Dodderi Chidanandb16bc302022-05-19 11:03:07 +0100704 - title: C Standard Library
705 scope: libc
706
707 - title: Locks
708 scope: locks
709
710 - title: PSA
711 scope: psa
712
laurenw-arm7c66fca2022-11-01 14:45:33 -0500713 deprecated:
714 - lib/psa
715
Zelalem Aweke5362beb2022-04-04 17:42:48 -0500716 - title: Context Management
Chris Kaye76be0a2022-10-10 16:57:45 +0100717 scope: context-mgmt
718
719 deprecated:
720 - context mgmt
Zelalem Aweke5362beb2022-04-04 17:42:48 -0500721
Manish V Badarkhede920262022-09-26 15:06:56 +0100722 - title: Semihosting
723 scope: semihosting
724
Chris Kay82117d72021-12-01 16:34:55 +0000725 - title: Drivers
726
727 subsections:
728 - title: Authentication
729 scope: auth
730
731 deprecated:
732 - driver/auth
733
734 subsections:
735 - title: CryptoCell-713
736 scope: cc-713
737
Manish V Badarkhe8d91e982022-09-22 21:41:55 +0100738 - title: Crypto
739 scope: crypto
740
741 - title: mbedTLS
742 scope: mbedtls
743
Jayanth Dodderi Chidanandb16bc302022-05-19 11:03:07 +0100744 - title: Generic Clock
745 scope: clk
746
Chris Kay82117d72021-12-01 16:34:55 +0000747 - title: FWU
748 scope: fwu
749
750 deprecated:
751 - fwu_metadata
752
753 - title: I/O
754 scope: io
755
756 subsections:
757 - title: MTD
758 scope: mtd
759
760 deprecated:
761 - io_mtd
762
763 - title: Measured Boot
764 scope: measured-boot
765
766 deprecated:
767 - measured boot
768 - measured_boot
769
770 - title: MMC
771 scope: mmc
772
773 deprecated:
774 - drivers/mmc
775
776 - title: MTD
777 scope: mtd
778
779 deprecated:
780 - drivers/mtd
781
782 subsections:
783 - title: NAND
784 scope: nand
785
786 subsections:
787 - title: SPI NAND
788 scope: spi-nand
789
790 deprecated:
791 - spi_nand
792
Jayanth Dodderi Chidanandb16bc302022-05-19 11:03:07 +0100793 - title: GUID Partition Tables Support
794 scope: guid-partition
Sughosh Ganu540e0322022-01-19 11:31:20 +0530795
Chris Kay82117d72021-12-01 16:34:55 +0000796 - title: SCMI
797 scope: scmi
798
799 deprecated:
800 - scmi_common
801 - drivers/scmi-msg
laurenw-arm7c66fca2022-11-01 14:45:33 -0500802 - scmi-msg
Chris Kay82117d72021-12-01 16:34:55 +0000803
804 - title: UFS
805 scope: ufs
806
807 - title: Arm
808 scope: arm-drivers
809
810 subsections:
811 - title: Ethos-N
812 scope: ethos-n
813
814 deprecated:
815 - drivers/arm/ethosn
816
817 - title: GIC
818 scope: gic
819
820 subsections:
821 - title: GICv3
822 scope: gicv3
823
laurenw-arm7c66fca2022-11-01 14:45:33 -0500824 deprecated:
825 - gicv3/multichip
826
Chris Kay82117d72021-12-01 16:34:55 +0000827 subsections:
laurenw-arm7c66fca2022-11-01 14:45:33 -0500828 - title: GIC-600
829 scope: gic600
830
Chris Kay82117d72021-12-01 16:34:55 +0000831 - title: GIC-600AE
832 scope: gic600ae
833
Manish V Badarkhebcaeb672022-03-24 18:23:37 +0000834 - title: SMMU
835 scope: smmu
836
Jayanth Dodderi Chidanandb16bc302022-05-19 11:03:07 +0100837 - title: MHU
838 scope: mhu
839
840 deprecated:
841 - drivers/arm/mhu
842
843 - title: RSS
844 scope: rss
845
846 deprecated:
847 - drivers/arm/rss
848
Chris Kay82117d72021-12-01 16:34:55 +0000849 - title: TZC
850 scope: tzc
851
852 subsections:
853 - title: TZC-400
854 scope: tzc400
855
856 deprecated:
857 - drivers/tzc400
858
Jayanth Dodderi Chidanandb16bc302022-05-19 11:03:07 +0100859 - title: TZC-380
860 scope: tzc380
861
862 deprecated:
863 - drivers/tzc380
864
Chris Kay82117d72021-12-01 16:34:55 +0000865 - title: Marvell
866 scope: marvell-drivers
867
868 subsections:
869 - title: COMPHY
870 scope: marvell-comphy
871
872 deprecated:
873 - drivers/marvell/comphy
874
875 subsections:
876 - title: Armada 3700
877 scope: marvell-comphy-3700
878
879 deprecated:
880 - drivers/marvell/comphy-3700
881
882 - title: CP110
883 scope: marvell-comphy-cp110
884
885 deprecated:
886 - drivers/marvell/comphy-cp110
887
888 - title: UART
889 scope: marvell-uart
890
891 deprecated:
892 - plat/marvell/uart
893
894 - title: Armada
895 scope: armada-drivers
896
897 subsections:
898 - title: A3K
899 scope: a3k-drivers
900
901 subsections:
902 - title: A3720
903 scope: a3720-uart
904
905 deprecated:
906 - plat/marvell/a3720/uart
907
908 - title: MediaTek
909 scope: mediatek-drivers
910
911 subsections:
912 - title: APU
913 scope: mediatek-apu
914
915 deprecated:
916 - plat/mediatek/apu
917
918 - title: EMI MPU
919 scope: mediatek-emi-mpu
920
921 deprecated:
922 - plat/mediatek/mpu
923
924 - title: PMIC Wrapper
925 scope: mediatek-pmic-wrapper
926
927 deprecated:
928 - plat/mediatek/pmic_wrap
929
930 - title: MT8192
931 scope: mt8192-drivers
932
933 subsections:
934 - title: SPM
935 scope: mt8192-spm
936
937 deprecated:
938 - mediatek/mt8192/spm
939
940 - title: NXP
941 scope: nxp-drivers
942
943 subsections:
944 - title: DCFG
945 scope: nxp-dcfg
946
947 deprecated:
948 - driver/nxp/dcfg
949
950 - title: FLEXSPI
951 scope: flexspi
952
953 deprecated:
954 - include/drivers/flexspi
955 - driver/nxp/xspi
956
957 - title: SCFG
958 scope: nxp-scfg
959
960 deprecated:
961 - nxp/scfg
962
963 - title: SFP
964 scope: nxp-sfp
965
966 deprecated:
967 - drivers/nxp/sfp
968
Jiafei Pan18ba9e42022-02-10 10:39:56 +0800969 - title: QSPI
970 scope: nxp-qspi
971
Jiafei Pan94450412022-02-18 12:02:04 +0800972 - title: NXP Crypto
973 scope: nxp-crypto
974
Jiafei Panfa3f7612022-02-22 11:05:00 +0800975 - title: DDR
976 scope: nxp-ddr
977
978 - title: GIC
979 scope: nxp-gic
980
Jayanth Dodderi Chidanandb16bc302022-05-19 11:03:07 +0100981 - title: CSU
982 scope: nxp-csu
983
984 - title: IFC NAND
985 scope: nxp-ifc-nand
986
987 - title: IFC NOR
988 scope: nxp-ifc-nor
989
990 - title: TZC-380
991 scope: nxp-tzc380
992
Chris Kay82117d72021-12-01 16:34:55 +0000993 - title: Renesas
994 scope: renesas-drivers
995
996 subsections:
997 - title: R-Car3
998 scope: rcar3-drivers
999
1000 deprecated:
1001 - drivers/rcar3
1002
1003 - title: ST
1004 scope: st-drivers
1005
1006 deprecated:
1007 - drivers/st
1008
1009 subsections:
Yann Gautier9f359fd2022-01-27 09:25:47 +01001010 - title: BSEC
1011 scope: st-bsec
1012
Chris Kay82117d72021-12-01 16:34:55 +00001013 - title: Clock
1014 scope: st-clock
1015
1016 deprecated:
1017 - stm32mp_clk
1018 - drivers/st/clk
1019 - stm32mp1_clk
1020
Yann Gautier9f359fd2022-01-27 09:25:47 +01001021 - title: Crypto
1022 scope: st-crypto
1023
1024 - title: DDR
1025 scope: st-ddr
1026
Chris Kay82117d72021-12-01 16:34:55 +00001027 - title: I/O
1028 scope: st-io-drivers
1029
1030 subsections:
1031 - title: STM32 Image
1032 scope: st-io-stm32image
1033
1034 deprecated:
1035 - io-stm32image
1036 - io_stm32image
1037
Yann Gautier9f359fd2022-01-27 09:25:47 +01001038 - title: I2C
1039 scope: st-i2c
1040
1041 - title: FMC
1042 scope: st-fmc
1043
1044 - title: GPIO
1045 scope: st-gpio
1046
Chris Kay82117d72021-12-01 16:34:55 +00001047 - title: SDMMC2
1048 scope: st-sdmmc2
1049
1050 deprecated:
1051 - stm32_sdmmc2
1052
1053 - title: ST PMIC
1054 scope: st-pmic
1055
1056 deprecated:
1057 - drivers/st/pmic
1058
1059 - title: STPMIC1
1060 scope: stpmic1
1061
Yann Gautier9f359fd2022-01-27 09:25:47 +01001062 - title: Regulator
1063 scope: st-regulator
1064
1065 - title: Reset
1066 scope: st-reset
1067
1068 - title: SPI
1069 scope: st-spi
1070
Chris Kay82117d72021-12-01 16:34:55 +00001071 - title: UART
1072 scope: st-uart
1073
1074 subsections:
1075 - title: STM32 Console
1076 scope: stm32-console
1077
1078 deprecated:
1079 - stm32_console
1080
1081 - title: USB
1082 scope: st-usb
1083
1084 deprecated:
1085 - drivers/st/usb
1086
Yann Gautier9f359fd2022-01-27 09:25:47 +01001087 - title: Watchdog
1088 scope: st-iwdg
1089
Chris Kay82117d72021-12-01 16:34:55 +00001090 - title: USB
1091 scope: usb
1092
1093 deprecated:
1094 - drivers/usb
1095
1096 - title: Miscellaneous
1097
1098 subsections:
1099 - title: AArch64
1100 scope: aarch64
1101
1102 - title: Debug
1103 scope: debug
1104
1105 deprecated:
1106 - common/debug
1107
1108 - title: CRC32
1109 scope: crc32
1110
1111 subsections:
1112 - title: Hardware CRC32
1113 scope: hw-crc32
1114
1115 deprecated:
1116 - hw_crc
1117 - hw_crc32
1118
1119 - title: Software CRC32
1120 scope: sw-crc32
1121
1122 deprecated:
1123 - sw_crc32
1124
1125 - title: DT Bindings
1126 scope: dt-bindings
1127
1128 - title: FDT Wrappers
1129 scope: fdt-wrappers
1130
1131 - title: FDTs
1132 scope: fdts
1133
1134 deprecated:
1135 - fdt
1136
1137 subsections:
1138 - title: Morello
1139 scope: morello-fdts
1140
1141 deprecated:
1142 - fdts/morello
1143
1144 - title: STM32MP1
1145 scope: stm32mp1-fdts
1146
1147 deprecated:
1148 - fdts stm32mp1
1149
Yann Gautier2c962252022-07-08 15:55:14 +02001150 subsections:
1151 - title: STM32MP13
1152 scope: stm32mp13-fdts
1153
1154 - title: STM32MP15
1155 scope: stm32mp15-fdts
1156
Chris Kay82117d72021-12-01 16:34:55 +00001157 - title: PIE
1158 scope: pie
1159
1160 - title: Security
1161 scope: security
1162
1163 - title: SDEI
1164 scope: sdei
1165
1166 - title: TBBR
1167 scope: tbbr
1168
1169 - title: NXP
1170
1171 subsections:
1172 - title: OCRAM
1173 scope: nxp-ocram
1174
1175 deprecated:
1176 - nxp/common/ocram
1177
1178 - title: PSCI
1179 scope: nxp-psci
1180
1181 deprecated:
1182 - plat/nxp/common/psci
1183
1184 - title: Documentation
1185 scope: docs
1186
1187 deprecated:
1188 - doc
1189
1190 subsections:
1191 - title: Changelog
1192 scope: changelog
1193
1194 - title: Commit Style
1195 scope: commit-style
1196
1197 - title: Contribution Guidelines
1198 scope: contributing
1199
1200 deprecated:
1201 - contribution-guidelines
1202 - docs-contributing.rst
1203
1204 - title: Maintainers
1205 scope: maintainers
1206
1207 - title: Prerequisites
1208 scope: prerequisites
1209
Sandrine Bailleux3c8fdf72022-05-10 14:53:44 +02001210 - title: Threat Model
1211 scope: threat-model
1212
Chris Kay82117d72021-12-01 16:34:55 +00001213 - title: Build System
1214 scope: build
1215
1216 deprecated:
1217 - makefile
1218 - Makefile
1219
1220 subsections:
1221 - title: Git Hooks
1222 scope: hooks
1223
1224 - title: Tools
1225
1226 subsections:
1227 - title: STM32 Image
1228 scope: stm32image
1229
1230 deprecated:
1231 - tools/stm32image
1232
Jiafei Pan18ba9e42022-02-10 10:39:56 +08001233 - title: NXP Tools
1234 scope: nxp-tools
1235
Jayanth Dodderi Chidanandb16bc302022-05-19 11:03:07 +01001236 - title: Firmware Image Package Tool
1237 scope: fiptool
1238
1239 - title: Secure Partition Tool
1240 scope: sptool
1241
1242 - title: Certificate Creation Tool
1243 scope: cert-create
1244
laurenw-arm7c66fca2022-11-01 14:45:33 -05001245 deprecated:
1246 - cert_create
1247
Chris Kay82117d72021-12-01 16:34:55 +00001248 - title: Dependencies
1249 scope: deps
1250
1251 subsections:
1252 - title: checkpatch
1253 scope: checkpatch
1254
1255 - title: commitlint
1256 scope: commitlint
1257
Daniel Boulbyc550e702022-10-05 11:03:44 +01001258 - title: Compiler runtime libraries
1259 scope: compiler-rt
1260
Chris Kay82117d72021-12-01 16:34:55 +00001261 - title: libfdt
1262 scope: libfdt
1263
1264 - title: Node Package Manager (NPM)
1265 scope: npm
Daniel Boulbyc550e702022-10-05 11:03:44 +01001266
1267 - title: zlib
1268 scope: zlib
1269