summaryrefslogtreecommitdiff
path: root/powertop.h
diff options
context:
space:
mode:
authorEugeni Dodonov <eugeni@dodonov.net>2011-08-26 12:19:14 -0300
committerEugeni Dodonov <eugeni@dodonov.net>2011-08-26 12:19:14 -0300
commit1bec2dbc30d220d07dbffde53a44539ab3289fc2 (patch)
tree331affec291b39cdeb5d90de91643240f6497f3b /powertop.h
imported to git for android build
Diffstat (limited to 'powertop.h')
-rw-r--r--powertop.h160
1 files changed, 160 insertions, 0 deletions
diff --git a/powertop.h b/powertop.h
new file mode 100644
index 0000000..d8f8182
--- /dev/null
+++ b/powertop.h
@@ -0,0 +1,160 @@
+/*
+ * Copyright 2007, Intel Corporation
+ *
+ * This file is part of PowerTOP
+ *
+ * This program file 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; version 2 of the License.
+ *
+ * This program is distributed in the hope that it will be useful, but WITHOUT
+ * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
+ * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
+ * for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program in a file named COPYING; if not, write to the
+ * Free Software Foundation, Inc.,
+ * 51 Franklin Street, Fifth Floor,
+ * Boston, MA 02110-1301 USA
+ *
+ * Authors:
+ * Arjan van de Ven <arjan@linux.intel.com>
+ */
+
+
+#ifndef __INCLUDE_GUARD_POWERTOP_H_
+#define __INCLUDE_GUARD_POWERTOP_H_
+
+#include <libintl.h>
+
+struct line {
+ char *string;
+ int count;
+ int disk_count;
+ char pid[12];
+};
+
+typedef void (suggestion_func)(void);
+
+extern struct line *lines;
+extern int linehead;
+extern int linesize;
+extern int linectotal;
+
+extern double displaytime;
+
+void suggest_process_death(char *process_match, char *process_name, struct line *slines, int linecount, double minwakeups, char *comment, int weight);
+void suggest_kernel_config(char *string, int onoff, char *comment, int weight);
+void suggest_bluetooth_off(void);
+void suggest_nmi_watchdog(void);
+void suggest_hpet(void);
+void suggest_ac97_powersave(void);
+void suggest_hda_powersave(void);
+void suggest_wireless_powersave(void);
+void suggest_wifi_new_powersave(void);
+void suggest_ondemand_governor(void);
+void suggest_noatime(void);
+void suggest_sata_alpm(void);
+void suggest_powersched(void);
+void suggest_xrandr_TV_off(void);
+void suggest_WOL_off(void);
+void suggest_writeback_time(void);
+void suggest_usb_autosuspend(void);
+void suggest_runtime_suspend(void);
+
+void usb_activity_hint(void);
+void devicepm_activity_hint(void);
+
+
+
+
+
+extern char cstate_lines[12][200];
+extern char cpufreqstrings[6][80];
+
+extern int topcstate;
+extern int topfreq;
+extern int dump;
+
+extern int showpids;
+
+extern char status_bar_slots[10][40];
+extern char suggestion_key;
+extern suggestion_func *suggestion_activate;
+
+
+/* min definition borrowed from the Linux kernel */
+#define min(x,y) ({ \
+ typeof(x) _x = (x); \
+ typeof(y) _y = (y); \
+ (void) (&_x == &_y); \
+ _x < _y ? _x : _y; })
+
+
+#define _(STRING) gettext(STRING)
+
+
+#define PT_COLOR_DEFAULT 1
+#define PT_COLOR_HEADER_BAR 2
+#define PT_COLOR_ERROR 3
+#define PT_COLOR_RED 4
+#define PT_COLOR_YELLOW 5
+#define PT_COLOR_GREEN 6
+#define PT_COLOR_BRIGHT 7
+#define PT_COLOR_BLUE 8
+extern int maxwidth;
+
+void show_title_bar(void);
+void setup_windows(void);
+void initialize_curses(void);
+void show_acpi_power_line(double rate, double cap, double capdelta, time_t time);
+void show_pmu_power_line(unsigned sum_voltage_mV,
+ unsigned sum_charge_mAh, unsigned sum_max_charge_mAh,
+ int sum_discharge_mA);
+void show_cstates(void);
+void show_wakeups(double d, double interval, double c0time);
+void show_timerstats(int nostats, int ticktime);
+void show_suggestion(char *sug);
+
+void pick_suggestion(void);
+void add_suggestion(char *text, int weight, char key, char *keystring, suggestion_func *func);
+void reset_suggestions(void);
+void reset_suggestions2(void);
+void print_all_suggestions(void);
+void push_line(char *string, int count);
+void push_line_pid(char *string, int cpu_count, int disk_count, char *pid);
+
+
+void do_cpufreq_stats(void);
+void count_usb_urbs(void);
+void count_device_pm(void);
+
+void alsa_activity_hint(void);
+void display_alsa_activity(void);
+void do_alsa_stats(void);
+
+void ahci_activity_hint(void);
+void display_ahci_activity(void);
+void do_ahci_stats(void);
+
+
+
+void display_usb_activity(void);
+void display_runtime_activity(void);
+
+void activate_usb_autosuspend(void);
+void print_intel_cstates(void);
+
+void start_data_dirty_capture(void);
+void end_data_dirty_capture(void);
+void parse_data_dirty_buffer(void);
+
+
+void hda_power_on(void);
+void activate_alpm(void);
+
+void suggest_on_dmesg(char *string, char *comment, int weight);
+
+
+#endif