summaryrefslogtreecommitdiff
path: root/drivers/gpu/mali/mali400ko/x11/mali_drm/README.txt
blob: 47009fe7686bf63794d82e301e591dd7d1fe5709 (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
Notes on integrating the Mali DRM module:

The Mali DRM is a platform device, meaning that you have to add an entry for it in your kernel architecture specification.

Example: (arch/arm/mach-<platform>/mach-<platform>.c)

#ifdef CONFIG_DRM_MALI
static struct platform_device <platform>_device_mali_drm = {
	.name = "mali_drm",
	.id   = -1,
};
#endif

static struct platform_device *<platform>_devices[] __initdata = {
...
#ifdef CONFIG_DRM_MALI
	&<platform>_device_mali_drm,
#endif
...
};

Where <platform> is substituted with the selected platform.

The "mali" folder should be placed under drivers/gpu/drm/