2 * Copyright (C) 2010-2011 Samsung Electronics Co., Ltd.
4 * S5P series device definition for MIPI-CSIS channel 0
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License version 2 as
8 * published by the Free Software Foundation.
11 #include <linux/kernel.h>
12 #include <linux/interrupt.h>
13 #include <linux/platform_device.h>
16 static struct resource s5p_mipi_csis0_resource
[] = {
18 .start
= S5P_PA_MIPI_CSIS0
,
19 .end
= S5P_PA_MIPI_CSIS0
+ SZ_4K
- 1,
20 .flags
= IORESOURCE_MEM
,
23 .start
= IRQ_MIPI_CSIS0
,
24 .end
= IRQ_MIPI_CSIS0
,
25 .flags
= IORESOURCE_IRQ
,
29 struct platform_device s5p_device_mipi_csis0
= {
30 .name
= "s5p-mipi-csis",
32 .num_resources
= ARRAY_SIZE(s5p_mipi_csis0_resource
),
33 .resource
= s5p_mipi_csis0_resource
,