uboot/include/pxa_lcd.h
<<
>>
Prefs
   1/* SPDX-License-Identifier: GPL-2.0+ */
   2/*
   3 * pxa_lcd.h - PXA LCD Controller structures
   4 *
   5 * (C) Copyright 2001
   6 * Wolfgang Denk, DENX Software Engineering, wd@denx.de.
   7 */
   8
   9#ifndef _PXA_LCD_H_
  10#define _PXA_LCD_H_
  11
  12/*
  13 * PXA LCD DMA descriptor
  14 */
  15struct pxafb_dma_descriptor {
  16        u_long  fdadr;          /* Frame descriptor address register */
  17        u_long  fsadr;          /* Frame source address register */
  18        u_long  fidr;           /* Frame ID register */
  19        u_long  ldcmd;          /* Command register */
  20};
  21
  22/*
  23 * PXA LCD info
  24 */
  25struct pxafb_info {
  26        /* Misc registers */
  27        u_long  reg_lccr3;
  28        u_long  reg_lccr2;
  29        u_long  reg_lccr1;
  30        u_long  reg_lccr0;
  31        u_long  fdadr0;
  32        u_long  fdadr1;
  33
  34        /* DMA descriptors */
  35        struct  pxafb_dma_descriptor *dmadesc_fblow;
  36        struct  pxafb_dma_descriptor *dmadesc_fbhigh;
  37        struct  pxafb_dma_descriptor *dmadesc_palette;
  38
  39        u_long  screen;         /* physical address of frame buffer */
  40        u_long  palette;        /* physical address of palette memory */
  41        u_int   palette_size;
  42};
  43
  44/*
  45 * LCD controller stucture for PXA CPU
  46 */
  47typedef struct vidinfo {
  48        ushort  vl_col;         /* Number of columns (i.e. 640) */
  49        ushort  vl_row;         /* Number of rows (i.e. 480) */
  50        ushort  vl_rot;         /* Rotation of Display (0, 1, 2, 3) */
  51        ushort  vl_width;       /* Width of display area in millimeters */
  52        ushort  vl_height;      /* Height of display area in millimeters */
  53
  54        /* LCD configuration register */
  55        u_char  vl_clkp;        /* Clock polarity */
  56        u_char  vl_oep;         /* Output Enable polarity */
  57        u_char  vl_hsp;         /* Horizontal Sync polarity */
  58        u_char  vl_vsp;         /* Vertical Sync polarity */
  59        u_char  vl_dp;          /* Data polarity */
  60        u_char  vl_bpix;/* Bits per pixel, 0 = 1, 1 = 2, 2 = 4, 3 = 8, 4 = 16 */
  61        u_char  vl_lbw;         /* LCD Bus width, 0 = 4, 1 = 8 */
  62        u_char  vl_splt;/* Split display, 0 = single-scan, 1 = dual-scan */
  63        u_char  vl_clor;        /* Color, 0 = mono, 1 = color */
  64        u_char  vl_tft;         /* 0 = passive, 1 = TFT */
  65
  66        /* Horizontal control register. Timing from data sheet */
  67        ushort  vl_hpw;         /* Horz sync pulse width */
  68        u_char  vl_blw;         /* Wait before of line */
  69        u_char  vl_elw;         /* Wait end of line */
  70
  71        /* Vertical control register. */
  72        u_char  vl_vpw;         /* Vertical sync pulse width */
  73        u_char  vl_bfw;         /* Wait before of frame */
  74        u_char  vl_efw;         /* Wait end of frame */
  75
  76        /* PXA LCD controller params */
  77        struct  pxafb_info pxa;
  78} vidinfo_t;
  79
  80#endif
  81