xref: /freebsd/sys/dev/usb/usb_if.m (revision 031beb4e239bfce798af17f5fe8dba8bcaf13d99)
102ac6454SAndrew Thompson#-
202ac6454SAndrew Thompson# Copyright (c) 2008 Hans Petter Selasky. All rights reserved.
302ac6454SAndrew Thompson#
402ac6454SAndrew Thompson# Redistribution and use in source and binary forms, with or without
502ac6454SAndrew Thompson# modification, are permitted provided that the following conditions
602ac6454SAndrew Thompson# are met:
702ac6454SAndrew Thompson# 1. Redistributions of source code must retain the above copyright
802ac6454SAndrew Thompson#    notice, this list of conditions and the following disclaimer,
902ac6454SAndrew Thompson#    without modification, immediately at the beginning of the file.
1002ac6454SAndrew Thompson# 2. Redistributions in binary form must reproduce the above copyright
1102ac6454SAndrew Thompson#    notice, this list of conditions and the following disclaimer in the
1202ac6454SAndrew Thompson#    documentation and/or other materials provided with the distribution.
1302ac6454SAndrew Thompson# 3. The name of the author may not be used to endorse or promote products
1402ac6454SAndrew Thompson#    derived from this software without specific prior written permission.
1502ac6454SAndrew Thompson#
1602ac6454SAndrew Thompson# THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
1702ac6454SAndrew Thompson# IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
1802ac6454SAndrew Thompson# OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
1902ac6454SAndrew Thompson# IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
2002ac6454SAndrew Thompson# INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
2102ac6454SAndrew Thompson# NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
2202ac6454SAndrew Thompson# DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
2302ac6454SAndrew Thompson# THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
2402ac6454SAndrew Thompson# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
2502ac6454SAndrew Thompson# THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
2602ac6454SAndrew Thompson#
2702ac6454SAndrew Thompson#
2802ac6454SAndrew Thompson
2902ac6454SAndrew Thompson# USB interface description
3002ac6454SAndrew Thompson#
3102ac6454SAndrew Thompson
3202ac6454SAndrew Thompson#include <sys/bus.h>
3302ac6454SAndrew Thompson
3402ac6454SAndrew ThompsonINTERFACE usb;
3502ac6454SAndrew Thompson
3602ac6454SAndrew Thompson# The device received a control request
3702ac6454SAndrew Thompson#
3829bd7d7eSAndrew Thompson# The value pointed to by "pstate" can be updated to
3929bd7d7eSAndrew Thompson# "USB_HR_COMPLETE_OK" to indicate that the control
4029bd7d7eSAndrew Thompson# read transfer is complete, in case of short USB
4129bd7d7eSAndrew Thompson# control transfers.
4229bd7d7eSAndrew Thompson#
4302ac6454SAndrew Thompson# Return values:
4402ac6454SAndrew Thompson# 0: Success
4502ac6454SAndrew Thompson# ENOTTY: Transaction stalled
4602ac6454SAndrew Thompson# Else: Use builtin request handler
4702ac6454SAndrew Thompson#
4802ac6454SAndrew ThompsonMETHOD int handle_request {
4902ac6454SAndrew Thompson	device_t dev;
5002ac6454SAndrew Thompson	const void *req; /* pointer to the device request */
5102ac6454SAndrew Thompson	void **pptr; /* data pointer */
5202ac6454SAndrew Thompson	uint16_t *plen; /* maximum transfer length */
5302ac6454SAndrew Thompson	uint16_t offset; /* data offset */
5429bd7d7eSAndrew Thompson	uint8_t *pstate; /* set if transfer is complete, see USB_HR_XXX */
5502ac6454SAndrew Thompson};
56*2e141748SHans Petter Selasky
57*2e141748SHans Petter Selasky# Take controller from BIOS
58*2e141748SHans Petter Selasky#
59*2e141748SHans Petter Selasky# Return values:
60*2e141748SHans Petter Selasky# 0: Success
61*2e141748SHans Petter Selasky# Else: Failure
62*2e141748SHans Petter Selasky#
63*2e141748SHans Petter SelaskyMETHOD int take_controller {
64*2e141748SHans Petter Selasky	device_t dev;
65*2e141748SHans Petter Selasky};
66