check dmesg for any potential errors
https://github.com/raspberrypi/linux/bl ... st.c#L1853any time the driver gets a checksum error, it will reduce the overclock by 1mhz
https://github.com/raspberrypi/linux/bl ... st.c#L1853
Code:
/* Drop the overclock after any data corruption, or after any * error while overclocked. Ignore errors for status commands, * as they are likely when a card is ejected. */if (host->overclock) {if ((mrq->cmd && mrq->cmd->error && (mrq->cmd->opcode != MMC_SEND_STATUS)) || (mrq->data && mrq->data->error) || (mrq->stop && mrq->stop->error) || (mrq->sbc && mrq->sbc->error)) {host->overclock_50--;pr_warn("%s: reducing overclock due to errors\n",mmc_hostname(host->mmc));host->reset_clock = 1;mrq->cmd->error = -ETIMEDOUT;mrq->cmd->retries = 1;}}
Statistics: Posted by cleverca22 — Wed May 08, 2024 11:32 am