2 * SPDX-License-Identifier: BSD-2-Clause-FreeBSD
4 * Copyright (c) 2020 Emmanuel Vadot <manu@FreeBSD.org>
6 * Redistribution and use in source and binary forms, with or without
7 * modification, are permitted provided that the following conditions
9 * 1. Redistributions of source code must retain the above copyright
10 * notice, this list of conditions and the following disclaimer.
11 * 2. Redistributions in binary form must reproduce the above copyright
12 * notice, this list of conditions and the following disclaimer in the
13 * documentation and/or other materials provided with the distribution.
15 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
16 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
17 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
18 * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
19 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
20 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
21 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
22 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
23 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
24 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
30 #include <sys/types.h>
31 #include <sys/ioctl.h>
33 #include <sys/backlight.h>
44 #define BACKLIGHT_QUERY 0x0001
45 #define BACKLIGHT_SET_BRIGHTNESS 0x0002
46 #define BACKLIGHT_INCR 0x0004
47 #define BACKLIGHT_DECR 0x0008
48 #define BACKLIGHT_INFO 0x0010
50 static char device_name
[PATH_MAX
] = "/dev/backlight/backlight0";
53 set_device_name(const char *name
)
57 strlcpy(device_name
, name
, sizeof(device_name
));
59 snprintf(device_name
, sizeof(device_name
), "/dev/backlight/%s", name
);
65 fprintf(stderr
, "Usage:\n");
66 fprintf(stderr
, "\tbacklight [-q] [-f device]\n");
67 fprintf(stderr
, "\tbacklight [-q] [-f device] -i\n");
68 fprintf(stderr
, "\tbacklight [-f device] value\n");
69 fprintf(stderr
, "\tbacklight [-f device] incr|+ value\n");
70 fprintf(stderr
, "\tbacklight [-f device] decr|- value\n");
75 backlight_type_to_string(enum backlight_info_type type
)
78 case BACKLIGHT_TYPE_PANEL
:
80 case BACKLIGHT_TYPE_KEYBOARD
:
88 main(int argc
, char *argv
[])
90 struct backlight_props props
;
91 struct backlight_info info
;
95 const char *percent_error
;
99 action
= BACKLIGHT_QUERY
;
102 while ((ch
= getopt(argc
, argv
, "f:qhi")) != -1) {
108 set_device_name(optarg
);
111 action
= BACKLIGHT_INFO
;
122 if (strcmp("incr", argv
[0]) == 0 ||
123 strcmp("+", argv
[0]) == 0) {
124 action
= BACKLIGHT_INCR
;
128 else if (strcmp("decr", argv
[0]) == 0 ||
129 strcmp("-", argv
[0]) == 0) {
130 action
= BACKLIGHT_DECR
;
134 action
= BACKLIGHT_SET_BRIGHTNESS
;
137 /* ignore a trailing % for user friendlyness */
138 if (strlen(argv
[0]) > 0 &&
139 argv
[0][strlen(argv
[0]) - 1] == '%')
140 argv
[0][strlen(argv
[0]) - 1] = '\0';
141 percent
= strtonum(argv
[0], 0, 100, &percent_error
);
143 errx(1, "Cannot parse brightness level %s: %s",
149 if ((fd
= open(device_name
, O_RDWR
)) == -1)
150 errx(1, "cannot open %s: %s",
151 device_name
, strerror(errno
));
154 case BACKLIGHT_QUERY
:
155 if (ioctl(fd
, BACKLIGHTGETSTATUS
, &props
) == -1)
156 errx(1, "Cannot query the backlight device");
158 printf("%u\n", props
.brightness
);
160 printf("brightness: %d\n", props
.brightness
);
161 if (props
.nlevels
!= 0) {
163 for (i
= 0; i
< props
.nlevels
; i
++)
164 printf(" %d", props
.levels
[i
]);
169 case BACKLIGHT_SET_BRIGHTNESS
:
172 props
.brightness
= percent
;
173 if (ioctl(fd
, BACKLIGHTUPDATESTATUS
, &props
) == -1)
174 errx(1, "Cannot update the backlight device");
179 /* Avoid any ioctl if we don't have anything to do */
181 if (ioctl(fd
, BACKLIGHTGETSTATUS
, &props
) == -1)
182 errx(1, "Cannot query the backlight device");
183 percent
= percent
== -1 ? 10 : percent
;
184 percent
= action
== BACKLIGHT_INCR
? percent
: -percent
;
185 props
.brightness
+= percent
;
186 if ((int)props
.brightness
< 0)
187 props
.brightness
= 0;
188 if (props
.brightness
> 100)
189 props
.brightness
= 100;
190 if (ioctl(fd
, BACKLIGHTUPDATESTATUS
, &props
) == -1)
191 errx(1, "Cannot update the backlight device");
194 if (ioctl(fd
, BACKLIGHTGETINFO
, &info
) == -1)
195 errx(1, "Cannot query the backlight device");
196 if (quiet
== false) {
197 printf("Backlight name: %s\n", info
.name
);
198 printf("Backlight hardware type: %s\n", backlight_type_to_string(info
.type
));
200 printf("%s\n", info
.name
);
201 printf("%s\n", backlight_type_to_string(info
.type
));