embeddedsw/XilinxProcessorIPLib/drivers/tft/examples/xtft_example.c
git perforce import user a539aa2c1a Initial import of //Rodin/HEAD/data/embeddedsw/ from the state at revision #head
[git-p4: depot-paths = "//Rodin/HEAD/data/embeddedsw/": change = 884492]
2014-04-09 17:06:57 +05:30

454 lines
13 KiB
C
Executable file

/******************************************************************************
*
* (c) Copyright 2008-2013 Xilinx, Inc. All rights reserved.
*
* This file contains confidential and proprietary information of Xilinx, Inc.
* and is protected under U.S. and international copyright and other
* intellectual property laws.
*
* DISCLAIMER
* This disclaimer is not a license and does not grant any rights to the
* materials distributed herewith. Except as otherwise provided in a valid
* license issued to you by Xilinx, and to the maximum extent permitted by
* applicable law: (1) THESE MATERIALS ARE MADE AVAILABLE "AS IS" AND WITH ALL
* FAULTS, AND XILINX HEREBY DISCLAIMS ALL WARRANTIES AND CONDITIONS, EXPRESS,
* IMPLIED, OR STATUTORY, INCLUDING BUT NOT LIMITED TO WARRANTIES OF
* MERCHANTABILITY, NON-INFRINGEMENT, OR FITNESS FOR ANY PARTICULAR PURPOSE;
* and (2) Xilinx shall not be liable (whether in contract or tort, including
* negligence, or under any other theory of liability) for any loss or damage
* of any kind or nature related to, arising under or in connection with these
* materials, including for any direct, or any indirect, special, incidental,
* or consequential loss or damage (including loss of data, profits, goodwill,
* or any type of loss or damage suffered as a result of any action brought by
* a third party) even if such damage or loss was reasonably foreseeable or
* Xilinx had been advised of the possibility of the same.
*
* CRITICAL APPLICATIONS
* Xilinx products are not designed or intended to be fail-safe, or for use in
* any application requiring fail-safe performance, such as life-support or
* safety devices or systems, Class III medical devices, nuclear facilities,
* applications related to the deployment of airbags, or any other applications
* that could lead to death, personal injury, or severe property or
* environmental damage (individually and collectively, "Critical
* Applications"). Customer assumes the sole risk and liability of any use of
* Xilinx products in Critical Applications, subject only to applicable laws
* and regulations governing limitations on product liability.
*
* THIS COPYRIGHT NOTICE AND DISCLAIMER MUST BE RETAINED AS PART OF THIS FILE
* AT ALL TIMES.
*
******************************************************************************/
/****************************************************************************/
/**
*
* @file xtft_example.c
*
* This file contains a design example using the driver functions of the XTft
* driver. This example shows the usage of the driver/device to
* - Write a character and write a string of characters
* - Draw a line
* - Turn ON/OFF the TFT Device
*
*
* @note
*
* TFT_FRAME_ADDR specifies the starting address of the 2MB space for storing the
* frame data and has to be defined by the user based on the system memory map.
*
*
* <pre>
* MODIFICATION HISTORY:
*
* Ver Who Date Changes
* ----- ---- -------- -----------------------------------------------
* 1.00a sg 03/24/08 First release
* 1.00a sg 09/24/08 Updated the example to update the Video Memory Base
* Address with the Memory specified by the application
* 2.00a ktn 07/09/09 Updated the example to poll the Vsync(Video address
* latch) status bit before writing to the Address
* Register (AR)
* 4.00a bss 01/22/13 Updated the example to use DDR_HIGH_ADDR to support
* for some AXI memory controllers, User needs to define
* it with a valid address.
*
* </pre>
*
*****************************************************************************/
/***************************** Include Files ********************************/
#include "xtft.h"
#include "xparameters.h"
/************************** Constant Definitions ****************************/
/**
* The following constants map to the XPAR parameters created in the
* xparameters.h file. They are defined here such that a user can easily
* change all the needed parameters in one place.
*/
#define TFT_DEVICE_ID XPAR_TFT_0_DEVICE_ID
#ifdef XPAR_V6DDR_0_S_AXI_HIGHADDR
#define DDR_HIGH_ADDR XPAR_V6DDR_0_S_AXI_HIGHADDR
#elif XPAR_S6DDR_0_S0_AXI_HIGHADDR
#define DDR_HIGH_ADDR XPAR_S6DDR_0_S0_AXI_HIGHADDR
#elif XPAR_AXI_7SDDR_0_S_AXI_HIGHADDR
#define DDR_HIGH_ADDR XPAR_AXI_7SDDR_0_S_AXI_HIGHADDR
#elif XPAR_MPMC_0_MPMC_HIGHADDR
#define DDR_HIGH_ADDR XPAR_MPMC_0_MPMC_HIGHADDR
#endif
#ifndef DDR_HIGH_ADDR
#warning "CHECK FOR THE VALID DDR ADDRESS IN XPARAMETERS.H"
#endif
/**
* User has to specify a 2MB memory space for filling the frame data.
* This constant has to be updated based on the memory map of the
* system.
*/
#define TFT_FRAME_ADDR DDR_HIGH_ADDR - 0x001FFFFF
/**************************** Type Definitions ******************************/
/***************** Macros (Inline Functions) Definitions ********************/
/**
* Color Values.
*/
#define FGCOLOR_VALUE 0x0000FF00 /**< Foreground Color - Green */
#define BGCOLOR_VALUE 0x0 /**< Background Color - Black */
#define WHITECOLOR_VALUE 0x00FFFFFF /**< Color - White */
/**
* Start and End point Coordinates for the line.
*/
#define X1POS 100 /**< Column Start Position */
#define X2POS 100 /**< Column End Position */
#define Y1POS 50 /**< Row Start Position */
#define Y2POS 450 /**< Row End Position */
/************************** Function Prototypes *****************************/
static int TftWriteString(XTft *InstancePtr, const u8 *CharValue);
static int TftDrawLine(XTft *InstancePtr, u32 ColStartPos, u32 RowStartPos,
u32 ColEndPos, u32 RowEndPos, u32 PixelVal);
int TftExample(u32 TftDeviceId);
/************************** Variable Definitions ****************************/
static XTft TftInstance;
/************************** Function Definitions ****************************/
/*****************************************************************************/
/**
*
* Main function that invokes the Tft example.
*
* @param None.
*
* @return
* - XST_SUCCESS if successful.
* - XST_FAILURE if unsuccessful.
*
* @note None.
*
******************************************************************************/
int main()
{
int Status;
Status = TftExample(TFT_DEVICE_ID);
if ( Status != XST_SUCCESS) {
return XST_FAILURE;
}
return XST_SUCCESS;
}
/*****************************************************************************/
/**
*
* This is the example function which performs the following operations on
* the TFT device -
* - Set the color values of foreground and background
* - Write two characters (S) one after another
* - Write a string of characters
* - Draw a line and scroll the screen once
* - Disable the display (The screen goes blank)
* - Scroll the screen once and draw a line
* - Enable the TFT display
*
* @param TftDeviceId is the unique Id of the device.
*
* @return
* - XST_SUCCESS if successful.
* - XST_FAILURE if unsuccessful.
*
* @note None.
*
******************************************************************************/
int TftExample(u32 TftDeviceId)
{
int Status;
u8 VarChar;
XTft_Config *TftConfigPtr;
/*
* Get address of the XTft_Config structure for the given device id.
*/
TftConfigPtr = XTft_LookupConfig(TftDeviceId);
if (TftConfigPtr == (XTft_Config *)NULL) {
return XST_FAILURE;
}
/*
* Initialize all the TftInstance members and fills the screen with
* default background color.
*/
Status = XTft_CfgInitialize(&TftInstance, TftConfigPtr,
TftConfigPtr->BaseAddress);
if (Status != XST_SUCCESS) {
return XST_FAILURE;
}
/*
* Wait till Vsync(Video address latch) status bit is set before writing
* the frame address into the Address Register. This ensures that the
* current frame has been displayed and we can display a new frame of
* data. Checking the Vsync state ensures that there is no data flicker
* when displaying frames in real time though there is some delay due to
* polling.
*/
while (XTft_GetVsyncStatus(&TftInstance) !=
XTFT_IESR_VADDRLATCH_STATUS_MASK);
/*
* Change the Video Memory Base Address from default value to
* a valid Memory Address and clear the screen.
*/
XTft_SetFrameBaseAddr(&TftInstance, TFT_FRAME_ADDR);
XTft_ClearScreen(&TftInstance);
/*
* Initialize the variable VarChar to the value to be displayed on the
* screen.
* Set the foreground and background colors.
*/
VarChar = 'S';
XTft_SetColor(&TftInstance, FGCOLOR_VALUE, BGCOLOR_VALUE);
/*
* Write the character two times starting from top left corner
* (i.e. origin) of screen.
*/
XTft_Write(&TftInstance, VarChar);
XTft_Write(&TftInstance, VarChar);
/*
* Write a string which is displayed next to the two characters
* written previously.
*/
Status = TftWriteString(&TftInstance, (u8*)"TFT CONTROLLER\n");
if (Status != XST_SUCCESS) {
return XST_FAILURE;
}
/*
* Draw a line between the coordinates (X1,Y1) and (X2,Y2) which
* displays a vertical line in white color.
* Scroll the screen, so the two characters and string will be
* erased on screen.
*/
Status = TftDrawLine(&TftInstance, X1POS, Y1POS, X2POS, Y2POS,
WHITECOLOR_VALUE);
if (Status != XST_SUCCESS) {
return XST_FAILURE;
}
XTft_Scroll(&TftInstance);
/*
* Disable the display, the screen will be turned off.
*/
XTft_DisableDisplay(&TftInstance);
/*
* Even though the screen is turned off, we can still do operations on
* video memory.
* Scroll the screen.
* Draw a line between the coordinates (X1 + 10,Y1) and (X2,Y2) which
* is displayed at different position as X1 has some offset.
*/
XTft_Scroll(&TftInstance);
Status = TftDrawLine(&TftInstance, X1POS + 10, Y1POS, X2POS + 10,
Y2POS, WHITECOLOR_VALUE);
if (Status != XST_SUCCESS) {
return XST_FAILURE;
}
/*
* Enable the display. Screen will display two lines in white color.
* The first line from the left of screen is slightly above the
* second one indicating the scroll was successful.
*/
XTft_EnableDisplay(&TftInstance);
return XST_SUCCESS;
}
/*****************************************************************************/
/**
* Write a string of characters to the TFT.
*
* @param InstancePtr is a pointer to the XTft instance.
* @param CharValue is a pointer to the character array to be written
* to the TFT screen.
*
* @return
* - XST_SUCCESS if successful.
* - XST_FAILURE if unsuccessful.
*
* @note None.
*
******************************************************************************/
static int TftWriteString(XTft *InstancePtr, const u8 *CharValue)
{
/*
* Writes a character from the string to the screen
* until it reaches null or end of the string.
*/
while (*CharValue != 0) {
XTft_Write(InstancePtr, *CharValue);
CharValue++;
}
return XST_SUCCESS;
}
/*****************************************************************************/
/**
* Draws a line between two points with a specified color.
*
* @param InstancePtr is a pointer to the XTft instance.
* @param ColStartPos is the Start point of Column.
* The valid value is 0 to (XTFT_DISPLAY_WIDTH - 1).
* @param RowStartPos is the Start point of Row.
* The valid value is 0 to (XTFT_DISPLAY_HEIGHT - 1).
* @param ColEndPos is the End point of Column.
* The valid value is 0 to (XTFT_DISPLAY_WIDTH - 1).
* @param RowEndPos is the End point of Row.
* The valid value is 0 to (XTFT_DISPLAY_HEIGHT - 1).
* @param PixelVal is the Color Value to be put at pixel.
*
* @return
* - XST_SUCCESS if successful.
* - XST_FAILURE if unsuccessful.
*
* @note None.
*
******************************************************************************/
static int TftDrawLine(XTft *InstancePtr, u32 ColStartPos, u32 RowStartPos,
u32 ColEndPos, u32 RowEndPos, u32 PixelVal)
{
u32 Slope;
u32 YIntercept;
u32 Xmin;
u32 Ymin;
u32 Xmax;
u32 Ymax;
u32 Index1;
u32 Index2;
u32 Mx;
/*
* Check whether the given position of X,Y dimensions
* are below the limits of the screen.
*/
if (ColStartPos >= 0 && ColStartPos <= (XTFT_DISPLAY_WIDTH - 1) &&
ColEndPos >= 0 && ColEndPos <= (XTFT_DISPLAY_WIDTH - 1) &&
RowStartPos >= 0 && RowStartPos <= (XTFT_DISPLAY_HEIGHT - 1) &&
RowEndPos >= 0 && RowEndPos <= (XTFT_DISPLAY_HEIGHT - 1)) {
/*
* Check the exception case where slope can be infinite
* that is vertical line.
*/
if (ColEndPos-ColStartPos != 0) {
/*
* Calculate slope.
*/
Slope = ((RowEndPos - RowStartPos) /
(ColEndPos - ColStartPos) * 100000);
/*
* Calculate y intercept.
*/
YIntercept = RowStartPos -
((Slope / 100000) * ColStartPos);
} else {
/*
* Divide by zero.
*/
Slope = 0;
YIntercept = (-1);
}
/*
* Update the min and max position by conditional checking.
*/
if (ColEndPos < ColStartPos) {
Xmin = ColEndPos;
Xmax = ColStartPos;
} else {
Xmin = ColStartPos;
Xmax = ColEndPos;
}
if (RowEndPos < RowStartPos) {
Ymin = RowEndPos;
Ymax = RowStartPos;
} else {
Ymin = RowStartPos;
Ymax = RowEndPos;
}
/*
* Increment X and Y position values and calculate
* slope at the corresponding x position. Check the condition
* for general line equation and set the pixel. Otherwise check
* for the case of vertical line.
*/
for (Index1 = Xmin; Index1 <= Xmax; Index1++) {
Mx = (Slope * Index1) / 100000;
for (Index2 = Ymin; Index2 <= Ymax; Index2++) {
if ((Index2 - Mx) == YIntercept) {
/*
* Calculate visible line.
*/
XTft_SetPixel(InstancePtr, Index1,
Index2, PixelVal);
}
else {
/*
* Divide by zero.
*/
if((Slope == 0) &&
(YIntercept == -1)) {
/*
* Vertical line.
*/
XTft_SetPixel(InstancePtr,
Index1, Index2,
PixelVal);
}
}
}
}
return XST_SUCCESS;
} else {
return XST_FAILURE;
}
}