xref: /freebsd/sys/dev/spibus/spibus_if.m (revision 031beb4e239bfce798af17f5fe8dba8bcaf13d99)
19a795dfaSWarner Losh#-
2*f86e6000SWarner Losh# Copyright (c) 2006 M. Warner Losh <imp@FreeBSD.org>
39a795dfaSWarner Losh#
49a795dfaSWarner Losh# Redistribution and use in source and binary forms, with or without
59a795dfaSWarner Losh# modification, are permitted provided that the following conditions
69a795dfaSWarner Losh# are met:
79a795dfaSWarner Losh# 1. Redistributions of source code must retain the above copyright
89a795dfaSWarner Losh#    notice, this list of conditions and the following disclaimer.
99a795dfaSWarner Losh# 2. Redistributions in binary form must reproduce the above copyright
109a795dfaSWarner Losh#    notice, this list of conditions and the following disclaimer in the
119a795dfaSWarner Losh#    documentation and/or other materials provided with the distribution.
129a795dfaSWarner Losh#
139a795dfaSWarner Losh# THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
149a795dfaSWarner Losh# ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
159a795dfaSWarner Losh# IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
169a795dfaSWarner Losh# ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
179a795dfaSWarner Losh# FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
189a795dfaSWarner Losh# DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
199a795dfaSWarner Losh# OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
209a795dfaSWarner Losh# HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
219a795dfaSWarner Losh# LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
229a795dfaSWarner Losh# OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
239a795dfaSWarner Losh# SUCH DAMAGE.
249a795dfaSWarner Losh#
259a795dfaSWarner Losh#
269a795dfaSWarner Losh
279a795dfaSWarner Losh#include <sys/bus.h>
289a795dfaSWarner Losh#include <dev/spibus/spi.h>
299a795dfaSWarner Losh
309a795dfaSWarner LoshINTERFACE spibus;
319a795dfaSWarner Losh
329a795dfaSWarner Losh#
339a795dfaSWarner Losh# Do a spi command
349a795dfaSWarner Losh#
359a795dfaSWarner LoshMETHOD int transfer {
369a795dfaSWarner Losh	device_t dev;
379a795dfaSWarner Losh	device_t child;
389a795dfaSWarner Losh	struct spi_command *cmd;
399a795dfaSWarner Losh};
40