changelog.yaml 26 KB

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