mirror of
https://github.com/hardkernel/linux.git
synced 2026-06-09 04:10:18 +09:00
BACKPORT: drm/bridge: analogix_dp: Convert to GPIO descriptors
This converts the Analogix display port to use GPIO descriptors
instead of DT-extracted numbers.
Change-Id: I9e0d4fc49d50fb7c340688e70c8fa0984bff3c92
Cc: Douglas Anderson <dianders@chromium.org>
Cc: Sean Paul <seanpaul@chromium.org>
Cc: Marek Szyprowski <m.szyprowski@samsung.com>
Cc: Enric Balletbo i Serra <enric.balletbo@collabora.com>
Signed-off-by: Linus Walleij <linus.walleij@linaro.org>
Reviewed-by: Enric Balletbo i Serra <enric.balletbo@collabora.com>
Tested-by: Marek Szyprowski <m.szyprowski@samsung.com>
Reviewed-by: Andrzej Hajda <a.hajda@samsung.com>
Signed-off-by: Andrzej Hajda <a.hajda@samsung.com>
Link: https://patchwork.freedesktop.org/patch/msgid/20190609231339.22136-1-linus.walleij@linaro.org
Signed-off-by: Wyon Bi <bivvy.bi@rock-chips.com>
(cherry picked from commit 5b038dcf9d)
This commit is contained in:
@@ -19,7 +19,7 @@
|
||||
#include <linux/interrupt.h>
|
||||
#include <linux/of.h>
|
||||
#include <linux/of_gpio.h>
|
||||
#include <linux/gpio.h>
|
||||
#include <linux/gpio/consumer.h>
|
||||
#include <linux/component.h>
|
||||
#include <linux/phy/phy.h>
|
||||
|
||||
@@ -1603,12 +1603,18 @@ analogix_dp_bind(struct device *dev, struct drm_device *drm_dev,
|
||||
|
||||
dp->force_hpd = of_property_read_bool(dev->of_node, "force-hpd");
|
||||
|
||||
dp->hpd_gpio = of_get_named_gpio(dev->of_node, "hpd-gpios", 0);
|
||||
if (!gpio_is_valid(dp->hpd_gpio))
|
||||
dp->hpd_gpio = of_get_named_gpio(dev->of_node,
|
||||
"samsung,hpd-gpio", 0);
|
||||
/* Try two different names */
|
||||
dp->hpd_gpiod = devm_gpiod_get_optional(dev, "hpd", GPIOD_IN);
|
||||
if (!dp->hpd_gpiod)
|
||||
dp->hpd_gpiod = devm_gpiod_get_optional(dev, "samsung,hpd",
|
||||
GPIOD_IN);
|
||||
if (IS_ERR(dp->hpd_gpiod)) {
|
||||
dev_err(dev, "error getting HDP GPIO: %ld\n",
|
||||
PTR_ERR(dp->hpd_gpiod));
|
||||
return ERR_CAST(dp->hpd_gpiod);
|
||||
}
|
||||
|
||||
if (gpio_is_valid(dp->hpd_gpio)) {
|
||||
if (dp->hpd_gpiod) {
|
||||
/*
|
||||
* Set up the hotplug GPIO from the device tree as an interrupt.
|
||||
* Simply specifying a different interrupt in the device tree
|
||||
@@ -1616,16 +1622,9 @@ analogix_dp_bind(struct device *dev, struct drm_device *drm_dev,
|
||||
* using a GPIO. We also need the actual GPIO specifier so
|
||||
* that we can get the current state of the GPIO.
|
||||
*/
|
||||
ret = devm_gpio_request_one(&pdev->dev, dp->hpd_gpio, GPIOF_IN,
|
||||
"hpd_gpio");
|
||||
if (ret) {
|
||||
dev_err(&pdev->dev, "failed to get hpd gpio\n");
|
||||
return ERR_PTR(ret);
|
||||
}
|
||||
dp->irq = gpio_to_irq(dp->hpd_gpio);
|
||||
dp->irq = gpiod_to_irq(dp->hpd_gpiod);
|
||||
irq_flags = IRQF_TRIGGER_RISING | IRQF_TRIGGER_FALLING;
|
||||
} else {
|
||||
dp->hpd_gpio = -ENODEV;
|
||||
dp->irq = platform_get_irq(pdev, 0);
|
||||
irq_flags = 0;
|
||||
}
|
||||
|
||||
@@ -38,6 +38,8 @@
|
||||
#define DPCD_VOLTAGE_SWING_SET(x) (((x) & 0x3) << 0)
|
||||
#define DPCD_VOLTAGE_SWING_GET(x) (((x) >> 0) & 0x3)
|
||||
|
||||
struct gpio_desc;
|
||||
|
||||
enum link_lane_count_type {
|
||||
LANE_COUNT1 = 1,
|
||||
LANE_COUNT2 = 2,
|
||||
@@ -174,7 +176,7 @@ struct analogix_dp_device {
|
||||
struct link_train link_train;
|
||||
struct phy *phy;
|
||||
int dpms_mode;
|
||||
int hpd_gpio;
|
||||
struct gpio_desc *hpd_gpiod;
|
||||
bool force_hpd;
|
||||
bool psr_enable;
|
||||
bool fast_train_enable;
|
||||
|
||||
@@ -12,7 +12,7 @@
|
||||
|
||||
#include <linux/delay.h>
|
||||
#include <linux/device.h>
|
||||
#include <linux/gpio.h>
|
||||
#include <linux/gpio/consumer.h>
|
||||
#include <linux/io.h>
|
||||
#include <linux/iopoll.h>
|
||||
|
||||
@@ -206,7 +206,7 @@ void analogix_dp_config_interrupt(struct analogix_dp_device *dp)
|
||||
reg = COMMON_INT_MASK_3;
|
||||
analogix_dp_write(dp, ANALOGIX_DP_COMMON_INT_MASK_3, reg);
|
||||
|
||||
if (dp->force_hpd || gpio_is_valid(dp->hpd_gpio))
|
||||
if (dp->force_hpd || dp->hpd_gpiod)
|
||||
analogix_dp_mute_hpd_interrupt(dp);
|
||||
else
|
||||
analogix_dp_unmute_hpd_interrupt(dp);
|
||||
@@ -417,7 +417,7 @@ void analogix_dp_clear_hotplug_interrupts(struct analogix_dp_device *dp)
|
||||
{
|
||||
u32 reg;
|
||||
|
||||
if (gpio_is_valid(dp->hpd_gpio))
|
||||
if (dp->hpd_gpiod)
|
||||
return;
|
||||
|
||||
reg = HOTPLUG_CHG | HPD_LOST | PLUG;
|
||||
@@ -431,7 +431,7 @@ void analogix_dp_init_hpd(struct analogix_dp_device *dp)
|
||||
{
|
||||
u32 reg;
|
||||
|
||||
if (gpio_is_valid(dp->hpd_gpio))
|
||||
if (dp->hpd_gpiod)
|
||||
return;
|
||||
|
||||
analogix_dp_clear_hotplug_interrupts(dp);
|
||||
@@ -454,8 +454,8 @@ enum dp_irq_type analogix_dp_get_irq_type(struct analogix_dp_device *dp)
|
||||
{
|
||||
u32 reg;
|
||||
|
||||
if (gpio_is_valid(dp->hpd_gpio)) {
|
||||
reg = gpio_get_value(dp->hpd_gpio);
|
||||
if (dp->hpd_gpiod) {
|
||||
reg = gpiod_get_value(dp->hpd_gpiod);
|
||||
if (reg)
|
||||
return DP_IRQ_TYPE_HP_CABLE_IN;
|
||||
else
|
||||
@@ -528,8 +528,8 @@ int analogix_dp_get_plug_in_status(struct analogix_dp_device *dp)
|
||||
{
|
||||
u32 reg;
|
||||
|
||||
if (gpio_is_valid(dp->hpd_gpio)) {
|
||||
if (gpio_get_value(dp->hpd_gpio))
|
||||
if (dp->hpd_gpiod) {
|
||||
if (gpiod_get_value(dp->hpd_gpiod))
|
||||
return 0;
|
||||
} else {
|
||||
reg = analogix_dp_read(dp, ANALOGIX_DP_SYS_CTL_3);
|
||||
|
||||
Reference in New Issue
Block a user