WIP FPC-III support
[linux/fpc-iii.git] / drivers / gpu / drm / shmobile / shmob_drm_kms.h
blob6ec2b732bb9498829ec2f83b74ee8cd5850625d7
1 /* SPDX-License-Identifier: GPL-2.0+ */
2 /*
3 * shmob_drm_kms.h -- SH Mobile DRM Mode Setting
5 * Copyright (C) 2012 Renesas Electronics Corporation
7 * Laurent Pinchart (laurent.pinchart@ideasonboard.com)
8 */
10 #ifndef __SHMOB_DRM_KMS_H__
11 #define __SHMOB_DRM_KMS_H__
13 #include <linux/types.h>
15 struct drm_gem_cma_object;
16 struct shmob_drm_device;
18 struct shmob_drm_format_info {
19 u32 fourcc;
20 unsigned int bpp;
21 bool yuv;
22 u32 lddfr;
25 const struct shmob_drm_format_info *shmob_drm_format_info(u32 fourcc);
27 int shmob_drm_modeset_init(struct shmob_drm_device *sdev);
29 #endif /* __SHMOB_DRM_KMS_H__ */