Jagan Teki | 783acfd | 2020-01-09 14:22:17 +0530 | [diff] [blame^] | 1 | /* SPDX-License-Identifier: (GPL-2.0+ OR MIT) */ |
2 | /* | ||||
3 | * (C) Copyright 2019 Amarula Solutions. | ||||
4 | * Author: Jagan Teki <jagan@amarulasolutions.com> | ||||
5 | */ | ||||
6 | |||||
7 | #ifndef _ROCKCHIP_CLOCK_H | ||||
8 | #define _ROCKCHIP_CLOCK_H | ||||
9 | |||||
10 | #if defined(CONFIG_ROCKCHIP_RK3288) | ||||
11 | # include <asm/arch-rockchip/cru_rk3288.h> | ||||
12 | #elif defined(CONFIG_ROCKCHIP_RK3399) | ||||
13 | # include <asm/arch-rockchip/cru_rk3399.h> | ||||
14 | #endif | ||||
15 | |||||
16 | #define MHz 1000000 | ||||
17 | |||||
18 | #endif /* _ROCKCHIP_CLOCK_H */ |