1 /* SPDX-License-Identifier: GPL-2.0-only */
5 * The initial developer of the original code is David A. Hinds
6 * <dahinds@users.sourceforge.net>. Portions created by David A. Hinds
7 * are Copyright (C) 1999 David A. Hinds. All Rights Reserved.
9 * (C) 1999 David A. Hinds
15 #include <linux/device.h>
16 #include <linux/sched.h> /* task_struct, completion */
17 #include <linux/mutex.h>
20 #include <linux/pci.h>
23 /* Definitions for card status flags for GetStatus */
24 #define SS_WRPROT 0x0001
25 #define SS_CARDLOCK 0x0002
26 #define SS_EJECTION 0x0004
27 #define SS_INSERTION 0x0008
28 #define SS_BATDEAD 0x0010
29 #define SS_BATWARN 0x0020
30 #define SS_READY 0x0040
31 #define SS_DETECT 0x0080
32 #define SS_POWERON 0x0100
34 #define SS_STSCHG 0x0400
35 #define SS_CARDBUS 0x0800
36 #define SS_3VCARD 0x1000
37 #define SS_XVCARD 0x2000
38 #define SS_PENDING 0x4000
39 #define SS_ZVCARD 0x8000
41 /* InquireSocket capabilities */
42 #define SS_CAP_PAGE_REGS 0x0001
43 #define SS_CAP_VIRTUAL_BUS 0x0002
44 #define SS_CAP_MEM_ALIGN 0x0004
45 #define SS_CAP_STATIC_MAP 0x0008
46 #define SS_CAP_PCCARD 0x4000
47 #define SS_CAP_CARDBUS 0x8000
49 /* for GetSocket, SetSocket */
50 typedef struct socket_state_t
{
57 extern socket_state_t dead_socket
;
59 /* Socket configuration flags */
60 #define SS_PWR_AUTO 0x0010
61 #define SS_IOCARD 0x0020
62 #define SS_RESET 0x0040
63 #define SS_DMA_MODE 0x0080
64 #define SS_SPKR_ENA 0x0100
65 #define SS_OUTPUT_ENA 0x0200
67 /* Flags for I/O port and memory windows */
68 #define MAP_ACTIVE 0x01
69 #define MAP_16BIT 0x02
70 #define MAP_AUTOSZ 0x04
72 #define MAP_WRPROT 0x10
73 #define MAP_ATTRIB 0x20
74 #define MAP_USE_WAIT 0x40
75 #define MAP_PREFETCH 0x80
77 /* Use this just for bridge windows */
78 #define MAP_IOSPACE 0x20
80 /* power hook operations */
81 #define HOOK_POWER_PRE 0x01
82 #define HOOK_POWER_POST 0x02
84 typedef struct pccard_io_map
{
88 phys_addr_t start
, stop
;
91 typedef struct pccard_mem_map
{
95 phys_addr_t static_start
;
100 typedef struct io_window_t
{
102 struct resource
*res
;
105 /* Maximum number of IO windows per socket */
108 /* Maximum number of memory windows per socket */
115 struct pcmcia_socket
;
116 struct pccard_resource_ops
;
118 struct pcmcia_callback
;
121 struct pccard_operations
{
122 int (*init
)(struct pcmcia_socket
*s
);
123 int (*suspend
)(struct pcmcia_socket
*s
);
124 int (*get_status
)(struct pcmcia_socket
*s
, u_int
*value
);
125 int (*set_socket
)(struct pcmcia_socket
*s
, socket_state_t
*state
);
126 int (*set_io_map
)(struct pcmcia_socket
*s
, struct pccard_io_map
*io
);
127 int (*set_mem_map
)(struct pcmcia_socket
*s
, struct pccard_mem_map
*mem
);
130 struct pcmcia_socket
{
131 struct module
*owner
;
132 socket_state_t socket
;
134 u_int suspended_state
; /* state before suspend */
137 pccard_mem_map cis_mem
;
138 void __iomem
*cis_virt
;
139 io_window_t io
[MAX_IO_WIN
];
140 pccard_mem_map win
[MAX_WIN
];
141 struct list_head cis_cache
;
145 struct list_head socket_list
;
146 struct completion socket_released
;
149 unsigned int sock
; /* socket number */
152 /* socket capabilities */
158 struct pci_dev
*cb_dev
;
160 /* socket setup is done so resources should be able to be allocated.
161 * Only if set to 1, calls to find_{io,mem}_region are handled, and
162 * insertio events are actually managed by the PCMCIA layer.*/
163 u8 resource_setup_done
;
165 /* socket operations */
166 struct pccard_operations
*ops
;
167 struct pccard_resource_ops
*resource_ops
;
170 /* Zoom video behaviour is so chip specific its not worth adding
172 void (*zoom_video
)(struct pcmcia_socket
*,
175 /* so is power hook */
176 int (*power_hook
)(struct pcmcia_socket
*sock
, int operation
);
178 /* allows tuning the CB bridge before loading driver for the CB card */
179 #ifdef CONFIG_CARDBUS
180 void (*tune_bridge
)(struct pcmcia_socket
*sock
, struct pci_bus
*bus
);
184 struct task_struct
*thread
;
185 struct completion thread_done
;
186 unsigned int thread_events
;
187 unsigned int sysfs_events
;
189 /* For the non-trivial interaction between these locks,
190 * see Documentation/pcmcia/locking.rst */
191 struct mutex skt_mutex
;
192 struct mutex ops_mutex
;
194 /* protects thread_events and sysfs_events */
195 spinlock_t thread_lock
;
197 /* pcmcia (16-bit) */
198 struct pcmcia_callback
*callback
;
200 #if defined(CONFIG_PCMCIA) || defined(CONFIG_PCMCIA_MODULE)
201 /* The following elements refer to 16-bit PCMCIA devices inserted
203 struct list_head devices_list
;
205 /* the number of devices, used only internally and subject to
206 * incorrectness and change */
209 /* does the PCMCIA card consist of two pseudo devices? */
212 /* non-zero if PCMCIA card is present */
215 /* IRQ to be used by PCMCIA devices. May not be IRQ 0. */
216 unsigned int pcmcia_irq
;
218 #endif /* CONFIG_PCMCIA */
222 /* data internal to the socket driver */
224 /* status of the card during resume from a system sleep state */
229 /* socket drivers must define the resource operations type they use. There
231 * - pccard_static_ops iomem and ioport areas are assigned statically
232 * - pccard_iodyn_ops iomem areas is assigned statically, ioport
234 * If this option is selected, use
235 * "select PCCARD_IODYN" in Kconfig.
236 * - pccard_nonstatic_ops iomem and ioport areas are assigned dynamically.
237 * If this option is selected, use
238 * "select PCCARD_NONSTATIC" in Kconfig.
241 extern struct pccard_resource_ops pccard_static_ops
;
242 #if defined(CONFIG_PCMCIA) || defined(CONFIG_PCMCIA_MODULE)
243 extern struct pccard_resource_ops pccard_iodyn_ops
;
244 extern struct pccard_resource_ops pccard_nonstatic_ops
;
246 /* If PCMCIA is not used, but only CARDBUS, these functions are not used
247 * at all. Therefore, do not use the large (240K!) rsrc_nonstatic module
249 #define pccard_iodyn_ops pccard_static_ops
250 #define pccard_nonstatic_ops pccard_static_ops
254 /* socket drivers use this callback in their IRQ handler */
255 extern void pcmcia_parse_events(struct pcmcia_socket
*socket
,
256 unsigned int events
);
258 /* to register and unregister a socket */
259 extern int pcmcia_register_socket(struct pcmcia_socket
*socket
);
260 extern void pcmcia_unregister_socket(struct pcmcia_socket
*socket
);
263 #endif /* _LINUX_SS_H */