cregit-Linux how code gets into the kernel

Release 4.16 drivers/misc/cxl/debugfs.c

Directory: drivers/misc/cxl
/*
 * Copyright 2014 IBM Corp.
 *
 * This program is free software; you can redistribute it and/or
 * modify it under the terms of the GNU General Public License
 * as published by the Free Software Foundation; either version
 * 2 of the License, or (at your option) any later version.
 */

#include <linux/debugfs.h>
#include <linux/kernel.h>
#include <linux/slab.h>

#include "cxl.h"


static struct dentry *cxl_debugfs;

/* Helpers to export CXL mmaped IO registers via debugfs */

static int debugfs_io_u64_get(void *data, u64 *val) { *val = in_be64((u64 __iomem *)data); return 0; }

Contributors

PersonTokensPropCommitsCommitProp
Ian Munsie30100.00%1100.00%
Total30100.00%1100.00%


static int debugfs_io_u64_set(void *data, u64 val) { out_be64((u64 __iomem *)data, val); return 0; }

Contributors

PersonTokensPropCommitsCommitProp
Ian Munsie28100.00%1100.00%
Total28100.00%1100.00%

DEFINE_DEBUGFS_ATTRIBUTE(fops_io_x64, debugfs_io_u64_get, debugfs_io_u64_set, "0x%016llx\n");
static struct dentry *debugfs_create_io_x64(const char *name, umode_t mode, struct dentry *parent, u64 __iomem *value) { return debugfs_create_file_unsafe(name, mode, parent, (void __force *)value, &fops_io_x64); }

Contributors

PersonTokensPropCommitsCommitProp
Ian Munsie4495.65%133.33%
Daniel Axtens12.17%133.33%
Andrew Donnellan12.17%133.33%
Total46100.00%3100.00%


void cxl_debugfs_add_adapter_regs_psl9(struct cxl *adapter, struct dentry *dir) { debugfs_create_io_x64("fir1", S_IRUSR, dir, _cxl_p1_addr(adapter, CXL_PSL9_FIR1)); debugfs_create_io_x64("fir_mask", 0400, dir, _cxl_p1_addr(adapter, CXL_PSL9_FIR_MASK)); debugfs_create_io_x64("fir_cntl", S_IRUSR, dir, _cxl_p1_addr(adapter, CXL_PSL9_FIR_CNTL)); debugfs_create_io_x64("trace", S_IRUSR | S_IWUSR, dir, _cxl_p1_addr(adapter, CXL_PSL9_TRACECFG)); debugfs_create_io_x64("debug", 0600, dir, _cxl_p1_addr(adapter, CXL_PSL9_DEBUG)); debugfs_create_io_x64("xsl-debug", 0600, dir, _cxl_p1_addr(adapter, CXL_XSL9_DBG)); }

Contributors

PersonTokensPropCommitsCommitProp
Christophe Lombard7869.03%133.33%
Vaibhav Jain3530.97%266.67%
Total113100.00%3100.00%


void cxl_debugfs_add_adapter_regs_psl8(struct cxl *adapter, struct dentry *dir) { debugfs_create_io_x64("fir1", S_IRUSR, dir, _cxl_p1_addr(adapter, CXL_PSL_FIR1)); debugfs_create_io_x64("fir2", S_IRUSR, dir, _cxl_p1_addr(adapter, CXL_PSL_FIR2)); debugfs_create_io_x64("fir_cntl", S_IRUSR, dir, _cxl_p1_addr(adapter, CXL_PSL_FIR_CNTL)); debugfs_create_io_x64("trace", S_IRUSR | S_IWUSR, dir, _cxl_p1_addr(adapter, CXL_PSL_TRACE)); }

Contributors

PersonTokensPropCommitsCommitProp
Frederic Barrat8098.77%150.00%
Christophe Lombard11.23%150.00%
Total81100.00%2100.00%


void cxl_debugfs_add_adapter_regs_xsl(struct cxl *adapter, struct dentry *dir) { debugfs_create_io_x64("fec", S_IRUSR, dir, _cxl_p1_addr(adapter, CXL_XSL_FEC)); }

Contributors

PersonTokensPropCommitsCommitProp
Frederic Barrat3096.77%150.00%
Christophe Lombard13.23%150.00%
Total31100.00%2100.00%


int cxl_debugfs_adapter_add(struct cxl *adapter) { struct dentry *dir; char buf[32]; if (!cxl_debugfs) return -ENODEV; snprintf(buf, 32, "card%i", adapter->adapter_num); dir = debugfs_create_dir(buf, cxl_debugfs); if (IS_ERR(dir)) return PTR_ERR(dir); adapter->debugfs = dir; debugfs_create_io_x64("err_ivte", S_IRUSR, dir, _cxl_p1_addr(adapter, CXL_PSL_ErrIVTE)); if (adapter->native->sl_ops->debugfs_add_adapter_regs) adapter->native->sl_ops->debugfs_add_adapter_regs(adapter, dir); return 0; }

Contributors

