blob: e1301d4e53d334c2c0d8ef2f2a5636b080d822ca [file] [log] [blame]
Stefan Bosch48397f12020-07-10 19:07:25 +02001/* 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
12enum rstcon {
13 RSTCON_ASSERT = 0UL,
14 RSTCON_NEGATE = 1UL
15};
16
17void nx_rstcon_setrst(u32 rstindex, enum rstcon status);
18
19#endif /* __NEXELL_RESET__ */