Skip to content

Commit

Permalink
bf609: add resources for lcd nl8048
Browse files Browse the repository at this point in the history
Signed-off-by: Scott Jiang <[email protected]>
Signed-off-by: Steven Miao <[email protected]>
  • Loading branch information
Scott Jiang authored and realmz committed Apr 23, 2015
1 parent ef7dcaf commit b3df664
Showing 1 changed file with 30 additions and 1 deletion.
31 changes: 30 additions & 1 deletion arch/blackfin/mach-bf609/boards/ezkit.c
Original file line number Diff line number Diff line change
Expand Up @@ -1207,6 +1207,35 @@ static struct platform_device bfin_display_device = {
};
#endif

#if defined(CONFIG_FB_BF609_NL8048) \
|| defined(CONFIG_FB_BF609_NL8048_MODULE)
static struct resource nl8048_resources[] = {
{
.start = EPPI2_STAT,
.end = EPPI2_STAT,
.flags = IORESOURCE_MEM,
},
{
.start = CH_EPPI2_CH0,
.end = CH_EPPI2_CH0,
.flags = IORESOURCE_DMA,
},
{
.start = IRQ_EPPI2_STAT,
.end = IRQ_EPPI2_STAT,
.flags = IORESOURCE_IRQ,
},
};
static struct platform_device bfin_fb_device = {
.name = "bf609_nl8048",
.num_resources = ARRAY_SIZE(nl8048_resources),
.resource = nl8048_resources,
.dev = {
.platform_data = (void *)GPIO_PC15,
},
};
#endif

#if defined(CONFIG_BFIN_CRC)
#define BFIN_CRC_NAME "bfin-crc"

Expand Down Expand Up @@ -2107,7 +2136,7 @@ static struct pinctrl_map __initdata bfin_pinmux_map[] = {
PIN_MAP_MUX_GROUP_DEFAULT("bfin-rotary", "pinctrl-adi2.0", NULL, "rotary"),
PIN_MAP_MUX_GROUP_DEFAULT("bfin_can.0", "pinctrl-adi2.0", NULL, "can0"),
PIN_MAP_MUX_GROUP_DEFAULT("physmap-flash.0", "pinctrl-adi2.0", NULL, "smc0"),
PIN_MAP_MUX_GROUP_DEFAULT("bf609_nl8048.2", "pinctrl-adi2.0", "ppi2_16bgrp", "ppi2"),
PIN_MAP_MUX_GROUP_DEFAULT("bf609_nl8048.0", "pinctrl-adi2.0", "ppi2_16bgrp", "ppi2"),
PIN_MAP_MUX_GROUP("bfin_display.0", "8bit", "pinctrl-adi2.0", "ppi2_8bgrp", "ppi2"),
PIN_MAP_MUX_GROUP_DEFAULT("bfin_display.0", "pinctrl-adi2.0", "ppi2_16bgrp", "ppi2"),
PIN_MAP_MUX_GROUP("bfin_display.0", "16bit", "pinctrl-adi2.0", "ppi2_16bgrp", "ppi2"),
Expand Down

0 comments on commit b3df664

Please sign in to comment.