PersonTokensPropCommitsCommitProp
Ian Munsie8474.34%133.33%
Frederic Barrat2723.89%133.33%
Christophe Lombard21.77%133.33%
Total113100.00%3100.00%


void cxl_debugfs_adapter_remove(struct cxl *adapter) { debugfs_remove_recursive(adapter->debugfs); }

Contributors

PersonTokensPropCommitsCommitProp
Frederic Barrat17100.00%1100.00%
Total17100.00%1100.00%


void cxl_debugfs_add_afu_regs_psl9(struct cxl_afu *afu, struct dentry *dir) { debugfs_create_io_x64("serr", S_IRUSR, dir, _cxl_p1n_addr(afu, CXL_PSL_SERR_An)); }

Contributors

PersonTokensPropCommitsCommitProp
Christophe Lombard31100.00%1100.00%
Total31100.00%1100.00%


void cxl_debugfs_add_afu_regs_psl8(struct cxl_afu *afu, struct dentry *dir) { debugfs_create_io_x64("sstp0", S_IRUSR, dir, _cxl_p2n_addr(afu, CXL_SSTP0_An)); debugfs_create_io_x64("sstp1", S_IRUSR, dir, _cxl_p2n_addr(afu, CXL_SSTP1_An)); debugfs_create_io_x64("fir", S_IRUSR, dir, _cxl_p1n_addr(afu, CXL_PSL_FIR_SLICE_An)); debugfs_create_io_x64("serr", S_IRUSR, dir, _cxl_p1n_addr(afu, CXL_PSL_SERR_An)); debugfs_create_io_x64("afu_debug", S_IRUSR, dir, _cxl_p1n_addr(afu, CXL_AFU_DEBUG_An)); debugfs_create_io_x64("trace", S_IRUSR | S_IWUSR, dir, _cxl_p1n_addr(afu, CXL_PSL_SLICE_TRACE)); }

Contributors

PersonTokensPropCommitsCommitProp
Ian Munsie5246.02%125.00%
Christophe Lombard3329.20%250.00%
Frederic Barrat2824.78%125.00%
Total113100.00%4100.00%


int cxl_debugfs_afu_add(struct cxl_afu *afu) { struct dentry *dir; char buf[32]; if (!afu->adapter->debugfs) return -ENODEV; snprintf(buf, 32, "psl%i.%i", afu->adapter->adapter_num, afu->slice); dir = debugfs_create_dir(buf, afu->adapter->debugfs); if (IS_ERR(dir)) return PTR_ERR(dir); afu->debugfs = dir; debugfs_create_io_x64("sr", S_IRUSR, dir, _cxl_p1n_addr(afu, CXL_PSL_SR_An)); debugfs_create_io_x64("dsisr", S_IRUSR, dir, _cxl_p2n_addr(afu, CXL_PSL_DSISR_An)); debugfs_create_io_x64("dar", S_IRUSR, dir, _cxl_p2n_addr(afu, CXL_PSL_DAR_An)); debugfs_create_io_x64("err_status", S_IRUSR, dir, _cxl_p2n_addr(afu, CXL_PSL_ErrStat_An)); if (afu->adapter->native->sl_ops->debugfs_add_afu_regs) afu->adapter->native->sl_ops->debugfs_add_afu_regs(afu, dir); return 0; }

Contributors

PersonTokensPropCommitsCommitProp
Ian Munsie15787.71%133.33%
Frederic Barrat2011.17%133.33%
Christophe Lombard21.12%133.33%
Total179100.00%3100.00%


void cxl_debugfs_afu_remove(struct cxl_afu *afu) { debugfs_remove_recursive(afu->debugfs); }

Contributors

PersonTokensPropCommitsCommitProp
Ian Munsie17100.00%1100.00%
Total17100.00%1100.00%


int __init cxl_debugfs_init(void) { struct dentry *ent; if (!cpu_has_feature(CPU_FTR_HVMODE)) return 0; ent = debugfs_create_dir("cxl", NULL); if (IS_ERR(ent)) return PTR_ERR(ent); cxl_debugfs = ent; return 0; }

Contributors

PersonTokensPropCommitsCommitProp
Ian Munsie4279.25%150.00%
Frederic Barrat1120.75%150.00%
Total53100.00%2100.00%


void cxl_debugfs_exit(void) { debugfs_remove_recursive(cxl_debugfs); }

Contributors

PersonTokensPropCommitsCommitProp
Ian Munsie12100.00%1100.00%
Total12100.00%1100.00%


Overall Contributors

PersonTokensPropCommitsCommitProp
Ian Munsie49655.42%19.09%
Frederic Barrat21323.80%218.18%
Christophe Lombard14816.54%436.36%
Vaibhav Jain353.91%218.18%
Andrew Donnellan20.22%19.09%
Daniel Axtens10.11%19.09%
Total895100.00%11100.00%
Directory: drivers/misc/cxl
Information contained on this website is for historical information purposes only and does not indicate or represent copyright ownership.
Created with cregit.