1 1.3.2.2 lukem /* $NetBSD: ipaq_saipvar.h,v 1.3.2.2 2001/08/03 04:11:32 lukem Exp $ */ 2 1.3.2.2 lukem 3 1.3.2.2 lukem /*- 4 1.3.2.2 lukem * Copyright (c) 2001, The NetBSD Foundation, Inc. All rights reserved. 5 1.3.2.2 lukem * 6 1.3.2.2 lukem * This code is derived from software contributed to The NetBSD Foundation 7 1.3.2.2 lukem * by Ichiro FUKUHARA (ichiro (at) ichiro.org). 8 1.3.2.2 lukem * 9 1.3.2.2 lukem * Redistribution and use in source and binary forms, with or without 10 1.3.2.2 lukem * modification, are permitted provided that the following conditions 11 1.3.2.2 lukem * are met: 12 1.3.2.2 lukem * 1. Redistributions of source code must retain the above copyright 13 1.3.2.2 lukem * notice, this list of conditions and the following disclaimer. 14 1.3.2.2 lukem * 2. Redistributions in binary form must reproduce the above copyright 15 1.3.2.2 lukem * notice, this list of conditions and the following disclaimer in the 16 1.3.2.2 lukem * documentation and/or other materials provided with the distribution. 17 1.3.2.2 lukem * 3. All advertising materials mentioning features or use of this software 18 1.3.2.2 lukem * must display the following acknowledgement: 19 1.3.2.2 lukem * This product includes software developed by the NetBSD 20 1.3.2.2 lukem * Foundation, Inc. and its contributors. 21 1.3.2.2 lukem * 4. Neither the name of The NetBSD Foundation nor the names of its 22 1.3.2.2 lukem * contributors may be used to endorse or promote products derived 23 1.3.2.2 lukem * from this software without specific prior written permission. 24 1.3.2.2 lukem */ 25 1.3.2.2 lukem 26 1.3.2.2 lukem /* ipaq softc */ 27 1.3.2.2 lukem struct ipaq_softc { 28 1.3.2.2 lukem struct device sc_dev; 29 1.3.2.2 lukem bus_space_tag_t sc_iot; 30 1.3.2.2 lukem bus_space_handle_t sc_ioh; 31 1.3.2.2 lukem bus_space_handle_t sc_gpioh; 32 1.3.2.2 lukem bus_space_handle_t sc_egpioh; 33 1.3.2.2 lukem bus_space_handle_t sc_ppch; 34 1.3.2.2 lukem bus_space_handle_t sc_dmach; 35 1.3.2.2 lukem bus_space_handle_t sc_ssph; 36 1.3.2.2 lukem u_int32_t sc_intrmask; 37 1.3.2.2 lukem 38 1.3.2.2 lukem u_int16_t ipaq_egpio; 39 1.3.2.2 lukem }; 40