1 // SPDX-License-Identifier: GPL-2.0-only
3 * Copyright (c) 2009 Simtec Electronics
4 * http://armlinux.simtec.co.uk/
5 * Ben Dooks <ben@simtec.co.uk>
7 * S3C24XX CPU Frequency scaling - debugfs status support
10 #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
12 #include <linux/init.h>
13 #include <linux/export.h>
14 #include <linux/interrupt.h>
15 #include <linux/ioport.h>
16 #include <linux/cpufreq.h>
17 #include <linux/debugfs.h>
18 #include <linux/seq_file.h>
19 #include <linux/err.h>
21 #include <plat/cpu-freq-core.h>
23 static struct dentry
*dbgfs_root
;
24 static struct dentry
*dbgfs_file_io
;
25 static struct dentry
*dbgfs_file_info
;
26 static struct dentry
*dbgfs_file_board
;
28 #define print_ns(x) ((x) / 10), ((x) % 10)
30 static void show_max(struct seq_file
*seq
, struct s3c_freq
*f
)
32 seq_printf(seq
, "MAX: F=%lu, H=%lu, P=%lu, A=%lu\n",
33 f
->fclk
, f
->hclk
, f
->pclk
, f
->armclk
);
36 static int board_show(struct seq_file
*seq
, void *p
)
38 struct s3c_cpufreq_config
*cfg
;
39 struct s3c_cpufreq_board
*brd
;
41 cfg
= s3c_cpufreq_getconfig();
43 seq_printf(seq
, "no configuration registered\n");
49 seq_printf(seq
, "no board definition set?\n");
53 seq_printf(seq
, "SDRAM refresh %u ns\n", brd
->refresh
);
54 seq_printf(seq
, "auto_io=%u\n", brd
->auto_io
);
55 seq_printf(seq
, "need_io=%u\n", brd
->need_io
);
57 show_max(seq
, &brd
->max
);
63 DEFINE_SHOW_ATTRIBUTE(board
);
65 static int info_show(struct seq_file
*seq
, void *p
)
67 struct s3c_cpufreq_config
*cfg
;
69 cfg
= s3c_cpufreq_getconfig();
71 seq_printf(seq
, "no configuration registered\n");
75 seq_printf(seq
, " FCLK %ld Hz\n", cfg
->freq
.fclk
);
76 seq_printf(seq
, " HCLK %ld Hz (%lu.%lu ns)\n",
77 cfg
->freq
.hclk
, print_ns(cfg
->freq
.hclk_tns
));
78 seq_printf(seq
, " PCLK %ld Hz\n", cfg
->freq
.hclk
);
79 seq_printf(seq
, "ARMCLK %ld Hz\n", cfg
->freq
.armclk
);
80 seq_printf(seq
, "\n");
82 show_max(seq
, &cfg
->max
);
84 seq_printf(seq
, "Divisors: P=%d, H=%d, A=%d, dvs=%s\n",
85 cfg
->divs
.h_divisor
, cfg
->divs
.p_divisor
,
86 cfg
->divs
.arm_divisor
, cfg
->divs
.dvs
? "on" : "off");
87 seq_printf(seq
, "\n");
89 seq_printf(seq
, "lock_pll=%u\n", cfg
->lock_pll
);
94 DEFINE_SHOW_ATTRIBUTE(info
);
96 static int io_show(struct seq_file
*seq
, void *p
)
98 void (*show_bank
)(struct seq_file
*, struct s3c_cpufreq_config
*, union s3c_iobank
*);
99 struct s3c_cpufreq_config
*cfg
;
100 struct s3c_iotimings
*iot
;
101 union s3c_iobank
*iob
;
104 cfg
= s3c_cpufreq_getconfig();
106 seq_printf(seq
, "no configuration registered\n");
110 show_bank
= cfg
->info
->debug_io_show
;
112 seq_printf(seq
, "no code to show bank timing\n");
116 iot
= s3c_cpufreq_getiotimings();
118 seq_printf(seq
, "no io timings registered\n");
122 seq_printf(seq
, "hclk period is %lu.%lu ns\n", print_ns(cfg
->freq
.hclk_tns
));
124 for (bank
= 0; bank
< MAX_BANKS
; bank
++) {
125 iob
= &iot
->bank
[bank
];
127 seq_printf(seq
, "bank %d: ", bank
);
130 seq_printf(seq
, "nothing set\n");
134 show_bank(seq
, cfg
, iob
);
140 DEFINE_SHOW_ATTRIBUTE(io
);
142 static int __init
s3c_freq_debugfs_init(void)
144 dbgfs_root
= debugfs_create_dir("s3c-cpufreq", NULL
);
145 if (IS_ERR(dbgfs_root
)) {
146 pr_err("%s: error creating debugfs root\n", __func__
);
147 return PTR_ERR(dbgfs_root
);
150 dbgfs_file_io
= debugfs_create_file("io-timing", S_IRUGO
, dbgfs_root
,
153 dbgfs_file_info
= debugfs_create_file("info", S_IRUGO
, dbgfs_root
,
156 dbgfs_file_board
= debugfs_create_file("board", S_IRUGO
, dbgfs_root
,
162 late_initcall(s3c_freq_debugfs_init
);