blob: 40cff6ab178ac827102c7dcd1edb58d66c5ee486 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
|
// SPDX-License-Identifier: GPL-2.0-or-later
/*
* Copyright (c) 2022-2026 TQ-Systems GmbH <[email protected]>,
* D-82229 Seefeld, Germany.
* Author: Markus Niebel
*/
#include <linux/types.h>
#include "tq_bb.h"
int __weak tq_bb_board_mmc_getwp(struct mmc *mmc)
{
return 0;
}
int __weak tq_bb_board_mmc_getcd(struct mmc *mmc)
{
return 0;
}
int __weak tq_bb_board_mmc_init(struct bd_info *bis)
{
return 0;
}
int __weak tq_bb_board_early_init_f(void)
{
return 0;
}
int __weak tq_bb_board_init(void)
{
return 0;
}
int __weak tq_bb_board_late_init(void)
{
return 0;
}
int __weak tq_bb_checkboard(void)
{
return 0;
}
void __weak tq_bb_board_quiesce_devices(void)
{
;
}
const char * __weak tq_bb_get_boardname(void)
{
return "INVALID";
}
#if IS_ENABLED(CONFIG_SPL_BUILD)
void __weak tq_bb_board_init_f(ulong dummy)
{
;
}
void __weak tq_bb_spl_board_init(void)
{
;
}
#endif /* IS_ENABLED(CONFIG_SPL_BUILD) */
/*
* Device Tree Support
*/
#if IS_ENABLED(CONFIG_OF_BOARD_SETUP) && IS_ENABLED(CONFIG_OF_LIBFDT)
int __weak tq_bb_ft_board_setup(void *blob, struct bd_info *bis)
{
return 0;
}
#endif /* IS_ENABLED(CONFIG_OF_BOARD_SETUP) && IS_ENABLED(CONFIG_OF_LIBFDT) */
|