blob: 14121e22586d0d4d2a002d5cbbc7c78fdc188f22 [file] [log] [blame]
Chris Kayf64c5582021-12-01 16:34:55 +00001#
Chris Kaye7be9242025-02-03 11:25:43 +00002# Copyright (c) 2021-2025, 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
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 Kay833b4ff2022-09-29 16:42:23 +010034 - title: Documentation
Chris Kayf64c5582021-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:
Govindraj Raja9b494c22025-01-28 17:38:14 -060089 - title: CPU feature like FEAT_XXXX / ID register handling in general
Andre Przywara69c17f52022-11-14 15:38:58 +000090 scope: cpufeat
91
Govindraj Raja1e02ce62024-03-19 14:32:20 -050092 deprecated:
Govindraj Raja9b494c22025-01-28 17:38:14 -060093 - amu
94 - brbe
95 - bti
96 - cca
97 - ccidx
98 - d128
99 - debugv8p9
100 - fgt2
Govindraj Raja8df9dee2025-05-08 15:24:33 -0500101 - fpmr
Govindraj Raja9b494c22025-01-28 17:38:14 -0600102 - gcs
103 - hcx
Govindraj Raja8df9dee2025-05-08 15:24:33 -0500104 - mops
Govindraj Raja9b494c22025-01-28 17:38:14 -0600105 - mpam
Govindraj Raja1e02ce62024-03-19 14:32:20 -0500106 - mte
Govindraj Raja9b494c22025-01-28 17:38:14 -0600107 - mte2
108 - pauth
109 - pmu
Govindraj Raja8df9dee2025-05-08 15:24:33 -0500110 - pmuv3
Govindraj Raja9b494c22025-01-28 17:38:14 -0600111 - rng-trap
112 - sctlr2
113 - feat_sctlr2
114 - sme
115 - spe
116 - sve
117 - sys-reg-trace
Chris Kayf64c5582021-12-01 16:34:55 +0000118 - sys_reg_trace
Govindraj Raja9b494c22025-01-28 17:38:14 -0600119 - tcr2
120 - trbe
121 - trf
122 - the
Chris Kayf64c5582021-12-01 16:34:55 +0000123
Manish V Badarkhe669e2b12024-05-17 11:09:28 +0100124 - title: DynamIQ Shared Unit (DSU)
125 scope: dsu
126
Chris Kayf64c5582021-12-01 16:34:55 +0000127 - title: Platforms
Manish V Badarkhe98735802023-11-21 14:35:13 +0000128 scope: platforms
129
130 deprecated:
131 - plat/common
Manish V Badarkhe669e2b12024-05-17 11:09:28 +0100132 - plat
Chris Kayf64c5582021-12-01 16:34:55 +0000133
134 subsections:
135 - title: Allwinner
136 scope: allwinner
137
138 deprecated:
139 - plat/allwinner
140
Govindraj Raja8df9dee2025-05-08 15:24:33 -0500141 - title: AMLogic
142 scope: amlogic
143
144 subsections:
145 - title: GXL
146 scope: gxl
147
Chris Kayf64c5582021-12-01 16:34:55 +0000148 - title: Arm
149 scope: arm
150
151 deprecated:
152 - plat/arm
153
154 subsections:
Govindraj Rajae614ba32024-11-19 10:19:37 -0600155 - title: Common
156 scope: common
157
Juan Pablo Condeb78ad002023-05-15 22:17:17 -0500158 - title: A5DS
159 scope: a5ds
160
laurenw-arm21cd0662022-11-01 14:45:33 -0500161 - title: CSS
162 scope: css
163
164 deprecated:
165 - plat/arm/css
Juan Pablo Condeb78ad002023-05-15 22:17:17 -0500166 - plat/css
laurenw-arm21cd0662022-11-01 14:45:33 -0500167
Chris Kayf64c5582021-12-01 16:34:55 +0000168 - title: FPGA
169 scope: fpga
170
171 deprecated:
172 - arm_fgpa
Chris Kayf64c5582021-12-01 16:34:55 +0000173 - plat/arm_fpga
Manish V Badarkhe98735802023-11-21 14:35:13 +0000174 - arm/fpga
Chris Kayf64c5582021-12-01 16:34:55 +0000175
176 - title: FVP
177 scope: fvp
178
179 deprecated:
180 - plat/fvp
laurenw-arm21cd0662022-11-01 14:45:33 -0500181 - fvp/tsp_manifest
Chris Kayf64c5582021-12-01 16:34:55 +0000182
laurenw-arm21cd0662022-11-01 14:45:33 -0500183 - title: FVP Versatile Express
184 scope: fvp_ve
185
Chris Kayf64c5582021-12-01 16:34:55 +0000186 - title: Juno
187 scope: juno
188
189 - title: Morello
190 scope: morello
191
Jayanth Dodderi Chidanand24c5d202022-05-19 11:03:07 +0100192 - title: N1SDP
193 scope: n1sdp
194
Rohit Mathew682da932024-04-15 17:31:04 +0100195 - title: Neoverse-RD
196 scope: neoverse-rd
Chris Kayf64c5582021-12-01 16:34:55 +0000197
198 subsections:
199 - title: RD-N2
200 scope: rdn2
201
Jerry Wang137ab5c2024-07-08 15:17:42 +0100202 - title: RD-V3
203 scope: rdv3
Rohit Mathew84973bb2024-04-15 17:54:16 +0100204
Chris Kayf64c5582021-12-01 16:34:55 +0000205 deprecated:
206 - board/rdn2
Yann Gautier48a59eb2024-11-13 11:29:50 +0100207 - rdfremont
Chris Kayf64c5582021-12-01 16:34:55 +0000208
Manish V Badarkhe669e2b12024-05-17 11:09:28 +0100209 deprecated:
210 - neoverse
Govindraj Raja8df9dee2025-05-08 15:24:33 -0500211 - neoverse_rd
Manish V Badarkhe669e2b12024-05-17 11:09:28 +0100212
Chris Kayf64c5582021-12-01 16:34:55 +0000213 - title: TC
214 scope: tc
215
Juan Pablo Condeb78ad002023-05-15 22:17:17 -0500216 deprecated:
217 - plat/tc
218
Jayanth Dodderi Chidanand24c5d202022-05-19 11:03:07 +0100219 - title: Corstone-1000
220 scope: corstone-1000
221
Yann Gautier48a59eb2024-11-13 11:29:50 +0100222 deprecated:
223 - corstone1000
224
Peter Hoyesf661c742023-02-20 12:08:43 +0000225 - title: Automotive RD
226 scope: automotive_rd
227
228 subsections:
229 - title: RD-1 AE
230 scope: rd1ae
231
Chia-Wei Wang85f199b2022-11-02 17:50:21 +0800232 - title: Aspeed
233 scope: aspeed
234
235 subsections:
236 - title: AST2700
237 scope: ast2700
238
Jayanth Dodderi Chidanand24c5d202022-05-19 11:03:07 +0100239 - title: Broadcom
240 scope: brcm
241
Manish V Badarkhe98735802023-11-21 14:35:13 +0000242 - title: Cadence
243 scope: cadence
244
laurenw-arm21cd0662022-11-01 14:45:33 -0500245 - title: HiSilicon
246 scope: hisilicon
247
248 subsections:
249 - title: HiKey
250 scope: hikey
251
252 - title: HiKey960
253 scope: hikey960
254
Yann Gautier48a59eb2024-11-13 11:29:50 +0100255 - title: Poplar
256 scope: poplar
257
Sieu Mun Tange5641372022-02-22 14:14:26 +0800258 - title: Intel
259 scope: intel
260
261 subsections:
262 - title: SoC
263 scope: soc
264
Chris Kayf64c5582021-12-01 16:34:55 +0000265 - title: Marvell
266 scope: marvell
267
268 deprecated:
269 - plat/marvell
270
271 subsections:
272 - title: Armada
273 scope: armada
274
275 deprecated:
276 - plat/marvell/armada
277
278 subsections:
279 - title: A3K
280 scope: a3k
281
282 deprecated:
283 - plat/marvell/a3k
284
285 - title: A8K
286 scope: a8k
287
288 deprecated:
289 - plat/marvell/a8k
290
291 - title: MediaTek
292 scope: mediatek
293
294 deprecated:
295 - plat/mediatek/common
296 - plat/mediatek
297
298 subsections:
299 - title: MT8183
300 scope: mt8183
301
302 deprecated:
303 - plat/mediatek/mt8183
304
laurenw-arm21cd0662022-11-01 14:45:33 -0500305 - title: MT8186
306 scope: mt8186
307
308 deprecated:
309 - plat/mediatek/mt8186
310 - mt8186-emi-mpu
311
312 - title: MT8188
313 scope: mt8188
314
Govindraj Raja8df9dee2025-05-08 15:24:33 -0500315 - title: MT8189
316 scope: mt8189
317
Chris Kayf64c5582021-12-01 16:34:55 +0000318 - title: MT8192
319 scope: mt8192
320
321 deprecated:
322 - plat/mdeiatek/mt8192
323
324 - title: MT8195
325 scope: mt8195
326
327 deprecated:
328 - plat/mediatek/me8195
329 - plat/mediatek/mt8195
330 - plat/mdeiatek/mt8195
331
Govindraj Raja8df9dee2025-05-08 15:24:33 -0500332 - title: MT8196
333 scope: mt8196
334
Chris Kayf64c5582021-12-01 16:34:55 +0000335 - title: NVIDIA
336 scope: nvidia
337
338 subsections:
339 - title: Tegra
340 scope: tegra
341
342 deprecated:
343 - plat/tegra
344
345 subsections:
346 - title: Tegra 132
347 scope: tegra132
348
Jayanth Dodderi Chidanand24c5d202022-05-19 11:03:07 +0100349 - title: Tegra 194
350 scope: tegra194
351
Juan Pablo Condeb78ad002023-05-15 22:17:17 -0500352 - title: Tegra 210
353 scope: tegra210
354
Chris Kayf64c5582021-12-01 16:34:55 +0000355 - title: NXP
356 scope: nxp
357
358 deprecated:
359 - plat/nxp
360 - plat/nxp/common
361
362 subsections:
363 - title: i.MX
364 scope: imx
365
366 deprecated:
367 - plat/imx
368 - plat/imx/imx
369
370 subsections:
371 - title: i.MX 8M
372 scope: imx8m
373
374 deprecated:
375 - plat/imx8m
376 - plat/imx/imx8m
377
378 subsections:
Jayanth Dodderi Chidanand24c5d202022-05-19 11:03:07 +0100379 - title: i.MX 8M Nano
380 scope: imx8mn
381
382 deprecated:
383 - plat/imx/imx8m/imx8mn
384
Chris Kayf64c5582021-12-01 16:34:55 +0000385 - title: i.MX 8M Mini
386 scope: imx8mm
387
388 deprecated:
389 - plat/imx/imx8m/imx8mm
390
391 - title: i.MX 8M Plus
392 scope: imx8mp
393
394 deprecated:
395 - plat/imx/imx8m/imx8mp
396
Jayanth Dodderi Chidanand24c5d202022-05-19 11:03:07 +0100397 - title: i.MX 8Q
398 scope: imx8mq
399
400 deprecated:
401 - plat/imx/imx8m/imx8mq
402
Juan Pablo Condeb78ad002023-05-15 22:17:17 -0500403 - title: i.MX 8
404 scope: imx8
405
Jacky Bai0d6b4cd2023-10-08 17:52:24 +0800406 - title: i.MX 8ULP
407 scope: imx8ulp
408
Jacky Bai9f38eb82023-06-14 15:24:00 +0800409 - title: i.MX 9
410 scope: imx9
411
412 subsections:
413 - title: i.MX93
414 scope: imx93
415
Chris Kayf64c5582021-12-01 16:34:55 +0000416 - title: Layerscape
417 scope: layerscape
418
419 deprecated:
420 - docs/nxp/layerscape
421
422 subsections:
423 - title: LS1028A
424 scope: ls1028a
425
426 deprecated:
427 - plat/nxp/ls1028a
428
429 subsections:
430 - title: LS1028ARDB
431 scope: ls1028ardb
432
433 deprecated:
434 - plat/nxp/ls1028ardb
435
Jayanth Dodderi Chidanand24c5d202022-05-19 11:03:07 +0100436 - title: LS1043A
437 scope: ls1043a
438
439 deprecated:
440 - plat/nxp/ls1043a
441
442 subsections:
443 - title: LS1043ARDB
444 scope: ls1043ardb
445
446 deprecated:
447 - plat/nxp/ls1043ardb
448
Chris Kayf64c5582021-12-01 16:34:55 +0000449 - title: LX2
450 scope: lx2
451
452 deprecated:
453 - plat/nxp/lx2
454
455 subsections:
456 - title: LX216
457 scope: lx216
458
459 deprecated:
460 - plat/nxp/lx216x
461
462 subsections:
463 - title: LX2160
464 scope: lx2160
465
466 deprecated:
467 - plat/soc-lx2160
468
Jiafei Pan1acfb982022-02-10 10:39:56 +0800469 - title: LS1046A
470 scope: ls1046a
471
472 subsections:
473 - title: LS1046ARDB
474 scope: ls1046ardb
475
476 - title: LS1046AFRWY
477 scope: ls1046afrwy
478
479 - title: LS1046AQDS
480 scope: ls1046aqds
481
Jiafei Panccb71e32022-02-24 16:00:35 +0800482 - title: LS1088A
483 scope: ls1088a
484
485 subsections:
486 - title: LS1088ARDB
487 scope: ls1088ardb
488
489 - title: LS1088AQDS
490 scope: ls1088aqds
491
Ghennadi Procopciuc8b81a392024-01-30 16:19:47 +0200492 - title: S32G274A
493 scope: s32g274a
494
495 subsections:
496 - title: S32G274ARDB
497 scope: s32g274ardb
498
Chris Kayf64c5582021-12-01 16:34:55 +0000499 - title: QEMU
500 scope: qemu
501
502 deprecated:
503 - plat/qemu
504
Juan Pablo Condeb78ad002023-05-15 22:17:17 -0500505 subsections:
506 - title: SBSA
507 scope: qemu-sbsa
508
Manish V Badarkhe98735802023-11-21 14:35:13 +0000509 deprecated:
510 - qemu_sbsa
511
Chris Kayf64c5582021-12-01 16:34:55 +0000512 - title: QTI
513 scope: qti
514
laurenw-arm21cd0662022-11-01 14:45:33 -0500515 deprecated:
516 - plat/qti
517
Chris Kayf64c5582021-12-01 16:34:55 +0000518 subsections:
519 - title: SC1780
520 scope: sc7180
521
522 deprecated:
523 - plat/qti/sc7180
524
525 - title: SC7280
526 scope: sc7280
527
528 deprecated:
529 - plat/qti/sc7280
530
Stephan Gerholdfa145392021-12-01 20:00:00 +0100531 - title: MSM8916
532 scope: msm8916
533
Chris Kayf64c5582021-12-01 16:34:55 +0000534 - title: Raspberry Pi
535 scope: rpi
536
537 subsections:
laurenw-arm21cd0662022-11-01 14:45:33 -0500538 - title: Raspberry Pi 3
539 scope: rpi3
540
Chris Kayf64c5582021-12-01 16:34:55 +0000541 - title: Raspberry Pi 4
542 scope: rpi4
543
Mario Bălănicăf834b642023-12-02 03:08:02 +0200544 - title: Raspberry Pi 5
545 scope: rpi5
546
Chris Kayf64c5582021-12-01 16:34:55 +0000547 - title: Renesas
548 scope: renesas
549
550 subsections:
551 - title: R-Car
552 scope: rcar
553
554 deprecated:
555 - plat/rcar
556
557 subsections:
558 - title: R-Car 3
559 scope: rcar3
560
561 deprecated:
562 - plat/rcar3
563
564 - title: Rockchip
565 scope: rockchip
566
567 subsections:
Govindraj Raja8df9dee2025-05-08 15:24:33 -0500568 - title: PX30
569 scope: px30
570
571 - title: RK3288
572 scope: rk3288
573
Chris Kayf64c5582021-12-01 16:34:55 +0000574 - title: RK3399
575 scope: rk3399
576
577 deprecated:
578 - rockchip/rk3399
579 - rk3399/suspend
580
Diederik de Haasdd2c8882023-11-27 10:21:37 +0100581 - title: RK3328
582 scope: rk3328
583
Govindraj Raja8df9dee2025-05-08 15:24:33 -0500584 - title: RK3576
585 scope: rk3576
586
Yann Gautier48a59eb2024-11-13 11:29:50 +0100587 - title: RK3588
588 scope: rk3588
589
Chris Kayf64c5582021-12-01 16:34:55 +0000590 - title: Socionext
591 scope: socionext
592
593 subsections:
594 - title: Synquacer
595 scope: synquacer
596
597 deprecated:
598 - plat/synquacer
599
600 - title: ST
601 scope: st
602
603 deprecated:
604 - plat/st
605
606 subsections:
Yann Gautier96f58612022-06-01 18:17:43 +0200607 - title: STM32MP1
Chris Kayf64c5582021-12-01 16:34:55 +0000608 scope: stm32mp1
609
610 deprecated:
611 - plat/st/stm32mp1
612
Yann Gautier96f58612022-06-01 18:17:43 +0200613 subsections:
614 - title: STM32MP13
615 scope: stm32mp13
616
617 - title: STM32MP15
618 scope: stm32mp15
619
Yann Gautier3f6c16f2022-12-16 15:32:25 +0100620 - title: STM32MP2
621 scope: stm32mp2
622
Yann Gautier10f60d32023-11-23 19:37:21 +0100623 subsections:
Yann Gautierf83afc92023-11-23 19:37:21 +0100624 - title: STM32MP21
625 scope: stm32mp21
626
627 - title: STM32MP23
628 scope: stm32mp23
629
Yann Gautier10f60d32023-11-23 19:37:21 +0100630 - title: STM32MP25
631 scope: stm32mp25
632
Dave Gerlach8ba55ec2022-03-22 11:02:52 -0500633 - title: Texas Instruments
634 scope: ti
635
636 subsections:
637 - title: K3
638 scope: k3
639
laurenw-arm21cd0662022-11-01 14:45:33 -0500640 deprecated:
641 - ti-k3
642
Chris Kayf64c5582021-12-01 16:34:55 +0000643 - title: Xilinx
644 scope: xilinx
645
646 deprecated:
647 - plat/xilinx
648
649 subsections:
Michal Simeke311b9b2023-09-18 10:22:48 +0200650 - title: DCC (Debug Communication Channel)
651 scope: dcc
652
Chris Kayf64c5582021-12-01 16:34:55 +0000653 - title: Versal
654 scope: versal
655
656 deprecated:
657 - plat/xilinx/versal/include
658 - plat/xilinx/versal
659 - plat/versal
660
Manish V Badarkhe669e2b12024-05-17 11:09:28 +0100661 - title: Versal NET
662 scope: versal-net
laurenw-arm21cd0662022-11-01 14:45:33 -0500663
Manish V Badarkhe669e2b12024-05-17 11:09:28 +0100664 deprecated:
665 - versal_net
laurenw-arm21cd0662022-11-01 14:45:33 -0500666
Chris Kayf64c5582021-12-01 16:34:55 +0000667 - title: ZynqMP
668 scope: zynqmp
669
670 deprecated:
671 - plat/zynqmp
672 - plat/xilinx/zynqmp
673
Amit Nagalc97857d2024-06-05 12:32:38 +0530674 - title: AMD
675 scope: amd
676
677 subsections:
678 - title: Versal Gen 2
679 scope: versal2
680
rutigl@gmail.comedcece12023-03-19 09:19:05 +0200681 - title: Nuvoton
682 scope: nuvoton
683
684 subsections:
685 - title: npcm845x
686 scope: npcm845x
687
Chris Kayf64c5582021-12-01 16:34:55 +0000688 - title: Bootloader Images
689 scope: bl
690
691 deprecated:
692 - bl_common
693
694 subsections:
695 - title: BL1
696 scope: bl1
697
698 - title: BL2
699 scope: bl2
700
Jayanth Dodderi Chidanand24c5d202022-05-19 11:03:07 +0100701 - title: BL31
702 scope: bl31
703
Shruti Gupta5b7bd2a2022-08-09 10:46:07 +0100704 - title: BL32
705 scope: bl32
706
707 subsections:
708 - title: TSP
709 scope: tsp
710
Chris Kayf64c5582021-12-01 16:34:55 +0000711 - title: Services
712 scope: services
713
Yann Gautier48a59eb2024-11-13 11:29:50 +0100714 deprecated:
715 - std_svc
716
Chris Kayf64c5582021-12-01 16:34:55 +0000717 subsections:
718 - title: FF-A
Daniel Boulby93a8ce02021-12-06 14:44:35 +0000719 scope: ff-a
Chris Kayf64c5582021-12-01 16:34:55 +0000720
721 deprecated:
Daniel Boulby93a8ce02021-12-06 14:44:35 +0000722 - ffa
Chris Kayf64c5582021-12-01 16:34:55 +0000723
724 - title: RME
725 scope: rme
726
laurenw-arm21cd0662022-11-01 14:45:33 -0500727 deprecated:
728 - rme/fid
729
Jayanth Dodderi Chidanand24c5d202022-05-19 11:03:07 +0100730 subsections:
731 - title: TRP
732 scope: trp
733
Javier Almansa Sobrino8c980a42021-11-24 18:37:37 +0000734 - title: RMMD
735 scope: rmmd
736
Juan Pablo Condeb78ad002023-05-15 22:17:17 -0500737 - title: RMM
738 scope: rmm
739
Chris Kayf64c5582021-12-01 16:34:55 +0000740 - title: SPM
741 scope: spm
742
Jayanth Dodderi Chidanand24c5d202022-05-19 11:03:07 +0100743 subsections:
Manish V Badarkhe98735802023-11-21 14:35:13 +0000744 - title: EL3 SPM
745 scope: el3-spm
746
Jayanth Dodderi Chidanand24c5d202022-05-19 11:03:07 +0100747 - title: EL3 SPMC
748 scope: el3-spmc
Daniel Boulby93a8ce02021-12-06 14:44:35 +0000749
laurenw-arm21cd0662022-11-01 14:45:33 -0500750 deprecated:
Govindraj Raja8df9dee2025-05-08 15:24:33 -0500751 - el3_spmc
laurenw-arm21cd0662022-11-01 14:45:33 -0500752 - spmc
753
Jayanth Dodderi Chidanand24c5d202022-05-19 11:03:07 +0100754 - title: SPMD
755 scope: spmd
756
757 - title: SPM MM
758 scope: spm-mm
Chris Kayf64c5582021-12-01 16:34:55 +0000759
Govindraj Raja8df9dee2025-05-08 15:24:33 -0500760 deprecated:
761 - spm_mm
762
Manish V Badarkhe7b224f12022-06-27 09:21:14 +0100763 - title: DRTM
764 scope: drtm
765
Jayanth Dodderi Chidanand0b22e592022-10-11 17:16:07 +0100766 - title: TRNG
767 scope: trng
768
Sona Mathew5c8fcc02023-09-20 12:55:32 -0500769 - title: ERRATA ABI
770 scope: errata-abi
771
772 deprecated:
773 - errata_abi
Sona Mathewffea3842022-11-18 18:05:38 -0600774
Manish V Badarkhe669e2b12024-05-17 11:09:28 +0100775 - title: ChromeOS
776 scope: cros
777
Yann Gautier02c580c2024-11-13 13:46:15 +0100778 - title: Secure Payload Dispatcher
779 scope: spd
780
781 subsections:
782 - title: OP-TEE
783 scope: optee
784
785 deprecated:
786 - lib/optee
787
788 - title: ProvenCore
789 scope: pncd
790
791 - title: Trusted Little Kernel
792 scope: tlkd
793
794 - title: Trusty
795 scope: trusty
796
797 - title: TSP
798 scope: tspd
799
Chris Kayf64c5582021-12-01 16:34:55 +0000800 - title: Libraries
Manish V Badarkhe98735802023-11-21 14:35:13 +0000801 scope: lib
Chris Kayf64c5582021-12-01 16:34:55 +0000802
803 subsections:
804 - title: CPU Support
805 scope: cpus
806
807 deprecated:
808 - cpu
809 - errata
810 - errata_report
811
812 - title: EL3 Runtime
813 scope: el3-runtime
814
815 deprecated:
816 - el3_runtime
817
Jayanth Dodderi Chidanand24c5d202022-05-19 11:03:07 +0100818 subsections:
819 - title: Context Management
820 scope: cm
821
laurenw-arm21cd0662022-11-01 14:45:33 -0500822 - title: RAS
823 scope: ras
824
Madhukar Pappireddy841533d2024-06-17 15:12:26 -0500825 - title: SIMD
826 scope: simd
827
Chris Kayf64c5582021-12-01 16:34:55 +0000828 - title: FCONF
829 scope: fconf
830
Govindraj Raja8df9dee2025-05-08 15:24:33 -0500831 - title: HOB
832 scope: hob
833
Chris Kayf64c5582021-12-01 16:34:55 +0000834 - title: MPMM
835 scope: mpmm
836
Chris Kayf64c5582021-12-01 16:34:55 +0000837 - title: PSCI
838 scope: psci
839
Chris Kay7fc4d772024-01-15 18:45:07 +0000840 - title: ROMlib
841 scope: romlib
842
Chris Kayf64c5582021-12-01 16:34:55 +0000843 - title: GPT
844 scope: gpt
845
846 deprecated:
847 - gpt_rme
848
849 - title: SMCCC
850 scope: smccc
851
852 - title: Translation Tables
853 scope: xlat
854
Govindraj Raja8df9dee2025-05-08 15:24:33 -0500855 deprecated:
856 - xlat_tables_v2
857
Jayanth Dodderi Chidanand24c5d202022-05-19 11:03:07 +0100858 - title: C Standard Library
859 scope: libc
860
861 - title: Locks
862 scope: locks
863
864 - title: PSA
865 scope: psa
866
laurenw-arm21cd0662022-11-01 14:45:33 -0500867 deprecated:
868 - lib/psa
869
Tamas Bancb249052024-02-06 11:24:51 +0100870 - title: DICE Protection Environment
871 scope: dice
872
Zelalem Aweked20052f2022-04-04 17:42:48 -0500873 - title: Context Management
Chris Kay24687b72022-10-10 16:57:45 +0100874 scope: context-mgmt
875
876 deprecated:
877 - context mgmt
Zelalem Aweked20052f2022-04-04 17:42:48 -0500878
Manish V Badarkhe7c494382022-09-26 15:06:56 +0100879 - title: Semihosting
880 scope: semihosting
881
Raymond Mao3ba2c152023-07-25 07:53:35 -0700882 - title: Firmware Handoff
883 scope: handoff
884
Manish V Badarkhe669e2b12024-05-17 11:09:28 +0100885 - title: Exception Handling Framework (EHF)
886 scope: ehf
887
Chris Kayf64c5582021-12-01 16:34:55 +0000888 - title: Drivers
889
890 subsections:
891 - title: Authentication
892 scope: auth
893
894 deprecated:
895 - driver/auth
896
897 subsections:
898 - title: CryptoCell-713
899 scope: cc-713
900
Manish V Badarkhe9e0d2ba2022-09-22 21:41:55 +0100901 - title: Crypto
902 scope: crypto
903
904 - title: mbedTLS
905 scope: mbedtls
906
Manish V Badarkhe902e94c2023-09-22 17:54:59 +0100907 - title: mbedTLS-PSA
908 scope: mbedtls-psa
909
Yann Gautier3c788292023-01-06 17:05:48 +0100910 - title: Console
911 scope: console
912
Abhi.Singha6485b22024-08-21 12:55:38 -0500913 - title: Delay Timer
914 scope: delay-timer
915
Jayanth Dodderi Chidanand24c5d202022-05-19 11:03:07 +0100916 - title: Generic Clock
917 scope: clk
918
Chris Kayf64c5582021-12-01 16:34:55 +0000919 - title: FWU
920 scope: fwu
921
922 deprecated:
923 - fwu_metadata
924
925 - title: I/O
926 scope: io
927
928 subsections:
929 - title: MTD
930 scope: mtd
931
932 deprecated:
933 - io_mtd
934
935 - title: Measured Boot
936 scope: measured-boot
937
938 deprecated:
939 - measured boot
940 - measured_boot
941
942 - title: MMC
943 scope: mmc
944
945 deprecated:
946 - drivers/mmc
947
948 - title: MTD
949 scope: mtd
950
951 deprecated:
952 - drivers/mtd
953
954 subsections:
955 - title: NAND
956 scope: nand
957
958 subsections:
959 - title: SPI NAND
960 scope: spi-nand
961
962 deprecated:
963 - spi_nand
964
Jayanth Dodderi Chidanand24c5d202022-05-19 11:03:07 +0100965 - title: GUID Partition Tables Support
966 scope: guid-partition
Sughosh Ganue1157ec2022-01-19 11:31:20 +0530967
Juan Pablo Condeb78ad002023-05-15 22:17:17 -0500968 deprecated:
969 - partition
970
Chris Kayf64c5582021-12-01 16:34:55 +0000971 - title: SCMI
972 scope: scmi
973
974 deprecated:
975 - scmi_common
976 - drivers/scmi-msg
laurenw-arm21cd0662022-11-01 14:45:33 -0500977 - scmi-msg
Chris Kayf64c5582021-12-01 16:34:55 +0000978
Abhi.Singh36e3d872024-08-28 14:17:52 -0500979 - title: TPM
980 scope: tpm
981
Chris Kayf64c5582021-12-01 16:34:55 +0000982 - title: UFS
983 scope: ufs
984
985 - title: Arm
986 scope: arm-drivers
987
988 subsections:
989 - title: Ethos-N
990 scope: ethos-n
991
992 deprecated:
993 - drivers/arm/ethosn
994
995 - title: GIC
996 scope: gic
997
998 subsections:
999 - title: GICv3
1000 scope: gicv3
1001
laurenw-arm21cd0662022-11-01 14:45:33 -05001002 deprecated:
1003 - gicv3/multichip
1004
Chris Kayf64c5582021-12-01 16:34:55 +00001005 subsections:
laurenw-arm21cd0662022-11-01 14:45:33 -05001006 - title: GIC-600
1007 scope: gic600
1008
Chris Kayf64c5582021-12-01 16:34:55 +00001009 - title: GIC-600AE
1010 scope: gic600ae
1011
Madhukar Pappireddyab80cf32023-08-03 12:13:27 -05001012 - title: GICv2
1013 scope: gicv2
1014
Manish V Badarkhe0de3eda2022-03-24 18:23:37 +00001015 - title: SMMU
1016 scope: smmu
1017
Jayanth Dodderi Chidanand24c5d202022-05-19 11:03:07 +01001018 - title: MHU
1019 scope: mhu
1020
1021 deprecated:
1022 - drivers/arm/mhu
1023
Tamas Banccc71732024-04-22 15:41:45 +02001024 - title: RSE
1025 scope: rse
Jayanth Dodderi Chidanand24c5d202022-05-19 11:03:07 +01001026
1027 deprecated:
1028 - drivers/arm/rss
Tamas Banccc71732024-04-22 15:41:45 +02001029 - rss
Jayanth Dodderi Chidanand24c5d202022-05-19 11:03:07 +01001030
Chris Kayf64c5582021-12-01 16:34:55 +00001031 - title: TZC
1032 scope: tzc
1033
1034 subsections:
1035 - title: TZC-400
1036 scope: tzc400
1037
1038 deprecated:
1039 - drivers/tzc400
1040
Jayanth Dodderi Chidanand24c5d202022-05-19 11:03:07 +01001041 - title: TZC-380
1042 scope: tzc380
1043
1044 deprecated:
1045 - drivers/tzc380
1046
Madhukar Pappireddye8166d32023-03-22 15:27:22 -05001047 - title: SBSA
1048 scope: sbsa
1049
Chris Kayf64c5582021-12-01 16:34:55 +00001050 - title: Marvell
1051 scope: marvell-drivers
1052
1053 subsections:
1054 - title: COMPHY
1055 scope: marvell-comphy
1056
1057 deprecated:
1058 - drivers/marvell/comphy
1059
1060 subsections:
1061 - title: Armada 3700
1062 scope: marvell-comphy-3700
1063
1064 deprecated:
1065 - drivers/marvell/comphy-3700
1066
1067 - title: CP110
1068 scope: marvell-comphy-cp110
1069
1070 deprecated:
1071 - drivers/marvell/comphy-cp110
1072
1073 - title: UART
1074 scope: marvell-uart
1075
1076 deprecated:
1077 - plat/marvell/uart
1078
1079 - title: Armada
1080 scope: armada-drivers
1081
1082 subsections:
1083 - title: A3K
1084 scope: a3k-drivers
1085
1086 subsections:
1087 - title: A3720
1088 scope: a3720-uart
1089
1090 deprecated:
1091 - plat/marvell/a3720/uart
1092
1093 - title: MediaTek
1094 scope: mediatek-drivers
1095
1096 subsections:
1097 - title: APU
1098 scope: mediatek-apu
1099
1100 deprecated:
1101 - plat/mediatek/apu
1102
1103 - title: EMI MPU
1104 scope: mediatek-emi-mpu
1105
1106 deprecated:
1107 - plat/mediatek/mpu
1108
1109 - title: PMIC Wrapper
1110 scope: mediatek-pmic-wrapper
1111
1112 deprecated:
1113 - plat/mediatek/pmic_wrap
1114
1115 - title: MT8192
1116 scope: mt8192-drivers
1117
1118 subsections:
1119 - title: SPM
1120 scope: mt8192-spm
1121
1122 deprecated:
1123 - mediatek/mt8192/spm
1124
1125 - title: NXP
1126 scope: nxp-drivers
1127
1128 subsections:
1129 - title: DCFG
1130 scope: nxp-dcfg
1131
1132 deprecated:
1133 - driver/nxp/dcfg
1134
1135 - title: FLEXSPI
1136 scope: flexspi
1137
1138 deprecated:
1139 - include/drivers/flexspi
1140 - driver/nxp/xspi
1141
1142 - title: SCFG
1143 scope: nxp-scfg
1144
1145 deprecated:
1146 - nxp/scfg
1147
1148 - title: SFP
1149 scope: nxp-sfp
1150
1151 deprecated:
1152 - drivers/nxp/sfp
1153
Jiafei Pan1acfb982022-02-10 10:39:56 +08001154 - title: QSPI
1155 scope: nxp-qspi
1156
Jiafei Pan9dcbeb92022-02-18 12:02:04 +08001157 - title: NXP Crypto
1158 scope: nxp-crypto
1159
Jiafei Pan5ba30c62022-02-22 11:05:00 +08001160 - title: DDR
1161 scope: nxp-ddr
1162
1163 - title: GIC
1164 scope: nxp-gic
1165
Jayanth Dodderi Chidanand24c5d202022-05-19 11:03:07 +01001166 - title: CSU
1167 scope: nxp-csu
1168
1169 - title: IFC NAND
1170 scope: nxp-ifc-nand
1171
1172 - title: IFC NOR
1173 scope: nxp-ifc-nor
1174
1175 - title: TZC-380
1176 scope: nxp-tzc380
1177
Jacky Bai9f38eb82023-06-14 15:24:00 +08001178 - title: TRDC
1179 scope: imx-trdc
1180
Ghennadi Procopciuc3a580e92024-06-11 18:39:58 +03001181 - title: Clock
1182 scope: nxp-clk
1183
Chris Kayf64c5582021-12-01 16:34:55 +00001184 - title: Renesas
1185 scope: renesas-drivers
1186
1187 subsections:
1188 - title: R-Car3
1189 scope: rcar3-drivers
1190
1191 deprecated:
1192 - drivers/rcar3
1193
1194 - title: ST
1195 scope: st-drivers
1196
1197 deprecated:
1198 - drivers/st
1199
1200 subsections:
Yann Gautier27254d92022-01-27 09:25:47 +01001201 - title: BSEC
1202 scope: st-bsec
1203
Chris Kayf64c5582021-12-01 16:34:55 +00001204 - title: Clock
1205 scope: st-clock
1206
1207 deprecated:
1208 - stm32mp_clk
1209 - drivers/st/clk
1210 - stm32mp1_clk
1211
Yann Gautier27254d92022-01-27 09:25:47 +01001212 - title: Crypto
1213 scope: st-crypto
1214
1215 - title: DDR
1216 scope: st-ddr
1217
Chris Kayf64c5582021-12-01 16:34:55 +00001218 - title: I/O
1219 scope: st-io-drivers
1220
1221 subsections:
1222 - title: STM32 Image
1223 scope: st-io-stm32image
1224
1225 deprecated:
1226 - io-stm32image
1227 - io_stm32image
1228
Yann Gautier27254d92022-01-27 09:25:47 +01001229 - title: I2C
1230 scope: st-i2c
1231
1232 - title: FMC
1233 scope: st-fmc
1234
1235 - title: GPIO
1236 scope: st-gpio
1237
Chris Kayf64c5582021-12-01 16:34:55 +00001238 - title: SDMMC2
1239 scope: st-sdmmc2
1240
1241 deprecated:
1242 - stm32_sdmmc2
1243
1244 - title: ST PMIC
1245 scope: st-pmic
1246
1247 deprecated:
1248 - drivers/st/pmic
1249
1250 - title: STPMIC1
1251 scope: stpmic1
1252
Yann Gautier27254d92022-01-27 09:25:47 +01001253 - title: Regulator
1254 scope: st-regulator
1255
1256 - title: Reset
1257 scope: st-reset
1258
1259 - title: SPI
1260 scope: st-spi
1261
Chris Kayf64c5582021-12-01 16:34:55 +00001262 - title: UART
1263 scope: st-uart
1264
1265 subsections:
1266 - title: STM32 Console
1267 scope: stm32-console
1268
1269 deprecated:
1270 - stm32_console
1271
1272 - title: USB
1273 scope: st-usb
1274
1275 deprecated:
1276 - drivers/st/usb
1277
Yann Gautier27254d92022-01-27 09:25:47 +01001278 - title: Watchdog
1279 scope: st-iwdg
1280
Chris Kayf64c5582021-12-01 16:34:55 +00001281 - title: USB
1282 scope: usb
1283
1284 deprecated:
1285 - drivers/usb
1286
1287 - title: Miscellaneous
1288
1289 subsections:
1290 - title: AArch64
1291 scope: aarch64
1292
Harrison Mutaiaf61b502024-12-12 18:33:54 +00001293 - title: AArch32
1294 scope: aarch32
1295
Chris Kayf64c5582021-12-01 16:34:55 +00001296 - title: Debug
1297 scope: debug
1298
1299 deprecated:
1300 - common/debug
1301
1302 - title: CRC32
1303 scope: crc32
1304
1305 subsections:
1306 - title: Hardware CRC32
1307 scope: hw-crc32
1308
1309 deprecated:
1310 - hw_crc
1311 - hw_crc32
1312
1313 - title: Software CRC32
1314 scope: sw-crc32
1315
1316 deprecated:
1317 - sw_crc32
1318
1319 - title: DT Bindings
1320 scope: dt-bindings
1321
1322 - title: FDT Wrappers
1323 scope: fdt-wrappers
1324
1325 - title: FDTs
1326 scope: fdts
1327
1328 deprecated:
1329 - fdt
1330
1331 subsections:
Yann Gautier9e14bd32025-05-13 09:38:36 +02001332 - title: Arm
Chris Kayf64c5582021-12-01 16:34:55 +00001333
Yann Gautier3e35da92022-07-08 15:55:14 +02001334 subsections:
Yann Gautier9e14bd32025-05-13 09:38:36 +02001335 - title: Morello
1336 scope: morello-fdts
Yann Gautier3e35da92022-07-08 15:55:14 +02001337
Yann Gautier9e14bd32025-05-13 09:38:36 +02001338 deprecated:
1339 - fdts/morello
Yann Gautier3e35da92022-07-08 15:55:14 +02001340
Yann Gautier9e14bd32025-05-13 09:38:36 +02001341 - title: ST
Yann Gautier3f6c16f2022-12-16 15:32:25 +01001342
Yann Gautier10f60d32023-11-23 19:37:21 +01001343 subsections:
Yann Gautier9e14bd32025-05-13 09:38:36 +02001344 - title: STM32MP1
1345 scope: stm32mp1-fdts
1346
1347 deprecated:
1348 - fdts stm32mp1
1349
1350 subsections:
1351 - title: STM32MP13
1352 scope: stm32mp13-fdts
1353
1354 - title: STM32MP15
1355 scope: stm32mp15-fdts
1356
1357 - title: STM32MP2
1358 scope: stm32mp2-fdts
1359
1360 subsections:
Yann Gautierf83afc92023-11-23 19:37:21 +01001361 - title: STM32MP21
1362 scope: stm32mp21-fdts
1363
1364 - title: STM32MP23
1365 scope: stm32mp23-fdts
1366
Yann Gautier9e14bd32025-05-13 09:38:36 +02001367 - title: STM32MP25
1368 scope: stm32mp25-fdts
Yann Gautier10f60d32023-11-23 19:37:21 +01001369
Chris Kayf64c5582021-12-01 16:34:55 +00001370 - title: PIE
1371 scope: pie
1372
Juan Pablo Condeb78ad002023-05-15 22:17:17 -05001373 - title: PIE/POR
1374 scope: pie/por
1375
Chris Kayf64c5582021-12-01 16:34:55 +00001376 - title: Security
1377 scope: security
1378
1379 - title: SDEI
1380 scope: sdei
1381
1382 - title: TBBR
1383 scope: tbbr
1384
1385 - title: NXP
1386
1387 subsections:
1388 - title: OCRAM
1389 scope: nxp-ocram
1390
1391 deprecated:
1392 - nxp/common/ocram
1393
1394 - title: PSCI
1395 scope: nxp-psci
1396
1397 deprecated:
1398 - plat/nxp/common/psci
1399
Chris Kay12562af2023-04-13 17:24:20 +01001400 - title: UUID
1401 scope: uuid
1402
Chris Kayf64c5582021-12-01 16:34:55 +00001403 - title: Documentation
1404 scope: docs
1405
1406 deprecated:
1407 - doc
1408
1409 subsections:
1410 - title: Changelog
1411 scope: changelog
1412
1413 - title: Commit Style
1414 scope: commit-style
1415
1416 - title: Contribution Guidelines
1417 scope: contributing
1418
1419 deprecated:
1420 - contribution-guidelines
1421 - docs-contributing.rst
1422
1423 - title: Maintainers
1424 scope: maintainers
1425
1426 - title: Prerequisites
1427 scope: prerequisites
1428
Sandrine Bailleux50075fd2022-05-10 14:53:44 +02001429 - title: Threat Model
1430 scope: threat-model
1431
Sandrine Bailleuxd3171612023-02-08 13:58:25 +01001432 - title: Porting Guide
1433 scope: porting
1434
Chris Kayf64c5582021-12-01 16:34:55 +00001435 - title: Build System
1436 scope: build
1437
1438 deprecated:
1439 - makefile
1440 - Makefile
1441
1442 subsections:
1443 - title: Git Hooks
1444 scope: hooks
1445
Juan Pablo Condeb78ad002023-05-15 22:17:17 -05001446 deprecated:
1447 - git-hooks
1448
Chris Kayf64c5582021-12-01 16:34:55 +00001449 - title: Tools
Manish V Badarkheccbfd012024-07-19 08:31:51 +01001450 scope: tools
Chris Kayf64c5582021-12-01 16:34:55 +00001451
1452 subsections:
Chris Kay654c2ce2023-03-08 17:48:09 +00001453 - title: Clang-Format
1454 scope: clang-format
1455
Chris Kaye7be9242025-02-03 11:25:43 +00001456 - title: Dependabot
1457 scope: dependabot
1458
Chris Kayf64c5582021-12-01 16:34:55 +00001459 - title: STM32 Image
1460 scope: stm32image
1461
1462 deprecated:
1463 - tools/stm32image
1464
Jiafei Pan1acfb982022-02-10 10:39:56 +08001465 - title: NXP Tools
1466 scope: nxp-tools
1467
Jayanth Dodderi Chidanand24c5d202022-05-19 11:03:07 +01001468 - title: Firmware Image Package Tool
1469 scope: fiptool
1470
1471 - title: Secure Partition Tool
1472 scope: sptool
1473
1474 - title: Certificate Creation Tool
1475 scope: cert-create
1476
Chris Kay415049a2024-06-14 11:31:03 +00001477 - title: Firmware Encryption Tool
1478 scope: encrypt-fw
1479
Harrison Mutaid9d5eb12023-02-23 11:30:17 +00001480 - title: Memory Mapping Tool
1481 scope: memmap
1482
laurenw-arm21cd0662022-11-01 14:45:33 -05001483 deprecated:
1484 - cert_create
1485
Henrik Nordstrom8eb4efe2023-12-04 10:31:07 +01001486 - title: Marvell Tools
1487 scope: marvell-tools
1488
Chris Kayea2c6522024-06-04 11:31:06 +00001489 - title: Renesas Tools
1490 scope: renesas-tools
1491
1492 subsections:
1493 - title: R-Car Layout Tool
1494 scope: rcar-layout
Chris Kay3ed72442024-06-04 11:31:06 +00001495
1496 - title: R/ZG Layout Tool
1497 scope: rzg-layout
1498
Harrison Mutai6ac31f32024-05-10 16:54:29 +00001499 - title: Transfer List Compiler
1500 scope: tlc
1501
Manish V Badarkhee19977d2024-08-27 10:48:38 +01001502 - title: Chain of Trust device tree to C source file
1503 scope: cot-dt2c
1504
Chris Kayf64c5582021-12-01 16:34:55 +00001505 - title: Dependencies
1506 scope: deps
1507
1508 subsections:
1509 - title: checkpatch
1510 scope: checkpatch
1511
1512 - title: commitlint
1513 scope: commitlint
1514
Daniel Boulby98a43d92022-10-05 11:03:44 +01001515 - title: Compiler runtime libraries
1516 scope: compiler-rt
1517
Chris Kaye7be9242025-02-03 11:25:43 +00001518 - title: Development dependencies
1519 scope: dev-deps
1520
Chris Kayf64c5582021-12-01 16:34:55 +00001521 - title: libfdt
1522 scope: libfdt
1523
1524 - title: Node Package Manager (NPM)
1525 scope: npm
Daniel Boulby98a43d92022-10-05 11:03:44 +01001526
dependabot[bot]075a9612023-09-06 09:55:17 +00001527 - title: Poetry
1528 scope: poetry
1529
Daniel Boulby98a43d92022-10-05 11:03:44 +01001530 - title: zlib
1531 scope: zlib