blob: 23a9b527bf2311a9f7215314e192bf2fc9c519e5 (
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
|
/* linux/arch/arm/plat-s5p/include/plat/csis.h
*
* Copyright (c) 2010 Samsung Electronics Co., Ltd.
* http://www.samsung.com/
*
* S5PV210 - Platform header file for MIPI-CSI2 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.
*/
#ifndef __ASM_PLAT_CSIS_H
#define __ASM_PLAT_CSIS_H __FILE__
struct platform_device;
struct s3c_platform_csis {
const char srclk_name[16];
const char clk_name[16];
unsigned long clk_rate;
void (*cfg_gpio)(void);
void (*cfg_phy_global)(int on);
};
extern void s3c_csis_set_platdata(struct s3c_platform_csis *csis);
#endif /* __ASM_PLAT_CSIS_H */
|