All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] board-omap3-beagle: add DSS2 support
@ 2010-04-12  9:19 Koen Kooi
  2010-04-12 10:37 ` Tomi Valkeinen
  0 siblings, 1 reply; 7+ messages in thread
From: Koen Kooi @ 2010-04-12  9:19 UTC (permalink / raw)
  To: tomi.valkeinen, tony; +Cc: linux-omap, Koen Kooi

This patch adds DSS2 support to the beagleboard boardfile. DVI and TV-out are supported.

Signed-off-by: Koen Kooi <koen@dominion.thruhere.net>
---
 arch/arm/mach-omap2/board-omap3beagle.c |  130 ++++++++++++++++++++++++-------
 1 files changed, 103 insertions(+), 27 deletions(-)

diff --git a/arch/arm/mach-omap2/board-omap3beagle.c b/arch/arm/mach-omap2/board-omap3beagle.c
index 962d377..534316c 100644
--- a/arch/arm/mach-omap2/board-omap3beagle.c
+++ b/arch/arm/mach-omap2/board-omap3beagle.c
@@ -39,6 +39,7 @@
 
 #include <plat/board.h>
 #include <plat/common.h>
+#include <plat/display.h>
 #include <plat/gpmc.h>
 #include <plat/nand.h>
 #include <plat/usb.h>
@@ -106,6 +107,105 @@ static struct platform_device omap3beagle_nand_device = {
 	.resource	= &omap3beagle_nand_resource,
 };
 
+/* DSS */
+
+static int beagle_enable_dvi(struct omap_dss_device *dssdev)
+{
+	if (dssdev->reset_gpio != -1)
+		gpio_set_value(dssdev->reset_gpio, 1);
+
+	return 0;
+}
+
+static void beagle_disable_dvi(struct omap_dss_device *dssdev)
+{
+	if (dssdev->reset_gpio != -1)
+		gpio_set_value(dssdev->reset_gpio, 0);
+}
+
+static struct omap_dss_device beagle_dvi_device = {
+	.type = OMAP_DISPLAY_TYPE_DPI,
+	.name = "dvi",
+	.driver_name = "generic_panel",
+	.phy.dpi.data_lines = 24,
+	.reset_gpio = 170,
+	.platform_enable = beagle_enable_dvi,
+	.platform_disable = beagle_disable_dvi,
+};
+
+static int beagle_panel_enable_tv(struct omap_dss_device *dssdev)
+{
+#define ENABLE_VDAC_DEDICATED           0x03
+#define ENABLE_VDAC_DEV_GRP             0x20
+
+	twl_i2c_write_u8(TWL4030_MODULE_PM_RECEIVER,
+			ENABLE_VDAC_DEDICATED,
+			TWL4030_VDAC_DEDICATED);
+	twl_i2c_write_u8(TWL4030_MODULE_PM_RECEIVER,
+			ENABLE_VDAC_DEV_GRP, TWL4030_VDAC_DEV_GRP);
+
+	return 0;
+}
+
+static void beagle_panel_disable_tv(struct omap_dss_device *dssdev)
+{
+	twl_i2c_write_u8(TWL4030_MODULE_PM_RECEIVER, 0x00,
+			TWL4030_VDAC_DEDICATED);
+	twl_i2c_write_u8(TWL4030_MODULE_PM_RECEIVER, 0x00,
+			TWL4030_VDAC_DEV_GRP);
+}
+
+static struct omap_dss_device beagle_tv_device = {
+	.name = "tv",
+	.driver_name = "venc",
+	.type = OMAP_DISPLAY_TYPE_VENC,
+	.phy.venc.type = OMAP_DSS_VENC_TYPE_SVIDEO,
+	.platform_enable = beagle_panel_enable_tv,
+	.platform_disable = beagle_panel_disable_tv,
+};
+
+static struct omap_dss_device *beagle_dss_devices[] = {
+	&beagle_dvi_device,
+	&beagle_tv_device,
+};
+
+static struct omap_dss_board_info beagle_dss_data = {
+	.num_devices = ARRAY_SIZE(beagle_dss_devices),
+	.devices = beagle_dss_devices,
+	.default_device = &beagle_dvi_device,
+};
+
+static struct platform_device beagle_dss_device = {
+	.name          = "omapdss",
+	.id            = -1,
+	.dev            = {
+		.platform_data = &beagle_dss_data,
+	},
+};
+
+static struct regulator_consumer_supply beagle_vdac_supply = {
+	.supply		= "vdda_dac",
+	.dev		= &beagle_dss_device.dev,
+};
+
+static struct regulator_consumer_supply beagle_vdvi_supply = {
+	.supply		= "vdds_dsi",
+	.dev		= &beagle_dss_device.dev,
+};
+
+static void __init beagle_display_init(void)
+{
+	int r;
+
+	r = gpio_request(beagle_dvi_device.reset_gpio, "DVI reset");
+	if (r < 0) {
+		printk(KERN_ERR "Unable to get DVI reset GPIO\n");
+		return;
+	}
+
+	gpio_direction_output(beagle_dvi_device.reset_gpio, 0);
+}
+
 #include "sdram-micron-mt46h32m32lf-6.h"
 
 static struct omap2_hsmmc_info mmc[] = {
@@ -117,15 +217,6 @@ static struct omap2_hsmmc_info mmc[] = {
 	{}	/* Terminator */
 };
 
-static struct platform_device omap3_beagle_lcd_device = {
-	.name		= "omap3beagle_lcd",
-	.id		= -1,
-};
-
-static struct omap_lcd_config omap3_beagle_lcd_config __initdata = {
-	.ctrl_name	= "internal",
-};
-
 static struct regulator_consumer_supply beagle_vmmc1_supply = {
 	.supply			= "vmmc",
 };
@@ -181,16 +272,6 @@ static struct twl4030_gpio_platform_data beagle_gpio_data = {
 	.setup		= beagle_twl_gpio_setup,
 };
 
-static struct regulator_consumer_supply beagle_vdac_supply = {
-	.supply		= "vdac",
-	.dev		= &omap3_beagle_lcd_device.dev,
-};
-
-static struct regulator_consumer_supply beagle_vdvi_supply = {
-	.supply		= "vdvi",
-	.dev		= &omap3_beagle_lcd_device.dev,
-};
-
 /* VMMC1 for MMC1 pins CMD, CLK, DAT0..DAT3 (20 mA, plus card == max 220 mA) */
 static struct regulator_init_data beagle_vmmc1 = {
 	.constraints = {
@@ -349,14 +430,8 @@ static struct platform_device keys_gpio = {
 	},
 };
 
-static struct omap_board_config_kernel omap3_beagle_config[] __initdata = {
-	{ OMAP_TAG_LCD,		&omap3_beagle_lcd_config },
-};
-
 static void __init omap3_beagle_init_irq(void)
 {
-	omap_board_config = omap3_beagle_config;
-	omap_board_config_size = ARRAY_SIZE(omap3_beagle_config);
 	omap2_init_common_hw(mt46h32m32lf6_sdrc_params,
 			     mt46h32m32lf6_sdrc_params);
 	omap_init_irq();
@@ -367,9 +442,9 @@ static void __init omap3_beagle_init_irq(void)
 }
 
 static struct platform_device *omap3_beagle_devices[] __initdata = {
-	&omap3_beagle_lcd_device,
 	&leds_gpio,
 	&keys_gpio,
+	&beagle_dss_device,
 };
 
 static void __init omap3beagle_flash_init(void)
@@ -456,8 +531,9 @@ static void __init omap3_beagle_init(void)
 	/* Ensure SDRC pins are mux'd for self-refresh */
 	omap_mux_init_signal("sdrc_cke0", OMAP_PIN_OUTPUT);
 	omap_mux_init_signal("sdrc_cke1", OMAP_PIN_OUTPUT);
-}
 
+	beagle_display_init();
+}
 static void __init omap3_beagle_map_io(void)
 {
 	omap2_set_globals_343x();
-- 
1.6.6.1


^ permalink raw reply related	[flat|nested] 7+ messages in thread

* Re: [PATCH] board-omap3-beagle: add DSS2 support
  2010-04-12  9:19 [PATCH] board-omap3-beagle: add DSS2 support Koen Kooi
@ 2010-04-12 10:37 ` Tomi Valkeinen
  2010-04-12 11:15   ` Grazvydas Ignotas
  0 siblings, 1 reply; 7+ messages in thread
From: Tomi Valkeinen @ 2010-04-12 10:37 UTC (permalink / raw)
  To: ext Koen Kooi; +Cc: tony, linux-omap, Koen Kooi


On Mon, 2010-04-12 at 11:19 +0200, ext Koen Kooi wrote:
> This patch adds DSS2 support to the beagleboard boardfile. DVI and TV-out are supported.
> 
> Signed-off-by: Koen Kooi <koen@dominion.thruhere.net>

Fiddling with TWL directly in tv enable/disable functions is a bit ugly,
but I'm not sure if there's a better way for that. Otherwise:

Acked-by: Tomi Valkeinen <tomi.valkeinen@nokia.com>

 Tomi

> ---
>  arch/arm/mach-omap2/board-omap3beagle.c |  130 ++++++++++++++++++++++++-------
>  1 files changed, 103 insertions(+), 27 deletions(-)
> 
> diff --git a/arch/arm/mach-omap2/board-omap3beagle.c b/arch/arm/mach-omap2/board-omap3beagle.c
> index 962d377..534316c 100644
> --- a/arch/arm/mach-omap2/board-omap3beagle.c
> +++ b/arch/arm/mach-omap2/board-omap3beagle.c
> @@ -39,6 +39,7 @@
>  
>  #include <plat/board.h>
>  #include <plat/common.h>
> +#include <plat/display.h>
>  #include <plat/gpmc.h>
>  #include <plat/nand.h>
>  #include <plat/usb.h>
> @@ -106,6 +107,105 @@ static struct platform_device omap3beagle_nand_device = {
>  	.resource	= &omap3beagle_nand_resource,
>  };
>  
> +/* DSS */
> +
> +static int beagle_enable_dvi(struct omap_dss_device *dssdev)
> +{
> +	if (dssdev->reset_gpio != -1)
> +		gpio_set_value(dssdev->reset_gpio, 1);
> +
> +	return 0;
> +}
> +
> +static void beagle_disable_dvi(struct omap_dss_device *dssdev)
> +{
> +	if (dssdev->reset_gpio != -1)
> +		gpio_set_value(dssdev->reset_gpio, 0);
> +}
> +
> +static struct omap_dss_device beagle_dvi_device = {
> +	.type = OMAP_DISPLAY_TYPE_DPI,
> +	.name = "dvi",
> +	.driver_name = "generic_panel",
> +	.phy.dpi.data_lines = 24,
> +	.reset_gpio = 170,
> +	.platform_enable = beagle_enable_dvi,
> +	.platform_disable = beagle_disable_dvi,
> +};
> +
> +static int beagle_panel_enable_tv(struct omap_dss_device *dssdev)
> +{
> +#define ENABLE_VDAC_DEDICATED           0x03
> +#define ENABLE_VDAC_DEV_GRP             0x20
> +
> +	twl_i2c_write_u8(TWL4030_MODULE_PM_RECEIVER,
> +			ENABLE_VDAC_DEDICATED,
> +			TWL4030_VDAC_DEDICATED);
> +	twl_i2c_write_u8(TWL4030_MODULE_PM_RECEIVER,
> +			ENABLE_VDAC_DEV_GRP, TWL4030_VDAC_DEV_GRP);
> +
> +	return 0;
> +}
> +
> +static void beagle_panel_disable_tv(struct omap_dss_device *dssdev)
> +{
> +	twl_i2c_write_u8(TWL4030_MODULE_PM_RECEIVER, 0x00,
> +			TWL4030_VDAC_DEDICATED);
> +	twl_i2c_write_u8(TWL4030_MODULE_PM_RECEIVER, 0x00,
> +			TWL4030_VDAC_DEV_GRP);
> +}
> +
> +static struct omap_dss_device beagle_tv_device = {
> +	.name = "tv",
> +	.driver_name = "venc",
> +	.type = OMAP_DISPLAY_TYPE_VENC,
> +	.phy.venc.type = OMAP_DSS_VENC_TYPE_SVIDEO,
> +	.platform_enable = beagle_panel_enable_tv,
> +	.platform_disable = beagle_panel_disable_tv,
> +};
> +
> +static struct omap_dss_device *beagle_dss_devices[] = {
> +	&beagle_dvi_device,
> +	&beagle_tv_device,
> +};
> +
> +static struct omap_dss_board_info beagle_dss_data = {
> +	.num_devices = ARRAY_SIZE(beagle_dss_devices),
> +	.devices = beagle_dss_devices,
> +	.default_device = &beagle_dvi_device,
> +};
> +
> +static struct platform_device beagle_dss_device = {
> +	.name          = "omapdss",
> +	.id            = -1,
> +	.dev            = {
> +		.platform_data = &beagle_dss_data,
> +	},
> +};
> +
> +static struct regulator_consumer_supply beagle_vdac_supply = {
> +	.supply		= "vdda_dac",
> +	.dev		= &beagle_dss_device.dev,
> +};
> +
> +static struct regulator_consumer_supply beagle_vdvi_supply = {
> +	.supply		= "vdds_dsi",
> +	.dev		= &beagle_dss_device.dev,
> +};
> +
> +static void __init beagle_display_init(void)
> +{
> +	int r;
> +
> +	r = gpio_request(beagle_dvi_device.reset_gpio, "DVI reset");
> +	if (r < 0) {
> +		printk(KERN_ERR "Unable to get DVI reset GPIO\n");
> +		return;
> +	}
> +
> +	gpio_direction_output(beagle_dvi_device.reset_gpio, 0);
> +}
> +
>  #include "sdram-micron-mt46h32m32lf-6.h"
>  
>  static struct omap2_hsmmc_info mmc[] = {
> @@ -117,15 +217,6 @@ static struct omap2_hsmmc_info mmc[] = {
>  	{}	/* Terminator */
>  };
>  
> -static struct platform_device omap3_beagle_lcd_device = {
> -	.name		= "omap3beagle_lcd",
> -	.id		= -1,
> -};
> -
> -static struct omap_lcd_config omap3_beagle_lcd_config __initdata = {
> -	.ctrl_name	= "internal",
> -};
> -
>  static struct regulator_consumer_supply beagle_vmmc1_supply = {
>  	.supply			= "vmmc",
>  };
> @@ -181,16 +272,6 @@ static struct twl4030_gpio_platform_data beagle_gpio_data = {
>  	.setup		= beagle_twl_gpio_setup,
>  };
>  
> -static struct regulator_consumer_supply beagle_vdac_supply = {
> -	.supply		= "vdac",
> -	.dev		= &omap3_beagle_lcd_device.dev,
> -};
> -
> -static struct regulator_consumer_supply beagle_vdvi_supply = {
> -	.supply		= "vdvi",
> -	.dev		= &omap3_beagle_lcd_device.dev,
> -};
> -
>  /* VMMC1 for MMC1 pins CMD, CLK, DAT0..DAT3 (20 mA, plus card == max 220 mA) */
>  static struct regulator_init_data beagle_vmmc1 = {
>  	.constraints = {
> @@ -349,14 +430,8 @@ static struct platform_device keys_gpio = {
>  	},
>  };
>  
> -static struct omap_board_config_kernel omap3_beagle_config[] __initdata = {
> -	{ OMAP_TAG_LCD,		&omap3_beagle_lcd_config },
> -};
> -
>  static void __init omap3_beagle_init_irq(void)
>  {
> -	omap_board_config = omap3_beagle_config;
> -	omap_board_config_size = ARRAY_SIZE(omap3_beagle_config);
>  	omap2_init_common_hw(mt46h32m32lf6_sdrc_params,
>  			     mt46h32m32lf6_sdrc_params);
>  	omap_init_irq();
> @@ -367,9 +442,9 @@ static void __init omap3_beagle_init_irq(void)
>  }
>  
>  static struct platform_device *omap3_beagle_devices[] __initdata = {
> -	&omap3_beagle_lcd_device,
>  	&leds_gpio,
>  	&keys_gpio,
> +	&beagle_dss_device,
>  };
>  
>  static void __init omap3beagle_flash_init(void)
> @@ -456,8 +531,9 @@ static void __init omap3_beagle_init(void)
>  	/* Ensure SDRC pins are mux'd for self-refresh */
>  	omap_mux_init_signal("sdrc_cke0", OMAP_PIN_OUTPUT);
>  	omap_mux_init_signal("sdrc_cke1", OMAP_PIN_OUTPUT);
> -}
>  
> +	beagle_display_init();
> +}
>  static void __init omap3_beagle_map_io(void)
>  {
>  	omap2_set_globals_343x();



^ permalink raw reply	[flat|nested] 7+ messages in thread

* Re: [PATCH] board-omap3-beagle: add DSS2 support
  2010-04-12 10:37 ` Tomi Valkeinen
