2018-05-06 21:58:06 +00:00
|
|
|
/* SPDX-License-Identifier: GPL-2.0+ */
|
2014-10-03 12:16:24 +00:00
|
|
|
/*
|
2021-01-11 20:11:37 +00:00
|
|
|
* (C) Copyright 2020 Jernej Skrabec <jernej.skrabec@siol.net>
|
2014-10-03 12:16:24 +00:00
|
|
|
*
|
2021-01-11 20:11:37 +00:00
|
|
|
* Sunxi platform prcm register definition.
|
2014-10-03 12:16:24 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef _SUNXI_PRCM_H
|
|
|
|
#define _SUNXI_PRCM_H
|
|
|
|
|
2021-01-11 20:11:37 +00:00
|
|
|
/* prcm regs definition */
|
|
|
|
#if defined(CONFIG_SUN50I_GEN_H6)
|
|
|
|
#include <asm/arch/prcm_sun50i.h>
|
|
|
|
#else
|
|
|
|
#include <asm/arch/prcm_sun6i.h>
|
|
|
|
#endif
|
2014-10-03 12:16:24 +00:00
|
|
|
|
2021-01-11 20:11:37 +00:00
|
|
|
#endif /* _SUNXI_PRCM_H */
|