1 // SPDX-License-Identifier: GPL-2.0+
3 * Raspberry Pi driver for firmware controlled clocks
5 * Even though clk-bcm2835 provides an interface to the hardware registers for
6 * the system clocks we've had to factor out 'pllb' as the firmware 'owns' it.
7 * We're not allowed to change it directly as we might race with the
8 * over-temperature and under-voltage protections provided by the firmware.
10 * Copyright (C) 2019 Nicolas Saenz Julienne <nsaenzjulienne@suse.de>
13 #include <linux/clkdev.h>
14 #include <linux/clk-provider.h>
16 #include <linux/module.h>
17 #include <linux/platform_device.h>
19 #include <soc/bcm2835/raspberrypi-firmware.h>
21 enum rpi_firmware_clk_id {
22 RPI_FIRMWARE_EMMC_CLK_ID = 1,
23 RPI_FIRMWARE_UART_CLK_ID,
24 RPI_FIRMWARE_ARM_CLK_ID,
25 RPI_FIRMWARE_CORE_CLK_ID,
26 RPI_FIRMWARE_V3D_CLK_ID,
27 RPI_FIRMWARE_H264_CLK_ID,
28 RPI_FIRMWARE_ISP_CLK_ID,
29 RPI_FIRMWARE_SDRAM_CLK_ID,
30 RPI_FIRMWARE_PIXEL_CLK_ID,
31 RPI_FIRMWARE_PWM_CLK_ID,
32 RPI_FIRMWARE_HEVC_CLK_ID,
33 RPI_FIRMWARE_EMMC2_CLK_ID,
34 RPI_FIRMWARE_M2MC_CLK_ID,
35 RPI_FIRMWARE_PIXEL_BVB_CLK_ID,
36 RPI_FIRMWARE_NUM_CLK_ID,
39 static char *rpi_firmware_clk_names[] = {
40 [RPI_FIRMWARE_EMMC_CLK_ID] = "emmc",
41 [RPI_FIRMWARE_UART_CLK_ID] = "uart",
42 [RPI_FIRMWARE_ARM_CLK_ID] = "arm",
43 [RPI_FIRMWARE_CORE_CLK_ID] = "core",
44 [RPI_FIRMWARE_V3D_CLK_ID] = "v3d",
45 [RPI_FIRMWARE_H264_CLK_ID] = "h264",
46 [RPI_FIRMWARE_ISP_CLK_ID] = "isp",
47 [RPI_FIRMWARE_SDRAM_CLK_ID] = "sdram",
48 [RPI_FIRMWARE_PIXEL_CLK_ID] = "pixel",
49 [RPI_FIRMWARE_PWM_CLK_ID] = "pwm",
50 [RPI_FIRMWARE_HEVC_CLK_ID] = "hevc",
51 [RPI_FIRMWARE_EMMC2_CLK_ID] = "emmc2",
52 [RPI_FIRMWARE_M2MC_CLK_ID] = "m2mc",
53 [RPI_FIRMWARE_PIXEL_BVB_CLK_ID] = "pixel-bvb",
56 #define RPI_FIRMWARE_STATE_ENABLE_BIT BIT(0)
57 #define RPI_FIRMWARE_STATE_WAIT_BIT BIT(1)
59 struct raspberrypi_clk_variant;
61 struct raspberrypi_clk {
63 struct rpi_firmware *firmware;
64 struct platform_device *cpufreq;
67 struct raspberrypi_clk_data {
71 struct raspberrypi_clk_variant *variant;
73 struct raspberrypi_clk *rpi;
76 struct raspberrypi_clk_variant {
79 unsigned long min_rate;
83 static struct raspberrypi_clk_variant
84 raspberrypi_clk_variants[RPI_FIRMWARE_NUM_CLK_ID] = {
85 [RPI_FIRMWARE_ARM_CLK_ID] = {
89 [RPI_FIRMWARE_CORE_CLK_ID] = {
93 * The clock is shared between the HVS and the CSI
94 * controllers, on the BCM2711 and will change depending
95 * on the pixels composited on the HVS and the capture
96 * resolution on Unicam.
98 * Since the rate can get quite large, and we need to
99 * coordinate between both driver instances, let's
100 * always use the minimum the drivers will let us.
104 [RPI_FIRMWARE_M2MC_CLK_ID] = {
108 * If we boot without any cable connected to any of the
109 * HDMI connector, the firmware will skip the HSM
110 * initialization and leave it with a rate of 0,
111 * resulting in a bus lockup when we're accessing the
112 * registers even if it's enabled.
114 * Let's put a sensible default so that we don't end up
117 .min_rate = 120000000,
120 * The clock is shared between the two HDMI controllers
121 * on the BCM2711 and will change depending on the
122 * resolution output on each. Since the rate can get
123 * quite large, and we need to coordinate between both
124 * driver instances, let's always use the minimum the
125 * drivers will let us.
129 [RPI_FIRMWARE_V3D_CLK_ID] = {
132 [RPI_FIRMWARE_PIXEL_BVB_CLK_ID] = {
138 * Structure of the message passed to Raspberry Pi's firmware in order to
139 * change clock rates. The 'disable_turbo' option is only available to the ARM
140 * clock (pllb) which we enable by default as turbo mode will alter multiple
143 * Even though we're able to access the clock registers directly we're bound to
144 * use the firmware interface as the firmware ultimately takes care of
145 * mitigating overheating/undervoltage situations and we would be changing
146 * frequencies behind his back.
148 * For more information on the firmware interface check:
149 * https://github.com/raspberrypi/firmware/wiki/Mailbox-property-interface
151 struct raspberrypi_firmware_prop {
154 __le32 disable_turbo;
157 static int raspberrypi_clock_property(struct rpi_firmware *firmware,
158 const struct raspberrypi_clk_data *data,
161 struct raspberrypi_firmware_prop msg = {
162 .id = cpu_to_le32(data->id),
163 .val = cpu_to_le32(*val),
164 .disable_turbo = cpu_to_le32(1),
168 ret = rpi_firmware_property(firmware, tag, &msg, sizeof(msg));
172 *val = le32_to_cpu(msg.val);
177 static int raspberrypi_fw_is_prepared(struct clk_hw *hw)
179 struct raspberrypi_clk_data *data =
180 container_of(hw, struct raspberrypi_clk_data, hw);
181 struct raspberrypi_clk *rpi = data->rpi;
185 ret = raspberrypi_clock_property(rpi->firmware, data,
186 RPI_FIRMWARE_GET_CLOCK_STATE, &val);
190 return !!(val & RPI_FIRMWARE_STATE_ENABLE_BIT);
194 static unsigned long raspberrypi_fw_get_rate(struct clk_hw *hw,
195 unsigned long parent_rate)
197 struct raspberrypi_clk_data *data =
198 container_of(hw, struct raspberrypi_clk_data, hw);
199 struct raspberrypi_clk *rpi = data->rpi;
203 ret = raspberrypi_clock_property(rpi->firmware, data,
204 RPI_FIRMWARE_GET_CLOCK_RATE, &val);
211 static int raspberrypi_fw_set_rate(struct clk_hw *hw, unsigned long rate,
212 unsigned long parent_rate)
214 struct raspberrypi_clk_data *data =
215 container_of(hw, struct raspberrypi_clk_data, hw);
216 struct raspberrypi_clk *rpi = data->rpi;
220 ret = raspberrypi_clock_property(rpi->firmware, data,
221 RPI_FIRMWARE_SET_CLOCK_RATE, &_rate);
223 dev_err_ratelimited(rpi->dev, "Failed to change %s frequency: %d\n",
224 clk_hw_get_name(hw), ret);
229 static int raspberrypi_fw_dumb_determine_rate(struct clk_hw *hw,
230 struct clk_rate_request *req)
232 struct raspberrypi_clk_data *data =
233 container_of(hw, struct raspberrypi_clk_data, hw);
234 struct raspberrypi_clk_variant *variant = data->variant;
237 * The firmware will do the rounding but that isn't part of
238 * the interface with the firmware, so we just do our best
242 req->rate = clamp(req->rate, req->min_rate, req->max_rate);
245 * We want to aggressively reduce the clock rate here, so let's
246 * just ignore the requested rate and return the bare minimum
247 * rate we can get away with.
249 if (variant->minimize && req->min_rate > 0)
250 req->rate = req->min_rate;
255 static const struct clk_ops raspberrypi_firmware_clk_ops = {
256 .is_prepared = raspberrypi_fw_is_prepared,
257 .recalc_rate = raspberrypi_fw_get_rate,
258 .determine_rate = raspberrypi_fw_dumb_determine_rate,
259 .set_rate = raspberrypi_fw_set_rate,
262 static struct clk_hw *raspberrypi_clk_register(struct raspberrypi_clk *rpi,
265 struct raspberrypi_clk_variant *variant)
267 struct raspberrypi_clk_data *data;
268 struct clk_init_data init = {};
269 u32 min_rate, max_rate;
272 data = devm_kzalloc(rpi->dev, sizeof(*data), GFP_KERNEL);
274 return ERR_PTR(-ENOMEM);
277 data->variant = variant;
279 init.name = devm_kasprintf(rpi->dev, GFP_KERNEL,
281 rpi_firmware_clk_names[id]);
282 init.ops = &raspberrypi_firmware_clk_ops;
283 init.flags = CLK_GET_RATE_NOCACHE;
285 data->hw.init = &init;
287 ret = raspberrypi_clock_property(rpi->firmware, data,
288 RPI_FIRMWARE_GET_MIN_CLOCK_RATE,
291 dev_err(rpi->dev, "Failed to get clock %d min freq: %d\n",
296 ret = raspberrypi_clock_property(rpi->firmware, data,
297 RPI_FIRMWARE_GET_MAX_CLOCK_RATE,
300 dev_err(rpi->dev, "Failed to get clock %d max freq: %d\n",
305 ret = devm_clk_hw_register(rpi->dev, &data->hw);
309 clk_hw_set_rate_range(&data->hw, min_rate, max_rate);
311 if (variant->clkdev) {
312 ret = devm_clk_hw_register_clkdev(rpi->dev, &data->hw,
313 NULL, variant->clkdev);
315 dev_err(rpi->dev, "Failed to initialize clkdev\n");
320 if (variant->min_rate) {
323 clk_hw_set_rate_range(&data->hw, variant->min_rate, max_rate);
325 rate = raspberrypi_fw_get_rate(&data->hw, 0);
326 if (rate < variant->min_rate) {
327 ret = raspberrypi_fw_set_rate(&data->hw, variant->min_rate, 0);
336 struct rpi_firmware_get_clocks_response {
341 static int raspberrypi_discover_clocks(struct raspberrypi_clk *rpi,
342 struct clk_hw_onecell_data *data)
344 struct rpi_firmware_get_clocks_response *clks;
348 * The firmware doesn't guarantee that the last element of
349 * RPI_FIRMWARE_GET_CLOCKS is zeroed. So allocate an additional
350 * zero element as sentinel.
352 clks = devm_kcalloc(rpi->dev,
353 RPI_FIRMWARE_NUM_CLK_ID + 1, sizeof(*clks),
358 ret = rpi_firmware_property(rpi->firmware, RPI_FIRMWARE_GET_CLOCKS,
360 sizeof(*clks) * RPI_FIRMWARE_NUM_CLK_ID);
365 struct raspberrypi_clk_variant *variant;
367 if (clks->id > RPI_FIRMWARE_NUM_CLK_ID) {
368 dev_err(rpi->dev, "Unknown clock id: %u (max: %u)\n",
369 clks->id, RPI_FIRMWARE_NUM_CLK_ID);
373 variant = &raspberrypi_clk_variants[clks->id];
374 if (variant->export) {
377 hw = raspberrypi_clk_register(rpi, clks->parent,
382 data->hws[clks->id] = hw;
383 data->num = clks->id + 1;
392 static int raspberrypi_clk_probe(struct platform_device *pdev)
394 struct clk_hw_onecell_data *clk_data;
395 struct device_node *firmware_node;
396 struct device *dev = &pdev->dev;
397 struct rpi_firmware *firmware;
398 struct raspberrypi_clk *rpi;
402 * We can be probed either through the an old-fashioned
403 * platform device registration or through a DT node that is a
404 * child of the firmware node. Handle both cases.
407 firmware_node = of_get_parent(dev->of_node);
409 firmware_node = of_find_compatible_node(NULL, NULL,
410 "raspberrypi,bcm2835-firmware");
411 if (!firmware_node) {
412 dev_err(dev, "Missing firmware node\n");
416 firmware = devm_rpi_firmware_get(&pdev->dev, firmware_node);
417 of_node_put(firmware_node);
419 return -EPROBE_DEFER;
421 rpi = devm_kzalloc(dev, sizeof(*rpi), GFP_KERNEL);
426 rpi->firmware = firmware;
427 platform_set_drvdata(pdev, rpi);
429 clk_data = devm_kzalloc(dev, struct_size(clk_data, hws,
430 RPI_FIRMWARE_NUM_CLK_ID),
435 ret = raspberrypi_discover_clocks(rpi, clk_data);
439 ret = devm_of_clk_add_hw_provider(dev, of_clk_hw_onecell_get,
444 rpi->cpufreq = platform_device_register_data(dev, "raspberrypi-cpufreq",
450 static int raspberrypi_clk_remove(struct platform_device *pdev)
452 struct raspberrypi_clk *rpi = platform_get_drvdata(pdev);
454 platform_device_unregister(rpi->cpufreq);
459 static const struct of_device_id raspberrypi_clk_match[] = {
460 { .compatible = "raspberrypi,firmware-clocks" },
463 MODULE_DEVICE_TABLE(of, raspberrypi_clk_match);
465 static struct platform_driver raspberrypi_clk_driver = {
467 .name = "raspberrypi-clk",
468 .of_match_table = raspberrypi_clk_match,
470 .probe = raspberrypi_clk_probe,
471 .remove = raspberrypi_clk_remove,
473 module_platform_driver(raspberrypi_clk_driver);
475 MODULE_AUTHOR("Nicolas Saenz Julienne <nsaenzjulienne@suse.de>");
476 MODULE_DESCRIPTION("Raspberry Pi firmware clock driver");
477 MODULE_LICENSE("GPL");
478 MODULE_ALIAS("platform:raspberrypi-clk");