/** * struct dpu_hw_mdp_ops - interface to the MDP TOP Hw driver functions * Assumption is these functions will be called after clocks are enabled. * @setup_split_pipe : Programs the pipe control registers * @setup_pp_split : Programs the pp split control registers * @setup_traffic_shaper : programs traffic shaper control
*/ struct dpu_hw_mdp_ops { /** setup_split_pipe() : Registers are not double buffered, thisk * function should be called before timing control enable * @mdp : mdp top context driver * @cfg : upper and lower part of pipe configuration
*/ void (*setup_split_pipe)(struct dpu_hw_mdp *mdp, struct split_pipe_cfg *p);
/** * setup_clk_force_ctrl - set clock force control * @mdp: mdp top context driver * @clk_ctrl: clock to be controlled * @enable: force on enable * @return: if the clock is forced-on by this function
*/ bool (*setup_clk_force_ctrl)(struct dpu_hw_mdp *mdp, enum dpu_clk_ctrl_type clk_ctrl, bool enable);
/** * get_danger_status - get danger status * @mdp: mdp top context driver * @status: Pointer to danger safe status
*/ void (*get_danger_status)(struct dpu_hw_mdp *mdp, struct dpu_danger_safe_status *status);
/** * get_safe_status - get safe status * @mdp: mdp top context driver * @status: Pointer to danger safe status
*/ void (*get_safe_status)(struct dpu_hw_mdp *mdp, struct dpu_danger_safe_status *status);
/** * dp_phy_intf_sel - configure intf to phy mapping * @mdp: mdp top context driver * @phys: list of phys the DP interfaces should be connected to. 0 disables the INTF.
*/ void (*dp_phy_intf_sel)(struct dpu_hw_mdp *mdp, enum dpu_dp_phy_sel phys[2]);
/** * intf_audio_select - select the external interface for audio * @mdp: mdp top context driver
*/ void (*intf_audio_select)(struct dpu_hw_mdp *mdp);
};
Die Informationen auf dieser Webseite wurden
nach bestem Wissen sorgfältig zusammengestellt. Es wird jedoch weder Vollständigkeit, noch Richtigkeit,
noch Qualität der bereit gestellten Informationen zugesichert.
Bemerkung:
Die farbliche Syntaxdarstellung und die Messung sind noch experimentell.