xref: /freebsd/sys/dev/pwm/ofw_pwm.c (revision 0957b409)
1 /*-
2  * SPDX-License-Identifier: BSD-2-Clause-FreeBSD
3  *
4  * Copyright (c) 2018 Emmanuel Vadot <manu@FreeBSD.org>
5  * All rights reserved.
6  *
7  * Redistribution and use in source and binary forms, with or without
8  * modification, are permitted provided that the following conditions
9  * are met:
10  * 1. Redistributions of source code must retain the above copyright
11  *    notice, this list of conditions and the following disclaimer.
12  * 2. Redistributions in binary form must reproduce the above copyright
13  *    notice, this list of conditions and the following disclaimer in the
14  *    documentation and/or other materials provided with the distribution.
15  *
16  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
17  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
18  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
19  * ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
20  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
21  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
22  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
23  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
24  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
25  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
26  * SUCH DAMAGE.
27  */
28 
29 #include <sys/cdefs.h>
30 __FBSDID("$FreeBSD$");
31 
32 #include <sys/param.h>
33 #include <sys/systm.h>
34 #include <sys/bus.h>
35 #include <sys/kernel.h>
36 #include <sys/resource.h>
37 
38 #include <dev/ofw/ofw_bus.h>
39 #include <dev/ofw/ofw_bus_subr.h>
40 
41 #include <dev/pwm/pwmbus.h>
42 
43 #include "pwm_if.h"
44 
45 int
46 pwm_get_by_ofw_propidx(device_t consumer, phandle_t node,
47     const char *prop_name, int idx, pwm_channel_t *out_channel)
48 {
49 	phandle_t xref;
50 	pcell_t *cells;
51 	struct pwm_channel channel;
52 	int ncells, rv;
53 
54 	rv = ofw_bus_parse_xref_list_alloc(node, prop_name, "#pwm-cells",
55 	  idx, &xref, &ncells, &cells);
56 	if (rv != 0)
57 		return (rv);
58 
59 	channel.dev = OF_device_from_xref(xref);
60 	if (channel.dev == NULL) {
61 		OF_prop_free(cells);
62 		return (ENODEV);
63 	}
64 
65 	channel.busdev = PWM_GET_BUS(channel.dev);
66 	if (channel.busdev == NULL) {
67 		OF_prop_free(cells);
68 		return (ENODEV);
69 	}
70 
71 	channel.channel = cells[0];
72 	channel.period = cells[1];
73 
74 	if (ncells >= 3)
75 		channel.flags = cells[2];
76 
77 	*out_channel = malloc(sizeof(struct pwm_channel), M_DEVBUF, M_WAITOK | M_ZERO);
78 	**out_channel = channel;
79 	return (0);
80 }
81 
82 int
83 pwm_get_by_ofw_idx(device_t consumer, phandle_t node, int idx,
84     pwm_channel_t *out_channel)
85 {
86 
87 	return (pwm_get_by_ofw_propidx(consumer, node, "pwms", idx, out_channel));
88 }
89 
90 int
91 pwm_get_by_ofw_property(device_t consumer, phandle_t node,
92     const char *prop_name, pwm_channel_t *out_channel)
93 {
94 
95 	return (pwm_get_by_ofw_propidx(consumer, node, prop_name, 0, out_channel));
96 }
97 
98 int
99 pwm_get_by_ofw_name(device_t consumer, phandle_t node, const char *name,
100     pwm_channel_t *out_channel)
101 {
102 	int rv, idx;
103 
104 	rv = ofw_bus_find_string_index(node, "pwm-names", name, &idx);
105 	if (rv != 0)
106 		return (rv);
107 
108 	return (pwm_get_by_ofw_idx(consumer, node, idx, out_channel));
109 }
110