]> git.ipfire.org Git - people/ms/u-boot.git/blame - arch/arm/include/asm/imx-common/boot_mode.h
Add GPL-2.0+ SPDX-License-Identifier to source files
[people/ms/u-boot.git] / arch / arm / include / asm / imx-common / boot_mode.h
CommitLineData
124a06d7
TK
1/*
2 * Copyright (C) 2012 Boundary Devices Inc.
3 *
1a459660 4 * SPDX-License-Identifier: GPL-2.0+
124a06d7
TK
5 */
6
7#ifndef _ASM_BOOT_MODE_H
8#define _ASM_BOOT_MODE_H
9#define MAKE_CFGVAL(cfg1, cfg2, cfg3, cfg4) \
10 ((cfg4) << 24) | ((cfg3) << 16) | ((cfg2) << 8) | (cfg1)
11
12struct boot_mode {
13 const char *name;
14 unsigned cfg_val;
15};
16
17void add_board_boot_modes(const struct boot_mode *p);
18void boot_mode_apply(unsigned cfg_val);
19extern const struct boot_mode soc_boot_modes[];
20#endif