xref: /netbsd-src/sys/arch/luna68k/include/xpio.h (revision 97d3c24f2a5224dfd3c0c34a6c1d650d1f07f7b4)
1*97d3c24fStsutsui /* $NetBSD: xpio.h,v 1.1 2016/12/03 17:38:02 tsutsui Exp $ */
2*97d3c24fStsutsui 
3*97d3c24fStsutsui /*-
4*97d3c24fStsutsui  * Copyright (c) 2016 Izumi Tsutsui.  All rights reserved.
5*97d3c24fStsutsui  *
6*97d3c24fStsutsui  * Redistribution and use in source and binary forms, with or without
7*97d3c24fStsutsui  * modification, are permitted provided that the following conditions
8*97d3c24fStsutsui  * are met:
9*97d3c24fStsutsui  * 1. Redistributions of source code must retain the above copyright
10*97d3c24fStsutsui  *    notice, this list of conditions and the following disclaimer.
11*97d3c24fStsutsui  * 2. Redistributions in binary form must reproduce the above copyright
12*97d3c24fStsutsui  *    notice, this list of conditions and the following disclaimer in the
13*97d3c24fStsutsui  *    documentation and/or other materials provided with the distribution.
14*97d3c24fStsutsui  *
15*97d3c24fStsutsui  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
16*97d3c24fStsutsui  * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
17*97d3c24fStsutsui  * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
18*97d3c24fStsutsui  * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
19*97d3c24fStsutsui  * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
20*97d3c24fStsutsui  * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
21*97d3c24fStsutsui  * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
22*97d3c24fStsutsui  * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
23*97d3c24fStsutsui  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
24*97d3c24fStsutsui  * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
25*97d3c24fStsutsui  */
26*97d3c24fStsutsui 
27*97d3c24fStsutsui /*
28*97d3c24fStsutsui  * ioctl for LUNA's Hitachi HD647180 "XP" I/O processor driver
29*97d3c24fStsutsui  */
30*97d3c24fStsutsui 
31*97d3c24fStsutsui #ifndef _LUNA68K_XPIO_H_
32*97d3c24fStsutsui #define _LUNA68K_XPIO_H_
33*97d3c24fStsutsui 
34*97d3c24fStsutsui #include <sys/ioctl.h>
35*97d3c24fStsutsui #include <sys/ioccom.h>
36*97d3c24fStsutsui 
37*97d3c24fStsutsui struct xp_download {
38*97d3c24fStsutsui 	u_int	size;		/* size to be downloaded to XP shared mem */
39*97d3c24fStsutsui 	uint8_t	*data;		/* pointer to code to be downloaded */
40*97d3c24fStsutsui };
41*97d3c24fStsutsui #define XPIOCDOWNLD	_IOW('x', 1, struct xp_download)
42*97d3c24fStsutsui 
43*97d3c24fStsutsui #endif /* _LUNA68K_XPIO_H_ */
44