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.
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>
30 static struct fb_videomode lcdc0_mode = {
31 .name = "AMPIER/AM-800480",
43 static struct sh_mobile_lcdc_info lcdc0_info = {
44 .clock_source = LCDC_CLK_BUS,
46 .chan = LCDC_CHAN_MAINLCD,
47 .fourcc = V4L2_PIX_FMT_RGB565,
48 .interface_type = RGB24,
51 .lcd_modes = &lcdc0_mode,
60 static struct resource lcdc0_resources[] = {
65 .flags = IORESOURCE_MEM,
69 .flags = IORESOURCE_IRQ,
73 static struct platform_device lcdc0_device = {
74 .name = "sh_mobile_lcdc_fb",
75 .num_resources = ARRAY_SIZE(lcdc0_resources),
76 .resource = lcdc0_resources,
79 .platform_data = &lcdc0_info,
80 .coherent_dma_mask = DMA_BIT_MASK(32),
84 static const struct board_staging_clk lcdc0_clocks[] __initconst = {
85 { "lcdc0", NULL, "sh_mobile_lcdc_fb.0" },
88 static const struct board_staging_dev armadillo800eva_devices[] __initconst = {
90 .pdev = &lcdc0_device,
91 .clocks = lcdc0_clocks,
92 .nclocks = ARRAY_SIZE(lcdc0_clocks),
93 .domain = "/system-controller@e6180000/pm-domains/c5/a4lc@1"
97 static void __init armadillo800eva_init(void)
99 board_staging_gic_setup_xlate("arm,pl390", 32);
100 board_staging_register_devices(armadillo800eva_devices,
101 ARRAY_SIZE(armadillo800eva_devices));
104 board_staging("renesas,armadillo800eva", armadillo800eva_init);