Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 271462
b: refs/heads/master
c: da91e89
h: refs/heads/master
v: v3
  • Loading branch information
Tomi Valkeinen committed Sep 30, 2011
1 parent 5a1dc2d commit 690d7c9
Show file tree
Hide file tree
Showing 2 changed files with 24 additions and 13 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: cbf1455bfc9fcec9b937c0d09bd49383334600be
refs/heads/master: da91e89fb2f582d75324a64fbf0b6aa91a5e6280
35 changes: 23 additions & 12 deletions trunk/arch/arm/mach-omap2/board-apollon.c
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,9 @@
#include <plat/common.h>
#include <plat/gpmc.h>

#include <video/omapdss.h>
#include <video/omap-panel-generic-dpi.h>

#include "mux.h"
#include "control.h"

Expand Down Expand Up @@ -149,11 +152,6 @@ static struct platform_device apollon_smc91x_device = {
.resource = apollon_smc91x_resources,
};

static struct platform_device apollon_lcd_device = {
.name = "apollon_lcd",
.id = -1,
};

static struct omap_led_config apollon_led_config[] = {
{
.cdev = {
Expand Down Expand Up @@ -191,7 +189,6 @@ static struct platform_device apollon_led_device = {
static struct platform_device *apollon_devices[] __initdata = {
&apollon_onenand_device,
&apollon_smc91x_device,
&apollon_lcd_device,
&apollon_led_device,
};

Expand Down Expand Up @@ -265,12 +262,26 @@ static struct omap_usb_config apollon_usb_config __initdata = {
.pins[0] = 6,
};

static struct omap_lcd_config apollon_lcd_config __initdata = {
.ctrl_name = "internal",
static struct panel_generic_dpi_data apollon_panel_data = {
.name = "apollon",
};

static struct omap_board_config_kernel apollon_config[] __initdata = {
{ OMAP_TAG_LCD, &apollon_lcd_config },
static struct omap_dss_device apollon_lcd_device = {
.name = "lcd",
.driver_name = "generic_dpi_panel",
.type = OMAP_DISPLAY_TYPE_DPI,
.phy.dpi.data_lines = 18,
.data = &apollon_panel_data,
};

static struct omap_dss_device *apollon_dss_devices[] = {
&apollon_lcd_device,
};

static struct omap_dss_board_info apollon_dss_data = {
.num_devices = ARRAY_SIZE(apollon_dss_devices),
.devices = apollon_dss_devices,
.default_device = &apollon_lcd_device,
};

static void __init omap_apollon_init_early(void)
Expand Down Expand Up @@ -314,8 +325,6 @@ static void __init omap_apollon_init(void)
u32 v;

omap2420_mux_init(board_mux, OMAP_PACKAGE_ZAC);
omap_board_config = apollon_config;
omap_board_config_size = ARRAY_SIZE(apollon_config);

apollon_init_smc91x();
apollon_led_init();
Expand All @@ -340,6 +349,8 @@ static void __init omap_apollon_init(void)
*/
platform_add_devices(apollon_devices, ARRAY_SIZE(apollon_devices));
omap_serial_init();

omap_display_init(&apollon_dss_data);
}

static void __init omap_apollon_map_io(void)
Expand Down

0 comments on commit 690d7c9

Please sign in to comment.