xref: /freebsd/sys/dev/usb/usb_pf.h (revision 95ee2897e98f5d444f26ed2334cc7c439f9c16c6)
118ec6525SWeongyo Jeong /*-
27282444bSPedro F. Giffuni  * SPDX-License-Identifier: BSD-3-Clause
37282444bSPedro F. Giffuni  *
418ec6525SWeongyo Jeong  * Copyright (c) 1990, 1991, 1993
518ec6525SWeongyo Jeong  *	The Regents of the University of California.  All rights reserved.
618ec6525SWeongyo Jeong  *
718ec6525SWeongyo Jeong  * This code is derived from the Stanford/CMU enet packet filter,
818ec6525SWeongyo Jeong  * (net/enet.c) distributed as part of 4.3BSD, and code contributed
918ec6525SWeongyo Jeong  * to Berkeley by Steven McCanne and Van Jacobson both of Lawrence
1018ec6525SWeongyo Jeong  * Berkeley Laboratory.
1118ec6525SWeongyo Jeong  *
1218ec6525SWeongyo Jeong  * Redistribution and use in source and binary forms, with or without
1318ec6525SWeongyo Jeong  * modification, are permitted provided that the following conditions
1418ec6525SWeongyo Jeong  * are met:
1518ec6525SWeongyo Jeong  * 1. Redistributions of source code must retain the above copyright
1618ec6525SWeongyo Jeong  *    notice, this list of conditions and the following disclaimer.
1718ec6525SWeongyo Jeong  * 2. Redistributions in binary form must reproduce the above copyright
1818ec6525SWeongyo Jeong  *    notice, this list of conditions and the following disclaimer in the
1918ec6525SWeongyo Jeong  *    documentation and/or other materials provided with the distribution.
20fbbd9655SWarner Losh  * 3. Neither the name of the University nor the names of its contributors
2118ec6525SWeongyo Jeong  *    may be used to endorse or promote products derived from this software
2218ec6525SWeongyo Jeong  *    without specific prior written permission.
2318ec6525SWeongyo Jeong  *
2418ec6525SWeongyo Jeong  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
2518ec6525SWeongyo Jeong  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
2618ec6525SWeongyo Jeong  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
2718ec6525SWeongyo Jeong  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
2818ec6525SWeongyo Jeong  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
2918ec6525SWeongyo Jeong  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
3018ec6525SWeongyo Jeong  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
3118ec6525SWeongyo Jeong  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
3218ec6525SWeongyo Jeong  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
3318ec6525SWeongyo Jeong  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
3418ec6525SWeongyo Jeong  * SUCH DAMAGE.
3518ec6525SWeongyo Jeong  */
3618ec6525SWeongyo Jeong 
3718ec6525SWeongyo Jeong #ifndef _DEV_USB_PF_H
3818ec6525SWeongyo Jeong #define	_DEV_USB_PF_H
3918ec6525SWeongyo Jeong 
4018ec6525SWeongyo Jeong struct usbpf_pkthdr {
4131a11691SHans Petter Selasky 	uint32_t	up_totlen;	/* Total length including all headers */
420c8f4683SHans Petter Selasky 	uint32_t	up_busunit;	/* Host controller unit number */
4331a11691SHans Petter Selasky 	uint8_t		up_address;	/* USB device index */
4431a11691SHans Petter Selasky 	uint8_t		up_mode;	/* Mode of transfer */
4531a11691SHans Petter Selasky #define	USBPF_MODE_HOST		0
4631a11691SHans Petter Selasky #define	USBPF_MODE_DEVICE	1
470c8f4683SHans Petter Selasky 	uint8_t		up_type;	/* points SUBMIT / DONE */
4831a11691SHans Petter Selasky 	uint8_t		up_xfertype;	/* Transfer type, see USB2.0 spec. */
490c8f4683SHans Petter Selasky 	uint32_t	up_flags;	/* Transfer flags */
5018ec6525SWeongyo Jeong #define	USBPF_FLAG_FORCE_SHORT_XFER	(1 << 0)
5118ec6525SWeongyo Jeong #define	USBPF_FLAG_SHORT_XFER_OK	(1 << 1)
5218ec6525SWeongyo Jeong #define	USBPF_FLAG_SHORT_FRAMES_OK	(1 << 2)
5318ec6525SWeongyo Jeong #define	USBPF_FLAG_PIPE_BOF		(1 << 3)
5418ec6525SWeongyo Jeong #define	USBPF_FLAG_PROXY_BUFFER		(1 << 4)
5518ec6525SWeongyo Jeong #define	USBPF_FLAG_EXT_BUFFER		(1 << 5)
5618ec6525SWeongyo Jeong #define	USBPF_FLAG_MANUAL_STATUS	(1 << 6)
5718ec6525SWeongyo Jeong #define	USBPF_FLAG_NO_PIPE_OK		(1 << 7)
5818ec6525SWeongyo Jeong #define	USBPF_FLAG_STALL_PIPE		(1 << 8)
590c8f4683SHans Petter Selasky 	uint32_t	up_status;	/* Transfer status */
6018ec6525SWeongyo Jeong #define	USBPF_STATUS_OPEN		(1 << 0)
6118ec6525SWeongyo Jeong #define	USBPF_STATUS_TRANSFERRING	(1 << 1)
6218ec6525SWeongyo Jeong #define	USBPF_STATUS_DID_DMA_DELAY	(1 << 2)
6318ec6525SWeongyo Jeong #define	USBPF_STATUS_DID_CLOSE		(1 << 3)
6418ec6525SWeongyo Jeong #define	USBPF_STATUS_DRAINING		(1 << 4)
6518ec6525SWeongyo Jeong #define	USBPF_STATUS_STARTED		(1 << 5)
6618ec6525SWeongyo Jeong #define	USBPF_STATUS_BW_RECLAIMED	(1 << 6)
6718ec6525SWeongyo Jeong #define	USBPF_STATUS_CONTROL_XFR	(1 << 7)
6818ec6525SWeongyo Jeong #define	USBPF_STATUS_CONTROL_HDR	(1 << 8)
6918ec6525SWeongyo Jeong #define	USBPF_STATUS_CONTROL_ACT	(1 << 9)
7018ec6525SWeongyo Jeong #define	USBPF_STATUS_CONTROL_STALL	(1 << 10)
7118ec6525SWeongyo Jeong #define	USBPF_STATUS_SHORT_FRAMES_OK	(1 << 11)
7218ec6525SWeongyo Jeong #define	USBPF_STATUS_SHORT_XFER_OK	(1 << 12)
7318ec6525SWeongyo Jeong #define	USBPF_STATUS_BDMA_ENABLE	(1 << 13)
7418ec6525SWeongyo Jeong #define	USBPF_STATUS_BDMA_NO_POST_SYNC	(1 << 14)
7518ec6525SWeongyo Jeong #define	USBPF_STATUS_BDMA_SETUP		(1 << 15)
7618ec6525SWeongyo Jeong #define	USBPF_STATUS_ISOCHRONOUS_XFR	(1 << 16)
7718ec6525SWeongyo Jeong #define	USBPF_STATUS_CURR_DMA_SET	(1 << 17)
7818ec6525SWeongyo Jeong #define	USBPF_STATUS_CAN_CANCEL_IMMED	(1 << 18)
7918ec6525SWeongyo Jeong #define	USBPF_STATUS_DOING_CALLBACK	(1 << 19)
8031a11691SHans Petter Selasky 	uint32_t	up_error;	/* USB error, see USB_ERR_XXX */
8131a11691SHans Petter Selasky 	uint32_t	up_interval;	/* For interrupt and isoc (ms) */
8231a11691SHans Petter Selasky 	uint32_t	up_frames;	/* Number of following frames */
8331a11691SHans Petter Selasky 	uint32_t	up_packet_size;	/* Packet size used */
8431a11691SHans Petter Selasky 	uint32_t	up_packet_count;	/* Packet count used */
8531a11691SHans Petter Selasky 	uint32_t	up_endpoint;	/* USB endpoint / stream ID */
8631a11691SHans Petter Selasky 	uint8_t		up_speed;	/* USB speed, see USB_SPEED_XXX */
8718ec6525SWeongyo Jeong 	/* sizeof(struct usbpf_pkthdr) == 128 bytes */
8831a11691SHans Petter Selasky 	uint8_t		up_reserved[83];
8918ec6525SWeongyo Jeong };
9018ec6525SWeongyo Jeong 
9131a11691SHans Petter Selasky struct usbpf_framehdr {
9231a11691SHans Petter Selasky 	/*
9331a11691SHans Petter Selasky 	 * The frame length field excludes length of frame header and
9431a11691SHans Petter Selasky 	 * any alignment.
9531a11691SHans Petter Selasky 	 */
9631a11691SHans Petter Selasky 	uint32_t length;
9731a11691SHans Petter Selasky #define	USBPF_FRAME_ALIGN(x)		(((x) + 3) & ~3)
9831a11691SHans Petter Selasky 	uint32_t flags;
9931a11691SHans Petter Selasky #define	USBPF_FRAMEFLAG_READ		(1 << 0)
10031a11691SHans Petter Selasky #define	USBPF_FRAMEFLAG_DATA_FOLLOWS	(1 << 1)
10131a11691SHans Petter Selasky };
10231a11691SHans Petter Selasky 
10331a11691SHans Petter Selasky #define	USBPF_HDR_LEN		128	/* bytes */
10431a11691SHans Petter Selasky #define	USBPF_FRAME_HDR_LEN	8	/* bytes */
10531a11691SHans Petter Selasky 
10631a11691SHans Petter Selasky extern uint8_t usbpf_pkthdr_size_ok[
10731a11691SHans Petter Selasky     (sizeof(struct usbpf_pkthdr) == USBPF_HDR_LEN) ? 1 : -1];
10831a11691SHans Petter Selasky extern uint8_t usbpf_framehdr_size_ok[
10931a11691SHans Petter Selasky     (sizeof(struct usbpf_framehdr) == USBPF_FRAME_HDR_LEN) ? 1 : -1];
11018ec6525SWeongyo Jeong 
11118ec6525SWeongyo Jeong #define	USBPF_XFERTAP_SUBMIT	0
11218ec6525SWeongyo Jeong #define	USBPF_XFERTAP_DONE	1
11318ec6525SWeongyo Jeong 
114*a2dd1caaSHans Petter Selasky #if defined(_KERNEL) || defined(_STANDALONE)
115e376f9c3SWeongyo Jeong void	usbpf_attach(struct usb_bus *);
11618ec6525SWeongyo Jeong void	usbpf_detach(struct usb_bus *);
11718ec6525SWeongyo Jeong void	usbpf_xfertap(struct usb_xfer *, int);
118*a2dd1caaSHans Petter Selasky #endif	/* _KERNEL || _STANDALONE */
119*a2dd1caaSHans Petter Selasky #endif	/* _DEV_USB_PF_H */
12018ec6525SWeongyo Jeong 
121