common.h (e2c219cd7103761826f4ca99c905f547ade34c97) common.h (fc22ee215a1385ddaefd01e01975b6a67d9d8072)
1/*
2 * (C) Copyright 2000-2009
3 * Wolfgang Denk, DENX Software Engineering, wd@denx.de.
4 *
5 * SPDX-License-Identifier: GPL-2.0+
6 */
7
8#ifndef __COMMON_H_

--- 52 unchanged lines hidden (view full) ---

61#else
62#define TOTAL_MALLOC_LEN CONFIG_SYS_MALLOC_LEN
63#endif
64
65/* startup functions, used in:
66 * common/board_f.c
67 * common/init/board_init.c
68 * common/board_r.c
1/*
2 * (C) Copyright 2000-2009
3 * Wolfgang Denk, DENX Software Engineering, wd@denx.de.
4 *
5 * SPDX-License-Identifier: GPL-2.0+
6 */
7
8#ifndef __COMMON_H_

--- 52 unchanged lines hidden (view full) ---

61#else
62#define TOTAL_MALLOC_LEN CONFIG_SYS_MALLOC_LEN
63#endif
64
65/* startup functions, used in:
66 * common/board_f.c
67 * common/init/board_init.c
68 * common/board_r.c
69 * common/board_info.c
69 */
70#include <init.h>
71
72/*
73 * Function Prototypes
74 */
75void hang (void) __attribute__ ((noreturn));
76

--- 14 unchanged lines hidden (view full) ---

91 *
92 * @param cmd List of commands to run, each separated bu semicolon
93 * @param len Length of commands excluding terminator if known (-1 if not)
94 * @param flag Execution flags (CMD_FLAG_...)
95 * @return 0 on success, or != 0 on error.
96 */
97int run_command_list(const char *cmd, int len, int flag);
98
70 */
71#include <init.h>
72
73/*
74 * Function Prototypes
75 */
76void hang (void) __attribute__ ((noreturn));
77

--- 14 unchanged lines hidden (view full) ---

92 *
93 * @param cmd List of commands to run, each separated bu semicolon
94 * @param len Length of commands excluding terminator if known (-1 if not)
95 * @param flag Execution flags (CMD_FLAG_...)
96 * @return 0 on success, or != 0 on error.
97 */
98int run_command_list(const char *cmd, int len, int flag);
99
99int checkboard(void);
100int show_board_info(void);
101int checkflash(void);
102int checkdram(void);
103extern u8 __dtb_dt_begin[]; /* embedded device tree blob */
104extern u8 __dtb_dt_spl_begin[]; /* embedded device tree blob for SPL/TPL */
105int mdm_init(void);
106
107/**
108 * Show the DRAM size in a board-specific way

--- 496 unchanged lines hidden ---
100int checkflash(void);
101int checkdram(void);
102extern u8 __dtb_dt_begin[]; /* embedded device tree blob */
103extern u8 __dtb_dt_spl_begin[]; /* embedded device tree blob for SPL/TPL */
104int mdm_init(void);
105
106/**
107 * Show the DRAM size in a board-specific way

--- 496 unchanged lines hidden ---