blob: 7f0c1ec5d8d624206bbf8126bd2db9f6b4c6994d [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
Tamas Ban109a4802024-02-06 11:24:51 +0100807 - title: DICE Protection Environment
808 scope: dice
809
Zelalem Aweke5362beb2022-04-04 17:42:48 -0500810 - title: Context Management
Chris Kaye76be0a2022-10-10 16:57:45 +0100811 scope: context-mgmt
812
813 deprecated:
814 - context mgmt
Zelalem Aweke5362beb2022-04-04 17:42:48 -0500815
Manish V Badarkhede920262022-09-26 15:06:56 +0100816 - title: Semihosting
817 scope: semihosting
818
Raymond Mao98983392023-07-25 07:53:35 -0700819 - title: Firmware Handoff
820 scope: handoff
821
Chris Kay82117d72021-12-01 16:34:55 +0000822 - title: Drivers
823
824 subsections:
825 - title: Authentication
826 scope: auth
827
828 deprecated:
829 - driver/auth
830
831 subsections:
832 - title: CryptoCell-713
833 scope: cc-713
834
Manish V Badarkhe8d91e982022-09-22 21:41:55 +0100835 - title: Crypto
836 scope: crypto
837
838 - title: mbedTLS
839 scope: mbedtls
840
Manish V Badarkhe538d5922023-09-22 17:54:59 +0100841 - title: mbedTLS-PSA
842 scope: mbedtls-psa
843
Yann Gautier1832d662023-01-06 17:05:48 +0100844 - title: Console
845 scope: console
846
Jayanth Dodderi Chidanandb16bc302022-05-19 11:03:07 +0100847 - title: Generic Clock
848 scope: clk
849
Chris Kay82117d72021-12-01 16:34:55 +0000850 - title: FWU
851 scope: fwu
852
853 deprecated:
854 - fwu_metadata
855
856 - title: I/O
857 scope: io
858
859 subsections:
860 - title: MTD
861 scope: mtd
862
863 deprecated:
864 - io_mtd
865
866 - title: Measured Boot
867 scope: measured-boot
868
869 deprecated:
870 - measured boot
871 - measured_boot
872
873 - title: MMC
874 scope: mmc
875
876 deprecated:
877 - drivers/mmc
878
879 - title: MTD
880 scope: mtd
881
882 deprecated:
883 - drivers/mtd
884
885 subsections:
886 - title: NAND
887 scope: nand
888
889 subsections:
890 - title: SPI NAND
891 scope: spi-nand
892
893 deprecated:
894 - spi_nand
895
Jayanth Dodderi Chidanandb16bc302022-05-19 11:03:07 +0100896 - title: GUID Partition Tables Support
897 scope: guid-partition
Sughosh Ganu540e0322022-01-19 11:31:20 +0530898
Juan Pablo Conde52487492023-05-15 22:17:17 -0500899 deprecated:
900 - partition
901
Chris Kay82117d72021-12-01 16:34:55 +0000902 - title: SCMI
903 scope: scmi
904
905 deprecated:
906 - scmi_common
907 - drivers/scmi-msg
laurenw-arm7c66fca2022-11-01 14:45:33 -0500908 - scmi-msg
Chris Kay82117d72021-12-01 16:34:55 +0000909
910 - title: UFS
911 scope: ufs
912
913 - title: Arm
914 scope: arm-drivers
915
916 subsections:
917 - title: Ethos-N
918 scope: ethos-n
919
920 deprecated:
921 - drivers/arm/ethosn
922
923 - title: GIC
924 scope: gic
925
926 subsections:
927 - title: GICv3
928 scope: gicv3
929
laurenw-arm7c66fca2022-11-01 14:45:33 -0500930 deprecated:
931 - gicv3/multichip
932
Chris Kay82117d72021-12-01 16:34:55 +0000933 subsections:
laurenw-arm7c66fca2022-11-01 14:45:33 -0500934 - title: GIC-600
935 scope: gic600
936
Chris Kay82117d72021-12-01 16:34:55 +0000937 - title: GIC-600AE
938 scope: gic600ae
939
Madhukar Pappireddydc4b8c62023-08-03 12:13:27 -0500940 - title: GICv2
941 scope: gicv2
942
Manish V Badarkhebcaeb672022-03-24 18:23:37 +0000943 - title: SMMU
944 scope: smmu
945
Jayanth Dodderi Chidanandb16bc302022-05-19 11:03:07 +0100946 - title: MHU
947 scope: mhu
948
949 deprecated:
950 - drivers/arm/mhu
951
952 - title: RSS
953 scope: rss
954
955 deprecated:
956 - drivers/arm/rss
957
Chris Kay82117d72021-12-01 16:34:55 +0000958 - title: TZC
959 scope: tzc
960
961 subsections:
962 - title: TZC-400
963 scope: tzc400
964
965 deprecated:
966 - drivers/tzc400
967
Jayanth Dodderi Chidanandb16bc302022-05-19 11:03:07 +0100968 - title: TZC-380
969 scope: tzc380
970
971 deprecated:
972 - drivers/tzc380
973
Madhukar Pappireddy4c3de562023-03-22 15:27:22 -0500974 - title: SBSA
975 scope: sbsa
976
Chris Kay82117d72021-12-01 16:34:55 +0000977 - title: Marvell
978 scope: marvell-drivers
979
980 subsections:
981 - title: COMPHY
982 scope: marvell-comphy
983
984 deprecated:
985 - drivers/marvell/comphy
986
987 subsections:
988 - title: Armada 3700
989 scope: marvell-comphy-3700
990
991 deprecated:
992 - drivers/marvell/comphy-3700
993
994 - title: CP110
995 scope: marvell-comphy-cp110
996
997 deprecated:
998 - drivers/marvell/comphy-cp110
999
1000 - title: UART
1001 scope: marvell-uart
1002
1003 deprecated:
1004 - plat/marvell/uart
1005
1006 - title: Armada
1007 scope: armada-drivers
1008
1009 subsections:
1010 - title: A3K
1011 scope: a3k-drivers
1012
1013 subsections:
1014 - title: A3720
1015 scope: a3720-uart
1016
1017 deprecated:
1018 - plat/marvell/a3720/uart
1019
1020 - title: MediaTek
1021 scope: mediatek-drivers
1022
1023 subsections:
1024 - title: APU
1025 scope: mediatek-apu
1026
1027 deprecated:
1028 - plat/mediatek/apu
1029
1030 - title: EMI MPU
1031 scope: mediatek-emi-mpu
1032
1033 deprecated:
1034 - plat/mediatek/mpu
1035
1036 - title: PMIC Wrapper
1037 scope: mediatek-pmic-wrapper
1038
1039 deprecated:
1040 - plat/mediatek/pmic_wrap
1041
1042 - title: MT8192
1043 scope: mt8192-drivers
1044
1045 subsections:
1046 - title: SPM
1047 scope: mt8192-spm
1048
1049 deprecated:
1050 - mediatek/mt8192/spm
1051
1052 - title: NXP
1053 scope: nxp-drivers
1054
1055 subsections:
1056 - title: DCFG
1057 scope: nxp-dcfg
1058
1059 deprecated:
1060 - driver/nxp/dcfg
1061
1062 - title: FLEXSPI
1063 scope: flexspi
1064
1065 deprecated:
1066 - include/drivers/flexspi
1067 - driver/nxp/xspi
1068
1069 - title: SCFG
1070 scope: nxp-scfg
1071
1072 deprecated:
1073 - nxp/scfg
1074
1075 - title: SFP
1076 scope: nxp-sfp
1077
1078 deprecated:
1079 - drivers/nxp/sfp
1080
Jiafei Pan18ba9e42022-02-10 10:39:56 +08001081 - title: QSPI
1082 scope: nxp-qspi
1083
Jiafei Pan94450412022-02-18 12:02:04 +08001084 - title: NXP Crypto
1085 scope: nxp-crypto
1086
Jiafei Panfa3f7612022-02-22 11:05:00 +08001087 - title: DDR
1088 scope: nxp-ddr
1089
1090 - title: GIC
1091 scope: nxp-gic
1092
Jayanth Dodderi Chidanandb16bc302022-05-19 11:03:07 +01001093 - title: CSU
1094 scope: nxp-csu
1095
1096 - title: IFC NAND
1097 scope: nxp-ifc-nand
1098
1099 - title: IFC NOR
1100 scope: nxp-ifc-nor
1101
1102 - title: TZC-380
1103 scope: nxp-tzc380
1104
Jacky Bai9dc47d52023-06-14 15:24:00 +08001105 - title: TRDC
1106 scope: imx-trdc
1107
Chris Kay82117d72021-12-01 16:34:55 +00001108 - title: Renesas
1109 scope: renesas-drivers
1110
1111 subsections:
1112 - title: R-Car3
1113 scope: rcar3-drivers
1114
1115 deprecated:
1116 - drivers/rcar3
1117
1118 - title: ST
1119 scope: st-drivers
1120
1121 deprecated:
1122 - drivers/st
1123
1124 subsections:
Yann Gautier9f359fd2022-01-27 09:25:47 +01001125 - title: BSEC
1126 scope: st-bsec
1127
Chris Kay82117d72021-12-01 16:34:55 +00001128 - title: Clock
1129 scope: st-clock
1130
1131 deprecated:
1132 - stm32mp_clk
1133 - drivers/st/clk
1134 - stm32mp1_clk
1135
Yann Gautier9f359fd2022-01-27 09:25:47 +01001136 - title: Crypto
1137 scope: st-crypto
1138
1139 - title: DDR
1140 scope: st-ddr
1141
Chris Kay82117d72021-12-01 16:34:55 +00001142 - title: I/O
1143 scope: st-io-drivers
1144
1145 subsections:
1146 - title: STM32 Image
1147 scope: st-io-stm32image
1148
1149 deprecated:
1150 - io-stm32image
1151 - io_stm32image
1152
Yann Gautier9f359fd2022-01-27 09:25:47 +01001153 - title: I2C
1154 scope: st-i2c
1155
1156 - title: FMC
1157 scope: st-fmc
1158
1159 - title: GPIO
1160 scope: st-gpio
1161
Chris Kay82117d72021-12-01 16:34:55 +00001162 - title: SDMMC2
1163 scope: st-sdmmc2
1164
1165 deprecated:
1166 - stm32_sdmmc2
1167
1168 - title: ST PMIC
1169 scope: st-pmic
1170
1171 deprecated:
1172 - drivers/st/pmic
1173
1174 - title: STPMIC1
1175 scope: stpmic1
1176
Yann Gautier9f359fd2022-01-27 09:25:47 +01001177 - title: Regulator
1178 scope: st-regulator
1179
1180 - title: Reset
1181 scope: st-reset
1182
1183 - title: SPI
1184 scope: st-spi
1185
Chris Kay82117d72021-12-01 16:34:55 +00001186 - title: UART
1187 scope: st-uart
1188
1189 subsections:
1190 - title: STM32 Console
1191 scope: stm32-console
1192
1193 deprecated:
1194 - stm32_console
1195
1196 - title: USB
1197 scope: st-usb
1198
1199 deprecated:
1200 - drivers/st/usb
1201
Yann Gautier9f359fd2022-01-27 09:25:47 +01001202 - title: Watchdog
1203 scope: st-iwdg
1204
Chris Kay82117d72021-12-01 16:34:55 +00001205 - title: USB
1206 scope: usb
1207
1208 deprecated:
1209 - drivers/usb
1210
1211 - title: Miscellaneous
1212
1213 subsections:
1214 - title: AArch64
1215 scope: aarch64
1216
1217 - title: Debug
1218 scope: debug
1219
1220 deprecated:
1221 - common/debug
1222
1223 - title: CRC32
1224 scope: crc32
1225
1226 subsections:
1227 - title: Hardware CRC32
1228 scope: hw-crc32
1229
1230 deprecated:
1231 - hw_crc
1232 - hw_crc32
1233
1234 - title: Software CRC32
1235 scope: sw-crc32
1236
1237 deprecated:
1238 - sw_crc32
1239
1240 - title: DT Bindings
1241 scope: dt-bindings
1242
1243 - title: FDT Wrappers
1244 scope: fdt-wrappers
1245
1246 - title: FDTs
1247 scope: fdts
1248
1249 deprecated:
1250 - fdt
1251
1252 subsections:
1253 - title: Morello
1254 scope: morello-fdts
1255
1256 deprecated:
1257 - fdts/morello
1258
1259 - title: STM32MP1
1260 scope: stm32mp1-fdts
1261
1262 deprecated:
1263 - fdts stm32mp1
1264
Yann Gautier2c962252022-07-08 15:55:14 +02001265 subsections:
1266 - title: STM32MP13
1267 scope: stm32mp13-fdts
1268
1269 - title: STM32MP15
1270 scope: stm32mp15-fdts
1271
Yann Gautier1123f662022-12-16 15:32:25 +01001272 - title: STM32MP2
1273 scope: stm32mp2-fdts
1274
Chris Kay82117d72021-12-01 16:34:55 +00001275 - title: PIE
1276 scope: pie
1277
Juan Pablo Conde52487492023-05-15 22:17:17 -05001278 - title: PIE/POR
1279 scope: pie/por
1280
Chris Kay82117d72021-12-01 16:34:55 +00001281 - title: Security
1282 scope: security
1283
1284 - title: SDEI
1285 scope: sdei
1286
1287 - title: TBBR
1288 scope: tbbr
1289
1290 - title: NXP
1291
1292 subsections:
1293 - title: OCRAM
1294 scope: nxp-ocram
1295
1296 deprecated:
1297 - nxp/common/ocram
1298
1299 - title: PSCI
1300 scope: nxp-psci
1301
1302 deprecated:
1303 - plat/nxp/common/psci
1304
Chris Kayd04a4762023-04-13 17:24:20 +01001305 - title: UUID
1306 scope: uuid
1307
Chris Kay82117d72021-12-01 16:34:55 +00001308 - title: Documentation
1309 scope: docs
1310
1311 deprecated:
1312 - doc
1313
1314 subsections:
1315 - title: Changelog
1316 scope: changelog
1317
1318 - title: Commit Style
1319 scope: commit-style
1320
1321 - title: Contribution Guidelines
1322 scope: contributing
1323
1324 deprecated:
1325 - contribution-guidelines
1326 - docs-contributing.rst
1327
1328 - title: Maintainers
1329 scope: maintainers
1330
1331 - title: Prerequisites
1332 scope: prerequisites
1333
Sandrine Bailleux3c8fdf72022-05-10 14:53:44 +02001334 - title: Threat Model
1335 scope: threat-model
1336
Sandrine Bailleuxe67bb122023-02-08 13:58:25 +01001337 - title: Porting Guide
1338 scope: porting
1339
Chris Kay82117d72021-12-01 16:34:55 +00001340 - title: Build System
1341 scope: build
1342
1343 deprecated:
1344 - makefile
1345 - Makefile
1346
1347 subsections:
1348 - title: Git Hooks
1349 scope: hooks
1350
Juan Pablo Conde52487492023-05-15 22:17:17 -05001351 deprecated:
1352 - git-hooks
1353
Chris Kay82117d72021-12-01 16:34:55 +00001354 - title: Tools
1355
1356 subsections:
1357 - title: STM32 Image
1358 scope: stm32image
1359
1360 deprecated:
1361 - tools/stm32image
1362
Jiafei Pan18ba9e42022-02-10 10:39:56 +08001363 - title: NXP Tools
1364 scope: nxp-tools
1365
Jayanth Dodderi Chidanandb16bc302022-05-19 11:03:07 +01001366 - title: Firmware Image Package Tool
1367 scope: fiptool
1368
1369 - title: Secure Partition Tool
1370 scope: sptool
1371
1372 - title: Certificate Creation Tool
1373 scope: cert-create
1374
Harrison Mutai372b8802023-02-23 11:30:17 +00001375 - title: Memory Mapping Tool
1376 scope: memmap
1377
laurenw-arm7c66fca2022-11-01 14:45:33 -05001378 deprecated:
1379 - cert_create
1380
Henrik Nordstromd95745b2023-12-04 10:31:07 +01001381 - title: Marvell Tools
1382 scope: marvell-tools
1383
Chris Kay82117d72021-12-01 16:34:55 +00001384 - title: Dependencies
1385 scope: deps
1386
1387 subsections:
1388 - title: checkpatch
1389 scope: checkpatch
1390
1391 - title: commitlint
1392 scope: commitlint
1393
Daniel Boulbyc550e702022-10-05 11:03:44 +01001394 - title: Compiler runtime libraries
1395 scope: compiler-rt
1396
Chris Kay82117d72021-12-01 16:34:55 +00001397 - title: libfdt
1398 scope: libfdt
1399
1400 - title: Node Package Manager (NPM)
1401 scope: npm
Daniel Boulbyc550e702022-10-05 11:03:44 +01001402
dependabot[bot]dba1b532023-09-06 09:55:17 +00001403 - title: Poetry
1404 scope: poetry
1405
Daniel Boulbyc550e702022-10-05 11:03:44 +01001406 - title: zlib
1407 scope: zlib