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