1 /* SPDX-License-Identifier: GPL-2.0+ */ 2 /* 3 * (C) Copyright 2020 Jernej Skrabec <jernej.skrabec@siol.net> 4 * 5 * Sunxi platform prcm register definition. 6 */ 7 8 #ifndef _SUNXI_PRCM_H 9 #define _SUNXI_PRCM_H 10 11 /* prcm regs definition */ 12 #if defined(CONFIG_SUN50I_GEN_H6) 13 #include <asm/arch/prcm_sun50i.h> 14 #else 15 #include <asm/arch/prcm_sun6i.h> 16 #endif 17 18 #endif /* _SUNXI_PRCM_H */ 19