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