• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 /* SPDX-License-Identifier: GPL-2.0-or-later */
2 /*
3  * Copyright 2007 Freescale Semiconductor, Inc. All Rights Reserved.
4  * Copyright (C) 2009 Daniel Mack <daniel@caiaq.de>
5  *
6  * Based on code for mobots boards,
7  *   Copyright (C) 2009 Valentin Longchamp, EPFL Mobots group
8  */
9 
10 #ifndef __ASM_ARCH_MXC_BOARD_MX31LITE_H__
11 #define __ASM_ARCH_MXC_BOARD_MX31LITE_H__
12 
13 #ifndef __ASSEMBLY__
14 
15 enum mx31lite_boards {
16 	MX31LITE_NOBOARD	= 0,
17 	MX31LITE_DB		= 1,
18 };
19 
20 /*
21  * This CPU module needs a baseboard to work. After basic initializing
22  * its own devices, it calls the baseboard's init function.
23  */
24 
25 extern void mx31lite_db_init(void);
26 
27 #endif
28 
29 #endif /* __ASM_ARCH_MXC_BOARD_MX31LITE_H__ */
30