30 lines
832 B
C
30 lines
832 B
C
|
/*
|
||
|
* dsi2lvds.h: dsi to lvds controller interface.
|
||
|
*
|
||
|
* Copyright (c) 2012-2018, NVIDIA CORPORATION. All rights reserved.
|
||
|
*
|
||
|
* This software is licensed under the terms of the GNU General Public
|
||
|
* License version 2, as published by the Free Software Foundation, and
|
||
|
* may be copied, distributed, and modified under those terms.
|
||
|
*
|
||
|
* This program is distributed in the hope that it will be useful,
|
||
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||
|
* GNU General Public License for more details.
|
||
|
*
|
||
|
*/
|
||
|
|
||
|
#ifndef __DRIVERS_VIDEO_TEGRA_DC_DSI2LVDS_H
|
||
|
#define __DRIVERS_VIDEO_TEGRA_DC_DSI2LVDS_H
|
||
|
|
||
|
struct tegra_dc_dsi2lvds_data {
|
||
|
struct tegra_dc_dsi_data *dsi;
|
||
|
struct i2c_client *client_i2c;
|
||
|
|
||
|
bool dsi2lvds_enabled;
|
||
|
|
||
|
struct mutex lock;
|
||
|
};
|
||
|
|
||
|
#endif
|