cachepc-linux

Fork of AMDESE/linux with modifications for CachePC side-channel attack
git clone https://git.sinitax.com/sinitax/cachepc-linux
Log | Files | Refs | README | LICENSE | sfeed.txt

dcn20_hwseq.h (5503B)


      1/*
      2* Copyright 2016 Advanced Micro Devices, Inc.
      3 *
      4 * Permission is hereby granted, free of charge, to any person obtaining a
      5 * copy of this software and associated documentation files (the "Software"),
      6 * to deal in the Software without restriction, including without limitation
      7 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
      8 * and/or sell copies of the Software, and to permit persons to whom the
      9 * Software is furnished to do so, subject to the following conditions:
     10 *
     11 * The above copyright notice and this permission notice shall be included in
     12 * all copies or substantial portions of the Software.
     13 *
     14 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
     15 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
     16 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.  IN NO EVENT SHALL
     17 * THE COPYRIGHT HOLDER(S) OR AUTHOR(S) BE LIABLE FOR ANY CLAIM, DAMAGES OR
     18 * OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
     19 * ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
     20 * OTHER DEALINGS IN THE SOFTWARE.
     21 *
     22 * Authors: AMD
     23 *
     24 */
     25
     26#ifndef __DC_HWSS_DCN20_H__
     27#define __DC_HWSS_DCN20_H__
     28
     29#include "hw_sequencer_private.h"
     30
     31bool dcn20_set_blend_lut(
     32	struct pipe_ctx *pipe_ctx, const struct dc_plane_state *plane_state);
     33bool dcn20_set_shaper_3dlut(
     34	struct pipe_ctx *pipe_ctx, const struct dc_plane_state *plane_state);
     35void dcn20_program_front_end_for_ctx(
     36		struct dc *dc,
     37		struct dc_state *context);
     38void dcn20_post_unlock_program_front_end(
     39		struct dc *dc,
     40		struct dc_state *context);
     41void dcn20_update_plane_addr(const struct dc *dc, struct pipe_ctx *pipe_ctx);
     42void dcn20_update_mpcc(struct dc *dc, struct pipe_ctx *pipe_ctx);
     43bool dcn20_set_input_transfer_func(struct dc *dc, struct pipe_ctx *pipe_ctx,
     44			const struct dc_plane_state *plane_state);
     45bool dcn20_set_output_transfer_func(struct dc *dc, struct pipe_ctx *pipe_ctx,
     46			const struct dc_stream_state *stream);
     47void dcn20_program_output_csc(struct dc *dc,
     48		struct pipe_ctx *pipe_ctx,
     49		enum dc_color_space colorspace,
     50		uint16_t *matrix,
     51		int opp_id);
     52void dcn20_enable_stream(struct pipe_ctx *pipe_ctx);
     53void dcn20_unblank_stream(struct pipe_ctx *pipe_ctx,
     54		struct dc_link_settings *link_settings);
     55void dcn20_disable_plane(struct dc *dc, struct pipe_ctx *pipe_ctx);
     56void dcn20_disable_pixel_data(
     57		struct dc *dc,
     58		struct pipe_ctx *pipe_ctx,
     59		bool blank);
     60void dcn20_blank_pixel_data(
     61		struct dc *dc,
     62		struct pipe_ctx *pipe_ctx,
     63		bool blank);
     64void dcn20_pipe_control_lock(
     65	struct dc *dc,
     66	struct pipe_ctx *pipe,
     67	bool lock);
     68void dcn20_prepare_bandwidth(
     69		struct dc *dc,
     70		struct dc_state *context);
     71void dcn20_optimize_bandwidth(
     72		struct dc *dc,
     73		struct dc_state *context);
     74bool dcn20_update_bandwidth(
     75		struct dc *dc,
     76		struct dc_state *context);
     77void dcn20_reset_hw_ctx_wrap(
     78		struct dc *dc,
     79		struct dc_state *context);
     80enum dc_status dcn20_enable_stream_timing(
     81		struct pipe_ctx *pipe_ctx,
     82		struct dc_state *context,
     83		struct dc *dc);
     84void dcn20_disable_stream_gating(struct dc *dc, struct pipe_ctx *pipe_ctx);
     85void dcn20_enable_stream_gating(struct dc *dc, struct pipe_ctx *pipe_ctx);
     86void dcn20_setup_vupdate_interrupt(struct dc *dc, struct pipe_ctx *pipe_ctx);
     87void dcn20_init_blank(
     88		struct dc *dc,
     89		struct timing_generator *tg);
     90void dcn20_disable_vga(
     91	struct dce_hwseq *hws);
     92void dcn20_plane_atomic_disable(struct dc *dc, struct pipe_ctx *pipe_ctx);
     93void dcn20_enable_power_gating_plane(
     94	struct dce_hwseq *hws,
     95	bool enable);
     96void dcn20_dpp_pg_control(
     97		struct dce_hwseq *hws,
     98		unsigned int dpp_inst,
     99		bool power_on);
    100void dcn20_hubp_pg_control(
    101		struct dce_hwseq *hws,
    102		unsigned int hubp_inst,
    103		bool power_on);
    104void dcn20_program_triple_buffer(
    105	const struct dc *dc,
    106	struct pipe_ctx *pipe_ctx,
    107	bool enable_triple_buffer);
    108void dcn20_enable_writeback(
    109		struct dc *dc,
    110		struct dc_writeback_info *wb_info,
    111		struct dc_state *context);
    112void dcn20_disable_writeback(
    113		struct dc *dc,
    114		unsigned int dwb_pipe_inst);
    115void dcn20_update_odm(struct dc *dc, struct dc_state *context, struct pipe_ctx *pipe_ctx);
    116bool dcn20_dmdata_status_done(struct pipe_ctx *pipe_ctx);
    117void dcn20_program_dmdata_engine(struct pipe_ctx *pipe_ctx);
    118void dcn20_set_dmdata_attributes(struct pipe_ctx *pipe_ctx);
    119void dcn20_init_vm_ctx(
    120		struct dce_hwseq *hws,
    121		struct dc *dc,
    122		struct dc_virtual_addr_space_config *va_config,
    123		int vmid);
    124void dcn20_set_flip_control_gsl(
    125		struct pipe_ctx *pipe_ctx,
    126		bool flip_immediate);
    127void dcn20_dsc_pg_control(
    128		struct dce_hwseq *hws,
    129		unsigned int dsc_inst,
    130		bool power_on);
    131void dcn20_fpga_init_hw(struct dc *dc);
    132bool dcn20_wait_for_blank_complete(
    133		struct output_pixel_processor *opp);
    134void dcn20_dccg_init(struct dce_hwseq *hws);
    135int dcn20_init_sys_ctx(struct dce_hwseq *hws,
    136		struct dc *dc,
    137		struct dc_phy_addr_space_config *pa_config);
    138
    139#ifndef TRIM_FSFT
    140bool dcn20_optimize_timing_for_fsft(struct dc *dc,
    141		struct dc_crtc_timing *timing,
    142		unsigned int max_input_rate_in_khz);
    143#endif
    144
    145void dcn20_set_disp_pattern_generator(const struct dc *dc,
    146		struct pipe_ctx *pipe_ctx,
    147		enum controller_dp_test_pattern test_pattern,
    148		enum controller_dp_color_space color_space,
    149		enum dc_color_depth color_depth,
    150		const struct tg_color *solid_color,
    151		int width, int height, int offset);
    152
    153void dcn20_update_visual_confirm_color(struct dc *dc,
    154		struct pipe_ctx *pipe_ctx,
    155		struct tg_color *color,
    156		int mpcc_id);
    157
    158#endif /* __DC_HWSS_DCN20_H__ */
    159