return soc_is_rk3188plus() || soc_is_rk3188();
}
+#ifdef CONFIG_SOC_RK3188M
+static inline bool soc_is_rk3188m(void) { return true; }
+#else
+static inline bool soc_is_rk3188m(void) { return false; }
+#endif
+
static inline bool soc_is_rk3028(void) { return soc_is_rk3168m(); }
static inline bool soc_is_rk3168(void) { return soc_is_rk3108(); }
#if defined(CONFIG_SOC_RK3066B) || defined(CONFIG_SOC_RK3108) \r
#define RK3066B_HOST_DRV_VBUS RK30_PIN0_PD7\r
#define RK3066B_OTG_DRV_VBUS RK30_PIN0_PD6\r
-#elif defined(CONFIG_SOC_RK3168) || defined(CONFIG_SOC_RK3188) || defined(CONFIG_SOC_RK3168M)\r
+#elif defined(CONFIG_SOC_RK3168) || defined(CONFIG_SOC_RK3188) || defined(CONFIG_SOC_RK3168M) || defined(CONFIG_SOC_RK3188M)\r
#define RK3066B_HOST_DRV_VBUS RK30_PIN0_PC0\r
#define RK3066B_OTG_DRV_VBUS RK30_PIN3_PD5\r
#elif defined(CONFIG_SOC_RK3028)\r