Merge tag 'ti-v2020.07-rc3' of https://gitlab.denx.de/u-boot/custodians/u-boot-ti
[oweals/u-boot.git] / drivers / pinctrl / aspeed / pinctrl_ast2500.c
index 01f97c1b48d1de64b2822043f22c021774ed9958..05ef24864f2e91554bafd3523141b332ec74a8b6 100644 (file)
@@ -1,19 +1,17 @@
+// SPDX-License-Identifier: GPL-2.0+
 /*
  * Copyright 2017 Google, Inc
- *
- * SPDX-License-Identifier: GPL-2.0+
  */
 
 #include <common.h>
 #include <dm.h>
 #include <errno.h>
+#include <log.h>
 #include <asm/io.h>
 #include <asm/arch/pinctrl.h>
 #include <asm/arch/scu_ast2500.h>
 #include <dm/pinctrl.h>
 
-DECLARE_GLOBAL_DATA_PTR;
-
 /*
  * This driver works with very simple configuration that has the same name
  * for group and function. This way it is compatible with the Linux Kernel
@@ -61,6 +59,8 @@ static const struct ast2500_group_config ast2500_groups[] = {
        { "MDIO1", 3, (1 << 31) | (1 << 30) },
        { "MAC2LINK", 1, (1 << 1) },
        { "MDIO2", 5, (1 << 2) },
+       { "SD1", 5, (1 << 0) },
+       { "SD2", 5, (1 << 1) },
 };
 
 static int ast2500_pinctrl_get_groups_count(struct udevice *dev)