/* 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 */