aboutsummaryrefslogtreecommitdiffstats
path: root/arch/arm/plat-s5p/dev-fimd0.c
blob: 9e7176c31d265ae743dfea8b93cf3c8136d6b2b6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
/* linux/arch/arm/plat-s5p/dev-fimd0.c
 *
 * Copyright (c) 2009-2011 Samsung Electronics Co., Ltd.
 *             http://www.samsung.com
 *
 * Core file for Samsung Display Controller (FIMD) driver
 *
 * This program is free software; you can redistribute it and/or modify
 * it under the terms of the GNU General Public License version 2 as
 * published by the Free Software Foundation.
*/

#include <linux/kernel.h>
#include <linux/string.h>
#include <linux/platform_device.h>
#include <linux/fb.h>
#include <linux/gfp.h>
#include <linux/dma-mapping.h>

#include <mach/irqs.h>
#include <mach/map.h>

#include <plat/fb.h>
#include <plat/devs.h>
#include <plat/cpu.h>

static struct resource s5p_fimd0_resource[] = {
	[0] = {
		.start  = S5P_PA_FIMD0,
		.end    = S5P_PA_FIMD0 + SZ_32K - 1,
		.flags  = IORESOURCE_MEM,
	},
	[1] = {
		.start  = IRQ_FIMD0_VSYNC,
		.end    = IRQ_FIMD0_VSYNC,
		.flags  = IORESOURCE_IRQ,
	},
	[2] = {
		.start  = IRQ_FIMD0_FIFO,
		.end    = IRQ_FIMD0_FIFO,
		.flags  = IORESOURCE_IRQ,
	},
	[3] = {
		.start  = IRQ_FIMD0_SYSTEM,
		.end    = IRQ_FIMD0_SYSTEM,
		.flags  = IORESOURCE_IRQ,
	},
};

static u64 fimd0_dmamask = DMA_BIT_MASK(32);

struct platform_device s5p_device_fimd0 = {
	.name           = "s5p-fb",
	.id             = 0,
	.num_resources  = ARRAY_SIZE(s5p_fimd0_resource),
	.resource       = s5p_fimd0_resource,
	.dev            = {
		.dma_mask               = &fimd0_dmamask,
		.coherent_dma_mask      = DMA_BIT_MASK(32),
	},
};

void __init s5p_fimd0_set_platdata(struct s3c_fb_platdata *pd)
{
	s3c_set_platdata(pd, sizeof(struct s3c_fb_platdata),
			&s5p_device_fimd0);
}