What is the kernel parameter to disable the Command Queue Engine driver?
I am reading through mmc.c
MMC_DEV_ATTR(cmdq_en, "%d\n", card->ext_csd.cmdq_en);
/*
* Enable Command Queue if supported. Note that Packed Commands cannot
* be used with Command Queue.
*/
card->ext_csd.cmdq_en = false;
I am thinking maybe setting the parameter ext_csd.cmdq_en=false
I tried this sdhci.debug_quirks=0x65168080 as mentioned here but it doesn't work.
