SPDX: Convert all of our single license tags to Linux Kernel style
[oweals/u-boot.git] / board / tqc / tqma6 / tqma6_bb.h
1 /* SPDX-License-Identifier: GPL-2.0+ */
2 /*
3  * Copyright (C) 2013, 2014 TQ Systems
4  * Author: Markus Niebel <markus.niebel@tq-group.com>
5  */
6
7 #ifndef __TQMA6_BB__
8 #define __TQMA6_BB__
9
10 #include <common.h>
11
12 int tqma6_bb_board_mmc_getwp(struct mmc *mmc);
13 int tqma6_bb_board_mmc_getcd(struct mmc *mmc);
14 int tqma6_bb_board_mmc_init(bd_t *bis);
15
16 int tqma6_bb_board_early_init_f(void);
17 int tqma6_bb_board_init(void);
18 int tqma6_bb_board_late_init(void);
19 int tqma6_bb_checkboard(void);
20
21 const char *tqma6_bb_get_boardname(void);
22 /*
23  * Device Tree Support
24  */
25 #if defined(CONFIG_OF_BOARD_SETUP) && defined(CONFIG_OF_LIBFDT)
26 void tqma6_bb_ft_board_setup(void *blob, bd_t *bd);
27 #endif /* defined(CONFIG_OF_BOARD_SETUP) && defined(CONFIG_OF_LIBFDT) */
28
29 #endif