15 #include <linux/errno.h>
16 #include <linux/sched.h>
18 #include <linux/stat.h>
19 #include <linux/ctype.h>
20 #include <linux/time.h>
21 #include <linux/string.h>
24 #include <linux/bitops.h>
25 #include <linux/rtc.h>
27 #include <asm/uaccess.h>
28 #include <asm/processor.h>
32 #include <asm/machdep.h>
36 #define KEY_SWITCH 0x0001
37 #define ENCLOSURE_SWITCH 0x0002
38 #define THERMAL_SENSOR 0x0003
39 #define LID_STATUS 0x0004
40 #define POWER_SOURCE 0x0005
41 #define BATTERY_VOLTAGE 0x0006
42 #define BATTERY_REMAINING 0x0007
43 #define BATTERY_PERCENTAGE 0x0008
44 #define EPOW_SENSOR 0x0009
45 #define BATTERY_CYCLESTATE 0x000a
46 #define BATTERY_CHARGING 0x000b
49 #define IBM_SURVEILLANCE 0x2328
50 #define IBM_FANRPM 0x2329
51 #define IBM_VOLTAGE 0x232a
52 #define IBM_DRCONNECTOR 0x232b
53 #define IBM_POWERSUPPLY 0x232c
56 #define SENSOR_CRITICAL_HIGH 13
57 #define SENSOR_WARNING_HIGH 12
58 #define SENSOR_NORMAL 11
59 #define SENSOR_WARNING_LOW 10
60 #define SENSOR_CRITICAL_LOW 9
61 #define SENSOR_SUCCESS 0
62 #define SENSOR_HW_ERROR -1
63 #define SENSOR_BUSY -2
64 #define SENSOR_NOT_EXIST -3
65 #define SENSOR_DR_ENTITY -9000
68 #define LOC_SCSI_DEV_ADDR 'A'
69 #define LOC_SCSI_DEV_LOC 'B'
71 #define LOC_DISKETTE 'D'
72 #define LOC_ETHERNET 'E'
74 #define LOC_GRAPHICS 'G'
76 #define LOC_IO_ADAPTER 'I'
78 #define LOC_KEYBOARD 'K'
80 #define LOC_MEMORY 'M'
81 #define LOC_NV_MEMORY 'N'
83 #define LOC_PLANAR 'P'
84 #define LOC_OTHER_IO 'Q'
85 #define LOC_PARALLEL 'R'
86 #define LOC_SERIAL 'S'
87 #define LOC_DEAD_RING 'T'
88 #define LOC_RACKMOUNTED 'U'
89 #define LOC_VOLTAGE 'V'
90 #define LOC_SWITCH_ADAPTER 'W'
92 #define LOC_FIRMWARE 'Y'
96 #define TONE_FREQUENCY 0x0001
97 #define TONE_VOLUME 0x0002
98 #define SYSTEM_POWER_STATE 0x0003
99 #define WARNING_LIGHT 0x0004
100 #define DISK_ACTIVITY_LIGHT 0x0005
101 #define HEX_DISPLAY_UNIT 0x0006
102 #define BATTERY_WARNING_TIME 0x0007
103 #define CONDITION_CYCLE_REQUEST 0x0008
104 #define SURVEILLANCE_INDICATOR 0x2328
105 #define DR_ACTION 0x2329
106 #define DR_INDICATOR 0x232a
111 #define MAX_SENSORS 17
112 #define MAX_LINELENGTH 256
113 #define SENSOR_PREFIX "ibm,sensor-"
114 #define cel_to_fahr(x) ((x*9/5)+32)
120 static unsigned long power_on_time = 0;
123 static unsigned long rtas_tone_frequency = 1000;
124 static unsigned long rtas_tone_volume = 0;
139 static int ppc_rtas_sensors_show(
struct seq_file *
m,
void *
v);
140 static int ppc_rtas_clock_show(
struct seq_file *
m,
void *
v);
142 const char __user *
buf,
size_t count, loff_t *ppos);
143 static int ppc_rtas_progress_show(
struct seq_file *
m,
void *
v);
145 const char __user *
buf,
size_t count, loff_t *ppos);
146 static int ppc_rtas_poweron_show(
struct seq_file *
m,
void *
v);
148 const char __user *
buf,
size_t count, loff_t *ppos);
151 const char __user *
buf,
size_t count, loff_t *ppos);
152 static int ppc_rtas_tone_freq_show(
struct seq_file *
m,
void *
v);
154 const char __user *
buf,
size_t count, loff_t *ppos);
155 static int ppc_rtas_tone_volume_show(
struct seq_file *
m,
void *
v);
156 static int ppc_rtas_rmo_buf_show(
struct seq_file *
m,
void *
v);
164 .open = sensors_open,
176 .open = poweron_open,
179 .write = ppc_rtas_poweron_write,
189 .open = progress_open,
192 .write = ppc_rtas_progress_write,
205 .write = ppc_rtas_clock_write,
215 .open = tone_freq_open,
218 .write = ppc_rtas_tone_freq_write,
227 static const struct file_operations ppc_rtas_tone_volume_operations = {
228 .open = tone_volume_open,
231 .write = ppc_rtas_tone_volume_write,
241 .open = rmo_buf_open,
247 static int ppc_rtas_find_all_sensors(
void);
248 static void ppc_rtas_process_sensor(
struct seq_file *
m,
250 static char *ppc_rtas_process_error(
int error);
251 static void get_location_code(
struct seq_file *
m,
253 static void check_location_string(
struct seq_file *
m,
const char *
c);
254 static void check_location(
struct seq_file *
m,
const char *
c);
256 static int __init proc_rtas_init(
void)
258 if (!machine_is(pseries))
262 if (rtas_node ==
NULL)
266 &ppc_rtas_progress_operations);
268 &ppc_rtas_clock_operations);
270 &ppc_rtas_poweron_operations);
272 &ppc_rtas_sensors_operations);
274 &ppc_rtas_tone_freq_operations);
276 &ppc_rtas_tone_volume_operations);
277 proc_create(
"powerpc/rtas/rmo_buffer",
S_IRUSR,
NULL,
278 &ppc_rtas_rmo_buf_ops);
284 static int parse_number(
const char __user *
p,
size_t count,
unsigned long *
val)
298 if (*end && *end !=
'\n')
308 const char __user *buf,
size_t count, loff_t *ppos)
311 unsigned long nowtime;
312 int error = parse_number(buf, count, &nowtime);
316 power_on_time = nowtime;
325 ppc_rtas_process_error(error));
329 static int ppc_rtas_poweron_show(
struct seq_file *
m,
void *
v)
331 if (power_on_time == 0)
341 static ssize_t ppc_rtas_progress_write(
struct file *file,
342 const char __user *buf,
size_t count, loff_t *ppos)
351 progress_led[
count] = 0;
363 static int ppc_rtas_progress_show(
struct seq_file *m,
void *v)
373 static ssize_t ppc_rtas_clock_write(
struct file *file,
374 const char __user *buf,
size_t count, loff_t *ppos)
377 unsigned long nowtime;
378 int error = parse_number(buf, count, &nowtime);
388 ppc_rtas_process_error(error));
392 static int ppc_rtas_clock_show(
struct seq_file *m,
void *v)
399 ppc_rtas_process_error(error));
403 year = ret[0]; mon = ret[1]; day = ret[2];
404 hour = ret[3]; min = ret[4]; sec = ret[5];
406 mktime(year, mon, day, hour, min, sec));
414 static int ppc_rtas_sensors_show(
struct seq_file *m,
void *v)
418 int get_sensor_state =
rtas_token(
"get-sensor-state");
420 seq_printf(m,
"RTAS (RunTime Abstraction Services) Sensor Information\n");
421 seq_printf(m,
"Sensor\t\tValue\t\tCondition\tLocation\n");
422 seq_printf(m,
"********************************************************\n");
424 if (ppc_rtas_find_all_sensors() != 0) {
425 seq_printf(m,
"\nNo sensors are available\n");
429 for (i=0; i<
sensors.quant; i++) {
439 for (j = 0, offs = 0; j <= p->
quant; j++) {
440 error =
rtas_call(get_sensor_state, 2, 2, &state,
443 ppc_rtas_process_sensor(m, p, state, error, loc);
458 static int ppc_rtas_find_all_sensors(
void)
460 const unsigned int *utmp;
471 for (i=0; i<
sensors.quant; i++) {
482 static char *ppc_rtas_process_error(
int error)
486 return "(critical high)";
488 return "(warning high)";
492 return "(warning low)";
494 return "(critical low)";
498 return "(hardware error)";
502 return "(non existent)";
504 return "(dr entity removed)";
515 static void ppc_rtas_process_sensor(
struct seq_file *m,
519 const char * key_switch[] = {
"Off\t",
"Normal\t",
"Secure\t",
521 const char * enclosure_switch[] = {
"Closed",
"Open" };
522 const char * lid_status[] = {
" ",
"Open",
"Closed" };
523 const char * power_source[] = {
"AC\t",
"Battery",
525 const char * battery_remaining[] = {
"Very Low",
"Low",
"Mid",
"High" };
526 const char * epow_sensor[] = {
527 "EPOW Reset",
"Cooling warning",
"Power warning",
528 "System shutdown",
"System halt",
"EPOW main enclosure",
530 const char * battery_cyclestate[] = {
"None",
"In progress",
532 const char * battery_charging[] = {
"Charging",
"Discharching",
534 const char * ibm_drconnector[] = {
"Empty",
"Present",
"Unusable",
537 int have_strings = 0;
547 num_states =
sizeof(key_switch) /
sizeof(
char *);
548 if (state < num_states) {
555 num_states =
sizeof(enclosure_switch) /
sizeof(
char *);
556 if (state < num_states) {
558 enclosure_switch[state]);
568 num_states =
sizeof(lid_status) /
sizeof(
char *);
569 if (state < num_states) {
576 num_states =
sizeof(power_source) /
sizeof(
char *);
577 if (state < num_states) {
579 power_source[state]);
588 num_states =
sizeof(battery_remaining) /
sizeof(
char *);
589 if (state < num_states)
592 battery_remaining[state]);
601 num_states =
sizeof(epow_sensor) /
sizeof(
char *);
602 if (state < num_states) {
609 num_states =
sizeof(battery_cyclestate) /
611 if (state < num_states) {
613 battery_cyclestate[state]);
619 num_states =
sizeof(battery_charging) /
sizeof(
char *);
620 if (state < num_states) {
622 battery_charging[state]);
637 num_states =
sizeof(ibm_drconnector) /
sizeof(
char *);
638 if (state < num_states) {
640 ibm_drconnector[state]);
648 seq_printf(m,
"Unknown sensor (type %d), ignoring it\n",
654 if (have_strings == 0) {
661 seq_printf(m,
"%s\t", ppc_rtas_process_error(error));
662 get_location_code(m, s, loc);
668 static void check_location(
struct seq_file *m,
const char *
c)
705 static void check_location_string(
struct seq_file *m,
const char *c)
709 check_location(m, c);
710 else if (*c ==
'/' || *c ==
'-')
725 check_location_string(m, loc);
732 static ssize_t ppc_rtas_tone_freq_write(
struct file *file,
733 const char __user *buf,
size_t count, loff_t *ppos)
736 int error = parse_number(buf, count, &freq);
740 rtas_tone_frequency =
freq;
745 ppc_rtas_process_error(error));
749 static int ppc_rtas_tone_freq_show(
struct seq_file *m,
void *v)
757 static ssize_t ppc_rtas_tone_volume_write(
struct file *file,
758 const char __user *buf,
size_t count, loff_t *ppos)
761 int error = parse_number(buf, count, &volume);
768 rtas_tone_volume =
volume;
773 ppc_rtas_process_error(error));
777 static int ppc_rtas_tone_volume_show(
struct seq_file *m,
void *v)
783 #define RMO_READ_BUF_MAX 30
786 static int ppc_rtas_rmo_buf_show(
struct seq_file *m,
void *v)