project:cfg:BoardConfig_IPC: Added fastboot BoardConfig file and firmware post-scripts, distinguishing between the BoardConfigs for Luckfox Pico Pro and Luckfox Pico Max. project:app: Added fastboot_client and rk_smart_door for quick boot applications; updated rkipc app to adapt to the latest media library. media:samples: Added more usage examples. media:rockit: Fixed bugs; removed support for retrieving data frames from VPSS. media:isp: Updated rkaiq library and related tools to support connection to RKISP_Tuner. sysdrv:Makefile: Added support for compiling drv_ko on Luckfox Pico Ultra W using Ubuntu; added support for custom root filesystem. sysdrv:tools:board: Updated Buildroot optional mirror sources, updated some software versions, and stored device tree files and configuration files that undergo multiple modifications for U-Boot and kernel separately. sysdrv:source:mcu: Used RISC-V MCU SDK with RT-Thread system, mainly for initializing camera AE during quick boot. sysdrv:source:uboot: Added support for fastboot; added high baud rate DDR bin for serial firmware upgrades. sysdrv:source:kernel: Upgraded to version 5.10.160; increased NPU frequency for RV1106G3; added support for fastboot. Signed-off-by: luckfox-eng29 <eng29@luckfox.com>
100 lines
2.3 KiB
C
100 lines
2.3 KiB
C
// SPDX-License-Identifier: GPL-2.0-or-later
|
|
/*
|
|
* Copyright (c) 2023 Rockchip Electronics Co., Ltd
|
|
*/
|
|
|
|
#include <linux/clk-provider.h>
|
|
#include <linux/io.h>
|
|
#include <linux/module.h>
|
|
#include <linux/of_address.h>
|
|
#include <linux/platform_device.h>
|
|
#include <linux/pm_runtime.h>
|
|
|
|
static DEFINE_SPINLOCK(clk_out_lock);
|
|
|
|
static int rockchip_clk_out_probe(struct platform_device *pdev)
|
|
{
|
|
struct device *dev = &pdev->dev;
|
|
struct device_node *node = pdev->dev.of_node;
|
|
struct clk_hw *hw;
|
|
struct resource *res;
|
|
const char *clk_name = node->name;
|
|
const char *parent_name;
|
|
void __iomem *reg;
|
|
u32 shift = 0;
|
|
u8 clk_gate_flags = CLK_GATE_HIWORD_MASK;
|
|
int ret;
|
|
|
|
ret = device_property_read_string(dev, "clock-output-names", &clk_name);
|
|
if (ret)
|
|
return ret;
|
|
|
|
ret = device_property_read_u32(dev, "rockchip,bit-shift", &shift);
|
|
if (ret)
|
|
return ret;
|
|
|
|
if (device_property_read_bool(dev, "rockchip,bit-set-to-disable"))
|
|
clk_gate_flags |= CLK_GATE_SET_TO_DISABLE;
|
|
|
|
ret = of_clk_parent_fill(node, &parent_name, 1);
|
|
if (ret != 1)
|
|
return -EINVAL;
|
|
|
|
res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
|
|
if (!res)
|
|
return -ENOMEM;
|
|
|
|
reg = devm_ioremap(dev, res->start, resource_size(res));
|
|
if (!reg)
|
|
return -ENOMEM;
|
|
|
|
pm_runtime_enable(dev);
|
|
|
|
hw = clk_hw_register_gate(dev, clk_name, parent_name, CLK_SET_RATE_PARENT,
|
|
reg, shift, clk_gate_flags, &clk_out_lock);
|
|
if (IS_ERR(hw)) {
|
|
ret = -EINVAL;
|
|
goto err_disable_pm_runtime;
|
|
}
|
|
|
|
of_clk_add_hw_provider(node, of_clk_hw_simple_get, hw);
|
|
|
|
return 0;
|
|
|
|
err_disable_pm_runtime:
|
|
pm_runtime_disable(dev);
|
|
|
|
return ret;
|
|
}
|
|
|
|
static int rockchip_clk_out_remove(struct platform_device *pdev)
|
|
{
|
|
struct device_node *node = pdev->dev.of_node;
|
|
|
|
of_clk_del_provider(node);
|
|
pm_runtime_disable(&pdev->dev);
|
|
|
|
return 0;
|
|
}
|
|
|
|
static const struct of_device_id rockchip_clk_out_match[] = {
|
|
{ .compatible = "rockchip,clk-out", },
|
|
{},
|
|
};
|
|
|
|
static struct platform_driver rockchip_clk_out_driver = {
|
|
.driver = {
|
|
.name = "rockchip-clk-out",
|
|
.of_match_table = rockchip_clk_out_match,
|
|
},
|
|
.probe = rockchip_clk_out_probe,
|
|
.remove = rockchip_clk_out_remove,
|
|
};
|
|
|
|
module_platform_driver(rockchip_clk_out_driver);
|
|
|
|
MODULE_DESCRIPTION("Rockchip Clock Input-Output-Switch");
|
|
MODULE_AUTHOR("Sugar Zhang <sugar.zhang@rock-chips.com>");
|
|
MODULE_LICENSE("GPL");
|
|
MODULE_DEVICE_TABLE(of, rockchip_clk_out_match);
|