milkv/pioneer: init

This commit is contained in:
Steven Keuchel
2024-03-31 01:45:46 +01:00
committed by RaitoBezarius
parent cac934beb3
commit f4a07223a3
13 changed files with 402 additions and 0 deletions

View File

@@ -0,0 +1,15 @@
--- a/drivers/sd/sd.c
+++ b/drivers/sd/sd.c
@@ -560,11 +560,11 @@ static int bm_sd_read(int lba, uintptr_t buf, size_t size)
} else {
udelay(1);
timeout++;
}
- if (timeout >= 10000) {
+ if (timeout >= 100000) {
printf("sdhci read data timeout\n");
goto timeout;
}
}