2001-07-15 04:30:17 +04:00
|
|
|
/* $NetBSD: ipaq_saipvar.h,v 1.2 2001/07/15 00:30:17 ichiro Exp $ */
|
2001-07-10 20:31:52 +04:00
|
|
|
|
|
|
|
/*-
|
|
|
|
* Copyright (c) 2001, The NetBSD Foundation, Inc. All rights reserved.
|
|
|
|
*
|
|
|
|
* This code is derived from software contributed to The NetBSD Foundation
|
|
|
|
* by Ichiro FUKUHARA (ichiro@ichiro.org).
|
|
|
|
*
|
|
|
|
* Redistribution and use in source and binary forms, with or without
|
|
|
|
* modification, are permitted provided that the following conditions
|
|
|
|
* are met:
|
|
|
|
* 1. Redistributions of source code must retain the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer.
|
|
|
|
* 2. Redistributions in binary form must reproduce the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer in the
|
|
|
|
* documentation and/or other materials provided with the distribution.
|
|
|
|
* 3. All advertising materials mentioning features or use of this software
|
|
|
|
* must display the following acknowledgement:
|
|
|
|
* This product includes software developed by the NetBSD
|
|
|
|
* Foundation, Inc. and its contributors.
|
|
|
|
* 4. Neither the name of The NetBSD Foundation nor the names of its
|
|
|
|
* contributors may be used to endorse or promote products derived
|
|
|
|
* from this software without specific prior written permission.
|
|
|
|
*/
|
|
|
|
|
|
|
|
/* ipaq softc */
|
|
|
|
struct ipaq_softc {
|
|
|
|
struct device sc_dev;
|
|
|
|
bus_space_tag_t sc_iot;
|
|
|
|
bus_space_handle_t sc_ioh;
|
|
|
|
bus_space_handle_t sc_gpioh;
|
|
|
|
bus_space_handle_t sc_egpioh;
|
|
|
|
bus_space_handle_t sc_ppch;
|
|
|
|
bus_space_handle_t sc_dmach;
|
|
|
|
u_int32_t sc_intrmask;
|
2001-07-15 04:30:17 +04:00
|
|
|
|
|
|
|
u_int16_t ipaq_egpio;
|
2001-07-10 20:31:52 +04:00
|
|
|
};
|