Blame view

include/fsl_dcu_fb.h 594 Bytes
83d290c56   Tom Rini   SPDX: Convert all...
1
  /* SPDX-License-Identifier: GPL-2.0+ */
327def506   Wang Huan   video: dcu: Add D...
2
3
4
5
  /*
   * Copyright 2014 Freescale Semiconductor, Inc.
   *
   * FSL DCU Framebuffer driver
327def506   Wang Huan   video: dcu: Add D...
6
7
   */
  #include <linux/fb.h>
a6eedb670   Igor Opaniuk   video: fsl_dcu_fb...
8
9
10
  int fsl_dcu_init(struct fb_info *fbinfo,
  		 unsigned int xres,
  		 unsigned int yres,
327def506   Wang Huan   video: dcu: Add D...
11
  		 unsigned int pixel_format);
a6eedb670   Igor Opaniuk   video: fsl_dcu_fb...
12

77810e638   Stefan Agner   video: fsl_dcu_fb...
13
  int fsl_dcu_fixedfb_setup(void *blob);
327def506   Wang Huan   video: dcu: Add D...
14
15
  
  /* Prototypes for external board-specific functions */
a6eedb670   Igor Opaniuk   video: fsl_dcu_fb...
16
17
18
19
20
  int platform_dcu_init(struct fb_info *fbinfo,
  		      unsigned int xres,
  		      unsigned int yres,
  		      const char *port,
  		      struct fb_videomode *dcu_fb_videomode);
327def506   Wang Huan   video: dcu: Add D...
21
  unsigned int dcu_set_pixel_clock(unsigned int pixclock);