blob: f21aa16014c4164a9cc02731bb588f6faa3457d7 [file] [log] [blame]
Chris Kay82117d72021-12-01 16:34:55 +00001#
Yann Gautier1832d662023-01-06 17:05:48 +01002# Copyright (c) 2021-2023, 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
153
154 subsections:
155 - title: Allwinner
156 scope: allwinner
157
158 deprecated:
159 - plat/allwinner
160
161 - title: Arm
162 scope: arm
163
164 deprecated:
165 - plat/arm
166
167 subsections:
Juan Pablo Conde52487492023-05-15 22:17:17 -0500168 - title: A5DS
169 scope: a5ds
170
laurenw-arm7c66fca2022-11-01 14:45:33 -0500171 - title: CSS
172 scope: css
173
174 deprecated:
175 - plat/arm/css
Juan Pablo Conde52487492023-05-15 22:17:17 -0500176 - plat/css
laurenw-arm7c66fca2022-11-01 14:45:33 -0500177
Chris Kay82117d72021-12-01 16:34:55 +0000178 - title: FPGA
179 scope: fpga
180
181 deprecated:
182 - arm_fgpa
183 - arm_fpga
184 - plat/arm_fpga
185
186 - title: FVP
187 scope: fvp
188
189 deprecated:
190 - plat/fvp
laurenw-arm7c66fca2022-11-01 14:45:33 -0500191 - fvp/tsp_manifest
Chris Kay82117d72021-12-01 16:34:55 +0000192
193 - title: FVP-R
194 scope: fvp-r
195
196 deprecated:
197 - fvp_r
198
laurenw-arm7c66fca2022-11-01 14:45:33 -0500199 - title: FVP Versatile Express
200 scope: fvp_ve
201
Chris Kay82117d72021-12-01 16:34:55 +0000202 - title: Juno
203 scope: juno
204
205 - title: Morello
206 scope: morello
207
Jayanth Dodderi Chidanandb16bc302022-05-19 11:03:07 +0100208 - title: N1SDP
209 scope: n1sdp
210
Chris Kay82117d72021-12-01 16:34:55 +0000211 - title: RD
212 scope: rd
213
214 subsections:
Juan Pablo Conde52487492023-05-15 22:17:17 -0500215 - title: RD-N1 Edge
216 scope: rdn1edge
217
Chris Kay82117d72021-12-01 16:34:55 +0000218 - title: RD-N2
219 scope: rdn2
220
221 deprecated:
222 - board/rdn2
223
224 - title: SGI
225 scope: sgi
226
227 deprecated:
228 - plat/sgi
229 - plat/arm/sgi
230
231 - title: TC
232 scope: tc
233
Juan Pablo Conde52487492023-05-15 22:17:17 -0500234 deprecated:
235 - plat/tc
236
Chris Kay82117d72021-12-01 16:34:55 +0000237 subsections:
238 - title: TC0
239 scope: tc0
240
241 deprecated:
242 - plat/tc0
243
Jayanth Dodderi Chidanandb16bc302022-05-19 11:03:07 +0100244 - title: Corstone-1000
245 scope: corstone-1000
246
Chia-Wei Wanga7556d82022-11-02 17:50:21 +0800247 - title: Aspeed
248 scope: aspeed
249
250 subsections:
251 - title: AST2700
252 scope: ast2700
253
Jayanth Dodderi Chidanandb16bc302022-05-19 11:03:07 +0100254 - title: Broadcom
255 scope: brcm
256
laurenw-arm7c66fca2022-11-01 14:45:33 -0500257 - title: HiSilicon
258 scope: hisilicon
259
260 subsections:
261 - title: HiKey
262 scope: hikey
263
264 - title: HiKey960
265 scope: hikey960
266
Sieu Mun Tang9f3a13c2022-02-22 14:14:26 +0800267 - title: Intel
268 scope: intel
269
270 subsections:
271 - title: SoC
272 scope: soc
273
Chris Kay82117d72021-12-01 16:34:55 +0000274 - title: Marvell
275 scope: marvell
276
277 deprecated:
278 - plat/marvell
279
280 subsections:
281 - title: Armada
282 scope: armada
283
284 deprecated:
285 - plat/marvell/armada
286
287 subsections:
288 - title: A3K
289 scope: a3k
290
291 deprecated:
292 - plat/marvell/a3k
293
294 - title: A8K
295 scope: a8k
296
297 deprecated:
298 - plat/marvell/a8k
299
300 - title: MediaTek
301 scope: mediatek
302
303 deprecated:
304 - plat/mediatek/common
305 - plat/mediatek
306
307 subsections:
308 - title: MT8183
309 scope: mt8183
310
311 deprecated:
312 - plat/mediatek/mt8183
313
laurenw-arm7c66fca2022-11-01 14:45:33 -0500314 - title: MT8186
315 scope: mt8186
316
317 deprecated:
318 - plat/mediatek/mt8186
319 - mt8186-emi-mpu
320
321 - title: MT8188
322 scope: mt8188
323
Chris Kay82117d72021-12-01 16:34:55 +0000324 - title: MT8192
325 scope: mt8192
326
327 deprecated:
328 - plat/mdeiatek/mt8192
329
330 - title: MT8195
331 scope: mt8195
332
333 deprecated:
334 - plat/mediatek/me8195
335 - plat/mediatek/mt8195
336 - plat/mdeiatek/mt8195
337
338 - title: NVIDIA
339 scope: nvidia
340
341 subsections:
342 - title: Tegra
343 scope: tegra
344
345 deprecated:
346 - plat/tegra
347
348 subsections:
349 - title: Tegra 132
350 scope: tegra132
351
Jayanth Dodderi Chidanandb16bc302022-05-19 11:03:07 +0100352 - title: Tegra 194
353 scope: tegra194
354
Juan Pablo Conde52487492023-05-15 22:17:17 -0500355 - title: Tegra 210
356 scope: tegra210
357
Chris Kay82117d72021-12-01 16:34:55 +0000358 - title: NXP
359 scope: nxp
360
361 deprecated:
362 - plat/nxp
363 - plat/nxp/common
364
365 subsections:
366 - title: i.MX
367 scope: imx
368
369 deprecated:
370 - plat/imx
371 - plat/imx/imx
372
373 subsections:
374 - title: i.MX 8M
375 scope: imx8m
376
377 deprecated:
378 - plat/imx8m
379 - plat/imx/imx8m
380
381 subsections:
Jayanth Dodderi Chidanandb16bc302022-05-19 11:03:07 +0100382 - title: i.MX 8M Nano
383 scope: imx8mn
384
385 deprecated:
386 - plat/imx/imx8m/imx8mn
387
Chris Kay82117d72021-12-01 16:34:55 +0000388 - title: i.MX 8M Mini
389 scope: imx8mm
390
391 deprecated:
392 - plat/imx/imx8m/imx8mm
393
394 - title: i.MX 8M Plus
395 scope: imx8mp
396
397 deprecated:
398 - plat/imx/imx8m/imx8mp
399
Jayanth Dodderi Chidanandb16bc302022-05-19 11:03:07 +0100400 - title: i.MX 8Q
401 scope: imx8mq
402
403 deprecated:
404 - plat/imx/imx8m/imx8mq
405
Juan Pablo Conde52487492023-05-15 22:17:17 -0500406 - title: i.MX 8
407 scope: imx8
408
Chris Kay82117d72021-12-01 16:34:55 +0000409 - title: Layerscape
410 scope: layerscape
411
412 deprecated:
413 - docs/nxp/layerscape
414
415 subsections:
416 - title: LS1028A
417 scope: ls1028a
418
419 deprecated:
420 - plat/nxp/ls1028a
421
422 subsections:
423 - title: LS1028ARDB
424 scope: ls1028ardb
425
426 deprecated:
427 - plat/nxp/ls1028ardb
428
Jayanth Dodderi Chidanandb16bc302022-05-19 11:03:07 +0100429 - title: LS1043A
430 scope: ls1043a
431
432 deprecated:
433 - plat/nxp/ls1043a
434
435 subsections:
436 - title: LS1043ARDB
437 scope: ls1043ardb
438
439 deprecated:
440 - plat/nxp/ls1043ardb
441
Chris Kay82117d72021-12-01 16:34:55 +0000442 - title: LX2
443 scope: lx2
444
445 deprecated:
446 - plat/nxp/lx2
447
448 subsections:
449 - title: LX216
450 scope: lx216
451
452 deprecated:
453 - plat/nxp/lx216x
454
455 subsections:
456 - title: LX2160
457 scope: lx2160
458
459 deprecated:
460 - plat/soc-lx2160
461
Jiafei Pan18ba9e42022-02-10 10:39:56 +0800462 - title: LS1046A
463 scope: ls1046a
464
465 subsections:
466 - title: LS1046ARDB
467 scope: ls1046ardb
468
469 - title: LS1046AFRWY
470 scope: ls1046afrwy
471
472 - title: LS1046AQDS
473 scope: ls1046aqds
474
Jiafei Pan290bf6f2022-02-24 16:00:35 +0800475 - title: LS1088A
476 scope: ls1088a
477
478 subsections:
479 - title: LS1088ARDB
480 scope: ls1088ardb
481
482 - title: LS1088AQDS
483 scope: ls1088aqds
484
Chris Kay82117d72021-12-01 16:34:55 +0000485 - title: QEMU
486 scope: qemu
487
488 deprecated:
489 - plat/qemu
490
Juan Pablo Conde52487492023-05-15 22:17:17 -0500491 subsections:
492 - title: SBSA
493 scope: qemu-sbsa
494
Chris Kay82117d72021-12-01 16:34:55 +0000495 - title: QTI
496 scope: qti
497
laurenw-arm7c66fca2022-11-01 14:45:33 -0500498 deprecated:
499 - plat/qti
500
Chris Kay82117d72021-12-01 16:34:55 +0000501 subsections:
502 - title: SC1780
503 scope: sc7180
504
505 deprecated:
506 - plat/qti/sc7180
507
508 - title: SC7280
509 scope: sc7280
510
511 deprecated:
512 - plat/qti/sc7280
513
Stephan Gerholdd0d0bf42021-12-01 20:00:00 +0100514 - title: MSM8916
515 scope: msm8916
516
Chris Kay82117d72021-12-01 16:34:55 +0000517 - title: Raspberry Pi
518 scope: rpi
519
520 subsections:
laurenw-arm7c66fca2022-11-01 14:45:33 -0500521 - title: Raspberry Pi 3
522 scope: rpi3
523
Chris Kay82117d72021-12-01 16:34:55 +0000524 - title: Raspberry Pi 4
525 scope: rpi4
526
527 - title: Renesas
528 scope: renesas
529
530 subsections:
531 - title: R-Car
532 scope: rcar
533
534 deprecated:
535 - plat/rcar
536
537 subsections:
538 - title: R-Car 3
539 scope: rcar3
540
541 deprecated:
542 - plat/rcar3
543
544 - title: Rockchip
545 scope: rockchip
546
547 subsections:
548 - title: RK3399
549 scope: rk3399
550
551 deprecated:
552 - rockchip/rk3399
553 - rk3399/suspend
554
555 - title: Socionext
556 scope: socionext
557
558 subsections:
559 - title: Synquacer
560 scope: synquacer
561
562 deprecated:
563 - plat/synquacer
564
565 - title: ST
566 scope: st
567
568 deprecated:
569 - plat/st
570
571 subsections:
Yann Gautier14b32e82022-06-01 18:17:43 +0200572 - title: STM32MP1
Chris Kay82117d72021-12-01 16:34:55 +0000573 scope: stm32mp1
574
575 deprecated:
576 - plat/st/stm32mp1
577
Yann Gautier14b32e82022-06-01 18:17:43 +0200578 subsections:
579 - title: STM32MP13
580 scope: stm32mp13
581
582 - title: STM32MP15
583 scope: stm32mp15
584
Dave Gerlach74c19f92022-03-22 11:02:52 -0500585 - title: Texas Instruments
586 scope: ti
587
588 subsections:
589 - title: K3
590 scope: k3
591
laurenw-arm7c66fca2022-11-01 14:45:33 -0500592 deprecated:
593 - ti-k3
594
Chris Kay82117d72021-12-01 16:34:55 +0000595 - title: Xilinx
596 scope: xilinx
597
598 deprecated:
599 - plat/xilinx
600
601 subsections:
602 - title: Versal
603 scope: versal
604
605 deprecated:
606 - plat/xilinx/versal/include
607 - plat/xilinx/versal
608 - plat/versal
609
laurenw-arm7c66fca2022-11-01 14:45:33 -0500610 subsections:
611 - title: Versal NET
612 scope: versal-net
613
614 deprecated:
615 - versal_net
616
Chris Kay82117d72021-12-01 16:34:55 +0000617 - title: ZynqMP
618 scope: zynqmp
619
620 deprecated:
621 - plat/zynqmp
622 - plat/xilinx/zynqmp
623
624 - title: Bootloader Images
625 scope: bl
626
627 deprecated:
628 - bl_common
629
630 subsections:
631 - title: BL1
632 scope: bl1
633
634 - title: BL2
635 scope: bl2
636
Jayanth Dodderi Chidanandb16bc302022-05-19 11:03:07 +0100637 - title: BL31
638 scope: bl31
639
Shruti Guptac31beb62022-08-09 10:46:07 +0100640 - title: BL32
641 scope: bl32
642
643 subsections:
644 - title: TSP
645 scope: tsp
646
Chris Kay82117d72021-12-01 16:34:55 +0000647 - title: Services
648 scope: services
649
650 subsections:
651 - title: FF-A
Daniel Boulby8d74d6a2021-12-06 14:44:35 +0000652 scope: ff-a
Chris Kay82117d72021-12-01 16:34:55 +0000653
654 deprecated:
Daniel Boulby8d74d6a2021-12-06 14:44:35 +0000655 - ffa
Chris Kay82117d72021-12-01 16:34:55 +0000656
657 - title: RME
658 scope: rme
659
laurenw-arm7c66fca2022-11-01 14:45:33 -0500660 deprecated:
661 - rme/fid
662
Jayanth Dodderi Chidanandb16bc302022-05-19 11:03:07 +0100663 subsections:
664 - title: TRP
665 scope: trp
666
Javier Almansa Sobrino7176a772021-11-24 18:37:37 +0000667 - title: RMMD
668 scope: rmmd
669
Juan Pablo Conde52487492023-05-15 22:17:17 -0500670 - title: RMM
671 scope: rmm
672
Chris Kay82117d72021-12-01 16:34:55 +0000673 - title: SPM
674 scope: spm
675
Jayanth Dodderi Chidanandb16bc302022-05-19 11:03:07 +0100676 subsections:
677 - title: EL3 SPMC
678 scope: el3-spmc
679
laurenw-arm7c66fca2022-11-01 14:45:33 -0500680 deprecated:
681 - spmc
682
Jayanth Dodderi Chidanandb16bc302022-05-19 11:03:07 +0100683 - title: SPMD
684 scope: spmd
Daniel Boulby8d74d6a2021-12-06 14:44:35 +0000685
Jayanth Dodderi Chidanandb16bc302022-05-19 11:03:07 +0100686 - title: SPM MM
687 scope: spm-mm
Chris Kay82117d72021-12-01 16:34:55 +0000688
Manish V Badarkhe478d3ee2022-06-27 09:21:14 +0100689 - title: DRTM
690 scope: drtm
691
Jayanth Dodderi Chidanand7c7faff2022-10-11 17:16:07 +0100692 - title: TRNG
693 scope: trng
694
Sona Mathew7fe03522022-11-18 18:05:38 -0600695 - title: ERRATA_ABI
696 scope: errata_abi
697
Chris Kay82117d72021-12-01 16:34:55 +0000698 - title: Libraries
699
700 subsections:
701 - title: CPU Support
702 scope: cpus
703
704 deprecated:
705 - cpu
706 - errata
707 - errata_report
708
709 - title: EL3 Runtime
710 scope: el3-runtime
711
712 deprecated:
713 - el3_runtime
714
Jayanth Dodderi Chidanandb16bc302022-05-19 11:03:07 +0100715 subsections:
716 - title: Context Management
717 scope: cm
718
laurenw-arm7c66fca2022-11-01 14:45:33 -0500719 - title: RAS
720 scope: ras
721
Chris Kay82117d72021-12-01 16:34:55 +0000722 - title: FCONF
723 scope: fconf
724
725 - title: MPMM
726 scope: mpmm
727
728 - title: OP-TEE
729 scope: optee
730
731 deprecated:
732 - lib/optee
733
734 - title: PSCI
735 scope: psci
736
737 - title: GPT
738 scope: gpt
739
740 deprecated:
741 - gpt_rme
742
743 - title: SMCCC
744 scope: smccc
745
746 - title: Translation Tables
747 scope: xlat
748
Jayanth Dodderi Chidanandb16bc302022-05-19 11:03:07 +0100749 - title: C Standard Library
750 scope: libc
751
752 - title: Locks
753 scope: locks
754
755 - title: PSA
756 scope: psa
757
laurenw-arm7c66fca2022-11-01 14:45:33 -0500758 deprecated:
759 - lib/psa
760
Zelalem Aweke5362beb2022-04-04 17:42:48 -0500761 - title: Context Management
Chris Kaye76be0a2022-10-10 16:57:45 +0100762 scope: context-mgmt
763
764 deprecated:
765 - context mgmt
Zelalem Aweke5362beb2022-04-04 17:42:48 -0500766
Manish V Badarkhede920262022-09-26 15:06:56 +0100767 - title: Semihosting
768 scope: semihosting
769
Chris Kay82117d72021-12-01 16:34:55 +0000770 - title: Drivers
771
772 subsections:
773 - title: Authentication
774 scope: auth
775
776 deprecated:
777 - driver/auth
778
779 subsections:
780 - title: CryptoCell-713
781 scope: cc-713
782
Manish V Badarkhe8d91e982022-09-22 21:41:55 +0100783 - title: Crypto
784 scope: crypto
785
786 - title: mbedTLS
787 scope: mbedtls
788
Yann Gautier1832d662023-01-06 17:05:48 +0100789 - title: Console
790 scope: console
791
Jayanth Dodderi Chidanandb16bc302022-05-19 11:03:07 +0100792 - title: Generic Clock
793 scope: clk
794
Chris Kay82117d72021-12-01 16:34:55 +0000795 - title: FWU
796 scope: fwu
797
798 deprecated:
799 - fwu_metadata
800
801 - title: I/O
802 scope: io
803
804 subsections:
805 - title: MTD
806 scope: mtd
807
808 deprecated:
809 - io_mtd
810
811 - title: Measured Boot
812 scope: measured-boot
813
814 deprecated:
815 - measured boot
816 - measured_boot
817
818 - title: MMC
819 scope: mmc
820
821 deprecated:
822 - drivers/mmc
823
824 - title: MTD
825 scope: mtd
826
827 deprecated:
828 - drivers/mtd
829
830 subsections:
831 - title: NAND
832 scope: nand
833
834 subsections:
835 - title: SPI NAND
836 scope: spi-nand
837
838 deprecated:
839 - spi_nand
840
Jayanth Dodderi Chidanandb16bc302022-05-19 11:03:07 +0100841 - title: GUID Partition Tables Support
842 scope: guid-partition
Sughosh Ganu540e0322022-01-19 11:31:20 +0530843
Juan Pablo Conde52487492023-05-15 22:17:17 -0500844 deprecated:
845 - partition
846
Chris Kay82117d72021-12-01 16:34:55 +0000847 - title: SCMI
848 scope: scmi
849
850 deprecated:
851 - scmi_common
852 - drivers/scmi-msg
laurenw-arm7c66fca2022-11-01 14:45:33 -0500853 - scmi-msg
Chris Kay82117d72021-12-01 16:34:55 +0000854
855 - title: UFS
856 scope: ufs
857
858 - title: Arm
859 scope: arm-drivers
860
861 subsections:
862 - title: Ethos-N
863 scope: ethos-n
864
865 deprecated:
866 - drivers/arm/ethosn
867
868 - title: GIC
869 scope: gic
870
871 subsections:
872 - title: GICv3
873 scope: gicv3
874
laurenw-arm7c66fca2022-11-01 14:45:33 -0500875 deprecated:
876 - gicv3/multichip
877
Chris Kay82117d72021-12-01 16:34:55 +0000878 subsections:
laurenw-arm7c66fca2022-11-01 14:45:33 -0500879 - title: GIC-600
880 scope: gic600
881
Chris Kay82117d72021-12-01 16:34:55 +0000882 - title: GIC-600AE
883 scope: gic600ae
884
Manish V Badarkhebcaeb672022-03-24 18:23:37 +0000885 - title: SMMU
886 scope: smmu
887
Jayanth Dodderi Chidanandb16bc302022-05-19 11:03:07 +0100888 - title: MHU
889 scope: mhu
890
891 deprecated:
892 - drivers/arm/mhu
893
894 - title: RSS
895 scope: rss
896
897 deprecated:
898 - drivers/arm/rss
899
Chris Kay82117d72021-12-01 16:34:55 +0000900 - title: TZC
901 scope: tzc
902
903 subsections:
904 - title: TZC-400
905 scope: tzc400
906
907 deprecated:
908 - drivers/tzc400
909
Jayanth Dodderi Chidanandb16bc302022-05-19 11:03:07 +0100910 - title: TZC-380
911 scope: tzc380
912
913 deprecated:
914 - drivers/tzc380
915
Madhukar Pappireddy4c3de562023-03-22 15:27:22 -0500916 - title: SBSA
917 scope: sbsa
918
Chris Kay82117d72021-12-01 16:34:55 +0000919 - title: Marvell
920 scope: marvell-drivers
921
922 subsections:
923 - title: COMPHY
924 scope: marvell-comphy
925
926 deprecated:
927 - drivers/marvell/comphy
928
929 subsections:
930 - title: Armada 3700
931 scope: marvell-comphy-3700
932
933 deprecated:
934 - drivers/marvell/comphy-3700
935
936 - title: CP110
937 scope: marvell-comphy-cp110
938
939 deprecated:
940 - drivers/marvell/comphy-cp110
941
942 - title: UART
943 scope: marvell-uart
944
945 deprecated:
946 - plat/marvell/uart
947
948 - title: Armada
949 scope: armada-drivers
950
951 subsections:
952 - title: A3K
953 scope: a3k-drivers
954
955 subsections:
956 - title: A3720
957 scope: a3720-uart
958
959 deprecated:
960 - plat/marvell/a3720/uart
961
962 - title: MediaTek
963 scope: mediatek-drivers
964
965 subsections:
966 - title: APU
967 scope: mediatek-apu
968
969 deprecated:
970 - plat/mediatek/apu
971
972 - title: EMI MPU
973 scope: mediatek-emi-mpu
974
975 deprecated:
976 - plat/mediatek/mpu
977
978 - title: PMIC Wrapper
979 scope: mediatek-pmic-wrapper
980
981 deprecated:
982 - plat/mediatek/pmic_wrap
983
984 - title: MT8192
985 scope: mt8192-drivers
986
987 subsections:
988 - title: SPM
989 scope: mt8192-spm
990
991 deprecated:
992 - mediatek/mt8192/spm
993
994 - title: NXP
995 scope: nxp-drivers
996
997 subsections:
998 - title: DCFG
999 scope: nxp-dcfg
1000
1001 deprecated:
1002 - driver/nxp/dcfg
1003
1004 - title: FLEXSPI
1005 scope: flexspi
1006
1007 deprecated:
1008 - include/drivers/flexspi
1009 - driver/nxp/xspi
1010
1011 - title: SCFG
1012 scope: nxp-scfg
1013
1014 deprecated:
1015 - nxp/scfg
1016
1017 - title: SFP
1018 scope: nxp-sfp
1019
1020 deprecated:
1021 - drivers/nxp/sfp
1022
Jiafei Pan18ba9e42022-02-10 10:39:56 +08001023 - title: QSPI
1024 scope: nxp-qspi
1025
Jiafei Pan94450412022-02-18 12:02:04 +08001026 - title: NXP Crypto
1027 scope: nxp-crypto
1028
Jiafei Panfa3f7612022-02-22 11:05:00 +08001029 - title: DDR
1030 scope: nxp-ddr
1031
1032 - title: GIC
1033 scope: nxp-gic
1034
Jayanth Dodderi Chidanandb16bc302022-05-19 11:03:07 +01001035 - title: CSU
1036 scope: nxp-csu
1037
1038 - title: IFC NAND
1039 scope: nxp-ifc-nand
1040
1041 - title: IFC NOR
1042 scope: nxp-ifc-nor
1043
1044 - title: TZC-380
1045 scope: nxp-tzc380
1046
Chris Kay82117d72021-12-01 16:34:55 +00001047 - title: Renesas
1048 scope: renesas-drivers
1049
1050 subsections:
1051 - title: R-Car3
1052 scope: rcar3-drivers
1053
1054 deprecated:
1055 - drivers/rcar3
1056
1057 - title: ST
1058 scope: st-drivers
1059
1060 deprecated:
1061 - drivers/st
1062
1063 subsections:
Yann Gautier9f359fd2022-01-27 09:25:47 +01001064 - title: BSEC
1065 scope: st-bsec
1066
Chris Kay82117d72021-12-01 16:34:55 +00001067 - title: Clock
1068 scope: st-clock
1069
1070 deprecated:
1071 - stm32mp_clk
1072 - drivers/st/clk
1073 - stm32mp1_clk
1074
Yann Gautier9f359fd2022-01-27 09:25:47 +01001075 - title: Crypto
1076 scope: st-crypto
1077
1078 - title: DDR
1079 scope: st-ddr
1080
Chris Kay82117d72021-12-01 16:34:55 +00001081 - title: I/O
1082 scope: st-io-drivers
1083
1084 subsections:
1085 - title: STM32 Image
1086 scope: st-io-stm32image
1087
1088 deprecated:
1089 - io-stm32image
1090 - io_stm32image
1091
Yann Gautier9f359fd2022-01-27 09:25:47 +01001092 - title: I2C
1093 scope: st-i2c
1094
1095 - title: FMC
1096 scope: st-fmc
1097
1098 - title: GPIO
1099 scope: st-gpio
1100
Chris Kay82117d72021-12-01 16:34:55 +00001101 - title: SDMMC2
1102 scope: st-sdmmc2
1103
1104 deprecated:
1105 - stm32_sdmmc2
1106
1107 - title: ST PMIC
1108 scope: st-pmic
1109
1110 deprecated:
1111 - drivers/st/pmic
1112
1113 - title: STPMIC1
1114 scope: stpmic1
1115
Yann Gautier9f359fd2022-01-27 09:25:47 +01001116 - title: Regulator
1117 scope: st-regulator
1118
1119 - title: Reset
1120 scope: st-reset
1121
1122 - title: SPI
1123 scope: st-spi
1124
Chris Kay82117d72021-12-01 16:34:55 +00001125 - title: UART
1126 scope: st-uart
1127
1128 subsections:
1129 - title: STM32 Console
1130 scope: stm32-console
1131
1132 deprecated:
1133 - stm32_console
1134
1135 - title: USB
1136 scope: st-usb
1137
1138 deprecated:
1139 - drivers/st/usb
1140
Yann Gautier9f359fd2022-01-27 09:25:47 +01001141 - title: Watchdog
1142 scope: st-iwdg
1143
Chris Kay82117d72021-12-01 16:34:55 +00001144 - title: USB
1145 scope: usb
1146
1147 deprecated:
1148 - drivers/usb
1149
1150 - title: Miscellaneous
1151
1152 subsections:
1153 - title: AArch64
1154 scope: aarch64
1155
1156 - title: Debug
1157 scope: debug
1158
1159 deprecated:
1160 - common/debug
1161
1162 - title: CRC32
1163 scope: crc32
1164
1165 subsections:
1166 - title: Hardware CRC32
1167 scope: hw-crc32
1168
1169 deprecated:
1170 - hw_crc
1171 - hw_crc32
1172
1173 - title: Software CRC32
1174 scope: sw-crc32
1175
1176 deprecated:
1177 - sw_crc32
1178
1179 - title: DT Bindings
1180 scope: dt-bindings
1181
1182 - title: FDT Wrappers
1183 scope: fdt-wrappers
1184
1185 - title: FDTs
1186 scope: fdts
1187
1188 deprecated:
1189 - fdt
1190
1191 subsections:
1192 - title: Morello
1193 scope: morello-fdts
1194
1195 deprecated:
1196 - fdts/morello
1197
1198 - title: STM32MP1
1199 scope: stm32mp1-fdts
1200
1201 deprecated:
1202 - fdts stm32mp1
1203
Yann Gautier2c962252022-07-08 15:55:14 +02001204 subsections:
1205 - title: STM32MP13
1206 scope: stm32mp13-fdts
1207
1208 - title: STM32MP15
1209 scope: stm32mp15-fdts
1210
Chris Kay82117d72021-12-01 16:34:55 +00001211 - title: PIE
1212 scope: pie
1213
Juan Pablo Conde52487492023-05-15 22:17:17 -05001214 - title: PIE/POR
1215 scope: pie/por
1216
Chris Kay82117d72021-12-01 16:34:55 +00001217 - title: Security
1218 scope: security
1219
1220 - title: SDEI
1221 scope: sdei
1222
1223 - title: TBBR
1224 scope: tbbr
1225
1226 - title: NXP
1227
1228 subsections:
1229 - title: OCRAM
1230 scope: nxp-ocram
1231
1232 deprecated:
1233 - nxp/common/ocram
1234
1235 - title: PSCI
1236 scope: nxp-psci
1237
1238 deprecated:
1239 - plat/nxp/common/psci
1240
Chris Kayd04a4762023-04-13 17:24:20 +01001241 - title: UUID
1242 scope: uuid
1243
Chris Kay82117d72021-12-01 16:34:55 +00001244 - title: Documentation
1245 scope: docs
1246
1247 deprecated:
1248 - doc
1249
1250 subsections:
1251 - title: Changelog
1252 scope: changelog
1253
1254 - title: Commit Style
1255 scope: commit-style
1256
1257 - title: Contribution Guidelines
1258 scope: contributing
1259
1260 deprecated:
1261 - contribution-guidelines
1262 - docs-contributing.rst
1263
1264 - title: Maintainers
1265 scope: maintainers
1266
1267 - title: Prerequisites
1268 scope: prerequisites
1269
Sandrine Bailleux3c8fdf72022-05-10 14:53:44 +02001270 - title: Threat Model
1271 scope: threat-model
1272
Sandrine Bailleuxe67bb122023-02-08 13:58:25 +01001273 - title: Porting Guide
1274 scope: porting
1275
Chris Kay82117d72021-12-01 16:34:55 +00001276 - title: Build System
1277 scope: build
1278
1279 deprecated:
1280 - makefile
1281 - Makefile
1282
1283 subsections:
1284 - title: Git Hooks
1285 scope: hooks
1286
Juan Pablo Conde52487492023-05-15 22:17:17 -05001287 deprecated:
1288 - git-hooks
1289
Chris Kay82117d72021-12-01 16:34:55 +00001290 - title: Tools
1291
1292 subsections:
1293 - title: STM32 Image
1294 scope: stm32image
1295
1296 deprecated:
1297 - tools/stm32image
1298
Jiafei Pan18ba9e42022-02-10 10:39:56 +08001299 - title: NXP Tools
1300 scope: nxp-tools
1301
Jayanth Dodderi Chidanandb16bc302022-05-19 11:03:07 +01001302 - title: Firmware Image Package Tool
1303 scope: fiptool
1304
1305 - title: Secure Partition Tool
1306 scope: sptool
1307
1308 - title: Certificate Creation Tool
1309 scope: cert-create
1310
Harrison Mutai372b8802023-02-23 11:30:17 +00001311 - title: Memory Mapping Tool
1312 scope: memmap
1313
laurenw-arm7c66fca2022-11-01 14:45:33 -05001314 deprecated:
1315 - cert_create
1316
Chris Kay82117d72021-12-01 16:34:55 +00001317 - title: Dependencies
1318 scope: deps
1319
1320 subsections:
1321 - title: checkpatch
1322 scope: checkpatch
1323
1324 - title: commitlint
1325 scope: commitlint
1326
Daniel Boulbyc550e702022-10-05 11:03:44 +01001327 - title: Compiler runtime libraries
1328 scope: compiler-rt
1329
Chris Kay82117d72021-12-01 16:34:55 +00001330 - title: libfdt
1331 scope: libfdt
1332
1333 - title: Node Package Manager (NPM)
1334 scope: npm
Daniel Boulbyc550e702022-10-05 11:03:44 +01001335
1336 - title: zlib
1337 scope: zlib