td8801 : add ion

This commit is contained in:
zhanghao
2011-12-17 14:48:06 +08:00
parent f3000ead23
commit 2b2a129166

View File

@@ -25,6 +25,7 @@
#include <linux/mmc/host.h>
#include <linux/android_pmem.h>
#include <linux/usb/android_composite.h>
#include <linux/ion.h>
#include <mach/hardware.h>
#include <asm/setup.h>
@@ -429,6 +430,30 @@ static struct platform_device rk29_v4l2_output_devce = {
.name = "rk29_vout",
};
#ifdef CONFIG_ION
static struct ion_platform_data rk29_ion_pdata = {
.nr = 1,
.heaps = {
{
.type = ION_HEAP_TYPE_CARVEOUT,
.id = 0,
.name = "ui",
.base = PMEM_UI_BASE,
.size = PMEM_UI_SIZE,
}
},
};
static struct platform_device rk29_ion_device = {
.name = "ion-rockchip",
.id = 0,
.dev = {
.platform_data = &rk29_ion_pdata,
},
};
#endif
/* HANNSTAR_P1003 touch I2C */
#if defined (CONFIG_HANNSTAR_P1003)
#define TOUCH_RESET_PIN RK29_PIN6_PC3
@@ -3141,6 +3166,9 @@ static struct platform_device *devices[] __initdata = {
#endif
&rk29_soc_camera_pdrv_1,
&android_pmem_cam_device,
#endif
#ifdef CONFIG_ION
&rk29_ion_device,
#endif
&android_pmem_device,
&rk29_vpu_mem_device,