blob: ad9eb82acb6017fc8db2b6ca13d258e73a772692 (
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
|
/* linux/arch/arm/mach-s5pv210/include/mach/media.h
*
* Copyright (c) 2010 Samsung Electronics Co., Ltd.
* http://www.samsung.com/
*
* Samsung Media device descriptions for smdkv210
*
* 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.
*/
#ifndef _S5PV210_MEDIA_H
#define _S5PV210_MEDIA_H
/* 3 fimc indexes should be fixed as n, n+1 and n+2 */
#define S5P_MDEV_FIMC0 0
#define S5P_MDEV_FIMC1 1
#define S5P_MDEV_FIMC2 2
#define S5P_MDEV_TV 3
#define S5P_MDEV_MFC 4
#define S5P_MDEV_JPEG 5
#define S5P_MDEV_PMEM 6
#define S5P_MDEV_PMEM_GPU1 7
#define S5P_MDEV_PMEM_ADSP 8
#define S5P_MDEV_TEXSTREAM 9
#define S5P_MDEV_FIMD 10
#define S5P_MDEV_MAX 11
#define S5P_RANGE_MFC SZ_256M
#endif
|