link_hwss.h 2.6 KB
Newer Older
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 30 31
/*
 * Copyright 2015 Advanced Micro Devices, Inc.
 *
 * Permission is hereby granted, free of charge, to any person obtaining a
 * copy of this software and associated documentation files (the "Software"),
 * to deal in the Software without restriction, including without limitation
 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
 * and/or sell copies of the Software, and to permit persons to whom the
 * Software is furnished to do so, subject to the following conditions:
 *
 * The above copyright notice and this permission notice shall be included in
 * all copies or substantial portions of the Software.
 *
 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.  IN NO EVENT SHALL
 * THE COPYRIGHT HOLDER(S) OR AUTHOR(S) BE LIABLE FOR ANY CLAIM, DAMAGES OR
 * OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
 * ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
 * OTHER DEALINGS IN THE SOFTWARE.
 *
 * Authors: AMD
 *
 */

#ifndef __DC_LINK_HWSS_H__
#define __DC_LINK_HWSS_H__

#include "inc/core_status.h"

enum dc_status core_link_read_dpcd(
32
	struct dc_link *link,
33 34 35 36 37
	uint32_t address,
	uint8_t *data,
	uint32_t size);

enum dc_status core_link_write_dpcd(
38
	struct dc_link *link,
39 40 41 42
	uint32_t address,
	const uint8_t *data,
	uint32_t size);

43 44 45 46
struct gpio *get_hpd_gpio(struct dc_bios *dcb,
		struct graphics_object_id link_id,
		struct gpio_service *gpio_service);

47
void dp_enable_link_phy(
48
	struct dc_link *link,
49 50 51 52
	enum signal_type signal,
	enum clock_source_id clock_source,
	const struct dc_link_settings *link_settings);

53
void dp_receiver_power_ctrl(struct dc_link *link, bool on);
54
bool edp_receiver_ready_T9(struct dc_link *link);
55
bool edp_receiver_ready_T7(struct dc_link *link);
56

57
void dp_disable_link_phy(struct dc_link *link, enum signal_type signal);
58

59
void dp_disable_link_phy_mst(struct dc_link *link, enum signal_type signal);
60 61

bool dp_set_hw_training_pattern(
62
	struct dc_link *link,
63 64 65
	enum hw_dp_training_pattern pattern);

void dp_set_hw_lane_settings(
66
	struct dc_link *link,
67 68 69
	const struct link_training_settings *link_settings);

void dp_set_hw_test_pattern(
70
	struct dc_link *link,
71 72 73 74
	enum dp_test_pattern test_pattern,
	uint8_t *custom_pattern,
	uint32_t custom_pattern_size);

75
enum dp_panel_mode dp_get_panel_mode(struct dc_link *link);
76

77
void dp_retrain_link_dp_test(struct dc_link *link,
78 79 80
		struct dc_link_settings *link_setting,
		bool skip_video_pattern);

81
#endif /* __DC_LINK_HWSS_H__ */