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