2 * Staging board support for Armadillo 800 eva.
3 * Enable not-yet-DT-capable devices here.
5 * Based on board-armadillo800eva.c
7 * Copyright (C) 2012 Renesas Solutions Corp.
8 * Copyright (C) 2012 Kuninori Morimoto <kuninori.morimoto.gx@renesas.com>
10 * This program is free software; you can redistribute it and/or modify
11 * it under the terms of the GNU General Public License as published by
12 * the Free Software Foundation; version 2 of the License.
14 * This program is distributed in the hope that it will be useful,
15 * but WITHOUT ANY WARRANTY; without even the implied warranty of
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 * GNU General Public License for more details.
20 #include <linux/dma-mapping.h>
22 #include <linux/kernel.h>
23 #include <linux/platform_device.h>
24 #include <linux/videodev2.h>
26 #include <video/sh_mobile_lcdc.h>
31 static struct fb_videomode lcdc0_mode
= {
32 .name
= "AMPIER/AM-800480",
44 static struct sh_mobile_lcdc_info lcdc0_info
= {
45 .clock_source
= LCDC_CLK_BUS
,
47 .chan
= LCDC_CHAN_MAINLCD
,
48 .fourcc
= V4L2_PIX_FMT_RGB565
,
49 .interface_type
= RGB24
,
52 .lcd_modes
= &lcdc0_mode
,
61 static struct resource lcdc0_resources
[] = {
66 .flags
= IORESOURCE_MEM
,
70 .flags
= IORESOURCE_IRQ
,
74 static struct platform_device lcdc0_device
= {
75 .name
= "sh_mobile_lcdc_fb",
76 .num_resources
= ARRAY_SIZE(lcdc0_resources
),
77 .resource
= lcdc0_resources
,
80 .platform_data
= &lcdc0_info
,
81 .coherent_dma_mask
= DMA_BIT_MASK(32),
85 static const struct board_staging_clk lcdc0_clocks
[] __initconst
= {
86 { "lcdc0", NULL
, "sh_mobile_lcdc_fb.0" },
89 static const struct board_staging_dev armadillo800eva_devices
[] __initconst
= {
91 .pdev
= &lcdc0_device
,
92 .clocks
= lcdc0_clocks
,
93 .nclocks
= ARRAY_SIZE(lcdc0_clocks
),
94 .domain
= "/system-controller@e6180000/pm-domains/c5/a4lc@1"
98 static void __init
armadillo800eva_init(void)
100 board_staging_gic_setup_xlate("arm,cortex-a9-gic", 32);
101 board_staging_register_devices(armadillo800eva_devices
,
102 ARRAY_SIZE(armadillo800eva_devices
));
105 board_staging("renesas,armadillo800eva", armadillo800eva_init
);