36 lines
899 B
C
36 lines
899 B
C
/*
|
|
* dp_debug.h: tegra dp debug interface.
|
|
*
|
|
* Copyright (c) 2015-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 __DRIVER_VIDEO_TEGRA_DC_DP_DEBUG_H__
|
|
#define __DRIVER_VIDEO_TEGRA_DC_DP_DEBUG_H__
|
|
|
|
#include "sor_regs.h"
|
|
|
|
struct tegra_dp_test_settings {
|
|
u8 drive_strength;
|
|
u8 preemphasis;
|
|
u8 lanes;
|
|
u8 bitrate;
|
|
u8 tpg;
|
|
u8 panel_type;
|
|
char *bitrate_name;
|
|
char *patt;
|
|
bool disable_ssc;
|
|
bool disable_tx_pu;
|
|
};
|
|
|
|
#endif
|