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

zynqmp_dp.h (674B)


      1/* SPDX-License-Identifier: GPL-2.0 */
      2/*
      3 * ZynqMP DisplayPort Driver
      4 *
      5 * Copyright (C) 2017 - 2020 Xilinx, Inc.
      6 *
      7 * Authors:
      8 * - Hyun Woo Kwon <hyun.kwon@xilinx.com>
      9 * - Laurent Pinchart <laurent.pinchart@ideasonboard.com>
     10 */
     11
     12#ifndef _ZYNQMP_DP_H_
     13#define _ZYNQMP_DP_H_
     14
     15struct drm_device;
     16struct platform_device;
     17struct zynqmp_dp;
     18struct zynqmp_dpsub;
     19
     20void zynqmp_dp_enable_vblank(struct zynqmp_dp *dp);
     21void zynqmp_dp_disable_vblank(struct zynqmp_dp *dp);
     22
     23int zynqmp_dp_drm_init(struct zynqmp_dpsub *dpsub);
     24int zynqmp_dp_probe(struct zynqmp_dpsub *dpsub, struct drm_device *drm);
     25void zynqmp_dp_remove(struct zynqmp_dpsub *dpsub);
     26
     27#endif /* _ZYNQMP_DP_H_ */