blob: 965ffaab821e4ccfe8a84dca937528390e28fb7d [file] [log] [blame]
Chris Kayf64c5582021-12-01 16:34:55 +00001#
Chris Kay7fc4d772024-01-15 18:45:07 +00002# Copyright (c) 2021-2024, Arm Limited. All rights reserved.
Chris Kayf64c5582021-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
Chris Kayf64c5582021-12-01 16:34:55 +000027
28 - title: Continuous Integration
29 description: Changes to our CI configuration files and scripts
30 type: ci
Chris Kayf64c5582021-12-01 16:34:55 +000031
Chris Kay833b4ff2022-09-29 16:42:23 +010032 - title: Documentation
Chris Kayf64c5582021-12-01 16:34:55 +000033 description: Documentation-only changes
34 type: docs
Chris Kayf64c5582021-12-01 16:34:55 +000035
36 - title: Performance Improvements
37 description: A code change that improves performance
38 type: perf
Chris Kayf64c5582021-12-01 16:34:55 +000039
40 - title: Code Refactoring
41 description: A code change that neither fixes a bug nor adds a feature
42 type: refactor
Chris Kayf64c5582021-12-01 16:34:55 +000043
44 - title: Reverted Changes
45 description: Changes that revert a previous change
46 type: revert
Chris Kayf64c5582021-12-01 16:34:55 +000047
48 - title: Style
49 description: Changes that do not affect the meaning of the code (white-space, formatting, missing semi-colons, etc.)
50 type: style
Chris Kayf64c5582021-12-01 16:34:55 +000051
52 - title: Tests
53 description: Adding missing tests or correcting existing tests
54 type: test
Chris Kayf64c5582021-12-01 16:34:55 +000055
56 - title: Miscellaneous
57 description: Any other change
58 type: chore
Chris Kayf64c5582021-12-01 16:34:55 +000059
60#
61# The following block describes the sub-sections of the changelog. These sub-sections may appear in
62# any of the top-level sections, and describe the individual components that a change may relate to.
63#
64# Sub-sections have an optional associated commit message "scope":
65#
66# feat(xyz): add the xyz feature
67# ^^^
68#
69# This file also describes deprecated scopes, which are scopes that were used before we introduced
70# scope enforcement. These will not pass CI checks when used, but they will be used to generate the
71# changelog.
72#
73# Please note that new scopes should be kebab-case: https://en.wiktionary.org/wiki/kebab_case
74#
75
76subsections:
77 - title: Architecture
78
79 subsections:
80 - title: Activity Monitors Extension (FEAT_AMU)
81 scope: amu
82
laurenw-arm21cd0662022-11-01 14:45:33 -050083 - title: Branch Record Buffer Extension (FEAT_BRBE)
84 scope: brbe
85
86 - title: Branch Target Identification Extension
87 scope: bti
88
laurenw-arm55ae7712022-06-01 13:45:39 -050089 - title: Confidential Compute Architecture (CCA)
90 scope: cca
91
laurenw-arm21cd0662022-11-01 14:45:33 -050092 - title: Extended Cache Index (FEAT_CCIDX)
93 scope: ccidx
94
Mark Browna3666402023-04-17 17:51:30 +010095 - title: Extended Translation Control Register (FEAT_TCR2).
96 scope: tcr2
97
Arvind Ram Prakash33e6aaa2024-06-06 11:33:37 -050098 - title: Fine-grained Traps 2 (FEAT_FGT2).
99 scope: fgt2
100
Andre Przywara69c17f52022-11-14 15:38:58 +0000101 - title: CPU feature / ID register handling in general
102 scope: cpufeat
103
Arvind Ram Prakash83271d52024-05-22 15:24:00 -0500104 - title: Debug Extension (FEAT_Debugv8p9)
105 scope: debugv8p9
106
Mark Brown688ab572023-03-14 21:33:04 +0000107 - title: Guarded Control Stack (FEAT_GCS)
108 scope: gcs
109
Chris Kayf64c5582021-12-01 16:34:55 +0000110 - title: Support for the `HCRX_EL2` register (FEAT_HCX)
111 scope: hcx
112
113 - title: Memory Partitioning and Monitoring (MPAM) Extension (FEAT_MPAM)
114 scope: mpam
115
Govindraj Raja1e02ce62024-03-19 14:32:20 -0500116 - title: Memory Tagging Extension2
117 scope: mte2
118
119 deprecated:
120 - mte
laurenw-arm21cd0662022-11-01 14:45:33 -0500121
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 Chidanand03d3c0d2022-11-08 10:31:07 +0000131 - title: Scalable Matrix Extension (FEAT_SME, FEAT_SME2)
Chris Kayf64c5582021-12-01 16:34:55 +0000132 scope: sme
133
laurenw-arm21cd0662022-11-01 14:45:33 -0500134 - title: Statistical profiling Extension (FEAT_SPE)
135 scope: spe
136
Chris Kayf64c5582021-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
Manish V Badarkhe669e2b12024-05-17 11:09:28 +0100152 - title: DynamIQ Shared Unit (DSU)
153 scope: dsu
154
Yann Gautier1bf7a472024-11-13 17:56:43 +0100155 - title: Extension to SCTLR_ELx (FEAT_SCTLR2)
156 scope: sctlr2
157
158 deprecated:
159 - feat_sctlr2
160
161 - title: 128-bit Translation Tables (FEAT_D128)
162 scope: d128
163
164 - title: Translation Hardening Extension (FEAT_THE)
165 scope: the
166
Chris Kayf64c5582021-12-01 16:34:55 +0000167 - title: Platforms
Manish V Badarkhe98735802023-11-21 14:35:13 +0000168 scope: platforms
169
170 deprecated:
171 - plat/common
Manish V Badarkhe669e2b12024-05-17 11:09:28 +0100172 - plat
Chris Kayf64c5582021-12-01 16:34:55 +0000173
174 subsections:
175 - title: Allwinner
176 scope: allwinner
177
178 deprecated:
179 - plat/allwinner
180
181 - title: Arm
182 scope: arm
183
184 deprecated:
185 - plat/arm
186
187 subsections:
Govindraj Rajae614ba32024-11-19 10:19:37 -0600188 - title: Common
189 scope: common
190
Juan Pablo Condeb78ad002023-05-15 22:17:17 -0500191 - title: A5DS
192 scope: a5ds
193
laurenw-arm21cd0662022-11-01 14:45:33 -0500194 - title: CSS
195 scope: css
196
197 deprecated:
198 - plat/arm/css
Juan Pablo Condeb78ad002023-05-15 22:17:17 -0500199 - plat/css
laurenw-arm21cd0662022-11-01 14:45:33 -0500200
Chris Kayf64c5582021-12-01 16:34:55 +0000201 - title: FPGA
202 scope: fpga
203
204 deprecated:
205 - arm_fgpa
Chris Kayf64c5582021-12-01 16:34:55 +0000206 - plat/arm_fpga
Manish V Badarkhe98735802023-11-21 14:35:13 +0000207 - arm/fpga
Chris Kayf64c5582021-12-01 16:34:55 +0000208
209 - title: FVP
210 scope: fvp
211
212 deprecated:
213 - plat/fvp
laurenw-arm21cd0662022-11-01 14:45:33 -0500214 - fvp/tsp_manifest
Chris Kayf64c5582021-12-01 16:34:55 +0000215
216 - title: FVP-R
217 scope: fvp-r
218
219 deprecated:
220 - fvp_r
221
laurenw-arm21cd0662022-11-01 14:45:33 -0500222 - title: FVP Versatile Express
223 scope: fvp_ve
224
Chris Kayf64c5582021-12-01 16:34:55 +0000225 - title: Juno
226 scope: juno
227
228 - title: Morello
229 scope: morello
230
Jayanth Dodderi Chidanand24c5d202022-05-19 11:03:07 +0100231 - title: N1SDP
232 scope: n1sdp
233
Rohit Mathew682da932024-04-15 17:31:04 +0100234 - title: Neoverse-RD
235 scope: neoverse-rd
Chris Kayf64c5582021-12-01 16:34:55 +0000236
237 subsections:
Rohit Mathew18b50702024-04-16 17:31:54 +0100238 - title: SGI-575
239 scope: sgi575
240
Manish V Badarkhe669e2b12024-05-17 11:09:28 +0100241 - title: RD-E1-Edge
242 scope: rde1edge
243
Rohit Mathewd239ede2024-04-22 14:23:59 +0100244 - title: RD-N1-Edge
Juan Pablo Condeb78ad002023-05-15 22:17:17 -0500245 scope: rdn1edge
246
Rohit Mathew86a49492024-04-16 17:35:05 +0100247 - title: RD-V1
248 scope: rdv1
249
Rohit Mathew6fb16da2024-04-16 17:36:19 +0100250 - title: RD-V1-MC
251 scope: rdv1mc
252
Chris Kayf64c5582021-12-01 16:34:55 +0000253 - title: RD-N2
254 scope: rdn2
255
Jerry Wang137ab5c2024-07-08 15:17:42 +0100256 - title: RD-V3
257 scope: rdv3
Rohit Mathew84973bb2024-04-15 17:54:16 +0100258
Chris Kayf64c5582021-12-01 16:34:55 +0000259 deprecated:
260 - board/rdn2
Yann Gautier48a59eb2024-11-13 11:29:50 +0100261 - rdfremont
Chris Kayf64c5582021-12-01 16:34:55 +0000262
Manish V Badarkhe669e2b12024-05-17 11:09:28 +0100263 deprecated:
264 - neoverse
265
Chris Kayf64c5582021-12-01 16:34:55 +0000266 - title: TC
267 scope: tc
268
Juan Pablo Condeb78ad002023-05-15 22:17:17 -0500269 deprecated:
270 - plat/tc
271
Chris Kayf64c5582021-12-01 16:34:55 +0000272 subsections:
273 - title: TC0
274 scope: tc0
275
276 deprecated:
277 - plat/tc0
278
Jayanth Dodderi Chidanand24c5d202022-05-19 11:03:07 +0100279 - title: Corstone-1000
280 scope: corstone-1000
281
Yann Gautier48a59eb2024-11-13 11:29:50 +0100282 deprecated:
283 - corstone1000
284
Peter Hoyesf661c742023-02-20 12:08:43 +0000285 - title: Automotive RD
286 scope: automotive_rd
287
288 subsections:
289 - title: RD-1 AE
290 scope: rd1ae
291
Chia-Wei Wang85f199b2022-11-02 17:50:21 +0800292 - title: Aspeed
293 scope: aspeed
294
295 subsections:
296 - title: AST2700
297 scope: ast2700
298
Jayanth Dodderi Chidanand24c5d202022-05-19 11:03:07 +0100299 - title: Broadcom
300 scope: brcm
301
Manish V Badarkhe98735802023-11-21 14:35:13 +0000302 - title: Cadence
303 scope: cadence
304
laurenw-arm21cd0662022-11-01 14:45:33 -0500305 - title: HiSilicon
306 scope: hisilicon
307
308 subsections:
309 - title: HiKey
310 scope: hikey
311
312 - title: HiKey960
313 scope: hikey960
314
Yann Gautier48a59eb2024-11-13 11:29:50 +0100315 - title: Poplar
316 scope: poplar
317
Sieu Mun Tange5641372022-02-22 14:14:26 +0800318 - title: Intel
319 scope: intel
320
321 subsections:
322 - title: SoC
323 scope: soc
324
Chris Kayf64c5582021-12-01 16:34:55 +0000325 - title: Marvell
326 scope: marvell
327
328 deprecated:
329 - plat/marvell
330
331 subsections:
332 - title: Armada
333 scope: armada
334
335 deprecated:
336 - plat/marvell/armada
337
338 subsections:
339 - title: A3K
340 scope: a3k
341
342 deprecated:
343 - plat/marvell/a3k
344
345 - title: A8K
346 scope: a8k
347
348 deprecated:
349 - plat/marvell/a8k
350
351 - title: MediaTek
352 scope: mediatek
353
354 deprecated:
355 - plat/mediatek/common
356 - plat/mediatek
357
358 subsections:
359 - title: MT8183
360 scope: mt8183
361
362 deprecated:
363 - plat/mediatek/mt8183
364
laurenw-arm21cd0662022-11-01 14:45:33 -0500365 - title: MT8186
366 scope: mt8186
367
368 deprecated:
369 - plat/mediatek/mt8186
370 - mt8186-emi-mpu
371
372 - title: MT8188
373 scope: mt8188
374
Chris Kayf64c5582021-12-01 16:34:55 +0000375 - title: MT8192
376 scope: mt8192
377
378 deprecated:
379 - plat/mdeiatek/mt8192
380
381 - title: MT8195
382 scope: mt8195
383
384 deprecated:
385 - plat/mediatek/me8195
386 - plat/mediatek/mt8195
387 - plat/mdeiatek/mt8195
388
389 - title: NVIDIA
390 scope: nvidia
391
392 subsections:
393 - title: Tegra
394 scope: tegra
395
396 deprecated:
397 - plat/tegra
398
399 subsections:
400 - title: Tegra 132
401 scope: tegra132
402
Jayanth Dodderi Chidanand24c5d202022-05-19 11:03:07 +0100403 - title: Tegra 194
404 scope: tegra194
405
Juan Pablo Condeb78ad002023-05-15 22:17:17 -0500406 - title: Tegra 210
407 scope: tegra210
408
Chris Kayf64c5582021-12-01 16:34:55 +0000409 - title: NXP
410 scope: nxp
411
412 deprecated:
413 - plat/nxp
414 - plat/nxp/common
415
416 subsections:
417 - title: i.MX
418 scope: imx
419
420 deprecated:
421 - plat/imx
422 - plat/imx/imx
423
424 subsections:
425 - title: i.MX 8M
426 scope: imx8m
427
428 deprecated:
429 - plat/imx8m
430 - plat/imx/imx8m
431
432 subsections:
Jayanth Dodderi Chidanand24c5d202022-05-19 11:03:07 +0100433 - title: i.MX 8M Nano
434 scope: imx8mn
435
436 deprecated:
437 - plat/imx/imx8m/imx8mn
438
Chris Kayf64c5582021-12-01 16:34:55 +0000439 - title: i.MX 8M Mini
440 scope: imx8mm
441
442 deprecated:
443 - plat/imx/imx8m/imx8mm
444
445 - title: i.MX 8M Plus
446 scope: imx8mp
447
448 deprecated:
449 - plat/imx/imx8m/imx8mp
450
Jayanth Dodderi Chidanand24c5d202022-05-19 11:03:07 +0100451 - title: i.MX 8Q
452 scope: imx8mq
453
454 deprecated:
455 - plat/imx/imx8m/imx8mq
456
Juan Pablo Condeb78ad002023-05-15 22:17:17 -0500457 - title: i.MX 8
458 scope: imx8
459
Jacky Bai0d6b4cd2023-10-08 17:52:24 +0800460 - title: i.MX 8ULP
461 scope: imx8ulp
462
Jacky Bai9f38eb82023-06-14 15:24:00 +0800463 - title: i.MX 9
464 scope: imx9
465
466 subsections:
467 - title: i.MX93
468 scope: imx93
469
Chris Kayf64c5582021-12-01 16:34:55 +0000470 - title: Layerscape
471 scope: layerscape
472
473 deprecated:
474 - docs/nxp/layerscape
475
476 subsections:
477 - title: LS1028A
478 scope: ls1028a
479
480 deprecated:
481 - plat/nxp/ls1028a
482
483 subsections:
484 - title: LS1028ARDB
485 scope: ls1028ardb
486
487 deprecated:
488 - plat/nxp/ls1028ardb
489
Jayanth Dodderi Chidanand24c5d202022-05-19 11:03:07 +0100490 - title: LS1043A
491 scope: ls1043a
492
493 deprecated:
494 - plat/nxp/ls1043a
495
496 subsections:
497 - title: LS1043ARDB
498 scope: ls1043ardb
499
500 deprecated:
501 - plat/nxp/ls1043ardb
502
Chris Kayf64c5582021-12-01 16:34:55 +0000503 - title: LX2
504 scope: lx2
505
506 deprecated:
507 - plat/nxp/lx2
508
509 subsections:
510 - title: LX216
511 scope: lx216
512
513 deprecated:
514 - plat/nxp/lx216x
515
516 subsections:
517 - title: LX2160
518 scope: lx2160
519
520 deprecated:
521 - plat/soc-lx2160
522
Jiafei Pan1acfb982022-02-10 10:39:56 +0800523 - title: LS1046A
524 scope: ls1046a
525
526 subsections:
527 - title: LS1046ARDB
528 scope: ls1046ardb
529
530 - title: LS1046AFRWY
531 scope: ls1046afrwy
532
533 - title: LS1046AQDS
534 scope: ls1046aqds
535
Jiafei Panccb71e32022-02-24 16:00:35 +0800536 - title: LS1088A
537 scope: ls1088a
538
539 subsections:
540 - title: LS1088ARDB
541 scope: ls1088ardb
542
543 - title: LS1088AQDS
544 scope: ls1088aqds
545
Ghennadi Procopciuc8b81a392024-01-30 16:19:47 +0200546 - title: S32G274A
547 scope: s32g274a
548
549 subsections:
550 - title: S32G274ARDB
551 scope: s32g274ardb
552
Chris Kayf64c5582021-12-01 16:34:55 +0000553 - title: QEMU
554 scope: qemu
555
556 deprecated:
557 - plat/qemu
558
Juan Pablo Condeb78ad002023-05-15 22:17:17 -0500559 subsections:
560 - title: SBSA
561 scope: qemu-sbsa
562
Manish V Badarkhe98735802023-11-21 14:35:13 +0000563 deprecated:
564 - qemu_sbsa
565
Chris Kayf64c5582021-12-01 16:34:55 +0000566 - title: QTI
567 scope: qti
568
laurenw-arm21cd0662022-11-01 14:45:33 -0500569 deprecated:
570 - plat/qti
571
Chris Kayf64c5582021-12-01 16:34:55 +0000572 subsections:
573 - title: SC1780
574 scope: sc7180
575
576 deprecated:
577 - plat/qti/sc7180
578
579 - title: SC7280
580 scope: sc7280
581
582 deprecated:
583 - plat/qti/sc7280
584
Stephan Gerholdfa145392021-12-01 20:00:00 +0100585 - title: MSM8916
586 scope: msm8916
587
Chris Kayf64c5582021-12-01 16:34:55 +0000588 - title: Raspberry Pi
589 scope: rpi
590
591 subsections:
laurenw-arm21cd0662022-11-01 14:45:33 -0500592 - title: Raspberry Pi 3
593 scope: rpi3
594
Chris Kayf64c5582021-12-01 16:34:55 +0000595 - title: Raspberry Pi 4
596 scope: rpi4
597
Mario Bălănicăf834b642023-12-02 03:08:02 +0200598 - title: Raspberry Pi 5
599 scope: rpi5
600
Chris Kayf64c5582021-12-01 16:34:55 +0000601 - title: Renesas
602 scope: renesas
603
604 subsections:
605 - title: R-Car
606 scope: rcar
607
608 deprecated:
609 - plat/rcar
610
611 subsections:
612 - title: R-Car 3
613 scope: rcar3
614
615 deprecated:
616 - plat/rcar3
617
618 - title: Rockchip
619 scope: rockchip
620
621 subsections:
622 - title: RK3399
623 scope: rk3399
624
625 deprecated:
626 - rockchip/rk3399
627 - rk3399/suspend
628
Diederik de Haasdd2c8882023-11-27 10:21:37 +0100629 - title: RK3328
630 scope: rk3328
631
Yann Gautier48a59eb2024-11-13 11:29:50 +0100632 - title: RK3588
633 scope: rk3588
634
Chris Kayf64c5582021-12-01 16:34:55 +0000635 - title: Socionext
636 scope: socionext
637
638 subsections:
639 - title: Synquacer
640 scope: synquacer
641
642 deprecated:
643 - plat/synquacer
644
645 - title: ST
646 scope: st
647
648 deprecated:
649 - plat/st
650
651 subsections:
Yann Gautier96f58612022-06-01 18:17:43 +0200652 - title: STM32MP1
Chris Kayf64c5582021-12-01 16:34:55 +0000653 scope: stm32mp1
654
655 deprecated:
656 - plat/st/stm32mp1
657
Yann Gautier96f58612022-06-01 18:17:43 +0200658 subsections:
659 - title: STM32MP13
660 scope: stm32mp13
661
662 - title: STM32MP15
663 scope: stm32mp15
664
Yann Gautier3f6c16f2022-12-16 15:32:25 +0100665 - title: STM32MP2
666 scope: stm32mp2
667
Yann Gautier10f60d32023-11-23 19:37:21 +0100668 subsections:
669 - title: STM32MP25
670 scope: stm32mp25
671
Dave Gerlach8ba55ec2022-03-22 11:02:52 -0500672 - title: Texas Instruments
673 scope: ti
674
675 subsections:
676 - title: K3
677 scope: k3
678
laurenw-arm21cd0662022-11-01 14:45:33 -0500679 deprecated:
680 - ti-k3
681
Chris Kayf64c5582021-12-01 16:34:55 +0000682 - title: Xilinx
683 scope: xilinx
684
685 deprecated:
686 - plat/xilinx
687
688 subsections:
Michal Simeke311b9b2023-09-18 10:22:48 +0200689 - title: DCC (Debug Communication Channel)
690 scope: dcc
691
Chris Kayf64c5582021-12-01 16:34:55 +0000692 - title: Versal
693 scope: versal
694
695 deprecated:
696 - plat/xilinx/versal/include
697 - plat/xilinx/versal
698 - plat/versal
699
Manish V Badarkhe669e2b12024-05-17 11:09:28 +0100700 - title: Versal NET
701 scope: versal-net
laurenw-arm21cd0662022-11-01 14:45:33 -0500702
Manish V Badarkhe669e2b12024-05-17 11:09:28 +0100703 deprecated:
704 - versal_net
laurenw-arm21cd0662022-11-01 14:45:33 -0500705
Chris Kayf64c5582021-12-01 16:34:55 +0000706 - title: ZynqMP
707 scope: zynqmp
708
709 deprecated:
710 - plat/zynqmp
711 - plat/xilinx/zynqmp
712
Amit Nagalc97857d2024-06-05 12:32:38 +0530713 - title: AMD
714 scope: amd
715
716 subsections:
717 - title: Versal Gen 2
718 scope: versal2
719
rutigl@gmail.comedcece12023-03-19 09:19:05 +0200720 - title: Nuvoton
721 scope: nuvoton
722
723 subsections:
724 - title: npcm845x
725 scope: npcm845x
726
Chris Kayf64c5582021-12-01 16:34:55 +0000727 - title: Bootloader Images
728 scope: bl
729
730 deprecated:
731 - bl_common
732
733 subsections:
734 - title: BL1
735 scope: bl1
736
737 - title: BL2
738 scope: bl2
739
Jayanth Dodderi Chidanand24c5d202022-05-19 11:03:07 +0100740 - title: BL31
741 scope: bl31
742
Shruti Gupta5b7bd2a2022-08-09 10:46:07 +0100743 - title: BL32
744 scope: bl32
745
746 subsections:
747 - title: TSP
748 scope: tsp
749
Chris Kayf64c5582021-12-01 16:34:55 +0000750 - title: Services
751 scope: services
752
Yann Gautier48a59eb2024-11-13 11:29:50 +0100753 deprecated:
754 - std_svc
755
Chris Kayf64c5582021-12-01 16:34:55 +0000756 subsections:
757 - title: FF-A
Daniel Boulby93a8ce02021-12-06 14:44:35 +0000758 scope: ff-a
Chris Kayf64c5582021-12-01 16:34:55 +0000759
760 deprecated:
Daniel Boulby93a8ce02021-12-06 14:44:35 +0000761 - ffa
Chris Kayf64c5582021-12-01 16:34:55 +0000762
763 - title: RME
764 scope: rme
765
laurenw-arm21cd0662022-11-01 14:45:33 -0500766 deprecated:
767 - rme/fid
768
Jayanth Dodderi Chidanand24c5d202022-05-19 11:03:07 +0100769 subsections:
770 - title: TRP
771 scope: trp
772
Javier Almansa Sobrino8c980a42021-11-24 18:37:37 +0000773 - title: RMMD
774 scope: rmmd
775
Juan Pablo Condeb78ad002023-05-15 22:17:17 -0500776 - title: RMM
777 scope: rmm
778
Chris Kayf64c5582021-12-01 16:34:55 +0000779 - title: SPM
780 scope: spm
781
Jayanth Dodderi Chidanand24c5d202022-05-19 11:03:07 +0100782 subsections:
Manish V Badarkhe98735802023-11-21 14:35:13 +0000783 - title: EL3 SPM
784 scope: el3-spm
785
Jayanth Dodderi Chidanand24c5d202022-05-19 11:03:07 +0100786 - title: EL3 SPMC
787 scope: el3-spmc
Daniel Boulby93a8ce02021-12-06 14:44:35 +0000788
laurenw-arm21cd0662022-11-01 14:45:33 -0500789 deprecated:
790 - spmc
791
Jayanth Dodderi Chidanand24c5d202022-05-19 11:03:07 +0100792 - title: SPMD
793 scope: spmd
794
795 - title: SPM MM
796 scope: spm-mm
Chris Kayf64c5582021-12-01 16:34:55 +0000797
Manish V Badarkhe7b224f12022-06-27 09:21:14 +0100798 - title: DRTM
799 scope: drtm
800
Jayanth Dodderi Chidanand0b22e592022-10-11 17:16:07 +0100801 - title: TRNG
802 scope: trng
803
Sona Mathew5c8fcc02023-09-20 12:55:32 -0500804 - title: ERRATA ABI
805 scope: errata-abi
806
807 deprecated:
808 - errata_abi
Sona Mathewffea3842022-11-18 18:05:38 -0600809
Manish V Badarkhe669e2b12024-05-17 11:09:28 +0100810 - title: ChromeOS
811 scope: cros
812
Yann Gautier02c580c2024-11-13 13:46:15 +0100813 - title: Secure Payload Dispatcher
814 scope: spd
815
816 subsections:
817 - title: OP-TEE
818 scope: optee
819
820 deprecated:
821 - lib/optee
822
823 - title: ProvenCore
824 scope: pncd
825
826 - title: Trusted Little Kernel
827 scope: tlkd
828
829 - title: Trusty
830 scope: trusty
831
832 - title: TSP
833 scope: tspd
834
Chris Kayf64c5582021-12-01 16:34:55 +0000835 - title: Libraries
Manish V Badarkhe98735802023-11-21 14:35:13 +0000836 scope: lib
Chris Kayf64c5582021-12-01 16:34:55 +0000837
838 subsections:
839 - title: CPU Support
840 scope: cpus
841
842 deprecated:
843 - cpu
844 - errata
845 - errata_report
846
847 - title: EL3 Runtime
848 scope: el3-runtime
849
850 deprecated:
851 - el3_runtime
852
Jayanth Dodderi Chidanand24c5d202022-05-19 11:03:07 +0100853 subsections:
854 - title: Context Management
855 scope: cm
856
laurenw-arm21cd0662022-11-01 14:45:33 -0500857 - title: RAS
858 scope: ras
859
Madhukar Pappireddy841533d2024-06-17 15:12:26 -0500860 - title: SIMD
861 scope: simd
862
Chris Kayf64c5582021-12-01 16:34:55 +0000863 - title: FCONF
864 scope: fconf
865
866 - title: MPMM
867 scope: mpmm
868
Chris Kayf64c5582021-12-01 16:34:55 +0000869 - title: PSCI
870 scope: psci
871
Chris Kay7fc4d772024-01-15 18:45:07 +0000872 - title: ROMlib
873 scope: romlib
874
Chris Kayf64c5582021-12-01 16:34:55 +0000875 - title: GPT
876 scope: gpt
877
878 deprecated:
879 - gpt_rme
880
881 - title: SMCCC
882 scope: smccc
883
884 - title: Translation Tables
885 scope: xlat
886
Jayanth Dodderi Chidanand24c5d202022-05-19 11:03:07 +0100887 - title: C Standard Library
888 scope: libc
889
890 - title: Locks
891 scope: locks
892
893 - title: PSA
894 scope: psa
895
laurenw-arm21cd0662022-11-01 14:45:33 -0500896 deprecated:
897 - lib/psa
898
Tamas Bancb249052024-02-06 11:24:51 +0100899 - title: DICE Protection Environment
900 scope: dice
901
Zelalem Aweked20052f2022-04-04 17:42:48 -0500902 - title: Context Management
Chris Kay24687b72022-10-10 16:57:45 +0100903 scope: context-mgmt
904
905 deprecated:
906 - context mgmt
Zelalem Aweked20052f2022-04-04 17:42:48 -0500907
Manish V Badarkhe7c494382022-09-26 15:06:56 +0100908 - title: Semihosting
909 scope: semihosting
910
Raymond Mao3ba2c152023-07-25 07:53:35 -0700911 - title: Firmware Handoff
912 scope: handoff
913
Manish V Badarkhe669e2b12024-05-17 11:09:28 +0100914 - title: Exception Handling Framework (EHF)
915 scope: ehf
916
Chris Kayf64c5582021-12-01 16:34:55 +0000917 - title: Drivers
918
919 subsections:
920 - title: Authentication
921 scope: auth
922
923 deprecated:
924 - driver/auth
925
926 subsections:
927 - title: CryptoCell-713
928 scope: cc-713
929
Manish V Badarkhe9e0d2ba2022-09-22 21:41:55 +0100930 - title: Crypto
931 scope: crypto
932
933 - title: mbedTLS
934 scope: mbedtls
935
Manish V Badarkhe902e94c2023-09-22 17:54:59 +0100936 - title: mbedTLS-PSA
937 scope: mbedtls-psa
938
Yann Gautier3c788292023-01-06 17:05:48 +0100939 - title: Console
940 scope: console
941
Abhi.Singha6485b22024-08-21 12:55:38 -0500942 - title: Delay Timer
943 scope: delay-timer
944
Jayanth Dodderi Chidanand24c5d202022-05-19 11:03:07 +0100945 - title: Generic Clock
946 scope: clk
947
Chris Kayf64c5582021-12-01 16:34:55 +0000948 - title: FWU
949 scope: fwu
950
951 deprecated:
952 - fwu_metadata
953
954 - title: I/O
955 scope: io
956
957 subsections:
958 - title: MTD
959 scope: mtd
960
961 deprecated:
962 - io_mtd
963
964 - title: Measured Boot
965 scope: measured-boot
966
967 deprecated:
968 - measured boot
969 - measured_boot
970
971 - title: MMC
972 scope: mmc
973
974 deprecated:
975 - drivers/mmc
976
977 - title: MTD
978 scope: mtd
979
980 deprecated:
981 - drivers/mtd
982
983 subsections:
984 - title: NAND
985 scope: nand
986
987 subsections:
988 - title: SPI NAND
989 scope: spi-nand
990
991 deprecated:
992 - spi_nand
993
Jayanth Dodderi Chidanand24c5d202022-05-19 11:03:07 +0100994 - title: GUID Partition Tables Support
995 scope: guid-partition
Sughosh Ganue1157ec2022-01-19 11:31:20 +0530996
Juan Pablo Condeb78ad002023-05-15 22:17:17 -0500997 deprecated:
998 - partition
999
Chris Kayf64c5582021-12-01 16:34:55 +00001000 - title: SCMI
1001 scope: scmi
1002
1003 deprecated:
1004 - scmi_common
1005 - drivers/scmi-msg
laurenw-arm21cd0662022-11-01 14:45:33 -05001006 - scmi-msg
Chris Kayf64c5582021-12-01 16:34:55 +00001007
1008 - title: UFS
1009 scope: ufs
1010
1011 - title: Arm
1012 scope: arm-drivers
1013
1014 subsections:
1015 - title: Ethos-N
1016 scope: ethos-n
1017
1018 deprecated:
1019 - drivers/arm/ethosn
1020
1021 - title: GIC
1022 scope: gic
1023
1024 subsections:
1025 - title: GICv3
1026 scope: gicv3
1027
laurenw-arm21cd0662022-11-01 14:45:33 -05001028 deprecated:
1029 - gicv3/multichip
1030
Chris Kayf64c5582021-12-01 16:34:55 +00001031 subsections:
laurenw-arm21cd0662022-11-01 14:45:33 -05001032 - title: GIC-600
1033 scope: gic600
1034
Chris Kayf64c5582021-12-01 16:34:55 +00001035 - title: GIC-600AE
1036 scope: gic600ae
1037
Madhukar Pappireddyab80cf32023-08-03 12:13:27 -05001038 - title: GICv2
1039 scope: gicv2
1040
Manish V Badarkhe0de3eda2022-03-24 18:23:37 +00001041 - title: SMMU
1042 scope: smmu
1043
Jayanth Dodderi Chidanand24c5d202022-05-19 11:03:07 +01001044 - title: MHU
1045 scope: mhu
1046
1047 deprecated:
1048 - drivers/arm/mhu
1049
Tamas Banccc71732024-04-22 15:41:45 +02001050 - title: RSE
1051 scope: rse
Jayanth Dodderi Chidanand24c5d202022-05-19 11:03:07 +01001052
1053 deprecated:
1054 - drivers/arm/rss
Tamas Banccc71732024-04-22 15:41:45 +02001055 - rss
Jayanth Dodderi Chidanand24c5d202022-05-19 11:03:07 +01001056
Chris Kayf64c5582021-12-01 16:34:55 +00001057 - title: TZC
1058 scope: tzc
1059
1060 subsections:
1061 - title: TZC-400
1062 scope: tzc400
1063
1064 deprecated:
1065 - drivers/tzc400
1066
Jayanth Dodderi Chidanand24c5d202022-05-19 11:03:07 +01001067 - title: TZC-380
1068 scope: tzc380
1069
1070 deprecated:
1071 - drivers/tzc380
1072
Madhukar Pappireddye8166d32023-03-22 15:27:22 -05001073 - title: SBSA
1074 scope: sbsa
1075
Chris Kayf64c5582021-12-01 16:34:55 +00001076 - title: Marvell
1077 scope: marvell-drivers
1078
1079 subsections:
1080 - title: COMPHY
1081 scope: marvell-comphy
1082
1083 deprecated:
1084 - drivers/marvell/comphy
1085
1086 subsections:
1087 - title: Armada 3700
1088 scope: marvell-comphy-3700
1089
1090 deprecated:
1091 - drivers/marvell/comphy-3700
1092
1093 - title: CP110
1094 scope: marvell-comphy-cp110
1095
1096 deprecated:
1097 - drivers/marvell/comphy-cp110
1098
1099 - title: UART
1100 scope: marvell-uart
1101
1102 deprecated:
1103 - plat/marvell/uart
1104
1105 - title: Armada
1106 scope: armada-drivers
1107
1108 subsections:
1109 - title: A3K
1110 scope: a3k-drivers
1111
1112 subsections:
1113 - title: A3720
1114 scope: a3720-uart
1115
1116 deprecated:
1117 - plat/marvell/a3720/uart
1118
1119 - title: MediaTek
1120 scope: mediatek-drivers
1121
1122 subsections:
1123 - title: APU
1124 scope: mediatek-apu
1125
1126 deprecated:
1127 - plat/mediatek/apu
1128
1129 - title: EMI MPU
1130 scope: mediatek-emi-mpu
1131
1132 deprecated:
1133 - plat/mediatek/mpu
1134
1135 - title: PMIC Wrapper
1136 scope: mediatek-pmic-wrapper
1137
1138 deprecated:
1139 - plat/mediatek/pmic_wrap
1140
1141 - title: MT8192
1142 scope: mt8192-drivers
1143
1144 subsections:
1145 - title: SPM
1146 scope: mt8192-spm
1147
1148 deprecated:
1149 - mediatek/mt8192/spm
1150
1151 - title: NXP
1152 scope: nxp-drivers
1153
1154 subsections:
1155 - title: DCFG
1156 scope: nxp-dcfg
1157
1158 deprecated:
1159 - driver/nxp/dcfg
1160
1161 - title: FLEXSPI
1162 scope: flexspi
1163
1164 deprecated:
1165 - include/drivers/flexspi
1166 - driver/nxp/xspi
1167
1168 - title: SCFG
1169 scope: nxp-scfg
1170
1171 deprecated:
1172 - nxp/scfg
1173
1174 - title: SFP
1175 scope: nxp-sfp
1176
1177 deprecated:
1178 - drivers/nxp/sfp
1179
Jiafei Pan1acfb982022-02-10 10:39:56 +08001180 - title: QSPI
1181 scope: nxp-qspi
1182
Jiafei Pan9dcbeb92022-02-18 12:02:04 +08001183 - title: NXP Crypto
1184 scope: nxp-crypto
1185
Jiafei Pan5ba30c62022-02-22 11:05:00 +08001186 - title: DDR
1187 scope: nxp-ddr
1188
1189 - title: GIC
1190 scope: nxp-gic
1191
Jayanth Dodderi Chidanand24c5d202022-05-19 11:03:07 +01001192 - title: CSU
1193 scope: nxp-csu
1194
1195 - title: IFC NAND
1196 scope: nxp-ifc-nand
1197
1198 - title: IFC NOR
1199 scope: nxp-ifc-nor
1200
1201 - title: TZC-380
1202 scope: nxp-tzc380
1203
Jacky Bai9f38eb82023-06-14 15:24:00 +08001204 - title: TRDC
1205 scope: imx-trdc
1206
Ghennadi Procopciuc3a580e92024-06-11 18:39:58 +03001207 - title: Clock
1208 scope: nxp-clk
1209
Chris Kayf64c5582021-12-01 16:34:55 +00001210 - title: Renesas
1211 scope: renesas-drivers
1212
1213 subsections:
1214 - title: R-Car3
1215 scope: rcar3-drivers
1216
1217 deprecated:
1218 - drivers/rcar3
1219
1220 - title: ST
1221 scope: st-drivers
1222
1223 deprecated:
1224 - drivers/st
1225
1226 subsections:
Yann Gautier27254d92022-01-27 09:25:47 +01001227 - title: BSEC
1228 scope: st-bsec
1229
Chris Kayf64c5582021-12-01 16:34:55 +00001230 - title: Clock
1231 scope: st-clock
1232
1233 deprecated:
1234 - stm32mp_clk
1235 - drivers/st/clk
1236 - stm32mp1_clk
1237
Yann Gautier27254d92022-01-27 09:25:47 +01001238 - title: Crypto
1239 scope: st-crypto
1240
1241 - title: DDR
1242 scope: st-ddr
1243
Chris Kayf64c5582021-12-01 16:34:55 +00001244 - title: I/O
1245 scope: st-io-drivers
1246
1247 subsections:
1248 - title: STM32 Image
1249 scope: st-io-stm32image
1250
1251 deprecated:
1252 - io-stm32image
1253 - io_stm32image
1254
Yann Gautier27254d92022-01-27 09:25:47 +01001255 - title: I2C
1256 scope: st-i2c
1257
1258 - title: FMC
1259 scope: st-fmc
1260
1261 - title: GPIO
1262 scope: st-gpio
1263
Chris Kayf64c5582021-12-01 16:34:55 +00001264 - title: SDMMC2
1265 scope: st-sdmmc2
1266
1267 deprecated:
1268 - stm32_sdmmc2
1269
1270 - title: ST PMIC
1271 scope: st-pmic
1272
1273 deprecated:
1274 - drivers/st/pmic
1275
1276 - title: STPMIC1
1277 scope: stpmic1
1278
Yann Gautier27254d92022-01-27 09:25:47 +01001279 - title: Regulator
1280 scope: st-regulator
1281
1282 - title: Reset
1283 scope: st-reset
1284
1285 - title: SPI
1286 scope: st-spi
1287
Chris Kayf64c5582021-12-01 16:34:55 +00001288 - title: UART
1289 scope: st-uart
1290
1291 subsections:
1292 - title: STM32 Console
1293 scope: stm32-console
1294
1295 deprecated:
1296 - stm32_console
1297
1298 - title: USB
1299 scope: st-usb
1300
1301 deprecated:
1302 - drivers/st/usb
1303
Yann Gautier27254d92022-01-27 09:25:47 +01001304 - title: Watchdog
1305 scope: st-iwdg
1306
Chris Kayf64c5582021-12-01 16:34:55 +00001307 - title: USB
1308 scope: usb
1309
1310 deprecated:
1311 - drivers/usb
1312
1313 - title: Miscellaneous
1314
1315 subsections:
1316 - title: AArch64
1317 scope: aarch64
1318
1319 - title: Debug
1320 scope: debug
1321
1322 deprecated:
1323 - common/debug
1324
1325 - title: CRC32
1326 scope: crc32
1327
1328 subsections:
1329 - title: Hardware CRC32
1330 scope: hw-crc32
1331
1332 deprecated:
1333 - hw_crc
1334 - hw_crc32
1335
1336 - title: Software CRC32
1337 scope: sw-crc32
1338
1339 deprecated:
1340 - sw_crc32
1341
1342 - title: DT Bindings
1343 scope: dt-bindings
1344
1345 - title: FDT Wrappers
1346 scope: fdt-wrappers
1347
1348 - title: FDTs
1349 scope: fdts
1350
1351 deprecated:
1352 - fdt
1353
1354 subsections:
1355 - title: Morello
1356 scope: morello-fdts
1357
1358 deprecated:
1359 - fdts/morello
1360
1361 - title: STM32MP1
1362 scope: stm32mp1-fdts
1363
1364 deprecated:
1365 - fdts stm32mp1
1366
Yann Gautier3e35da92022-07-08 15:55:14 +02001367 subsections:
1368 - title: STM32MP13
1369 scope: stm32mp13-fdts
1370
1371 - title: STM32MP15
1372 scope: stm32mp15-fdts
1373
Yann Gautier3f6c16f2022-12-16 15:32:25 +01001374 - title: STM32MP2
1375 scope: stm32mp2-fdts
1376
Yann Gautier10f60d32023-11-23 19:37:21 +01001377 subsections:
1378 - title: STM32MP25
1379 scope: stm32mp25-fdts
1380
Chris Kayf64c5582021-12-01 16:34:55 +00001381 - title: PIE
1382 scope: pie
1383
Juan Pablo Condeb78ad002023-05-15 22:17:17 -05001384 - title: PIE/POR
1385 scope: pie/por
1386
Chris Kayf64c5582021-12-01 16:34:55 +00001387 - title: Security
1388 scope: security
1389
1390 - title: SDEI
1391 scope: sdei
1392
1393 - title: TBBR
1394 scope: tbbr
1395
1396 - title: NXP
1397
1398 subsections:
1399 - title: OCRAM
1400 scope: nxp-ocram
1401
1402 deprecated:
1403 - nxp/common/ocram
1404
1405 - title: PSCI
1406 scope: nxp-psci
1407
1408 deprecated:
1409 - plat/nxp/common/psci
1410
Chris Kay12562af2023-04-13 17:24:20 +01001411 - title: UUID
1412 scope: uuid
1413
Chris Kayf64c5582021-12-01 16:34:55 +00001414 - title: Documentation
1415 scope: docs
1416
1417 deprecated:
1418 - doc
1419
1420 subsections:
1421 - title: Changelog
1422 scope: changelog
1423
1424 - title: Commit Style
1425 scope: commit-style
1426
1427 - title: Contribution Guidelines
1428 scope: contributing
1429
1430 deprecated:
1431 - contribution-guidelines
1432 - docs-contributing.rst
1433
1434 - title: Maintainers
1435 scope: maintainers
1436
1437 - title: Prerequisites
1438 scope: prerequisites
1439
Sandrine Bailleux50075fd2022-05-10 14:53:44 +02001440 - title: Threat Model
1441 scope: threat-model
1442
Sandrine Bailleuxd3171612023-02-08 13:58:25 +01001443 - title: Porting Guide
1444 scope: porting
1445
Chris Kayf64c5582021-12-01 16:34:55 +00001446 - title: Build System
1447 scope: build
1448
1449 deprecated:
1450 - makefile
1451 - Makefile
1452
1453 subsections:
1454 - title: Git Hooks
1455 scope: hooks
1456
Juan Pablo Condeb78ad002023-05-15 22:17:17 -05001457 deprecated:
1458 - git-hooks
1459
Chris Kayf64c5582021-12-01 16:34:55 +00001460 - title: Tools
Manish V Badarkheccbfd012024-07-19 08:31:51 +01001461 scope: tools
Chris Kayf64c5582021-12-01 16:34:55 +00001462
1463 subsections:
1464 - title: STM32 Image
1465 scope: stm32image
1466
1467 deprecated:
1468 - tools/stm32image
1469
Jiafei Pan1acfb982022-02-10 10:39:56 +08001470 - title: NXP Tools
1471 scope: nxp-tools
1472
Jayanth Dodderi Chidanand24c5d202022-05-19 11:03:07 +01001473 - title: Firmware Image Package Tool
1474 scope: fiptool
1475
1476 - title: Secure Partition Tool
1477 scope: sptool
1478
1479 - title: Certificate Creation Tool
1480 scope: cert-create
1481
Chris Kay415049a2024-06-14 11:31:03 +00001482 - title: Firmware Encryption Tool
1483 scope: encrypt-fw
1484
Harrison Mutaid9d5eb12023-02-23 11:30:17 +00001485 - title: Memory Mapping Tool
1486 scope: memmap
1487
laurenw-arm21cd0662022-11-01 14:45:33 -05001488 deprecated:
1489 - cert_create
1490
Henrik Nordstrom8eb4efe2023-12-04 10:31:07 +01001491 - title: Marvell Tools
1492 scope: marvell-tools
1493
Chris Kayea2c6522024-06-04 11:31:06 +00001494 - title: Renesas Tools
1495 scope: renesas-tools
1496
1497 subsections:
1498 - title: R-Car Layout Tool
1499 scope: rcar-layout
Chris Kay3ed72442024-06-04 11:31:06 +00001500
1501 - title: R/ZG Layout Tool
1502 scope: rzg-layout
1503
Harrison Mutai6ac31f32024-05-10 16:54:29 +00001504 - title: Transfer List Compiler
1505 scope: tlc
1506
Manish V Badarkhee19977d2024-08-27 10:48:38 +01001507 - title: Chain of Trust device tree to C source file
1508 scope: cot-dt2c
1509
Chris Kayf64c5582021-12-01 16:34:55 +00001510 - title: Dependencies
1511 scope: deps
1512
1513 subsections:
1514 - title: checkpatch
1515 scope: checkpatch
1516
1517 - title: commitlint
1518 scope: commitlint
1519
Daniel Boulby98a43d92022-10-05 11:03:44 +01001520 - title: Compiler runtime libraries
1521 scope: compiler-rt
1522
Chris Kayf64c5582021-12-01 16:34:55 +00001523 - title: libfdt
1524 scope: libfdt
1525
1526 - title: Node Package Manager (NPM)
1527 scope: npm
Daniel Boulby98a43d92022-10-05 11:03:44 +01001528
dependabot[bot]075a9612023-09-06 09:55:17 +00001529 - title: Poetry
1530 scope: poetry
1531
Daniel Boulby98a43d92022-10-05 11:03:44 +01001532 - title: zlib
1533 scope: zlib