f632a8170a
Here is the "big" driver core and debugfs changes for 5.3-rc1 It's a lot of different patches, all across the tree due to some api changes and lots of debugfs cleanups. Because of this, there is going to be some merge issues with your tree at the moment, I'll follow up with the expected resolutions to make it easier for you. Other than the debugfs cleanups, in this set of changes we have: - bus iteration function cleanups (will cause build warnings with s390 and coresight drivers in your tree) - scripts/get_abi.pl tool to display and parse Documentation/ABI entries in a simple way - cleanups to Documenatation/ABI/ entries to make them parse easier due to typos and other minor things - default_attrs use for some ktype users - driver model documentation file conversions to .rst - compressed firmware file loading - deferred probe fixes All of these have been in linux-next for a while, with a bunch of merge issues that Stephen has been patient with me for. Other than the merge issues, functionality is working properly in linux-next :) Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org> -----BEGIN PGP SIGNATURE----- iG0EABECAC0WIQT0tgzFv3jCIUoxPcsxR9QN2y37KQUCXSgpnQ8cZ3JlZ0Brcm9h aC5jb20ACgkQMUfUDdst+ykcwgCfS30OR4JmwZydWGJ7zK/cHqk+KjsAnjOxjC1K LpRyb3zX29oChFaZkc5a =XrEZ -----END PGP SIGNATURE----- Merge tag 'driver-core-5.3-rc1' of git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/driver-core Pull driver core and debugfs updates from Greg KH: "Here is the "big" driver core and debugfs changes for 5.3-rc1 It's a lot of different patches, all across the tree due to some api changes and lots of debugfs cleanups. Other than the debugfs cleanups, in this set of changes we have: - bus iteration function cleanups - scripts/get_abi.pl tool to display and parse Documentation/ABI entries in a simple way - cleanups to Documenatation/ABI/ entries to make them parse easier due to typos and other minor things - default_attrs use for some ktype users - driver model documentation file conversions to .rst - compressed firmware file loading - deferred probe fixes All of these have been in linux-next for a while, with a bunch of merge issues that Stephen has been patient with me for" * tag 'driver-core-5.3-rc1' of git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/driver-core: (102 commits) debugfs: make error message a bit more verbose orangefs: fix build warning from debugfs cleanup patch ubifs: fix build warning after debugfs cleanup patch driver: core: Allow subsystems to continue deferring probe drivers: base: cacheinfo: Ensure cpu hotplug work is done before Intel RDT arch_topology: Remove error messages on out-of-memory conditions lib: notifier-error-inject: no need to check return value of debugfs_create functions swiotlb: no need to check return value of debugfs_create functions ceph: no need to check return value of debugfs_create functions sunrpc: no need to check return value of debugfs_create functions ubifs: no need to check return value of debugfs_create functions orangefs: no need to check return value of debugfs_create functions nfsd: no need to check return value of debugfs_create functions lib: 842: no need to check return value of debugfs_create functions debugfs: provide pr_fmt() macro debugfs: log errors when something goes wrong drivers: s390/cio: Fix compilation warning about const qualifiers drivers: Add generic helper to match by of_node driver_find_device: Unify the match function with class_find_device() bus_find_device: Unify the match callback with class_find_device ...
158 lines
4.2 KiB
C
158 lines
4.2 KiB
C
// SPDX-License-Identifier: GPL-2.0-only
|
|
/*
|
|
* Intel SOC Punit device state debug driver
|
|
* Punit controls power management for North Complex devices (Graphics
|
|
* blocks, Image Signal Processing, video processing, display, DSP etc.)
|
|
*
|
|
* Copyright (c) 2015, Intel Corporation.
|
|
*/
|
|
|
|
#include <linux/module.h>
|
|
#include <linux/init.h>
|
|
#include <linux/device.h>
|
|
#include <linux/debugfs.h>
|
|
#include <linux/seq_file.h>
|
|
#include <linux/io.h>
|
|
#include <asm/cpu_device_id.h>
|
|
#include <asm/intel-family.h>
|
|
#include <asm/iosf_mbi.h>
|
|
|
|
/* Subsystem config/status Video processor */
|
|
#define VED_SS_PM0 0x32
|
|
/* Subsystem config/status ISP (Image Signal Processor) */
|
|
#define ISP_SS_PM0 0x39
|
|
/* Subsystem config/status Input/output controller */
|
|
#define MIO_SS_PM 0x3B
|
|
/* Shift bits for getting status for video, isp and i/o */
|
|
#define SSS_SHIFT 24
|
|
|
|
/* Power gate status reg */
|
|
#define PWRGT_STATUS 0x61
|
|
/* Shift bits for getting status for graphics rendering */
|
|
#define RENDER_POS 0
|
|
/* Shift bits for getting status for media control */
|
|
#define MEDIA_POS 2
|
|
/* Shift bits for getting status for Valley View/Baytrail display */
|
|
#define VLV_DISPLAY_POS 6
|
|
|
|
/* Subsystem config/status display for Cherry Trail SOC */
|
|
#define CHT_DSP_SSS 0x36
|
|
/* Shift bits for getting status for display */
|
|
#define CHT_DSP_SSS_POS 16
|
|
|
|
struct punit_device {
|
|
char *name;
|
|
int reg;
|
|
int sss_pos;
|
|
};
|
|
|
|
static const struct punit_device punit_device_tng[] = {
|
|
{ "DISPLAY", CHT_DSP_SSS, SSS_SHIFT },
|
|
{ "VED", VED_SS_PM0, SSS_SHIFT },
|
|
{ "ISP", ISP_SS_PM0, SSS_SHIFT },
|
|
{ "MIO", MIO_SS_PM, SSS_SHIFT },
|
|
{ NULL }
|
|
};
|
|
|
|
static const struct punit_device punit_device_byt[] = {
|
|
{ "GFX RENDER", PWRGT_STATUS, RENDER_POS },
|
|
{ "GFX MEDIA", PWRGT_STATUS, MEDIA_POS },
|
|
{ "DISPLAY", PWRGT_STATUS, VLV_DISPLAY_POS },
|
|
{ "VED", VED_SS_PM0, SSS_SHIFT },
|
|
{ "ISP", ISP_SS_PM0, SSS_SHIFT },
|
|
{ "MIO", MIO_SS_PM, SSS_SHIFT },
|
|
{ NULL }
|
|
};
|
|
|
|
static const struct punit_device punit_device_cht[] = {
|
|
{ "GFX RENDER", PWRGT_STATUS, RENDER_POS },
|
|
{ "GFX MEDIA", PWRGT_STATUS, MEDIA_POS },
|
|
{ "DISPLAY", CHT_DSP_SSS, CHT_DSP_SSS_POS },
|
|
{ "VED", VED_SS_PM0, SSS_SHIFT },
|
|
{ "ISP", ISP_SS_PM0, SSS_SHIFT },
|
|
{ "MIO", MIO_SS_PM, SSS_SHIFT },
|
|
{ NULL }
|
|
};
|
|
|
|
static const char * const dstates[] = {"D0", "D0i1", "D0i2", "D0i3"};
|
|
|
|
static int punit_dev_state_show(struct seq_file *seq_file, void *unused)
|
|
{
|
|
u32 punit_pwr_status;
|
|
struct punit_device *punit_devp = seq_file->private;
|
|
int index;
|
|
int status;
|
|
|
|
seq_puts(seq_file, "\n\nPUNIT NORTH COMPLEX DEVICES :\n");
|
|
while (punit_devp->name) {
|
|
status = iosf_mbi_read(BT_MBI_UNIT_PMC, MBI_REG_READ,
|
|
punit_devp->reg, &punit_pwr_status);
|
|
if (status) {
|
|
seq_printf(seq_file, "%9s : Read Failed\n",
|
|
punit_devp->name);
|
|
} else {
|
|
index = (punit_pwr_status >> punit_devp->sss_pos) & 3;
|
|
seq_printf(seq_file, "%9s : %s\n", punit_devp->name,
|
|
dstates[index]);
|
|
}
|
|
punit_devp++;
|
|
}
|
|
|
|
return 0;
|
|
}
|
|
DEFINE_SHOW_ATTRIBUTE(punit_dev_state);
|
|
|
|
static struct dentry *punit_dbg_file;
|
|
|
|
static void punit_dbgfs_register(struct punit_device *punit_device)
|
|
{
|
|
punit_dbg_file = debugfs_create_dir("punit_atom", NULL);
|
|
|
|
debugfs_create_file("dev_power_state", 0444, punit_dbg_file,
|
|
punit_device, &punit_dev_state_fops);
|
|
}
|
|
|
|
static void punit_dbgfs_unregister(void)
|
|
{
|
|
debugfs_remove_recursive(punit_dbg_file);
|
|
}
|
|
|
|
#define ICPU(model, drv_data) \
|
|
{ X86_VENDOR_INTEL, 6, model, X86_FEATURE_MWAIT,\
|
|
(kernel_ulong_t)&drv_data }
|
|
|
|
static const struct x86_cpu_id intel_punit_cpu_ids[] = {
|
|
ICPU(INTEL_FAM6_ATOM_SILVERMONT, punit_device_byt),
|
|
ICPU(INTEL_FAM6_ATOM_SILVERMONT_MID, punit_device_tng),
|
|
ICPU(INTEL_FAM6_ATOM_AIRMONT, punit_device_cht),
|
|
{}
|
|
};
|
|
|
|
MODULE_DEVICE_TABLE(x86cpu, intel_punit_cpu_ids);
|
|
|
|
static int __init punit_atom_debug_init(void)
|
|
{
|
|
const struct x86_cpu_id *id;
|
|
|
|
id = x86_match_cpu(intel_punit_cpu_ids);
|
|
if (!id)
|
|
return -ENODEV;
|
|
|
|
punit_dbgfs_register((struct punit_device *)id->driver_data);
|
|
|
|
return 0;
|
|
}
|
|
|
|
static void __exit punit_atom_debug_exit(void)
|
|
{
|
|
punit_dbgfs_unregister();
|
|
}
|
|
|
|
module_init(punit_atom_debug_init);
|
|
module_exit(punit_atom_debug_exit);
|
|
|
|
MODULE_AUTHOR("Kumar P, Mahesh <mahesh.kumar.p@intel.com>");
|
|
MODULE_AUTHOR("Srinivas Pandruvada <srinivas.pandruvada@linux.intel.com>");
|
|
MODULE_DESCRIPTION("Driver for Punit devices states debugging");
|
|
MODULE_LICENSE("GPL v2");
|