blob: 605cc2ccf9c58d194be099ce97c5e941ad1dfb93 [file] [log] [blame]
Greg Kroah-Hartmanb2441312017-11-01 15:07:57 +01001/* SPDX-License-Identifier: GPL-2.0 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002#ifndef _INCLUDE_GUARD_PD6729_H_
3#define _INCLUDE_GUARD_PD6729_H_
4
Linus Torvalds1da177e2005-04-16 15:20:36 -07005/* Flags for I365_GENCTL */
6#define I365_DF_VS1 0x40 /* DF-step Voltage Sense */
7#define I365_DF_VS2 0x80
8
9/* Fields in PD67_EXTERN_DATA */
10#define PD67_EXD_VS1(s) (0x01 << ((s) << 1))
11#define PD67_EXD_VS2(s) (0x02 << ((s) << 1))
12
13/* Default ISA interrupt mask */
14#define PD67_MASK 0x0eb8 /* irq 11,10,9,7,5,4,3 */
15
16struct pd6729_socket {
17 int number;
18 int card_irq;
Komuro006839f2010-10-23 07:02:05 +090019 unsigned long io_base; /* base io address of the socket */
Linus Torvalds1da177e2005-04-16 15:20:36 -070020 struct pcmcia_socket socket;
21 struct timer_list poll_timer;
22};
23
24#endif