Back to home page

OSCL-LXR

 
 

    


0001 /* SPDX-License-Identifier: GPL-2.0 */
0002 #ifndef _INCLUDE_GUARD_PD6729_H_
0003 #define _INCLUDE_GUARD_PD6729_H_
0004 
0005 /* Flags for I365_GENCTL */
0006 #define I365_DF_VS1     0x40    /* DF-step Voltage Sense */
0007 #define I365_DF_VS2     0x80
0008 
0009 /* Fields in PD67_EXTERN_DATA */
0010 #define PD67_EXD_VS1(s)     (0x01 << ((s) << 1))
0011 #define PD67_EXD_VS2(s)     (0x02 << ((s) << 1))
0012 
0013 /* Default ISA interrupt mask */
0014 #define PD67_MASK   0x0eb8  /* irq 11,10,9,7,5,4,3 */
0015 
0016 struct pd6729_socket {
0017     int number;
0018     int card_irq;
0019     unsigned long io_base;  /* base io address of the socket */
0020     struct pcmcia_socket socket;
0021     struct timer_list poll_timer;
0022 };
0023 
0024 #endif