Re: [PATCH 7/10] mmc: sdhci-xenon: Add support to PHYs of Marvell Xenon SDHC
From: Ulf Hansson <hidden>
Date: 2016-11-28 11:13:57
Also in:
linux-arm-kernel, linux-mmc, lkml
From: Ulf Hansson <hidden>
Date: 2016-11-28 11:13:57
Also in:
linux-arm-kernel, linux-mmc, lkml
As you suggest, I replace mmc_wait_for_cmd() with mmc_send_tuning(), to
send commands for testing current sampling point set in our host PHY.
According to my test result, it shows that mmc_send_tuning() can only support
tuning command (CMD21/CMD19).
As a result, we cannot use mmc_send_tuning() when card is in the speed modes
which doesn't support tuning, such as eMMC HS SDR, eMMC HS DRR and
SD SDR 12/SDR25/DDR50. Card will not response to tuning commands in those
speed modes.
Could you please provide suggestions for the speed mode in which tuning is
not available?Normally the mmc host driver shouldn't have to care about what the card supports, as that is the responsibility of the mmc core to manage. The host should only need to implement the ->execute_tuning() ops, which gets called when the card supports tuning (CMD19/21). Does it make sense? Kind regards Uffe