patch-2.4.6 linux/drivers/acpi/ospm/processor/pr_osl.c
Next file: linux/drivers/acpi/ospm/processor/prperf.c
Previous file: linux/drivers/acpi/ospm/processor/pr.c
Back to the patch index
Back to the overall index
- Lines: 306
- Date:
Wed Jun 20 17:47:40 2001
- Orig file:
v2.4.5/linux/drivers/acpi/ospm/processor/pr_osl.c
- Orig date:
Wed Dec 31 16:00:00 1969
diff -u --recursive --new-file v2.4.5/linux/drivers/acpi/ospm/processor/pr_osl.c linux/drivers/acpi/ospm/processor/pr_osl.c
@@ -0,0 +1,305 @@
+/******************************************************************************
+ *
+ * Module Name: pr_osl.c
+ * $Revision: 14 $
+ *
+ *****************************************************************************/
+
+/*
+ * Copyright (C) 2000, 2001 Andrew Grover
+ *
+ * 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.
+ *
+ * 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; if not, write to the Free Software
+ * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
+ */
+
+
+#include <linux/kernel.h>
+#include <linux/module.h>
+#include <linux/init.h>
+#include <linux/types.h>
+#include <linux/proc_fs.h>
+#include <acpi.h>
+#include <bm.h>
+#include "pr.h"
+
+
+MODULE_AUTHOR("Andrew Grover");
+MODULE_DESCRIPTION("ACPI Component Architecture (CA) - IA32 Processor Driver");
+
+
+#define PR_PROC_ROOT "processor"
+#define PR_PROC_STATUS "status"
+#define PR_PROC_INFO "info"
+
+extern struct proc_dir_entry *bm_proc_root;
+static struct proc_dir_entry *pr_proc_root = NULL;
+
+
+/****************************************************************************
+ *
+ * FUNCTION: pr_osl_proc_read_status
+ *
+ ****************************************************************************/
+
+static int
+pr_osl_proc_read_status (
+ char *page,
+ char **start,
+ off_t off,
+ int count,
+ int *eof,
+ void *context)
+{
+ PR_CONTEXT *processor = NULL;
+ char *p = page;
+ int len = 0;
+
+ if (!context || (off != 0)) {
+ goto end;
+ }
+
+ processor = (PR_CONTEXT*)context;
+
+ p += sprintf(p, "Bus Mastering Activity: %08x\n",
+ processor->power.bm_activity);
+
+ p += sprintf(p, "C-State Utilization: C1[%d] C2[%d] C3[%d]\n",
+ processor->power.state[PR_C1].utilization,
+ processor->power.state[PR_C2].utilization,
+ processor->power.state[PR_C3].utilization);
+
+end:
+ len = (p - page);
+ if (len <= off+count) *eof = 1;
+ *start = page + off;
+ len -= off;
+ if (len>count) len = count;
+ if (len<0) len = 0;
+
+ return(len);
+}
+
+
+/****************************************************************************
+ *
+ * FUNCTION: pr_osl_proc_read_info
+ *
+ ****************************************************************************/
+
+static int
+pr_osl_proc_read_info (
+ char *page,
+ char **start,
+ off_t off,
+ int count,
+ int *eof,
+ void *context)
+{
+ PR_CONTEXT *processor = NULL;
+ char *p = page;
+ int len = 0;
+
+ if (!context || (off != 0)) {
+ goto end;
+ }
+
+ processor = (PR_CONTEXT*)context;
+
+ p += sprintf(p, "<TBD>\n");
+
+end:
+ len = (p - page);
+ if (len <= off+count) *eof = 1;
+ *start = page + off;
+ len -= off;
+ if (len>count) len = count;
+ if (len<0) len = 0;
+
+ return(len);
+}
+
+
+/****************************************************************************
+ *
+ * FUNCTION: pr_osl_add_device
+ *
+ ****************************************************************************/
+
+ACPI_STATUS
+pr_osl_add_device(
+ PR_CONTEXT *processor)
+{
+ u32 i = 0;
+ struct proc_dir_entry *proc_entry = NULL;
+ char processor_uid[16];
+
+ if (!processor) {
+ return(AE_BAD_PARAMETER);
+ }
+
+ printk("Processor[%x]:", processor->uid);
+ for (i=0; i<processor->power.state_count; i++) {
+ if (processor->power.state[i].is_valid) {
+ printk(" C%d", i);
+ }
+ }
+
+ if (processor->performance.state_count > 1) {
+ printk(", throttling states: %d", processor->performance.state_count);
+ }
+
+ printk("\n");
+
+ sprintf(processor_uid, "%d", processor->uid);
+
+ proc_entry = proc_mkdir(processor_uid, pr_proc_root);
+ if (!proc_entry) {
+ return(AE_ERROR);
+ }
+
+ create_proc_read_entry(PR_PROC_STATUS, S_IFREG | S_IRUGO,
+ proc_entry, pr_osl_proc_read_status, (void*)processor);
+
+ create_proc_read_entry(PR_PROC_INFO, S_IFREG | S_IRUGO,
+ proc_entry, pr_osl_proc_read_info, (void*)processor);
+
+ return(AE_OK);
+}
+
+
+/****************************************************************************
+ *
+ * FUNCTION: pr_osl_remove_device
+ *
+ ****************************************************************************/
+
+ACPI_STATUS
+pr_osl_remove_device (
+ PR_CONTEXT *processor)
+{
+ char proc_entry[64];
+
+ if (!processor) {
+ return(AE_BAD_PARAMETER);
+ }
+
+ sprintf(proc_entry, "%d/%s", processor->uid, PR_PROC_INFO);
+ remove_proc_entry(proc_entry, pr_proc_root);
+
+ sprintf(proc_entry, "%d/%s", processor->uid, PR_PROC_STATUS);
+ remove_proc_entry(proc_entry, pr_proc_root);
+
+ sprintf(proc_entry, "%d", processor->uid);
+ remove_proc_entry(proc_entry, pr_proc_root);
+
+ return(AE_OK);
+}
+
+
+/****************************************************************************
+ *
+ * FUNCTION: pr_osl_generate_event
+ *
+ ****************************************************************************/
+
+ACPI_STATUS
+pr_osl_generate_event (
+ u32 event,
+ PR_CONTEXT *processor)
+{
+ ACPI_STATUS status = AE_OK;
+ char processor_uid[16];
+
+ if (!processor) {
+ return(AE_BAD_PARAMETER);
+ }
+
+ switch (event) {
+
+ case PR_NOTIFY_PERF_STATES:
+ case PR_NOTIFY_POWER_STATES:
+ sprintf(processor_uid, "%d", processor->uid);
+ status = bm_osl_generate_event(processor->device_handle,
+ PR_PROC_ROOT, processor_uid, event, 0);
+ break;
+
+ default:
+ return(AE_BAD_PARAMETER);
+ break;
+ }
+
+ return(status);
+}
+
+
+/****************************************************************************
+ *
+ * FUNCTION: pr_osl_init
+ *
+ * PARAMETERS: <none>
+ *
+ * RETURN: 0: Success
+ *
+ * DESCRIPTION: Module initialization.
+ *
+ ****************************************************************************/
+
+static int __init
+pr_osl_init (void)
+{
+ ACPI_STATUS status = AE_OK;
+
+ pr_proc_root = proc_mkdir(PR_PROC_ROOT, bm_proc_root);
+ if (!pr_proc_root) {
+ status = AE_ERROR;
+ }
+ else {
+ status = pr_initialize();
+ if (ACPI_FAILURE(status)) {
+ remove_proc_entry(PR_PROC_ROOT, bm_proc_root);
+ }
+
+ }
+
+ return (ACPI_SUCCESS(status)) ? 0 : -ENODEV;
+}
+
+
+/****************************************************************************
+ *
+ * FUNCTION: pr_osl_cleanup
+ *
+ * PARAMETERS: <none>
+ *
+ * RETURN: <none>
+ *
+ * DESCRIPTION: Module cleanup.
+ *
+ ****************************************************************************/
+
+static void __exit
+pr_osl_cleanup (void)
+{
+ pr_terminate();
+
+ if (pr_proc_root) {
+ remove_proc_entry(PR_PROC_ROOT, bm_proc_root);
+ }
+
+ return;
+}
+
+
+module_init(pr_osl_init);
+module_exit(pr_osl_cleanup);
FUNET's LINUX-ADM group, linux-adm@nic.funet.fi
TCL-scripts by Sam Shen (who was at: slshen@lbl.gov)