Index: head/sys/dev/pwm/pwmbus.h =================================================================== --- head/sys/dev/pwm/pwmbus.h (revision 349072) +++ head/sys/dev/pwm/pwmbus.h (revision 349073) @@ -1,64 +1,63 @@ /*- * SPDX-License-Identifier: BSD-2-Clause-FreeBSD * * Copyright (c) 2018 Emmanuel Vadot * All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions * are met: * 1. Redistributions of source code must retain the above copyright * notice, this list of conditions and the following disclaimer. * 2. Redistributions in binary form must reproduce the above copyright * notice, this list of conditions and the following disclaimer in the * documentation and/or other materials provided with the distribution. * * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * * $FreeBSD$ */ #ifndef _PWMBUS_H_ #include -#include struct pwm_channel { device_t dev; device_t busdev; int channel; uint64_t period; uint64_t duty; uint32_t flags; bool enabled; }; typedef struct pwm_channel *pwm_channel_t; device_t pwmbus_attach_bus(device_t dev); int pwmbus_acquire_channel(device_t bus, int channel); int pwmbus_release_channel(device_t bus, int channel); int pwm_get_by_ofw_propidx(device_t consumer, phandle_t node, const char *prop_name, int idx, pwm_channel_t *channel); int pwm_get_by_ofw_idx(device_t consumer, phandle_t node, int idx, pwm_channel_t *out_channel); int pwm_get_by_ofw_property(device_t consumer, phandle_t node, const char *prop_name, pwm_channel_t *out_channel); int pwm_get_by_ofw_name(device_t consumer, phandle_t node, const char *name, pwm_channel_t *out_channel); #endif /* _PWMBUS_H_ */ Index: head/sys/dev/pwm/pwmbus_if.m =================================================================== --- head/sys/dev/pwm/pwmbus_if.m (revision 349072) +++ head/sys/dev/pwm/pwmbus_if.m (revision 349073) @@ -1,111 +1,107 @@ #- # SPDX-License-Identifier: BSD-2-Clause-FreeBSD # # Copyright (c) 2018 Emmanuel Vadot # # Redistribution and use in source and binary forms, with or without # modification, are permitted provided that the following conditions # are met: # 1. Redistributions of source code must retain the above copyright # notice, this list of conditions and the following disclaimer. # 2. Redistributions in binary form must reproduce the above copyright # notice, this list of conditions and the following disclaimer in the # documentation and/or other materials provided with the distribution. # # THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND # ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE # IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE # ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE # FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL # DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS # OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) # HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT # LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY # OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF # SUCH DAMAGE. # # $FreeBSD$ # #include INTERFACE pwmbus; CODE { static int pwm_default_set_flags(device_t dev, int channel, uint32_t flags) { return (EOPNOTSUPP); } static int pwm_default_get_flags(device_t dev, int channel, uint32_t *flags) { *flags = 0; return (0); } }; -HEADER { - #include -}; - # # Config the period (Total number of cycle in ns) and # the duty (active number of cycle in ns) # METHOD int channel_config { device_t bus; int channel; unsigned int period; unsigned int duty; }; # # Get the period (Total number of cycle in ns) and # the duty (active number of cycle in ns) # METHOD int channel_get_config { device_t bus; int channel; unsigned int *period; unsigned int *duty; }; # # Set the flags # METHOD int channel_set_flags { device_t bus; int channel; uint32_t flags; } DEFAULT pwm_default_set_flags; # # Get the flags # METHOD int channel_get_flags { device_t dev; int channel; uint32_t *flags; } DEFAULT pwm_default_get_flags; # # Enable the pwm output # METHOD int channel_enable { device_t bus; int channel; bool enable; }; # # Is the pwm output enabled # METHOD int channel_is_enabled { device_t bus; int channel; bool *enabled; };