xref: /freebsd/sys/dev/sound/midi/mpufoi_if.m (revision 031beb4e239bfce798af17f5fe8dba8bcaf13d99)
1206b17d7SAlexander Leidinger#-
248351eafSJoel Dahl# Copyright (c) 2003 Mathew Kanner
348351eafSJoel Dahl# All rights reserved.
4206b17d7SAlexander Leidinger#
5206b17d7SAlexander Leidinger# Redistribution and use in source and binary forms, with or without
648351eafSJoel Dahl# modification, are permitted provided that the following conditions
748351eafSJoel Dahl# are met:
848351eafSJoel Dahl# 1. Redistributions of source code must retain the above copyright
948351eafSJoel Dahl#    notice, this list of conditions and the following disclaimer.
1048351eafSJoel Dahl# 2. Redistributions in binary form must reproduce the above copyright
1148351eafSJoel Dahl#    notice, this list of conditions and the following disclaimer in the
1248351eafSJoel Dahl#    documentation and/or other materials provided with the distribution.
13206b17d7SAlexander Leidinger#
1448351eafSJoel Dahl# THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
1548351eafSJoel Dahl# ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
1648351eafSJoel Dahl# IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
1748351eafSJoel Dahl# ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
1848351eafSJoel Dahl# FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
1948351eafSJoel Dahl# DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
2048351eafSJoel Dahl# OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
2148351eafSJoel Dahl# HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
22206b17d7SAlexander Leidinger# LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
23206b17d7SAlexander Leidinger# OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
24206b17d7SAlexander Leidinger# SUCH DAMAGE.
25206b17d7SAlexander Leidinger#
26206b17d7SAlexander Leidinger#
27206b17d7SAlexander Leidinger
28206b17d7SAlexander Leidinger#include <sys/bus.h>
29206b17d7SAlexander Leidinger#include <dev/sound/midi/mpu401.h>
30206b17d7SAlexander Leidinger
31206b17d7SAlexander LeidingerINTERFACE mpufoi;
32206b17d7SAlexander Leidinger
33206b17d7SAlexander LeidingerMETHOD unsigned char read {
34206b17d7SAlexander Leidinger	struct mpu401 *_kobj;
35206b17d7SAlexander Leidinger	void   *_cookie;
36206b17d7SAlexander Leidinger	int	_reg;
37206b17d7SAlexander Leidinger};
38206b17d7SAlexander Leidinger
39206b17d7SAlexander LeidingerMETHOD void write {
40206b17d7SAlexander Leidinger	struct mpu401 *_kobj;
41206b17d7SAlexander Leidinger	void   *_cookie;
42206b17d7SAlexander Leidinger	int	_reg;
43206b17d7SAlexander Leidinger	unsigned char _d;
44206b17d7SAlexander Leidinger};
45206b17d7SAlexander Leidinger
46206b17d7SAlexander LeidingerMETHOD int uninit {
47206b17d7SAlexander Leidinger	struct mpu401 *_kobj;
48206b17d7SAlexander Leidinger	void   *_cookie;
49206b17d7SAlexander Leidinger};
50