diff options
Diffstat (limited to 'arch/arm/mach-omap2/board-omap3evm.c')
| -rw-r--r-- | arch/arm/mach-omap2/board-omap3evm.c | 37 | 
1 files changed, 8 insertions, 29 deletions
diff --git a/arch/arm/mach-omap2/board-omap3evm.c b/arch/arm/mach-omap2/board-omap3evm.c index 49df12735b4..ace3c675e9c 100644 --- a/arch/arm/mach-omap2/board-omap3evm.c +++ b/arch/arm/mach-omap2/board-omap3evm.c @@ -46,7 +46,7 @@  #include "common.h"  #include <plat/mcspi.h>  #include <video/omapdss.h> -#include <video/omap-panel-dvi.h> +#include <video/omap-panel-tfp410.h>  #include "mux.h"  #include "sdram-micron-mt46h32m32lf-6.h" @@ -219,35 +219,14 @@ static struct omap_dss_device omap3_evm_tv_device = {  	.platform_disable	= omap3_evm_disable_tv,  }; -static int omap3_evm_enable_dvi(struct omap_dss_device *dssdev) -{ -	if (lcd_enabled) { -		printk(KERN_ERR "cannot enable DVI, LCD is enabled\n"); -		return -EINVAL; -	} - -	gpio_set_value_cansleep(OMAP3EVM_DVI_PANEL_EN_GPIO, 1); - -	dvi_enabled = 1; -	return 0; -} - -static void omap3_evm_disable_dvi(struct omap_dss_device *dssdev) -{ -	gpio_set_value_cansleep(OMAP3EVM_DVI_PANEL_EN_GPIO, 0); - -	dvi_enabled = 0; -} - -static struct panel_dvi_platform_data dvi_panel = { -	.platform_enable	= omap3_evm_enable_dvi, -	.platform_disable	= omap3_evm_disable_dvi, +static struct tfp410_platform_data dvi_panel = { +	.power_down_gpio	= OMAP3EVM_DVI_PANEL_EN_GPIO,  };  static struct omap_dss_device omap3_evm_dvi_device = {  	.name			= "dvi",  	.type			= OMAP_DISPLAY_TYPE_DPI, -	.driver_name		= "dvi", +	.driver_name		= "tfp410",  	.data			= &dvi_panel,  	.phy.dpi.data_lines	= 24,  }; @@ -630,13 +609,13 @@ static struct regulator_consumer_supply dummy_supplies[] = {  static void __init omap3_evm_init(void)  { +	struct omap_board_mux *obm; +  	omap3_evm_get_revision();  	regulator_register_fixed(0, dummy_supplies, ARRAY_SIZE(dummy_supplies)); -	if (cpu_is_omap3630()) -		omap3_mux_init(omap36x_board_mux, OMAP_PACKAGE_CBB); -	else -		omap3_mux_init(omap35x_board_mux, OMAP_PACKAGE_CBB); +	obm = (cpu_is_omap3630()) ? omap36x_board_mux : omap35x_board_mux; +	omap3_mux_init(obm, OMAP_PACKAGE_CBB);  	omap_board_config = omap3_evm_config;  	omap_board_config_size = ARRAY_SIZE(omap3_evm_config);  |