blob: 7b987bf498b5d0040c3e068d464d62e695064aea [file] [log] [blame]
Thomas Gleixner2874c5f2019-05-27 08:55:01 +02001// SPDX-License-Identifier: GPL-2.0-or-later
Ian Munsief204e0b2014-10-08 19:55:02 +11002/*
3 * Copyright 2014 IBM Corp.
Ian Munsief204e0b2014-10-08 19:55:02 +11004 */
5
6#include <linux/debugfs.h>
7#include <linux/kernel.h>
8#include <linux/slab.h>
9
10#include "cxl.h"
11
12static struct dentry *cxl_debugfs;
13
Ian Munsief204e0b2014-10-08 19:55:02 +110014/* Helpers to export CXL mmaped IO registers via debugfs */
15static int debugfs_io_u64_get(void *data, u64 *val)
16{
17 *val = in_be64((u64 __iomem *)data);
18 return 0;
19}
20
21static int debugfs_io_u64_set(void *data, u64 val)
22{
23 out_be64((u64 __iomem *)data, val);
24 return 0;
25}
Andrew Donnellan3382a622016-11-22 21:13:27 +110026DEFINE_DEBUGFS_ATTRIBUTE(fops_io_x64, debugfs_io_u64_get, debugfs_io_u64_set,
27 "0x%016llx\n");
Ian Munsief204e0b2014-10-08 19:55:02 +110028
Greg Kroah-Hartman4a14abc2019-06-12 17:54:18 +020029static void debugfs_create_io_x64(const char *name, umode_t mode,
30 struct dentry *parent, u64 __iomem *value)
Ian Munsief204e0b2014-10-08 19:55:02 +110031{
Greg Kroah-Hartman4a14abc2019-06-12 17:54:18 +020032 debugfs_create_file_unsafe(name, mode, parent, (void __force *)value,
33 &fops_io_x64);
Ian Munsief204e0b2014-10-08 19:55:02 +110034}
35
Christophe Lombardf24be422017-04-12 16:34:07 +020036void cxl_debugfs_add_adapter_regs_psl9(struct cxl *adapter, struct dentry *dir)
37{
38 debugfs_create_io_x64("fir1", S_IRUSR, dir, _cxl_p1_addr(adapter, CXL_PSL9_FIR1));
Vaibhav Jain8f6a9042017-10-09 23:26:27 +053039 debugfs_create_io_x64("fir_mask", 0400, dir,
40 _cxl_p1_addr(adapter, CXL_PSL9_FIR_MASK));
Christophe Lombardf24be422017-04-12 16:34:07 +020041 debugfs_create_io_x64("fir_cntl", S_IRUSR, dir, _cxl_p1_addr(adapter, CXL_PSL9_FIR_CNTL));
42 debugfs_create_io_x64("trace", S_IRUSR | S_IWUSR, dir, _cxl_p1_addr(adapter, CXL_PSL9_TRACECFG));
Vaibhav Jain1cafc6292017-09-20 11:53:22 +053043 debugfs_create_io_x64("debug", 0600, dir,
44 _cxl_p1_addr(adapter, CXL_PSL9_DEBUG));
45 debugfs_create_io_x64("xsl-debug", 0600, dir,
46 _cxl_p1_addr(adapter, CXL_XSL9_DBG));
Christophe Lombardf24be422017-04-12 16:34:07 +020047}
48
Christophe Lombard64663f32017-04-07 16:11:57 +020049void cxl_debugfs_add_adapter_regs_psl8(struct cxl *adapter, struct dentry *dir)
Frederic Barrat6d382612016-05-24 03:39:18 +100050{
51 debugfs_create_io_x64("fir1", S_IRUSR, dir, _cxl_p1_addr(adapter, CXL_PSL_FIR1));
52 debugfs_create_io_x64("fir2", S_IRUSR, dir, _cxl_p1_addr(adapter, CXL_PSL_FIR2));
53 debugfs_create_io_x64("fir_cntl", S_IRUSR, dir, _cxl_p1_addr(adapter, CXL_PSL_FIR_CNTL));
54 debugfs_create_io_x64("trace", S_IRUSR | S_IWUSR, dir, _cxl_p1_addr(adapter, CXL_PSL_TRACE));
55}
56
Greg Kroah-Hartman4a14abc2019-06-12 17:54:18 +020057void cxl_debugfs_adapter_add(struct cxl *adapter)
Ian Munsief204e0b2014-10-08 19:55:02 +110058{
59 struct dentry *dir;
60 char buf[32];
61
62 if (!cxl_debugfs)
Greg Kroah-Hartman4a14abc2019-06-12 17:54:18 +020063 return;
Ian Munsief204e0b2014-10-08 19:55:02 +110064
65 snprintf(buf, 32, "card%i", adapter->adapter_num);
66 dir = debugfs_create_dir(buf, cxl_debugfs);
Ian Munsief204e0b2014-10-08 19:55:02 +110067 adapter->debugfs = dir;
68
Ian Munsief204e0b2014-10-08 19:55:02 +110069 debugfs_create_io_x64("err_ivte", S_IRUSR, dir, _cxl_p1_addr(adapter, CXL_PSL_ErrIVTE));
70
Christophe Lombardbdd2e712017-04-07 16:11:56 +020071 if (adapter->native->sl_ops->debugfs_add_adapter_regs)
72 adapter->native->sl_ops->debugfs_add_adapter_regs(adapter, dir);
Ian Munsief204e0b2014-10-08 19:55:02 +110073}
74
75void cxl_debugfs_adapter_remove(struct cxl *adapter)
76{
77 debugfs_remove_recursive(adapter->debugfs);
78}
79
Christophe Lombardf24be422017-04-12 16:34:07 +020080void cxl_debugfs_add_afu_regs_psl9(struct cxl_afu *afu, struct dentry *dir)
81{
82 debugfs_create_io_x64("serr", S_IRUSR, dir, _cxl_p1n_addr(afu, CXL_PSL_SERR_An));
83}
84
Christophe Lombard64663f32017-04-07 16:11:57 +020085void cxl_debugfs_add_afu_regs_psl8(struct cxl_afu *afu, struct dentry *dir)
Frederic Barrat6d382612016-05-24 03:39:18 +100086{
Christophe Lombardabd1d992017-04-07 16:11:58 +020087 debugfs_create_io_x64("sstp0", S_IRUSR, dir, _cxl_p2n_addr(afu, CXL_SSTP0_An));
88 debugfs_create_io_x64("sstp1", S_IRUSR, dir, _cxl_p2n_addr(afu, CXL_SSTP1_An));
89
Frederic Barrat6d382612016-05-24 03:39:18 +100090 debugfs_create_io_x64("fir", S_IRUSR, dir, _cxl_p1n_addr(afu, CXL_PSL_FIR_SLICE_An));
91 debugfs_create_io_x64("serr", S_IRUSR, dir, _cxl_p1n_addr(afu, CXL_PSL_SERR_An));
92 debugfs_create_io_x64("afu_debug", S_IRUSR, dir, _cxl_p1n_addr(afu, CXL_AFU_DEBUG_An));
93 debugfs_create_io_x64("trace", S_IRUSR | S_IWUSR, dir, _cxl_p1n_addr(afu, CXL_PSL_SLICE_TRACE));
94}
95
Greg Kroah-Hartman4a14abc2019-06-12 17:54:18 +020096void cxl_debugfs_afu_add(struct cxl_afu *afu)
Ian Munsief204e0b2014-10-08 19:55:02 +110097{
98 struct dentry *dir;
99 char buf[32];
100
101 if (!afu->adapter->debugfs)
Greg Kroah-Hartman4a14abc2019-06-12 17:54:18 +0200102 return;
Ian Munsief204e0b2014-10-08 19:55:02 +1100103
104 snprintf(buf, 32, "psl%i.%i", afu->adapter->adapter_num, afu->slice);
105 dir = debugfs_create_dir(buf, afu->adapter->debugfs);
Ian Munsief204e0b2014-10-08 19:55:02 +1100106 afu->debugfs = dir;
107
Ian Munsief204e0b2014-10-08 19:55:02 +1100108 debugfs_create_io_x64("sr", S_IRUSR, dir, _cxl_p1n_addr(afu, CXL_PSL_SR_An));
Ian Munsief204e0b2014-10-08 19:55:02 +1100109 debugfs_create_io_x64("dsisr", S_IRUSR, dir, _cxl_p2n_addr(afu, CXL_PSL_DSISR_An));
110 debugfs_create_io_x64("dar", S_IRUSR, dir, _cxl_p2n_addr(afu, CXL_PSL_DAR_An));
Christophe Lombardabd1d992017-04-07 16:11:58 +0200111
Ian Munsief204e0b2014-10-08 19:55:02 +1100112 debugfs_create_io_x64("err_status", S_IRUSR, dir, _cxl_p2n_addr(afu, CXL_PSL_ErrStat_An));
113
Christophe Lombardbdd2e712017-04-07 16:11:56 +0200114 if (afu->adapter->native->sl_ops->debugfs_add_afu_regs)
115 afu->adapter->native->sl_ops->debugfs_add_afu_regs(afu, dir);
Ian Munsief204e0b2014-10-08 19:55:02 +1100116}
117
118void cxl_debugfs_afu_remove(struct cxl_afu *afu)
119{
120 debugfs_remove_recursive(afu->debugfs);
121}
122
Greg Kroah-Hartman4a14abc2019-06-12 17:54:18 +0200123void __init cxl_debugfs_init(void)
Ian Munsief204e0b2014-10-08 19:55:02 +1100124{
Frederic Barratea2d1f92016-03-04 12:26:30 +0100125 if (!cpu_has_feature(CPU_FTR_HVMODE))
Greg Kroah-Hartman4a14abc2019-06-12 17:54:18 +0200126 return;
Frederic Barratea2d1f92016-03-04 12:26:30 +0100127
Greg Kroah-Hartman4a14abc2019-06-12 17:54:18 +0200128 cxl_debugfs = debugfs_create_dir("cxl", NULL);
Ian Munsief204e0b2014-10-08 19:55:02 +1100129}
130
131void cxl_debugfs_exit(void)
132{
133 debugfs_remove_recursive(cxl_debugfs);
134}