diff options
author | Heiko Stuebner <heiko@sntech.de> | 2014-09-12 18:34:31 -0400 |
---|---|---|
committer | Heiko Stuebner <heiko@sntech.de> | 2014-09-29 03:21:38 -0400 |
commit | 47b06fc2d97a0d98d6053357561f2953d6547d25 (patch) | |
tree | 31d282b8952ba42a8da89a56cae8ddcb16288d23 /arch/arm/mach-rockchip/rockchip.c | |
parent | 7d1311b93e58ed55f3a31cc8f94c4b8fe988a2b9 (diff) |
ARM: rockchip: add a cpufreq-cpu0 device
Rockchip SoCs can sucessfully use the generic cpufreq-cpu0 driver to
do frequency scaling. Therefore add a platform device in the machine
init code.
Signed-off-by: Heiko Stuebner <heiko@sntech.de>
Diffstat (limited to 'arch/arm/mach-rockchip/rockchip.c')
-rw-r--r-- | arch/arm/mach-rockchip/rockchip.c | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/arch/arm/mach-rockchip/rockchip.c b/arch/arm/mach-rockchip/rockchip.c index 8ab9e0e7ff04..eea1f06366e6 100644 --- a/arch/arm/mach-rockchip/rockchip.c +++ b/arch/arm/mach-rockchip/rockchip.c | |||
@@ -24,6 +24,12 @@ | |||
24 | #include <asm/hardware/cache-l2x0.h> | 24 | #include <asm/hardware/cache-l2x0.h> |
25 | #include "core.h" | 25 | #include "core.h" |
26 | 26 | ||
27 | static void __init rockchip_dt_init(void) | ||
28 | { | ||
29 | of_platform_populate(NULL, of_default_bus_match_table, NULL, NULL); | ||
30 | platform_device_register_simple("cpufreq-cpu0", 0, NULL, 0); | ||
31 | } | ||
32 | |||
27 | static const char * const rockchip_board_dt_compat[] = { | 33 | static const char * const rockchip_board_dt_compat[] = { |
28 | "rockchip,rk2928", | 34 | "rockchip,rk2928", |
29 | "rockchip,rk3066a", | 35 | "rockchip,rk3066a", |
@@ -37,4 +43,5 @@ DT_MACHINE_START(ROCKCHIP_DT, "Rockchip Cortex-A9 (Device Tree)") | |||
37 | .l2c_aux_val = 0, | 43 | .l2c_aux_val = 0, |
38 | .l2c_aux_mask = ~0, | 44 | .l2c_aux_mask = ~0, |
39 | .dt_compat = rockchip_board_dt_compat, | 45 | .dt_compat = rockchip_board_dt_compat, |
46 | .init_machine = rockchip_dt_init, | ||
40 | MACHINE_END | 47 | MACHINE_END |