mirror of https://github.com/OpenIPC/firmware.git
78 lines
2.1 KiB
Diff
78 lines
2.1 KiB
Diff
diff -drupN a/drivers/clk/sunxi/clk-debugfs.h b/drivers/clk/sunxi/clk-debugfs.h
|
|
--- a/drivers/clk/sunxi/clk-debugfs.h 1970-01-01 03:00:00.000000000 +0300
|
|
+++ b/drivers/clk/sunxi/clk-debugfs.h 2022-06-12 05:28:14.000000000 +0300
|
|
@@ -0,0 +1,73 @@
|
|
+/*
|
|
+ * Copyright (C) 2016-2020 Allwinnertech
|
|
+ *
|
|
+ * This program is free software; you can redistribute it and/or modify
|
|
+ * it under the terms of the GNU General Public License version 2 as
|
|
+ * published by the Free Software Foundation.
|
|
+ *
|
|
+ * This program is distributed in the hope that it will be useful,
|
|
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
+ * GNU General Public License for more details.
|
|
+ */
|
|
+#ifndef __MACH_CLK_DEBUGFS_H
|
|
+#define __MACH_CLK_DEBUGFS_H
|
|
+
|
|
+struct clk_core {
|
|
+ const char *name;
|
|
+ const struct clk_ops *ops;
|
|
+ struct clk_hw *hw;
|
|
+ struct module *owner;
|
|
+ struct clk_core *parent;
|
|
+ const char **parent_names;
|
|
+ struct clk_core **parents;
|
|
+ u8 num_parents;
|
|
+ u8 new_parent_index;
|
|
+ unsigned long rate;
|
|
+ unsigned long req_rate;
|
|
+ unsigned long new_rate;
|
|
+ struct clk_core *new_parent;
|
|
+ struct clk_core *new_child;
|
|
+ unsigned long flags;
|
|
+ bool orphan;
|
|
+ unsigned int enable_count;
|
|
+ unsigned int prepare_count;
|
|
+ unsigned long min_rate;
|
|
+ unsigned long max_rate;
|
|
+ unsigned long accuracy;
|
|
+ int phase;
|
|
+ struct hlist_head children;
|
|
+ struct hlist_node child_node;
|
|
+ struct hlist_head clks;
|
|
+ unsigned int notifier_count;
|
|
+#ifdef CONFIG_DEBUG_FS
|
|
+ struct dentry *dentry;
|
|
+ struct hlist_node debug_node;
|
|
+#endif
|
|
+ struct kref ref;
|
|
+};
|
|
+
|
|
+struct clk {
|
|
+ struct clk_core *core;
|
|
+ const char *dev_id;
|
|
+ const char *con_id;
|
|
+ unsigned long min_rate;
|
|
+ unsigned long max_rate;
|
|
+ struct hlist_node clks_node;
|
|
+};
|
|
+
|
|
+struct testclk_data {
|
|
+ char command[32];
|
|
+ char name[32];
|
|
+ char start[32];
|
|
+ char param[32];
|
|
+ char info[128];
|
|
+ char tmpbuf[256];
|
|
+};
|
|
+
|
|
+extern void __iomem *sunxi_clk_base;
|
|
+extern void __iomem *sunxi_clk_cpus_base;
|
|
+extern int sunxi_clk_maxreg;
|
|
+extern int cpus_clk_maxreg;
|
|
+
|
|
+#endif /* __MACH_CLK_DEBUGFS_H */
|