1*707aef95SRuslan Bukin /*- 2*707aef95SRuslan Bukin * Copyright (c) 2014 Ruslan Bukin <br@bsdpad.com> 3*707aef95SRuslan Bukin * All rights reserved. 4*707aef95SRuslan Bukin * 5*707aef95SRuslan Bukin * This software was developed by SRI International and the University of 6*707aef95SRuslan Bukin * Cambridge Computer Laboratory under DARPA/AFRL contract (FA8750-10-C-0237) 7*707aef95SRuslan Bukin * ("CTSRD"), as part of the DARPA CRASH research programme. 8*707aef95SRuslan Bukin * 9*707aef95SRuslan Bukin * Redistribution and use in source and binary forms, with or without 10*707aef95SRuslan Bukin * modification, are permitted provided that the following conditions 11*707aef95SRuslan Bukin * are met: 12*707aef95SRuslan Bukin * 1. Redistributions of source code must retain the above copyright 13*707aef95SRuslan Bukin * notice, this list of conditions and the following disclaimer. 14*707aef95SRuslan Bukin * 2. Redistributions in binary form must reproduce the above copyright 15*707aef95SRuslan Bukin * notice, this list of conditions and the following disclaimer in the 16*707aef95SRuslan Bukin * documentation and/or other materials provided with the distribution. 17*707aef95SRuslan Bukin * 18*707aef95SRuslan Bukin * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND 19*707aef95SRuslan Bukin * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE 20*707aef95SRuslan Bukin * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE 21*707aef95SRuslan Bukin * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE 22*707aef95SRuslan Bukin * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL 23*707aef95SRuslan Bukin * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS 24*707aef95SRuslan Bukin * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) 25*707aef95SRuslan Bukin * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT 26*707aef95SRuslan Bukin * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY 27*707aef95SRuslan Bukin * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF 28*707aef95SRuslan Bukin * SUCH DAMAGE. 29*707aef95SRuslan Bukin */ 30*707aef95SRuslan Bukin 31*707aef95SRuslan Bukin #define PIO_DATA 0x00 32*707aef95SRuslan Bukin #define PIO_DIR 0x04 33*707aef95SRuslan Bukin #define PIO_OUT(n) (1 << n) 34*707aef95SRuslan Bukin #define PIO_OUT_ALL 0xffffffff 35*707aef95SRuslan Bukin #define PIO_INT_MASK 0x08 36*707aef95SRuslan Bukin #define PIO_UNMASK(n) (1 << n) 37*707aef95SRuslan Bukin #define PIO_UNMASK_ALL 0xffffffff 38*707aef95SRuslan Bukin #define PIO_EDGECAPT 0x0c 39*707aef95SRuslan Bukin #define PIO_OUTSET 0x10 40*707aef95SRuslan Bukin #define PIO_OUTCLR 0x14 41