proc_rtas.c
上传用户:jlfgdled
上传日期:2013-04-10
资源大小:33168k
文件大小:22k
源码类别:

Linux/Unix编程

开发平台:

Unix_Linux

  1. /*
  2.  * BK Id: SCCS/s.proc_rtas.c 1.5 05/17/01 18:14:22 cort
  3.  */
  4. /*
  5.  *   arch/ppc/kernel/proc_rtas.c
  6.  *   Copyright (C) 2000 Tilmann Bitterberg
  7.  *   (tilmann@bitterberg.de)
  8.  *
  9.  *   RTAS (Runtime Abstraction Services) stuff
  10.  *   Intention is to provide a clean user interface
  11.  *   to use the RTAS.
  12.  *
  13.  *   TODO:
  14.  *   Split off a header file and maybe move it to a different
  15.  *   location. Write Documentation on what the /proc/rtas/ entries
  16.  *   actually do.
  17.  */
  18. #include <linux/errno.h>
  19. #include <linux/sched.h>
  20. #include <linux/proc_fs.h>
  21. #include <linux/stat.h>
  22. #include <linux/ctype.h>
  23. #include <linux/time.h>
  24. #include <linux/string.h>
  25. #include <asm/uaccess.h>
  26. #include <asm/bitops.h>
  27. #include <asm/processor.h>
  28. #include <asm/io.h>
  29. #include <asm/prom.h>
  30. #include <asm/machdep.h> /* for ppc_md */
  31. #include <asm/time.h>
  32. /* Token for Sensors */
  33. #define KEY_SWITCH 0x0001
  34. #define ENCLOSURE_SWITCH 0x0002
  35. #define THERMAL_SENSOR 0x0003
  36. #define LID_STATUS 0x0004
  37. #define POWER_SOURCE 0x0005
  38. #define BATTERY_VOLTAGE 0x0006
  39. #define BATTERY_REMAINING 0x0007
  40. #define BATTERY_PERCENTAGE 0x0008
  41. #define EPOW_SENSOR 0x0009
  42. #define BATTERY_CYCLESTATE 0x000a
  43. #define BATTERY_CHARGING 0x000b
  44. /* IBM specific sensors */
  45. #define IBM_SURVEILLANCE 0x2328 /* 9000 */
  46. #define IBM_FANRPM 0x2329 /* 9001 */
  47. #define IBM_VOLTAGE 0x232a /* 9002 */
  48. #define IBM_DRCONNECTOR 0x232b /* 9003 */
  49. #define IBM_POWERSUPPLY 0x232c /* 9004 */
  50. #define IBM_INTQUEUE 0x232d /* 9005 */
  51. /* Status return values */
  52. #define SENSOR_CRITICAL_HIGH 13
  53. #define SENSOR_WARNING_HIGH 12
  54. #define SENSOR_NORMAL 11
  55. #define SENSOR_WARNING_LOW 10
  56. #define SENSOR_CRITICAL_LOW  9
  57. #define SENSOR_SUCCESS  0
  58. #define SENSOR_HW_ERROR -1
  59. #define SENSOR_BUSY -2
  60. #define SENSOR_NOT_EXIST -3
  61. #define SENSOR_DR_ENTITY -9000
  62. /* Location Codes */
  63. #define LOC_SCSI_DEV_ADDR 'A'
  64. #define LOC_SCSI_DEV_LOC 'B'
  65. #define LOC_CPU 'C'
  66. #define LOC_DISKETTE 'D'
  67. #define LOC_ETHERNET 'E'
  68. #define LOC_FAN 'F'
  69. #define LOC_GRAPHICS 'G'
  70. /* reserved / not used 'H' */
  71. #define LOC_IO_ADAPTER 'I'
  72. /* reserved / not used 'J' */
  73. #define LOC_KEYBOARD 'K'
  74. #define LOC_LCD 'L'
  75. #define LOC_MEMORY 'M'
  76. #define LOC_NV_MEMORY 'N'
  77. #define LOC_MOUSE 'O'
  78. #define LOC_PLANAR 'P'
  79. #define LOC_OTHER_IO 'Q'
  80. #define LOC_PARALLEL 'R'
  81. #define LOC_SERIAL 'S'
  82. #define LOC_DEAD_RING 'T'
  83. #define LOC_RACKMOUNTED 'U' /* for _u_nit is rack mounted */
  84. #define LOC_VOLTAGE 'V'
  85. #define LOC_SWITCH_ADAPTER 'W'
  86. #define LOC_OTHER 'X'
  87. #define LOC_FIRMWARE 'Y'
  88. #define LOC_SCSI 'Z'
  89. /* Tokens for indicators */
  90. #define TONE_FREQUENCY 0x0001 /* 0 - 1000 (HZ)*/
  91. #define TONE_VOLUME 0x0002 /* 0 - 100 (%) */
  92. #define SYSTEM_POWER_STATE 0x0003 
  93. #define WARNING_LIGHT 0x0004
  94. #define DISK_ACTIVITY_LIGHT 0x0005
  95. #define HEX_DISPLAY_UNIT 0x0006
  96. #define BATTERY_WARNING_TIME 0x0007
  97. #define CONDITION_CYCLE_REQUEST 0x0008
  98. #define SURVEILLANCE_INDICATOR 0x2328 /* 9000 */
  99. #define DR_ACTION 0x2329 /* 9001 */
  100. #define DR_INDICATOR 0x232a /* 9002 */
  101. /* 9003 - 9004: Vendor specific */
  102. #define GLOBAL_INTERRUPT_QUEUE 0x232d /* 9005 */
  103. /* 9006 - 9999: Vendor specific */
  104. /* other */
  105. #define MAX_SENSORS  17  /* I only know of 17 sensors */    
  106. #define MAX_LINELENGTH          256
  107. #define SENSOR_PREFIX "ibm,sensor-"
  108. #define cel_to_fahr(x) ((x*9/5)+32)
  109. /* Globals */
  110. static struct proc_dir_entry *proc_rtas;
  111. static struct rtas_sensors sensors;
  112. static struct device_node *rtas;
  113. static unsigned long power_on_time = 0; /* Save the time the user set */
  114. static char progress_led[MAX_LINELENGTH];
  115. static unsigned long rtas_tone_frequency = 1000;
  116. static unsigned long rtas_tone_volume = 0;
  117. /* ****************STRUCTS******************************************* */
  118. struct individual_sensor {
  119. unsigned int token;
  120. unsigned int quant;
  121. };
  122. struct rtas_sensors {
  123.         struct individual_sensor sensor[MAX_SENSORS];
  124. unsigned int quant;
  125. };
  126. /* ****************************************************************** */
  127. /* Declarations */
  128. static int ppc_rtas_sensor_read(char * buf, char ** start, off_t off,
  129. int count, int *eof, void *data);
  130. static ssize_t ppc_rtas_clock_read(struct file * file, char * buf, 
  131. size_t count, loff_t *ppos);
  132. static ssize_t ppc_rtas_clock_write(struct file * file, const char * buf, 
  133. size_t count, loff_t *ppos);
  134. static ssize_t ppc_rtas_progress_read(struct file * file, char * buf,
  135. size_t count, loff_t *ppos);
  136. static ssize_t ppc_rtas_progress_write(struct file * file, const char * buf,
  137. size_t count, loff_t *ppos);
  138. static ssize_t ppc_rtas_poweron_read(struct file * file, char * buf,
  139. size_t count, loff_t *ppos);
  140. static ssize_t ppc_rtas_poweron_write(struct file * file, const char * buf,
  141. size_t count, loff_t *ppos);
  142. static ssize_t ppc_rtas_tone_freq_write(struct file * file, const char * buf,
  143. size_t count, loff_t *ppos);
  144. static ssize_t ppc_rtas_tone_freq_read(struct file * file, char * buf,
  145. size_t count, loff_t *ppos);
  146. static ssize_t ppc_rtas_tone_volume_write(struct file * file, const char * buf,
  147. size_t count, loff_t *ppos);
  148. static ssize_t ppc_rtas_tone_volume_read(struct file * file, char * buf,
  149. size_t count, loff_t *ppos);
  150. struct file_operations ppc_rtas_poweron_operations = {
  151. read: ppc_rtas_poweron_read,
  152. write: ppc_rtas_poweron_write
  153. };
  154. struct file_operations ppc_rtas_progress_operations = {
  155. read: ppc_rtas_progress_read,
  156. write: ppc_rtas_progress_write
  157. };
  158. struct file_operations ppc_rtas_clock_operations = {
  159. read: ppc_rtas_clock_read,
  160. write: ppc_rtas_clock_write
  161. };
  162. struct file_operations ppc_rtas_tone_freq_operations = {
  163. read: ppc_rtas_tone_freq_read,
  164. write: ppc_rtas_tone_freq_write
  165. };
  166. struct file_operations ppc_rtas_tone_volume_operations = {
  167. read: ppc_rtas_tone_volume_read,
  168. write: ppc_rtas_tone_volume_write
  169. };
  170. int ppc_rtas_find_all_sensors (void);
  171. int ppc_rtas_process_sensor(struct individual_sensor s, int state, 
  172. int error, char * buf);
  173. char * ppc_rtas_process_error(int error);
  174. int get_location_code(struct individual_sensor s, char * buf);
  175. int check_location_string (char *c, char * buf);
  176. int check_location (char *c, int idx, char * buf);
  177. /* ****************************************************************** */
  178. /* MAIN                                                               */
  179. /* ****************************************************************** */
  180. void proc_rtas_init(void)
  181. {
  182. struct proc_dir_entry *entry;
  183. rtas = find_devices("rtas");
  184. if ((rtas == 0) || (_machine != _MACH_chrp)) {
  185. return;
  186. }
  187. proc_rtas = proc_mkdir("rtas", 0);
  188. if (proc_rtas == 0)
  189. return;
  190. /* /proc/rtas entries */
  191. entry = create_proc_entry("progress", S_IRUGO|S_IWUSR, proc_rtas);
  192. if (entry) entry->proc_fops = &ppc_rtas_progress_operations;
  193. entry = create_proc_entry("clock", S_IRUGO|S_IWUSR, proc_rtas); 
  194. if (entry) entry->proc_fops = &ppc_rtas_clock_operations;
  195. entry = create_proc_entry("poweron", S_IWUSR|S_IRUGO, proc_rtas); 
  196. if (entry) entry->proc_fops = &ppc_rtas_poweron_operations;
  197. create_proc_read_entry("sensors", S_IRUGO, proc_rtas, 
  198. ppc_rtas_sensor_read, NULL);
  199. entry = create_proc_entry("frequency", S_IWUSR|S_IRUGO, proc_rtas); 
  200. if (entry) entry->proc_fops = &ppc_rtas_tone_freq_operations;
  201. entry = create_proc_entry("volume", S_IWUSR|S_IRUGO, proc_rtas); 
  202. if (entry) entry->proc_fops = &ppc_rtas_tone_volume_operations;
  203. }
  204. /* ****************************************************************** */
  205. /* POWER-ON-TIME                                                      */
  206. /* ****************************************************************** */
  207. static ssize_t ppc_rtas_poweron_write(struct file * file, const char * buf,
  208. size_t count, loff_t *ppos)
  209. {
  210. struct rtc_time tm;
  211. unsigned long nowtime;
  212. char *dest;
  213. int error;
  214. nowtime = simple_strtoul(buf, &dest, 10);
  215. if (*dest != '' && *dest != 'n') {
  216. printk("ppc_rtas_poweron_write: Invalid timen");
  217. return count;
  218. }
  219. power_on_time = nowtime; /* save the time */
  220. to_tm(nowtime, &tm);
  221. error = call_rtas("set-time-for-power-on", 7, 1, NULL, 
  222. tm.tm_year, tm.tm_mon, tm.tm_mday, 
  223. tm.tm_hour, tm.tm_min, tm.tm_sec, 0 /* nano */);
  224. if (error != 0)
  225. printk(KERN_WARNING "error: setting poweron time returned: %sn", 
  226. ppc_rtas_process_error(error));
  227. return count;
  228. }
  229. /* ****************************************************************** */
  230. static ssize_t ppc_rtas_poweron_read(struct file * file, char * buf,
  231. size_t count, loff_t *ppos)
  232. {
  233. int n;
  234. if (power_on_time == 0)
  235. n = sprintf(buf, "Power on time not setn");
  236. else
  237. n = sprintf(buf, "%lun", power_on_time);
  238. if (*ppos >= strlen(buf))
  239. return 0;
  240. if (n > strlen(buf) - *ppos)
  241. n = strlen(buf) - *ppos;
  242. if (n > count)
  243. n = count;
  244. *ppos += n;
  245. return n;
  246. }
  247. /* ****************************************************************** */
  248. /* PROGRESS                                                           */
  249. /* ****************************************************************** */
  250. static ssize_t ppc_rtas_progress_write(struct file * file, const char * buf,
  251. size_t count, loff_t *ppos)
  252. {
  253. unsigned long hex;
  254. strcpy(progress_led, buf); /* save the string */
  255. /* Lets see if the user passed hexdigits */
  256. hex = simple_strtoul(buf, NULL, 10);
  257. ppc_md.progress ((char *)buf, hex);
  258. return count;
  259. /* clear the line */ /* ppc_md.progress("                   ", 0xffff);*/
  260. }
  261. /* ****************************************************************** */
  262. static ssize_t ppc_rtas_progress_read(struct file * file, char * buf,
  263. size_t count, loff_t *ppos)
  264. {
  265. int n = 0;
  266. if (progress_led != NULL)
  267. n = sprintf (buf, "%sn", progress_led);
  268. if (*ppos >= strlen(buf))
  269. return 0;
  270. if (n > strlen(buf) - *ppos)
  271. n = strlen(buf) - *ppos;
  272. if (n > count)
  273. n = count;
  274. *ppos += n;
  275. return n;
  276. }
  277. /* ****************************************************************** */
  278. /* CLOCK                                                              */
  279. /* ****************************************************************** */
  280. static ssize_t ppc_rtas_clock_write(struct file * file, const char * buf, 
  281. size_t count, loff_t *ppos)
  282. {
  283. struct rtc_time tm;
  284. unsigned long nowtime;
  285. char *dest;
  286. int error;
  287. nowtime = simple_strtoul(buf, &dest, 10);
  288. if (*dest != '' && *dest != 'n') {
  289. printk("ppc_rtas_clock_write: Invalid timen");
  290. return count;
  291. }
  292. to_tm(nowtime, &tm);
  293. error = call_rtas("set-time-of-day", 7, 1, NULL, 
  294. tm.tm_year, tm.tm_mon, tm.tm_mday, 
  295. tm.tm_hour, tm.tm_min, tm.tm_sec, 0);
  296. if (error != 0)
  297. printk(KERN_WARNING "error: setting the clock returned: %sn", 
  298. ppc_rtas_process_error(error));
  299. return count;
  300. }
  301. /* ****************************************************************** */
  302. static ssize_t ppc_rtas_clock_read(struct file * file, char * buf, 
  303. size_t count, loff_t *ppos)
  304. {
  305. unsigned int year, mon, day, hour, min, sec;
  306. unsigned long *ret = kmalloc(4*8, GFP_KERNEL);
  307. int n, error;
  308. error = call_rtas("get-time-of-day", 0, 8, ret);
  309. year = ret[0]; mon  = ret[1]; day  = ret[2];
  310. hour = ret[3]; min  = ret[4]; sec  = ret[5];
  311. if (error != 0){
  312. printk(KERN_WARNING "error: reading the clock returned: %sn", 
  313. ppc_rtas_process_error(error));
  314. n = sprintf (buf, "0");
  315. } else { 
  316. n = sprintf (buf, "%lun", mktime(year, mon, day, hour, min, sec));
  317. }
  318. kfree(ret);
  319. if (*ppos >= strlen(buf))
  320. return 0;
  321. if (n > strlen(buf) - *ppos)
  322. n = strlen(buf) - *ppos;
  323. if (n > count)
  324. n = count;
  325. *ppos += n;
  326. return n;
  327. }
  328. /* ****************************************************************** */
  329. /* SENSOR STUFF                                                       */
  330. /* ****************************************************************** */
  331. static int ppc_rtas_sensor_read(char * buf, char ** start, off_t off,
  332. int count, int *eof, void *data)
  333. {
  334. int i,j,n;
  335. unsigned long ret;
  336. int state, error;
  337. char buffer[MAX_LINELENGTH*MAX_SENSORS]; /* May not be enough */
  338. if (count < 0)
  339. return -EINVAL;
  340. n  = sprintf ( buffer  , "RTAS (RunTime Abstraction Services) Sensor Informationn");
  341. n += sprintf ( buffer+n, "SensorttValuettConditiontLocationn");
  342. n += sprintf ( buffer+n, "********************************************************n");
  343. if (ppc_rtas_find_all_sensors() != 0) {
  344. n += sprintf ( buffer+n, "nNo sensors are availablen");
  345. goto return_string;
  346. }
  347. for (i=0; i<sensors.quant; i++) {
  348. j = sensors.sensor[i].quant;
  349. /* A sensor may have multiple instances */
  350. while (j >= 0) {
  351. error = call_rtas("get-sensor-state", 2, 2, &ret, 
  352.   sensors.sensor[i].token, sensors.sensor[i].quant-j);
  353. state = (int) ret;
  354. n += ppc_rtas_process_sensor(sensors.sensor[i], state, error, buffer+n );
  355. n += sprintf (buffer+n, "n");
  356. j--;
  357. } /* while */
  358. } /* for */
  359. return_string:
  360. if (off >= strlen(buffer)) {
  361. *eof = 1;
  362. return 0;
  363. }
  364. if (n > strlen(buffer) - off)
  365. n = strlen(buffer) - off;
  366. if (n > count)
  367. n = count;
  368. else
  369. *eof = 1;
  370. memcpy(buf, buffer + off, n);
  371. *start = buf;
  372. return n;
  373. }
  374. /* ****************************************************************** */
  375. int ppc_rtas_find_all_sensors (void)
  376. {
  377. unsigned long *utmp;
  378. int len, i, j;
  379. utmp = (unsigned long *) get_property(rtas, "rtas-sensors", &len);
  380. if (utmp == NULL) {
  381. printk (KERN_ERR "error: could not get rtas-sensorsn");
  382. return 1;
  383. }
  384. sensors.quant = len / 8;      /* int + int */
  385. for (i=0, j=0; j<sensors.quant; i+=2, j++) {
  386. sensors.sensor[j].token = utmp[i];
  387. sensors.sensor[j].quant = utmp[i+1];
  388. }
  389. return 0;
  390. }
  391. /* ****************************************************************** */
  392. /*
  393.  * Builds a string of what rtas returned
  394.  */
  395. char * ppc_rtas_process_error(int error)
  396. {
  397. switch (error) {
  398. case SENSOR_CRITICAL_HIGH:
  399. return "(critical high)";
  400. case SENSOR_WARNING_HIGH:
  401. return "(warning high)";
  402. case SENSOR_NORMAL:
  403. return "(normal)";
  404. case SENSOR_WARNING_LOW:
  405. return "(warning low)";
  406. case SENSOR_CRITICAL_LOW:
  407. return "(critical low)";
  408. case SENSOR_SUCCESS:
  409. return "(read ok)";
  410. case SENSOR_HW_ERROR:
  411. return "(hardware error)";
  412. case SENSOR_BUSY:
  413. return "(busy)";
  414. case SENSOR_NOT_EXIST:
  415. return "(non existant)";
  416. case SENSOR_DR_ENTITY:
  417. return "(dr entity removed)";
  418. default:
  419. return "(UNKNOWN)";
  420. }
  421. }
  422. /* ****************************************************************** */
  423. /*
  424.  * Builds a string out of what the sensor said
  425.  */
  426. int ppc_rtas_process_sensor(struct individual_sensor s, int state, 
  427. int error, char * buf) 
  428. {
  429. /* Defined return vales */
  430. const char * key_switch[]        = { "Offt", "Normalt", "Securet", "Mainenance" };
  431. const char * enclosure_switch[]  = { "Closed", "Open" };
  432. const char * lid_status[]        = { " ", "Open", "Closed" };
  433. const char * power_source[]      = { "ACt", "Battery", "AC & Battery" };
  434. const char * battery_remaining[] = { "Very Low", "Low", "Mid", "High" };
  435. const char * epow_sensor[]       = { 
  436. "EPOW Reset", "Cooling warning", "Power warning",
  437. "System shutdown", "System halt", "EPOW main enclosure",
  438. "EPOW power off" };
  439. const char * battery_cyclestate[]  = { "None", "In progress", "Requested" };
  440. const char * battery_charging[]    = { "Charging", "Discharching", "No current flow" };
  441. const char * ibm_drconnector[]     = { "Empty", "Present" };
  442. const char * ibm_intqueue[]        = { "Disabled", "Enabled" };
  443. int have_strings = 0;
  444. int temperature = 0;
  445. int unknown = 0;
  446. int n = 0;
  447. /* What kind of sensor do we have here? */
  448. switch (s.token) {
  449. case KEY_SWITCH:
  450. n += sprintf(buf+n, "Key switch:t");
  451. n += sprintf(buf+n, "%st", key_switch[state]);
  452. have_strings = 1;
  453. break;
  454. case ENCLOSURE_SWITCH:
  455. n += sprintf(buf+n, "Enclosure switch:t");
  456. n += sprintf(buf+n, "%st", enclosure_switch[state]);
  457. have_strings = 1;
  458. break;
  459. case THERMAL_SENSOR:
  460. n += sprintf(buf+n, "Temp. (癈/癋):t");
  461. temperature = 1;
  462. break;
  463. case LID_STATUS:
  464. n += sprintf(buf+n, "Lid status:t");
  465. n += sprintf(buf+n, "%st", lid_status[state]);
  466. have_strings = 1;
  467. break;
  468. case POWER_SOURCE:
  469. n += sprintf(buf+n, "Power source:t");
  470. n += sprintf(buf+n, "%st", power_source[state]);
  471. have_strings = 1;
  472. break;
  473. case BATTERY_VOLTAGE:
  474. n += sprintf(buf+n, "Battery voltage:t");
  475. break;
  476. case BATTERY_REMAINING:
  477. n += sprintf(buf+n, "Battery remaining:t");
  478. n += sprintf(buf+n, "%st", battery_remaining[state]);
  479. have_strings = 1;
  480. break;
  481. case BATTERY_PERCENTAGE:
  482. n += sprintf(buf+n, "Battery percentage:t");
  483. break;
  484. case EPOW_SENSOR:
  485. n += sprintf(buf+n, "EPOW Sensor:t");
  486. n += sprintf(buf+n, "%st", epow_sensor[state]);
  487. have_strings = 1;
  488. break;
  489. case BATTERY_CYCLESTATE:
  490. n += sprintf(buf+n, "Battery cyclestate:t");
  491. n += sprintf(buf+n, "%st", battery_cyclestate[state]);
  492. have_strings = 1;
  493. break;
  494. case BATTERY_CHARGING:
  495. n += sprintf(buf+n, "Battery Charging:t");
  496. n += sprintf(buf+n, "%st", battery_charging[state]);
  497. have_strings = 1;
  498. break;
  499. case IBM_SURVEILLANCE:
  500. n += sprintf(buf+n, "Surveillance:t");
  501. break;
  502. case IBM_FANRPM:
  503. n += sprintf(buf+n, "Fan (rpm):t");
  504. break;
  505. case IBM_VOLTAGE:
  506. n += sprintf(buf+n, "Voltage (mv):t");
  507. break;
  508. case IBM_DRCONNECTOR:
  509. n += sprintf(buf+n, "DR connector:t");
  510. n += sprintf(buf+n, "%st", ibm_drconnector[state]);
  511. have_strings = 1;
  512. break;
  513. case IBM_POWERSUPPLY:
  514. n += sprintf(buf+n, "Powersupply:t");
  515. break;
  516. case IBM_INTQUEUE:
  517. n += sprintf(buf+n, "Interrupt queue:t");
  518. n += sprintf(buf+n, "%st", ibm_intqueue[state]);
  519. have_strings = 1;
  520. break;
  521. default:
  522. n += sprintf(buf+n,  "Unkown sensor (type %d), ignoring itn",
  523. s.token);
  524. unknown = 1;
  525. have_strings = 1;
  526. break;
  527. }
  528. if (have_strings == 0) {
  529. if (temperature) {
  530. n += sprintf(buf+n, "%4d /%4dt", state, cel_to_fahr(state));
  531. } else
  532. n += sprintf(buf+n, "%10dt", state);
  533. }
  534. if (unknown == 0) {
  535. n += sprintf ( buf+n, "%st", ppc_rtas_process_error(error));
  536. n += get_location_code(s, buf+n);
  537. }
  538. return n;
  539. }
  540. /* ****************************************************************** */
  541. int check_location (char *c, int idx, char * buf)
  542. {
  543. int n = 0;
  544. switch (*(c+idx)) {
  545. case LOC_PLANAR:
  546. n += sprintf ( buf, "Planar #%c", *(c+idx+1));
  547. break;
  548. case LOC_CPU:
  549. n += sprintf ( buf, "CPU #%c", *(c+idx+1));
  550. break;
  551. case LOC_FAN:
  552. n += sprintf ( buf, "Fan #%c", *(c+idx+1));
  553. break;
  554. case LOC_RACKMOUNTED:
  555. n += sprintf ( buf, "Rack #%c", *(c+idx+1));
  556. break;
  557. case LOC_VOLTAGE:
  558. n += sprintf ( buf, "Voltage #%c", *(c+idx+1));
  559. break;
  560. case LOC_LCD:
  561. n += sprintf ( buf, "LCD #%c", *(c+idx+1));
  562. break;
  563. case '.':
  564. n += sprintf ( buf, "- %c", *(c+idx+1));
  565. default:
  566. n += sprintf ( buf, "Unknown location");
  567. break;
  568. }
  569. return n;
  570. }
  571. /* ****************************************************************** */
  572. /* 
  573.  * Format: 
  574.  * ${LETTER}${NUMBER}[[-/]${LETTER}${NUMBER} [ ... ] ]
  575.  * the '.' may be an abbrevation
  576.  */
  577. int check_location_string (char *c, char *buf)
  578. {
  579. int n=0,i=0;
  580. while (c[i]) {
  581. if (isalpha(c[i]) || c[i] == '.') {
  582.  n += check_location(c, i, buf+n);
  583. }
  584. else if (c[i] == '/' || c[i] == '-')
  585. n += sprintf(buf+n, " at ");
  586. i++;
  587. }
  588. return n;
  589. }
  590. /* ****************************************************************** */
  591. int get_location_code(struct individual_sensor s, char * buffer)
  592. {
  593. char rstr[512], tmp[10], tmp2[10];
  594. int n=0, i=0, llen, len;
  595. /* char *buf = kmalloc(MAX_LINELENGTH, GFP_KERNEL); */
  596. char *ret;
  597. static int pos = 0; /* remember position where buffer was */
  598. /* construct the sensor number like 0003 */
  599. /* fill with zeros */
  600. n = sprintf(tmp, "%d", s.token);
  601. len = strlen(tmp);
  602. while (strlen(tmp) < 4)
  603. n += sprintf (tmp+n, "0");
  604. /* invert the string */
  605. while (tmp[i]) {
  606. if (i<len)
  607. tmp2[4-len+i] = tmp[i];
  608. else
  609. tmp2[3-i] = tmp[i];
  610. i++;
  611. }
  612. tmp2[4] = '';
  613. sprintf (rstr, SENSOR_PREFIX"%s", tmp2);
  614. ret = (char *) get_property(rtas, rstr, &llen);
  615. n=0;
  616. if (ret[0] == '')
  617. n += sprintf ( buffer+n, "--- ");/* does not have a location */
  618. else {
  619. char t[50];
  620. ret += pos;
  621. n += check_location_string(ret, buffer + n);
  622. n += sprintf ( buffer+n, " ");
  623. /* see how many characters we have printed */
  624. sprintf ( t, "%s ", ret);
  625. pos += strlen(t);
  626. if (pos >= llen) pos=0;
  627. }
  628. return n;
  629. }
  630. /* ****************************************************************** */
  631. /* INDICATORS - Tone Frequency                                        */
  632. /* ****************************************************************** */
  633. static ssize_t ppc_rtas_tone_freq_write(struct file * file, const char * buf,
  634. size_t count, loff_t *ppos)
  635. {
  636. unsigned long freq;
  637. char *dest;
  638. int error;
  639. freq = simple_strtoul(buf, &dest, 10);
  640. if (*dest != '' && *dest != 'n') {
  641. printk("ppc_rtas_tone_freq_write: Invalid tone freqencyn");
  642. return count;
  643. }
  644. if (freq < 0) freq = 0;
  645. rtas_tone_frequency = freq; /* save it for later */
  646. error = call_rtas("set-indicator", 3, 1, NULL,
  647. TONE_FREQUENCY, 0, freq);
  648. if (error != 0)
  649. printk(KERN_WARNING "error: setting tone frequency returned: %sn", 
  650. ppc_rtas_process_error(error));
  651. return count;
  652. }
  653. /* ****************************************************************** */
  654. static ssize_t ppc_rtas_tone_freq_read(struct file * file, char * buf,
  655. size_t count, loff_t *ppos)
  656. {
  657. int n;
  658. n = sprintf(buf, "%lun", rtas_tone_frequency);
  659. if (*ppos >= strlen(buf))
  660. return 0;
  661. if (n > strlen(buf) - *ppos)
  662. n = strlen(buf) - *ppos;
  663. if (n > count)
  664. n = count;
  665. *ppos += n;
  666. return n;
  667. }
  668. /* ****************************************************************** */
  669. /* INDICATORS - Tone Volume                                           */
  670. /* ****************************************************************** */
  671. static ssize_t ppc_rtas_tone_volume_write(struct file * file, const char * buf,
  672. size_t count, loff_t *ppos)
  673. {
  674. unsigned long volume;
  675. char *dest;
  676. int error;
  677. volume = simple_strtoul(buf, &dest, 10);
  678. if (*dest != '' && *dest != 'n') {
  679. printk("ppc_rtas_tone_volume_write: Invalid tone volumen");
  680. return count;
  681. }
  682. if (volume < 0) volume = 0;
  683. if (volume > 100) volume = 100;
  684.         rtas_tone_volume = volume; /* save it for later */
  685. error = call_rtas("set-indicator", 3, 1, NULL,
  686. TONE_VOLUME, 0, volume);
  687. if (error != 0)
  688. printk(KERN_WARNING "error: setting tone volume returned: %sn", 
  689. ppc_rtas_process_error(error));
  690. return count;
  691. }
  692. /* ****************************************************************** */
  693. static ssize_t ppc_rtas_tone_volume_read(struct file * file, char * buf,
  694. size_t count, loff_t *ppos)
  695. {
  696. int n;
  697. n = sprintf(buf, "%lun", rtas_tone_volume);
  698. if (*ppos >= strlen(buf))
  699. return 0;
  700. if (n > strlen(buf) - *ppos)
  701. n = strlen(buf) - *ppos;
  702. if (n > count)
  703. n = count;
  704. *ppos += n;
  705. return n;
  706. }