blob: 56962910cde193673670c13a4156a767bba708cd [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 Bai4e214e42023-10-08 17:52:24 +0800416 - title: i.MX 8ULP
417 scope: imx8ulp
418
Jacky Bai9dc47d52023-06-14 15:24:00 +0800419 - title: i.MX 9
420 scope: imx9
421
422 subsections:
423 - title: i.MX93
424 scope: imx93
425
Chris Kay82117d72021-12-01 16:34:55 +0000426 - title: Layerscape
427 scope: layerscape
428
429 deprecated:
430 - docs/nxp/layerscape
431
432 subsections:
433 - title: LS1028A
434 scope: ls1028a
435
436 deprecated:
437 - plat/nxp/ls1028a
438
439 subsections:
440 - title: LS1028ARDB
441 scope: ls1028ardb
442
443 deprecated:
444 - plat/nxp/ls1028ardb
445
Jayanth Dodderi Chidanandb16bc302022-05-19 11:03:07 +0100446 - title: LS1043A
447 scope: ls1043a
448
449 deprecated:
450 - plat/nxp/ls1043a
451
452 subsections:
453 - title: LS1043ARDB
454 scope: ls1043ardb
455
456 deprecated:
457 - plat/nxp/ls1043ardb
458
Chris Kay82117d72021-12-01 16:34:55 +0000459 - title: LX2
460 scope: lx2
461
462 deprecated:
463 - plat/nxp/lx2
464
465 subsections:
466 - title: LX216
467 scope: lx216
468
469 deprecated:
470 - plat/nxp/lx216x
471
472 subsections:
473 - title: LX2160
474 scope: lx2160
475
476 deprecated:
477 - plat/soc-lx2160
478
Jiafei Pan18ba9e42022-02-10 10:39:56 +0800479 - title: LS1046A
480 scope: ls1046a
481
482 subsections:
483 - title: LS1046ARDB
484 scope: ls1046ardb
485
486 - title: LS1046AFRWY
487 scope: ls1046afrwy
488
489 - title: LS1046AQDS
490 scope: ls1046aqds
491
Jiafei Pan290bf6f2022-02-24 16:00:35 +0800492 - title: LS1088A
493 scope: ls1088a
494
495 subsections:
496 - title: LS1088ARDB
497 scope: ls1088ardb
498
499 - title: LS1088AQDS
500 scope: ls1088aqds
501
Chris Kay82117d72021-12-01 16:34:55 +0000502 - title: QEMU
503 scope: qemu
504
505 deprecated:
506 - plat/qemu
507
Juan Pablo Conde52487492023-05-15 22:17:17 -0500508 subsections:
509 - title: SBSA
510 scope: qemu-sbsa
511
Manish V Badarkhe5eeeb0c2023-11-21 14:35:13 +0000512 deprecated:
513 - qemu_sbsa
514
Chris Kay82117d72021-12-01 16:34:55 +0000515 - title: QTI
516 scope: qti
517
laurenw-arm7c66fca2022-11-01 14:45:33 -0500518 deprecated:
519 - plat/qti
520
Chris Kay82117d72021-12-01 16:34:55 +0000521 subsections:
522 - title: SC1780
523 scope: sc7180
524
525 deprecated:
526 - plat/qti/sc7180
527
528 - title: SC7280
529 scope: sc7280
530
531 deprecated:
532 - plat/qti/sc7280
533
Stephan Gerholdd0d0bf42021-12-01 20:00:00 +0100534 - title: MSM8916
535 scope: msm8916
536
Chris Kay82117d72021-12-01 16:34:55 +0000537 - title: Raspberry Pi
538 scope: rpi
539
540 subsections:
laurenw-arm7c66fca2022-11-01 14:45:33 -0500541 - title: Raspberry Pi 3
542 scope: rpi3
543
Chris Kay82117d72021-12-01 16:34:55 +0000544 - title: Raspberry Pi 4
545 scope: rpi4
546
547 - 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:
568 - title: RK3399
569 scope: rk3399
570
571 deprecated:
572 - rockchip/rk3399
573 - rk3399/suspend
574
Diederik de Haas6a9c7312023-11-27 10:21:37 +0100575 - title: RK3328
576 scope: rk3328
577
Chris Kay82117d72021-12-01 16:34:55 +0000578 - title: Socionext
579 scope: socionext
580
581 subsections:
582 - title: Synquacer
583 scope: synquacer
584
585 deprecated:
586 - plat/synquacer
587
588 - title: ST
589 scope: st
590
591 deprecated:
592 - plat/st
593
594 subsections:
Yann Gautier14b32e82022-06-01 18:17:43 +0200595 - title: STM32MP1
Chris Kay82117d72021-12-01 16:34:55 +0000596 scope: stm32mp1
597
598 deprecated:
599 - plat/st/stm32mp1
600
Yann Gautier14b32e82022-06-01 18:17:43 +0200601 subsections:
602 - title: STM32MP13
603 scope: stm32mp13
604
605 - title: STM32MP15
606 scope: stm32mp15
607
Yann Gautier1123f662022-12-16 15:32:25 +0100608 - title: STM32MP2
609 scope: stm32mp2
610
Dave Gerlach74c19f92022-03-22 11:02:52 -0500611 - title: Texas Instruments
612 scope: ti
613
614 subsections:
615 - title: K3
616 scope: k3
617
laurenw-arm7c66fca2022-11-01 14:45:33 -0500618 deprecated:
619 - ti-k3
620
Chris Kay82117d72021-12-01 16:34:55 +0000621 - title: Xilinx
622 scope: xilinx
623
624 deprecated:
625 - plat/xilinx
626
627 subsections:
Michal Simek38d5d4d2023-09-18 10:22:48 +0200628 - title: DCC (Debug Communication Channel)
629 scope: dcc
630
Chris Kay82117d72021-12-01 16:34:55 +0000631 - title: Versal
632 scope: versal
633
634 deprecated:
635 - plat/xilinx/versal/include
636 - plat/xilinx/versal
637 - plat/versal
638
laurenw-arm7c66fca2022-11-01 14:45:33 -0500639 subsections:
640 - title: Versal NET
641 scope: versal-net
642
643 deprecated:
644 - versal_net
645
Chris Kay82117d72021-12-01 16:34:55 +0000646 - title: ZynqMP
647 scope: zynqmp
648
649 deprecated:
650 - plat/zynqmp
651 - plat/xilinx/zynqmp
652
rutigl@gmail.comdefbeed2023-03-19 09:19:05 +0200653 - title: Nuvoton
654 scope: nuvoton
655
656 subsections:
657 - title: npcm845x
658 scope: npcm845x
659
Chris Kay82117d72021-12-01 16:34:55 +0000660 - title: Bootloader Images
661 scope: bl
662
663 deprecated:
664 - bl_common
665
666 subsections:
667 - title: BL1
668 scope: bl1
669
670 - title: BL2
671 scope: bl2
672
Jayanth Dodderi Chidanandb16bc302022-05-19 11:03:07 +0100673 - title: BL31
674 scope: bl31
675
Shruti Guptac31beb62022-08-09 10:46:07 +0100676 - title: BL32
677 scope: bl32
678
679 subsections:
680 - title: TSP
681 scope: tsp
682
Chris Kay82117d72021-12-01 16:34:55 +0000683 - title: Services
684 scope: services
685
686 subsections:
687 - title: FF-A
Daniel Boulby8d74d6a2021-12-06 14:44:35 +0000688 scope: ff-a
Chris Kay82117d72021-12-01 16:34:55 +0000689
690 deprecated:
Daniel Boulby8d74d6a2021-12-06 14:44:35 +0000691 - ffa
Chris Kay82117d72021-12-01 16:34:55 +0000692
693 - title: RME
694 scope: rme
695
laurenw-arm7c66fca2022-11-01 14:45:33 -0500696 deprecated:
697 - rme/fid
698
Jayanth Dodderi Chidanandb16bc302022-05-19 11:03:07 +0100699 subsections:
700 - title: TRP
701 scope: trp
702
Javier Almansa Sobrino7176a772021-11-24 18:37:37 +0000703 - title: RMMD
704 scope: rmmd
705
Juan Pablo Conde52487492023-05-15 22:17:17 -0500706 - title: RMM
707 scope: rmm
708
Chris Kay82117d72021-12-01 16:34:55 +0000709 - title: SPM
710 scope: spm
711
Jayanth Dodderi Chidanandb16bc302022-05-19 11:03:07 +0100712 subsections:
Manish V Badarkhe5eeeb0c2023-11-21 14:35:13 +0000713 - title: EL3 SPM
714 scope: el3-spm
715
Jayanth Dodderi Chidanandb16bc302022-05-19 11:03:07 +0100716 - title: EL3 SPMC
717 scope: el3-spmc
718
laurenw-arm7c66fca2022-11-01 14:45:33 -0500719 deprecated:
720 - spmc
721
Jayanth Dodderi Chidanandb16bc302022-05-19 11:03:07 +0100722 - title: SPMD
723 scope: spmd
Daniel Boulby8d74d6a2021-12-06 14:44:35 +0000724
Jayanth Dodderi Chidanandb16bc302022-05-19 11:03:07 +0100725 - title: SPM MM
726 scope: spm-mm
Chris Kay82117d72021-12-01 16:34:55 +0000727
Manish V Badarkhe478d3ee2022-06-27 09:21:14 +0100728 - title: DRTM
729 scope: drtm
730
Jayanth Dodderi Chidanand7c7faff2022-10-11 17:16:07 +0100731 - title: TRNG
732 scope: trng
733
Sona Mathew5100bec2023-09-20 12:55:32 -0500734 - title: ERRATA ABI
735 scope: errata-abi
736
737 deprecated:
738 - errata_abi
Sona Mathew7fe03522022-11-18 18:05:38 -0600739
Chris Kay82117d72021-12-01 16:34:55 +0000740 - title: Libraries
Manish V Badarkhe5eeeb0c2023-11-21 14:35:13 +0000741 scope: lib
Chris Kay82117d72021-12-01 16:34:55 +0000742
743 subsections:
744 - title: CPU Support
745 scope: cpus
746
747 deprecated:
748 - cpu
749 - errata
750 - errata_report
751
752 - title: EL3 Runtime
753 scope: el3-runtime
754
755 deprecated:
756 - el3_runtime
757
Jayanth Dodderi Chidanandb16bc302022-05-19 11:03:07 +0100758 subsections:
759 - title: Context Management
760 scope: cm
761
laurenw-arm7c66fca2022-11-01 14:45:33 -0500762 - title: RAS
763 scope: ras
764
Chris Kay82117d72021-12-01 16:34:55 +0000765 - title: FCONF
766 scope: fconf
767
768 - title: MPMM
769 scope: mpmm
770
771 - title: OP-TEE
772 scope: optee
773
774 deprecated:
775 - lib/optee
776
777 - title: PSCI
778 scope: psci
779
Chris Kayc66b9f32024-01-15 18:45:07 +0000780 - title: ROMlib
781 scope: romlib
782
Chris Kay82117d72021-12-01 16:34:55 +0000783 - title: GPT
784 scope: gpt
785
786 deprecated:
787 - gpt_rme
788
789 - title: SMCCC
790 scope: smccc
791
792 - title: Translation Tables
793 scope: xlat
794
Jayanth Dodderi Chidanandb16bc302022-05-19 11:03:07 +0100795 - title: C Standard Library
796 scope: libc
797
798 - title: Locks
799 scope: locks
800
801 - title: PSA
802 scope: psa
803
laurenw-arm7c66fca2022-11-01 14:45:33 -0500804 deprecated:
805 - lib/psa
806
Zelalem Aweke5362beb2022-04-04 17:42:48 -0500807 - title: Context Management
Chris Kaye76be0a2022-10-10 16:57:45 +0100808 scope: context-mgmt
809
810 deprecated:
811 - context mgmt
Zelalem Aweke5362beb2022-04-04 17:42:48 -0500812
Manish V Badarkhede920262022-09-26 15:06:56 +0100813 - title: Semihosting
814 scope: semihosting
815
Raymond Mao98983392023-07-25 07:53:35 -0700816 - title: Firmware Handoff
817 scope: handoff
818
Chris Kay82117d72021-12-01 16:34:55 +0000819 - title: Drivers
820
821 subsections:
822 - title: Authentication
823 scope: auth
824
825 deprecated:
826 - driver/auth
827
828 subsections:
829 - title: CryptoCell-713
830 scope: cc-713
831
Manish V Badarkhe8d91e982022-09-22 21:41:55 +0100832 - title: Crypto
833 scope: crypto
834
835 - title: mbedTLS
836 scope: mbedtls
837
Manish V Badarkhe538d5922023-09-22 17:54:59 +0100838 - title: mbedTLS-PSA
839 scope: mbedtls-psa
840
Yann Gautier1832d662023-01-06 17:05:48 +0100841 - title: Console
842 scope: console
843
Jayanth Dodderi Chidanandb16bc302022-05-19 11:03:07 +0100844 - title: Generic Clock
845 scope: clk
846
Chris Kay82117d72021-12-01 16:34:55 +0000847 - title: FWU
848 scope: fwu
849
850 deprecated:
851 - fwu_metadata
852
853 - title: I/O
854 scope: io
855
856 subsections:
857 - title: MTD
858 scope: mtd
859
860 deprecated:
861 - io_mtd
862
863 - title: Measured Boot
864 scope: measured-boot
865
866 deprecated:
867 - measured boot
868 - measured_boot
869
870 - title: MMC
871 scope: mmc
872
873 deprecated:
874 - drivers/mmc
875
876 - title: MTD
877 scope: mtd
878
879 deprecated:
880 - drivers/mtd
881
882 subsections:
883 - title: NAND
884 scope: nand
885
886 subsections:
887 - title: SPI NAND
888 scope: spi-nand
889
890 deprecated:
891 - spi_nand
892
Jayanth Dodderi Chidanandb16bc302022-05-19 11:03:07 +0100893 - title: GUID Partition Tables Support
894 scope: guid-partition
Sughosh Ganu540e0322022-01-19 11:31:20 +0530895
Juan Pablo Conde52487492023-05-15 22:17:17 -0500896 deprecated:
897 - partition
898
Chris Kay82117d72021-12-01 16:34:55 +0000899 - title: SCMI
900 scope: scmi
901
902 deprecated:
903 - scmi_common
904 - drivers/scmi-msg
laurenw-arm7c66fca2022-11-01 14:45:33 -0500905 - scmi-msg
Chris Kay82117d72021-12-01 16:34:55 +0000906
907 - title: UFS
908 scope: ufs
909
910 - title: Arm
911 scope: arm-drivers
912
913 subsections:
914 - title: Ethos-N
915 scope: ethos-n
916
917 deprecated:
918 - drivers/arm/ethosn
919
920 - title: GIC
921 scope: gic
922
923 subsections:
924 - title: GICv3
925 scope: gicv3
926
laurenw-arm7c66fca2022-11-01 14:45:33 -0500927 deprecated:
928 - gicv3/multichip
929
Chris Kay82117d72021-12-01 16:34:55 +0000930 subsections:
laurenw-arm7c66fca2022-11-01 14:45:33 -0500931 - title: GIC-600
932 scope: gic600
933
Chris Kay82117d72021-12-01 16:34:55 +0000934 - title: GIC-600AE
935 scope: gic600ae
936
Madhukar Pappireddydc4b8c62023-08-03 12:13:27 -0500937 - title: GICv2
938 scope: gicv2
939
Manish V Badarkhebcaeb672022-03-24 18:23:37 +0000940 - title: SMMU
941 scope: smmu
942
Jayanth Dodderi Chidanandb16bc302022-05-19 11:03:07 +0100943 - title: MHU
944 scope: mhu
945
946 deprecated:
947 - drivers/arm/mhu
948
949 - title: RSS
950 scope: rss
951
952 deprecated:
953 - drivers/arm/rss
954
Chris Kay82117d72021-12-01 16:34:55 +0000955 - title: TZC
956 scope: tzc
957
958 subsections:
959 - title: TZC-400
960 scope: tzc400
961
962 deprecated:
963 - drivers/tzc400
964
Jayanth Dodderi Chidanandb16bc302022-05-19 11:03:07 +0100965 - title: TZC-380
966 scope: tzc380
967
968 deprecated:
969 - drivers/tzc380
970
Madhukar Pappireddy4c3de562023-03-22 15:27:22 -0500971 - title: SBSA
972 scope: sbsa
973
Chris Kay82117d72021-12-01 16:34:55 +0000974 - title: Marvell
975 scope: marvell-drivers
976
977 subsections:
978 - title: COMPHY
979 scope: marvell-comphy
980
981 deprecated:
982 - drivers/marvell/comphy
983
984 subsections:
985 - title: Armada 3700
986 scope: marvell-comphy-3700
987
988 deprecated:
989 - drivers/marvell/comphy-3700
990
991 - title: CP110
992 scope: marvell-comphy-cp110
993
994 deprecated:
995 - drivers/marvell/comphy-cp110
996
997 - title: UART
998 scope: marvell-uart
999
1000 deprecated:
1001 - plat/marvell/uart
1002
1003 - title: Armada
1004 scope: armada-drivers
1005
1006 subsections:
1007 - title: A3K
1008 scope: a3k-drivers
1009
1010 subsections:
1011 - title: A3720
1012 scope: a3720-uart
1013
1014 deprecated:
1015 - plat/marvell/a3720/uart
1016
1017 - title: MediaTek
1018 scope: mediatek-drivers
1019
1020 subsections:
1021 - title: APU
1022 scope: mediatek-apu
1023
1024 deprecated:
1025 - plat/mediatek/apu
1026
1027 - title: EMI MPU
1028 scope: mediatek-emi-mpu
1029
1030 deprecated:
1031 - plat/mediatek/mpu
1032
1033 - title: PMIC Wrapper
1034 scope: mediatek-pmic-wrapper
1035
1036 deprecated:
1037 - plat/mediatek/pmic_wrap
1038
1039 - title: MT8192
1040 scope: mt8192-drivers
1041
1042 subsections:
1043 - title: SPM
1044 scope: mt8192-spm
1045
1046 deprecated:
1047 - mediatek/mt8192/spm
1048
1049 - title: NXP
1050 scope: nxp-drivers
1051
1052 subsections:
1053 - title: DCFG
1054 scope: nxp-dcfg
1055
1056 deprecated:
1057 - driver/nxp/dcfg
1058
1059 - title: FLEXSPI
1060 scope: flexspi
1061
1062 deprecated:
1063 - include/drivers/flexspi
1064 - driver/nxp/xspi
1065
1066 - title: SCFG
1067 scope: nxp-scfg
1068
1069 deprecated:
1070 - nxp/scfg
1071
1072 - title: SFP
1073 scope: nxp-sfp
1074
1075 deprecated:
1076 - drivers/nxp/sfp
1077
Jiafei Pan18ba9e42022-02-10 10:39:56 +08001078 - title: QSPI
1079 scope: nxp-qspi
1080
Jiafei Pan94450412022-02-18 12:02:04 +08001081 - title: NXP Crypto
1082 scope: nxp-crypto
1083
Jiafei Panfa3f7612022-02-22 11:05:00 +08001084 - title: DDR
1085 scope: nxp-ddr
1086
1087 - title: GIC
1088 scope: nxp-gic
1089
Jayanth Dodderi Chidanandb16bc302022-05-19 11:03:07 +01001090 - title: CSU
1091 scope: nxp-csu
1092
1093 - title: IFC NAND
1094 scope: nxp-ifc-nand
1095
1096 - title: IFC NOR
1097 scope: nxp-ifc-nor
1098
1099 - title: TZC-380
1100 scope: nxp-tzc380
1101
Jacky Bai9dc47d52023-06-14 15:24:00 +08001102 - title: TRDC
1103 scope: imx-trdc
1104
Chris Kay82117d72021-12-01 16:34:55 +00001105 - title: Renesas
1106 scope: renesas-drivers
1107
1108 subsections:
1109 - title: R-Car3
1110 scope: rcar3-drivers
1111
1112 deprecated:
1113 - drivers/rcar3
1114
1115 - title: ST
1116 scope: st-drivers
1117
1118 deprecated:
1119 - drivers/st
1120
1121 subsections:
Yann Gautier9f359fd2022-01-27 09:25:47 +01001122 - title: BSEC
1123 scope: st-bsec
1124
Chris Kay82117d72021-12-01 16:34:55 +00001125 - title: Clock
1126 scope: st-clock
1127
1128 deprecated:
1129 - stm32mp_clk
1130 - drivers/st/clk
1131 - stm32mp1_clk
1132
Yann Gautier9f359fd2022-01-27 09:25:47 +01001133 - title: Crypto
1134 scope: st-crypto
1135
1136 - title: DDR
1137 scope: st-ddr
1138
Chris Kay82117d72021-12-01 16:34:55 +00001139 - title: I/O
1140 scope: st-io-drivers
1141
1142 subsections:
1143 - title: STM32 Image
1144 scope: st-io-stm32image
1145
1146 deprecated:
1147 - io-stm32image
1148 - io_stm32image
1149
Yann Gautier9f359fd2022-01-27 09:25:47 +01001150 - title: I2C
1151 scope: st-i2c
1152
1153 - title: FMC
1154 scope: st-fmc
1155
1156 - title: GPIO
1157 scope: st-gpio
1158
Chris Kay82117d72021-12-01 16:34:55 +00001159 - title: SDMMC2
1160 scope: st-sdmmc2
1161
1162 deprecated:
1163 - stm32_sdmmc2
1164
1165 - title: ST PMIC
1166 scope: st-pmic
1167
1168 deprecated:
1169 - drivers/st/pmic
1170
1171 - title: STPMIC1
1172 scope: stpmic1
1173
Yann Gautier9f359fd2022-01-27 09:25:47 +01001174 - title: Regulator
1175 scope: st-regulator
1176
1177 - title: Reset
1178 scope: st-reset
1179
1180 - title: SPI
1181 scope: st-spi
1182
Chris Kay82117d72021-12-01 16:34:55 +00001183 - title: UART
1184 scope: st-uart
1185
1186 subsections:
1187 - title: STM32 Console
1188 scope: stm32-console
1189
1190 deprecated:
1191 - stm32_console
1192
1193 - title: USB
1194 scope: st-usb
1195
1196 deprecated:
1197 - drivers/st/usb
1198
Yann Gautier9f359fd2022-01-27 09:25:47 +01001199 - title: Watchdog
1200 scope: st-iwdg
1201
Chris Kay82117d72021-12-01 16:34:55 +00001202 - title: USB
1203 scope: usb
1204
1205 deprecated:
1206 - drivers/usb
1207
1208 - title: Miscellaneous
1209
1210 subsections:
1211 - title: AArch64
1212 scope: aarch64
1213
1214 - title: Debug
1215 scope: debug
1216
1217 deprecated:
1218 - common/debug
1219
1220 - title: CRC32
1221 scope: crc32
1222
1223 subsections:
1224 - title: Hardware CRC32
1225 scope: hw-crc32
1226
1227 deprecated:
1228 - hw_crc
1229 - hw_crc32
1230
1231 - title: Software CRC32
1232 scope: sw-crc32
1233
1234 deprecated:
1235 - sw_crc32
1236
1237 - title: DT Bindings
1238 scope: dt-bindings
1239
1240 - title: FDT Wrappers
1241 scope: fdt-wrappers
1242
1243 - title: FDTs
1244 scope: fdts
1245
1246 deprecated:
1247 - fdt
1248
1249 subsections:
1250 - title: Morello
1251 scope: morello-fdts
1252
1253 deprecated:
1254 - fdts/morello
1255
1256 - title: STM32MP1
1257 scope: stm32mp1-fdts
1258
1259 deprecated:
1260 - fdts stm32mp1
1261
Yann Gautier2c962252022-07-08 15:55:14 +02001262 subsections:
1263 - title: STM32MP13
1264 scope: stm32mp13-fdts
1265
1266 - title: STM32MP15
1267 scope: stm32mp15-fdts
1268
Yann Gautier1123f662022-12-16 15:32:25 +01001269 - title: STM32MP2
1270 scope: stm32mp2-fdts
1271
Chris Kay82117d72021-12-01 16:34:55 +00001272 - title: PIE
1273 scope: pie
1274
Juan Pablo Conde52487492023-05-15 22:17:17 -05001275 - title: PIE/POR
1276 scope: pie/por
1277
Chris Kay82117d72021-12-01 16:34:55 +00001278 - title: Security
1279 scope: security
1280
1281 - title: SDEI
1282 scope: sdei
1283
1284 - title: TBBR
1285 scope: tbbr
1286
1287 - title: NXP
1288
1289 subsections:
1290 - title: OCRAM
1291 scope: nxp-ocram
1292
1293 deprecated:
1294 - nxp/common/ocram
1295
1296 - title: PSCI
1297 scope: nxp-psci
1298
1299 deprecated:
1300 - plat/nxp/common/psci
1301
Chris Kayd04a4762023-04-13 17:24:20 +01001302 - title: UUID
1303 scope: uuid
1304
Chris Kay82117d72021-12-01 16:34:55 +00001305 - title: Documentation
1306 scope: docs
1307
1308 deprecated:
1309 - doc
1310
1311 subsections:
1312 - title: Changelog
1313 scope: changelog
1314
1315 - title: Commit Style
1316 scope: commit-style
1317
1318 - title: Contribution Guidelines
1319 scope: contributing
1320
1321 deprecated:
1322 - contribution-guidelines
1323 - docs-contributing.rst
1324
1325 - title: Maintainers
1326 scope: maintainers
1327
1328 - title: Prerequisites
1329 scope: prerequisites
1330
Sandrine Bailleux3c8fdf72022-05-10 14:53:44 +02001331 - title: Threat Model
1332 scope: threat-model
1333
Sandrine Bailleuxe67bb122023-02-08 13:58:25 +01001334 - title: Porting Guide
1335 scope: porting
1336
Chris Kay82117d72021-12-01 16:34:55 +00001337 - title: Build System
1338 scope: build
1339
1340 deprecated:
1341 - makefile
1342 - Makefile
1343
1344 subsections:
1345 - title: Git Hooks
1346 scope: hooks
1347
Juan Pablo Conde52487492023-05-15 22:17:17 -05001348 deprecated:
1349 - git-hooks
1350
Chris Kay82117d72021-12-01 16:34:55 +00001351 - title: Tools
1352
1353 subsections:
1354 - title: STM32 Image
1355 scope: stm32image
1356
1357 deprecated:
1358 - tools/stm32image
1359
Jiafei Pan18ba9e42022-02-10 10:39:56 +08001360 - title: NXP Tools
1361 scope: nxp-tools
1362
Jayanth Dodderi Chidanandb16bc302022-05-19 11:03:07 +01001363 - title: Firmware Image Package Tool
1364 scope: fiptool
1365
1366 - title: Secure Partition Tool
1367 scope: sptool
1368
1369 - title: Certificate Creation Tool
1370 scope: cert-create
1371
Harrison Mutai372b8802023-02-23 11:30:17 +00001372 - title: Memory Mapping Tool
1373 scope: memmap
1374
laurenw-arm7c66fca2022-11-01 14:45:33 -05001375 deprecated:
1376 - cert_create
1377
Henrik Nordstromd95745b2023-12-04 10:31:07 +01001378 - title: Marvell Tools
1379 scope: marvell-tools
1380
Chris Kay82117d72021-12-01 16:34:55 +00001381 - title: Dependencies
1382 scope: deps
1383
1384 subsections:
1385 - title: checkpatch
1386 scope: checkpatch
1387
1388 - title: commitlint
1389 scope: commitlint
1390
Daniel Boulbyc550e702022-10-05 11:03:44 +01001391 - title: Compiler runtime libraries
1392 scope: compiler-rt
1393
Chris Kay82117d72021-12-01 16:34:55 +00001394 - title: libfdt
1395 scope: libfdt
1396
1397 - title: Node Package Manager (NPM)
1398 scope: npm
Daniel Boulbyc550e702022-10-05 11:03:44 +01001399
dependabot[bot]dba1b532023-09-06 09:55:17 +00001400 - title: Poetry
1401 scope: poetry
1402
Daniel Boulbyc550e702022-10-05 11:03:44 +01001403 - title: zlib
1404 scope: zlib