1*83d290c5STom Rini /* SPDX-License-Identifier: GPL-2.0+ */
22a61eff6SStefan Roese /*
32a61eff6SStefan Roese  * (C) Copyright 2008-2009 Stefan Roese <sr@denx.de>, DENX Software Engineering
42a61eff6SStefan Roese  */
52a61eff6SStefan Roese 
62a61eff6SStefan Roese #define DCGU_BASE		0x00084000
72a61eff6SStefan Roese 
82a61eff6SStefan Roese /* Relative offsets of the register adresses */
92a61eff6SStefan Roese 
102a61eff6SStefan Roese #define DCGU_CLK_EN1_OFFS	0x00000010
112a61eff6SStefan Roese #define DCGU_CLK_EN1(base)	((base) + DCGU_CLK_EN1_OFFS)
122a61eff6SStefan Roese #define DCGU_CLK_EN2_OFFS	0x00000014
132a61eff6SStefan Roese #define DCGU_CLK_EN2(base)	((base) + DCGU_CLK_EN2_OFFS)
142a61eff6SStefan Roese #define DCGU_RESET_UNIT1_OFFS	0x00000018
152a61eff6SStefan Roese #define DCGU_RESET_UNIT1(base)	((base) + DCGU_RESET_UNIT1_OFFS)
162a61eff6SStefan Roese #define DCGU_USBPHY_STAT_OFFS	0x00000054
172a61eff6SStefan Roese #define DCGU_USBPHY_STAT(base)	((base) + DCGU_USBPHY_STAT_OFFS)
182a61eff6SStefan Roese #define DCGU_EN_WDT_RESET_OFFS	0x00000064
192a61eff6SStefan Roese #define DCGU_EN_WDT_RESET(base)	((base) + DCGU_EN_WDT_RESET_OFFS)
202a61eff6SStefan Roese 
212a61eff6SStefan Roese /* The magic value to write in order to activate the WDT */
222a61eff6SStefan Roese #define DCGU_MAGIC_WDT		0x1909
23