summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorYongqin Liu <yongqin.liu@linaro.org>2021-01-07 12:34:15 +0800
committerYongqin Liu <yongqin.liu@linaro.org>2021-01-07 12:35:30 +0800
commit939ce5e550f8a972de40bbe8a449497cecf442f3 (patch)
tree57babad747c9c435071beb6662156eaa085e8cf1
parent7d19cc12dbe4a07727cc99447d65cb8f471e0b7a (diff)
downloadhikey-modules-android12-5.10-linaro.tar.gz
Revert "misc: hisi_hikey_usb: Driver to support onboard USB gpio hub on Hikey960"android12-5.10-linaro
This reverts commit b3e0bc2a7875757836b09a8139d7b475a530b97e. Change-Id: If7562ff04a2631e39e445f0ef7f10c544d558331
-rw-r--r--Kbuild1
-rw-r--r--Makefile3
-rw-r--r--misc/Kconfig8
-rw-r--r--misc/Makefile1
-rw-r--r--misc/hisi_hikey_usb.c180
5 files changed, 0 insertions, 193 deletions
diff --git a/Kbuild b/Kbuild
index 1f5a574..f812a57 100644
--- a/Kbuild
+++ b/Kbuild
@@ -1,2 +1 @@
obj-m += midgard/
-obj-m += misc/
diff --git a/Makefile b/Makefile
index 2bffeb6..6a2f141 100644
--- a/Makefile
+++ b/Makefile
@@ -7,9 +7,6 @@ KBUILD_OPTIONS += CONFIG_MALI_PWRSOFT_765=y
KBUILD_OPTIONS += CONFIG_MALI_DEVFREQ=y
KBUILD_OPTIONS += CONFIG_DEVFREQ_THERMAL=y
-# misc: hisi_hikey_usb: Driver to support onboard USB gpio hub on Hikey960
-KBUILD_OPTIONS += CONFIG_HISI_HIKEY_USB=m
-
# only used for google kernel build system
all:
$(MAKE) -C $(KERNEL_SRC) M=$(M) modules $(KBUILD_OPTIONS)
diff --git a/misc/Kconfig b/misc/Kconfig
deleted file mode 100644
index 8135061..0000000
--- a/misc/Kconfig
+++ /dev/null
@@ -1,8 +0,0 @@
-config HISI_HIKEY_USB
- tristate "USB GPIO Hub on HiSilicon Hikey960 Platform"
- depends on OF && GPIOLIB
- help
- If you say yes here this adds support for the on-board USB gpio hub
- found on the HiKey960, which is necssary to support switching between
- the dual-role USB-C port and the USB-A host ports using only one USB
- controller.
diff --git a/misc/Makefile b/misc/Makefile
deleted file mode 100644
index db09b64..0000000
--- a/misc/Makefile
+++ /dev/null
@@ -1 +0,0 @@
-obj-$(CONFIG_HISI_HIKEY_USB) += hisi_hikey_usb.o
diff --git a/misc/hisi_hikey_usb.c b/misc/hisi_hikey_usb.c
deleted file mode 100644
index 18a953e..0000000
--- a/misc/hisi_hikey_usb.c
+++ /dev/null
@@ -1,180 +0,0 @@
-// SPDX-License-Identifier: GPL-2.0
-/*
- * Support for usb functionality of Hikey series boards
- * based on Hisilicon Kirin Soc.
- *
- * Copyright (C) 2017-2018 Hilisicon Electronics Co., Ltd.
- * http://www.huawei.com
- *
- * Authors: Yu Chen <chenyu56@huawei.com>
- */
-
-#include <linux/gpio/consumer.h>
-#include <linux/kernel.h>
-#include <linux/mod_devicetable.h>
-#include <linux/module.h>
-#include <linux/notifier.h>
-#include <linux/platform_device.h>
-#include <linux/property.h>
-#include <linux/slab.h>
-#include <linux/usb/role.h>
-
-#define DEVICE_DRIVER_NAME "hisi_hikey_usb"
-
-#define HUB_VBUS_POWER_ON 1
-#define HUB_VBUS_POWER_OFF 0
-#define USB_SWITCH_TO_HUB 1
-#define USB_SWITCH_TO_TYPEC 0
-#define TYPEC_VBUS_POWER_ON 1
-#define TYPEC_VBUS_POWER_OFF 0
-
-struct hisi_hikey_usb {
- struct gpio_desc *otg_switch;
- struct gpio_desc *typec_vbus;
- struct gpio_desc *hub_vbus;
-
- struct usb_role_switch *hub_role_sw;
- struct usb_role_switch *dev_role_sw;
- struct notifier_block nb;
-};
-
-static void hub_power_ctrl(struct hisi_hikey_usb *hisi_hikey_usb, int value)
-{
- gpiod_set_value_cansleep(hisi_hikey_usb->hub_vbus, value);
-}
-
-static void usb_switch_ctrl(struct hisi_hikey_usb *hisi_hikey_usb,
- int switch_to)
-{
- gpiod_set_value_cansleep(hisi_hikey_usb->otg_switch, switch_to);
-}
-
-static void usb_typec_power_ctrl(struct hisi_hikey_usb *hisi_hikey_usb,
- int value)
-{
- gpiod_set_value_cansleep(hisi_hikey_usb->typec_vbus, value);
-}
-
-static int hub_usb_role_switch_set(struct usb_role_switch *sw, enum usb_role role)
-{
- struct hisi_hikey_usb *hisi_hikey_usb = usb_role_switch_get_drvdata(sw);
-
- if (!hisi_hikey_usb || !hisi_hikey_usb->dev_role_sw)
- return -EINVAL;
-
- switch (role) {
- case USB_ROLE_NONE:
- usb_typec_power_ctrl(hisi_hikey_usb, TYPEC_VBUS_POWER_OFF);
- usb_switch_ctrl(hisi_hikey_usb, USB_SWITCH_TO_HUB);
- hub_power_ctrl(hisi_hikey_usb, HUB_VBUS_POWER_ON);
- break;
- case USB_ROLE_HOST:
- hub_power_ctrl(hisi_hikey_usb, HUB_VBUS_POWER_OFF);
- usb_switch_ctrl(hisi_hikey_usb, USB_SWITCH_TO_TYPEC);
- usb_typec_power_ctrl(hisi_hikey_usb, TYPEC_VBUS_POWER_ON);
- break;
- case USB_ROLE_DEVICE:
- hub_power_ctrl(hisi_hikey_usb, HUB_VBUS_POWER_OFF);
- usb_typec_power_ctrl(hisi_hikey_usb, TYPEC_VBUS_POWER_OFF);
- usb_switch_ctrl(hisi_hikey_usb, USB_SWITCH_TO_TYPEC);
- break;
- default:
- break;
- }
-
- return usb_role_switch_set_role(hisi_hikey_usb->dev_role_sw, role);
-}
-
-static enum usb_role hub_usb_role_switch_get(struct usb_role_switch *sw)
-{
- struct hisi_hikey_usb *hisi_hikey_usb = usb_role_switch_get_drvdata(sw);
-
- if (!hisi_hikey_usb || !hisi_hikey_usb->dev_role_sw)
- return -EINVAL;
-
- return usb_role_switch_get_role(hisi_hikey_usb->dev_role_sw);
-}
-
-static int hisi_hikey_usb_probe(struct platform_device *pdev)
-{
- struct device *dev = &pdev->dev;
- struct hisi_hikey_usb *hisi_hikey_usb;
- struct usb_role_switch_desc hub_role_switch = {NULL};
-
- hisi_hikey_usb = devm_kzalloc(dev, sizeof(*hisi_hikey_usb), GFP_KERNEL);
- if (!hisi_hikey_usb)
- return -ENOMEM;
-
- hisi_hikey_usb->typec_vbus = devm_gpiod_get(dev, "typec-vbus",
- GPIOD_OUT_LOW);
- if (IS_ERR(hisi_hikey_usb->typec_vbus))
- return PTR_ERR(hisi_hikey_usb->typec_vbus);
-
- hisi_hikey_usb->otg_switch = devm_gpiod_get(dev, "otg-switch",
- GPIOD_OUT_HIGH);
- if (IS_ERR(hisi_hikey_usb->otg_switch))
- return PTR_ERR(hisi_hikey_usb->otg_switch);
-
- /* hub-vdd33-en is optional */
- hisi_hikey_usb->hub_vbus = devm_gpiod_get_optional(dev, "hub-vdd33-en",
- GPIOD_OUT_HIGH);
- if (IS_ERR(hisi_hikey_usb->hub_vbus))
- return PTR_ERR(hisi_hikey_usb->hub_vbus);
-
- hisi_hikey_usb->dev_role_sw = usb_role_switch_get(dev);
- if (!hisi_hikey_usb->dev_role_sw)
- return -EPROBE_DEFER;
- if (IS_ERR(hisi_hikey_usb->dev_role_sw))
- return PTR_ERR(hisi_hikey_usb->dev_role_sw);
-
- hub_role_switch.fwnode = dev_fwnode(dev);
- hub_role_switch.set = hub_usb_role_switch_set;
- hub_role_switch.get = hub_usb_role_switch_get;
- hub_role_switch.driver_data = hisi_hikey_usb;
-
- hisi_hikey_usb->hub_role_sw = usb_role_switch_register(dev,
- &hub_role_switch);
-
- if (IS_ERR(hisi_hikey_usb->hub_role_sw)) {
- usb_role_switch_put(hisi_hikey_usb->dev_role_sw);
- return PTR_ERR(hisi_hikey_usb->hub_role_sw);
- }
-
- platform_set_drvdata(pdev, hisi_hikey_usb);
-
- return 0;
-}
-
-static int hisi_hikey_usb_remove(struct platform_device *pdev)
-{
- struct hisi_hikey_usb *hisi_hikey_usb = platform_get_drvdata(pdev);
-
- if (hisi_hikey_usb->hub_role_sw)
- usb_role_switch_unregister(hisi_hikey_usb->hub_role_sw);
-
- if (hisi_hikey_usb->dev_role_sw)
- usb_role_switch_put(hisi_hikey_usb->dev_role_sw);
-
- return 0;
-}
-
-static const struct of_device_id id_table_hisi_hikey_usb[] = {
- {.compatible = "hisilicon,gpio_hubv1"},
- {}
-};
-MODULE_DEVICE_TABLE(of, id_table_hisi_hikey_usb);
-
-static struct platform_driver hisi_hikey_usb_driver = {
- .probe = hisi_hikey_usb_probe,
- .remove = hisi_hikey_usb_remove,
- .driver = {
- .name = DEVICE_DRIVER_NAME,
- .of_match_table = id_table_hisi_hikey_usb,
- },
-};
-
-module_platform_driver(hisi_hikey_usb_driver);
-
-MODULE_AUTHOR("Yu Chen <chenyu56@huawei.com>");
-MODULE_DESCRIPTION("Driver Support for USB functionality of Hikey");
-MODULE_LICENSE("GPL v2");