mirror of https://gitee.com/openkylin/linux.git
drm/bridge: analogix_dp: Convert to GPIO descriptors
This converts the Analogix display port to use GPIO descriptors instead of DT-extracted numbers. 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
This commit is contained in:
parent
eb19e8479b
commit
5b038dcf9d
|
@ -13,13 +13,12 @@
|
||||||
#include <linux/clk.h>
|
#include <linux/clk.h>
|
||||||
#include <linux/component.h>
|
#include <linux/component.h>
|
||||||
#include <linux/err.h>
|
#include <linux/err.h>
|
||||||
#include <linux/gpio.h>
|
#include <linux/gpio/consumer.h>
|
||||||
#include <linux/interrupt.h>
|
#include <linux/interrupt.h>
|
||||||
#include <linux/io.h>
|
#include <linux/io.h>
|
||||||
#include <linux/iopoll.h>
|
#include <linux/iopoll.h>
|
||||||
#include <linux/module.h>
|
#include <linux/module.h>
|
||||||
#include <linux/of.h>
|
#include <linux/of.h>
|
||||||
#include <linux/of_gpio.h>
|
|
||||||
#include <linux/phy/phy.h>
|
#include <linux/phy/phy.h>
|
||||||
#include <linux/platform_device.h>
|
#include <linux/platform_device.h>
|
||||||
|
|
||||||
|
@ -1583,12 +1582,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->force_hpd = of_property_read_bool(dev->of_node, "force-hpd");
|
||||||
|
|
||||||
dp->hpd_gpio = of_get_named_gpio(dev->of_node, "hpd-gpios", 0);
|
/* Try two different names */
|
||||||
if (!gpio_is_valid(dp->hpd_gpio))
|
dp->hpd_gpiod = devm_gpiod_get_optional(dev, "hpd", GPIOD_IN);
|
||||||
dp->hpd_gpio = of_get_named_gpio(dev->of_node,
|
if (!dp->hpd_gpiod)
|
||||||
"samsung,hpd-gpio", 0);
|
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.
|
* Set up the hotplug GPIO from the device tree as an interrupt.
|
||||||
* Simply specifying a different interrupt in the device tree
|
* Simply specifying a different interrupt in the device tree
|
||||||
|
@ -1596,16 +1601,9 @@ analogix_dp_bind(struct device *dev, struct drm_device *drm_dev,
|
||||||
* using a GPIO. We also need the actual GPIO specifier so
|
* using a GPIO. We also need the actual GPIO specifier so
|
||||||
* that we can get the current state of the GPIO.
|
* that we can get the current state of the GPIO.
|
||||||
*/
|
*/
|
||||||
ret = devm_gpio_request_one(&pdev->dev, dp->hpd_gpio, GPIOF_IN,
|
dp->irq = gpiod_to_irq(dp->hpd_gpiod);
|
||||||
"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);
|
|
||||||
irq_flags = IRQF_TRIGGER_RISING | IRQF_TRIGGER_FALLING;
|
irq_flags = IRQF_TRIGGER_RISING | IRQF_TRIGGER_FALLING;
|
||||||
} else {
|
} else {
|
||||||
dp->hpd_gpio = -ENODEV;
|
|
||||||
dp->irq = platform_get_irq(pdev, 0);
|
dp->irq = platform_get_irq(pdev, 0);
|
||||||
irq_flags = 0;
|
irq_flags = 0;
|
||||||
}
|
}
|
||||||
|
|
|
@ -38,6 +38,8 @@
|
||||||
#define DPCD_VOLTAGE_SWING_SET(x) (((x) & 0x3) << 0)
|
#define DPCD_VOLTAGE_SWING_SET(x) (((x) & 0x3) << 0)
|
||||||
#define DPCD_VOLTAGE_SWING_GET(x) (((x) >> 0) & 0x3)
|
#define DPCD_VOLTAGE_SWING_GET(x) (((x) >> 0) & 0x3)
|
||||||
|
|
||||||
|
struct gpio_desc;
|
||||||
|
|
||||||
enum link_lane_count_type {
|
enum link_lane_count_type {
|
||||||
LANE_COUNT1 = 1,
|
LANE_COUNT1 = 1,
|
||||||
LANE_COUNT2 = 2,
|
LANE_COUNT2 = 2,
|
||||||
|
@ -171,7 +173,7 @@ struct analogix_dp_device {
|
||||||
struct link_train link_train;
|
struct link_train link_train;
|
||||||
struct phy *phy;
|
struct phy *phy;
|
||||||
int dpms_mode;
|
int dpms_mode;
|
||||||
int hpd_gpio;
|
struct gpio_desc *hpd_gpiod;
|
||||||
bool force_hpd;
|
bool force_hpd;
|
||||||
bool psr_enable;
|
bool psr_enable;
|
||||||
bool fast_train_enable;
|
bool fast_train_enable;
|
||||||
|
|
|
@ -12,7 +12,7 @@
|
||||||
|
|
||||||
#include <linux/delay.h>
|
#include <linux/delay.h>
|
||||||
#include <linux/device.h>
|
#include <linux/device.h>
|
||||||
#include <linux/gpio.h>
|
#include <linux/gpio/consumer.h>
|
||||||
#include <linux/io.h>
|
#include <linux/io.h>
|
||||||
#include <linux/iopoll.h>
|
#include <linux/iopoll.h>
|
||||||
|
|
||||||
|
@ -397,7 +397,7 @@ void analogix_dp_clear_hotplug_interrupts(struct analogix_dp_device *dp)
|
||||||
{
|
{
|
||||||
u32 reg;
|
u32 reg;
|
||||||
|
|
||||||
if (gpio_is_valid(dp->hpd_gpio))
|
if (dp->hpd_gpiod)
|
||||||
return;
|
return;
|
||||||
|
|
||||||
reg = HOTPLUG_CHG | HPD_LOST | PLUG;
|
reg = HOTPLUG_CHG | HPD_LOST | PLUG;
|
||||||
|
@ -411,7 +411,7 @@ void analogix_dp_init_hpd(struct analogix_dp_device *dp)
|
||||||
{
|
{
|
||||||
u32 reg;
|
u32 reg;
|
||||||
|
|
||||||
if (gpio_is_valid(dp->hpd_gpio))
|
if (dp->hpd_gpiod)
|
||||||
return;
|
return;
|
||||||
|
|
||||||
analogix_dp_clear_hotplug_interrupts(dp);
|
analogix_dp_clear_hotplug_interrupts(dp);
|
||||||
|
@ -434,8 +434,8 @@ enum dp_irq_type analogix_dp_get_irq_type(struct analogix_dp_device *dp)
|
||||||
{
|
{
|
||||||
u32 reg;
|
u32 reg;
|
||||||
|
|
||||||
if (gpio_is_valid(dp->hpd_gpio)) {
|
if (dp->hpd_gpiod) {
|
||||||
reg = gpio_get_value(dp->hpd_gpio);
|
reg = gpiod_get_value(dp->hpd_gpiod);
|
||||||
if (reg)
|
if (reg)
|
||||||
return DP_IRQ_TYPE_HP_CABLE_IN;
|
return DP_IRQ_TYPE_HP_CABLE_IN;
|
||||||
else
|
else
|
||||||
|
@ -507,8 +507,8 @@ int analogix_dp_get_plug_in_status(struct analogix_dp_device *dp)
|
||||||
{
|
{
|
||||||
u32 reg;
|
u32 reg;
|
||||||
|
|
||||||
if (gpio_is_valid(dp->hpd_gpio)) {
|
if (dp->hpd_gpiod) {
|
||||||
if (gpio_get_value(dp->hpd_gpio))
|
if (gpiod_get_value(dp->hpd_gpiod))
|
||||||
return 0;
|
return 0;
|
||||||
} else {
|
} else {
|
||||||
reg = readl(dp->reg_base + ANALOGIX_DP_SYS_CTL_3);
|
reg = readl(dp->reg_base + ANALOGIX_DP_SYS_CTL_3);
|
||||||
|
|
Loading…
Reference in New Issue