1*c66ec88fSEmmanuel Vadot /* SPDX-License-Identifier: GPL-2.0 */ 2*c66ec88fSEmmanuel Vadot /* 3*c66ec88fSEmmanuel Vadot * This header provides Tegra210-specific constants for binding 4*c66ec88fSEmmanuel Vadot * nvidia,tegra210-car. 5*c66ec88fSEmmanuel Vadot */ 6*c66ec88fSEmmanuel Vadot 7*c66ec88fSEmmanuel Vadot #ifndef _DT_BINDINGS_RESET_TEGRA210_CAR_H 8*c66ec88fSEmmanuel Vadot #define _DT_BINDINGS_RESET_TEGRA210_CAR_H 9*c66ec88fSEmmanuel Vadot 10*c66ec88fSEmmanuel Vadot #define TEGRA210_RESET(x) (7 * 32 + (x)) 11*c66ec88fSEmmanuel Vadot #define TEGRA210_RST_DFLL_DVCO TEGRA210_RESET(0) 12*c66ec88fSEmmanuel Vadot #define TEGRA210_RST_ADSP TEGRA210_RESET(1) 13*c66ec88fSEmmanuel Vadot 14*c66ec88fSEmmanuel Vadot #endif /* _DT_BINDINGS_RESET_TEGRA210_CAR_H */ 15