blob: 35ffaa863d512a15dba2385c51d115f4d69b39f1 [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
Andre Przywara5b005112022-11-14 15:38:58 +0000107 - title: CPU feature / ID register handling in general
108 scope: cpufeat
109
Mark Brown326f2952023-03-14 21:33:04 +0000110 - title: Guarded Control Stack (FEAT_GCS)
111 scope: gcs
112
Chris Kay82117d72021-12-01 16:34:55 +0000113 - title: Support for the `HCRX_EL2` register (FEAT_HCX)
114 scope: hcx
115
116 - title: Memory Partitioning and Monitoring (MPAM) Extension (FEAT_MPAM)
117 scope: mpam
118
laurenw-arm7c66fca2022-11-01 14:45:33 -0500119 - title: Memory Tagging Extension
120 scope: mte
121
122 - title: Pointer Authentication Extension
123 scope: pauth
124
125 - title: Performance Monitors Extension (FEAT_PMUv3)
126 scope: pmu
127
128 - title: Trapping support for RNDR/RNDRRS (FEAT_RNG_TRAP)
129 scope: rng-trap
130
Jayanth Dodderi Chidanandcfe053a2022-11-08 10:31:07 +0000131 - title: Scalable Matrix Extension (FEAT_SME, FEAT_SME2)
Chris Kay82117d72021-12-01 16:34:55 +0000132 scope: sme
133
laurenw-arm7c66fca2022-11-01 14:45:33 -0500134 - title: Statistical profiling Extension (FEAT_SPE)
135 scope: spe
136
Chris Kay82117d72021-12-01 16:34:55 +0000137 - title: Scalable Vector Extension (FEAT_SVE)
138 scope: sve
139
140 - title: System Register Trace Extensions (FEAT_ETMv4, FEAT_ETE and FEAT_ETEv1.1)
141 scope: sys-reg-trace
142
143 deprecated:
144 - sys_reg_trace
145
146 - title: Trace Buffer Extension (FEAT_TRBE)
147 scope: trbe
148
149 - title: Self-hosted Trace Extensions (FEAT_TRF)
150 scope: trf
151
152 - title: Platforms
Manish V Badarkhe5eeeb0c2023-11-21 14:35:13 +0000153 scope: platforms
154
155 deprecated:
156 - plat/common
Chris Kay82117d72021-12-01 16:34:55 +0000157
158 subsections:
159 - title: Allwinner
160 scope: allwinner
161
162 deprecated:
163 - plat/allwinner
164
165 - title: Arm
166 scope: arm
167
168 deprecated:
169 - plat/arm
170
171 subsections:
Juan Pablo Conde52487492023-05-15 22:17:17 -0500172 - title: A5DS
173 scope: a5ds
174
laurenw-arm7c66fca2022-11-01 14:45:33 -0500175 - title: CSS
176 scope: css
177
178 deprecated:
179 - plat/arm/css
Juan Pablo Conde52487492023-05-15 22:17:17 -0500180 - plat/css
laurenw-arm7c66fca2022-11-01 14:45:33 -0500181
Chris Kay82117d72021-12-01 16:34:55 +0000182 - title: FPGA
183 scope: fpga
184
185 deprecated:
186 - arm_fgpa
Chris Kay82117d72021-12-01 16:34:55 +0000187 - plat/arm_fpga
Manish V Badarkhe5eeeb0c2023-11-21 14:35:13 +0000188 - arm/fpga
Chris Kay82117d72021-12-01 16:34:55 +0000189
190 - title: FVP
191 scope: fvp
192
193 deprecated:
194 - plat/fvp
laurenw-arm7c66fca2022-11-01 14:45:33 -0500195 - fvp/tsp_manifest
Chris Kay82117d72021-12-01 16:34:55 +0000196
197 - title: FVP-R
198 scope: fvp-r
199
200 deprecated:
201 - fvp_r
202
laurenw-arm7c66fca2022-11-01 14:45:33 -0500203 - title: FVP Versatile Express
204 scope: fvp_ve
205
Chris Kay82117d72021-12-01 16:34:55 +0000206 - title: Juno
207 scope: juno
208
209 - title: Morello
210 scope: morello
211
Jayanth Dodderi Chidanandb16bc302022-05-19 11:03:07 +0100212 - title: N1SDP
213 scope: n1sdp
214
Chris Kay82117d72021-12-01 16:34:55 +0000215 - title: RD
216 scope: rd
217
218 subsections:
Juan Pablo Conde52487492023-05-15 22:17:17 -0500219 - title: RD-N1 Edge
220 scope: rdn1edge
221
Chris Kay82117d72021-12-01 16:34:55 +0000222 - title: RD-N2
223 scope: rdn2
224
225 deprecated:
226 - board/rdn2
227
228 - title: SGI
229 scope: sgi
230
231 deprecated:
232 - plat/sgi
233 - plat/arm/sgi
234
235 - title: TC
236 scope: tc
237
Juan Pablo Conde52487492023-05-15 22:17:17 -0500238 deprecated:
239 - plat/tc
240
Chris Kay82117d72021-12-01 16:34:55 +0000241 subsections:
242 - title: TC0
243 scope: tc0
244
245 deprecated:
246 - plat/tc0
247
Jayanth Dodderi Chidanandb16bc302022-05-19 11:03:07 +0100248 - title: Corstone-1000
249 scope: corstone-1000
250
Chia-Wei Wanga7556d82022-11-02 17:50:21 +0800251 - title: Aspeed
252 scope: aspeed
253
254 subsections:
255 - title: AST2700
256 scope: ast2700
257
Jayanth Dodderi Chidanandb16bc302022-05-19 11:03:07 +0100258 - title: Broadcom
259 scope: brcm
260
Manish V Badarkhe5eeeb0c2023-11-21 14:35:13 +0000261 - title: Cadence
262 scope: cadence
263
laurenw-arm7c66fca2022-11-01 14:45:33 -0500264 - title: HiSilicon
265 scope: hisilicon
266
267 subsections:
268 - title: HiKey
269 scope: hikey
270
271 - title: HiKey960
272 scope: hikey960
273
Sieu Mun Tang9f3a13c2022-02-22 14:14:26 +0800274 - title: Intel
275 scope: intel
276
277 subsections:
278 - title: SoC
279 scope: soc
280
Chris Kay82117d72021-12-01 16:34:55 +0000281 - title: Marvell
282 scope: marvell
283
284 deprecated:
285 - plat/marvell
286
287 subsections:
288 - title: Armada
289 scope: armada
290
291 deprecated:
292 - plat/marvell/armada
293
294 subsections:
295 - title: A3K
296 scope: a3k
297
298 deprecated:
299 - plat/marvell/a3k
300
301 - title: A8K
302 scope: a8k
303
304 deprecated:
305 - plat/marvell/a8k
306
307 - title: MediaTek
308 scope: mediatek
309
310 deprecated:
311 - plat/mediatek/common
312 - plat/mediatek
313
314 subsections:
315 - title: MT8183
316 scope: mt8183
317
318 deprecated:
319 - plat/mediatek/mt8183
320
laurenw-arm7c66fca2022-11-01 14:45:33 -0500321 - title: MT8186
322 scope: mt8186
323
324 deprecated:
325 - plat/mediatek/mt8186
326 - mt8186-emi-mpu
327
328 - title: MT8188
329 scope: mt8188
330
Chris Kay82117d72021-12-01 16:34:55 +0000331 - title: MT8192
332 scope: mt8192
333
334 deprecated:
335 - plat/mdeiatek/mt8192
336
337 - title: MT8195
338 scope: mt8195
339
340 deprecated:
341 - plat/mediatek/me8195
342 - plat/mediatek/mt8195
343 - plat/mdeiatek/mt8195
344
345 - title: NVIDIA
346 scope: nvidia
347
348 subsections:
349 - title: Tegra
350 scope: tegra
351
352 deprecated:
353 - plat/tegra
354
355 subsections:
356 - title: Tegra 132
357 scope: tegra132
358
Jayanth Dodderi Chidanandb16bc302022-05-19 11:03:07 +0100359 - title: Tegra 194
360 scope: tegra194
361
Juan Pablo Conde52487492023-05-15 22:17:17 -0500362 - title: Tegra 210
363 scope: tegra210
364
Chris Kay82117d72021-12-01 16:34:55 +0000365 - title: NXP
366 scope: nxp
367
368 deprecated:
369 - plat/nxp
370 - plat/nxp/common
371
372 subsections:
373 - title: i.MX
374 scope: imx
375
376 deprecated:
377 - plat/imx
378 - plat/imx/imx
379
380 subsections:
381 - title: i.MX 8M
382 scope: imx8m
383
384 deprecated:
385 - plat/imx8m
386 - plat/imx/imx8m
387
388 subsections:
Jayanth Dodderi Chidanandb16bc302022-05-19 11:03:07 +0100389 - title: i.MX 8M Nano
390 scope: imx8mn
391
392 deprecated:
393 - plat/imx/imx8m/imx8mn
394
Chris Kay82117d72021-12-01 16:34:55 +0000395 - title: i.MX 8M Mini
396 scope: imx8mm
397
398 deprecated:
399 - plat/imx/imx8m/imx8mm
400
401 - title: i.MX 8M Plus
402 scope: imx8mp
403
404 deprecated:
405 - plat/imx/imx8m/imx8mp
406
Jayanth Dodderi Chidanandb16bc302022-05-19 11:03:07 +0100407 - title: i.MX 8Q
408 scope: imx8mq
409
410 deprecated:
411 - plat/imx/imx8m/imx8mq
412
Juan Pablo Conde52487492023-05-15 22:17:17 -0500413 - title: i.MX 8
414 scope: imx8
415
Jacky Bai9dc47d52023-06-14 15:24:00 +0800416 - title: i.MX 9
417 scope: imx9
418
419 subsections:
420 - title: i.MX93
421 scope: imx93
422
Chris Kay82117d72021-12-01 16:34:55 +0000423 - title: Layerscape
424 scope: layerscape
425
426 deprecated:
427 - docs/nxp/layerscape
428
429 subsections:
430 - title: LS1028A
431 scope: ls1028a
432
433 deprecated:
434 - plat/nxp/ls1028a
435
436 subsections:
437 - title: LS1028ARDB
438 scope: ls1028ardb
439
440 deprecated:
441 - plat/nxp/ls1028ardb
442
Jayanth Dodderi Chidanandb16bc302022-05-19 11:03:07 +0100443 - title: LS1043A
444 scope: ls1043a
445
446 deprecated:
447 - plat/nxp/ls1043a
448
449 subsections:
450 - title: LS1043ARDB
451 scope: ls1043ardb
452
453 deprecated:
454 - plat/nxp/ls1043ardb
455
Chris Kay82117d72021-12-01 16:34:55 +0000456 - title: LX2
457 scope: lx2
458
459 deprecated:
460 - plat/nxp/lx2
461
462 subsections:
463 - title: LX216
464 scope: lx216
465
466 deprecated:
467 - plat/nxp/lx216x
468
469 subsections:
470 - title: LX2160
471 scope: lx2160
472
473 deprecated:
474 - plat/soc-lx2160
475
Jiafei Pan18ba9e42022-02-10 10:39:56 +0800476 - title: LS1046A
477 scope: ls1046a
478
479 subsections:
480 - title: LS1046ARDB
481 scope: ls1046ardb
482
483 - title: LS1046AFRWY
484 scope: ls1046afrwy
485
486 - title: LS1046AQDS
487 scope: ls1046aqds
488
Jiafei Pan290bf6f2022-02-24 16:00:35 +0800489 - title: LS1088A
490 scope: ls1088a
491
492 subsections:
493 - title: LS1088ARDB
494 scope: ls1088ardb
495
496 - title: LS1088AQDS
497 scope: ls1088aqds
498
Chris Kay82117d72021-12-01 16:34:55 +0000499 - title: QEMU
500 scope: qemu
501
502 deprecated:
503 - plat/qemu
504
Juan Pablo Conde52487492023-05-15 22:17:17 -0500505 subsections:
506 - title: SBSA
507 scope: qemu-sbsa
508
Manish V Badarkhe5eeeb0c2023-11-21 14:35:13 +0000509 deprecated:
510 - qemu_sbsa
511
Chris Kay82117d72021-12-01 16:34:55 +0000512 - title: QTI
513 scope: qti
514
laurenw-arm7c66fca2022-11-01 14:45:33 -0500515 deprecated:
516 - plat/qti
517
Chris Kay82117d72021-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 Gerholdd0d0bf42021-12-01 20:00:00 +0100531 - title: MSM8916
532 scope: msm8916
533
Chris Kay82117d72021-12-01 16:34:55 +0000534 - title: Raspberry Pi
535 scope: rpi
536
537 subsections:
laurenw-arm7c66fca2022-11-01 14:45:33 -0500538 - title: Raspberry Pi 3
539 scope: rpi3
540
Chris Kay82117d72021-12-01 16:34:55 +0000541 - title: Raspberry Pi 4
542 scope: rpi4
543
544 - title: Renesas
545 scope: renesas
546
547 subsections:
548 - title: R-Car
549 scope: rcar
550
551 deprecated:
552 - plat/rcar
553
554 subsections:
555 - title: R-Car 3
556 scope: rcar3
557
558 deprecated:
559 - plat/rcar3
560
561 - title: Rockchip
562 scope: rockchip
563
564 subsections:
565 - title: RK3399
566 scope: rk3399
567
568 deprecated:
569 - rockchip/rk3399
570 - rk3399/suspend
571
Diederik de Haas6a9c7312023-11-27 10:21:37 +0100572 - title: RK3328
573 scope: rk3328
574
Chris Kay82117d72021-12-01 16:34:55 +0000575 - title: Socionext
576 scope: socionext
577
578 subsections:
579 - title: Synquacer
580 scope: synquacer
581
582 deprecated:
583 - plat/synquacer
584
585 - title: ST
586 scope: st
587
588 deprecated:
589 - plat/st
590
591 subsections:
Yann Gautier14b32e82022-06-01 18:17:43 +0200592 - title: STM32MP1
Chris Kay82117d72021-12-01 16:34:55 +0000593 scope: stm32mp1
594
595 deprecated:
596 - plat/st/stm32mp1
597
Yann Gautier14b32e82022-06-01 18:17:43 +0200598 subsections:
599 - title: STM32MP13
600 scope: stm32mp13
601
602 - title: STM32MP15
603 scope: stm32mp15
604
Yann Gautier1123f662022-12-16 15:32:25 +0100605 - title: STM32MP2
606 scope: stm32mp2
607
Dave Gerlach74c19f92022-03-22 11:02:52 -0500608 - title: Texas Instruments
609 scope: ti
610
611 subsections:
612 - title: K3
613 scope: k3
614
laurenw-arm7c66fca2022-11-01 14:45:33 -0500615 deprecated:
616 - ti-k3
617
Chris Kay82117d72021-12-01 16:34:55 +0000618 - title: Xilinx
619 scope: xilinx
620
621 deprecated:
622 - plat/xilinx
623
624 subsections:
Michal Simek38d5d4d2023-09-18 10:22:48 +0200625 - title: DCC (Debug Communication Channel)
626 scope: dcc
627
Chris Kay82117d72021-12-01 16:34:55 +0000628 - title: Versal
629 scope: versal
630
631 deprecated:
632 - plat/xilinx/versal/include
633 - plat/xilinx/versal
634 - plat/versal
635
laurenw-arm7c66fca2022-11-01 14:45:33 -0500636 subsections:
637 - title: Versal NET
638 scope: versal-net
639
640 deprecated:
641 - versal_net
642
Chris Kay82117d72021-12-01 16:34:55 +0000643 - title: ZynqMP
644 scope: zynqmp
645
646 deprecated:
647 - plat/zynqmp
648 - plat/xilinx/zynqmp
649
rutigl@gmail.comdefbeed2023-03-19 09:19:05 +0200650 - title: Nuvoton
651 scope: nuvoton
652
653 subsections:
654 - title: npcm845x
655 scope: npcm845x
656
Chris Kay82117d72021-12-01 16:34:55 +0000657 - title: Bootloader Images
658 scope: bl
659
660 deprecated:
661 - bl_common
662
663 subsections:
664 - title: BL1
665 scope: bl1
666
667 - title: BL2
668 scope: bl2
669
Jayanth Dodderi Chidanandb16bc302022-05-19 11:03:07 +0100670 - title: BL31
671 scope: bl31
672
Shruti Guptac31beb62022-08-09 10:46:07 +0100673 - title: BL32
674 scope: bl32
675
676 subsections:
677 - title: TSP
678 scope: tsp
679
Chris Kay82117d72021-12-01 16:34:55 +0000680 - title: Services
681 scope: services
682
683 subsections:
684 - title: FF-A
Daniel Boulby8d74d6a2021-12-06 14:44:35 +0000685 scope: ff-a
Chris Kay82117d72021-12-01 16:34:55 +0000686
687 deprecated:
Daniel Boulby8d74d6a2021-12-06 14:44:35 +0000688 - ffa
Chris Kay82117d72021-12-01 16:34:55 +0000689
690 - title: RME
691 scope: rme
692
laurenw-arm7c66fca2022-11-01 14:45:33 -0500693 deprecated:
694 - rme/fid
695
Jayanth Dodderi Chidanandb16bc302022-05-19 11:03:07 +0100696 subsections:
697 - title: TRP
698 scope: trp
699
Javier Almansa Sobrino7176a772021-11-24 18:37:37 +0000700 - title: RMMD
701 scope: rmmd
702
Juan Pablo Conde52487492023-05-15 22:17:17 -0500703 - title: RMM
704 scope: rmm
705
Chris Kay82117d72021-12-01 16:34:55 +0000706 - title: SPM
707 scope: spm
708
Jayanth Dodderi Chidanandb16bc302022-05-19 11:03:07 +0100709 subsections:
Manish V Badarkhe5eeeb0c2023-11-21 14:35:13 +0000710 - title: EL3 SPM
711 scope: el3-spm
712
Jayanth Dodderi Chidanandb16bc302022-05-19 11:03:07 +0100713 - title: EL3 SPMC
714 scope: el3-spmc
715
laurenw-arm7c66fca2022-11-01 14:45:33 -0500716 deprecated:
717 - spmc
718
Jayanth Dodderi Chidanandb16bc302022-05-19 11:03:07 +0100719 - title: SPMD
720 scope: spmd
Daniel Boulby8d74d6a2021-12-06 14:44:35 +0000721
Jayanth Dodderi Chidanandb16bc302022-05-19 11:03:07 +0100722 - title: SPM MM
723 scope: spm-mm
Chris Kay82117d72021-12-01 16:34:55 +0000724
Manish V Badarkhe478d3ee2022-06-27 09:21:14 +0100725 - title: DRTM
726 scope: drtm
727
Jayanth Dodderi Chidanand7c7faff2022-10-11 17:16:07 +0100728 - title: TRNG
729 scope: trng
730
Sona Mathew5100bec2023-09-20 12:55:32 -0500731 - title: ERRATA ABI
732 scope: errata-abi
733
734 deprecated:
735 - errata_abi
Sona Mathew7fe03522022-11-18 18:05:38 -0600736
Chris Kay82117d72021-12-01 16:34:55 +0000737 - title: Libraries
Manish V Badarkhe5eeeb0c2023-11-21 14:35:13 +0000738 scope: lib
Chris Kay82117d72021-12-01 16:34:55 +0000739
740 subsections:
741 - title: CPU Support
742 scope: cpus
743
744 deprecated:
745 - cpu
746 - errata
747 - errata_report
748
749 - title: EL3 Runtime
750 scope: el3-runtime
751
752 deprecated:
753 - el3_runtime
754
Jayanth Dodderi Chidanandb16bc302022-05-19 11:03:07 +0100755 subsections:
756 - title: Context Management
757 scope: cm
758
laurenw-arm7c66fca2022-11-01 14:45:33 -0500759 - title: RAS
760 scope: ras
761
Chris Kay82117d72021-12-01 16:34:55 +0000762 - title: FCONF
763 scope: fconf
764
765 - title: MPMM
766 scope: mpmm
767
768 - title: OP-TEE
769 scope: optee
770
771 deprecated:
772 - lib/optee
773
774 - title: PSCI
775 scope: psci
776
Chris Kayc66b9f32024-01-15 18:45:07 +0000777 - title: ROMlib
778 scope: romlib
779
Chris Kay82117d72021-12-01 16:34:55 +0000780 - title: GPT
781 scope: gpt
782
783 deprecated:
784 - gpt_rme
785
786 - title: SMCCC
787 scope: smccc
788
789 - title: Translation Tables
790 scope: xlat
791
Jayanth Dodderi Chidanandb16bc302022-05-19 11:03:07 +0100792 - title: C Standard Library
793 scope: libc
794
795 - title: Locks
796 scope: locks
797
798 - title: PSA
799 scope: psa
800
laurenw-arm7c66fca2022-11-01 14:45:33 -0500801 deprecated:
802 - lib/psa
803
Zelalem Aweke5362beb2022-04-04 17:42:48 -0500804 - title: Context Management
Chris Kaye76be0a2022-10-10 16:57:45 +0100805 scope: context-mgmt
806
807 deprecated:
808 - context mgmt
Zelalem Aweke5362beb2022-04-04 17:42:48 -0500809
Manish V Badarkhede920262022-09-26 15:06:56 +0100810 - title: Semihosting
811 scope: semihosting
812
Raymond Mao98983392023-07-25 07:53:35 -0700813 - title: Firmware Handoff
814 scope: handoff
815
Chris Kay82117d72021-12-01 16:34:55 +0000816 - title: Drivers
817
818 subsections:
819 - title: Authentication
820 scope: auth
821
822 deprecated:
823 - driver/auth
824
825 subsections:
826 - title: CryptoCell-713
827 scope: cc-713
828
Manish V Badarkhe8d91e982022-09-22 21:41:55 +0100829 - title: Crypto
830 scope: crypto
831
832 - title: mbedTLS
833 scope: mbedtls
834
Manish V Badarkhe538d5922023-09-22 17:54:59 +0100835 - title: mbedTLS-PSA
836 scope: mbedtls-psa
837
Yann Gautier1832d662023-01-06 17:05:48 +0100838 - title: Console
839 scope: console
840
Jayanth Dodderi Chidanandb16bc302022-05-19 11:03:07 +0100841 - title: Generic Clock
842 scope: clk
843
Chris Kay82117d72021-12-01 16:34:55 +0000844 - title: FWU
845 scope: fwu
846
847 deprecated:
848 - fwu_metadata
849
850 - title: I/O
851 scope: io
852
853 subsections:
854 - title: MTD
855 scope: mtd
856
857 deprecated:
858 - io_mtd
859
860 - title: Measured Boot
861 scope: measured-boot
862
863 deprecated:
864 - measured boot
865 - measured_boot
866
867 - title: MMC
868 scope: mmc
869
870 deprecated:
871 - drivers/mmc
872
873 - title: MTD
874 scope: mtd
875
876 deprecated:
877 - drivers/mtd
878
879 subsections:
880 - title: NAND
881 scope: nand
882
883 subsections:
884 - title: SPI NAND
885 scope: spi-nand
886
887 deprecated:
888 - spi_nand
889
Jayanth Dodderi Chidanandb16bc302022-05-19 11:03:07 +0100890 - title: GUID Partition Tables Support
891 scope: guid-partition
Sughosh Ganu540e0322022-01-19 11:31:20 +0530892
Juan Pablo Conde52487492023-05-15 22:17:17 -0500893 deprecated:
894 - partition
895
Chris Kay82117d72021-12-01 16:34:55 +0000896 - title: SCMI
897 scope: scmi
898
899 deprecated:
900 - scmi_common
901 - drivers/scmi-msg
laurenw-arm7c66fca2022-11-01 14:45:33 -0500902 - scmi-msg
Chris Kay82117d72021-12-01 16:34:55 +0000903
904 - title: UFS
905 scope: ufs
906
907 - title: Arm
908 scope: arm-drivers
909
910 subsections:
911 - title: Ethos-N
912 scope: ethos-n
913
914 deprecated:
915 - drivers/arm/ethosn
916
917 - title: GIC
918 scope: gic
919
920 subsections:
921 - title: GICv3
922 scope: gicv3
923
laurenw-arm7c66fca2022-11-01 14:45:33 -0500924 deprecated:
925 - gicv3/multichip
926
Chris Kay82117d72021-12-01 16:34:55 +0000927 subsections:
laurenw-arm7c66fca2022-11-01 14:45:33 -0500928 - title: GIC-600
929 scope: gic600
930
Chris Kay82117d72021-12-01 16:34:55 +0000931 - title: GIC-600AE
932 scope: gic600ae
933
Madhukar Pappireddydc4b8c62023-08-03 12:13:27 -0500934 - title: GICv2
935 scope: gicv2
936
Manish V Badarkhebcaeb672022-03-24 18:23:37 +0000937 - title: SMMU
938 scope: smmu
939
Jayanth Dodderi Chidanandb16bc302022-05-19 11:03:07 +0100940 - title: MHU
941 scope: mhu
942
943 deprecated:
944 - drivers/arm/mhu
945
946 - title: RSS
947 scope: rss
948
949 deprecated:
950 - drivers/arm/rss
951
Chris Kay82117d72021-12-01 16:34:55 +0000952 - title: TZC
953 scope: tzc
954
955 subsections:
956 - title: TZC-400
957 scope: tzc400
958
959 deprecated:
960 - drivers/tzc400
961
Jayanth Dodderi Chidanandb16bc302022-05-19 11:03:07 +0100962 - title: TZC-380
963 scope: tzc380
964
965 deprecated:
966 - drivers/tzc380
967
Madhukar Pappireddy4c3de562023-03-22 15:27:22 -0500968 - title: SBSA
969 scope: sbsa
970
Chris Kay82117d72021-12-01 16:34:55 +0000971 - title: Marvell
972 scope: marvell-drivers
973
974 subsections:
975 - title: COMPHY
976 scope: marvell-comphy
977
978 deprecated:
979 - drivers/marvell/comphy
980
981 subsections:
982 - title: Armada 3700
983 scope: marvell-comphy-3700
984
985 deprecated:
986 - drivers/marvell/comphy-3700
987
988 - title: CP110
989 scope: marvell-comphy-cp110
990
991 deprecated:
992 - drivers/marvell/comphy-cp110
993
994 - title: UART
995 scope: marvell-uart
996
997 deprecated:
998 - plat/marvell/uart
999
1000 - title: Armada
1001 scope: armada-drivers
1002
1003 subsections:
1004 - title: A3K
1005 scope: a3k-drivers
1006
1007 subsections:
1008 - title: A3720
1009 scope: a3720-uart
1010
1011 deprecated:
1012 - plat/marvell/a3720/uart
1013
1014 - title: MediaTek
1015 scope: mediatek-drivers
1016
1017 subsections:
1018 - title: APU
1019 scope: mediatek-apu
1020
1021 deprecated:
1022 - plat/mediatek/apu
1023
1024 - title: EMI MPU
1025 scope: mediatek-emi-mpu
1026
1027 deprecated:
1028 - plat/mediatek/mpu
1029
1030 - title: PMIC Wrapper
1031 scope: mediatek-pmic-wrapper
1032
1033 deprecated:
1034 - plat/mediatek/pmic_wrap
1035
1036 - title: MT8192
1037 scope: mt8192-drivers
1038
1039 subsections:
1040 - title: SPM
1041 scope: mt8192-spm
1042
1043 deprecated:
1044 - mediatek/mt8192/spm
1045
1046 - title: NXP
1047 scope: nxp-drivers
1048
1049 subsections:
1050 - title: DCFG
1051 scope: nxp-dcfg
1052
1053 deprecated:
1054 - driver/nxp/dcfg
1055
1056 - title: FLEXSPI
1057 scope: flexspi
1058
1059 deprecated:
1060 - include/drivers/flexspi
1061 - driver/nxp/xspi
1062
1063 - title: SCFG
1064 scope: nxp-scfg
1065
1066 deprecated:
1067 - nxp/scfg
1068
1069 - title: SFP
1070 scope: nxp-sfp
1071
1072 deprecated:
1073 - drivers/nxp/sfp
1074
Jiafei Pan18ba9e42022-02-10 10:39:56 +08001075 - title: QSPI
1076 scope: nxp-qspi
1077
Jiafei Pan94450412022-02-18 12:02:04 +08001078 - title: NXP Crypto
1079 scope: nxp-crypto
1080
Jiafei Panfa3f7612022-02-22 11:05:00 +08001081 - title: DDR
1082 scope: nxp-ddr
1083
1084 - title: GIC
1085 scope: nxp-gic
1086
Jayanth Dodderi Chidanandb16bc302022-05-19 11:03:07 +01001087 - title: CSU
1088 scope: nxp-csu
1089
1090 - title: IFC NAND
1091 scope: nxp-ifc-nand
1092
1093 - title: IFC NOR
1094 scope: nxp-ifc-nor
1095
1096 - title: TZC-380
1097 scope: nxp-tzc380
1098
Jacky Bai9dc47d52023-06-14 15:24:00 +08001099 - title: TRDC
1100 scope: imx-trdc
1101
Chris Kay82117d72021-12-01 16:34:55 +00001102 - title: Renesas
1103 scope: renesas-drivers
1104
1105 subsections:
1106 - title: R-Car3
1107 scope: rcar3-drivers
1108
1109 deprecated:
1110 - drivers/rcar3
1111
1112 - title: ST
1113 scope: st-drivers
1114
1115 deprecated:
1116 - drivers/st
1117
1118 subsections:
Yann Gautier9f359fd2022-01-27 09:25:47 +01001119 - title: BSEC
1120 scope: st-bsec
1121
Chris Kay82117d72021-12-01 16:34:55 +00001122 - title: Clock
1123 scope: st-clock
1124
1125 deprecated:
1126 - stm32mp_clk
1127 - drivers/st/clk
1128 - stm32mp1_clk
1129
Yann Gautier9f359fd2022-01-27 09:25:47 +01001130 - title: Crypto
1131 scope: st-crypto
1132
1133 - title: DDR
1134 scope: st-ddr
1135
Chris Kay82117d72021-12-01 16:34:55 +00001136 - title: I/O
1137 scope: st-io-drivers
1138
1139 subsections:
1140 - title: STM32 Image
1141 scope: st-io-stm32image
1142
1143 deprecated:
1144 - io-stm32image
1145 - io_stm32image
1146
Yann Gautier9f359fd2022-01-27 09:25:47 +01001147 - title: I2C
1148 scope: st-i2c
1149
1150 - title: FMC
1151 scope: st-fmc
1152
1153 - title: GPIO
1154 scope: st-gpio
1155
Chris Kay82117d72021-12-01 16:34:55 +00001156 - title: SDMMC2
1157 scope: st-sdmmc2
1158
1159 deprecated:
1160 - stm32_sdmmc2
1161
1162 - title: ST PMIC
1163 scope: st-pmic
1164
1165 deprecated:
1166 - drivers/st/pmic
1167
1168 - title: STPMIC1
1169 scope: stpmic1
1170
Yann Gautier9f359fd2022-01-27 09:25:47 +01001171 - title: Regulator
1172 scope: st-regulator
1173
1174 - title: Reset
1175 scope: st-reset
1176
1177 - title: SPI
1178 scope: st-spi
1179
Chris Kay82117d72021-12-01 16:34:55 +00001180 - title: UART
1181 scope: st-uart
1182
1183 subsections:
1184 - title: STM32 Console
1185 scope: stm32-console
1186
1187 deprecated:
1188 - stm32_console
1189
1190 - title: USB
1191 scope: st-usb
1192
1193 deprecated:
1194 - drivers/st/usb
1195
Yann Gautier9f359fd2022-01-27 09:25:47 +01001196 - title: Watchdog
1197 scope: st-iwdg
1198
Chris Kay82117d72021-12-01 16:34:55 +00001199 - title: USB
1200 scope: usb
1201
1202 deprecated:
1203 - drivers/usb
1204
1205 - title: Miscellaneous
1206
1207 subsections:
1208 - title: AArch64
1209 scope: aarch64
1210
1211 - title: Debug
1212 scope: debug
1213
1214 deprecated:
1215 - common/debug
1216
1217 - title: CRC32
1218 scope: crc32
1219
1220 subsections:
1221 - title: Hardware CRC32
1222 scope: hw-crc32
1223
1224 deprecated:
1225 - hw_crc
1226 - hw_crc32
1227
1228 - title: Software CRC32
1229 scope: sw-crc32
1230
1231 deprecated:
1232 - sw_crc32
1233
1234 - title: DT Bindings
1235 scope: dt-bindings
1236
1237 - title: FDT Wrappers
1238 scope: fdt-wrappers
1239
1240 - title: FDTs
1241 scope: fdts
1242
1243 deprecated:
1244 - fdt
1245
1246 subsections:
1247 - title: Morello
1248 scope: morello-fdts
1249
1250 deprecated:
1251 - fdts/morello
1252
1253 - title: STM32MP1
1254 scope: stm32mp1-fdts
1255
1256 deprecated:
1257 - fdts stm32mp1
1258
Yann Gautier2c962252022-07-08 15:55:14 +02001259 subsections:
1260 - title: STM32MP13
1261 scope: stm32mp13-fdts
1262
1263 - title: STM32MP15
1264 scope: stm32mp15-fdts
1265
Yann Gautier1123f662022-12-16 15:32:25 +01001266 - title: STM32MP2
1267 scope: stm32mp2-fdts
1268
Chris Kay82117d72021-12-01 16:34:55 +00001269 - title: PIE
1270 scope: pie
1271
Juan Pablo Conde52487492023-05-15 22:17:17 -05001272 - title: PIE/POR
1273 scope: pie/por
1274
Chris Kay82117d72021-12-01 16:34:55 +00001275 - title: Security
1276 scope: security
1277
1278 - title: SDEI
1279 scope: sdei
1280
1281 - title: TBBR
1282 scope: tbbr
1283
1284 - title: NXP
1285
1286 subsections:
1287 - title: OCRAM
1288 scope: nxp-ocram
1289
1290 deprecated:
1291 - nxp/common/ocram
1292
1293 - title: PSCI
1294 scope: nxp-psci
1295
1296 deprecated:
1297 - plat/nxp/common/psci
1298
Chris Kayd04a4762023-04-13 17:24:20 +01001299 - title: UUID
1300 scope: uuid
1301
Chris Kay82117d72021-12-01 16:34:55 +00001302 - title: Documentation
1303 scope: docs
1304
1305 deprecated:
1306 - doc
1307
1308 subsections:
1309 - title: Changelog
1310 scope: changelog
1311
1312 - title: Commit Style
1313 scope: commit-style
1314
1315 - title: Contribution Guidelines
1316 scope: contributing
1317
1318 deprecated:
1319 - contribution-guidelines
1320 - docs-contributing.rst
1321
1322 - title: Maintainers
1323 scope: maintainers
1324
1325 - title: Prerequisites
1326 scope: prerequisites
1327
Sandrine Bailleux3c8fdf72022-05-10 14:53:44 +02001328 - title: Threat Model
1329 scope: threat-model
1330
Sandrine Bailleuxe67bb122023-02-08 13:58:25 +01001331 - title: Porting Guide
1332 scope: porting
1333
Chris Kay82117d72021-12-01 16:34:55 +00001334 - title: Build System
1335 scope: build
1336
1337 deprecated:
1338 - makefile
1339 - Makefile
1340
1341 subsections:
1342 - title: Git Hooks
1343 scope: hooks
1344
Juan Pablo Conde52487492023-05-15 22:17:17 -05001345 deprecated:
1346 - git-hooks
1347
Chris Kay82117d72021-12-01 16:34:55 +00001348 - title: Tools
1349
1350 subsections:
1351 - title: STM32 Image
1352 scope: stm32image
1353
1354 deprecated:
1355 - tools/stm32image
1356
Jiafei Pan18ba9e42022-02-10 10:39:56 +08001357 - title: NXP Tools
1358 scope: nxp-tools
1359
Jayanth Dodderi Chidanandb16bc302022-05-19 11:03:07 +01001360 - title: Firmware Image Package Tool
1361 scope: fiptool
1362
1363 - title: Secure Partition Tool
1364 scope: sptool
1365
1366 - title: Certificate Creation Tool
1367 scope: cert-create
1368
Harrison Mutai372b8802023-02-23 11:30:17 +00001369 - title: Memory Mapping Tool
1370 scope: memmap
1371
laurenw-arm7c66fca2022-11-01 14:45:33 -05001372 deprecated:
1373 - cert_create
1374
Henrik Nordstromd95745b2023-12-04 10:31:07 +01001375 - title: Marvell Tools
1376 scope: marvell-tools
1377
Chris Kay82117d72021-12-01 16:34:55 +00001378 - title: Dependencies
1379 scope: deps
1380
1381 subsections:
1382 - title: checkpatch
1383 scope: checkpatch
1384
1385 - title: commitlint
1386 scope: commitlint
1387
Daniel Boulbyc550e702022-10-05 11:03:44 +01001388 - title: Compiler runtime libraries
1389 scope: compiler-rt
1390
Chris Kay82117d72021-12-01 16:34:55 +00001391 - title: libfdt
1392 scope: libfdt
1393
1394 - title: Node Package Manager (NPM)
1395 scope: npm
Daniel Boulbyc550e702022-10-05 11:03:44 +01001396
dependabot[bot]dba1b532023-09-06 09:55:17 +00001397 - title: Poetry
1398 scope: poetry
1399
Daniel Boulbyc550e702022-10-05 11:03:44 +01001400 - title: zlib
1401 scope: zlib