GUI: Fix Tomato RAF theme for all builds. Compilation typo.
[tomato.git] / release / src-rt-6.x.4708 / linux / linux-2.6.36 / Documentation / hwmon / hpfall.c
bloba4a8fc5d05d4e3261910b805bf668c6bfe523d15
1 /* Disk protection for HP machines.
3 * Copyright 2008 Eric Piel
4 * Copyright 2009 Pavel Machek <pavel@ucw.cz>
6 * GPLv2.
7 */
9 #include <stdio.h>
10 #include <stdlib.h>
11 #include <unistd.h>
12 #include <fcntl.h>
13 #include <sys/stat.h>
14 #include <sys/types.h>
15 #include <string.h>
16 #include <stdint.h>
17 #include <errno.h>
18 #include <signal.h>
19 #include <sys/mman.h>
20 #include <sched.h>
22 char unload_heads_path[64];
24 int set_unload_heads_path(char *device)
26 char devname[64];
28 if (strlen(device) <= 5 || strncmp(device, "/dev/", 5) != 0)
29 return -EINVAL;
30 strncpy(devname, device + 5, sizeof(devname));
32 snprintf(unload_heads_path, sizeof(unload_heads_path),
33 "/sys/block/%s/device/unload_heads", devname);
34 return 0;
36 int valid_disk(void)
38 int fd = open(unload_heads_path, O_RDONLY);
39 if (fd < 0) {
40 perror(unload_heads_path);
41 return 0;
44 close(fd);
45 return 1;
48 void write_int(char *path, int i)
50 char buf[1024];
51 int fd = open(path, O_RDWR);
52 if (fd < 0) {
53 perror("open");
54 exit(1);
56 sprintf(buf, "%d", i);
57 if (write(fd, buf, strlen(buf)) != strlen(buf)) {
58 perror("write");
59 exit(1);
61 close(fd);
64 void set_led(int on)
66 write_int("/sys/class/leds/hp::hddprotect/brightness", on);
69 void protect(int seconds)
71 write_int(unload_heads_path, seconds*1000);
74 int on_ac(void)
76 // /sys/class/power_supply/AC0/online
79 int lid_open(void)
81 // /proc/acpi/button/lid/LID/state
84 void ignore_me(void)
86 protect(0);
87 set_led(0);
90 int main(int argc, char **argv)
92 int fd, ret;
93 struct sched_param param;
95 if (argc == 1)
96 ret = set_unload_heads_path("/dev/sda");
97 else if (argc == 2)
98 ret = set_unload_heads_path(argv[1]);
99 else
100 ret = -EINVAL;
102 if (ret || !valid_disk()) {
103 fprintf(stderr, "usage: %s <device> (default: /dev/sda)\n",
104 argv[0]);
105 exit(1);
108 fd = open("/dev/freefall", O_RDONLY);
109 if (fd < 0) {
110 perror("/dev/freefall");
111 return EXIT_FAILURE;
114 daemon(0, 0);
115 param.sched_priority = sched_get_priority_max(SCHED_FIFO);
116 sched_setscheduler(0, SCHED_FIFO, &param);
117 mlockall(MCL_CURRENT|MCL_FUTURE);
119 signal(SIGALRM, ignore_me);
121 for (;;) {
122 unsigned char count;
124 ret = read(fd, &count, sizeof(count));
125 alarm(0);
126 if ((ret == -1) && (errno == EINTR)) {
127 /* Alarm expired, time to unpark the heads */
128 continue;
131 if (ret != sizeof(count)) {
132 perror("read");
133 break;
136 protect(21);
137 set_led(1);
138 if (1 || on_ac() || lid_open())
139 alarm(2);
140 else
141 alarm(20);
144 close(fd);
145 return EXIT_SUCCESS;