summaryrefslogtreecommitdiffstats
path: root/sys/dev/fdt/fdt_pinctrl_if.m
diff options
context:
space:
mode:
authorian <ian@FreeBSD.org>2014-10-26 03:41:27 +0000
committerian <ian@FreeBSD.org>2014-10-26 03:41:27 +0000
commitdfd00b89e1c6a83c4c5f3ae231004e3f882d6708 (patch)
tree6c5d45ecb4862cfcc2d9a9a44a9994c73ca37a7c /sys/dev/fdt/fdt_pinctrl_if.m
parentb6219df7b3f1fd59c514ac0f7562d1e5bdbb87c5 (diff)
downloadFreeBSD-src-dfd00b89e1c6a83c4c5f3ae231004e3f882d6708.zip
FreeBSD-src-dfd00b89e1c6a83c4c5f3ae231004e3f882d6708.tar.gz
MFC 271546:
Create an interface and support routines for drivers that handle IO pin multiplexing and configuration based on FDT data.
Diffstat (limited to 'sys/dev/fdt/fdt_pinctrl_if.m')
-rw-r--r--sys/dev/fdt/fdt_pinctrl_if.m47
1 files changed, 47 insertions, 0 deletions
diff --git a/sys/dev/fdt/fdt_pinctrl_if.m b/sys/dev/fdt/fdt_pinctrl_if.m
new file mode 100644
index 0000000..c499cdf
--- /dev/null
+++ b/sys/dev/fdt/fdt_pinctrl_if.m
@@ -0,0 +1,47 @@
+#-
+# Copyright (c) 2014 Ian Lepore
+# 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$
+#
+
+#include <sys/types.h>
+#include <dev/ofw/openfirm.h>
+
+#
+# This is the interface that fdt_pinctrl drivers provide to other drivers.
+#
+
+INTERFACE fdt_pinctrl;
+
+#
+# Set pins to the specified configuration. The cfgxref arg is an xref phandle
+# to a descendent node (child, grandchild, ...) of the pinctrl device node.
+# Returns 0 on success or a standard errno value.
+#
+METHOD int configure {
+ device_t pinctrl;
+ phandle_t cfgxref;
+};
+
OpenPOWER on IntegriCloud