19312900fSEmmanuel Vadot /*-
2*4d846d26SWarner Losh * SPDX-License-Identifier: BSD-2-Clause
39312900fSEmmanuel Vadot *
49312900fSEmmanuel Vadot * Copyright (c) 2018 Emmanuel Vadot <manu@FreeBSD.org>
59312900fSEmmanuel Vadot *
69312900fSEmmanuel Vadot * Redistribution and use in source and binary forms, with or without
79312900fSEmmanuel Vadot * modification, are permitted provided that the following conditions
89312900fSEmmanuel Vadot * are met:
99312900fSEmmanuel Vadot * 1. Redistributions of source code must retain the above copyright
109312900fSEmmanuel Vadot * notice, this list of conditions and the following disclaimer.
119312900fSEmmanuel Vadot * 2. Redistributions in binary form must reproduce the above copyright
129312900fSEmmanuel Vadot * notice, this list of conditions and the following disclaimer in the
139312900fSEmmanuel Vadot * documentation and/or other materials provided with the distribution.
149312900fSEmmanuel Vadot *
159312900fSEmmanuel Vadot * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
169312900fSEmmanuel Vadot * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
179312900fSEmmanuel Vadot * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
189312900fSEmmanuel Vadot * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
199312900fSEmmanuel Vadot * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
209312900fSEmmanuel Vadot * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
219312900fSEmmanuel Vadot * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
229312900fSEmmanuel Vadot * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
239312900fSEmmanuel Vadot * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
249312900fSEmmanuel Vadot * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
259312900fSEmmanuel Vadot * SUCH DAMAGE.
269312900fSEmmanuel Vadot */
279312900fSEmmanuel Vadot
289312900fSEmmanuel Vadot #include <sys/types.h>
299312900fSEmmanuel Vadot #include <sys/ioctl.h>
309312900fSEmmanuel Vadot #include <stdbool.h>
319312900fSEmmanuel Vadot #include <sys/capsicum.h>
3271fb3739SIan Lepore #include <dev/pwm/pwmc.h>
339312900fSEmmanuel Vadot
349312900fSEmmanuel Vadot #include <err.h>
359312900fSEmmanuel Vadot #include <errno.h>
369312900fSEmmanuel Vadot #include <fcntl.h>
377d763870SIan Lepore #include <limits.h>
389312900fSEmmanuel Vadot #include <stdio.h>
399312900fSEmmanuel Vadot #include <stdlib.h>
409312900fSEmmanuel Vadot #include <string.h>
419312900fSEmmanuel Vadot #include <unistd.h>
429312900fSEmmanuel Vadot #include <capsicum_helpers.h>
439312900fSEmmanuel Vadot
449312900fSEmmanuel Vadot #define PWM_ENABLE 0x0001
459312900fSEmmanuel Vadot #define PWM_DISABLE 0x0002
469312900fSEmmanuel Vadot #define PWM_SHOW_CONFIG 0x0004
479312900fSEmmanuel Vadot #define PWM_PERIOD 0x0008
489312900fSEmmanuel Vadot #define PWM_DUTY 0x0010
4917b14d8fSOskar Holmund #define PWM_INVERTED 0x0020
509312900fSEmmanuel Vadot
517d763870SIan Lepore static char device_name[PATH_MAX] = "/dev/pwm/pwmc0.0";
527d763870SIan Lepore
537d763870SIan Lepore static void
set_device_name(const char * name)547d763870SIan Lepore set_device_name(const char *name)
557d763870SIan Lepore {
567d763870SIan Lepore
577d763870SIan Lepore if (name[0] == '/')
587d763870SIan Lepore strlcpy(device_name, name, sizeof(device_name));
597d763870SIan Lepore else
607d763870SIan Lepore snprintf(device_name, sizeof(device_name), "/dev/pwm/%s", name);
617d763870SIan Lepore }
627d763870SIan Lepore
639312900fSEmmanuel Vadot static void
usage(void)649312900fSEmmanuel Vadot usage(void)
659312900fSEmmanuel Vadot {
669312900fSEmmanuel Vadot fprintf(stderr, "Usage:\n");
67780c3de8SIan Lepore fprintf(stderr, "\tpwm [-f dev] -C\n");
6817b14d8fSOskar Holmund fprintf(stderr, "\tpwm [-f dev] [-D | -E] [-I] [-p period] [-d duty[%%]]\n");
699312900fSEmmanuel Vadot exit(1);
709312900fSEmmanuel Vadot }
719312900fSEmmanuel Vadot
729312900fSEmmanuel Vadot int
main(int argc,char * argv[])739312900fSEmmanuel Vadot main(int argc, char *argv[])
749312900fSEmmanuel Vadot {
759312900fSEmmanuel Vadot struct pwm_state state;
769312900fSEmmanuel Vadot int fd;
77a4f28d42SAndriy Gapon u_int period, duty;
789312900fSEmmanuel Vadot int action, ch;
799312900fSEmmanuel Vadot cap_rights_t right_ioctl;
80780c3de8SIan Lepore const unsigned long pwm_ioctls[] = {PWMGETSTATE, PWMSETSTATE};
8150a123aaSEmmanuel Vadot char *percent;
827d763870SIan Lepore bool setname;
839312900fSEmmanuel Vadot
849312900fSEmmanuel Vadot action = 0;
857d763870SIan Lepore setname = false;
869312900fSEmmanuel Vadot fd = -1;
879312900fSEmmanuel Vadot period = duty = -1;
889312900fSEmmanuel Vadot
8917b14d8fSOskar Holmund while ((ch = getopt(argc, argv, "f:EDCIp:d:")) != -1) {
909312900fSEmmanuel Vadot switch (ch) {
919312900fSEmmanuel Vadot case 'E':
9226f3ca61SIan Lepore if (action & (PWM_DISABLE | PWM_SHOW_CONFIG))
939312900fSEmmanuel Vadot usage();
9426f3ca61SIan Lepore action |= PWM_ENABLE;
959312900fSEmmanuel Vadot break;
969312900fSEmmanuel Vadot case 'D':
9726f3ca61SIan Lepore if (action & (PWM_ENABLE | PWM_SHOW_CONFIG))
989312900fSEmmanuel Vadot usage();
9926f3ca61SIan Lepore action |= PWM_DISABLE;
1009312900fSEmmanuel Vadot break;
1019312900fSEmmanuel Vadot case 'C':
1029312900fSEmmanuel Vadot if (action)
1039312900fSEmmanuel Vadot usage();
1049312900fSEmmanuel Vadot action = PWM_SHOW_CONFIG;
1059312900fSEmmanuel Vadot break;
10617b14d8fSOskar Holmund case 'I':
10717b14d8fSOskar Holmund if (action & PWM_SHOW_CONFIG)
10817b14d8fSOskar Holmund usage();
10917b14d8fSOskar Holmund action |= PWM_INVERTED;
11017b14d8fSOskar Holmund break;
1119312900fSEmmanuel Vadot case 'p':
11226f3ca61SIan Lepore if (action & PWM_SHOW_CONFIG)
1139312900fSEmmanuel Vadot usage();
11426f3ca61SIan Lepore action |= PWM_PERIOD;
115a4f28d42SAndriy Gapon period = strtoul(optarg, NULL, 10);
1169312900fSEmmanuel Vadot break;
1179312900fSEmmanuel Vadot case 'd':
11826f3ca61SIan Lepore if (action & PWM_SHOW_CONFIG)
1199312900fSEmmanuel Vadot usage();
12026f3ca61SIan Lepore action |= PWM_DUTY;
121a4f28d42SAndriy Gapon duty = strtoul(optarg, &percent, 10);
12226f3ca61SIan Lepore if (*percent == '%') {
123a4f28d42SAndriy Gapon if (duty > 100) {
12426f3ca61SIan Lepore fprintf(stderr,
12526f3ca61SIan Lepore "Invalid duty percentage\n");
12626f3ca61SIan Lepore usage();
12726f3ca61SIan Lepore }
12826f3ca61SIan Lepore } else if (*percent != '\0')
12950a123aaSEmmanuel Vadot usage();
1309312900fSEmmanuel Vadot break;
1319312900fSEmmanuel Vadot case 'f':
1327d763870SIan Lepore setname = true;
1337d763870SIan Lepore set_device_name(optarg);
1347d763870SIan Lepore break;
135780c3de8SIan Lepore case '?':
136780c3de8SIan Lepore usage();
137780c3de8SIan Lepore break;
1389312900fSEmmanuel Vadot }
1399312900fSEmmanuel Vadot }
1409312900fSEmmanuel Vadot
1417d763870SIan Lepore if (action == 0)
1429312900fSEmmanuel Vadot usage();
1439312900fSEmmanuel Vadot
1447d763870SIan Lepore if ((fd = open(device_name, O_RDWR)) == -1) {
1457d763870SIan Lepore fprintf(stderr, "pwm: cannot open %s: %s\n",
1467d763870SIan Lepore device_name, strerror(errno));
1477d763870SIan Lepore if (setname)
1487d763870SIan Lepore exit(1);
1497d763870SIan Lepore else
1507d763870SIan Lepore usage();
1517d763870SIan Lepore }
1527d763870SIan Lepore
1539312900fSEmmanuel Vadot if (caph_limit_stdio() < 0) {
1549312900fSEmmanuel Vadot fprintf(stderr, "can't limit stdio rights");
1559312900fSEmmanuel Vadot goto fail;
1569312900fSEmmanuel Vadot }
1579312900fSEmmanuel Vadot caph_cache_catpages();
1589312900fSEmmanuel Vadot cap_rights_init(&right_ioctl, CAP_IOCTL);
1599312900fSEmmanuel Vadot if (caph_rights_limit(fd, &right_ioctl) < 0) {
1609312900fSEmmanuel Vadot fprintf(stderr, "cap_right_limit() failed\n");
1619312900fSEmmanuel Vadot goto fail;
1629312900fSEmmanuel Vadot }
1639312900fSEmmanuel Vadot if (caph_ioctls_limit(fd, pwm_ioctls, nitems(pwm_ioctls)) < 0) {
1649312900fSEmmanuel Vadot fprintf(stderr, "caph_ioctls_limit() failed\n");
1659312900fSEmmanuel Vadot goto fail;
1669312900fSEmmanuel Vadot }
1679312900fSEmmanuel Vadot if (caph_enter() < 0) {
1689312900fSEmmanuel Vadot fprintf(stderr, "failed to enter capability mode\n");
1699312900fSEmmanuel Vadot goto fail;
1709312900fSEmmanuel Vadot }
1719312900fSEmmanuel Vadot
1729312900fSEmmanuel Vadot /* Fill the common args */
1739312900fSEmmanuel Vadot if (ioctl(fd, PWMGETSTATE, &state) == -1) {
1749312900fSEmmanuel Vadot fprintf(stderr, "Cannot get current state of the pwm controller\n");
1759312900fSEmmanuel Vadot goto fail;
1769312900fSEmmanuel Vadot }
1779312900fSEmmanuel Vadot
17826f3ca61SIan Lepore if (action == PWM_SHOW_CONFIG) {
17917b14d8fSOskar Holmund printf("period: %u\nduty: %u\nenabled:%d\ninverted:%d\n",
1806a9997edSEmmanuel Vadot state.period,
1816a9997edSEmmanuel Vadot state.duty,
18217b14d8fSOskar Holmund state.enable,
18317b14d8fSOskar Holmund state.flags & PWM_POLARITY_INVERTED);
18426f3ca61SIan Lepore } else {
18526f3ca61SIan Lepore if (action & PWM_ENABLE)
18626f3ca61SIan Lepore state.enable = true;
18726f3ca61SIan Lepore if (action & PWM_DISABLE)
18826f3ca61SIan Lepore state.enable = false;
18926f3ca61SIan Lepore if (action & PWM_PERIOD)
1909312900fSEmmanuel Vadot state.period = period;
19117b14d8fSOskar Holmund if (action & PWM_INVERTED)
19217b14d8fSOskar Holmund state.flags |= PWM_POLARITY_INVERTED;
19317b14d8fSOskar Holmund else
19417b14d8fSOskar Holmund state.flags &= ~PWM_POLARITY_INVERTED;
19526f3ca61SIan Lepore if (action & PWM_DUTY) {
19650a123aaSEmmanuel Vadot if (*percent != '\0')
197a4f28d42SAndriy Gapon state.duty = (uint64_t)state.period * duty / 100;
19850a123aaSEmmanuel Vadot else
1999312900fSEmmanuel Vadot state.duty = duty;
20050a123aaSEmmanuel Vadot }
20126f3ca61SIan Lepore
2029312900fSEmmanuel Vadot if (ioctl(fd, PWMSETSTATE, &state) == -1) {
2039312900fSEmmanuel Vadot fprintf(stderr,
2049312900fSEmmanuel Vadot "Cannot configure the pwm controller\n");
2059312900fSEmmanuel Vadot goto fail;
2069312900fSEmmanuel Vadot }
2079312900fSEmmanuel Vadot }
2089312900fSEmmanuel Vadot
2099312900fSEmmanuel Vadot close(fd);
2109312900fSEmmanuel Vadot return (0);
2119312900fSEmmanuel Vadot
2129312900fSEmmanuel Vadot fail:
2139312900fSEmmanuel Vadot close(fd);
2149312900fSEmmanuel Vadot return (1);
2159312900fSEmmanuel Vadot }
216