summaryrefslogtreecommitdiff
path: root/arch/xtensa/platforms/xtfpga/include/platform/lcd.h
diff options
context:
space:
mode:
authorMax Filippov <jcmvbkbc@gmail.com>2012-11-05 07:37:14 +0400
committerChris Zankel <chris@zankel.net>2012-12-18 21:10:24 -0800
commit0d456bad36d42d16022be045c8a53ddbb59ee478 (patch)
tree3c135bfcf37d6ccf45fd9ac4f739df95e181d416 /arch/xtensa/platforms/xtfpga/include/platform/lcd.h
parentda844a81779e2bb263eca4ecb1046541fdb11cf8 (diff)
xtensa: add support for the XTFPGA boards
The Avnet LX60/LX110/LX200 board is an FPGA board that can be configured with an Xtensa processor and an OpenCores Ethernet device. Signed-off-by: Chris Zankel <chris@zankel.net> Signed-off-by: Max Filippov <jcmvbkbc@gmail.com> Signed-off-by: Chris Zankel <chris@zankel.net>
Diffstat (limited to 'arch/xtensa/platforms/xtfpga/include/platform/lcd.h')
-rw-r--r--arch/xtensa/platforms/xtfpga/include/platform/lcd.h20
1 files changed, 20 insertions, 0 deletions
diff --git a/arch/xtensa/platforms/xtfpga/include/platform/lcd.h b/arch/xtensa/platforms/xtfpga/include/platform/lcd.h
new file mode 100644
index 00000000000..0e435645af5
--- /dev/null
+++ b/arch/xtensa/platforms/xtfpga/include/platform/lcd.h
@@ -0,0 +1,20 @@
+/*
+ * arch/xtensa/platform/xtavnet/include/platform/lcd.h
+ *
+ * This file is subject to the terms and conditions of the GNU General Public
+ * License. See the file "COPYING" in the main directory of this archive
+ * for more details.
+ *
+ * Copyright (C) 2001, 2006 Tensilica Inc.
+ */
+
+#ifndef __XTENSA_XTAVNET_LCD_H
+#define __XTENSA_XTAVNET_LCD_H
+
+/* Display string STR at position POS on the LCD. */
+void lcd_disp_at_pos(char *str, unsigned char pos);
+
+/* Shift the contents of the LCD display left or right. */
+void lcd_shiftleft(void);
+void lcd_shiftright(void);
+#endif