diff options
| author | Senthilvadivu Guruswamy <svadivu@ti.com> | 2011-01-24 06:22:02 +0000 | 
|---|---|---|
| committer | Tomi Valkeinen <tomi.valkeinen@ti.com> | 2011-03-11 15:46:21 +0200 | 
| commit | c8aac01b7bd1109795586db11ea7f12ab1e2d163 (patch) | |
| tree | ea58a702e4f3fe550548daa724c2ee71dd5ac1b7 /arch/arm/mach-omap2/board-omap3evm.c | |
| parent | 30ea50c9f5166a375b4dc0109d18a5d21bab5711 (diff) | |
| download | olio-linux-3.10-c8aac01b7bd1109795586db11ea7f12ab1e2d163.tar.xz olio-linux-3.10-c8aac01b7bd1109795586db11ea7f12ab1e2d163.zip  | |
OMAP2, 3: DSS2: DSI: create platform_driver, move init, exit to driver
Hwmod adaptation design requires each of the DSS HW IP to be a platform driver.
So a platform_driver for DSI is created and init exit methods are moved from core.c
to its driver probe,remove. pdev member has to be maintained by its own drivers.
Also, vdds_dsi regulator handling is copied to dsi.c, since vdds_dsi regulator is
needed by dpi_init() too. Board files are updated accordingly to add 2 instances of
vdds_dsi regulator.
DSI platform driver is registered from inside omap_dss_probe, in the order desired.
Signed-off-by: Senthilvadivu Guruswamy <svadivu@ti.com>
Signed-off-by: Sumit Semwal <sumit.semwal@ti.com>
Signed-off-by: Tomi Valkeinen <tomi.valkeinen@ti.com>
Diffstat (limited to 'arch/arm/mach-omap2/board-omap3evm.c')
| -rw-r--r-- | arch/arm/mach-omap2/board-omap3evm.c | 10 | 
1 files changed, 6 insertions, 4 deletions
diff --git a/arch/arm/mach-omap2/board-omap3evm.c b/arch/arm/mach-omap2/board-omap3evm.c index a6564b41b97..5800db31e56 100644 --- a/arch/arm/mach-omap2/board-omap3evm.c +++ b/arch/arm/mach-omap2/board-omap3evm.c @@ -560,8 +560,10 @@ static struct regulator_init_data omap3_evm_vdac = {  };  /* VPLL2 for digital video outputs */ -static struct regulator_consumer_supply omap3_evm_vpll2_supply = -	REGULATOR_SUPPLY("vdds_dsi", "omapdss"); +static struct regulator_consumer_supply omap3_evm_vpll2_supplies[] = { +	REGULATOR_SUPPLY("vdds_dsi", "omapdss"), +	REGULATOR_SUPPLY("vdds_dsi", "omapdss_dsi1"), +};  static struct regulator_init_data omap3_evm_vpll2 = {  	.constraints = { @@ -573,8 +575,8 @@ static struct regulator_init_data omap3_evm_vpll2 = {  		.valid_ops_mask		= REGULATOR_CHANGE_MODE  					| REGULATOR_CHANGE_STATUS,  	}, -	.num_consumer_supplies	= 1, -	.consumer_supplies	= &omap3_evm_vpll2_supply, +	.num_consumer_supplies	= ARRAY_SIZE(omap3_evm_vpll2_supplies), +	.consumer_supplies	= omap3_evm_vpll2_supplies,  };  /* ads7846 on SPI */  |