Lines Matching +full:sd +full:- +full:uhs +full:- +full:ddr50

1 // SPDX-License-Identifier: GPL-2.0-only
14 #include <linux/fault-inject.h>
54 struct mmc_host *host = s->private; in mmc_ios_show()
55 struct mmc_ios *ios = &host->ios; in mmc_ios_show()
58 seq_printf(s, "clock:\t\t%u Hz\n", ios->clock); in mmc_ios_show()
59 if (host->actual_clock) in mmc_ios_show()
60 seq_printf(s, "actual clock:\t%u Hz\n", host->actual_clock); in mmc_ios_show()
61 seq_printf(s, "vdd:\t\t%u ", ios->vdd); in mmc_ios_show()
62 if ((1 << ios->vdd) & MMC_VDD_165_195) in mmc_ios_show()
63 seq_printf(s, "(1.65 - 1.95 V)\n"); in mmc_ios_show()
64 else if (ios->vdd < (ARRAY_SIZE(vdd_str) - 1) in mmc_ios_show()
65 && vdd_str[ios->vdd] && vdd_str[ios->vdd + 1]) in mmc_ios_show()
66 seq_printf(s, "(%s ~ %s V)\n", vdd_str[ios->vdd], in mmc_ios_show()
67 vdd_str[ios->vdd + 1]); in mmc_ios_show()
71 switch (ios->bus_mode) { in mmc_ios_show()
76 str = "push-pull"; in mmc_ios_show()
82 seq_printf(s, "bus mode:\t%u (%s)\n", ios->bus_mode, str); in mmc_ios_show()
84 switch (ios->chip_select) { in mmc_ios_show()
98 seq_printf(s, "chip select:\t%u (%s)\n", ios->chip_select, str); in mmc_ios_show()
100 switch (ios->power_mode) { in mmc_ios_show()
114 seq_printf(s, "power mode:\t%u (%s)\n", ios->power_mode, str); in mmc_ios_show()
116 ios->bus_width, 1 << ios->bus_width); in mmc_ios_show()
118 switch (ios->timing) { in mmc_ios_show()
123 str = "mmc high-speed"; in mmc_ios_show()
126 str = "sd high-speed"; in mmc_ios_show()
129 str = "sd uhs SDR12"; in mmc_ios_show()
132 str = "sd uhs SDR25"; in mmc_ios_show()
135 str = "sd uhs SDR50"; in mmc_ios_show()
138 str = "sd uhs SDR104"; in mmc_ios_show()
141 str = "sd uhs DDR50"; in mmc_ios_show()
150 str = mmc_card_hs400es(host->card) ? in mmc_ios_show()
157 seq_printf(s, "timing spec:\t%u (%s)\n", ios->timing, str); in mmc_ios_show()
159 switch (ios->signal_voltage) { in mmc_ios_show()
173 seq_printf(s, "signal voltage:\t%u (%s)\n", ios->signal_voltage, str); in mmc_ios_show()
175 switch (ios->drv_type) { in mmc_ios_show()
192 seq_printf(s, "driver type:\t%u (%s)\n", ios->drv_type, str); in mmc_ios_show()
202 *val = host->ios.clock; in mmc_clock_opt_get()
212 if (val != 0 && (val > host->f_max || val < host->f_min)) in mmc_clock_opt_set()
213 return -EINVAL; in mmc_clock_opt_set()
230 host->debugfs_root = root; in mmc_add_host_debugfs()
233 debugfs_create_x32("caps", S_IRUSR, root, &host->caps); in mmc_add_host_debugfs()
234 debugfs_create_x32("caps2", S_IRUSR, root, &host->caps2); in mmc_add_host_debugfs()
241 host->fail_mmc_request = fail_default_attr; in mmc_add_host_debugfs()
243 &host->fail_mmc_request); in mmc_add_host_debugfs()
249 debugfs_remove_recursive(host->debugfs_root); in mmc_remove_host_debugfs()
254 struct mmc_host *host = card->host; in mmc_add_card_debugfs()
257 if (!host->debugfs_root) in mmc_add_card_debugfs()
260 root = debugfs_create_dir(mmc_card_id(card), host->debugfs_root); in mmc_add_card_debugfs()
261 card->debugfs_root = root; in mmc_add_card_debugfs()
263 debugfs_create_x32("state", S_IRUSR, root, &card->state); in mmc_add_card_debugfs()
268 debugfs_remove_recursive(card->debugfs_root); in mmc_remove_card_debugfs()
269 card->debugfs_root = NULL; in mmc_remove_card_debugfs()