]> git.proxmox.com Git - mirror_edk2.git/blame - ArmPlatformPkg/Library/HdLcd/HdLcd.h
MdeModulePkg/Sd: Fix typo when adding model name string
[mirror_edk2.git] / ArmPlatformPkg / Library / HdLcd / HdLcd.h
CommitLineData
b1b69d26 1/** @file\r
3e7105bb 2\r
b1b69d26 3 Copyright (c) 2011-2018, ARM Ltd. All rights reserved.<BR>\r
3e7105bb
AB
4\r
5 This program and the accompanying materials\r
6 are licensed and made available under the terms and conditions of the BSD License\r
7 which accompanies this distribution. The full text of the license may be found at\r
8 http://opensource.org/licenses/bsd-license.php\r
9\r
10 THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,\r
11 WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.\r
12\r
13 **/\r
14\r
b1b69d26
GP
15#ifndef HDLCD_H_\r
16#define HDLCD_H_\r
3e7105bb 17\r
3e7105bb 18// HDLCD Controller Register Offsets\r
3e7105bb
AB
19#define HDLCD_REG_VERSION ((UINTN)PcdGet32 (PcdArmHdLcdBase) + 0x000)\r
20#define HDLCD_REG_INT_RAWSTAT ((UINTN)PcdGet32 (PcdArmHdLcdBase) + 0x010)\r
21#define HDLCD_REG_INT_CLEAR ((UINTN)PcdGet32 (PcdArmHdLcdBase) + 0x014)\r
22#define HDLCD_REG_INT_MASK ((UINTN)PcdGet32 (PcdArmHdLcdBase) + 0x018)\r
23#define HDLCD_REG_INT_STATUS ((UINTN)PcdGet32 (PcdArmHdLcdBase) + 0x01C)\r
24#define HDLCD_REG_FB_BASE ((UINTN)PcdGet32 (PcdArmHdLcdBase) + 0x100)\r
25#define HDLCD_REG_FB_LINE_LENGTH ((UINTN)PcdGet32 (PcdArmHdLcdBase) + 0x104)\r
26#define HDLCD_REG_FB_LINE_COUNT ((UINTN)PcdGet32 (PcdArmHdLcdBase) + 0x108)\r
27#define HDLCD_REG_FB_LINE_PITCH ((UINTN)PcdGet32 (PcdArmHdLcdBase) + 0x10C)\r
28#define HDLCD_REG_BUS_OPTIONS ((UINTN)PcdGet32 (PcdArmHdLcdBase) + 0x110)\r
29#define HDLCD_REG_V_SYNC ((UINTN)PcdGet32 (PcdArmHdLcdBase) + 0x200)\r
30#define HDLCD_REG_V_BACK_PORCH ((UINTN)PcdGet32 (PcdArmHdLcdBase) + 0x204)\r
31#define HDLCD_REG_V_DATA ((UINTN)PcdGet32 (PcdArmHdLcdBase) + 0x208)\r
32#define HDLCD_REG_V_FRONT_PORCH ((UINTN)PcdGet32 (PcdArmHdLcdBase) + 0x20C)\r
33#define HDLCD_REG_H_SYNC ((UINTN)PcdGet32 (PcdArmHdLcdBase) + 0x210)\r
34#define HDLCD_REG_H_BACK_PORCH ((UINTN)PcdGet32 (PcdArmHdLcdBase) + 0x214)\r
35#define HDLCD_REG_H_DATA ((UINTN)PcdGet32 (PcdArmHdLcdBase) + 0x218)\r
36#define HDLCD_REG_H_FRONT_PORCH ((UINTN)PcdGet32 (PcdArmHdLcdBase) + 0x21C)\r
37#define HDLCD_REG_POLARITIES ((UINTN)PcdGet32 (PcdArmHdLcdBase) + 0x220)\r
38#define HDLCD_REG_COMMAND ((UINTN)PcdGet32 (PcdArmHdLcdBase) + 0x230)\r
39#define HDLCD_REG_PIXEL_FORMAT ((UINTN)PcdGet32 (PcdArmHdLcdBase) + 0x240)\r
40#define HDLCD_REG_RED_SELECT ((UINTN)PcdGet32 (PcdArmHdLcdBase) + 0x244)\r
41#define HDLCD_REG_GREEN_SELECT ((UINTN)PcdGet32 (PcdArmHdLcdBase) + 0x248)\r
42#define HDLCD_REG_BLUE_SELECT ((UINTN)PcdGet32 (PcdArmHdLcdBase) + 0x24C)\r
43\r
3e7105bb 44// HDLCD Values of registers\r
3e7105bb
AB
45\r
46// HDLCD Interrupt mask, clear and status register\r
47#define HDLCD_DMA_END BIT0 /* DMA has finished reading a frame */\r
48#define HDLCD_BUS_ERROR BIT1 /* DMA bus error */\r
49#define HDLCD_SYNC BIT2 /* Vertical sync */\r
50#define HDLCD_UNDERRUN BIT3 /* No Data available while DATAEN active */\r
51\r
52// CLCD_CONTROL Control register\r
53#define HDLCD_DISABLE 0\r
54#define HDLCD_ENABLE BIT0\r
55\r
56// Bus Options\r
57#define HDLCD_BURST_1 BIT0\r
58#define HDLCD_BURST_2 BIT1\r
59#define HDLCD_BURST_4 BIT2\r
60#define HDLCD_BURST_8 BIT3\r
61#define HDLCD_BURST_16 BIT4\r
62\r
63// Polarities - HIGH\r
64#define HDLCD_VSYNC_HIGH BIT0\r
65#define HDLCD_HSYNC_HIGH BIT1\r
66#define HDLCD_DATEN_HIGH BIT2\r
67#define HDLCD_DATA_HIGH BIT3\r
68#define HDLCD_PXCLK_HIGH BIT4\r
69// Polarities - LOW (for completion and for ease of understanding the hardware settings)\r
70#define HDLCD_VSYNC_LOW 0\r
71#define HDLCD_HSYNC_LOW 0\r
72#define HDLCD_DATEN_LOW 0\r
73#define HDLCD_DATA_LOW 0\r
74#define HDLCD_PXCLK_LOW 0\r
75\r
b1b69d26
GP
76// Default polarities\r
77#define HDLCD_DEFAULT_POLARITIES (HDLCD_PXCLK_LOW | HDLCD_DATA_HIGH | \\r
78 HDLCD_DATEN_HIGH | HDLCD_HSYNC_LOW | \\r
79 HDLCD_VSYNC_HIGH)\r
80\r
3e7105bb
AB
81// Pixel Format\r
82#define HDLCD_LITTLE_ENDIAN (0 << 31)\r
83#define HDLCD_BIG_ENDIAN (1 << 31)\r
84\r
85// Number of bytes per pixel\r
86#define HDLCD_4BYTES_PER_PIXEL ((4 - 1) << 3)\r
87\r
c18ef81e
GP
88#define HDLCD_PRODUCT_ID 0x1CDC\r
89\r
b1b69d26 90#endif /* HDLCD_H_ */\r