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

omap_crtc.h (943B)


      1/* SPDX-License-Identifier: GPL-2.0-only */
      2/*
      3 * omap_crtc.h -- OMAP DRM CRTC
      4 *
      5 * Copyright (C) 2011 Texas Instruments
      6 * Author: Rob Clark <rob@ti.com>
      7 */
      8
      9#ifndef __OMAPDRM_CRTC_H__
     10#define __OMAPDRM_CRTC_H__
     11
     12#include <linux/types.h>
     13
     14enum omap_channel;
     15
     16struct drm_crtc;
     17struct drm_device;
     18struct drm_plane;
     19struct omap_drm_pipeline;
     20struct omap_dss_device;
     21struct videomode;
     22
     23struct videomode *omap_crtc_timings(struct drm_crtc *crtc);
     24enum omap_channel omap_crtc_channel(struct drm_crtc *crtc);
     25struct drm_crtc *omap_crtc_init(struct drm_device *dev,
     26				struct omap_drm_pipeline *pipe,
     27				struct drm_plane *plane);
     28int omap_crtc_wait_pending(struct drm_crtc *crtc);
     29void omap_crtc_error_irq(struct drm_crtc *crtc, u32 irqstatus);
     30void omap_crtc_vblank_irq(struct drm_crtc *crtc);
     31void omap_crtc_framedone_irq(struct drm_crtc *crtc, uint32_t irqstatus);
     32void omap_crtc_flush(struct drm_crtc *crtc);
     33
     34#endif /* __OMAPDRM_CRTC_H__ */