#include <dt-bindings/clock/nxp,imx95-clock.h>
#include <linux/clk.h>
#include <linux/clk-provider.h>
#include <linux/pm_runtime.h>
#include <linux/debugfs.h>
#include <linux/device.h>
#include <linux/err.h>
#include <linux/io.h>
#include <linux/module.h>
#include <linux/of_address.h>
#include <linux/of_device.h>
#include <linux/of_platform.h>
#include <linux/platform_device.h>
#include <linux/regmap.h>
#include <linux/slab.h>
#include <linux/spinlock.h>
#include <linux/types.h>
enum { … };
struct imx95_blk_ctl { … };
struct imx95_blk_ctl_clk_dev_data { … };
struct imx95_blk_ctl_dev_data { … };
static const struct imx95_blk_ctl_clk_dev_data vpublk_clk_dev_data[] = …;
static const struct imx95_blk_ctl_dev_data vpublk_dev_data = …;
static const struct imx95_blk_ctl_clk_dev_data camblk_clk_dev_data[] = …;
static const struct imx95_blk_ctl_dev_data camblk_dev_data = …;
static const struct imx95_blk_ctl_clk_dev_data lvds_clk_dev_data[] = …;
static const struct imx95_blk_ctl_dev_data lvds_csr_dev_data = …;
static const struct imx95_blk_ctl_clk_dev_data dispmix_csr_clk_dev_data[] = …;
static const struct imx95_blk_ctl_dev_data dispmix_csr_dev_data = …;
static int imx95_bc_probe(struct platform_device *pdev)
{ … }
#ifdef CONFIG_PM
static int imx95_bc_runtime_suspend(struct device *dev)
{ … }
static int imx95_bc_runtime_resume(struct device *dev)
{ … }
#endif
#ifdef CONFIG_PM_SLEEP
static int imx95_bc_suspend(struct device *dev)
{ … }
static int imx95_bc_resume(struct device *dev)
{ … }
#endif
static const struct dev_pm_ops imx95_bc_pm_ops = …;
static const struct of_device_id imx95_bc_of_match[] = …;
MODULE_DEVICE_TABLE(of, imx95_bc_of_match);
static struct platform_driver imx95_bc_driver = …;
module_platform_driver(…) …;
MODULE_DESCRIPTION(…) …;
MODULE_AUTHOR(…) …;
MODULE_LICENSE(…) …;