@ 2010-04-12 11:15   ` Grazvydas Ignotas
  2010-04-13 15:24     ` Koen Kooi
  0 siblings, 1 reply; 7+ messages in thread
From: Grazvydas Ignotas @ 2010-04-12 11:15 UTC (permalink / raw)
  To: Tomi Valkeinen; +Cc: ext Koen Kooi, tony, linux-omap, Koen Kooi

On Mon, Apr 12, 2010 at 1:37 PM, Tomi Valkeinen
<tomi.valkeinen@nokia.com> wrote:
>
> On Mon, 2010-04-12 at 11:19 +0200, ext Koen Kooi wrote:
>> This patch adds DSS2 support to the beagleboard boardfile. DVI and TV-out are supported.
>>
>> Signed-off-by: Koen Kooi <koen@dominion.thruhere.net>
>
> Fiddling with TWL directly in tv enable/disable functions is a bit ugly,
> but I'm not sure if there's a better way for that. Otherwise:

It's only toggling VDAC supply, don't we already do that in DSS2 core?
I think beagle_panel_enable_tv and beagle_panel_disable_tv can be
simply removed.

> Acked-by: Tomi Valkeinen <tomi.valkeinen@nokia.com>

A bit premature?

>
>  Tomi
>
>> ---
>>  arch/arm/mach-omap2/board-omap3beagle.c |  130 ++++++++++++++++++++++++-------
>>  1 files changed, 103 insertions(+), 27 deletions(-)
>>
>> diff --git a/arch/arm/mach-omap2/board-omap3beagle.c b/arch/arm/mach-omap2/board-omap3beagle.c
>> index 962d377..534316c 100644
>> --- a/arch/arm/mach-omap2/board-omap3beagle.c
>> +++ b/arch/arm/mach-omap2/board-omap3beagle.c
>> @@ -39,6 +39,7 @@
>>
>>  #include <plat/board.h>
>>  #include <plat/common.h>
>> +#include <plat/display.h>
>>  #include <plat/gpmc.h>
>>  #include <plat/nand.h>
>>  #include <plat/usb.h>
>> @@ -106,6 +107,105 @@ static struct platform_device omap3beagle_nand_device = {
>>       .resource       = &omap3beagle_nand_resource,
>>  };
>>
>> +/* DSS */
>> +
>> +static int beagle_enable_dvi(struct omap_dss_device *dssdev)
>> +{
>> +     if (dssdev->reset_gpio != -1)

gpio_is_valid()?

>> +             gpio_set_value(dssdev->reset_gpio, 1);
>> +
>> +     return 0;
>> +}
>> +
>> +static void beagle_disable_dvi(struct omap_dss_device *dssdev)
>> +{
>> +     if (dssdev->reset_gpio != -1)
>> +             gpio_set_value(dssdev->reset_gpio, 0);
>> +}
>> +
>> +static struct omap_dss_device beagle_dvi_device = {
>> +     .type = OMAP_DISPLAY_TYPE_DPI,
>> +     .name = "dvi",
>> +     .driver_name = "generic_panel",
>> +     .phy.dpi.data_lines = 24,
>> +     .reset_gpio = 170,
>> +     .platform_enable = beagle_enable_dvi,
>> +     .platform_disable = beagle_disable_dvi,
>> +};
>> +
>> +static int beagle_panel_enable_tv(struct omap_dss_device *dssdev)
>> +{
>> +#define ENABLE_VDAC_DEDICATED           0x03
>> +#define ENABLE_VDAC_DEV_GRP             0x20
>> +
>> +     twl_i2c_write_u8(TWL4030_MODULE_PM_RECEIVER,
>> +                     ENABLE_VDAC_DEDICATED,
>> +                     TWL4030_VDAC_DEDICATED);
>> +     twl_i2c_write_u8(TWL4030_MODULE_PM_RECEIVER,
>> +                     ENABLE_VDAC_DEV_GRP, TWL4030_VDAC_DEV_GRP);
>> +
>> +     return 0;
>> +}
>> +
>> +static void beagle_panel_disable_tv(struct omap_dss_device *dssdev)
>> +{
>> +     twl_i2c_write_u8(TWL4030_MODULE_PM_RECEIVER, 0x00,
>> +                     TWL4030_VDAC_DEDICATED);
>> +     twl_i2c_write_u8(TWL4030_MODULE_PM_RECEIVER, 0x00,
>> +                     TWL4030_VDAC_DEV_GRP);
>> +}
>> +
>> +static struct omap_dss_device beagle_tv_device = {
>> +     .name = "tv",
>> +     .driver_name = "venc",
>> +     .type = OMAP_DISPLAY_TYPE_VENC,
>> +     .phy.venc.type = OMAP_DSS_VENC_TYPE_SVIDEO,
>> +     .platform_enable = beagle_panel_enable_tv,
>> +     .platform_disable = beagle_panel_disable_tv,
>> +};
>> +
>> +static struct omap_dss_device *beagle_dss_devices[] = {
>> +     &beagle_dvi_device,
>> +     &beagle_tv_device,
>> +};
>> +
>> +static struct omap_dss_board_info beagle_dss_data = {
>> +     .num_devices = ARRAY_SIZE(beagle_dss_devices),
>> +     .devices = beagle_dss_devices,
>> +     .default_device = &beagle_dvi_device,
>> +};
>> +
>> +static struct platform_device beagle_dss_device = {
>> +     .name          = "omapdss",
>> +     .id            = -1,
>> +     .dev            = {
>> +             .platform_data = &beagle_dss_data,
>> +     },
>> +};
>> +
>> +static struct regulator_consumer_supply beagle_vdac_supply = {
>> +     .supply         = "vdda_dac",
>> +     .dev            = &beagle_dss_device.dev,
>> +};
>> +
>> +static struct regulator_consumer_supply beagle_vdvi_supply = {
>> +     .supply         = "vdds_dsi",
>> +     .dev            = &beagle_dss_device.dev,
>> +};

