blob: 3591f029c27fad30596ffda52923fc041738c59e [file] [log] [blame]
Chris Kay82117d72021-12-01 16:34:55 +00001#
Chris Kayc66b9f32024-01-15 18:45:07 +00002# Copyright (c) 2021-2024, 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
Arvind Ram Prakash62d87e72024-06-06 11:33:37 -0500107 - title: Fine-grained Traps 2 (FEAT_FGT2).
108 scope: fgt2
109
Andre Przywara5b005112022-11-14 15:38:58 +0000110 - title: CPU feature / ID register handling in general
111 scope: cpufeat
112
Arvind Ram Prakash05b47632024-05-22 15:24:00 -0500113 - title: Debug Extension (FEAT_Debugv8p9)
114 scope: debugv8p9
115
Mark Brown326f2952023-03-14 21:33:04 +0000116 - title: Guarded Control Stack (FEAT_GCS)
117 scope: gcs
118
Chris Kay82117d72021-12-01 16:34:55 +0000119 - title: Support for the `HCRX_EL2` register (FEAT_HCX)
120 scope: hcx
121
122 - title: Memory Partitioning and Monitoring (MPAM) Extension (FEAT_MPAM)
123 scope: mpam
124
Govindraj Raja5bd4bd82024-03-19 14:32:20 -0500125 - title: Memory Tagging Extension2
126 scope: mte2
127
128 deprecated:
129 - mte
laurenw-arm7c66fca2022-11-01 14:45:33 -0500130
131 - title: Pointer Authentication Extension
132 scope: pauth
133
134 - title: Performance Monitors Extension (FEAT_PMUv3)
135 scope: pmu
136
137 - title: Trapping support for RNDR/RNDRRS (FEAT_RNG_TRAP)
138 scope: rng-trap
139
Jayanth Dodderi Chidanandcfe053a2022-11-08 10:31:07 +0000140 - title: Scalable Matrix Extension (FEAT_SME, FEAT_SME2)
Chris Kay82117d72021-12-01 16:34:55 +0000141 scope: sme
142
laurenw-arm7c66fca2022-11-01 14:45:33 -0500143 - title: Statistical profiling Extension (FEAT_SPE)
144 scope: spe
145
Chris Kay82117d72021-12-01 16:34:55 +0000146 - title: Scalable Vector Extension (FEAT_SVE)
147 scope: sve
148
149 - title: System Register Trace Extensions (FEAT_ETMv4, FEAT_ETE and FEAT_ETEv1.1)
150 scope: sys-reg-trace
151
152 deprecated:
153 - sys_reg_trace
154
155 - title: Trace Buffer Extension (FEAT_TRBE)
156 scope: trbe
157
158 - title: Self-hosted Trace Extensions (FEAT_TRF)
159 scope: trf
160
Manish V Badarkhe8a7af842024-05-17 11:09:28 +0100161 - title: DynamIQ Shared Unit (DSU)
162 scope: dsu
163
Chris Kay82117d72021-12-01 16:34:55 +0000164 - title: Platforms
Manish V Badarkhe5eeeb0c2023-11-21 14:35:13 +0000165 scope: platforms
166
167 deprecated:
168 - plat/common
Manish V Badarkhe8a7af842024-05-17 11:09:28 +0100169 - plat
Chris Kay82117d72021-12-01 16:34:55 +0000170
171 subsections:
172 - title: Allwinner
173 scope: allwinner
174
175 deprecated:
176 - plat/allwinner
177
178 - title: Arm
179 scope: arm
180
181 deprecated:
182 - plat/arm
183
184 subsections:
Juan Pablo Conde52487492023-05-15 22:17:17 -0500185 - title: A5DS
186 scope: a5ds
187
laurenw-arm7c66fca2022-11-01 14:45:33 -0500188 - title: CSS
189 scope: css
190
191 deprecated:
192 - plat/arm/css
Juan Pablo Conde52487492023-05-15 22:17:17 -0500193 - plat/css
laurenw-arm7c66fca2022-11-01 14:45:33 -0500194
Chris Kay82117d72021-12-01 16:34:55 +0000195 - title: FPGA
196 scope: fpga
197
198 deprecated:
199 - arm_fgpa
Chris Kay82117d72021-12-01 16:34:55 +0000200 - plat/arm_fpga
Manish V Badarkhe5eeeb0c2023-11-21 14:35:13 +0000201 - arm/fpga
Chris Kay82117d72021-12-01 16:34:55 +0000202
203 - title: FVP
204 scope: fvp
205
206 deprecated:
207 - plat/fvp
laurenw-arm7c66fca2022-11-01 14:45:33 -0500208 - fvp/tsp_manifest
Chris Kay82117d72021-12-01 16:34:55 +0000209
210 - title: FVP-R
211 scope: fvp-r
212
213 deprecated:
214 - fvp_r
215
laurenw-arm7c66fca2022-11-01 14:45:33 -0500216 - title: FVP Versatile Express
217 scope: fvp_ve
218
Chris Kay82117d72021-12-01 16:34:55 +0000219 - title: Juno
220 scope: juno
221
222 - title: Morello
223 scope: morello
224
Jayanth Dodderi Chidanandb16bc302022-05-19 11:03:07 +0100225 - title: N1SDP
226 scope: n1sdp
227
Rohit Mathewe191b382024-04-15 17:31:04 +0100228 - title: Neoverse-RD
229 scope: neoverse-rd
Chris Kay82117d72021-12-01 16:34:55 +0000230
231 subsections:
Rohit Mathewf5f44032024-04-16 17:31:54 +0100232 - title: SGI-575
233 scope: sgi575
234
Manish V Badarkhe8a7af842024-05-17 11:09:28 +0100235 - title: RD-E1-Edge
236 scope: rde1edge
237
Rohit Mathew56d91972024-04-22 14:23:59 +0100238 - title: RD-N1-Edge
Juan Pablo Conde52487492023-05-15 22:17:17 -0500239 scope: rdn1edge
240
Rohit Mathewe94dd972024-04-16 17:35:05 +0100241 - title: RD-V1
242 scope: rdv1
243
Rohit Mathew6edab642024-04-16 17:36:19 +0100244 - title: RD-V1-MC
245 scope: rdv1mc
246
Chris Kay82117d72021-12-01 16:34:55 +0000247 - title: RD-N2
248 scope: rdn2
249
Jerry Wangffe4ad22024-07-08 15:17:42 +0100250 - title: RD-V3
251 scope: rdv3
Rohit Mathew7f863092024-04-15 17:54:16 +0100252
Chris Kay82117d72021-12-01 16:34:55 +0000253 deprecated:
254 - board/rdn2
255
Manish V Badarkhe8a7af842024-05-17 11:09:28 +0100256 deprecated:
257 - neoverse
258
Chris Kay82117d72021-12-01 16:34:55 +0000259 - title: TC
260 scope: tc
261
Juan Pablo Conde52487492023-05-15 22:17:17 -0500262 deprecated:
263 - plat/tc
264
Chris Kay82117d72021-12-01 16:34:55 +0000265 subsections:
266 - title: TC0
267 scope: tc0
268
269 deprecated:
270 - plat/tc0
271
Jayanth Dodderi Chidanandb16bc302022-05-19 11:03:07 +0100272 - title: Corstone-1000
273 scope: corstone-1000
274
Peter Hoyes1459d622023-02-20 12:08:43 +0000275 - title: Automotive RD
276 scope: automotive_rd
277
278 subsections:
279 - title: RD-1 AE
280 scope: rd1ae
281
Chia-Wei Wanga7556d82022-11-02 17:50:21 +0800282 - title: Aspeed
283 scope: aspeed
284
285 subsections:
286 - title: AST2700
287 scope: ast2700
288
Jayanth Dodderi Chidanandb16bc302022-05-19 11:03:07 +0100289 - title: Broadcom
290 scope: brcm
291
Manish V Badarkhe5eeeb0c2023-11-21 14:35:13 +0000292 - title: Cadence
293 scope: cadence
294
laurenw-arm7c66fca2022-11-01 14:45:33 -0500295 - title: HiSilicon
296 scope: hisilicon
297
298 subsections:
299 - title: HiKey
300 scope: hikey
301
302 - title: HiKey960
303 scope: hikey960
304
Sieu Mun Tang9f3a13c2022-02-22 14:14:26 +0800305 - title: Intel
306 scope: intel
307
308 subsections:
309 - title: SoC
310 scope: soc
311
Chris Kay82117d72021-12-01 16:34:55 +0000312 - title: Marvell
313 scope: marvell
314
315 deprecated:
316 - plat/marvell
317
318 subsections:
319 - title: Armada
320 scope: armada
321
322 deprecated:
323 - plat/marvell/armada
324
325 subsections:
326 - title: A3K
327 scope: a3k
328
329 deprecated:
330 - plat/marvell/a3k
331
332 - title: A8K
333 scope: a8k
334
335 deprecated:
336 - plat/marvell/a8k
337
338 - title: MediaTek
339 scope: mediatek
340
341 deprecated:
342 - plat/mediatek/common
343 - plat/mediatek
344
345 subsections:
346 - title: MT8183
347 scope: mt8183
348
349 deprecated:
350 - plat/mediatek/mt8183
351
laurenw-arm7c66fca2022-11-01 14:45:33 -0500352 - title: MT8186
353 scope: mt8186
354
355 deprecated:
356 - plat/mediatek/mt8186
357 - mt8186-emi-mpu
358
359 - title: MT8188
360 scope: mt8188
361
Chris Kay82117d72021-12-01 16:34:55 +0000362 - title: MT8192
363 scope: mt8192
364
365 deprecated:
366 - plat/mdeiatek/mt8192
367
368 - title: MT8195
369 scope: mt8195
370
371 deprecated:
372 - plat/mediatek/me8195
373 - plat/mediatek/mt8195
374 - plat/mdeiatek/mt8195
375
376 - title: NVIDIA
377 scope: nvidia
378
379 subsections:
380 - title: Tegra
381 scope: tegra
382
383 deprecated:
384 - plat/tegra
385
386 subsections:
387 - title: Tegra 132
388 scope: tegra132
389
Jayanth Dodderi Chidanandb16bc302022-05-19 11:03:07 +0100390 - title: Tegra 194
391 scope: tegra194
392
Juan Pablo Conde52487492023-05-15 22:17:17 -0500393 - title: Tegra 210
394 scope: tegra210
395
Chris Kay82117d72021-12-01 16:34:55 +0000396 - title: NXP
397 scope: nxp
398
399 deprecated:
400 - plat/nxp
401 - plat/nxp/common
402
403 subsections:
404 - title: i.MX
405 scope: imx
406
407 deprecated:
408 - plat/imx
409 - plat/imx/imx
410
411 subsections:
412 - title: i.MX 8M
413 scope: imx8m
414
415 deprecated:
416 - plat/imx8m
417 - plat/imx/imx8m
418
419 subsections:
Jayanth Dodderi Chidanandb16bc302022-05-19 11:03:07 +0100420 - title: i.MX 8M Nano
421 scope: imx8mn
422
423 deprecated:
424 - plat/imx/imx8m/imx8mn
425
Chris Kay82117d72021-12-01 16:34:55 +0000426 - title: i.MX 8M Mini
427 scope: imx8mm
428
429 deprecated:
430 - plat/imx/imx8m/imx8mm
431
432 - title: i.MX 8M Plus
433 scope: imx8mp
434
435 deprecated:
436 - plat/imx/imx8m/imx8mp
437
Jayanth Dodderi Chidanandb16bc302022-05-19 11:03:07 +0100438 - title: i.MX 8Q
439 scope: imx8mq
440
441 deprecated:
442 - plat/imx/imx8m/imx8mq
443
Juan Pablo Conde52487492023-05-15 22:17:17 -0500444 - title: i.MX 8
445 scope: imx8
446
Jacky Bai4e214e42023-10-08 17:52:24 +0800447 - title: i.MX 8ULP
448 scope: imx8ulp
449
Jacky Bai9dc47d52023-06-14 15:24:00 +0800450 - title: i.MX 9
451 scope: imx9
452
453 subsections:
454 - title: i.MX93
455 scope: imx93
456
Chris Kay82117d72021-12-01 16:34:55 +0000457 - title: Layerscape
458 scope: layerscape
459
460 deprecated:
461 - docs/nxp/layerscape
462
463 subsections:
464 - title: LS1028A
465 scope: ls1028a
466
467 deprecated:
468 - plat/nxp/ls1028a
469
470 subsections:
471 - title: LS1028ARDB
472 scope: ls1028ardb
473
474 deprecated:
475 - plat/nxp/ls1028ardb
476
Jayanth Dodderi Chidanandb16bc302022-05-19 11:03:07 +0100477 - title: LS1043A
478 scope: ls1043a
479
480 deprecated:
481 - plat/nxp/ls1043a
482
483 subsections:
484 - title: LS1043ARDB
485 scope: ls1043ardb
486
487 deprecated:
488 - plat/nxp/ls1043ardb
489
Chris Kay82117d72021-12-01 16:34:55 +0000490 - title: LX2
491 scope: lx2
492
493 deprecated:
494 - plat/nxp/lx2
495
496 subsections:
497 - title: LX216
498 scope: lx216
499
500 deprecated:
501 - plat/nxp/lx216x
502
503 subsections:
504 - title: LX2160
505 scope: lx2160
506
507 deprecated:
508 - plat/soc-lx2160
509
Jiafei Pan18ba9e42022-02-10 10:39:56 +0800510 - title: LS1046A
511 scope: ls1046a
512
513 subsections:
514 - title: LS1046ARDB
515 scope: ls1046ardb
516
517 - title: LS1046AFRWY
518 scope: ls1046afrwy
519
520 - title: LS1046AQDS
521 scope: ls1046aqds
522
Jiafei Pan290bf6f2022-02-24 16:00:35 +0800523 - title: LS1088A
524 scope: ls1088a
525
526 subsections:
527 - title: LS1088ARDB
528 scope: ls1088ardb
529
530 - title: LS1088AQDS
531 scope: ls1088aqds
532
Ghennadi Procopciuca9fee052024-01-30 16:19:47 +0200533 - title: S32G274A
534 scope: s32g274a
535
536 subsections:
537 - title: S32G274ARDB
538 scope: s32g274ardb
539
Chris Kay82117d72021-12-01 16:34:55 +0000540 - title: QEMU
541 scope: qemu
542
543 deprecated:
544 - plat/qemu
545
Juan Pablo Conde52487492023-05-15 22:17:17 -0500546 subsections:
547 - title: SBSA
548 scope: qemu-sbsa
549
Manish V Badarkhe5eeeb0c2023-11-21 14:35:13 +0000550 deprecated:
551 - qemu_sbsa
552
Chris Kay82117d72021-12-01 16:34:55 +0000553 - title: QTI
554 scope: qti
555
laurenw-arm7c66fca2022-11-01 14:45:33 -0500556 deprecated:
557 - plat/qti
558
Chris Kay82117d72021-12-01 16:34:55 +0000559 subsections:
560 - title: SC1780
561 scope: sc7180
562
563 deprecated:
564 - plat/qti/sc7180
565
566 - title: SC7280
567 scope: sc7280
568
569 deprecated:
570 - plat/qti/sc7280
571
Stephan Gerholdd0d0bf42021-12-01 20:00:00 +0100572 - title: MSM8916
573 scope: msm8916
574
Chris Kay82117d72021-12-01 16:34:55 +0000575 - title: Raspberry Pi
576 scope: rpi
577
578 subsections:
laurenw-arm7c66fca2022-11-01 14:45:33 -0500579 - title: Raspberry Pi 3
580 scope: rpi3
581
Chris Kay82117d72021-12-01 16:34:55 +0000582 - title: Raspberry Pi 4
583 scope: rpi4
584
Mario Bălănicăc883ce02023-12-02 03:08:02 +0200585 - title: Raspberry Pi 5
586 scope: rpi5
587
Chris Kay82117d72021-12-01 16:34:55 +0000588 - title: Renesas
589 scope: renesas
590
591 subsections:
592 - title: R-Car
593 scope: rcar
594
595 deprecated:
596 - plat/rcar
597
598 subsections:
599 - title: R-Car 3
600 scope: rcar3
601
602 deprecated:
603 - plat/rcar3
604
605 - title: Rockchip
606 scope: rockchip
607
608 subsections:
609 - title: RK3399
610 scope: rk3399
611
612 deprecated:
613 - rockchip/rk3399
614 - rk3399/suspend
615
Diederik de Haas6a9c7312023-11-27 10:21:37 +0100616 - title: RK3328
617 scope: rk3328
618
Chris Kay82117d72021-12-01 16:34:55 +0000619 - title: Socionext
620 scope: socionext
621
622 subsections:
623 - title: Synquacer
624 scope: synquacer
625
626 deprecated:
627 - plat/synquacer
628
629 - title: ST
630 scope: st
631
632 deprecated:
633 - plat/st
634
635 subsections:
Yann Gautier14b32e82022-06-01 18:17:43 +0200636 - title: STM32MP1
Chris Kay82117d72021-12-01 16:34:55 +0000637 scope: stm32mp1
638
639 deprecated:
640 - plat/st/stm32mp1
641
Yann Gautier14b32e82022-06-01 18:17:43 +0200642 subsections:
643 - title: STM32MP13
644 scope: stm32mp13
645
646 - title: STM32MP15
647 scope: stm32mp15
648
Yann Gautier1123f662022-12-16 15:32:25 +0100649 - title: STM32MP2
650 scope: stm32mp2
651
Dave Gerlach74c19f92022-03-22 11:02:52 -0500652 - title: Texas Instruments
653 scope: ti
654
655 subsections:
656 - title: K3
657 scope: k3
658
laurenw-arm7c66fca2022-11-01 14:45:33 -0500659 deprecated:
660 - ti-k3
661
Chris Kay82117d72021-12-01 16:34:55 +0000662 - title: Xilinx
663 scope: xilinx
664
665 deprecated:
666 - plat/xilinx
667
668 subsections:
Michal Simek38d5d4d2023-09-18 10:22:48 +0200669 - title: DCC (Debug Communication Channel)
670 scope: dcc
671
Chris Kay82117d72021-12-01 16:34:55 +0000672 - title: Versal
673 scope: versal
674
675 deprecated:
676 - plat/xilinx/versal/include
677 - plat/xilinx/versal
678 - plat/versal
679
Manish V Badarkhe8a7af842024-05-17 11:09:28 +0100680 - title: Versal NET
681 scope: versal-net
laurenw-arm7c66fca2022-11-01 14:45:33 -0500682
Manish V Badarkhe8a7af842024-05-17 11:09:28 +0100683 deprecated:
684 - versal_net
laurenw-arm7c66fca2022-11-01 14:45:33 -0500685
Chris Kay82117d72021-12-01 16:34:55 +0000686 - title: ZynqMP
687 scope: zynqmp
688
689 deprecated:
690 - plat/zynqmp
691 - plat/xilinx/zynqmp
692
Amit Nagal055796f2024-06-05 12:32:38 +0530693 - title: AMD
694 scope: amd
695
696 subsections:
697 - title: Versal Gen 2
698 scope: versal2
699
rutigl@gmail.comdefbeed2023-03-19 09:19:05 +0200700 - title: Nuvoton
701 scope: nuvoton
702
703 subsections:
704 - title: npcm845x
705 scope: npcm845x
706
Chris Kay82117d72021-12-01 16:34:55 +0000707 - title: Bootloader Images
708 scope: bl
709
710 deprecated:
711 - bl_common
712
713 subsections:
714 - title: BL1
715 scope: bl1
716
717 - title: BL2
718 scope: bl2
719
Jayanth Dodderi Chidanandb16bc302022-05-19 11:03:07 +0100720 - title: BL31
721 scope: bl31
722
Shruti Guptac31beb62022-08-09 10:46:07 +0100723 - title: BL32
724 scope: bl32
725
726 subsections:
727 - title: TSP
728 scope: tsp
729
Chris Kay82117d72021-12-01 16:34:55 +0000730 - title: Services
731 scope: services
732
733 subsections:
734 - title: FF-A
Daniel Boulby8d74d6a2021-12-06 14:44:35 +0000735 scope: ff-a
Chris Kay82117d72021-12-01 16:34:55 +0000736
737 deprecated:
Daniel Boulby8d74d6a2021-12-06 14:44:35 +0000738 - ffa
Chris Kay82117d72021-12-01 16:34:55 +0000739
740 - title: RME
741 scope: rme
742
laurenw-arm7c66fca2022-11-01 14:45:33 -0500743 deprecated:
744 - rme/fid
745
Jayanth Dodderi Chidanandb16bc302022-05-19 11:03:07 +0100746 subsections:
747 - title: TRP
748 scope: trp
749
Javier Almansa Sobrino7176a772021-11-24 18:37:37 +0000750 - title: RMMD
751 scope: rmmd
752
Juan Pablo Conde52487492023-05-15 22:17:17 -0500753 - title: RMM
754 scope: rmm
755
Chris Kay82117d72021-12-01 16:34:55 +0000756 - title: SPM
757 scope: spm
758
Jayanth Dodderi Chidanandb16bc302022-05-19 11:03:07 +0100759 subsections:
Manish V Badarkhe5eeeb0c2023-11-21 14:35:13 +0000760 - title: EL3 SPM
761 scope: el3-spm
762
Jayanth Dodderi Chidanandb16bc302022-05-19 11:03:07 +0100763 - title: EL3 SPMC
764 scope: el3-spmc
765
laurenw-arm7c66fca2022-11-01 14:45:33 -0500766 deprecated:
767 - spmc
768
Jayanth Dodderi Chidanandb16bc302022-05-19 11:03:07 +0100769 - title: SPMD
770 scope: spmd
Daniel Boulby8d74d6a2021-12-06 14:44:35 +0000771
Jayanth Dodderi Chidanandb16bc302022-05-19 11:03:07 +0100772 - title: SPM MM
773 scope: spm-mm
Chris Kay82117d72021-12-01 16:34:55 +0000774
Manish V Badarkhe478d3ee2022-06-27 09:21:14 +0100775 - title: DRTM
776 scope: drtm
777
Jayanth Dodderi Chidanand7c7faff2022-10-11 17:16:07 +0100778 - title: TRNG
779 scope: trng
780
Sona Mathew5100bec2023-09-20 12:55:32 -0500781 - title: ERRATA ABI
782 scope: errata-abi
783
784 deprecated:
785 - errata_abi
Sona Mathew7fe03522022-11-18 18:05:38 -0600786
Manish V Badarkhe8a7af842024-05-17 11:09:28 +0100787 - title: ChromeOS
788 scope: cros
789
Chris Kay82117d72021-12-01 16:34:55 +0000790 - title: Libraries
Manish V Badarkhe5eeeb0c2023-11-21 14:35:13 +0000791 scope: lib
Chris Kay82117d72021-12-01 16:34:55 +0000792
793 subsections:
794 - title: CPU Support
795 scope: cpus
796
797 deprecated:
798 - cpu
799 - errata
800 - errata_report
801
802 - title: EL3 Runtime
803 scope: el3-runtime
804
805 deprecated:
806 - el3_runtime
807
Jayanth Dodderi Chidanandb16bc302022-05-19 11:03:07 +0100808 subsections:
809 - title: Context Management
810 scope: cm
811
laurenw-arm7c66fca2022-11-01 14:45:33 -0500812 - title: RAS
813 scope: ras
814
Madhukar Pappireddy0cb58bc2024-06-17 15:12:26 -0500815 - title: SIMD
816 scope: simd
817
Chris Kay82117d72021-12-01 16:34:55 +0000818 - title: FCONF
819 scope: fconf
820
821 - title: MPMM
822 scope: mpmm
823
824 - title: OP-TEE
825 scope: optee
826
827 deprecated:
828 - lib/optee
829
830 - title: PSCI
831 scope: psci
832
Chris Kayc66b9f32024-01-15 18:45:07 +0000833 - title: ROMlib
834 scope: romlib
835
Chris Kay82117d72021-12-01 16:34:55 +0000836 - title: GPT
837 scope: gpt
838
839 deprecated:
840 - gpt_rme
841
842 - title: SMCCC
843 scope: smccc
844
845 - title: Translation Tables
846 scope: xlat
847
Jayanth Dodderi Chidanandb16bc302022-05-19 11:03:07 +0100848 - title: C Standard Library
849 scope: libc
850
851 - title: Locks
852 scope: locks
853
854 - title: PSA
855 scope: psa
856
laurenw-arm7c66fca2022-11-01 14:45:33 -0500857 deprecated:
858 - lib/psa
859
Tamas Ban109a4802024-02-06 11:24:51 +0100860 - title: DICE Protection Environment
861 scope: dice
862
Zelalem Aweke5362beb2022-04-04 17:42:48 -0500863 - title: Context Management
Chris Kaye76be0a2022-10-10 16:57:45 +0100864 scope: context-mgmt
865
866 deprecated:
867 - context mgmt
Zelalem Aweke5362beb2022-04-04 17:42:48 -0500868
Manish V Badarkhede920262022-09-26 15:06:56 +0100869 - title: Semihosting
870 scope: semihosting
871
Raymond Mao98983392023-07-25 07:53:35 -0700872 - title: Firmware Handoff
873 scope: handoff
874
Manish V Badarkhe8a7af842024-05-17 11:09:28 +0100875 - title: Exception Handling Framework (EHF)
876 scope: ehf
877
Chris Kay82117d72021-12-01 16:34:55 +0000878 - title: Drivers
879
880 subsections:
881 - title: Authentication
882 scope: auth
883
884 deprecated:
885 - driver/auth
886
887 subsections:
888 - title: CryptoCell-713
889 scope: cc-713
890
Manish V Badarkhe8d91e982022-09-22 21:41:55 +0100891 - title: Crypto
892 scope: crypto
893
894 - title: mbedTLS
895 scope: mbedtls
896
Manish V Badarkhe538d5922023-09-22 17:54:59 +0100897 - title: mbedTLS-PSA
898 scope: mbedtls-psa
899
Yann Gautier1832d662023-01-06 17:05:48 +0100900 - title: Console
901 scope: console
902
Abhi.Singhce668112024-08-21 12:55:38 -0500903 - title: Delay Timer
904 scope: delay-timer
905
Jayanth Dodderi Chidanandb16bc302022-05-19 11:03:07 +0100906 - title: Generic Clock
907 scope: clk
908
Chris Kay82117d72021-12-01 16:34:55 +0000909 - title: FWU
910 scope: fwu
911
912 deprecated:
913 - fwu_metadata
914
915 - title: I/O
916 scope: io
917
918 subsections:
919 - title: MTD
920 scope: mtd
921
922 deprecated:
923 - io_mtd
924
925 - title: Measured Boot
926 scope: measured-boot
927
928 deprecated:
929 - measured boot
930 - measured_boot
931
932 - title: MMC
933 scope: mmc
934
935 deprecated:
936 - drivers/mmc
937
938 - title: MTD
939 scope: mtd
940
941 deprecated:
942 - drivers/mtd
943
944 subsections:
945 - title: NAND
946 scope: nand
947
948 subsections:
949 - title: SPI NAND
950 scope: spi-nand
951
952 deprecated:
953 - spi_nand
954
Jayanth Dodderi Chidanandb16bc302022-05-19 11:03:07 +0100955 - title: GUID Partition Tables Support
956 scope: guid-partition
Sughosh Ganu540e0322022-01-19 11:31:20 +0530957
Juan Pablo Conde52487492023-05-15 22:17:17 -0500958 deprecated:
959 - partition
960
Chris Kay82117d72021-12-01 16:34:55 +0000961 - title: SCMI
962 scope: scmi
963
964 deprecated:
965 - scmi_common
966 - drivers/scmi-msg
laurenw-arm7c66fca2022-11-01 14:45:33 -0500967 - scmi-msg
Chris Kay82117d72021-12-01 16:34:55 +0000968
969 - title: UFS
970 scope: ufs
971
972 - title: Arm
973 scope: arm-drivers
974
975 subsections:
976 - title: Ethos-N
977 scope: ethos-n
978
979 deprecated:
980 - drivers/arm/ethosn
981
982 - title: GIC
983 scope: gic
984
985 subsections:
986 - title: GICv3
987 scope: gicv3
988
laurenw-arm7c66fca2022-11-01 14:45:33 -0500989 deprecated:
990 - gicv3/multichip
991
Chris Kay82117d72021-12-01 16:34:55 +0000992 subsections:
laurenw-arm7c66fca2022-11-01 14:45:33 -0500993 - title: GIC-600
994 scope: gic600
995
Chris Kay82117d72021-12-01 16:34:55 +0000996 - title: GIC-600AE
997 scope: gic600ae
998
Madhukar Pappireddydc4b8c62023-08-03 12:13:27 -0500999 - title: GICv2
1000 scope: gicv2
1001
Manish V Badarkhebcaeb672022-03-24 18:23:37 +00001002 - title: SMMU
1003 scope: smmu
1004
Jayanth Dodderi Chidanandb16bc302022-05-19 11:03:07 +01001005 - title: MHU
1006 scope: mhu
1007
1008 deprecated:
1009 - drivers/arm/mhu
1010
Tamas Bana70e31d2024-04-22 15:41:45 +02001011 - title: RSE
1012 scope: rse
Jayanth Dodderi Chidanandb16bc302022-05-19 11:03:07 +01001013
1014 deprecated:
1015 - drivers/arm/rss
Tamas Bana70e31d2024-04-22 15:41:45 +02001016 - rss
Jayanth Dodderi Chidanandb16bc302022-05-19 11:03:07 +01001017
Chris Kay82117d72021-12-01 16:34:55 +00001018 - title: TZC
1019 scope: tzc
1020
1021 subsections:
1022 - title: TZC-400
1023 scope: tzc400
1024
1025 deprecated:
1026 - drivers/tzc400
1027
Jayanth Dodderi Chidanandb16bc302022-05-19 11:03:07 +01001028 - title: TZC-380
1029 scope: tzc380
1030
1031 deprecated:
1032 - drivers/tzc380
1033
Madhukar Pappireddy4c3de562023-03-22 15:27:22 -05001034 - title: SBSA
1035 scope: sbsa
1036
Chris Kay82117d72021-12-01 16:34:55 +00001037 - title: Marvell
1038 scope: marvell-drivers
1039
1040 subsections:
1041 - title: COMPHY
1042 scope: marvell-comphy
1043
1044 deprecated:
1045 - drivers/marvell/comphy
1046
1047 subsections:
1048 - title: Armada 3700
1049 scope: marvell-comphy-3700
1050
1051 deprecated:
1052 - drivers/marvell/comphy-3700
1053
1054 - title: CP110
1055 scope: marvell-comphy-cp110
1056
1057 deprecated:
1058 - drivers/marvell/comphy-cp110
1059
1060 - title: UART
1061 scope: marvell-uart
1062
1063 deprecated:
1064 - plat/marvell/uart
1065
1066 - title: Armada
1067 scope: armada-drivers
1068
1069 subsections:
1070 - title: A3K
1071 scope: a3k-drivers
1072
1073 subsections:
1074 - title: A3720
1075 scope: a3720-uart
1076
1077 deprecated:
1078 - plat/marvell/a3720/uart
1079
1080 - title: MediaTek
1081 scope: mediatek-drivers
1082
1083 subsections:
1084 - title: APU
1085 scope: mediatek-apu
1086
1087 deprecated:
1088 - plat/mediatek/apu
1089
1090 - title: EMI MPU
1091 scope: mediatek-emi-mpu
1092
1093 deprecated:
1094 - plat/mediatek/mpu
1095
1096 - title: PMIC Wrapper
1097 scope: mediatek-pmic-wrapper
1098
1099 deprecated:
1100 - plat/mediatek/pmic_wrap
1101
1102 - title: MT8192
1103 scope: mt8192-drivers
1104
1105 subsections:
1106 - title: SPM
1107 scope: mt8192-spm
1108
1109 deprecated:
1110 - mediatek/mt8192/spm
1111
1112 - title: NXP
1113 scope: nxp-drivers
1114
1115 subsections:
1116 - title: DCFG
1117 scope: nxp-dcfg
1118
1119 deprecated:
1120 - driver/nxp/dcfg
1121
1122 - title: FLEXSPI
1123 scope: flexspi
1124
1125 deprecated:
1126 - include/drivers/flexspi
1127 - driver/nxp/xspi
1128
1129 - title: SCFG
1130 scope: nxp-scfg
1131
1132 deprecated:
1133 - nxp/scfg
1134
1135 - title: SFP
1136 scope: nxp-sfp
1137
1138 deprecated:
1139 - drivers/nxp/sfp
1140
Jiafei Pan18ba9e42022-02-10 10:39:56 +08001141 - title: QSPI
1142 scope: nxp-qspi
1143
Jiafei Pan94450412022-02-18 12:02:04 +08001144 - title: NXP Crypto
1145 scope: nxp-crypto
1146
Jiafei Panfa3f7612022-02-22 11:05:00 +08001147 - title: DDR
1148 scope: nxp-ddr
1149
1150 - title: GIC
1151 scope: nxp-gic
1152
Jayanth Dodderi Chidanandb16bc302022-05-19 11:03:07 +01001153 - title: CSU
1154 scope: nxp-csu
1155
1156 - title: IFC NAND
1157 scope: nxp-ifc-nand
1158
1159 - title: IFC NOR
1160 scope: nxp-ifc-nor
1161
1162 - title: TZC-380
1163 scope: nxp-tzc380
1164
Jacky Bai9dc47d52023-06-14 15:24:00 +08001165 - title: TRDC
1166 scope: imx-trdc
1167
Ghennadi Procopciucfc26eb02024-06-11 18:39:58 +03001168 - title: Clock
1169 scope: nxp-clk
1170
Chris Kay82117d72021-12-01 16:34:55 +00001171 - title: Renesas
1172 scope: renesas-drivers
1173
1174 subsections:
1175 - title: R-Car3
1176 scope: rcar3-drivers
1177
1178 deprecated:
1179 - drivers/rcar3
1180
1181 - title: ST
1182 scope: st-drivers
1183
1184 deprecated:
1185 - drivers/st
1186
1187 subsections:
Yann Gautier9f359fd2022-01-27 09:25:47 +01001188 - title: BSEC
1189 scope: st-bsec
1190
Chris Kay82117d72021-12-01 16:34:55 +00001191 - title: Clock
1192 scope: st-clock
1193
1194 deprecated:
1195 - stm32mp_clk
1196 - drivers/st/clk
1197 - stm32mp1_clk
1198
Yann Gautier9f359fd2022-01-27 09:25:47 +01001199 - title: Crypto
1200 scope: st-crypto
1201
1202 - title: DDR
1203 scope: st-ddr
1204
Chris Kay82117d72021-12-01 16:34:55 +00001205 - title: I/O
1206 scope: st-io-drivers
1207
1208 subsections:
1209 - title: STM32 Image
1210 scope: st-io-stm32image
1211
1212 deprecated:
1213 - io-stm32image
1214 - io_stm32image
1215
Yann Gautier9f359fd2022-01-27 09:25:47 +01001216 - title: I2C
1217 scope: st-i2c
1218
1219 - title: FMC
1220 scope: st-fmc
1221
1222 - title: GPIO
1223 scope: st-gpio
1224
Chris Kay82117d72021-12-01 16:34:55 +00001225 - title: SDMMC2
1226 scope: st-sdmmc2
1227
1228 deprecated:
1229 - stm32_sdmmc2
1230
1231 - title: ST PMIC
1232 scope: st-pmic
1233
1234 deprecated:
1235 - drivers/st/pmic
1236
1237 - title: STPMIC1
1238 scope: stpmic1
1239
Yann Gautier9f359fd2022-01-27 09:25:47 +01001240 - title: Regulator
1241 scope: st-regulator
1242
1243 - title: Reset
1244 scope: st-reset
1245
1246 - title: SPI
1247 scope: st-spi
1248
Chris Kay82117d72021-12-01 16:34:55 +00001249 - title: UART
1250 scope: st-uart
1251
1252 subsections:
1253 - title: STM32 Console
1254 scope: stm32-console
1255
1256 deprecated:
1257 - stm32_console
1258
1259 - title: USB
1260 scope: st-usb
1261
1262 deprecated:
1263 - drivers/st/usb
1264
Yann Gautier9f359fd2022-01-27 09:25:47 +01001265 - title: Watchdog
1266 scope: st-iwdg
1267
Chris Kay82117d72021-12-01 16:34:55 +00001268 - title: USB
1269 scope: usb
1270
1271 deprecated:
1272 - drivers/usb
1273
1274 - title: Miscellaneous
1275
1276 subsections:
1277 - title: AArch64
1278 scope: aarch64
1279
1280 - title: Debug
1281 scope: debug
1282
1283 deprecated:
1284 - common/debug
1285
1286 - title: CRC32
1287 scope: crc32
1288
1289 subsections:
1290 - title: Hardware CRC32
1291 scope: hw-crc32
1292
1293 deprecated:
1294 - hw_crc
1295 - hw_crc32
1296
1297 - title: Software CRC32
1298 scope: sw-crc32
1299
1300 deprecated:
1301 - sw_crc32
1302
1303 - title: DT Bindings
1304 scope: dt-bindings
1305
1306 - title: FDT Wrappers
1307 scope: fdt-wrappers
1308
1309 - title: FDTs
1310 scope: fdts
1311
1312 deprecated:
1313 - fdt
1314
1315 subsections:
1316 - title: Morello
1317 scope: morello-fdts
1318
1319 deprecated:
1320 - fdts/morello
1321
1322 - title: STM32MP1
1323 scope: stm32mp1-fdts
1324
1325 deprecated:
1326 - fdts stm32mp1
1327
Yann Gautier2c962252022-07-08 15:55:14 +02001328 subsections:
1329 - title: STM32MP13
1330 scope: stm32mp13-fdts
1331
1332 - title: STM32MP15
1333 scope: stm32mp15-fdts
1334
Yann Gautier1123f662022-12-16 15:32:25 +01001335 - title: STM32MP2
1336 scope: stm32mp2-fdts
1337
Chris Kay82117d72021-12-01 16:34:55 +00001338 - title: PIE
1339 scope: pie
1340
Juan Pablo Conde52487492023-05-15 22:17:17 -05001341 - title: PIE/POR
1342 scope: pie/por
1343
Chris Kay82117d72021-12-01 16:34:55 +00001344 - title: Security
1345 scope: security
1346
1347 - title: SDEI
1348 scope: sdei
1349
1350 - title: TBBR
1351 scope: tbbr
1352
1353 - title: NXP
1354
1355 subsections:
1356 - title: OCRAM
1357 scope: nxp-ocram
1358
1359 deprecated:
1360 - nxp/common/ocram
1361
1362 - title: PSCI
1363 scope: nxp-psci
1364
1365 deprecated:
1366 - plat/nxp/common/psci
1367
Chris Kayd04a4762023-04-13 17:24:20 +01001368 - title: UUID
1369 scope: uuid
1370
Chris Kay82117d72021-12-01 16:34:55 +00001371 - title: Documentation
1372 scope: docs
1373
1374 deprecated:
1375 - doc
1376
1377 subsections:
1378 - title: Changelog
1379 scope: changelog
1380
1381 - title: Commit Style
1382 scope: commit-style
1383
1384 - title: Contribution Guidelines
1385 scope: contributing
1386
1387 deprecated:
1388 - contribution-guidelines
1389 - docs-contributing.rst
1390
1391 - title: Maintainers
1392 scope: maintainers
1393
1394 - title: Prerequisites
1395 scope: prerequisites
1396
Sandrine Bailleux3c8fdf72022-05-10 14:53:44 +02001397 - title: Threat Model
1398 scope: threat-model
1399
Sandrine Bailleuxe67bb122023-02-08 13:58:25 +01001400 - title: Porting Guide
1401 scope: porting
1402
Chris Kay82117d72021-12-01 16:34:55 +00001403 - title: Build System
1404 scope: build
1405
1406 deprecated:
1407 - makefile
1408 - Makefile
1409
1410 subsections:
1411 - title: Git Hooks
1412 scope: hooks
1413
Juan Pablo Conde52487492023-05-15 22:17:17 -05001414 deprecated:
1415 - git-hooks
1416
Chris Kay82117d72021-12-01 16:34:55 +00001417 - title: Tools
Manish V Badarkhe7b425de2024-07-19 08:31:51 +01001418 scope: tools
Chris Kay82117d72021-12-01 16:34:55 +00001419
1420 subsections:
1421 - title: STM32 Image
1422 scope: stm32image
1423
1424 deprecated:
1425 - tools/stm32image
1426
Jiafei Pan18ba9e42022-02-10 10:39:56 +08001427 - title: NXP Tools
1428 scope: nxp-tools
1429
Jayanth Dodderi Chidanandb16bc302022-05-19 11:03:07 +01001430 - title: Firmware Image Package Tool
1431 scope: fiptool
1432
1433 - title: Secure Partition Tool
1434 scope: sptool
1435
1436 - title: Certificate Creation Tool
1437 scope: cert-create
1438
Chris Kay01995442024-06-14 11:31:03 +00001439 - title: Firmware Encryption Tool
1440 scope: encrypt-fw
1441
Harrison Mutai372b8802023-02-23 11:30:17 +00001442 - title: Memory Mapping Tool
1443 scope: memmap
1444
laurenw-arm7c66fca2022-11-01 14:45:33 -05001445 deprecated:
1446 - cert_create
1447
Henrik Nordstromd95745b2023-12-04 10:31:07 +01001448 - title: Marvell Tools
1449 scope: marvell-tools
1450
Chris Kayb278eb72024-06-04 11:31:06 +00001451 - title: Renesas Tools
1452 scope: renesas-tools
1453
1454 subsections:
1455 - title: R-Car Layout Tool
1456 scope: rcar-layout
Chris Kay51a20b72024-06-04 11:31:06 +00001457
1458 - title: R/ZG Layout Tool
1459 scope: rzg-layout
1460
Harrison Mutai19dc4f92024-05-10 16:54:29 +00001461 - title: Transfer List Compiler
1462 scope: tlc
1463
Manish V Badarkhed544f052024-08-27 10:48:38 +01001464 - title: Chain of Trust device tree to C source file
1465 scope: cot-dt2c
1466
Chris Kay82117d72021-12-01 16:34:55 +00001467 - title: Dependencies
1468 scope: deps
1469
1470 subsections:
1471 - title: checkpatch
1472 scope: checkpatch
1473
1474 - title: commitlint
1475 scope: commitlint
1476
Daniel Boulbyc550e702022-10-05 11:03:44 +01001477 - title: Compiler runtime libraries
1478 scope: compiler-rt
1479
Chris Kay82117d72021-12-01 16:34:55 +00001480 - title: libfdt
1481 scope: libfdt
1482
1483 - title: Node Package Manager (NPM)
1484 scope: npm
Daniel Boulbyc550e702022-10-05 11:03:44 +01001485
dependabot[bot]dba1b532023-09-06 09:55:17 +00001486 - title: Poetry
1487 scope: poetry
1488
Daniel Boulbyc550e702022-10-05 11:03:44 +01001489 - title: zlib
1490 scope: zlib