mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-05 20:54:31 +00:00
3e066bcaef
This patch adds reset controller driver for MediaTek SoCs. Signed-off-by: Ryder Lee <ryder.lee@mediatek.com> Signed-off-by: Weijie Gao <weijie.gao@mediatek.com>
18 lines
399 B
C
18 lines
399 B
C
/* SPDX-License-Identifier: GPL-2.0 */
|
|
/*
|
|
* Copyright (C) 2018 MediaTek Inc.
|
|
*/
|
|
|
|
#ifndef _DT_BINDINGS_MTK_RESET_H_
|
|
#define _DT_BINDINGS_MTK_RESET_H_
|
|
|
|
/* ETHSYS */
|
|
#define ETHSYS_PPE_RST 31
|
|
#define ETHSYS_EPHY_RST 24
|
|
#define ETHSYS_GMAC_RST 23
|
|
#define ETHSYS_ESW_RST 16
|
|
#define ETHSYS_FE_RST 6
|
|
#define ETHSYS_MCM_RST 2
|
|
#define ETHSYS_SYS_RST 0
|
|
|
|
#endif /* _DT_BINDINGS_MTK_RESET_H_ */
|