Regulator framework recommends using device names instead of dev pointer:

static struct regulator_consumer_supply beagle_vdac_supply =
        REGULATOR_SUPPLY("vdda_dac", "omapdss");

static struct regulator_consumer_supply beagle_vdvi_supply =
        REGULATOR_SUPPLY("vdds_dsi", "omapdss");

>> +
>> +static void __init beagle_display_init(void)
>> +{
>> +     int r;
>> +
>> +     r = gpio_request(beagle_dvi_device.reset_gpio, "DVI reset");
>> +     if (r < 0) {
>> +             printk(KERN_ERR "Unable to get DVI reset GPIO\n");
>> +             return;
>> +     }
>> +
>> +     gpio_direction_output(beagle_dvi_device.reset_gpio, 0);
>> +}
>> +
>>  #include "sdram-micron-mt46h32m32lf-6.h"
>>
>>  static struct omap2_hsmmc_info mmc[] = {
>> @@ -117,15 +217,6 @@ static struct omap2_hsmmc_info mmc[] = {
>>       {}      /* Terminator */
>>  };
>>
>> -static struct platform_device omap3_beagle_lcd_device = {
>> -     .name           = "omap3beagle_lcd",
>> -     .id             = -1,
>> -};
>> -
>> -static struct omap_lcd_config omap3_beagle_lcd_config __initdata = {
>> -     .ctrl_name      = "internal",
>> -};
>> -
>>  static struct regulator_consumer_supply beagle_vmmc1_supply = {
>>       .supply                 = "vmmc",
>>  };
>> @@ -181,16 +272,6 @@ static struct twl4030_gpio_platform_data beagle_gpio_data = {
>>       .setup          = beagle_twl_gpio_setup,
>>  };
>>
>> -static struct regulator_consumer_supply beagle_vdac_supply = {
>> -     .supply         = "vdac",
>> -     .dev            = &omap3_beagle_lcd_device.dev,
>> -};
>> -
>> -static struct regulator_consumer_supply beagle_vdvi_supply = {
>> -     .supply         = "vdvi",
>> -     .dev            = &omap3_beagle_lcd_device.dev,
>> -};
>> -
>>  /* VMMC1 for MMC1 pins CMD, CLK, DAT0..DAT3 (20 mA, plus card == max 220 mA) */
>>  static struct regulator_init_data beagle_vmmc1 = {
>>       .constraints = {
>> @@ -349,14 +430,8 @@ static struct platform_device keys_gpio = {
>>       },
>>  };
>>
>> -static struct omap_board_config_kernel omap3_beagle_config[] __initdata = {
>> -     { OMAP_TAG_LCD,         &omap3_beagle_lcd_config },
>> -};
>> -
>>  static void __init omap3_beagle_init_irq(void)
>>  {
>> -     omap_board_config = omap3_beagle_config;
>> -     omap_board_config_size = ARRAY_SIZE(omap3_beagle_config);
>>       omap2_init_common_hw(mt46h32m32lf6_sdrc_params,
>>                            mt46h32m32lf6_sdrc_params);
>>       omap_init_irq();
>> @@ -367,9 +442,9 @@ static void __init omap3_beagle_init_irq(void)
>>  }
>>
>>  static struct platform_device *omap3_beagle_devices[] __initdata = {
>> -     &omap3_beagle_lcd_device,
>>       &leds_gpio,
>>       &keys_gpio,
>> +     &beagle_dss_device,
>>  };
>>
>>  static void __init omap3beagle_flash_init(void)
>> @@ -456,8 +531,9 @@ static void __init omap3_beagle_init(void)
>>       /* Ensure SDRC pins are mux'd for self-refresh */
>>       omap_mux_init_signal("sdrc_cke0", OMAP_PIN_OUTPUT);
>>       omap_mux_init_signal("sdrc_cke1", OMAP_PIN_OUTPUT);
>> -}
>>
>> +     beagle_display_init();
>> +}
>>  static void __init omap3_beagle_map_io(void)
>>  {
>>       omap2_set_globals_343x();
>
>
> --
> To unsubscribe from this list: send the line "unsubscribe linux-omap" in
> the body of a message to majordomo@vger.kernel.org
> More majordomo info at  http://vger.kernel.org/majordomo-info.html
>
--
To unsubscribe from this list: send the line "unsubscribe linux-omap" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html

^ permalink raw reply	[flat|nested] 7+ messages in thread

* Re: [PATCH] board-omap3-beagle: add DSS2 support
  2010-04-12 11:15   ` Grazvydas Ignotas
@ 2010-04-13 15:24     ` Koen Kooi
  2010-04-14 10:43       ` Tomi Valkeinen
  0 siblings, 1 reply; 7+ messages in thread
From: Koen Kooi @ 2010-04-13 15:24 UTC (permalink / raw)
  To: Grazvydas Ignotas
  Cc: Tomi Valkeinen, Tony Lindgren, linux-omap@vger.kernel.org List


Op 12 apr 2010, om 13:15 heeft Grazvydas Ignotas het volgende geschreven:

> On Mon, Apr 12, 2010 at 1:37 PM, Tomi Valkeinen
> <tomi.valkeinen@nokia.com> wrote:
>> 
>> On Mon, 2010-04-12 at 11:19 +0200, ext Koen Kooi wrote:
>>> This patch adds DSS2 support to the beagleboard boardfile. DVI and TV-out are supported.
>>> 
>>> Signed-off-by: Koen Kooi <koen@dominion.thruhere.net>
>> 
>> Fiddling with TWL directly in tv enable/disable functions is a bit ugly,
>> but I'm not sure if there's a better way for that. Otherwise:
> 
> It's only toggling VDAC supply, don't we already do that in DSS2 core?
> I think beagle_panel_enable_tv and beagle_panel_disable_tv can be
> simply removed.

I can send an updated patch with those bits removed if needed. Tomi?

regards,

Koen



> 
>> Acked-by: Tomi Valkeinen <tomi.valkeinen@nokia.com>
> 
> A bit premature?
> 
>> 
>>  Tomi
>> 
>>> ---
>>>  arch/arm/mach-omap2/board-omap3beagle.c |  130 ++++++++++++++++++++++++-------
>>>  1 files changed, 103 insertions(+), 27 deletions(-)
>>> 
>>> diff --git a/arch/arm/mach-omap2/board-omap3beagle.c b/arch/arm/mach-omap2/board-omap3beagle.c
>>> index 962d377..534316c 100644
>>> --- a/arch/arm/mach-omap2/board-omap3beagle.c
>>> +++ b/arch/arm/mach-omap2/board-omap3beagle.c
>>> @@ -39,6 +39,7 @@
>>> 
>>>  #include <plat/board.h>
>>>  #include <plat/common.h>
>>> +#include <plat/display.h>
>>>  #include <plat/gpmc.h>
>>>  #include <plat/nand.h>
>>>  #include <plat/usb.h>
>>> @@ -106,6 +107,105 @@ static struct platform_device omap3beagle_nand_device = {
>>>       .resource       = &omap3beagle_nand_resource,
>>>  };
>>> 
>>> +/* DSS */
>>> +
>>> +static int beagle_enable_dvi(struct omap_dss_device *dssdev)
>>> +{
>>> +     if (dssdev->reset_gpio != -1)
> 
> gpio_is_valid()?
> 
>>> +             gpio_set_value(dssdev->reset_gpio, 1);
>>> +
>>> +     return 0;
>>> +}
>>> +
>>> +static void beagle_disable_dvi(struct omap_dss_device *dssdev)
>>> +{
>>> +     if (dssdev->reset_gpio != -1)
>>> +             gpio_set_value(dssdev->reset_gpio, 0);
>>> +}
>>> +
>>> +static struct omap_dss_device beagle_dvi_device = {
>>> +     .type = OMAP_DISPLAY_TYPE_DPI,
>>> +     .name = "dvi",
>>> +     .driver_name = "generic_panel",
>>> +     .phy.dpi.data_lines = 24,
>>> +     .reset_gpio = 170,
>>> +     .platform_enable = beagle_enable_dvi,
>>> +     .platform_disable = beagle_disable_dvi,
>>> +};
>>> +
>>> +static int beagle_panel_enable_tv(struct omap_dss_device *dssdev)
>>> +{
>>> +#define ENABLE_VDAC_DEDICATED           0x03
>>> +#define ENABLE_VDAC_DEV_GRP             0x20
>>> +
>>> +     twl_i2c_write_u8(TWL4030_MODULE_PM_RECEIVER,
>>> +                     ENABLE_VDAC_DEDICATED,
>>> +                     TWL4030_VDAC_DEDICATED);
>>> +     twl_i2c_write_u8(TWL4030_MODULE_PM_RECEIVER,
>>> +                     ENABLE_VDAC_DEV_GRP, TWL4030_VDAC_DEV_GRP);
>>> +
>>> +     return 0;
>>> +}
>>> +
>>> +static void beagle_panel_disable_tv(struct omap_dss_device *dssdev)
>>> +{
>>> +     twl_i2c_write_u8(TWL4030_MODULE_PM_RECEIVER, 0x00,
>>> +                     TWL4030_VDAC_DEDICATED);
>>> +     twl_i2c_write_u8(TWL4030_MODULE_PM_RECEIVER, 0x00,
>>> +                     TWL4030_VDAC_DEV_GRP);
>>> +}
>>> +
>>> +static struct omap_dss_device beagle_tv_device = {
>>> +     .name = "tv",
>>> +     .driver_name = "venc",
>>> +     .type = OMAP_DISPLAY_TYPE_VENC,
>>> +     .phy.venc.type = OMAP_DSS_VENC_TYPE_SVIDEO,
>>> +     .platform_enable = beagle_panel_enable_tv,
>>> +     .platform_disable = beagle_panel_disable_tv,
>>> +};
>>> +
>>> +static struct omap_dss_device *beagle_dss_devices[] = {
>>> +     &beagle_dvi_device,
>>> +     &beagle_tv_device,
>>> +};
>>> +
>>> +static struct omap_dss_board_info beagle_dss_data = {
>>> +     .num_devices = ARRAY_SIZE(beagle_dss_devices),
>>> +     .devices = beagle_dss_devices,
>>> +     .default_device = &beagle_dvi_device,
>>> +};
>>> +
>>> +static struct platform_device beagle_dss_device = {
>>> +     .name          = "omapdss",
>>> +     .id            = -1,
>>> +     .dev            = {
>>> +             .platform_data = &beagle_dss_data,
>>> +     },
>>> +};
>>> +
>>> +static struct regulator_consumer_supply beagle_vdac_supply = {
>>> +     .supply         = "vdda_dac",
>>> +     .dev            = &beagle_dss_device.dev,
>>> +};
>>> +
>>> +static struct regulator_consumer_supply beagle_vdvi_supply = {
>>> +     .supply         = "vdds_dsi",
>>> +     .dev            = &beagle_dss_device.dev,
>>> +};
> 
> Regulator framework recommends using device names instead of dev pointer:
> 
> static struct regulator_consumer_supply beagle_vdac_supply =
>        REGULATOR_SUPPLY("vdda_dac", "omapdss");
> 
> static struct regulator_consumer_supply beagle_vdvi_supply =
>        REGULATOR_SUPPLY("vdds_dsi", "omapdss");
> 
>>> +
>>> +static void __init beagle_display_init(void)
>>> +{
>>> +     int r;
>>> +
>>> +     r = gpio_request(beagle_dvi_device.reset_gpio, "DVI reset");
>>> +     if (r < 0) {
>>> +             printk(KERN_ERR "Unable to get DVI reset GPIO\n");
>>> +             return;
>>> +     }
>>> +
>>> +     gpio_direction_output(beagle_dvi_device.reset_gpio, 0);
>>> +}
>>> +
>>>  #include "sdram-micron-mt46h32m32lf-6.h"
>>> 
>>>  static struct omap2_hsmmc_info mmc[] = {
>>> @@ -117,15 +217,6 @@ static struct omap2_hsmmc_info mmc[] = {
>>>       {}      /* Terminator */
>>>  };
>>> 
>>> -static struct platform_device omap3_beagle_lcd_device = {
>>> -     .name           = "omap3beagle_lcd",
>>> -     .id             = -1,
>>> -};
>>> -
>>> -static struct omap_lcd_config omap3_beagle_lcd_config __initdata = {
>>> -     .ctrl_name      = "internal",
>>> -};
>>> -
>>>  static struct regulator_consumer_supply beagle_vmmc1_supply = {
>>>       .supply                 = "vmmc",
>>>  };
>>> @@ -181,16 +272,6 @@ static struct twl4030_gpio_platform_data beagle_gpio_data = {
>>>       .setup          = beagle_twl_gpio_setup,
>>>  };
>>> 
>>> -static struct regulator_consumer_supply beagle_vdac_supply = {
>>> -     .supply         = "vdac",
>>> -     .dev            = &omap3_beagle_lcd_device.dev,
>>> -};
>>> -
>>> -static struct regulator_consumer_supply beagle_vdvi_supply = {
>>> -     .supply         = "vdvi",
>>> -     .dev            = &omap3_beagle_lcd_device.dev,
>>> -};
>>> -
>>>  /* VMMC1 for MMC1 pins CMD, CLK, DAT0..DAT3 (20 mA, plus card == max 220 mA) */
>>>  static struct regulator_init_data beagle_vmmc1 = {
>>>       .constraints = {
>>> @@ -349,14 +430,8 @@ static struct platform_device keys_gpio = {
>>>       },
>>>  };
>>> 
>>> -static struct omap_board_config_kernel omap3_beagle_config[] __initdata = {
>>> -     { OMAP_TAG_LCD,         &omap3_beagle_lcd_config },
>>> -};
>>> -
>>>  static void __init omap3_beagle_init_irq(void)
>>>  {
>>> -     omap_board_config = omap3_beagle_config;
>>> -     omap_board_config_size = ARRAY_SIZE(omap3_beagle_config);
>>>       omap2_init_common_hw(mt46h32m32lf6_sdrc_params,
>>>                            mt46h32m32lf6_sdrc_params);
>>>       omap_init_irq();
>>> @@ -367,9 +442,9 @@ static void __init omap3_beagle_init_irq(void)
>>>  }
>>> 
>>>  static struct platform_device *omap3_beagle_devices[] __initdata = {
>>> -     &omap3_beagle_lcd_device,
>>>       &leds_gpio,
>>>       &keys_gpio,
>>> +     &beagle_dss_device,
>>>  };
>>> 
>>>  static void __init omap3beagle_flash_init(void)
>>> @@ -456,8 +531,9 @@ static void __init omap3_beagle_init(void)
>>>       /* Ensure SDRC pins are mux'd for self-refresh */
>>>       omap_mux_init_signal("sdrc_cke0", OMAP_PIN_OUTPUT);
>>>       omap_mux_init_signal("sdrc_cke1", OMAP_PIN_OUTPUT);
>>> -}
>>> 
>>> +     beagle_display_init();
>>> +}
>>>  static void __init omap3_beagle_map_io(void)
>>>  {
>>>       omap2_set_globals_343x();
>> 
>> 
>> --
>> To unsubscribe from this list: send the line "unsubscribe linux-omap" in
>> the body of a message to majordomo@vger.kernel.org
>> More majordomo info at  http://vger.kernel.org/majordomo-info.html
>> 


^ permalink raw reply	[flat|nested] 7+ messages in thread

* Re: [PATCH] board-omap3-beagle: add DSS2 support
  2010-04-13 15:24     ` Koen Kooi
@ 2010-04-14 10:43       ` Tomi Valkeinen
  2010-04-14 10:55         ` Koen Kooi
  0 siblings, 1 reply; 7+ messages in thread
From: Tomi Valkeinen @ 2010-04-14 10:43 UTC (permalink / raw)
  To: ext Koen Kooi
  Cc: Grazvydas Ignotas, Tony Lindgren, linux-omap@vger.kernel.org List

On Tue, 2010-04-13 at 17:24 +0200, ext Koen Kooi wrote:
> Op 12 apr 2010, om 13:15 heeft Grazvydas Ignotas het volgende geschreven:
> 
> > On Mon, Apr 12, 2010 at 1:37 PM, Tomi Valkeinen
> > <tomi.valkeinen@nokia.com> wrote:
> >> 
> >> On Mon, 2010-04-12 at 11:19 +0200, ext Koen Kooi wrote:
> >>> This patch adds DSS2 support to the beagleboard boardfile. DVI and TV-out are supported.
> >>> 
> >>> Signed-off-by: Koen Kooi <koen@dominion.thruhere.net>
> >> 
> >> Fiddling with TWL directly in tv enable/disable functions is a bit ugly,
> >> but I'm not sure if there's a better way for that. Otherwise:
> > 
> > It's only toggling VDAC supply, don't we already do that in DSS2 core?
> > I think beagle_panel_enable_tv and beagle_panel_disable_tv can be
> > simply removed.
> 
> I can send an updated patch with those bits removed if needed. Tomi?

Yes, all the comments from Grazvydas were valid.

 Tomi



^ permalink raw reply	[flat|nested] 7+ messages in thread

* Re: [PATCH] board-omap3-beagle: add DSS2 support
  2010-04-14 10:43       ` Tomi Valkeinen
@ 2010-04-14 10:55         ` Koen Kooi
  2010-04-14 11:10           ` Tomi Valkeinen
  0 siblings, 1 reply; 7+ messages in thread
From: Koen Kooi @ 2010-04-14 10:55 UTC (permalink / raw)
  To: Tomi Valkeinen
  Cc: Grazvydas Ignotas, Tony Lindgren, linux-omap@vger.kernel.org List


Op 14 apr 2010, om 12:43 heeft Tomi Valkeinen het volgende geschreven:

> On Tue, 2010-04-13 at 17:24 +0200, ext Koen Kooi wrote:
>> Op 12 apr 2010, om 13:15 heeft Grazvydas Ignotas het volgende geschreven:
>> 
>>> On Mon, Apr 12, 2010 at 1:37 PM, Tomi Valkeinen
>>> <tomi.valkeinen@nokia.com> wrote:
>>>> 
>>>> On Mon, 2010-04-12 at 11:19 +0200, ext Koen Kooi wrote:
>>>>> This patch adds DSS2 support to the beagleboard boardfile. DVI and TV-out are supported.
>>>>> 
>>>>> Signed-off-by: Koen Kooi <koen@dominion.thruhere.net>
>>>> 
>>>> Fiddling with TWL directly in tv enable/disable functions is a bit ugly,
>>>> but I'm not sure if there's a better way for that. Otherwise:
>>> 
>>> It's only toggling VDAC supply, don't we already do that in DSS2 core?
>>> I think beagle_panel_enable_tv and beagle_panel_disable_tv can be
>>> simply removed.
>> 
>> I can send an updated patch with those bits removed if needed. Tomi?
> 
> Yes, all the comments from Grazvydas were valid.

OK, sent.

regards,

Koen

^ permalink raw reply	[flat|nested] 7+ messages in thread

* Re: [PATCH] board-omap3-beagle: add DSS2 support
  2010-04-14 10:55         ` Koen Kooi
@ 2010-04-14 11:10           ` Tomi Valkeinen
  0 siblings, 0 replies; 7+ messages in thread
From: Tomi Valkeinen @ 2010-04-14 11:10 UTC (permalink / raw)
  To: ext Koen Kooi
  Cc: Grazvydas Ignotas, Tony Lindgren, linux-omap@vger.kernel.org List

On Wed, 2010-04-14 at 12:55 +0200, ext Koen Kooi wrote:
> Op 14 apr 2010, om 12:43 heeft Tomi Valkeinen het volgende geschreven:
> 
> > On Tue, 2010-04-13 at 17:24 +0200, ext Koen Kooi wrote:
> >> Op 12 apr 2010, om 13:15 heeft Grazvydas Ignotas het volgende geschreven:
> >> 
> >>> On Mon, Apr 12, 2010 at 1:37 PM, Tomi Valkeinen
> >>> <tomi.valkeinen@nokia.com> wrote:
> >>>> 
> >>>> On Mon, 2010-04-12 at 11:19 +0200, ext Koen Kooi wrote:
> >>>>> This patch adds DSS2 support to the beagleboard boardfile. DVI and TV-out are supported.
> >>>>> 
> >>>>> Signed-off-by: Koen Kooi <koen@dominion.thruhere.net>
> >>>> 
> >>>> Fiddling with TWL directly in tv enable/disable functions is a bit ugly,
> >>>> but I'm not sure if there's a better way for that. Otherwise:
> >>> 
> >>> It's only toggling VDAC supply, don't we already do that in DSS2 core?
> >>> I think beagle_panel_enable_tv and beagle_panel_disable_tv can be
> >>> simply removed.
> >> 
> >> I can send an updated patch with those bits removed if needed. Tomi?
> > 
> > Yes, all the comments from Grazvydas were valid.
> 
> OK, sent.

There were other comments also, about the regulators at least. Those
should be looked at too.

 Tomi



^ permalink raw reply	[flat|nested] 7+ messages in thread

end of thread, other threads:[~2010-04-14 11:11 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2010-04-12  9:19 [PATCH] board-omap3-beagle: add DSS2 support Koen Kooi
2010-04-12 10:37 ` Tomi Valkeinen
2010-04-12 11:15   ` Grazvydas Ignotas
2010-04-13 15:24     ` Koen Kooi
2010-04-14 10:43       ` Tomi Valkeinen
2010-04-14 10:55         ` Koen Kooi
2010-04-14 11:10           ` Tomi Valkeinen

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.