blob: 2b760c7f48c2ffdb2b32e1ea9a622073b2758b1d [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
Chia-Wei Wanga7556d82022-11-02 17:50:21 +0800275 - title: Aspeed
276 scope: aspeed
277
278 subsections:
279 - title: AST2700
280 scope: ast2700
281
Jayanth Dodderi Chidanandb16bc302022-05-19 11:03:07 +0100282 - title: Broadcom
283 scope: brcm
284
Manish V Badarkhe5eeeb0c2023-11-21 14:35:13 +0000285 - title: Cadence
286 scope: cadence
287
laurenw-arm7c66fca2022-11-01 14:45:33 -0500288 - title: HiSilicon
289 scope: hisilicon
290
291 subsections:
292 - title: HiKey
293 scope: hikey
294
295 - title: HiKey960
296 scope: hikey960
297
Sieu Mun Tang9f3a13c2022-02-22 14:14:26 +0800298 - title: Intel
299 scope: intel
300
301 subsections:
302 - title: SoC
303 scope: soc
304
Chris Kay82117d72021-12-01 16:34:55 +0000305 - title: Marvell
306 scope: marvell
307
308 deprecated:
309 - plat/marvell
310
311 subsections:
312 - title: Armada
313 scope: armada
314
315 deprecated:
316 - plat/marvell/armada
317
318 subsections:
319 - title: A3K
320 scope: a3k
321
322 deprecated:
323 - plat/marvell/a3k
324
325 - title: A8K
326 scope: a8k
327
328 deprecated:
329 - plat/marvell/a8k
330
331 - title: MediaTek
332 scope: mediatek
333
334 deprecated:
335 - plat/mediatek/common
336 - plat/mediatek
337
338 subsections:
339 - title: MT8183
340 scope: mt8183
341
342 deprecated:
343 - plat/mediatek/mt8183
344
laurenw-arm7c66fca2022-11-01 14:45:33 -0500345 - title: MT8186
346 scope: mt8186
347
348 deprecated:
349 - plat/mediatek/mt8186
350 - mt8186-emi-mpu
351
352 - title: MT8188
353 scope: mt8188
354
Chris Kay82117d72021-12-01 16:34:55 +0000355 - title: MT8192
356 scope: mt8192
357
358 deprecated:
359 - plat/mdeiatek/mt8192
360
361 - title: MT8195
362 scope: mt8195
363
364 deprecated:
365 - plat/mediatek/me8195
366 - plat/mediatek/mt8195
367 - plat/mdeiatek/mt8195
368
369 - title: NVIDIA
370 scope: nvidia
371
372 subsections:
373 - title: Tegra
374 scope: tegra
375
376 deprecated:
377 - plat/tegra
378
379 subsections:
380 - title: Tegra 132
381 scope: tegra132
382
Jayanth Dodderi Chidanandb16bc302022-05-19 11:03:07 +0100383 - title: Tegra 194
384 scope: tegra194
385
Juan Pablo Conde52487492023-05-15 22:17:17 -0500386 - title: Tegra 210
387 scope: tegra210
388
Chris Kay82117d72021-12-01 16:34:55 +0000389 - title: NXP
390 scope: nxp
391
392 deprecated:
393 - plat/nxp
394 - plat/nxp/common
395
396 subsections:
397 - title: i.MX
398 scope: imx
399
400 deprecated:
401 - plat/imx
402 - plat/imx/imx
403
404 subsections:
405 - title: i.MX 8M
406 scope: imx8m
407
408 deprecated:
409 - plat/imx8m
410 - plat/imx/imx8m
411
412 subsections:
Jayanth Dodderi Chidanandb16bc302022-05-19 11:03:07 +0100413 - title: i.MX 8M Nano
414 scope: imx8mn
415
416 deprecated:
417 - plat/imx/imx8m/imx8mn
418
Chris Kay82117d72021-12-01 16:34:55 +0000419 - title: i.MX 8M Mini
420 scope: imx8mm
421
422 deprecated:
423 - plat/imx/imx8m/imx8mm
424
425 - title: i.MX 8M Plus
426 scope: imx8mp
427
428 deprecated:
429 - plat/imx/imx8m/imx8mp
430
Jayanth Dodderi Chidanandb16bc302022-05-19 11:03:07 +0100431 - title: i.MX 8Q
432 scope: imx8mq
433
434 deprecated:
435 - plat/imx/imx8m/imx8mq
436
Juan Pablo Conde52487492023-05-15 22:17:17 -0500437 - title: i.MX 8
438 scope: imx8
439
Jacky Bai4e214e42023-10-08 17:52:24 +0800440 - title: i.MX 8ULP
441 scope: imx8ulp
442
Jacky Bai9dc47d52023-06-14 15:24:00 +0800443 - title: i.MX 9
444 scope: imx9
445
446 subsections:
447 - title: i.MX93
448 scope: imx93
449
Chris Kay82117d72021-12-01 16:34:55 +0000450 - title: Layerscape
451 scope: layerscape
452
453 deprecated:
454 - docs/nxp/layerscape
455
456 subsections:
457 - title: LS1028A
458 scope: ls1028a
459
460 deprecated:
461 - plat/nxp/ls1028a
462
463 subsections:
464 - title: LS1028ARDB
465 scope: ls1028ardb
466
467 deprecated:
468 - plat/nxp/ls1028ardb
469
Jayanth Dodderi Chidanandb16bc302022-05-19 11:03:07 +0100470 - title: LS1043A
471 scope: ls1043a
472
473 deprecated:
474 - plat/nxp/ls1043a
475
476 subsections:
477 - title: LS1043ARDB
478 scope: ls1043ardb
479
480 deprecated:
481 - plat/nxp/ls1043ardb
482
Chris Kay82117d72021-12-01 16:34:55 +0000483 - title: LX2
484 scope: lx2
485
486 deprecated:
487 - plat/nxp/lx2
488
489 subsections:
490 - title: LX216
491 scope: lx216
492
493 deprecated:
494 - plat/nxp/lx216x
495
496 subsections:
497 - title: LX2160
498 scope: lx2160
499
500 deprecated:
501 - plat/soc-lx2160
502
Jiafei Pan18ba9e42022-02-10 10:39:56 +0800503 - title: LS1046A
504 scope: ls1046a
505
506 subsections:
507 - title: LS1046ARDB
508 scope: ls1046ardb
509
510 - title: LS1046AFRWY
511 scope: ls1046afrwy
512
513 - title: LS1046AQDS
514 scope: ls1046aqds
515
Jiafei Pan290bf6f2022-02-24 16:00:35 +0800516 - title: LS1088A
517 scope: ls1088a
518
519 subsections:
520 - title: LS1088ARDB
521 scope: ls1088ardb
522
523 - title: LS1088AQDS
524 scope: ls1088aqds
525
Ghennadi Procopciuca9fee052024-01-30 16:19:47 +0200526 - title: S32G274A
527 scope: s32g274a
528
529 subsections:
530 - title: S32G274ARDB
531 scope: s32g274ardb
532
Chris Kay82117d72021-12-01 16:34:55 +0000533 - title: QEMU
534 scope: qemu
535
536 deprecated:
537 - plat/qemu
538
Juan Pablo Conde52487492023-05-15 22:17:17 -0500539 subsections:
540 - title: SBSA
541 scope: qemu-sbsa
542
Manish V Badarkhe5eeeb0c2023-11-21 14:35:13 +0000543 deprecated:
544 - qemu_sbsa
545
Chris Kay82117d72021-12-01 16:34:55 +0000546 - title: QTI
547 scope: qti
548
laurenw-arm7c66fca2022-11-01 14:45:33 -0500549 deprecated:
550 - plat/qti
551
Chris Kay82117d72021-12-01 16:34:55 +0000552 subsections:
553 - title: SC1780
554 scope: sc7180
555
556 deprecated:
557 - plat/qti/sc7180
558
559 - title: SC7280
560 scope: sc7280
561
562 deprecated:
563 - plat/qti/sc7280
564
Stephan Gerholdd0d0bf42021-12-01 20:00:00 +0100565 - title: MSM8916
566 scope: msm8916
567
Chris Kay82117d72021-12-01 16:34:55 +0000568 - title: Raspberry Pi
569 scope: rpi
570
571 subsections:
laurenw-arm7c66fca2022-11-01 14:45:33 -0500572 - title: Raspberry Pi 3
573 scope: rpi3
574
Chris Kay82117d72021-12-01 16:34:55 +0000575 - title: Raspberry Pi 4
576 scope: rpi4
577
Mario Bălănicăc883ce02023-12-02 03:08:02 +0200578 - title: Raspberry Pi 5
579 scope: rpi5
580
Chris Kay82117d72021-12-01 16:34:55 +0000581 - title: Renesas
582 scope: renesas
583
584 subsections:
585 - title: R-Car
586 scope: rcar
587
588 deprecated:
589 - plat/rcar
590
591 subsections:
592 - title: R-Car 3
593 scope: rcar3
594
595 deprecated:
596 - plat/rcar3
597
598 - title: Rockchip
599 scope: rockchip
600
601 subsections:
602 - title: RK3399
603 scope: rk3399
604
605 deprecated:
606 - rockchip/rk3399
607 - rk3399/suspend
608
Diederik de Haas6a9c7312023-11-27 10:21:37 +0100609 - title: RK3328
610 scope: rk3328
611
Chris Kay82117d72021-12-01 16:34:55 +0000612 - title: Socionext
613 scope: socionext
614
615 subsections:
616 - title: Synquacer
617 scope: synquacer
618
619 deprecated:
620 - plat/synquacer
621
622 - title: ST
623 scope: st
624
625 deprecated:
626 - plat/st
627
628 subsections:
Yann Gautier14b32e82022-06-01 18:17:43 +0200629 - title: STM32MP1
Chris Kay82117d72021-12-01 16:34:55 +0000630 scope: stm32mp1
631
632 deprecated:
633 - plat/st/stm32mp1
634
Yann Gautier14b32e82022-06-01 18:17:43 +0200635 subsections:
636 - title: STM32MP13
637 scope: stm32mp13
638
639 - title: STM32MP15
640 scope: stm32mp15
641
Yann Gautier1123f662022-12-16 15:32:25 +0100642 - title: STM32MP2
643 scope: stm32mp2
644
Dave Gerlach74c19f92022-03-22 11:02:52 -0500645 - title: Texas Instruments
646 scope: ti
647
648 subsections:
649 - title: K3
650 scope: k3
651
laurenw-arm7c66fca2022-11-01 14:45:33 -0500652 deprecated:
653 - ti-k3
654
Chris Kay82117d72021-12-01 16:34:55 +0000655 - title: Xilinx
656 scope: xilinx
657
658 deprecated:
659 - plat/xilinx
660
661 subsections:
Michal Simek38d5d4d2023-09-18 10:22:48 +0200662 - title: DCC (Debug Communication Channel)
663 scope: dcc
664
Chris Kay82117d72021-12-01 16:34:55 +0000665 - title: Versal
666 scope: versal
667
668 deprecated:
669 - plat/xilinx/versal/include
670 - plat/xilinx/versal
671 - plat/versal
672
Manish V Badarkhe8a7af842024-05-17 11:09:28 +0100673 - title: Versal NET
674 scope: versal-net
laurenw-arm7c66fca2022-11-01 14:45:33 -0500675
Manish V Badarkhe8a7af842024-05-17 11:09:28 +0100676 deprecated:
677 - versal_net
laurenw-arm7c66fca2022-11-01 14:45:33 -0500678
Chris Kay82117d72021-12-01 16:34:55 +0000679 - title: ZynqMP
680 scope: zynqmp
681
682 deprecated:
683 - plat/zynqmp
684 - plat/xilinx/zynqmp
685
Amit Nagal055796f2024-06-05 12:32:38 +0530686 - title: AMD
687 scope: amd
688
689 subsections:
690 - title: Versal Gen 2
691 scope: versal2
692
rutigl@gmail.comdefbeed2023-03-19 09:19:05 +0200693 - title: Nuvoton
694 scope: nuvoton
695
696 subsections:
697 - title: npcm845x
698 scope: npcm845x
699
Chris Kay82117d72021-12-01 16:34:55 +0000700 - title: Bootloader Images
701 scope: bl
702
703 deprecated:
704 - bl_common
705
706 subsections:
707 - title: BL1
708 scope: bl1
709
710 - title: BL2
711 scope: bl2
712
Jayanth Dodderi Chidanandb16bc302022-05-19 11:03:07 +0100713 - title: BL31
714 scope: bl31
715
Shruti Guptac31beb62022-08-09 10:46:07 +0100716 - title: BL32
717 scope: bl32
718
719 subsections:
720 - title: TSP
721 scope: tsp
722
Chris Kay82117d72021-12-01 16:34:55 +0000723 - title: Services
724 scope: services
725
726 subsections:
727 - title: FF-A
Daniel Boulby8d74d6a2021-12-06 14:44:35 +0000728 scope: ff-a
Chris Kay82117d72021-12-01 16:34:55 +0000729
730 deprecated:
Daniel Boulby8d74d6a2021-12-06 14:44:35 +0000731 - ffa
Chris Kay82117d72021-12-01 16:34:55 +0000732
733 - title: RME
734 scope: rme
735
laurenw-arm7c66fca2022-11-01 14:45:33 -0500736 deprecated:
737 - rme/fid
738
Jayanth Dodderi Chidanandb16bc302022-05-19 11:03:07 +0100739 subsections:
740 - title: TRP
741 scope: trp
742
Javier Almansa Sobrino7176a772021-11-24 18:37:37 +0000743 - title: RMMD
744 scope: rmmd
745
Juan Pablo Conde52487492023-05-15 22:17:17 -0500746 - title: RMM
747 scope: rmm
748
Chris Kay82117d72021-12-01 16:34:55 +0000749 - title: SPM
750 scope: spm
751
Jayanth Dodderi Chidanandb16bc302022-05-19 11:03:07 +0100752 subsections:
Manish V Badarkhe5eeeb0c2023-11-21 14:35:13 +0000753 - title: EL3 SPM
754 scope: el3-spm
755
Jayanth Dodderi Chidanandb16bc302022-05-19 11:03:07 +0100756 - title: EL3 SPMC
757 scope: el3-spmc
758
laurenw-arm7c66fca2022-11-01 14:45:33 -0500759 deprecated:
760 - spmc
761
Jayanth Dodderi Chidanandb16bc302022-05-19 11:03:07 +0100762 - title: SPMD
763 scope: spmd
Daniel Boulby8d74d6a2021-12-06 14:44:35 +0000764
Jayanth Dodderi Chidanandb16bc302022-05-19 11:03:07 +0100765 - title: SPM MM
766 scope: spm-mm
Chris Kay82117d72021-12-01 16:34:55 +0000767
Manish V Badarkhe478d3ee2022-06-27 09:21:14 +0100768 - title: DRTM
769 scope: drtm
770
Jayanth Dodderi Chidanand7c7faff2022-10-11 17:16:07 +0100771 - title: TRNG
772 scope: trng
773
Sona Mathew5100bec2023-09-20 12:55:32 -0500774 - title: ERRATA ABI
775 scope: errata-abi
776
777 deprecated:
778 - errata_abi
Sona Mathew7fe03522022-11-18 18:05:38 -0600779
Manish V Badarkhe8a7af842024-05-17 11:09:28 +0100780 - title: ChromeOS
781 scope: cros
782
Chris Kay82117d72021-12-01 16:34:55 +0000783 - title: Libraries
Manish V Badarkhe5eeeb0c2023-11-21 14:35:13 +0000784 scope: lib
Chris Kay82117d72021-12-01 16:34:55 +0000785
786 subsections:
787 - title: CPU Support
788 scope: cpus
789
790 deprecated:
791 - cpu
792 - errata
793 - errata_report
794
795 - title: EL3 Runtime
796 scope: el3-runtime
797
798 deprecated:
799 - el3_runtime
800
Jayanth Dodderi Chidanandb16bc302022-05-19 11:03:07 +0100801 subsections:
802 - title: Context Management
803 scope: cm
804
laurenw-arm7c66fca2022-11-01 14:45:33 -0500805 - title: RAS
806 scope: ras
807
Chris Kay82117d72021-12-01 16:34:55 +0000808 - title: FCONF
809 scope: fconf
810
811 - title: MPMM
812 scope: mpmm
813
814 - title: OP-TEE
815 scope: optee
816
817 deprecated:
818 - lib/optee
819
820 - title: PSCI
821 scope: psci
822
Chris Kayc66b9f32024-01-15 18:45:07 +0000823 - title: ROMlib
824 scope: romlib
825
Chris Kay82117d72021-12-01 16:34:55 +0000826 - title: GPT
827 scope: gpt
828
829 deprecated:
830 - gpt_rme
831
832 - title: SMCCC
833 scope: smccc
834
835 - title: Translation Tables
836 scope: xlat
837
Jayanth Dodderi Chidanandb16bc302022-05-19 11:03:07 +0100838 - title: C Standard Library
839 scope: libc
840
841 - title: Locks
842 scope: locks
843
844 - title: PSA
845 scope: psa
846
laurenw-arm7c66fca2022-11-01 14:45:33 -0500847 deprecated:
848 - lib/psa
849
Tamas Ban109a4802024-02-06 11:24:51 +0100850 - title: DICE Protection Environment
851 scope: dice
852
Zelalem Aweke5362beb2022-04-04 17:42:48 -0500853 - title: Context Management
Chris Kaye76be0a2022-10-10 16:57:45 +0100854 scope: context-mgmt
855
856 deprecated:
857 - context mgmt
Zelalem Aweke5362beb2022-04-04 17:42:48 -0500858
Manish V Badarkhede920262022-09-26 15:06:56 +0100859 - title: Semihosting
860 scope: semihosting
861
Raymond Mao98983392023-07-25 07:53:35 -0700862 - title: Firmware Handoff
863 scope: handoff
864
Manish V Badarkhe8a7af842024-05-17 11:09:28 +0100865 - title: Exception Handling Framework (EHF)
866 scope: ehf
867
Chris Kay82117d72021-12-01 16:34:55 +0000868 - title: Drivers
869
870 subsections:
871 - title: Authentication
872 scope: auth
873
874 deprecated:
875 - driver/auth
876
877 subsections:
878 - title: CryptoCell-713
879 scope: cc-713
880
Manish V Badarkhe8d91e982022-09-22 21:41:55 +0100881 - title: Crypto
882 scope: crypto
883
884 - title: mbedTLS
885 scope: mbedtls
886
Manish V Badarkhe538d5922023-09-22 17:54:59 +0100887 - title: mbedTLS-PSA
888 scope: mbedtls-psa
889
Yann Gautier1832d662023-01-06 17:05:48 +0100890 - title: Console
891 scope: console
892
Jayanth Dodderi Chidanandb16bc302022-05-19 11:03:07 +0100893 - title: Generic Clock
894 scope: clk
895
Chris Kay82117d72021-12-01 16:34:55 +0000896 - title: FWU
897 scope: fwu
898
899 deprecated:
900 - fwu_metadata
901
902 - title: I/O
903 scope: io
904
905 subsections:
906 - title: MTD
907 scope: mtd
908
909 deprecated:
910 - io_mtd
911
912 - title: Measured Boot
913 scope: measured-boot
914
915 deprecated:
916 - measured boot
917 - measured_boot
918
919 - title: MMC
920 scope: mmc
921
922 deprecated:
923 - drivers/mmc
924
925 - title: MTD
926 scope: mtd
927
928 deprecated:
929 - drivers/mtd
930
931 subsections:
932 - title: NAND
933 scope: nand
934
935 subsections:
936 - title: SPI NAND
937 scope: spi-nand
938
939 deprecated:
940 - spi_nand
941
Jayanth Dodderi Chidanandb16bc302022-05-19 11:03:07 +0100942 - title: GUID Partition Tables Support
943 scope: guid-partition
Sughosh Ganu540e0322022-01-19 11:31:20 +0530944
Juan Pablo Conde52487492023-05-15 22:17:17 -0500945 deprecated:
946 - partition
947
Chris Kay82117d72021-12-01 16:34:55 +0000948 - title: SCMI
949 scope: scmi
950
951 deprecated:
952 - scmi_common
953 - drivers/scmi-msg
laurenw-arm7c66fca2022-11-01 14:45:33 -0500954 - scmi-msg
Chris Kay82117d72021-12-01 16:34:55 +0000955
956 - title: UFS
957 scope: ufs
958
959 - title: Arm
960 scope: arm-drivers
961
962 subsections:
963 - title: Ethos-N
964 scope: ethos-n
965
966 deprecated:
967 - drivers/arm/ethosn
968
969 - title: GIC
970 scope: gic
971
972 subsections:
973 - title: GICv3
974 scope: gicv3
975
laurenw-arm7c66fca2022-11-01 14:45:33 -0500976 deprecated:
977 - gicv3/multichip
978
Chris Kay82117d72021-12-01 16:34:55 +0000979 subsections:
laurenw-arm7c66fca2022-11-01 14:45:33 -0500980 - title: GIC-600
981 scope: gic600
982
Chris Kay82117d72021-12-01 16:34:55 +0000983 - title: GIC-600AE
984 scope: gic600ae
985
Madhukar Pappireddydc4b8c62023-08-03 12:13:27 -0500986 - title: GICv2
987 scope: gicv2
988
Manish V Badarkhebcaeb672022-03-24 18:23:37 +0000989 - title: SMMU
990 scope: smmu
991
Jayanth Dodderi Chidanandb16bc302022-05-19 11:03:07 +0100992 - title: MHU
993 scope: mhu
994
995 deprecated:
996 - drivers/arm/mhu
997
Tamas Bana70e31d2024-04-22 15:41:45 +0200998 - title: RSE
999 scope: rse
Jayanth Dodderi Chidanandb16bc302022-05-19 11:03:07 +01001000
1001 deprecated:
1002 - drivers/arm/rss
Tamas Bana70e31d2024-04-22 15:41:45 +02001003 - rss
Jayanth Dodderi Chidanandb16bc302022-05-19 11:03:07 +01001004
Chris Kay82117d72021-12-01 16:34:55 +00001005 - title: TZC
1006 scope: tzc
1007
1008 subsections:
1009 - title: TZC-400
1010 scope: tzc400
1011
1012 deprecated:
1013 - drivers/tzc400
1014
Jayanth Dodderi Chidanandb16bc302022-05-19 11:03:07 +01001015 - title: TZC-380
1016 scope: tzc380
1017
1018 deprecated:
1019 - drivers/tzc380
1020
Madhukar Pappireddy4c3de562023-03-22 15:27:22 -05001021 - title: SBSA
1022 scope: sbsa
1023
Chris Kay82117d72021-12-01 16:34:55 +00001024 - title: Marvell
1025 scope: marvell-drivers
1026
1027 subsections:
1028 - title: COMPHY
1029 scope: marvell-comphy
1030
1031 deprecated:
1032 - drivers/marvell/comphy
1033
1034 subsections:
1035 - title: Armada 3700
1036 scope: marvell-comphy-3700
1037
1038 deprecated:
1039 - drivers/marvell/comphy-3700
1040
1041 - title: CP110
1042 scope: marvell-comphy-cp110
1043
1044 deprecated:
1045 - drivers/marvell/comphy-cp110
1046
1047 - title: UART
1048 scope: marvell-uart
1049
1050 deprecated:
1051 - plat/marvell/uart
1052
1053 - title: Armada
1054 scope: armada-drivers
1055
1056 subsections:
1057 - title: A3K
1058 scope: a3k-drivers
1059
1060 subsections:
1061 - title: A3720
1062 scope: a3720-uart
1063
1064 deprecated:
1065 - plat/marvell/a3720/uart
1066
1067 - title: MediaTek
1068 scope: mediatek-drivers
1069
1070 subsections:
1071 - title: APU
1072 scope: mediatek-apu
1073
1074 deprecated:
1075 - plat/mediatek/apu
1076
1077 - title: EMI MPU
1078 scope: mediatek-emi-mpu
1079
1080 deprecated:
1081 - plat/mediatek/mpu
1082
1083 - title: PMIC Wrapper
1084 scope: mediatek-pmic-wrapper
1085
1086 deprecated:
1087 - plat/mediatek/pmic_wrap
1088
1089 - title: MT8192
1090 scope: mt8192-drivers
1091
1092 subsections:
1093 - title: SPM
1094 scope: mt8192-spm
1095
1096 deprecated:
1097 - mediatek/mt8192/spm
1098
1099 - title: NXP
1100 scope: nxp-drivers
1101
1102 subsections:
1103 - title: DCFG
1104 scope: nxp-dcfg
1105
1106 deprecated:
1107 - driver/nxp/dcfg
1108
1109 - title: FLEXSPI
1110 scope: flexspi
1111
1112 deprecated:
1113 - include/drivers/flexspi
1114 - driver/nxp/xspi
1115
1116 - title: SCFG
1117 scope: nxp-scfg
1118
1119 deprecated:
1120 - nxp/scfg
1121
1122 - title: SFP
1123 scope: nxp-sfp
1124
1125 deprecated:
1126 - drivers/nxp/sfp
1127
Jiafei Pan18ba9e42022-02-10 10:39:56 +08001128 - title: QSPI
1129 scope: nxp-qspi
1130
Jiafei Pan94450412022-02-18 12:02:04 +08001131 - title: NXP Crypto
1132 scope: nxp-crypto
1133
Jiafei Panfa3f7612022-02-22 11:05:00 +08001134 - title: DDR
1135 scope: nxp-ddr
1136
1137 - title: GIC
1138 scope: nxp-gic
1139
Jayanth Dodderi Chidanandb16bc302022-05-19 11:03:07 +01001140 - title: CSU
1141 scope: nxp-csu
1142
1143 - title: IFC NAND
1144 scope: nxp-ifc-nand
1145
1146 - title: IFC NOR
1147 scope: nxp-ifc-nor
1148
1149 - title: TZC-380
1150 scope: nxp-tzc380
1151
Jacky Bai9dc47d52023-06-14 15:24:00 +08001152 - title: TRDC
1153 scope: imx-trdc
1154
Ghennadi Procopciucfc26eb02024-06-11 18:39:58 +03001155 - title: Clock
1156 scope: nxp-clk
1157
Chris Kay82117d72021-12-01 16:34:55 +00001158 - title: Renesas
1159 scope: renesas-drivers
1160
1161 subsections:
1162 - title: R-Car3
1163 scope: rcar3-drivers
1164
1165 deprecated:
1166 - drivers/rcar3
1167
1168 - title: ST
1169 scope: st-drivers
1170
1171 deprecated:
1172 - drivers/st
1173
1174 subsections:
Yann Gautier9f359fd2022-01-27 09:25:47 +01001175 - title: BSEC
1176 scope: st-bsec
1177
Chris Kay82117d72021-12-01 16:34:55 +00001178 - title: Clock
1179 scope: st-clock
1180
1181 deprecated:
1182 - stm32mp_clk
1183 - drivers/st/clk
1184 - stm32mp1_clk
1185
Yann Gautier9f359fd2022-01-27 09:25:47 +01001186 - title: Crypto
1187 scope: st-crypto
1188
1189 - title: DDR
1190 scope: st-ddr
1191
Chris Kay82117d72021-12-01 16:34:55 +00001192 - title: I/O
1193 scope: st-io-drivers
1194
1195 subsections:
1196 - title: STM32 Image
1197 scope: st-io-stm32image
1198
1199 deprecated:
1200 - io-stm32image
1201 - io_stm32image
1202
Yann Gautier9f359fd2022-01-27 09:25:47 +01001203 - title: I2C
1204 scope: st-i2c
1205
1206 - title: FMC
1207 scope: st-fmc
1208
1209 - title: GPIO
1210 scope: st-gpio
1211
Chris Kay82117d72021-12-01 16:34:55 +00001212 - title: SDMMC2
1213 scope: st-sdmmc2
1214
1215 deprecated:
1216 - stm32_sdmmc2
1217
1218 - title: ST PMIC
1219 scope: st-pmic
1220
1221 deprecated:
1222 - drivers/st/pmic
1223
1224 - title: STPMIC1
1225 scope: stpmic1
1226
Yann Gautier9f359fd2022-01-27 09:25:47 +01001227 - title: Regulator
1228 scope: st-regulator
1229
1230 - title: Reset
1231 scope: st-reset
1232
1233 - title: SPI
1234 scope: st-spi
1235
Chris Kay82117d72021-12-01 16:34:55 +00001236 - title: UART
1237 scope: st-uart
1238
1239 subsections:
1240 - title: STM32 Console
1241 scope: stm32-console
1242
1243 deprecated:
1244 - stm32_console
1245
1246 - title: USB
1247 scope: st-usb
1248
1249 deprecated:
1250 - drivers/st/usb
1251
Yann Gautier9f359fd2022-01-27 09:25:47 +01001252 - title: Watchdog
1253 scope: st-iwdg
1254
Chris Kay82117d72021-12-01 16:34:55 +00001255 - title: USB
1256 scope: usb
1257
1258 deprecated:
1259 - drivers/usb
1260
1261 - title: Miscellaneous
1262
1263 subsections:
1264 - title: AArch64
1265 scope: aarch64
1266
1267 - title: Debug
1268 scope: debug
1269
1270 deprecated:
1271 - common/debug
1272
1273 - title: CRC32
1274 scope: crc32
1275
1276 subsections:
1277 - title: Hardware CRC32
1278 scope: hw-crc32
1279
1280 deprecated:
1281 - hw_crc
1282 - hw_crc32
1283
1284 - title: Software CRC32
1285 scope: sw-crc32
1286
1287 deprecated:
1288 - sw_crc32
1289
1290 - title: DT Bindings
1291 scope: dt-bindings
1292
1293 - title: FDT Wrappers
1294 scope: fdt-wrappers
1295
1296 - title: FDTs
1297 scope: fdts
1298
1299 deprecated:
1300 - fdt
1301
1302 subsections:
1303 - title: Morello
1304 scope: morello-fdts
1305
1306 deprecated:
1307 - fdts/morello
1308
1309 - title: STM32MP1
1310 scope: stm32mp1-fdts
1311
1312 deprecated:
1313 - fdts stm32mp1
1314
Yann Gautier2c962252022-07-08 15:55:14 +02001315 subsections:
1316 - title: STM32MP13
1317 scope: stm32mp13-fdts
1318
1319 - title: STM32MP15
1320 scope: stm32mp15-fdts
1321
Yann Gautier1123f662022-12-16 15:32:25 +01001322 - title: STM32MP2
1323 scope: stm32mp2-fdts
1324
Chris Kay82117d72021-12-01 16:34:55 +00001325 - title: PIE
1326 scope: pie
1327
Juan Pablo Conde52487492023-05-15 22:17:17 -05001328 - title: PIE/POR
1329 scope: pie/por
1330
Chris Kay82117d72021-12-01 16:34:55 +00001331 - title: Security
1332 scope: security
1333
1334 - title: SDEI
1335 scope: sdei
1336
1337 - title: TBBR
1338 scope: tbbr
1339
1340 - title: NXP
1341
1342 subsections:
1343 - title: OCRAM
1344 scope: nxp-ocram
1345
1346 deprecated:
1347 - nxp/common/ocram
1348
1349 - title: PSCI
1350 scope: nxp-psci
1351
1352 deprecated:
1353 - plat/nxp/common/psci
1354
Chris Kayd04a4762023-04-13 17:24:20 +01001355 - title: UUID
1356 scope: uuid
1357
Chris Kay82117d72021-12-01 16:34:55 +00001358 - title: Documentation
1359 scope: docs
1360
1361 deprecated:
1362 - doc
1363
1364 subsections:
1365 - title: Changelog
1366 scope: changelog
1367
1368 - title: Commit Style
1369 scope: commit-style
1370
1371 - title: Contribution Guidelines
1372 scope: contributing
1373
1374 deprecated:
1375 - contribution-guidelines
1376 - docs-contributing.rst
1377
1378 - title: Maintainers
1379 scope: maintainers
1380
1381 - title: Prerequisites
1382 scope: prerequisites
1383
Sandrine Bailleux3c8fdf72022-05-10 14:53:44 +02001384 - title: Threat Model
1385 scope: threat-model
1386
Sandrine Bailleuxe67bb122023-02-08 13:58:25 +01001387 - title: Porting Guide
1388 scope: porting
1389
Chris Kay82117d72021-12-01 16:34:55 +00001390 - title: Build System
1391 scope: build
1392
1393 deprecated:
1394 - makefile
1395 - Makefile
1396
1397 subsections:
1398 - title: Git Hooks
1399 scope: hooks
1400
Juan Pablo Conde52487492023-05-15 22:17:17 -05001401 deprecated:
1402 - git-hooks
1403
Chris Kay82117d72021-12-01 16:34:55 +00001404 - title: Tools
1405
1406 subsections:
1407 - title: STM32 Image
1408 scope: stm32image
1409
1410 deprecated:
1411 - tools/stm32image
1412
Jiafei Pan18ba9e42022-02-10 10:39:56 +08001413 - title: NXP Tools
1414 scope: nxp-tools
1415
Jayanth Dodderi Chidanandb16bc302022-05-19 11:03:07 +01001416 - title: Firmware Image Package Tool
1417 scope: fiptool
1418
1419 - title: Secure Partition Tool
1420 scope: sptool
1421
1422 - title: Certificate Creation Tool
1423 scope: cert-create
1424
Chris Kay01995442024-06-14 11:31:03 +00001425 - title: Firmware Encryption Tool
1426 scope: encrypt-fw
1427
Harrison Mutai372b8802023-02-23 11:30:17 +00001428 - title: Memory Mapping Tool
1429 scope: memmap
1430
laurenw-arm7c66fca2022-11-01 14:45:33 -05001431 deprecated:
1432 - cert_create
1433
Henrik Nordstromd95745b2023-12-04 10:31:07 +01001434 - title: Marvell Tools
1435 scope: marvell-tools
1436
Chris Kayb278eb72024-06-04 11:31:06 +00001437 - title: Renesas Tools
1438 scope: renesas-tools
1439
1440 subsections:
1441 - title: R-Car Layout Tool
1442 scope: rcar-layout
Chris Kay51a20b72024-06-04 11:31:06 +00001443
1444 - title: R/ZG Layout Tool
1445 scope: rzg-layout
1446
Harrison Mutai19dc4f92024-05-10 16:54:29 +00001447 - title: Transfer List Compiler
1448 scope: tlc
1449
Chris Kay82117d72021-12-01 16:34:55 +00001450 - title: Dependencies
1451 scope: deps
1452
1453 subsections:
1454 - title: checkpatch
1455 scope: checkpatch
1456
1457 - title: commitlint
1458 scope: commitlint
1459
Daniel Boulbyc550e702022-10-05 11:03:44 +01001460 - title: Compiler runtime libraries
1461 scope: compiler-rt
1462
Chris Kay82117d72021-12-01 16:34:55 +00001463 - title: libfdt
1464 scope: libfdt
1465
1466 - title: Node Package Manager (NPM)
1467 scope: npm
Daniel Boulbyc550e702022-10-05 11:03:44 +01001468
dependabot[bot]dba1b532023-09-06 09:55:17 +00001469 - title: Poetry
1470 scope: poetry
1471
Daniel Boulbyc550e702022-10-05 11:03:44 +01001472 - title: zlib
1473 scope: zlib