Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

at master 26 lines 944 B view raw
1/* SPDX-License-Identifier: GPL-2.0-only */ 2/* 3 * Copyright (c) 2021 MediaTek Inc. 4 */ 5 6#ifndef __MTK_ETHDR_H__ 7#define __MTK_ETHDR_H__ 8 9void mtk_ethdr_start(struct device *dev); 10void mtk_ethdr_stop(struct device *dev); 11int mtk_ethdr_clk_enable(struct device *dev); 12void mtk_ethdr_clk_disable(struct device *dev); 13void mtk_ethdr_config(struct device *dev, unsigned int w, 14 unsigned int h, unsigned int vrefresh, 15 unsigned int bpc, struct cmdq_pkt *cmdq_pkt); 16u32 mtk_ethdr_get_blend_modes(struct device *dev); 17void mtk_ethdr_layer_config(struct device *dev, unsigned int idx, 18 struct mtk_plane_state *state, 19 struct cmdq_pkt *cmdq_pkt); 20void mtk_ethdr_register_vblank_cb(struct device *dev, 21 void (*vblank_cb)(void *), 22 void *vblank_cb_data); 23void mtk_ethdr_unregister_vblank_cb(struct device *dev); 24void mtk_ethdr_enable_vblank(struct device *dev); 25void mtk_ethdr_disable_vblank(struct device *dev); 26#endif