15 lines
318 B
C
15 lines
318 B
C
|
/*
|
||
|
* Copyright (c) 2020, ARM Limited and Contributors. All rights reserved.
|
||
|
*
|
||
|
* SPDX-License-Identifier: BSD-3-Clause
|
||
|
*/
|
||
|
|
||
|
#ifndef SUNXI_CCU_H
|
||
|
#define SUNXI_CCU_H
|
||
|
|
||
|
#define SUNXI_CCU_SEC_SWITCH_REG (SUNXI_CCU_BASE + 0x02f0)
|
||
|
|
||
|
#define SUNXI_R_PRCM_SEC_SWITCH_REG (SUNXI_R_PRCM_BASE + 0x01d0)
|
||
|
|
||
|
#endif /* SUNXI_CCU_H */
|