Hi Russel,

On 10/01/2011 06:12 PM, Russell King - ARM Linux wrote:
Shouldn't this also re-enable the ST hardware flow control for non-SDIO
cards?

I do not think that is needed. Hardware flow control is turned on per default for all cards thanks to the .clkreg member of the variant struct:

        mmci_set_clkreg():
                clk |= variant->clkreg_enable;
where
        static struct variant_data variant_ux500v2 = {
                .clkreg_enable          = MCI_ST_UX500_HWFCEN,

This means that HWFC will be on for all cards. This patch only disables it for SDIO cards (thanks to the mmc_card_sdio()-check) during problematic transfers (HW peculiarity), and then re-enables it again for SDIO cards during "normal" transfers. So the HWFC state for non-SDIO cards should not be touched I think.

Best Regards

Stefan Nilsson
--
To unsubscribe from this list: send the line "unsubscribe linux-mmc" in
the body of a message to majord...@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html

Reply via email to