summaryrefslogtreecommitdiff
path: root/arch/arm/mach-tegra/sysfs-cluster.c
diff options
context:
space:
mode:
authorScott Williams <scwilliams@nvidia.com>2011-02-01 12:52:39 -0800
committerDan Willemsen <dwillemsen@nvidia.com>2011-04-26 15:51:09 -0700
commit3522aa4efb0a042c73531461708ea8e2a84a6fab (patch)
tree790e40ca26b193f7de914013663ba6b468bd78e1 /arch/arm/mach-tegra/sysfs-cluster.c
parentb861f86ff41f577e20cce985edc52bd8fb68cb07 (diff)
arm: tegra: Add run-time cluster switch debug control
Allow run-time control of cluster switch debug messages so they can be enabled for debuggability and disabled for performance measurement. Original-Change-Id: Id2bd85d6a9d3a57430a20d93b51ce5b59fe53c71 Reviewed-on: http://git-master/r/17927 Tested-by: Scott Williams <scwilliams@nvidia.com> Reviewed-by: Aleksandr Frid <afrid@nvidia.com> Reviewed-by: Scott Williams <scwilliams@nvidia.com> Change-Id: Ia57424eee01276d82af7aab37d2f3d0525acc379
Diffstat (limited to 'arch/arm/mach-tegra/sysfs-cluster.c')
-rw-r--r--arch/arm/mach-tegra/sysfs-cluster.c73
1 files changed, 57 insertions, 16 deletions
diff --git a/arch/arm/mach-tegra/sysfs-cluster.c b/arch/arm/mach-tegra/sysfs-cluster.c
index 72ca344493ff..46f157cab3ff 100644
--- a/arch/arm/mach-tegra/sysfs-cluster.c
+++ b/arch/arm/mach-tegra/sysfs-cluster.c
@@ -1,5 +1,5 @@
/*
- * Copyright (c) 2010 NVIDIA Corporation.
+ * Copyright (c) 2010-2011 NVIDIA Corporation.
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
@@ -89,13 +89,13 @@
#include "power.h"
#define SYSFS_CLUSTER_PRINTS 1 /* Nonzero: enable status prints */
-#define SYSFS_CLUSTER_DEBUG_PRINTS 0 /* Nonzero: enable debug prints */
+#define SYSFS_CLUSTER_TRACE_PRINTS 0 /* Nonzero: enable trace prints */
#define SYSFS_CLUSTER_POWER_MODE 0 /* Nonzero: use power modes other than LP2*/
-#if SYSFS_CLUSTER_DEBUG_PRINTS
-#define DEBUG_CLUSTER(x) printk x
+#if SYSFS_CLUSTER_TRACE_PRINTS
+#define TRACE_CLUSTER(x) printk x
#else
-#define DEBUG_CLUSTER(x)
+#define TRACE_CLUSTER(x)
#endif
#if SYSFS_CLUSTER_PRINTS
@@ -141,6 +141,12 @@ static struct kobj_attribute cluster_powermode_attr =
__ATTR(power_mode, 0640, sysfscluster_show, sysfscluster_store);
#endif
+#if DEBUG_CLUSTER_SWITCH
+unsigned int tegra_cluster_debug = 1;
+static struct kobj_attribute cluster_debug_attr =
+ __ATTR(debug, 0640, sysfscluster_show, sysfscluster_store);
+#endif
+
typedef enum
{
ClusterAttr_Invalid = 0,
@@ -149,7 +155,10 @@ typedef enum
ClusterAttr_Force,
ClusterAttr_WakeMs,
#if defined(CONFIG_PM) && SYSFS_CLUSTER_POWER_MODE
- ClusterAttr_PowerMode
+ ClusterAttr_PowerMode,
+#endif
+#if DEBUG_CLUSTER_SWITCH
+ ClusterAttr_Debug
#endif
} ClusterAttr;
@@ -167,7 +176,11 @@ static ClusterAttr GetClusterAttr(const char *name)
if (!strcmp(name, "power_mode"))
return ClusterAttr_PowerMode;
#endif
- DEBUG_CLUSTER(("GetClusterAttr(%s): invalid\n", name));
+#if DEBUG_CLUSTER_SWITCH
+ if (!strcmp(name, "debug"))
+ return ClusterAttr_Debug;
+#endif
+ TRACE_CLUSTER(("GetClusterAttr(%s): invalid\n", name));
return ClusterAttr_Invalid;
}
@@ -177,7 +190,7 @@ static ssize_t sysfscluster_show(struct kobject *kobj,
ClusterAttr type;
ssize_t len;
- DEBUG_CLUSTER(("+sysfscluster_show\n"));
+ TRACE_CLUSTER(("+sysfscluster_show\n"));
type = GetClusterAttr(attr->attr.name);
switch (type) {
@@ -205,12 +218,18 @@ static ssize_t sysfscluster_show(struct kobject *kobj,
break;
#endif
+#if DEBUG_CLUSTER_SWITCH
+ case ClusterAttr_Debug:
+ len = sprintf(buf, "%d\n", tegra_cluster_debug);
+ break;
+#endif
+
default:
len = sprintf(buf, "invalid\n");
break;
}
- DEBUG_CLUSTER(("-sysfscluster_show\n"));
+ TRACE_CLUSTER(("-sysfscluster_show\n"));
return len;
}
@@ -224,7 +243,7 @@ static ssize_t sysfscluster_store(struct kobject *kobj,
int tmp;
int cnt;
- DEBUG_CLUSTER(("+sysfscluster_store: %p, %d\n", buf, count));
+ TRACE_CLUSTER(("+sysfscluster_store: %p, %d\n", buf, count));
/* The count includes data bytes follow by a line feed character. */
if (!buf || (count < 1)) {
@@ -333,6 +352,22 @@ static ssize_t sysfscluster_store(struct kobject *kobj,
break;
#endif
+#if DEBUG_CLUSTER_SWITCH
+ case ClusterAttr_Debug:
+ if ((count == 1) && (*buf == '0'))
+ tegra_cluster_debug = 0;
+ else if ((count == 1) && (*buf == '1'))
+ tegra_cluster_debug = 1;
+ else {
+ PRINT_CLUSTER(("cluster/debug: '%*.*s' invalid, "
+ "must be 0 or 1\n", count, count, buf));
+ ret = -EINVAL;
+ break;
+ }
+ PRINT_CLUSTER(("cluster/debug -> %d\n",tegra_cluster_debug));
+ break;
+#endif
+
default:
ret = -ENOENT;
break;
@@ -341,7 +376,7 @@ static ssize_t sysfscluster_store(struct kobject *kobj,
spin_unlock(&cluster_lock);
fail:
- DEBUG_CLUSTER(("-sysfscluster_store: %d\n", count));
+ TRACE_CLUSTER(("-sysfscluster_store: %d\n", count));
return ret;
}
@@ -349,7 +384,7 @@ fail:
do { \
e = sysfs_create_file(cluster_kobj, &cluster_##x##_attr.attr); \
if (e) { \
- DEBUG_CLUSTER(("cluster/" __stringify(x) \
+ TRACE_CLUSTER(("cluster/" __stringify(x) \
": sysfs_create_file failed!\n")); \
goto fail; \
} \
@@ -359,7 +394,7 @@ static int __init sysfscluster_init(void)
{
int e;
- DEBUG_CLUSTER(("+sysfscluster_init\n"));
+ TRACE_CLUSTER(("+sysfscluster_init\n"));
spin_lock_init(&cluster_lock);
cluster_kobj = kobject_create_and_add("cluster", kernel_kobj);
@@ -371,6 +406,9 @@ static int __init sysfscluster_init(void)
#if defined(CONFIG_PM) && SYSFS_CLUSTER_POWER_MODE
CREATE_FILE(powermode);
#endif
+#if DEBUG_CLUSTER_SWITCH
+ CREATE_FILE(debug);
+#endif
spin_lock(&cluster_lock);
if (is_lp_cluster())
@@ -380,7 +418,7 @@ static int __init sysfscluster_init(void)
spin_unlock(&cluster_lock);
fail:
- DEBUG_CLUSTER(("-sysfscluster_init\n"));
+ TRACE_CLUSTER(("-sysfscluster_init\n"));
return e;
}
@@ -389,7 +427,10 @@ fail:
static void __exit sysfscluster_exit(void)
{
- DEBUG_CLUSTER(("+sysfscluster_exit\n"));
+ TRACE_CLUSTER(("+sysfscluster_exit\n"));
+#if DEBUG_CLUSTER_SWITCH
+ REMOVE_FILE(debug);
+#endif
#if defined(CONFIG_PM) && SYSFS_CLUSTER_POWER_MODE
REMOVE_FILE(powermode);
#endif
@@ -398,7 +439,7 @@ static void __exit sysfscluster_exit(void)
REMOVE_FILE(immediate);
REMOVE_FILE(active);
kobject_del(cluster_kobj);
- DEBUG_CLUSTER(("-sysfscluster_exit\n"));
+ TRACE_CLUSTER(("-sysfscluster_exit\n"));
}
module_init(sysfscluster_init);