summaryrefslogtreecommitdiff
path: root/firmware/target/mips/ingenic_x1000/msc-x1000.c
diff options
context:
space:
mode:
Diffstat (limited to 'firmware/target/mips/ingenic_x1000/msc-x1000.c')
-rw-r--r--firmware/target/mips/ingenic_x1000/msc-x1000.c13
1 files changed, 12 insertions, 1 deletions
diff --git a/firmware/target/mips/ingenic_x1000/msc-x1000.c b/firmware/target/mips/ingenic_x1000/msc-x1000.c
index 3b7df1dd01..d0359a53e2 100644
--- a/firmware/target/mips/ingenic_x1000/msc-x1000.c
+++ b/firmware/target/mips/ingenic_x1000/msc-x1000.c
@@ -42,7 +42,7 @@
42#define DEBOUNCE_TIME (HZ/10) 42#define DEBOUNCE_TIME (HZ/10)
43 43
44static const msc_config msc_configs[] = { 44static const msc_config msc_configs[] = {
45#ifdef FIIO_M3K 45#if defined(FIIO_M3K)
46#define MSC_CLOCK_SOURCE X1000_CLK_SCLK_A 46#define MSC_CLOCK_SOURCE X1000_CLK_SCLK_A
47 { 47 {
48 .msc_nr = 0, 48 .msc_nr = 0,
@@ -52,6 +52,17 @@ static const msc_config msc_configs[] = {
52 .cd_gpio = GPIO_MSC0_CD, 52 .cd_gpio = GPIO_MSC0_CD,
53 .cd_active_level = 0, 53 .cd_active_level = 0,
54 }, 54 },
55#elif defined(SHANLING_Q1)
56#define MSC_CLOCK_SOURCE X1000_CLK_MPLL
57 {
58 .msc_nr = 0,
59 .msc_type = MSC_TYPE_SD,
60 .bus_width = 4,
61 .label = "microSD",
62 .cd_gpio = GPIO_MSC0_CD,
63 .cd_active_level = 0,
64 },
65 /* NOTE: SDIO wifi card is on msc1 */
55#else 66#else
56# error "Please add X1000 MSC config" 67# error "Please add X1000 MSC config"
57#endif 68#endif