2019-05-19 21:51:31 +08:00
|
|
|
/* SPDX-License-Identifier: GPL-2.0-or-later */
|
2008-07-05 16:02:53 +08:00
|
|
|
/*
|
|
|
|
* Copyright 2007 Freescale Semiconductor, Inc. All Rights Reserved.
|
2009-11-19 19:02:06 +08:00
|
|
|
* Copyright (C) 2009 Daniel Mack <daniel@caiaq.de>
|
|
|
|
*
|
|
|
|
* Based on code for mobots boards,
|
|
|
|
* Copyright (C) 2009 Valentin Longchamp, EPFL Mobots group
|
2008-07-05 16:02:53 +08:00
|
|
|
*/
|
|
|
|
|
2009-11-19 19:02:06 +08:00
|
|
|
#ifndef __ASM_ARCH_MXC_BOARD_MX31LITE_H__
|
|
|
|
#define __ASM_ARCH_MXC_BOARD_MX31LITE_H__
|
|
|
|
|
|
|
|
#ifndef __ASSEMBLY__
|
|
|
|
|
2010-01-21 17:12:52 +08:00
|
|
|
enum mx31lite_boards {
|
2009-11-19 19:02:06 +08:00
|
|
|
MX31LITE_NOBOARD = 0,
|
|
|
|
MX31LITE_DB = 1,
|
|
|
|
};
|
|
|
|
|
2008-07-05 16:02:53 +08:00
|
|
|
/*
|
2009-11-19 19:02:06 +08:00
|
|
|
* This CPU module needs a baseboard to work. After basic initializing
|
2010-03-09 00:29:31 +08:00
|
|
|
* its own devices, it calls the baseboard's init function.
|
2008-07-05 16:02:53 +08:00
|
|
|
*/
|
|
|
|
|
2009-11-19 19:02:06 +08:00
|
|
|
extern void mx31lite_db_init(void);
|
2008-07-05 16:02:53 +08:00
|
|
|
|
2009-11-19 19:02:06 +08:00
|
|
|
#endif
|
2008-07-05 16:02:53 +08:00
|
|
|
|
2009-11-19 19:02:06 +08:00
|
|
|
#endif /* __ASM_ARCH_MXC_BOARD_MX31LITE_H__ */
|