mirror of
https://github.com/torvalds/linux.git
synced 2024-11-25 05:32:00 +00:00
a96cbb146a
The DT of_device.h and of_platform.h date back to the separate of_platform_bus_type before it as merged into the regular platform bus. As part of that merge prepping Arm DT support 13 years ago, they "temporarily" include each other. They also include platform_device.h and of.h. As a result, there's a pretty much random mix of those include files used throughout the tree. In order to detangle these headers and replace the implicit includes with struct declarations, users need to explicitly include the correct includes. Acked-by: Dinh Nguyen <dinguyen@kernel.org> Acked-by: Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org> # samsung Acked-by: Heiko Stuebner <heiko@sntech.de> #rockchip Acked-by: Chanwoo Choi <cw00.choi@samsung.com> Acked-by: Geert Uytterhoeven <geert+renesas@glider.be> Reviewed-by: AngeloGioacchino Del Regno <angelogioacchino.delregno@collabora.com> Reviewed-by: Luca Ceresoli <luca.ceresoli@bootlin.com> # versaclock5 Signed-off-by: Rob Herring <robh@kernel.org> Link: https://lore.kernel.org/r/20230718143156.1066339-1-robh@kernel.org Acked-by: Abel Vesa <abel.vesa@linaro.org> #imx Signed-off-by: Stephen Boyd <sboyd@kernel.org>
40 lines
1020 B
C
40 lines
1020 B
C
// SPDX-License-Identifier: GPL-2.0-or-later
|
|
/*
|
|
* Hisilicon HiP04 clock driver
|
|
*
|
|
* Copyright (c) 2013-2014 Hisilicon Limited.
|
|
* Copyright (c) 2013-2014 Linaro Limited.
|
|
*
|
|
* Author: Haojian Zhuang <haojian.zhuang@linaro.org>
|
|
*/
|
|
|
|
#include <linux/kernel.h>
|
|
#include <linux/clk-provider.h>
|
|
#include <linux/io.h>
|
|
#include <linux/slab.h>
|
|
|
|
#include <dt-bindings/clock/hip04-clock.h>
|
|
|
|
#include "clk.h"
|
|
|
|
/* fixed rate clocks */
|
|
static struct hisi_fixed_rate_clock hip04_fixed_rate_clks[] __initdata = {
|
|
{ HIP04_OSC50M, "osc50m", NULL, 0, 50000000, },
|
|
{ HIP04_CLK_50M, "clk50m", NULL, 0, 50000000, },
|
|
{ HIP04_CLK_168M, "clk168m", NULL, 0, 168750000, },
|
|
};
|
|
|
|
static void __init hip04_clk_init(struct device_node *np)
|
|
{
|
|
struct hisi_clock_data *clk_data;
|
|
|
|
clk_data = hisi_clk_init(np, HIP04_NR_CLKS);
|
|
if (!clk_data)
|
|
return;
|
|
|
|
hisi_clk_register_fixed_rate(hip04_fixed_rate_clks,
|
|
ARRAY_SIZE(hip04_fixed_rate_clks),
|
|
clk_data);
|
|
}
|
|
CLK_OF_DECLARE(hip04_clk, "hisilicon,hip04-clock", hip04_clk_init);
|