]> git.ipfire.org Git - thirdparty/u-boot.git/blob - arch/arm/mach-nexell/include/mach/reset.h
e1301d4e53d334c2c0d8ef2f2a5636b080d822ca
[thirdparty/u-boot.git] / arch / arm / mach-nexell / include / mach / reset.h
1 /* SPDX-License-Identifier: GPL-2.0+
2 *
3 * (C) Copyright 2016 Nexell
4 * Youngbok, Park <ybpark@nexell.co.kr>
5 */
6
7 #ifndef __NEXELL_RESET__
8 #define __NEXELL_RESET__
9
10 #define NUMBER_OF_RESET_MODULE_PIN 69
11
12 enum rstcon {
13 RSTCON_ASSERT = 0UL,
14 RSTCON_NEGATE = 1UL
15 };
16
17 void nx_rstcon_setrst(u32 rstindex, enum rstcon status);
18
19 #endif /* __NEXELL_RESET__ */