2 * Copyright (C) 2010-2011 Samsung Electronics Co.Ltd
4 * Base S5P MFC resource and device definitions
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>
14 #include <linux/dma-mapping.h>
15 #include <linux/memblock.h>
16 #include <linux/ioport.h>
17 #include <linux/of_fdt.h>
21 #include <mach/irqs.h>
22 #include <plat/devs.h>
25 static struct resource s5p_mfc_resource
[] = {
26 [0] = DEFINE_RES_MEM(S5P_PA_MFC
, SZ_64K
),
27 [1] = DEFINE_RES_IRQ(IRQ_MFC
),
30 struct platform_device s5p_device_mfc
= {
33 .num_resources
= ARRAY_SIZE(s5p_mfc_resource
),
34 .resource
= s5p_mfc_resource
,
38 * MFC hardware has 2 memory interfaces which are modelled as two separate
39 * platform devices to let dma-mapping distinguish between them.
41 * MFC parent device (s5p_device_mfc) must be registered before memory
42 * interface specific devices (s5p_device_mfc_l and s5p_device_mfc_r).
45 struct platform_device s5p_device_mfc_l
= {
49 .parent
= &s5p_device_mfc
.dev
,
50 .dma_mask
= &s5p_device_mfc_l
.dev
.coherent_dma_mask
,
51 .coherent_dma_mask
= DMA_BIT_MASK(32),
55 struct platform_device s5p_device_mfc_r
= {
59 .parent
= &s5p_device_mfc
.dev
,
60 .dma_mask
= &s5p_device_mfc_r
.dev
.coherent_dma_mask
,
61 .coherent_dma_mask
= DMA_BIT_MASK(32),
65 struct s5p_mfc_reserved_mem
{
71 static struct s5p_mfc_reserved_mem s5p_mfc_mem
[2] __initdata
;
73 void __init
s5p_mfc_reserve_mem(phys_addr_t rbase
, unsigned int rsize
,
74 phys_addr_t lbase
, unsigned int lsize
)
78 s5p_mfc_mem
[0].dev
= &s5p_device_mfc_r
.dev
;
79 s5p_mfc_mem
[0].base
= rbase
;
80 s5p_mfc_mem
[0].size
= rsize
;
82 s5p_mfc_mem
[1].dev
= &s5p_device_mfc_l
.dev
;
83 s5p_mfc_mem
[1].base
= lbase
;
84 s5p_mfc_mem
[1].size
= lsize
;
86 for (i
= 0; i
< ARRAY_SIZE(s5p_mfc_mem
); i
++) {
87 struct s5p_mfc_reserved_mem
*area
= &s5p_mfc_mem
[i
];
88 if (memblock_remove(area
->base
, area
->size
)) {
89 printk(KERN_ERR
"Failed to reserve memory for MFC device (%ld bytes at 0x%08lx)\n",
90 area
->size
, (unsigned long) area
->base
);
96 static int __init
s5p_mfc_memory_init(void)
100 for (i
= 0; i
< ARRAY_SIZE(s5p_mfc_mem
); i
++) {
101 struct s5p_mfc_reserved_mem
*area
= &s5p_mfc_mem
[i
];
105 if (dma_declare_coherent_memory(area
->dev
, area
->base
,
106 area
->base
, area
->size
,
107 DMA_MEMORY_MAP
| DMA_MEMORY_EXCLUSIVE
) == 0)
108 printk(KERN_ERR
"Failed to declare coherent memory for MFC device (%ld bytes at 0x%08lx)\n",
109 area
->size
, (unsigned long) area
->base
);
113 device_initcall(s5p_mfc_memory_init
);
116 int __init
s5p_fdt_find_mfc_mem(unsigned long node
, const char *uname
,
117 int depth
, void *data
)
121 struct s5p_mfc_dt_meminfo
*mfc_mem
= data
;
126 if (!of_flat_dt_is_compatible(node
, mfc_mem
->compatible
))
129 prop
= of_get_flat_dt_prop(node
, "samsung,mfc-l", &len
);
130 if (!prop
|| (len
!= 2 * sizeof(unsigned long)))
133 mfc_mem
->loff
= be32_to_cpu(prop
[0]);
134 mfc_mem
->lsize
= be32_to_cpu(prop
[1]);
136 prop
= of_get_flat_dt_prop(node
, "samsung,mfc-r", &len
);
137 if (!prop
|| (len
!= 2 * sizeof(unsigned long)))
140 mfc_mem
->roff
= be32_to_cpu(prop
[0]);
141 mfc_mem
->rsize
= be32_to_cpu(prop
[1]);