2010-12-17 13:08:07 +07:00
|
|
|
/*
|
2012-09-17 16:03:38 +07:00
|
|
|
* Copyright (C) 2010 - 2012 Samsung Electronics Co., Ltd.
|
2010-12-17 13:08:07 +07:00
|
|
|
*
|
2012-09-17 16:03:25 +07:00
|
|
|
* Samsung S5P/Exynos SoC series MIPI CSIS device support
|
2010-12-17 13:08:07 +07:00
|
|
|
*
|
|
|
|
* 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.
|
|
|
|
*/
|
|
|
|
|
2011-09-28 19:06:52 +07:00
|
|
|
#ifndef __PLAT_SAMSUNG_MIPI_CSIS_H_
|
|
|
|
#define __PLAT_SAMSUNG_MIPI_CSIS_H_ __FILE__
|
2010-12-17 13:08:07 +07:00
|
|
|
|
|
|
|
/**
|
2011-03-10 19:52:27 +07:00
|
|
|
* struct s5p_platform_mipi_csis - platform data for S5P MIPI-CSIS driver
|
2012-09-17 16:03:25 +07:00
|
|
|
* @clk_rate: bus clock frequency
|
2012-09-17 16:03:38 +07:00
|
|
|
* @wclk_source: CSI wrapper clock selection: 0 - bus clock, 1 - ext. SCLK_CAM
|
2012-09-17 16:03:25 +07:00
|
|
|
* @lanes: number of data lanes used
|
|
|
|
* @hs_settle: HS-RX settle time
|
2010-12-17 13:08:07 +07:00
|
|
|
*/
|
|
|
|
struct s5p_platform_mipi_csis {
|
|
|
|
unsigned long clk_rate;
|
2012-09-17 16:03:38 +07:00
|
|
|
u8 wclk_source;
|
2010-12-17 13:08:07 +07:00
|
|
|
u8 lanes;
|
|
|
|
u8 hs_settle;
|
|
|
|
};
|
|
|
|
|
2011-09-28 19:06:52 +07:00
|
|
|
#endif /* __PLAT_SAMSUNG_MIPI_CSIS_H_ */
|