Skip to content
Snippets Groups Projects
Commit 04072cba authored by Simon Glass's avatar Simon Glass
Browse files

dm: tegra: video: Remove use of fdtdec GPIO support


These functions are going away, so use the new uclass support instead.

Signed-off-by: default avatarSimon Glass <sjg@chromium.org>
parent 1d08b4b7
No related branches found
No related tags found
No related merge requests found
...@@ -10,6 +10,7 @@ ...@@ -10,6 +10,7 @@
#include <asm/arch/dc.h> #include <asm/arch/dc.h>
#include <fdtdec.h> #include <fdtdec.h>
#include <asm/gpio.h>
/* This holds information about a window which can be displayed */ /* This holds information about a window which can be displayed */
struct disp_ctl_win { struct disp_ctl_win {
...@@ -72,10 +73,10 @@ struct fdt_panel_config { ...@@ -72,10 +73,10 @@ struct fdt_panel_config {
int pwm_channel; /* PWM channel to use for backlight */ int pwm_channel; /* PWM channel to use for backlight */
enum lcd_cache_t cache_type; enum lcd_cache_t cache_type;
struct fdt_gpio_state backlight_en; /* GPIO for backlight enable */ struct gpio_desc backlight_en; /* GPIO for backlight enable */
struct fdt_gpio_state lvds_shutdown; /* GPIO for lvds shutdown */ struct gpio_desc lvds_shutdown; /* GPIO for lvds shutdown */
struct fdt_gpio_state backlight_vdd; /* GPIO for backlight vdd */ struct gpio_desc backlight_vdd; /* GPIO for backlight vdd */
struct fdt_gpio_state panel_vdd; /* GPIO for panel vdd */ struct gpio_desc panel_vdd; /* GPIO for panel vdd */
/* /*
* Panel required timings * Panel required timings
* Timing 1: delay between panel_vdd-rise and data-rise * Timing 1: delay between panel_vdd-rise and data-rise
......
...@@ -149,14 +149,18 @@ static int fdt_decode_lcd(const void *blob, struct fdt_panel_config *config) ...@@ -149,14 +149,18 @@ static int fdt_decode_lcd(const void *blob, struct fdt_panel_config *config)
FDT_LCD_CACHE_WRITE_BACK_FLUSH); FDT_LCD_CACHE_WRITE_BACK_FLUSH);
/* These GPIOs are all optional */ /* These GPIOs are all optional */
fdtdec_decode_gpio(blob, display_node, "nvidia,backlight-enable-gpios", gpio_request_by_name_nodev(blob, display_node,
&config->backlight_en); "nvidia,backlight-enable-gpios", 0,
fdtdec_decode_gpio(blob, display_node, "nvidia,lvds-shutdown-gpios", &config->backlight_en, GPIOD_IS_OUT);
&config->lvds_shutdown); gpio_request_by_name_nodev(blob, display_node,
fdtdec_decode_gpio(blob, display_node, "nvidia,backlight-vdd-gpios", "nvidia,lvds-shutdown-gpios", 0,
&config->backlight_vdd); &config->lvds_shutdown, GPIOD_IS_OUT);
fdtdec_decode_gpio(blob, display_node, "nvidia,panel-vdd-gpios", gpio_request_by_name_nodev(blob, display_node,
&config->panel_vdd); "nvidia,backlight-vdd-gpios", 0,
&config->backlight_vdd, GPIOD_IS_OUT);
gpio_request_by_name_nodev(blob, display_node,
"nvidia,panel-vdd-gpios", 0,
&config->panel_vdd, GPIOD_IS_OUT);
return fdtdec_get_int_array(blob, display_node, "nvidia,panel-timings", return fdtdec_get_int_array(blob, display_node, "nvidia,panel-timings",
config->panel_timings, FDT_LCD_TIMINGS); config->panel_timings, FDT_LCD_TIMINGS);
...@@ -196,36 +200,18 @@ static int handle_stage(const void *blob) ...@@ -196,36 +200,18 @@ static int handle_stage(const void *blob)
*/ */
funcmux_select(PERIPH_ID_DISP1, FUNCMUX_DEFAULT); funcmux_select(PERIPH_ID_DISP1, FUNCMUX_DEFAULT);
fdtdec_setup_gpio(&config.panel_vdd);
fdtdec_setup_gpio(&config.lvds_shutdown);
fdtdec_setup_gpio(&config.backlight_vdd);
fdtdec_setup_gpio(&config.backlight_en);
/*
* TODO: If fdt includes output flag we can omit this code
* since fdtdec_setup_gpio will do it for us.
*/
if (fdt_gpio_isvalid(&config.panel_vdd))
gpio_direction_output(config.panel_vdd.gpio, 0);
if (fdt_gpio_isvalid(&config.lvds_shutdown))
gpio_direction_output(config.lvds_shutdown.gpio, 0);
if (fdt_gpio_isvalid(&config.backlight_vdd))
gpio_direction_output(config.backlight_vdd.gpio, 0);
if (fdt_gpio_isvalid(&config.backlight_en))
gpio_direction_output(config.backlight_en.gpio, 0);
break; break;
case STAGE_PANEL_VDD: case STAGE_PANEL_VDD:
if (fdt_gpio_isvalid(&config.panel_vdd)) if (dm_gpio_is_valid(&config.panel_vdd))
gpio_direction_output(config.panel_vdd.gpio, 1); dm_gpio_set_value(&config.panel_vdd, 1);
break; break;
case STAGE_LVDS: case STAGE_LVDS:
if (fdt_gpio_isvalid(&config.lvds_shutdown)) if (dm_gpio_is_valid(&config.lvds_shutdown))
gpio_set_value(config.lvds_shutdown.gpio, 1); dm_gpio_set_value(&config.lvds_shutdown, 1);
break; break;
case STAGE_BACKLIGHT_VDD: case STAGE_BACKLIGHT_VDD:
if (fdt_gpio_isvalid(&config.backlight_vdd)) if (dm_gpio_is_valid(&config.backlight_vdd))
gpio_set_value(config.backlight_vdd.gpio, 1); dm_gpio_set_value(&config.backlight_vdd, 1);
break; break;
case STAGE_PWM: case STAGE_PWM:
/* Enable PWM at 15/16 high, 32768 Hz with divider 1 */ /* Enable PWM at 15/16 high, 32768 Hz with divider 1 */
...@@ -235,8 +221,8 @@ static int handle_stage(const void *blob) ...@@ -235,8 +221,8 @@ static int handle_stage(const void *blob)
pwm_enable(config.pwm_channel, 32768, 0xdf, 1); pwm_enable(config.pwm_channel, 32768, 0xdf, 1);
break; break;
case STAGE_BACKLIGHT_EN: case STAGE_BACKLIGHT_EN:
if (fdt_gpio_isvalid(&config.backlight_en)) if (dm_gpio_is_valid(&config.backlight_en))
gpio_set_value(config.backlight_en.gpio, 1); dm_gpio_set_value(&config.backlight_en, 1);
break; break;
case STAGE_DONE: case STAGE_DONE:
break; break;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment