|
@@ -123,12 +123,16 @@ static const short hawk_mmcsd0_pins[] = {
|
|
-1
|
|
-1
|
|
};
|
|
};
|
|
|
|
|
|
|
|
+#define DA850_HAWK_MMCSD_CD_PIN GPIO_TO_PIN(3, 12)
|
|
|
|
+#define DA850_HAWK_MMCSD_WP_PIN GPIO_TO_PIN(3, 13)
|
|
|
|
+
|
|
static struct gpiod_lookup_table mmc_gpios_table = {
|
|
static struct gpiod_lookup_table mmc_gpios_table = {
|
|
.dev_id = "da830-mmc.0",
|
|
.dev_id = "da830-mmc.0",
|
|
.table = {
|
|
.table = {
|
|
- /* CD: gpio3_12: gpio60: chip 1 contains gpio range 32-63*/
|
|
|
|
- GPIO_LOOKUP("davinci_gpio.0", 28, "cd", GPIO_ACTIVE_LOW),
|
|
|
|
- GPIO_LOOKUP("davinci_gpio.0", 29, "wp", GPIO_ACTIVE_LOW),
|
|
|
|
|
|
+ GPIO_LOOKUP("davinci_gpio.0", DA850_HAWK_MMCSD_CD_PIN, "cd",
|
|
|
|
+ GPIO_ACTIVE_LOW),
|
|
|
|
+ GPIO_LOOKUP("davinci_gpio.0", DA850_HAWK_MMCSD_WP_PIN, "wp",
|
|
|
|
+ GPIO_ACTIVE_LOW),
|
|
},
|
|
},
|
|
};
|
|
};
|
|
|
|
|