]> git.karo-electronics.de Git - karo-tx-linux.git/commitdiff
mmc: mmc_test: add debugfs file to list all tests
authorPer Forlin <per.forlin@linaro.org>
Fri, 1 Jul 2011 16:55:25 +0000 (18:55 +0200)
committerLothar Waßmann <LW@KARO-electronics.de>
Fri, 24 May 2013 06:34:09 +0000 (08:34 +0200)
Add a debugfs file "testlist" to print all available tests.

Signed-off-by: Per Forlin <per.forlin@linaro.org>
Acked-by: Kyungmin Park <kyungmin.park@samsung.com>
Acked-by: Arnd Bergmann <arnd@arndb.de>
Reviewed-by: Venkatraman S <svenkatr@ti.com>
Tested-by: Sourav Poddar<sourav.poddar@ti.com>
Tested-by: Linus Walleij <linus.walleij@linaro.org>
Signed-off-by: Chris Ball <cjb@laptop.org>
drivers/mmc/card/mmc_test.c

index 233cdfae92f4bdff7c814737ad2c6a4a4dd1c26e..e8508e99aed5c5c62347ed216a59a511cbb2bb0b 100644 (file)
@@ -2445,6 +2445,32 @@ static const struct file_operations mmc_test_fops_test = {
        .release        = single_release,
 };
 
+static int mtf_testlist_show(struct seq_file *sf, void *data)
+{
+       int i;
+
+       mutex_lock(&mmc_test_lock);
+
+       for (i = 0; i < ARRAY_SIZE(mmc_test_cases); i++)
+               seq_printf(sf, "%d:\t%s\n", i+1, mmc_test_cases[i].name);
+
+       mutex_unlock(&mmc_test_lock);
+
+       return 0;
+}
+
+static int mtf_testlist_open(struct inode *inode, struct file *file)
+{
+       return single_open(file, mtf_testlist_show, inode->i_private);
+}
+
+static const struct file_operations mmc_test_fops_testlist = {
+       .open           = mtf_testlist_open,
+       .read           = seq_read,
+       .llseek         = seq_lseek,
+       .release        = single_release,
+};
+
 static void mmc_test_free_file_test(struct mmc_card *card)
 {
        struct mmc_test_dbgfs_file *df, *dfs;
@@ -2476,7 +2502,18 @@ static int mmc_test_register_file_test(struct mmc_card *card)
 
        if (IS_ERR_OR_NULL(file)) {
                dev_err(&card->dev,
-                       "Can't create file. Perhaps debugfs is disabled.\n");
+                       "Can't create test. Perhaps debugfs is disabled.\n");
+               ret = -ENODEV;
+               goto err;
+       }
+
+       if (card->debugfs_root)
+               file = debugfs_create_file("testlist", S_IRUGO,
+                       card->debugfs_root, card, &mmc_test_fops_testlist);
+
+       if (IS_ERR_OR_NULL(file)) {
+               dev_err(&card->dev,
+                       "Can't create testlist. Perhaps debugfs is disabled.\n");
                ret = -ENODEV;
                goto err;
        }