blob: 3534cb01b7b24fee5339d34cd62bbe7de49de378 [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
Mark Brown6e9e4a42023-04-17 17:51:30 +0100104 - title: Extended Translation Control Register (FEAT_TCR2).
105 scope: tcr2
106
Andre Przywara5b005112022-11-14 15:38:58 +0000107 - title: CPU feature / ID register handling in general
108 scope: cpufeat
109
Mark Brown326f2952023-03-14 21:33:04 +0000110 - title: Guarded Control Stack (FEAT_GCS)
111 scope: gcs
112
Chris Kay82117d72021-12-01 16:34:55 +0000113 - title: Support for the `HCRX_EL2` register (FEAT_HCX)
114 scope: hcx
115
116 - title: Memory Partitioning and Monitoring (MPAM) Extension (FEAT_MPAM)
117 scope: mpam
118
laurenw-arm7c66fca2022-11-01 14:45:33 -0500119 - title: Memory Tagging Extension
120 scope: mte
121
122 - title: Pointer Authentication Extension
123 scope: pauth
124
125 - title: Performance Monitors Extension (FEAT_PMUv3)
126 scope: pmu
127
128 - title: Trapping support for RNDR/RNDRRS (FEAT_RNG_TRAP)
129 scope: rng-trap
130
Jayanth Dodderi Chidanandcfe053a2022-11-08 10:31:07 +0000131 - title: Scalable Matrix Extension (FEAT_SME, FEAT_SME2)
Chris Kay82117d72021-12-01 16:34:55 +0000132 scope: sme
133
laurenw-arm7c66fca2022-11-01 14:45:33 -0500134 - title: Statistical profiling Extension (FEAT_SPE)
135 scope: spe
136
Chris Kay82117d72021-12-01 16:34:55 +0000137 - title: Scalable Vector Extension (FEAT_SVE)
138 scope: sve
139
140 - title: System Register Trace Extensions (FEAT_ETMv4, FEAT_ETE and FEAT_ETEv1.1)
141 scope: sys-reg-trace
142
143 deprecated:
144 - sys_reg_trace
145
146 - title: Trace Buffer Extension (FEAT_TRBE)
147 scope: trbe
148
149 - title: Self-hosted Trace Extensions (FEAT_TRF)
150 scope: trf
151
152 - title: Platforms
153
154 subsections:
155 - title: Allwinner
156 scope: allwinner
157
158 deprecated:
159 - plat/allwinner
160
161 - title: Arm
162 scope: arm
163
164 deprecated:
165 - plat/arm
166
167 subsections:
Juan Pablo Conde52487492023-05-15 22:17:17 -0500168 - title: A5DS
169 scope: a5ds
170
laurenw-arm7c66fca2022-11-01 14:45:33 -0500171 - title: CSS
172 scope: css
173
174 deprecated:
175 - plat/arm/css
Juan Pablo Conde52487492023-05-15 22:17:17 -0500176 - plat/css
laurenw-arm7c66fca2022-11-01 14:45:33 -0500177
Chris Kay82117d72021-12-01 16:34:55 +0000178 - title: FPGA
179 scope: fpga
180
181 deprecated:
182 - arm_fgpa
183 - arm_fpga
184 - plat/arm_fpga
185
186 - title: FVP
187 scope: fvp
188
189 deprecated:
190 - plat/fvp
laurenw-arm7c66fca2022-11-01 14:45:33 -0500191 - fvp/tsp_manifest
Chris Kay82117d72021-12-01 16:34:55 +0000192
193 - title: FVP-R
194 scope: fvp-r
195
196 deprecated:
197 - fvp_r
198
laurenw-arm7c66fca2022-11-01 14:45:33 -0500199 - title: FVP Versatile Express
200 scope: fvp_ve
201
Chris Kay82117d72021-12-01 16:34:55 +0000202 - title: Juno
203 scope: juno
204
205 - title: Morello
206 scope: morello
207
Jayanth Dodderi Chidanandb16bc302022-05-19 11:03:07 +0100208 - title: N1SDP
209 scope: n1sdp
210
Chris Kay82117d72021-12-01 16:34:55 +0000211 - title: RD
212 scope: rd
213
214 subsections:
Juan Pablo Conde52487492023-05-15 22:17:17 -0500215 - title: RD-N1 Edge
216 scope: rdn1edge
217
Chris Kay82117d72021-12-01 16:34:55 +0000218 - title: RD-N2
219 scope: rdn2
220
221 deprecated:
222 - board/rdn2
223
224 - title: SGI
225 scope: sgi
226
227 deprecated:
228 - plat/sgi
229 - plat/arm/sgi
230
231 - title: TC
232 scope: tc
233
Juan Pablo Conde52487492023-05-15 22:17:17 -0500234 deprecated:
235 - plat/tc
236
Chris Kay82117d72021-12-01 16:34:55 +0000237 subsections:
238 - title: TC0
239 scope: tc0
240
241 deprecated:
242 - plat/tc0
243
Jayanth Dodderi Chidanandb16bc302022-05-19 11:03:07 +0100244 - title: Corstone-1000
245 scope: corstone-1000
246
Chia-Wei Wanga7556d82022-11-02 17:50:21 +0800247 - title: Aspeed
248 scope: aspeed
249
250 subsections:
251 - title: AST2700
252 scope: ast2700
253
Jayanth Dodderi Chidanandb16bc302022-05-19 11:03:07 +0100254 - title: Broadcom
255 scope: brcm
256
laurenw-arm7c66fca2022-11-01 14:45:33 -0500257 - title: HiSilicon
258 scope: hisilicon
259
260 subsections:
261 - title: HiKey
262 scope: hikey
263
264 - title: HiKey960
265 scope: hikey960
266
Sieu Mun Tang9f3a13c2022-02-22 14:14:26 +0800267 - title: Intel
268 scope: intel
269
270 subsections:
271 - title: SoC
272 scope: soc
273
Chris Kay82117d72021-12-01 16:34:55 +0000274 - title: Marvell
275 scope: marvell
276
277 deprecated:
278 - plat/marvell
279
280 subsections:
281 - title: Armada
282 scope: armada
283
284 deprecated:
285 - plat/marvell/armada
286
287 subsections:
288 - title: A3K
289 scope: a3k
290
291 deprecated:
292 - plat/marvell/a3k
293
294 - title: A8K
295 scope: a8k
296
297 deprecated:
298 - plat/marvell/a8k
299
300 - title: MediaTek
301 scope: mediatek
302
303 deprecated:
304 - plat/mediatek/common
305 - plat/mediatek
306
307 subsections:
308 - title: MT8183
309 scope: mt8183
310
311 deprecated:
312 - plat/mediatek/mt8183
313
laurenw-arm7c66fca2022-11-01 14:45:33 -0500314 - title: MT8186
315 scope: mt8186
316
317 deprecated:
318 - plat/mediatek/mt8186
319 - mt8186-emi-mpu
320
321 - title: MT8188
322 scope: mt8188
323
Chris Kay82117d72021-12-01 16:34:55 +0000324 - title: MT8192
325 scope: mt8192
326
327 deprecated:
328 - plat/mdeiatek/mt8192
329
330 - title: MT8195
331 scope: mt8195
332
333 deprecated:
334 - plat/mediatek/me8195
335 - plat/mediatek/mt8195
336 - plat/mdeiatek/mt8195
337
338 - title: NVIDIA
339 scope: nvidia
340
341 subsections:
342 - title: Tegra
343 scope: tegra
344
345 deprecated:
346 - plat/tegra
347
348 subsections:
349 - title: Tegra 132
350 scope: tegra132
351
Jayanth Dodderi Chidanandb16bc302022-05-19 11:03:07 +0100352 - title: Tegra 194
353 scope: tegra194
354
Juan Pablo Conde52487492023-05-15 22:17:17 -0500355 - title: Tegra 210
356 scope: tegra210
357
Chris Kay82117d72021-12-01 16:34:55 +0000358 - title: NXP
359 scope: nxp
360
361 deprecated:
362 - plat/nxp
363 - plat/nxp/common
364
365 subsections:
366 - title: i.MX
367 scope: imx
368
369 deprecated:
370 - plat/imx
371 - plat/imx/imx
372
373 subsections:
374 - title: i.MX 8M
375 scope: imx8m
376
377 deprecated:
378 - plat/imx8m
379 - plat/imx/imx8m
380
381 subsections:
Jayanth Dodderi Chidanandb16bc302022-05-19 11:03:07 +0100382 - title: i.MX 8M Nano
383 scope: imx8mn
384
385 deprecated:
386 - plat/imx/imx8m/imx8mn
387
Chris Kay82117d72021-12-01 16:34:55 +0000388 - title: i.MX 8M Mini
389 scope: imx8mm
390
391 deprecated:
392 - plat/imx/imx8m/imx8mm
393
394 - title: i.MX 8M Plus
395 scope: imx8mp
396
397 deprecated:
398 - plat/imx/imx8m/imx8mp
399
Jayanth Dodderi Chidanandb16bc302022-05-19 11:03:07 +0100400 - title: i.MX 8Q
401 scope: imx8mq
402
403 deprecated:
404 - plat/imx/imx8m/imx8mq
405
Juan Pablo Conde52487492023-05-15 22:17:17 -0500406 - title: i.MX 8
407 scope: imx8
408
Jacky Bai9dc47d52023-06-14 15:24:00 +0800409 - title: i.MX 9
410 scope: imx9
411
412 subsections:
413 - title: i.MX93
414 scope: imx93
415
Chris Kay82117d72021-12-01 16:34:55 +0000416 - title: Layerscape
417 scope: layerscape
418
419 deprecated:
420 - docs/nxp/layerscape
421
422 subsections:
423 - title: LS1028A
424 scope: ls1028a
425
426 deprecated:
427 - plat/nxp/ls1028a
428
429 subsections:
430 - title: LS1028ARDB
431 scope: ls1028ardb
432
433 deprecated:
434 - plat/nxp/ls1028ardb
435
Jayanth Dodderi Chidanandb16bc302022-05-19 11:03:07 +0100436 - title: LS1043A
437 scope: ls1043a
438
439 deprecated:
440 - plat/nxp/ls1043a
441
442 subsections:
443 - title: LS1043ARDB
444 scope: ls1043ardb
445
446 deprecated:
447 - plat/nxp/ls1043ardb
448
Chris Kay82117d72021-12-01 16:34:55 +0000449 - title: LX2
450 scope: lx2
451
452 deprecated:
453 - plat/nxp/lx2
454
455 subsections:
456 - title: LX216
457 scope: lx216
458
459 deprecated:
460 - plat/nxp/lx216x
461
462 subsections:
463 - title: LX2160
464 scope: lx2160
465
466 deprecated:
467 - plat/soc-lx2160
468
Jiafei Pan18ba9e42022-02-10 10:39:56 +0800469 - title: LS1046A
470 scope: ls1046a
471
472 subsections:
473 - title: LS1046ARDB
474 scope: ls1046ardb
475
476 - title: LS1046AFRWY
477 scope: ls1046afrwy
478
479 - title: LS1046AQDS
480 scope: ls1046aqds
481
Jiafei Pan290bf6f2022-02-24 16:00:35 +0800482 - title: LS1088A
483 scope: ls1088a
484
485 subsections:
486 - title: LS1088ARDB
487 scope: ls1088ardb
488
489 - title: LS1088AQDS
490 scope: ls1088aqds
491
Chris Kay82117d72021-12-01 16:34:55 +0000492 - title: QEMU
493 scope: qemu
494
495 deprecated:
496 - plat/qemu
497
Juan Pablo Conde52487492023-05-15 22:17:17 -0500498 subsections:
499 - title: SBSA
500 scope: qemu-sbsa
501
Chris Kay82117d72021-12-01 16:34:55 +0000502 - title: QTI
503 scope: qti
504
laurenw-arm7c66fca2022-11-01 14:45:33 -0500505 deprecated:
506 - plat/qti
507
Chris Kay82117d72021-12-01 16:34:55 +0000508 subsections:
509 - title: SC1780
510 scope: sc7180
511
512 deprecated:
513 - plat/qti/sc7180
514
515 - title: SC7280
516 scope: sc7280
517
518 deprecated:
519 - plat/qti/sc7280
520
Stephan Gerholdd0d0bf42021-12-01 20:00:00 +0100521 - title: MSM8916
522 scope: msm8916
523
Chris Kay82117d72021-12-01 16:34:55 +0000524 - title: Raspberry Pi
525 scope: rpi
526
527 subsections:
laurenw-arm7c66fca2022-11-01 14:45:33 -0500528 - title: Raspberry Pi 3
529 scope: rpi3
530
Chris Kay82117d72021-12-01 16:34:55 +0000531 - title: Raspberry Pi 4
532 scope: rpi4
533
534 - title: Renesas
535 scope: renesas
536
537 subsections:
538 - title: R-Car
539 scope: rcar
540
541 deprecated:
542 - plat/rcar
543
544 subsections:
545 - title: R-Car 3
546 scope: rcar3
547
548 deprecated:
549 - plat/rcar3
550
551 - title: Rockchip
552 scope: rockchip
553
554 subsections:
555 - title: RK3399
556 scope: rk3399
557
558 deprecated:
559 - rockchip/rk3399
560 - rk3399/suspend
561
562 - title: Socionext
563 scope: socionext
564
565 subsections:
566 - title: Synquacer
567 scope: synquacer
568
569 deprecated:
570 - plat/synquacer
571
572 - title: ST
573 scope: st
574
575 deprecated:
576 - plat/st
577
578 subsections:
Yann Gautier14b32e82022-06-01 18:17:43 +0200579 - title: STM32MP1
Chris Kay82117d72021-12-01 16:34:55 +0000580 scope: stm32mp1
581
582 deprecated:
583 - plat/st/stm32mp1
584
Yann Gautier14b32e82022-06-01 18:17:43 +0200585 subsections:
586 - title: STM32MP13
587 scope: stm32mp13
588
589 - title: STM32MP15
590 scope: stm32mp15
591
Dave Gerlach74c19f92022-03-22 11:02:52 -0500592 - title: Texas Instruments
593 scope: ti
594
595 subsections:
596 - title: K3
597 scope: k3
598
laurenw-arm7c66fca2022-11-01 14:45:33 -0500599 deprecated:
600 - ti-k3
601
Chris Kay82117d72021-12-01 16:34:55 +0000602 - title: Xilinx
603 scope: xilinx
604
605 deprecated:
606 - plat/xilinx
607
608 subsections:
609 - title: Versal
610 scope: versal
611
612 deprecated:
613 - plat/xilinx/versal/include
614 - plat/xilinx/versal
615 - plat/versal
616
laurenw-arm7c66fca2022-11-01 14:45:33 -0500617 subsections:
618 - title: Versal NET
619 scope: versal-net
620
621 deprecated:
622 - versal_net
623
Chris Kay82117d72021-12-01 16:34:55 +0000624 - title: ZynqMP
625 scope: zynqmp
626
627 deprecated:
628 - plat/zynqmp
629 - plat/xilinx/zynqmp
630
rutigl@gmail.comdefbeed2023-03-19 09:19:05 +0200631 - title: Nuvoton
632 scope: nuvoton
633
634 subsections:
635 - title: npcm845x
636 scope: npcm845x
637
Chris Kay82117d72021-12-01 16:34:55 +0000638 - title: Bootloader Images
639 scope: bl
640
641 deprecated:
642 - bl_common
643
644 subsections:
645 - title: BL1
646 scope: bl1
647
648 - title: BL2
649 scope: bl2
650
Jayanth Dodderi Chidanandb16bc302022-05-19 11:03:07 +0100651 - title: BL31
652 scope: bl31
653
Shruti Guptac31beb62022-08-09 10:46:07 +0100654 - title: BL32
655 scope: bl32
656
657 subsections:
658 - title: TSP
659 scope: tsp
660
Chris Kay82117d72021-12-01 16:34:55 +0000661 - title: Services
662 scope: services
663
664 subsections:
665 - title: FF-A
Daniel Boulby8d74d6a2021-12-06 14:44:35 +0000666 scope: ff-a
Chris Kay82117d72021-12-01 16:34:55 +0000667
668 deprecated:
Daniel Boulby8d74d6a2021-12-06 14:44:35 +0000669 - ffa
Chris Kay82117d72021-12-01 16:34:55 +0000670
671 - title: RME
672 scope: rme
673
laurenw-arm7c66fca2022-11-01 14:45:33 -0500674 deprecated:
675 - rme/fid
676
Jayanth Dodderi Chidanandb16bc302022-05-19 11:03:07 +0100677 subsections:
678 - title: TRP
679 scope: trp
680
Javier Almansa Sobrino7176a772021-11-24 18:37:37 +0000681 - title: RMMD
682 scope: rmmd
683
Juan Pablo Conde52487492023-05-15 22:17:17 -0500684 - title: RMM
685 scope: rmm
686
Chris Kay82117d72021-12-01 16:34:55 +0000687 - title: SPM
688 scope: spm
689
Jayanth Dodderi Chidanandb16bc302022-05-19 11:03:07 +0100690 subsections:
691 - title: EL3 SPMC
692 scope: el3-spmc
693
laurenw-arm7c66fca2022-11-01 14:45:33 -0500694 deprecated:
695 - spmc
696
Jayanth Dodderi Chidanandb16bc302022-05-19 11:03:07 +0100697 - title: SPMD
698 scope: spmd
Daniel Boulby8d74d6a2021-12-06 14:44:35 +0000699
Jayanth Dodderi Chidanandb16bc302022-05-19 11:03:07 +0100700 - title: SPM MM
701 scope: spm-mm
Chris Kay82117d72021-12-01 16:34:55 +0000702
Manish V Badarkhe478d3ee2022-06-27 09:21:14 +0100703 - title: DRTM
704 scope: drtm
705
Jayanth Dodderi Chidanand7c7faff2022-10-11 17:16:07 +0100706 - title: TRNG
707 scope: trng
708
Sona Mathew7fe03522022-11-18 18:05:38 -0600709 - title: ERRATA_ABI
710 scope: errata_abi
711
Chris Kay82117d72021-12-01 16:34:55 +0000712 - title: Libraries
713
714 subsections:
715 - title: CPU Support
716 scope: cpus
717
718 deprecated:
719 - cpu
720 - errata
721 - errata_report
722
723 - title: EL3 Runtime
724 scope: el3-runtime
725
726 deprecated:
727 - el3_runtime
728
Jayanth Dodderi Chidanandb16bc302022-05-19 11:03:07 +0100729 subsections:
730 - title: Context Management
731 scope: cm
732
laurenw-arm7c66fca2022-11-01 14:45:33 -0500733 - title: RAS
734 scope: ras
735
Chris Kay82117d72021-12-01 16:34:55 +0000736 - title: FCONF
737 scope: fconf
738
739 - title: MPMM
740 scope: mpmm
741
742 - title: OP-TEE
743 scope: optee
744
745 deprecated:
746 - lib/optee
747
748 - title: PSCI
749 scope: psci
750
751 - title: GPT
752 scope: gpt
753
754 deprecated:
755 - gpt_rme
756
757 - title: SMCCC
758 scope: smccc
759
760 - title: Translation Tables
761 scope: xlat
762
Jayanth Dodderi Chidanandb16bc302022-05-19 11:03:07 +0100763 - title: C Standard Library
764 scope: libc
765
766 - title: Locks
767 scope: locks
768
769 - title: PSA
770 scope: psa
771
laurenw-arm7c66fca2022-11-01 14:45:33 -0500772 deprecated:
773 - lib/psa
774
Zelalem Aweke5362beb2022-04-04 17:42:48 -0500775 - title: Context Management
Chris Kaye76be0a2022-10-10 16:57:45 +0100776 scope: context-mgmt
777
778 deprecated:
779 - context mgmt
Zelalem Aweke5362beb2022-04-04 17:42:48 -0500780
Manish V Badarkhede920262022-09-26 15:06:56 +0100781 - title: Semihosting
782 scope: semihosting
783
Chris Kay82117d72021-12-01 16:34:55 +0000784 - title: Drivers
785
786 subsections:
787 - title: Authentication
788 scope: auth
789
790 deprecated:
791 - driver/auth
792
793 subsections:
794 - title: CryptoCell-713
795 scope: cc-713
796
Manish V Badarkhe8d91e982022-09-22 21:41:55 +0100797 - title: Crypto
798 scope: crypto
799
800 - title: mbedTLS
801 scope: mbedtls
802
Yann Gautier1832d662023-01-06 17:05:48 +0100803 - title: Console
804 scope: console
805
Jayanth Dodderi Chidanandb16bc302022-05-19 11:03:07 +0100806 - title: Generic Clock
807 scope: clk
808
Chris Kay82117d72021-12-01 16:34:55 +0000809 - title: FWU
810 scope: fwu
811
812 deprecated:
813 - fwu_metadata
814
815 - title: I/O
816 scope: io
817
818 subsections:
819 - title: MTD
820 scope: mtd
821
822 deprecated:
823 - io_mtd
824
825 - title: Measured Boot
826 scope: measured-boot
827
828 deprecated:
829 - measured boot
830 - measured_boot
831
832 - title: MMC
833 scope: mmc
834
835 deprecated:
836 - drivers/mmc
837
838 - title: MTD
839 scope: mtd
840
841 deprecated:
842 - drivers/mtd
843
844 subsections:
845 - title: NAND
846 scope: nand
847
848 subsections:
849 - title: SPI NAND
850 scope: spi-nand
851
852 deprecated:
853 - spi_nand
854
Jayanth Dodderi Chidanandb16bc302022-05-19 11:03:07 +0100855 - title: GUID Partition Tables Support
856 scope: guid-partition
Sughosh Ganu540e0322022-01-19 11:31:20 +0530857
Juan Pablo Conde52487492023-05-15 22:17:17 -0500858 deprecated:
859 - partition
860
Chris Kay82117d72021-12-01 16:34:55 +0000861 - title: SCMI
862 scope: scmi
863
864 deprecated:
865 - scmi_common
866 - drivers/scmi-msg
laurenw-arm7c66fca2022-11-01 14:45:33 -0500867 - scmi-msg
Chris Kay82117d72021-12-01 16:34:55 +0000868
869 - title: UFS
870 scope: ufs
871
872 - title: Arm
873 scope: arm-drivers
874
875 subsections:
876 - title: Ethos-N
877 scope: ethos-n
878
879 deprecated:
880 - drivers/arm/ethosn
881
882 - title: GIC
883 scope: gic
884
885 subsections:
886 - title: GICv3
887 scope: gicv3
888
laurenw-arm7c66fca2022-11-01 14:45:33 -0500889 deprecated:
890 - gicv3/multichip
891
Chris Kay82117d72021-12-01 16:34:55 +0000892 subsections:
laurenw-arm7c66fca2022-11-01 14:45:33 -0500893 - title: GIC-600
894 scope: gic600
895
Chris Kay82117d72021-12-01 16:34:55 +0000896 - title: GIC-600AE
897 scope: gic600ae
898
Manish V Badarkhebcaeb672022-03-24 18:23:37 +0000899 - title: SMMU
900 scope: smmu
901
Jayanth Dodderi Chidanandb16bc302022-05-19 11:03:07 +0100902 - title: MHU
903 scope: mhu
904
905 deprecated:
906 - drivers/arm/mhu
907
908 - title: RSS
909 scope: rss
910
911 deprecated:
912 - drivers/arm/rss
913
Chris Kay82117d72021-12-01 16:34:55 +0000914 - title: TZC
915 scope: tzc
916
917 subsections:
918 - title: TZC-400
919 scope: tzc400
920
921 deprecated:
922 - drivers/tzc400
923
Jayanth Dodderi Chidanandb16bc302022-05-19 11:03:07 +0100924 - title: TZC-380
925 scope: tzc380
926
927 deprecated:
928 - drivers/tzc380
929
Madhukar Pappireddy4c3de562023-03-22 15:27:22 -0500930 - title: SBSA
931 scope: sbsa
932
Chris Kay82117d72021-12-01 16:34:55 +0000933 - title: Marvell
934 scope: marvell-drivers
935
936 subsections:
937 - title: COMPHY
938 scope: marvell-comphy
939
940 deprecated:
941 - drivers/marvell/comphy
942
943 subsections:
944 - title: Armada 3700
945 scope: marvell-comphy-3700
946
947 deprecated:
948 - drivers/marvell/comphy-3700
949
950 - title: CP110
951 scope: marvell-comphy-cp110
952
953 deprecated:
954 - drivers/marvell/comphy-cp110
955
956 - title: UART
957 scope: marvell-uart
958
959 deprecated:
960 - plat/marvell/uart
961
962 - title: Armada
963 scope: armada-drivers
964
965 subsections:
966 - title: A3K
967 scope: a3k-drivers
968
969 subsections:
970 - title: A3720
971 scope: a3720-uart
972
973 deprecated:
974 - plat/marvell/a3720/uart
975
976 - title: MediaTek
977 scope: mediatek-drivers
978
979 subsections:
980 - title: APU
981 scope: mediatek-apu
982
983 deprecated:
984 - plat/mediatek/apu
985
986 - title: EMI MPU
987 scope: mediatek-emi-mpu
988
989 deprecated:
990 - plat/mediatek/mpu
991
992 - title: PMIC Wrapper
993 scope: mediatek-pmic-wrapper
994
995 deprecated:
996 - plat/mediatek/pmic_wrap
997
998 - title: MT8192
999 scope: mt8192-drivers
1000
1001 subsections:
1002 - title: SPM
1003 scope: mt8192-spm
1004
1005 deprecated:
1006 - mediatek/mt8192/spm
1007
1008 - title: NXP
1009 scope: nxp-drivers
1010
1011 subsections:
1012 - title: DCFG
1013 scope: nxp-dcfg
1014
1015 deprecated:
1016 - driver/nxp/dcfg
1017
1018 - title: FLEXSPI
1019 scope: flexspi
1020
1021 deprecated:
1022 - include/drivers/flexspi
1023 - driver/nxp/xspi
1024
1025 - title: SCFG
1026 scope: nxp-scfg
1027
1028 deprecated:
1029 - nxp/scfg
1030
1031 - title: SFP
1032 scope: nxp-sfp
1033
1034 deprecated:
1035 - drivers/nxp/sfp
1036
Jiafei Pan18ba9e42022-02-10 10:39:56 +08001037 - title: QSPI
1038 scope: nxp-qspi
1039
Jiafei Pan94450412022-02-18 12:02:04 +08001040 - title: NXP Crypto
1041 scope: nxp-crypto
1042
Jiafei Panfa3f7612022-02-22 11:05:00 +08001043 - title: DDR
1044 scope: nxp-ddr
1045
1046 - title: GIC
1047 scope: nxp-gic
1048
Jayanth Dodderi Chidanandb16bc302022-05-19 11:03:07 +01001049 - title: CSU
1050 scope: nxp-csu
1051
1052 - title: IFC NAND
1053 scope: nxp-ifc-nand
1054
1055 - title: IFC NOR
1056 scope: nxp-ifc-nor
1057
1058 - title: TZC-380
1059 scope: nxp-tzc380
1060
Jacky Bai9dc47d52023-06-14 15:24:00 +08001061 - title: TRDC
1062 scope: imx-trdc
1063
Chris Kay82117d72021-12-01 16:34:55 +00001064 - title: Renesas
1065 scope: renesas-drivers
1066
1067 subsections:
1068 - title: R-Car3
1069 scope: rcar3-drivers
1070
1071 deprecated:
1072 - drivers/rcar3
1073
1074 - title: ST
1075 scope: st-drivers
1076
1077 deprecated:
1078 - drivers/st
1079
1080 subsections:
Yann Gautier9f359fd2022-01-27 09:25:47 +01001081 - title: BSEC
1082 scope: st-bsec
1083
Chris Kay82117d72021-12-01 16:34:55 +00001084 - title: Clock
1085 scope: st-clock
1086
1087 deprecated:
1088 - stm32mp_clk
1089 - drivers/st/clk
1090 - stm32mp1_clk
1091
Yann Gautier9f359fd2022-01-27 09:25:47 +01001092 - title: Crypto
1093 scope: st-crypto
1094
1095 - title: DDR
1096 scope: st-ddr
1097
Chris Kay82117d72021-12-01 16:34:55 +00001098 - title: I/O
1099 scope: st-io-drivers
1100
1101 subsections:
1102 - title: STM32 Image
1103 scope: st-io-stm32image
1104
1105 deprecated:
1106 - io-stm32image
1107 - io_stm32image
1108
Yann Gautier9f359fd2022-01-27 09:25:47 +01001109 - title: I2C
1110 scope: st-i2c
1111
1112 - title: FMC
1113 scope: st-fmc
1114
1115 - title: GPIO
1116 scope: st-gpio
1117
Chris Kay82117d72021-12-01 16:34:55 +00001118 - title: SDMMC2
1119 scope: st-sdmmc2
1120
1121 deprecated:
1122 - stm32_sdmmc2
1123
1124 - title: ST PMIC
1125 scope: st-pmic
1126
1127 deprecated:
1128 - drivers/st/pmic
1129
1130 - title: STPMIC1
1131 scope: stpmic1
1132
Yann Gautier9f359fd2022-01-27 09:25:47 +01001133 - title: Regulator
1134 scope: st-regulator
1135
1136 - title: Reset
1137 scope: st-reset
1138
1139 - title: SPI
1140 scope: st-spi
1141
Chris Kay82117d72021-12-01 16:34:55 +00001142 - title: UART
1143 scope: st-uart
1144
1145 subsections:
1146 - title: STM32 Console
1147 scope: stm32-console
1148
1149 deprecated:
1150 - stm32_console
1151
1152 - title: USB
1153 scope: st-usb
1154
1155 deprecated:
1156 - drivers/st/usb
1157
Yann Gautier9f359fd2022-01-27 09:25:47 +01001158 - title: Watchdog
1159 scope: st-iwdg
1160
Chris Kay82117d72021-12-01 16:34:55 +00001161 - title: USB
1162 scope: usb
1163
1164 deprecated:
1165 - drivers/usb
1166
1167 - title: Miscellaneous
1168
1169 subsections:
1170 - title: AArch64
1171 scope: aarch64
1172
1173 - title: Debug
1174 scope: debug
1175
1176 deprecated:
1177 - common/debug
1178
1179 - title: CRC32
1180 scope: crc32
1181
1182 subsections:
1183 - title: Hardware CRC32
1184 scope: hw-crc32
1185
1186 deprecated:
1187 - hw_crc
1188 - hw_crc32
1189
1190 - title: Software CRC32
1191 scope: sw-crc32
1192
1193 deprecated:
1194 - sw_crc32
1195
1196 - title: DT Bindings
1197 scope: dt-bindings
1198
1199 - title: FDT Wrappers
1200 scope: fdt-wrappers
1201
1202 - title: FDTs
1203 scope: fdts
1204
1205 deprecated:
1206 - fdt
1207
1208 subsections:
1209 - title: Morello
1210 scope: morello-fdts
1211
1212 deprecated:
1213 - fdts/morello
1214
1215 - title: STM32MP1
1216 scope: stm32mp1-fdts
1217
1218 deprecated:
1219 - fdts stm32mp1
1220
Yann Gautier2c962252022-07-08 15:55:14 +02001221 subsections:
1222 - title: STM32MP13
1223 scope: stm32mp13-fdts
1224
1225 - title: STM32MP15
1226 scope: stm32mp15-fdts
1227
Chris Kay82117d72021-12-01 16:34:55 +00001228 - title: PIE
1229 scope: pie
1230
Juan Pablo Conde52487492023-05-15 22:17:17 -05001231 - title: PIE/POR
1232 scope: pie/por
1233
Chris Kay82117d72021-12-01 16:34:55 +00001234 - title: Security
1235 scope: security
1236
1237 - title: SDEI
1238 scope: sdei
1239
1240 - title: TBBR
1241 scope: tbbr
1242
1243 - title: NXP
1244
1245 subsections:
1246 - title: OCRAM
1247 scope: nxp-ocram
1248
1249 deprecated:
1250 - nxp/common/ocram
1251
1252 - title: PSCI
1253 scope: nxp-psci
1254
1255 deprecated:
1256 - plat/nxp/common/psci
1257
Chris Kayd04a4762023-04-13 17:24:20 +01001258 - title: UUID
1259 scope: uuid
1260
Chris Kay82117d72021-12-01 16:34:55 +00001261 - title: Documentation
1262 scope: docs
1263
1264 deprecated:
1265 - doc
1266
1267 subsections:
1268 - title: Changelog
1269 scope: changelog
1270
1271 - title: Commit Style
1272 scope: commit-style
1273
1274 - title: Contribution Guidelines
1275 scope: contributing
1276
1277 deprecated:
1278 - contribution-guidelines
1279 - docs-contributing.rst
1280
1281 - title: Maintainers
1282 scope: maintainers
1283
1284 - title: Prerequisites
1285 scope: prerequisites
1286
Sandrine Bailleux3c8fdf72022-05-10 14:53:44 +02001287 - title: Threat Model
1288 scope: threat-model
1289
Sandrine Bailleuxe67bb122023-02-08 13:58:25 +01001290 - title: Porting Guide
1291 scope: porting
1292
Chris Kay82117d72021-12-01 16:34:55 +00001293 - title: Build System
1294 scope: build
1295
1296 deprecated:
1297 - makefile
1298 - Makefile
1299
1300 subsections:
1301 - title: Git Hooks
1302 scope: hooks
1303
Juan Pablo Conde52487492023-05-15 22:17:17 -05001304 deprecated:
1305 - git-hooks
1306
Chris Kay82117d72021-12-01 16:34:55 +00001307 - title: Tools
1308
1309 subsections:
1310 - title: STM32 Image
1311 scope: stm32image
1312
1313 deprecated:
1314 - tools/stm32image
1315
Jiafei Pan18ba9e42022-02-10 10:39:56 +08001316 - title: NXP Tools
1317 scope: nxp-tools
1318
Jayanth Dodderi Chidanandb16bc302022-05-19 11:03:07 +01001319 - title: Firmware Image Package Tool
1320 scope: fiptool
1321
1322 - title: Secure Partition Tool
1323 scope: sptool
1324
1325 - title: Certificate Creation Tool
1326 scope: cert-create
1327
Harrison Mutai372b8802023-02-23 11:30:17 +00001328 - title: Memory Mapping Tool
1329 scope: memmap
1330
laurenw-arm7c66fca2022-11-01 14:45:33 -05001331 deprecated:
1332 - cert_create
1333
Chris Kay82117d72021-12-01 16:34:55 +00001334 - title: Dependencies
1335 scope: deps
1336
1337 subsections:
1338 - title: checkpatch
1339 scope: checkpatch
1340
1341 - title: commitlint
1342 scope: commitlint
1343
Daniel Boulbyc550e702022-10-05 11:03:44 +01001344 - title: Compiler runtime libraries
1345 scope: compiler-rt
1346
Chris Kay82117d72021-12-01 16:34:55 +00001347 - title: libfdt
1348 scope: libfdt
1349
1350 - title: Node Package Manager (NPM)
1351 scope: npm
Daniel Boulbyc550e702022-10-05 11:03:44 +01001352
1353 - title: zlib
1354 scope: zlib