changelog.yaml 28 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480
  1. #
  2. # Copyright (c) 2021-2024, Arm Limited. All rights reserved.
  3. #
  4. # SPDX-License-Identifier: BSD-3-Clause
  5. #
  6. #
  7. # The following block describes the top-level sections of the changelog. Commits are categorized
  8. # into these top-level sections based on the commit message "type":
  9. #
  10. # feat(xyz): add the xyz feature
  11. # ^^^^
  12. #
  13. sections:
  14. - title: New Features
  15. description: A new feature
  16. type: feat
  17. - title: Resolved Issues
  18. description: A bug fix
  19. type: fix
  20. - title: Build System
  21. description: Changes that affect the build system or external dependencies
  22. type: build
  23. hidden: true
  24. - title: Continuous Integration
  25. description: Changes to our CI configuration files and scripts
  26. type: ci
  27. hidden: true
  28. - title: Documentation
  29. description: Documentation-only changes
  30. type: docs
  31. hidden: true
  32. - title: Performance Improvements
  33. description: A code change that improves performance
  34. type: perf
  35. hidden: true
  36. - title: Code Refactoring
  37. description: A code change that neither fixes a bug nor adds a feature
  38. type: refactor
  39. hidden: true
  40. - title: Reverted Changes
  41. description: Changes that revert a previous change
  42. type: revert
  43. hidden: true
  44. - title: Style
  45. description: Changes that do not affect the meaning of the code (white-space, formatting, missing semi-colons, etc.)
  46. type: style
  47. hidden: true
  48. - title: Tests
  49. description: Adding missing tests or correcting existing tests
  50. type: test
  51. hidden: true
  52. - title: Miscellaneous
  53. description: Any other change
  54. type: chore
  55. hidden: true
  56. #
  57. # The following block describes the sub-sections of the changelog. These sub-sections may appear in
  58. # any of the top-level sections, and describe the individual components that a change may relate to.
  59. #
  60. # Sub-sections have an optional associated commit message "scope":
  61. #
  62. # feat(xyz): add the xyz feature
  63. # ^^^
  64. #
  65. # This file also describes deprecated scopes, which are scopes that were used before we introduced
  66. # scope enforcement. These will not pass CI checks when used, but they will be used to generate the
  67. # changelog.
  68. #
  69. # Please note that new scopes should be kebab-case: https://en.wiktionary.org/wiki/kebab_case
  70. #
  71. subsections:
  72. - title: Architecture
  73. subsections:
  74. - title: Activity Monitors Extension (FEAT_AMU)
  75. scope: amu
  76. - title: Branch Record Buffer Extension (FEAT_BRBE)
  77. scope: brbe
  78. - title: Branch Target Identification Extension
  79. scope: bti
  80. - title: Confidential Compute Architecture (CCA)
  81. scope: cca
  82. - title: Extended Cache Index (FEAT_CCIDX)
  83. scope: ccidx
  84. - title: Extended Translation Control Register (FEAT_TCR2).
  85. scope: tcr2
  86. - title: Fine-grained Traps 2 (FEAT_FGT2).
  87. scope: fgt2
  88. - title: CPU feature / ID register handling in general
  89. scope: cpufeat
  90. - title: Debug Extension (FEAT_Debugv8p9)
  91. scope: debugv8p9
  92. - title: Guarded Control Stack (FEAT_GCS)
  93. scope: gcs
  94. - title: Support for the `HCRX_EL2` register (FEAT_HCX)
  95. scope: hcx
  96. - title: Memory Partitioning and Monitoring (MPAM) Extension (FEAT_MPAM)
  97. scope: mpam
  98. - title: Memory Tagging Extension2
  99. scope: mte2
  100. deprecated:
  101. - mte
  102. - title: Pointer Authentication Extension
  103. scope: pauth
  104. - title: Performance Monitors Extension (FEAT_PMUv3)
  105. scope: pmu
  106. - title: Trapping support for RNDR/RNDRRS (FEAT_RNG_TRAP)
  107. scope: rng-trap
  108. - title: Scalable Matrix Extension (FEAT_SME, FEAT_SME2)
  109. scope: sme
  110. - title: Statistical profiling Extension (FEAT_SPE)
  111. scope: spe
  112. - title: Scalable Vector Extension (FEAT_SVE)
  113. scope: sve
  114. - title: System Register Trace Extensions (FEAT_ETMv4, FEAT_ETE and FEAT_ETEv1.1)
  115. scope: sys-reg-trace
  116. deprecated:
  117. - sys_reg_trace
  118. - title: Trace Buffer Extension (FEAT_TRBE)
  119. scope: trbe
  120. - title: Self-hosted Trace Extensions (FEAT_TRF)
  121. scope: trf
  122. - title: DynamIQ Shared Unit (DSU)
  123. scope: dsu
  124. - title: Platforms
  125. scope: platforms
  126. deprecated:
  127. - plat/common
  128. - plat
  129. subsections:
  130. - title: Allwinner
  131. scope: allwinner
  132. deprecated:
  133. - plat/allwinner
  134. - title: Arm
  135. scope: arm
  136. deprecated:
  137. - plat/arm
  138. subsections:
  139. - title: A5DS
  140. scope: a5ds
  141. - title: CSS
  142. scope: css
  143. deprecated:
  144. - plat/arm/css
  145. - plat/css
  146. - title: FPGA
  147. scope: fpga
  148. deprecated:
  149. - arm_fgpa
  150. - plat/arm_fpga
  151. - arm/fpga
  152. - title: FVP
  153. scope: fvp
  154. deprecated:
  155. - plat/fvp
  156. - fvp/tsp_manifest
  157. - title: FVP-R
  158. scope: fvp-r
  159. deprecated:
  160. - fvp_r
  161. - title: FVP Versatile Express
  162. scope: fvp_ve
  163. - title: Juno
  164. scope: juno
  165. - title: Morello
  166. scope: morello
  167. - title: N1SDP
  168. scope: n1sdp
  169. - title: Neoverse-RD
  170. scope: neoverse-rd
  171. subsections:
  172. - title: SGI-575
  173. scope: sgi575
  174. - title: RD-E1-Edge
  175. scope: rde1edge
  176. - title: RD-N1-Edge
  177. scope: rdn1edge
  178. - title: RD-V1
  179. scope: rdv1
  180. - title: RD-V1-MC
  181. scope: rdv1mc
  182. - title: RD-N2
  183. scope: rdn2
  184. - title: RD-V3
  185. scope: rdv3
  186. deprecated:
  187. - board/rdn2
  188. deprecated:
  189. - neoverse
  190. - title: TC
  191. scope: tc
  192. deprecated:
  193. - plat/tc
  194. subsections:
  195. - title: TC0
  196. scope: tc0
  197. deprecated:
  198. - plat/tc0
  199. - title: Corstone-1000
  200. scope: corstone-1000
  201. - title: Aspeed
  202. scope: aspeed
  203. subsections:
  204. - title: AST2700
  205. scope: ast2700
  206. - title: Broadcom
  207. scope: brcm
  208. - title: Cadence
  209. scope: cadence
  210. - title: HiSilicon
  211. scope: hisilicon
  212. subsections:
  213. - title: HiKey
  214. scope: hikey
  215. - title: HiKey960
  216. scope: hikey960
  217. - title: Intel
  218. scope: intel
  219. subsections:
  220. - title: SoC
  221. scope: soc
  222. - title: Marvell
  223. scope: marvell
  224. deprecated:
  225. - plat/marvell
  226. subsections:
  227. - title: Armada
  228. scope: armada
  229. deprecated:
  230. - plat/marvell/armada
  231. subsections:
  232. - title: A3K
  233. scope: a3k
  234. deprecated:
  235. - plat/marvell/a3k
  236. - title: A8K
  237. scope: a8k
  238. deprecated:
  239. - plat/marvell/a8k
  240. - title: MediaTek
  241. scope: mediatek
  242. deprecated:
  243. - plat/mediatek/common
  244. - plat/mediatek
  245. subsections:
  246. - title: MT8183
  247. scope: mt8183
  248. deprecated:
  249. - plat/mediatek/mt8183
  250. - title: MT8186
  251. scope: mt8186
  252. deprecated:
  253. - plat/mediatek/mt8186
  254. - mt8186-emi-mpu
  255. - title: MT8188
  256. scope: mt8188
  257. - title: MT8192
  258. scope: mt8192
  259. deprecated:
  260. - plat/mdeiatek/mt8192
  261. - title: MT8195
  262. scope: mt8195
  263. deprecated:
  264. - plat/mediatek/me8195
  265. - plat/mediatek/mt8195
  266. - plat/mdeiatek/mt8195
  267. - title: NVIDIA
  268. scope: nvidia
  269. subsections:
  270. - title: Tegra
  271. scope: tegra
  272. deprecated:
  273. - plat/tegra
  274. subsections:
  275. - title: Tegra 132
  276. scope: tegra132
  277. - title: Tegra 194
  278. scope: tegra194
  279. - title: Tegra 210
  280. scope: tegra210
  281. - title: NXP
  282. scope: nxp
  283. deprecated:
  284. - plat/nxp
  285. - plat/nxp/common
  286. subsections:
  287. - title: i.MX
  288. scope: imx
  289. deprecated:
  290. - plat/imx
  291. - plat/imx/imx
  292. subsections:
  293. - title: i.MX 8M
  294. scope: imx8m
  295. deprecated:
  296. - plat/imx8m
  297. - plat/imx/imx8m
  298. subsections:
  299. - title: i.MX 8M Nano
  300. scope: imx8mn
  301. deprecated:
  302. - plat/imx/imx8m/imx8mn
  303. - title: i.MX 8M Mini
  304. scope: imx8mm
  305. deprecated:
  306. - plat/imx/imx8m/imx8mm
  307. - title: i.MX 8M Plus
  308. scope: imx8mp
  309. deprecated:
  310. - plat/imx/imx8m/imx8mp
  311. - title: i.MX 8Q
  312. scope: imx8mq
  313. deprecated:
  314. - plat/imx/imx8m/imx8mq
  315. - title: i.MX 8
  316. scope: imx8
  317. - title: i.MX 8ULP
  318. scope: imx8ulp
  319. - title: i.MX 9
  320. scope: imx9
  321. subsections:
  322. - title: i.MX93
  323. scope: imx93
  324. - title: Layerscape
  325. scope: layerscape
  326. deprecated:
  327. - docs/nxp/layerscape
  328. subsections:
  329. - title: LS1028A
  330. scope: ls1028a
  331. deprecated:
  332. - plat/nxp/ls1028a
  333. subsections:
  334. - title: LS1028ARDB
  335. scope: ls1028ardb
  336. deprecated:
  337. - plat/nxp/ls1028ardb
  338. - title: LS1043A
  339. scope: ls1043a
  340. deprecated:
  341. - plat/nxp/ls1043a
  342. subsections:
  343. - title: LS1043ARDB
  344. scope: ls1043ardb
  345. deprecated:
  346. - plat/nxp/ls1043ardb
  347. - title: LX2
  348. scope: lx2
  349. deprecated:
  350. - plat/nxp/lx2
  351. subsections:
  352. - title: LX216
  353. scope: lx216
  354. deprecated:
  355. - plat/nxp/lx216x
  356. subsections:
  357. - title: LX2160
  358. scope: lx2160
  359. deprecated:
  360. - plat/soc-lx2160
  361. - title: LS1046A
  362. scope: ls1046a
  363. subsections:
  364. - title: LS1046ARDB
  365. scope: ls1046ardb
  366. - title: LS1046AFRWY
  367. scope: ls1046afrwy
  368. - title: LS1046AQDS
  369. scope: ls1046aqds
  370. - title: LS1088A
  371. scope: ls1088a
  372. subsections:
  373. - title: LS1088ARDB
  374. scope: ls1088ardb
  375. - title: LS1088AQDS
  376. scope: ls1088aqds
  377. - title: S32G274A
  378. scope: s32g274a
  379. subsections:
  380. - title: S32G274ARDB
  381. scope: s32g274ardb
  382. - title: QEMU
  383. scope: qemu
  384. deprecated:
  385. - plat/qemu
  386. subsections:
  387. - title: SBSA
  388. scope: qemu-sbsa
  389. deprecated:
  390. - qemu_sbsa
  391. - title: QTI
  392. scope: qti
  393. deprecated:
  394. - plat/qti
  395. subsections:
  396. - title: SC1780
  397. scope: sc7180
  398. deprecated:
  399. - plat/qti/sc7180
  400. - title: SC7280
  401. scope: sc7280
  402. deprecated:
  403. - plat/qti/sc7280
  404. - title: MSM8916
  405. scope: msm8916
  406. - title: Raspberry Pi
  407. scope: rpi
  408. subsections:
  409. - title: Raspberry Pi 3
  410. scope: rpi3
  411. - title: Raspberry Pi 4
  412. scope: rpi4
  413. - title: Raspberry Pi 5
  414. scope: rpi5
  415. - title: Renesas
  416. scope: renesas
  417. subsections:
  418. - title: R-Car
  419. scope: rcar
  420. deprecated:
  421. - plat/rcar
  422. subsections:
  423. - title: R-Car 3
  424. scope: rcar3
  425. deprecated:
  426. - plat/rcar3
  427. - title: Rockchip
  428. scope: rockchip
  429. subsections:
  430. - title: RK3399
  431. scope: rk3399
  432. deprecated:
  433. - rockchip/rk3399
  434. - rk3399/suspend
  435. - title: RK3328
  436. scope: rk3328
  437. - title: Socionext
  438. scope: socionext
  439. subsections:
  440. - title: Synquacer
  441. scope: synquacer
  442. deprecated:
  443. - plat/synquacer
  444. - title: ST
  445. scope: st
  446. deprecated:
  447. - plat/st
  448. subsections:
  449. - title: STM32MP1
  450. scope: stm32mp1
  451. deprecated:
  452. - plat/st/stm32mp1
  453. subsections:
  454. - title: STM32MP13
  455. scope: stm32mp13
  456. - title: STM32MP15
  457. scope: stm32mp15
  458. - title: STM32MP2
  459. scope: stm32mp2
  460. - title: Texas Instruments
  461. scope: ti
  462. subsections:
  463. - title: K3
  464. scope: k3
  465. deprecated:
  466. - ti-k3
  467. - title: Xilinx
  468. scope: xilinx
  469. deprecated:
  470. - plat/xilinx
  471. subsections:
  472. - title: DCC (Debug Communication Channel)
  473. scope: dcc
  474. - title: Versal
  475. scope: versal
  476. deprecated:
  477. - plat/xilinx/versal/include
  478. - plat/xilinx/versal
  479. - plat/versal
  480. - title: Versal NET
  481. scope: versal-net
  482. deprecated:
  483. - versal_net
  484. - title: ZynqMP
  485. scope: zynqmp
  486. deprecated:
  487. - plat/zynqmp
  488. - plat/xilinx/zynqmp
  489. - title: AMD
  490. scope: amd
  491. subsections:
  492. - title: Versal Gen 2
  493. scope: versal2
  494. - title: Nuvoton
  495. scope: nuvoton
  496. subsections:
  497. - title: npcm845x
  498. scope: npcm845x
  499. - title: Bootloader Images
  500. scope: bl
  501. deprecated:
  502. - bl_common
  503. subsections:
  504. - title: BL1
  505. scope: bl1
  506. - title: BL2
  507. scope: bl2
  508. - title: BL31
  509. scope: bl31
  510. - title: BL32
  511. scope: bl32
  512. subsections:
  513. - title: TSP
  514. scope: tsp
  515. - title: Services
  516. scope: services
  517. subsections:
  518. - title: FF-A
  519. scope: ff-a
  520. deprecated:
  521. - ffa
  522. - title: RME
  523. scope: rme
  524. deprecated:
  525. - rme/fid
  526. subsections:
  527. - title: TRP
  528. scope: trp
  529. - title: RMMD
  530. scope: rmmd
  531. - title: RMM
  532. scope: rmm
  533. - title: SPM
  534. scope: spm
  535. subsections:
  536. - title: EL3 SPM
  537. scope: el3-spm
  538. - title: EL3 SPMC
  539. scope: el3-spmc
  540. deprecated:
  541. - spmc
  542. - title: SPMD
  543. scope: spmd
  544. - title: SPM MM
  545. scope: spm-mm
  546. - title: DRTM
  547. scope: drtm
  548. - title: TRNG
  549. scope: trng
  550. - title: ERRATA ABI
  551. scope: errata-abi
  552. deprecated:
  553. - errata_abi
  554. - title: ChromeOS
  555. scope: cros
  556. - title: Libraries
  557. scope: lib
  558. subsections:
  559. - title: CPU Support
  560. scope: cpus
  561. deprecated:
  562. - cpu
  563. - errata
  564. - errata_report
  565. - title: EL3 Runtime
  566. scope: el3-runtime
  567. deprecated:
  568. - el3_runtime
  569. subsections:
  570. - title: Context Management
  571. scope: cm
  572. - title: RAS
  573. scope: ras
  574. - title: SIMD
  575. scope: simd
  576. - title: FCONF
  577. scope: fconf
  578. - title: MPMM
  579. scope: mpmm
  580. - title: OP-TEE
  581. scope: optee
  582. deprecated:
  583. - lib/optee
  584. - title: PSCI
  585. scope: psci
  586. - title: ROMlib
  587. scope: romlib
  588. - title: GPT
  589. scope: gpt
  590. deprecated:
  591. - gpt_rme
  592. - title: SMCCC
  593. scope: smccc
  594. - title: Translation Tables
  595. scope: xlat
  596. - title: C Standard Library
  597. scope: libc
  598. - title: Locks
  599. scope: locks
  600. - title: PSA
  601. scope: psa
  602. deprecated:
  603. - lib/psa
  604. - title: DICE Protection Environment
  605. scope: dice
  606. - title: Context Management
  607. scope: context-mgmt
  608. deprecated:
  609. - context mgmt
  610. - title: Semihosting
  611. scope: semihosting
  612. - title: Firmware Handoff
  613. scope: handoff
  614. - title: Exception Handling Framework (EHF)
  615. scope: ehf
  616. - title: Drivers
  617. subsections:
  618. - title: Authentication
  619. scope: auth
  620. deprecated:
  621. - driver/auth
  622. subsections:
  623. - title: CryptoCell-713
  624. scope: cc-713
  625. - title: Crypto
  626. scope: crypto
  627. - title: mbedTLS
  628. scope: mbedtls
  629. - title: mbedTLS-PSA
  630. scope: mbedtls-psa
  631. - title: Console
  632. scope: console
  633. - title: Generic Clock
  634. scope: clk
  635. - title: FWU
  636. scope: fwu
  637. deprecated:
  638. - fwu_metadata
  639. - title: I/O
  640. scope: io
  641. subsections:
  642. - title: MTD
  643. scope: mtd
  644. deprecated:
  645. - io_mtd
  646. - title: Measured Boot
  647. scope: measured-boot
  648. deprecated:
  649. - measured boot
  650. - measured_boot
  651. - title: MMC
  652. scope: mmc
  653. deprecated:
  654. - drivers/mmc
  655. - title: MTD
  656. scope: mtd
  657. deprecated:
  658. - drivers/mtd
  659. subsections:
  660. - title: NAND
  661. scope: nand
  662. subsections:
  663. - title: SPI NAND
  664. scope: spi-nand
  665. deprecated:
  666. - spi_nand
  667. - title: GUID Partition Tables Support
  668. scope: guid-partition
  669. deprecated:
  670. - partition
  671. - title: SCMI
  672. scope: scmi
  673. deprecated:
  674. - scmi_common
  675. - drivers/scmi-msg
  676. - scmi-msg
  677. - title: UFS
  678. scope: ufs
  679. - title: Arm
  680. scope: arm-drivers
  681. subsections:
  682. - title: Ethos-N
  683. scope: ethos-n
  684. deprecated:
  685. - drivers/arm/ethosn
  686. - title: GIC
  687. scope: gic
  688. subsections:
  689. - title: GICv3
  690. scope: gicv3
  691. deprecated:
  692. - gicv3/multichip
  693. subsections:
  694. - title: GIC-600
  695. scope: gic600
  696. - title: GIC-600AE
  697. scope: gic600ae
  698. - title: GICv2
  699. scope: gicv2
  700. - title: SMMU
  701. scope: smmu
  702. - title: MHU
  703. scope: mhu
  704. deprecated:
  705. - drivers/arm/mhu
  706. - title: RSE
  707. scope: rse
  708. deprecated:
  709. - drivers/arm/rss
  710. - rss
  711. - title: TZC
  712. scope: tzc
  713. subsections:
  714. - title: TZC-400
  715. scope: tzc400
  716. deprecated:
  717. - drivers/tzc400
  718. - title: TZC-380
  719. scope: tzc380
  720. deprecated:
  721. - drivers/tzc380
  722. - title: SBSA
  723. scope: sbsa
  724. - title: Marvell
  725. scope: marvell-drivers
  726. subsections:
  727. - title: COMPHY
  728. scope: marvell-comphy
  729. deprecated:
  730. - drivers/marvell/comphy
  731. subsections:
  732. - title: Armada 3700
  733. scope: marvell-comphy-3700
  734. deprecated:
  735. - drivers/marvell/comphy-3700
  736. - title: CP110
  737. scope: marvell-comphy-cp110
  738. deprecated:
  739. - drivers/marvell/comphy-cp110
  740. - title: UART
  741. scope: marvell-uart
  742. deprecated:
  743. - plat/marvell/uart
  744. - title: Armada
  745. scope: armada-drivers
  746. subsections:
  747. - title: A3K
  748. scope: a3k-drivers
  749. subsections:
  750. - title: A3720
  751. scope: a3720-uart
  752. deprecated:
  753. - plat/marvell/a3720/uart
  754. - title: MediaTek
  755. scope: mediatek-drivers
  756. subsections:
  757. - title: APU
  758. scope: mediatek-apu
  759. deprecated:
  760. - plat/mediatek/apu
  761. - title: EMI MPU
  762. scope: mediatek-emi-mpu
  763. deprecated:
  764. - plat/mediatek/mpu
  765. - title: PMIC Wrapper
  766. scope: mediatek-pmic-wrapper
  767. deprecated:
  768. - plat/mediatek/pmic_wrap
  769. - title: MT8192
  770. scope: mt8192-drivers
  771. subsections:
  772. - title: SPM
  773. scope: mt8192-spm
  774. deprecated:
  775. - mediatek/mt8192/spm
  776. - title: NXP
  777. scope: nxp-drivers
  778. subsections:
  779. - title: DCFG
  780. scope: nxp-dcfg
  781. deprecated:
  782. - driver/nxp/dcfg
  783. - title: FLEXSPI
  784. scope: flexspi
  785. deprecated:
  786. - include/drivers/flexspi
  787. - driver/nxp/xspi
  788. - title: SCFG
  789. scope: nxp-scfg
  790. deprecated:
  791. - nxp/scfg
  792. - title: SFP
  793. scope: nxp-sfp
  794. deprecated:
  795. - drivers/nxp/sfp
  796. - title: QSPI
  797. scope: nxp-qspi
  798. - title: NXP Crypto
  799. scope: nxp-crypto
  800. - title: DDR
  801. scope: nxp-ddr
  802. - title: GIC
  803. scope: nxp-gic
  804. - title: CSU
  805. scope: nxp-csu
  806. - title: IFC NAND
  807. scope: nxp-ifc-nand
  808. - title: IFC NOR
  809. scope: nxp-ifc-nor
  810. - title: TZC-380
  811. scope: nxp-tzc380
  812. - title: TRDC
  813. scope: imx-trdc
  814. - title: Clock
  815. scope: nxp-clk
  816. - title: Renesas
  817. scope: renesas-drivers
  818. subsections:
  819. - title: R-Car3
  820. scope: rcar3-drivers
  821. deprecated:
  822. - drivers/rcar3
  823. - title: ST
  824. scope: st-drivers
  825. deprecated:
  826. - drivers/st
  827. subsections:
  828. - title: BSEC
  829. scope: st-bsec
  830. - title: Clock
  831. scope: st-clock
  832. deprecated:
  833. - stm32mp_clk
  834. - drivers/st/clk
  835. - stm32mp1_clk
  836. - title: Crypto
  837. scope: st-crypto
  838. - title: DDR
  839. scope: st-ddr
  840. - title: I/O
  841. scope: st-io-drivers
  842. subsections:
  843. - title: STM32 Image
  844. scope: st-io-stm32image
  845. deprecated:
  846. - io-stm32image
  847. - io_stm32image
  848. - title: I2C
  849. scope: st-i2c
  850. - title: FMC
  851. scope: st-fmc
  852. - title: GPIO
  853. scope: st-gpio
  854. - title: SDMMC2
  855. scope: st-sdmmc2
  856. deprecated:
  857. - stm32_sdmmc2
  858. - title: ST PMIC
  859. scope: st-pmic
  860. deprecated:
  861. - drivers/st/pmic
  862. - title: STPMIC1
  863. scope: stpmic1
  864. - title: Regulator
  865. scope: st-regulator
  866. - title: Reset
  867. scope: st-reset
  868. - title: SPI
  869. scope: st-spi
  870. - title: UART
  871. scope: st-uart
  872. subsections:
  873. - title: STM32 Console
  874. scope: stm32-console
  875. deprecated:
  876. - stm32_console
  877. - title: USB
  878. scope: st-usb
  879. deprecated:
  880. - drivers/st/usb
  881. - title: Watchdog
  882. scope: st-iwdg
  883. - title: USB
  884. scope: usb
  885. deprecated:
  886. - drivers/usb
  887. - title: Miscellaneous
  888. subsections:
  889. - title: AArch64
  890. scope: aarch64
  891. - title: Debug
  892. scope: debug
  893. deprecated:
  894. - common/debug
  895. - title: CRC32
  896. scope: crc32
  897. subsections:
  898. - title: Hardware CRC32
  899. scope: hw-crc32
  900. deprecated:
  901. - hw_crc
  902. - hw_crc32
  903. - title: Software CRC32
  904. scope: sw-crc32
  905. deprecated:
  906. - sw_crc32
  907. - title: DT Bindings
  908. scope: dt-bindings
  909. - title: FDT Wrappers
  910. scope: fdt-wrappers
  911. - title: FDTs
  912. scope: fdts
  913. deprecated:
  914. - fdt
  915. subsections:
  916. - title: Morello
  917. scope: morello-fdts
  918. deprecated:
  919. - fdts/morello
  920. - title: STM32MP1
  921. scope: stm32mp1-fdts
  922. deprecated:
  923. - fdts stm32mp1
  924. subsections:
  925. - title: STM32MP13
  926. scope: stm32mp13-fdts
  927. - title: STM32MP15
  928. scope: stm32mp15-fdts
  929. - title: STM32MP2
  930. scope: stm32mp2-fdts
  931. - title: PIE
  932. scope: pie
  933. - title: PIE/POR
  934. scope: pie/por
  935. - title: Security
  936. scope: security
  937. - title: SDEI
  938. scope: sdei
  939. - title: TBBR
  940. scope: tbbr
  941. - title: NXP
  942. subsections:
  943. - title: OCRAM
  944. scope: nxp-ocram
  945. deprecated:
  946. - nxp/common/ocram
  947. - title: PSCI
  948. scope: nxp-psci
  949. deprecated:
  950. - plat/nxp/common/psci
  951. - title: UUID
  952. scope: uuid
  953. - title: Documentation
  954. scope: docs
  955. deprecated:
  956. - doc
  957. subsections:
  958. - title: Changelog
  959. scope: changelog
  960. - title: Commit Style
  961. scope: commit-style
  962. - title: Contribution Guidelines
  963. scope: contributing
  964. deprecated:
  965. - contribution-guidelines
  966. - docs-contributing.rst
  967. - title: Maintainers
  968. scope: maintainers
  969. - title: Prerequisites
  970. scope: prerequisites
  971. - title: Threat Model
  972. scope: threat-model
  973. - title: Porting Guide
  974. scope: porting
  975. - title: Build System
  976. scope: build
  977. deprecated:
  978. - makefile
  979. - Makefile
  980. subsections:
  981. - title: Git Hooks
  982. scope: hooks
  983. deprecated:
  984. - git-hooks
  985. - title: Tools
  986. scope: tools
  987. subsections:
  988. - title: STM32 Image
  989. scope: stm32image
  990. deprecated:
  991. - tools/stm32image
  992. - title: NXP Tools
  993. scope: nxp-tools
  994. - title: Firmware Image Package Tool
  995. scope: fiptool
  996. - title: Secure Partition Tool
  997. scope: sptool
  998. - title: Certificate Creation Tool
  999. scope: cert-create
  1000. - title: Firmware Encryption Tool
  1001. scope: encrypt-fw
  1002. - title: Memory Mapping Tool
  1003. scope: memmap
  1004. deprecated:
  1005. - cert_create
  1006. - title: Marvell Tools
  1007. scope: marvell-tools
  1008. - title: Renesas Tools
  1009. scope: renesas-tools
  1010. subsections:
  1011. - title: R-Car Layout Tool
  1012. scope: rcar-layout
  1013. - title: R/ZG Layout Tool
  1014. scope: rzg-layout
  1015. - title: Transfer List Compiler
  1016. scope: tlc
  1017. - title: Chain of Trust device tree to C source file
  1018. scope: cot-dt2c
  1019. - title: Dependencies
  1020. scope: deps
  1021. subsections:
  1022. - title: checkpatch
  1023. scope: checkpatch
  1024. - title: commitlint
  1025. scope: commitlint
  1026. - title: Compiler runtime libraries
  1027. scope: compiler-rt
  1028. - title: libfdt
  1029. scope: libfdt
  1030. - title: Node Package Manager (NPM)
  1031. scope: npm
  1032. - title: Poetry
  1033. scope: poetry
  1034. - title: zlib
  1035. scope: zlib