1*ad8783cbSPaul Burton /*
2*ad8783cbSPaul Burton  * Copyright (C) 2016 Imagination Technologies
3*ad8783cbSPaul Burton  *
4*ad8783cbSPaul Burton  * SPDX-License-Identifier:	GPL-2.0
5*ad8783cbSPaul Burton  */
6*ad8783cbSPaul Burton 
7*ad8783cbSPaul Burton #ifndef __BOARD_BOSTON_LCD_H__
8*ad8783cbSPaul Burton #define __BOARD_BOSTON_LCD_H__
9*ad8783cbSPaul Burton 
10*ad8783cbSPaul Burton /**
11*ad8783cbSPaul Burton  * lowlevel_display() - Display a message on Boston's LCD
12*ad8783cbSPaul Burton  * @msg: The string to display
13*ad8783cbSPaul Burton  *
14*ad8783cbSPaul Burton  * Display the string @msg on the 7 character LCD display of the Boston board.
15*ad8783cbSPaul Burton  * This is typically used for debug or to present some form of status
16*ad8783cbSPaul Burton  * indication to the user, allowing faults to be identified when things go
17*ad8783cbSPaul Burton  * wrong early enough that the UART isn't up.
18*ad8783cbSPaul Burton  */
19*ad8783cbSPaul Burton void lowlevel_display(const char msg[static 8]);
20*ad8783cbSPaul Burton 
21*ad8783cbSPaul Burton #endif /* __BOARD_BOSTON_LCD_H__ */
22