On 9/3/24 11:51, Avri Altman wrote: > Add missing documentation for mmc-test. Should be mmc_test, right? > > Signed-off-by: Avri Altman <avri.altman@xxxxxxx> > --- > Documentation/driver-api/mmc/index.rst | 1 + > Documentation/driver-api/mmc/mmc-test.rst | 287 ++++++++++++++++++++++ > 2 files changed, 288 insertions(+) > create mode 100644 Documentation/driver-api/mmc/mmc-test.rst > > diff --git a/Documentation/driver-api/mmc/index.rst b/Documentation/driver-api/mmc/index.rst > index 7339736ac774..8188863e5959 100644 > --- a/Documentation/driver-api/mmc/index.rst > +++ b/Documentation/driver-api/mmc/index.rst > @@ -10,4 +10,5 @@ MMC/SD/SDIO card support > mmc-dev-attrs > mmc-dev-parts > mmc-async-req > + mmc-test > mmc-tools > diff --git a/Documentation/driver-api/mmc/mmc-test.rst b/Documentation/driver-api/mmc/mmc-test.rst > new file mode 100644 > index 000000000000..924f87abcb77 > --- /dev/null > +++ b/Documentation/driver-api/mmc/mmc-test.rst > @@ -0,0 +1,287 @@ > +.. SPDX-License-Identifier: GPL-2.0 > + > +======================== > +MMC Test Framework > +======================== > + > +Overview > +======== > + > +The MMC Test Framework (`mmc_test`) is designed to facilitate testing of MMC (MultiMediaCard) devices. It provides a set of tests and utilities to verify the functionality and performance of MMC devices. > + The goal of mmc_test is probably more to test host controller drivers and shouldn't be limited to actual MMC devices itself, but rather all devices handled by the mmc subsystem, at least for SD that is currently true for the tests, too. Apart from that looks like a good start.