mirror of
git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2025-08-05 16:54:27 +00:00

Add a YAML schema for the T-HEAD TH1520 SoC reset controller. This controller manages resets for subsystems such as the GPU within the TH1520 SoC. Reviewed-by: Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org> Signed-off-by: Michal Wilczynski <m.wilczynski@samsung.com> Link: https://lore.kernel.org/r/20250303152511.494405-2-m.wilczynski@samsung.com Signed-off-by: Philipp Zabel <p.zabel@pengutronix.de>
16 lines
456 B
C
16 lines
456 B
C
/* SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause) */
|
|
/*
|
|
* Copyright (c) 2024 Samsung Electronics Co., Ltd.
|
|
* Author: Michal Wilczynski <m.wilczynski@samsung.com>
|
|
*/
|
|
|
|
#ifndef _DT_BINDINGS_TH1520_RESET_H
|
|
#define _DT_BINDINGS_TH1520_RESET_H
|
|
|
|
#define TH1520_RESET_ID_GPU 0
|
|
#define TH1520_RESET_ID_GPU_CLKGEN 1
|
|
#define TH1520_RESET_ID_NPU 2
|
|
#define TH1520_RESET_ID_WDT0 3
|
|
#define TH1520_RESET_ID_WDT1 4
|
|
|
|
#endif /* _DT_BINDINGS_TH1520_RESET_H */
|