blob: c969b2c56c6ebe1e70372d29a4f32d88a9992254 [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:
laurenw-arm7c66fca2022-11-01 14:45:33 -0500168 - title: CSS
169 scope: css
170
171 deprecated:
172 - plat/arm/css
173
Chris Kay82117d72021-12-01 16:34:55 +0000174 - title: FPGA
175 scope: fpga
176
177 deprecated:
178 - arm_fgpa
179 - arm_fpga
180 - plat/arm_fpga
181
182 - title: FVP
183 scope: fvp
184
185 deprecated:
186 - plat/fvp
laurenw-arm7c66fca2022-11-01 14:45:33 -0500187 - fvp/tsp_manifest
Chris Kay82117d72021-12-01 16:34:55 +0000188
189 - title: FVP-R
190 scope: fvp-r
191
192 deprecated:
193 - fvp_r
194
laurenw-arm7c66fca2022-11-01 14:45:33 -0500195 - title: FVP Versatile Express
196 scope: fvp_ve
197
Chris Kay82117d72021-12-01 16:34:55 +0000198 - title: Juno
199 scope: juno
200
201 - title: Morello
202 scope: morello
203
Jayanth Dodderi Chidanandb16bc302022-05-19 11:03:07 +0100204 - title: N1SDP
205 scope: n1sdp
206
Chris Kay82117d72021-12-01 16:34:55 +0000207 - title: RD
208 scope: rd
209
210 subsections:
211 - title: RD-N2
212 scope: rdn2
213
214 deprecated:
215 - board/rdn2
216
217 - title: SGI
218 scope: sgi
219
220 deprecated:
221 - plat/sgi
222 - plat/arm/sgi
223
224 - title: TC
225 scope: tc
226
227 subsections:
228 - title: TC0
229 scope: tc0
230
231 deprecated:
232 - plat/tc0
233
Jayanth Dodderi Chidanandb16bc302022-05-19 11:03:07 +0100234 - title: Corstone-1000
235 scope: corstone-1000
236
237 - title: Broadcom
238 scope: brcm
239
laurenw-arm7c66fca2022-11-01 14:45:33 -0500240 - title: HiSilicon
241 scope: hisilicon
242
243 subsections:
244 - title: HiKey
245 scope: hikey
246
247 - title: HiKey960
248 scope: hikey960
249
Sieu Mun Tang9f3a13c2022-02-22 14:14:26 +0800250 - title: Intel
251 scope: intel
252
253 subsections:
254 - title: SoC
255 scope: soc
256
Chris Kay82117d72021-12-01 16:34:55 +0000257 - title: Marvell
258 scope: marvell
259
260 deprecated:
261 - plat/marvell
262
263 subsections:
264 - title: Armada
265 scope: armada
266
267 deprecated:
268 - plat/marvell/armada
269
270 subsections:
271 - title: A3K
272 scope: a3k
273
274 deprecated:
275 - plat/marvell/a3k
276
277 - title: A8K
278 scope: a8k
279
280 deprecated:
281 - plat/marvell/a8k
282
283 - title: MediaTek
284 scope: mediatek
285
286 deprecated:
287 - plat/mediatek/common
288 - plat/mediatek
289
290 subsections:
291 - title: MT8183
292 scope: mt8183
293
294 deprecated:
295 - plat/mediatek/mt8183
296
laurenw-arm7c66fca2022-11-01 14:45:33 -0500297 - title: MT8186
298 scope: mt8186
299
300 deprecated:
301 - plat/mediatek/mt8186
302 - mt8186-emi-mpu
303
304 - title: MT8188
305 scope: mt8188
306
Chris Kay82117d72021-12-01 16:34:55 +0000307 - title: MT8192
308 scope: mt8192
309
310 deprecated:
311 - plat/mdeiatek/mt8192
312
313 - title: MT8195
314 scope: mt8195
315
316 deprecated:
317 - plat/mediatek/me8195
318 - plat/mediatek/mt8195
319 - plat/mdeiatek/mt8195
320
321 - title: NVIDIA
322 scope: nvidia
323
324 subsections:
325 - title: Tegra
326 scope: tegra
327
328 deprecated:
329 - plat/tegra
330
331 subsections:
332 - title: Tegra 132
333 scope: tegra132
334
Jayanth Dodderi Chidanandb16bc302022-05-19 11:03:07 +0100335 - title: Tegra 194
336 scope: tegra194
337
Chris Kay82117d72021-12-01 16:34:55 +0000338 - title: NXP
339 scope: nxp
340
341 deprecated:
342 - plat/nxp
343 - plat/nxp/common
344
345 subsections:
346 - title: i.MX
347 scope: imx
348
349 deprecated:
350 - plat/imx
351 - plat/imx/imx
352
353 subsections:
354 - title: i.MX 8M
355 scope: imx8m
356
357 deprecated:
358 - plat/imx8m
359 - plat/imx/imx8m
360
361 subsections:
Jayanth Dodderi Chidanandb16bc302022-05-19 11:03:07 +0100362 - title: i.MX 8M Nano
363 scope: imx8mn
364
365 deprecated:
366 - plat/imx/imx8m/imx8mn
367
Chris Kay82117d72021-12-01 16:34:55 +0000368 - title: i.MX 8M Mini
369 scope: imx8mm
370
371 deprecated:
372 - plat/imx/imx8m/imx8mm
373
374 - title: i.MX 8M Plus
375 scope: imx8mp
376
377 deprecated:
378 - plat/imx/imx8m/imx8mp
379
Jayanth Dodderi Chidanandb16bc302022-05-19 11:03:07 +0100380 - title: i.MX 8Q
381 scope: imx8mq
382
383 deprecated:
384 - plat/imx/imx8m/imx8mq
385
Chris Kay82117d72021-12-01 16:34:55 +0000386 - title: Layerscape
387 scope: layerscape
388
389 deprecated:
390 - docs/nxp/layerscape
391
392 subsections:
393 - title: LS1028A
394 scope: ls1028a
395
396 deprecated:
397 - plat/nxp/ls1028a
398
399 subsections:
400 - title: LS1028ARDB
401 scope: ls1028ardb
402
403 deprecated:
404 - plat/nxp/ls1028ardb
405
Jayanth Dodderi Chidanandb16bc302022-05-19 11:03:07 +0100406 - title: LS1043A
407 scope: ls1043a
408
409 deprecated:
410 - plat/nxp/ls1043a
411
412 subsections:
413 - title: LS1043ARDB
414 scope: ls1043ardb
415
416 deprecated:
417 - plat/nxp/ls1043ardb
418
Chris Kay82117d72021-12-01 16:34:55 +0000419 - title: LX2
420 scope: lx2
421
422 deprecated:
423 - plat/nxp/lx2
424
425 subsections:
426 - title: LX216
427 scope: lx216
428
429 deprecated:
430 - plat/nxp/lx216x
431
432 subsections:
433 - title: LX2160
434 scope: lx2160
435
436 deprecated:
437 - plat/soc-lx2160
438
Jiafei Pan18ba9e42022-02-10 10:39:56 +0800439 - title: LS1046A
440 scope: ls1046a
441
442 subsections:
443 - title: LS1046ARDB
444 scope: ls1046ardb
445
446 - title: LS1046AFRWY
447 scope: ls1046afrwy
448
449 - title: LS1046AQDS
450 scope: ls1046aqds
451
Jiafei Pan290bf6f2022-02-24 16:00:35 +0800452 - title: LS1088A
453 scope: ls1088a
454
455 subsections:
456 - title: LS1088ARDB
457 scope: ls1088ardb
458
459 - title: LS1088AQDS
460 scope: ls1088aqds
461
Chris Kay82117d72021-12-01 16:34:55 +0000462 - title: QEMU
463 scope: qemu
464
465 deprecated:
466 - plat/qemu
467
468 - title: QTI
469 scope: qti
470
laurenw-arm7c66fca2022-11-01 14:45:33 -0500471 deprecated:
472 - plat/qti
473
Chris Kay82117d72021-12-01 16:34:55 +0000474 subsections:
475 - title: SC1780
476 scope: sc7180
477
478 deprecated:
479 - plat/qti/sc7180
480
481 - title: SC7280
482 scope: sc7280
483
484 deprecated:
485 - plat/qti/sc7280
486
Stephan Gerholdd0d0bf42021-12-01 20:00:00 +0100487 - title: MSM8916
488 scope: msm8916
489
Chris Kay82117d72021-12-01 16:34:55 +0000490 - title: Raspberry Pi
491 scope: rpi
492
493 subsections:
laurenw-arm7c66fca2022-11-01 14:45:33 -0500494 - title: Raspberry Pi 3
495 scope: rpi3
496
Chris Kay82117d72021-12-01 16:34:55 +0000497 - title: Raspberry Pi 4
498 scope: rpi4
499
500 - title: Renesas
501 scope: renesas
502
503 subsections:
504 - title: R-Car
505 scope: rcar
506
507 deprecated:
508 - plat/rcar
509
510 subsections:
511 - title: R-Car 3
512 scope: rcar3
513
514 deprecated:
515 - plat/rcar3
516
517 - title: Rockchip
518 scope: rockchip
519
520 subsections:
521 - title: RK3399
522 scope: rk3399
523
524 deprecated:
525 - rockchip/rk3399
526 - rk3399/suspend
527
528 - title: Socionext
529 scope: socionext
530
531 subsections:
532 - title: Synquacer
533 scope: synquacer
534
535 deprecated:
536 - plat/synquacer
537
538 - title: ST
539 scope: st
540
541 deprecated:
542 - plat/st
543
544 subsections:
Yann Gautier14b32e82022-06-01 18:17:43 +0200545 - title: STM32MP1
Chris Kay82117d72021-12-01 16:34:55 +0000546 scope: stm32mp1
547
548 deprecated:
549 - plat/st/stm32mp1
550
Yann Gautier14b32e82022-06-01 18:17:43 +0200551 subsections:
552 - title: STM32MP13
553 scope: stm32mp13
554
555 - title: STM32MP15
556 scope: stm32mp15
557
Dave Gerlach74c19f92022-03-22 11:02:52 -0500558 - title: Texas Instruments
559 scope: ti
560
561 subsections:
562 - title: K3
563 scope: k3
564
laurenw-arm7c66fca2022-11-01 14:45:33 -0500565 deprecated:
566 - ti-k3
567
Chris Kay82117d72021-12-01 16:34:55 +0000568 - title: Xilinx
569 scope: xilinx
570
571 deprecated:
572 - plat/xilinx
573
574 subsections:
575 - title: Versal
576 scope: versal
577
578 deprecated:
579 - plat/xilinx/versal/include
580 - plat/xilinx/versal
581 - plat/versal
582
laurenw-arm7c66fca2022-11-01 14:45:33 -0500583 subsections:
584 - title: Versal NET
585 scope: versal-net
586
587 deprecated:
588 - versal_net
589
Chris Kay82117d72021-12-01 16:34:55 +0000590 - title: ZynqMP
591 scope: zynqmp
592
593 deprecated:
594 - plat/zynqmp
595 - plat/xilinx/zynqmp
596
597 - title: Bootloader Images
598 scope: bl
599
600 deprecated:
601 - bl_common
602
603 subsections:
604 - title: BL1
605 scope: bl1
606
607 - title: BL2
608 scope: bl2
609
Jayanth Dodderi Chidanandb16bc302022-05-19 11:03:07 +0100610 - title: BL31
611 scope: bl31
612
Shruti Guptac31beb62022-08-09 10:46:07 +0100613 - title: BL32
614 scope: bl32
615
616 subsections:
617 - title: TSP
618 scope: tsp
619
Chris Kay82117d72021-12-01 16:34:55 +0000620 - title: Services
621 scope: services
622
623 subsections:
624 - title: FF-A
Daniel Boulby8d74d6a2021-12-06 14:44:35 +0000625 scope: ff-a
Chris Kay82117d72021-12-01 16:34:55 +0000626
627 deprecated:
Daniel Boulby8d74d6a2021-12-06 14:44:35 +0000628 - ffa
Chris Kay82117d72021-12-01 16:34:55 +0000629
630 - title: RME
631 scope: rme
632
laurenw-arm7c66fca2022-11-01 14:45:33 -0500633 deprecated:
634 - rme/fid
635
Jayanth Dodderi Chidanandb16bc302022-05-19 11:03:07 +0100636 subsections:
637 - title: TRP
638 scope: trp
639
Javier Almansa Sobrino7176a772021-11-24 18:37:37 +0000640 - title: RMMD
641 scope: rmmd
642
Chris Kay82117d72021-12-01 16:34:55 +0000643 - title: SPM
644 scope: spm
645
Jayanth Dodderi Chidanandb16bc302022-05-19 11:03:07 +0100646 subsections:
647 - title: EL3 SPMC
648 scope: el3-spmc
649
laurenw-arm7c66fca2022-11-01 14:45:33 -0500650 deprecated:
651 - spmc
652
Jayanth Dodderi Chidanandb16bc302022-05-19 11:03:07 +0100653 - title: SPMD
654 scope: spmd
Daniel Boulby8d74d6a2021-12-06 14:44:35 +0000655
Jayanth Dodderi Chidanandb16bc302022-05-19 11:03:07 +0100656 - title: SPM MM
657 scope: spm-mm
Chris Kay82117d72021-12-01 16:34:55 +0000658
Manish V Badarkhe478d3ee2022-06-27 09:21:14 +0100659 - title: DRTM
660 scope: drtm
661
Jayanth Dodderi Chidanand7c7faff2022-10-11 17:16:07 +0100662 - title: TRNG
663 scope: trng
664
Chris Kay82117d72021-12-01 16:34:55 +0000665 - title: Libraries
666
667 subsections:
668 - title: CPU Support
669 scope: cpus
670
671 deprecated:
672 - cpu
673 - errata
674 - errata_report
675
676 - title: EL3 Runtime
677 scope: el3-runtime
678
679 deprecated:
680 - el3_runtime
681
Jayanth Dodderi Chidanandb16bc302022-05-19 11:03:07 +0100682 subsections:
683 - title: Context Management
684 scope: cm
685
laurenw-arm7c66fca2022-11-01 14:45:33 -0500686 - title: RAS
687 scope: ras
688
Chris Kay82117d72021-12-01 16:34:55 +0000689 - title: FCONF
690 scope: fconf
691
692 - title: MPMM
693 scope: mpmm
694
695 - title: OP-TEE
696 scope: optee
697
698 deprecated:
699 - lib/optee
700
701 - title: PSCI
702 scope: psci
703
704 - title: GPT
705 scope: gpt
706
707 deprecated:
708 - gpt_rme
709
710 - title: SMCCC
711 scope: smccc
712
713 - title: Translation Tables
714 scope: xlat
715
Jayanth Dodderi Chidanandb16bc302022-05-19 11:03:07 +0100716 - title: C Standard Library
717 scope: libc
718
719 - title: Locks
720 scope: locks
721
722 - title: PSA
723 scope: psa
724
laurenw-arm7c66fca2022-11-01 14:45:33 -0500725 deprecated:
726 - lib/psa
727
Zelalem Aweke5362beb2022-04-04 17:42:48 -0500728 - title: Context Management
Chris Kaye76be0a2022-10-10 16:57:45 +0100729 scope: context-mgmt
730
731 deprecated:
732 - context mgmt
Zelalem Aweke5362beb2022-04-04 17:42:48 -0500733
Manish V Badarkhede920262022-09-26 15:06:56 +0100734 - title: Semihosting
735 scope: semihosting
736
Chris Kay82117d72021-12-01 16:34:55 +0000737 - title: Drivers
738
739 subsections:
740 - title: Authentication
741 scope: auth
742
743 deprecated:
744 - driver/auth
745
746 subsections:
747 - title: CryptoCell-713
748 scope: cc-713
749
Manish V Badarkhe8d91e982022-09-22 21:41:55 +0100750 - title: Crypto
751 scope: crypto
752
753 - title: mbedTLS
754 scope: mbedtls
755
Yann Gautier1832d662023-01-06 17:05:48 +0100756 - title: Console
757 scope: console
758
Jayanth Dodderi Chidanandb16bc302022-05-19 11:03:07 +0100759 - title: Generic Clock
760 scope: clk
761
Chris Kay82117d72021-12-01 16:34:55 +0000762 - title: FWU
763 scope: fwu
764
765 deprecated:
766 - fwu_metadata
767
768 - title: I/O
769 scope: io
770
771 subsections:
772 - title: MTD
773 scope: mtd
774
775 deprecated:
776 - io_mtd
777
778 - title: Measured Boot
779 scope: measured-boot
780
781 deprecated:
782 - measured boot
783 - measured_boot
784
785 - title: MMC
786 scope: mmc
787
788 deprecated:
789 - drivers/mmc
790
791 - title: MTD
792 scope: mtd
793
794 deprecated:
795 - drivers/mtd
796
797 subsections:
798 - title: NAND
799 scope: nand
800
801 subsections:
802 - title: SPI NAND
803 scope: spi-nand
804
805 deprecated:
806 - spi_nand
807
Jayanth Dodderi Chidanandb16bc302022-05-19 11:03:07 +0100808 - title: GUID Partition Tables Support
809 scope: guid-partition
Sughosh Ganu540e0322022-01-19 11:31:20 +0530810
Chris Kay82117d72021-12-01 16:34:55 +0000811 - title: SCMI
812 scope: scmi
813
814 deprecated:
815 - scmi_common
816 - drivers/scmi-msg
laurenw-arm7c66fca2022-11-01 14:45:33 -0500817 - scmi-msg
Chris Kay82117d72021-12-01 16:34:55 +0000818
819 - title: UFS
820 scope: ufs
821
822 - title: Arm
823 scope: arm-drivers
824
825 subsections:
826 - title: Ethos-N
827 scope: ethos-n
828
829 deprecated:
830 - drivers/arm/ethosn
831
832 - title: GIC
833 scope: gic
834
835 subsections:
836 - title: GICv3
837 scope: gicv3
838
laurenw-arm7c66fca2022-11-01 14:45:33 -0500839 deprecated:
840 - gicv3/multichip
841
Chris Kay82117d72021-12-01 16:34:55 +0000842 subsections:
laurenw-arm7c66fca2022-11-01 14:45:33 -0500843 - title: GIC-600
844 scope: gic600
845
Chris Kay82117d72021-12-01 16:34:55 +0000846 - title: GIC-600AE
847 scope: gic600ae
848
Manish V Badarkhebcaeb672022-03-24 18:23:37 +0000849 - title: SMMU
850 scope: smmu
851
Jayanth Dodderi Chidanandb16bc302022-05-19 11:03:07 +0100852 - title: MHU
853 scope: mhu
854
855 deprecated:
856 - drivers/arm/mhu
857
858 - title: RSS
859 scope: rss
860
861 deprecated:
862 - drivers/arm/rss
863
Chris Kay82117d72021-12-01 16:34:55 +0000864 - title: TZC
865 scope: tzc
866
867 subsections:
868 - title: TZC-400
869 scope: tzc400
870
871 deprecated:
872 - drivers/tzc400
873
Jayanth Dodderi Chidanandb16bc302022-05-19 11:03:07 +0100874 - title: TZC-380
875 scope: tzc380
876
877 deprecated:
878 - drivers/tzc380
879
Madhukar Pappireddy4c3de562023-03-22 15:27:22 -0500880 - title: SBSA
881 scope: sbsa
882
Chris Kay82117d72021-12-01 16:34:55 +0000883 - title: Marvell
884 scope: marvell-drivers
885
886 subsections:
887 - title: COMPHY
888 scope: marvell-comphy
889
890 deprecated:
891 - drivers/marvell/comphy
892
893 subsections:
894 - title: Armada 3700
895 scope: marvell-comphy-3700
896
897 deprecated:
898 - drivers/marvell/comphy-3700
899
900 - title: CP110
901 scope: marvell-comphy-cp110
902
903 deprecated:
904 - drivers/marvell/comphy-cp110
905
906 - title: UART
907 scope: marvell-uart
908
909 deprecated:
910 - plat/marvell/uart
911
912 - title: Armada
913 scope: armada-drivers
914
915 subsections:
916 - title: A3K
917 scope: a3k-drivers
918
919 subsections:
920 - title: A3720
921 scope: a3720-uart
922
923 deprecated:
924 - plat/marvell/a3720/uart
925
926 - title: MediaTek
927 scope: mediatek-drivers
928
929 subsections:
930 - title: APU
931 scope: mediatek-apu
932
933 deprecated:
934 - plat/mediatek/apu
935
936 - title: EMI MPU
937 scope: mediatek-emi-mpu
938
939 deprecated:
940 - plat/mediatek/mpu
941
942 - title: PMIC Wrapper
943 scope: mediatek-pmic-wrapper
944
945 deprecated:
946 - plat/mediatek/pmic_wrap
947
948 - title: MT8192
949 scope: mt8192-drivers
950
951 subsections:
952 - title: SPM
953 scope: mt8192-spm
954
955 deprecated:
956 - mediatek/mt8192/spm
957
958 - title: NXP
959 scope: nxp-drivers
960
961 subsections:
962 - title: DCFG
963 scope: nxp-dcfg
964
965 deprecated:
966 - driver/nxp/dcfg
967
968 - title: FLEXSPI
969 scope: flexspi
970
971 deprecated:
972 - include/drivers/flexspi
973 - driver/nxp/xspi
974
975 - title: SCFG
976 scope: nxp-scfg
977
978 deprecated:
979 - nxp/scfg
980
981 - title: SFP
982 scope: nxp-sfp
983
984 deprecated:
985 - drivers/nxp/sfp
986
Jiafei Pan18ba9e42022-02-10 10:39:56 +0800987 - title: QSPI
988 scope: nxp-qspi
989
Jiafei Pan94450412022-02-18 12:02:04 +0800990 - title: NXP Crypto
991 scope: nxp-crypto
992
Jiafei Panfa3f7612022-02-22 11:05:00 +0800993 - title: DDR
994 scope: nxp-ddr
995
996 - title: GIC
997 scope: nxp-gic
998
Jayanth Dodderi Chidanandb16bc302022-05-19 11:03:07 +0100999 - title: CSU
1000 scope: nxp-csu
1001
1002 - title: IFC NAND
1003 scope: nxp-ifc-nand
1004
1005 - title: IFC NOR
1006 scope: nxp-ifc-nor
1007
1008 - title: TZC-380
1009 scope: nxp-tzc380
1010
Chris Kay82117d72021-12-01 16:34:55 +00001011 - title: Renesas
1012 scope: renesas-drivers
1013
1014 subsections:
1015 - title: R-Car3
1016 scope: rcar3-drivers
1017
1018 deprecated:
1019 - drivers/rcar3
1020
1021 - title: ST
1022 scope: st-drivers
1023
1024 deprecated:
1025 - drivers/st
1026
1027 subsections:
Yann Gautier9f359fd2022-01-27 09:25:47 +01001028 - title: BSEC
1029 scope: st-bsec
1030
Chris Kay82117d72021-12-01 16:34:55 +00001031 - title: Clock
1032 scope: st-clock
1033
1034 deprecated:
1035 - stm32mp_clk
1036 - drivers/st/clk
1037 - stm32mp1_clk
1038
Yann Gautier9f359fd2022-01-27 09:25:47 +01001039 - title: Crypto
1040 scope: st-crypto
1041
1042 - title: DDR
1043 scope: st-ddr
1044
Chris Kay82117d72021-12-01 16:34:55 +00001045 - title: I/O
1046 scope: st-io-drivers
1047
1048 subsections:
1049 - title: STM32 Image
1050 scope: st-io-stm32image
1051
1052 deprecated:
1053 - io-stm32image
1054 - io_stm32image
1055
Yann Gautier9f359fd2022-01-27 09:25:47 +01001056 - title: I2C
1057 scope: st-i2c
1058
1059 - title: FMC
1060 scope: st-fmc
1061
1062 - title: GPIO
1063 scope: st-gpio
1064
Chris Kay82117d72021-12-01 16:34:55 +00001065 - title: SDMMC2
1066 scope: st-sdmmc2
1067
1068 deprecated:
1069 - stm32_sdmmc2
1070
1071 - title: ST PMIC
1072 scope: st-pmic
1073
1074 deprecated:
1075 - drivers/st/pmic
1076
1077 - title: STPMIC1
1078 scope: stpmic1
1079
Yann Gautier9f359fd2022-01-27 09:25:47 +01001080 - title: Regulator
1081 scope: st-regulator
1082
1083 - title: Reset
1084 scope: st-reset
1085
1086 - title: SPI
1087 scope: st-spi
1088
Chris Kay82117d72021-12-01 16:34:55 +00001089 - title: UART
1090 scope: st-uart
1091
1092 subsections:
1093 - title: STM32 Console
1094 scope: stm32-console
1095
1096 deprecated:
1097 - stm32_console
1098
1099 - title: USB
1100 scope: st-usb
1101
1102 deprecated:
1103 - drivers/st/usb
1104
Yann Gautier9f359fd2022-01-27 09:25:47 +01001105 - title: Watchdog
1106 scope: st-iwdg
1107
Chris Kay82117d72021-12-01 16:34:55 +00001108 - title: USB
1109 scope: usb
1110
1111 deprecated:
1112 - drivers/usb
1113
1114 - title: Miscellaneous
1115
1116 subsections:
1117 - title: AArch64
1118 scope: aarch64
1119
1120 - title: Debug
1121 scope: debug
1122
1123 deprecated:
1124 - common/debug
1125
1126 - title: CRC32
1127 scope: crc32
1128
1129 subsections:
1130 - title: Hardware CRC32
1131 scope: hw-crc32
1132
1133 deprecated:
1134 - hw_crc
1135 - hw_crc32
1136
1137 - title: Software CRC32
1138 scope: sw-crc32
1139
1140 deprecated:
1141 - sw_crc32
1142
1143 - title: DT Bindings
1144 scope: dt-bindings
1145
1146 - title: FDT Wrappers
1147 scope: fdt-wrappers
1148
1149 - title: FDTs
1150 scope: fdts
1151
1152 deprecated:
1153 - fdt
1154
1155 subsections:
1156 - title: Morello
1157 scope: morello-fdts
1158
1159 deprecated:
1160 - fdts/morello
1161
1162 - title: STM32MP1
1163 scope: stm32mp1-fdts
1164
1165 deprecated:
1166 - fdts stm32mp1
1167
Yann Gautier2c962252022-07-08 15:55:14 +02001168 subsections:
1169 - title: STM32MP13
1170 scope: stm32mp13-fdts
1171
1172 - title: STM32MP15
1173 scope: stm32mp15-fdts
1174
Chris Kay82117d72021-12-01 16:34:55 +00001175 - title: PIE
1176 scope: pie
1177
1178 - title: Security
1179 scope: security
1180
1181 - title: SDEI
1182 scope: sdei
1183
1184 - title: TBBR
1185 scope: tbbr
1186
1187 - title: NXP
1188
1189 subsections:
1190 - title: OCRAM
1191 scope: nxp-ocram
1192
1193 deprecated:
1194 - nxp/common/ocram
1195
1196 - title: PSCI
1197 scope: nxp-psci
1198
1199 deprecated:
1200 - plat/nxp/common/psci
1201
Chris Kayd04a4762023-04-13 17:24:20 +01001202 - title: UUID
1203 scope: uuid
1204
Chris Kay82117d72021-12-01 16:34:55 +00001205 - title: Documentation
1206 scope: docs
1207
1208 deprecated:
1209 - doc
1210
1211 subsections:
1212 - title: Changelog
1213 scope: changelog
1214
1215 - title: Commit Style
1216 scope: commit-style
1217
1218 - title: Contribution Guidelines
1219 scope: contributing
1220
1221 deprecated:
1222 - contribution-guidelines
1223 - docs-contributing.rst
1224
1225 - title: Maintainers
1226 scope: maintainers
1227
1228 - title: Prerequisites
1229 scope: prerequisites
1230
Sandrine Bailleux3c8fdf72022-05-10 14:53:44 +02001231 - title: Threat Model
1232 scope: threat-model
1233
Sandrine Bailleuxe67bb122023-02-08 13:58:25 +01001234 - title: Porting Guide
1235 scope: porting
1236
Chris Kay82117d72021-12-01 16:34:55 +00001237 - title: Build System
1238 scope: build
1239
1240 deprecated:
1241 - makefile
1242 - Makefile
1243
1244 subsections:
1245 - title: Git Hooks
1246 scope: hooks
1247
1248 - title: Tools
1249
1250 subsections:
1251 - title: STM32 Image
1252 scope: stm32image
1253
1254 deprecated:
1255 - tools/stm32image
1256
Jiafei Pan18ba9e42022-02-10 10:39:56 +08001257 - title: NXP Tools
1258 scope: nxp-tools
1259
Jayanth Dodderi Chidanandb16bc302022-05-19 11:03:07 +01001260 - title: Firmware Image Package Tool
1261 scope: fiptool
1262
1263 - title: Secure Partition Tool
1264 scope: sptool
1265
1266 - title: Certificate Creation Tool
1267 scope: cert-create
1268
laurenw-arm7c66fca2022-11-01 14:45:33 -05001269 deprecated:
1270 - cert_create
1271
Chris Kay82117d72021-12-01 16:34:55 +00001272 - title: Dependencies
1273 scope: deps
1274
1275 subsections:
1276 - title: checkpatch
1277 scope: checkpatch
1278
1279 - title: commitlint
1280 scope: commitlint
1281
Daniel Boulbyc550e702022-10-05 11:03:44 +01001282 - title: Compiler runtime libraries
1283 scope: compiler-rt
1284
Chris Kay82117d72021-12-01 16:34:55 +00001285 - title: libfdt
1286 scope: libfdt
1287
1288 - title: Node Package Manager (NPM)
1289 scope: npm
Daniel Boulbyc550e702022-10-05 11:03:44 +01001290
1291 - title: zlib
1292 scope: zlib