changelog.yaml 27 KB

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