2005-04-17 02:20:36 +04:00
/*
* ss . h
*
* This program is free software ; you can redistribute it and / or modify
* it under the terms of the GNU General Public License version 2 as
* published by the Free Software Foundation .
*
* The initial developer of the original code is David A . Hinds
* < dahinds @ users . sourceforge . net > . Portions created by David A . Hinds
* are Copyright ( C ) 1999 David A . Hinds . All Rights Reserved .
*
* ( C ) 1999 David A . Hinds
*/
# ifndef _LINUX_SS_H
# define _LINUX_SS_H
2005-06-28 03:28:50 +04:00
# include <linux/device.h>
2005-10-31 02:03:48 +03:00
# include <linux/sched.h> /* task_struct, completion */
2006-01-10 23:20:36 +03:00
# include <linux/mutex.h>
2005-06-28 03:28:50 +04:00
2005-08-22 09:29:26 +04:00
# ifdef CONFIG_CARDBUS
# include <linux/pci.h>
# endif
2005-04-17 02:20:36 +04:00
/* Definitions for card status flags for GetStatus */
# define SS_WRPROT 0x0001
# define SS_CARDLOCK 0x0002
# define SS_EJECTION 0x0004
# define SS_INSERTION 0x0008
# define SS_BATDEAD 0x0010
# define SS_BATWARN 0x0020
# define SS_READY 0x0040
# define SS_DETECT 0x0080
# define SS_POWERON 0x0100
# define SS_GPI 0x0200
# define SS_STSCHG 0x0400
# define SS_CARDBUS 0x0800
# define SS_3VCARD 0x1000
# define SS_XVCARD 0x2000
# define SS_PENDING 0x4000
# define SS_ZVCARD 0x8000
/* InquireSocket capabilities */
# define SS_CAP_PAGE_REGS 0x0001
# define SS_CAP_VIRTUAL_BUS 0x0002
# define SS_CAP_MEM_ALIGN 0x0004
# define SS_CAP_STATIC_MAP 0x0008
# define SS_CAP_PCCARD 0x4000
# define SS_CAP_CARDBUS 0x8000
/* for GetSocket, SetSocket */
typedef struct socket_state_t {
2008-08-26 02:09:56 +04:00
u_int flags ;
u_int csc_mask ;
u_char Vcc , Vpp ;
u_char io_irq ;
2005-04-17 02:20:36 +04:00
} socket_state_t ;
extern socket_state_t dead_socket ;
/* Socket configuration flags */
# define SS_PWR_AUTO 0x0010
# define SS_IOCARD 0x0020
# define SS_RESET 0x0040
# define SS_DMA_MODE 0x0080
# define SS_SPKR_ENA 0x0100
# define SS_OUTPUT_ENA 0x0200
/* Flags for I/O port and memory windows */
# define MAP_ACTIVE 0x01
# define MAP_16BIT 0x02
# define MAP_AUTOSZ 0x04
# define MAP_0WS 0x08
# define MAP_WRPROT 0x10
# define MAP_ATTRIB 0x20
# define MAP_USE_WAIT 0x40
# define MAP_PREFETCH 0x80
/* Use this just for bridge windows */
# define MAP_IOSPACE 0x20
2005-06-23 11:10:12 +04:00
/* power hook operations */
# define HOOK_POWER_PRE 0x01
# define HOOK_POWER_POST 0x02
2005-04-17 02:20:36 +04:00
typedef struct pccard_io_map {
2008-08-26 02:09:56 +04:00
u_char map ;
u_char flags ;
u_short speed ;
2009-06-16 20:35:00 +04:00
phys_addr_t start , stop ;
2005-04-17 02:20:36 +04:00
} pccard_io_map ;
typedef struct pccard_mem_map {
2008-08-26 02:09:56 +04:00
u_char map ;
u_char flags ;
u_short speed ;
2009-06-16 20:35:00 +04:00
phys_addr_t static_start ;
2008-08-26 02:09:56 +04:00
u_int card_start ;
struct resource * res ;
2005-04-17 02:20:36 +04:00
} pccard_mem_map ;
typedef struct io_window_t {
2008-02-05 09:27:35 +03:00
u_int InUse , Config ;
2005-04-17 02:20:36 +04:00
struct resource * res ;
} io_window_t ;
/* Maximum number of IO windows per socket */
# define MAX_IO_WIN 2
/* Maximum number of memory windows per socket */
# define MAX_WIN 4
2008-08-26 02:09:56 +04:00
/*
* Socket operations .
*/
struct pcmcia_socket ;
struct pccard_resource_ops ;
2005-04-17 02:20:36 +04:00
struct config_t ;
struct pcmcia_callback ;
2005-06-28 03:28:50 +04:00
struct user_info_t ;
2005-04-17 02:20:36 +04:00
2008-08-26 02:09:56 +04:00
struct pccard_operations {
int ( * init ) ( struct pcmcia_socket * s ) ;
int ( * suspend ) ( struct pcmcia_socket * s ) ;
int ( * get_status ) ( struct pcmcia_socket * s , u_int * value ) ;
int ( * set_socket ) ( struct pcmcia_socket * s , socket_state_t * state ) ;
int ( * set_io_map ) ( struct pcmcia_socket * s , struct pccard_io_map * io ) ;
int ( * set_mem_map ) ( struct pcmcia_socket * s , struct pccard_mem_map * mem ) ;
} ;
2005-04-17 02:20:36 +04:00
struct pcmcia_socket {
struct module * owner ;
socket_state_t socket ;
u_int state ;
2010-01-02 16:14:23 +03:00
u_int suspended_state ; /* state before suspend */
2005-04-17 02:20:36 +04:00
u_short functions ;
u_short lock_count ;
pccard_mem_map cis_mem ;
void __iomem * cis_virt ;
io_window_t io [ MAX_IO_WIN ] ;
2009-11-03 03:16:12 +03:00
pccard_mem_map win [ MAX_WIN ] ;
2005-04-17 02:20:36 +04:00
struct list_head cis_cache ;
2008-07-28 21:44:05 +04:00
size_t fake_cis_len ;
u8 * fake_cis ;
2005-04-17 02:20:36 +04:00
struct list_head socket_list ;
struct completion socket_released ;
2009-12-08 00:11:45 +03:00
/* deprecated */
2005-04-17 02:20:36 +04:00
unsigned int sock ; /* socket number */
/* socket capabilities */
u_int features ;
u_int irq_mask ;
u_int map_size ;
2008-02-05 09:27:35 +03:00
u_int io_offset ;
2009-03-30 01:43:43 +04:00
u_int pci_irq ;
2009-12-08 00:11:45 +03:00
struct pci_dev * cb_dev ;
2005-04-17 02:20:36 +04:00
2008-08-26 02:09:56 +04:00
/* socket setup is done so resources should be able to be allocated.
* Only if set to 1 , calls to find_ { io , mem } _region are handled , and
* insertio events are actually managed by the PCMCIA layer . */
2010-07-21 16:43:05 +04:00
u8 resource_setup_done ;
2005-04-17 02:20:36 +04:00
/* socket operations */
2009-12-08 00:11:45 +03:00
struct pccard_operations * ops ;
struct pccard_resource_ops * resource_ops ;
void * resource_data ;
2005-04-17 02:20:36 +04:00
/* Zoom video behaviour is so chip specific its not worth adding
this to _ops */
2008-08-26 02:09:56 +04:00
void ( * zoom_video ) ( struct pcmcia_socket * ,
int ) ;
2005-06-23 11:10:12 +04:00
/* so is power hook */
int ( * power_hook ) ( struct pcmcia_socket * sock , int operation ) ;
2008-08-26 02:09:56 +04:00
2005-08-22 09:29:26 +04:00
/* allows tuning the CB bridge before loading driver for the CB card */
2008-08-26 02:09:56 +04:00
# ifdef CONFIG_CARDBUS
2005-08-22 09:29:26 +04:00
void ( * tune_bridge ) ( struct pcmcia_socket * sock , struct pci_bus * bus ) ;
# endif
2005-04-17 02:20:36 +04:00
/* state thread */
struct task_struct * thread ;
struct completion thread_done ;
unsigned int thread_events ;
2010-01-17 20:13:31 +03:00
unsigned int sysfs_events ;
2010-01-16 11:14:11 +03:00
/* For the non-trivial interaction between these locks,
* see Documentation / pcmcia / locking . txt */
2008-08-26 02:09:56 +04:00
struct mutex skt_mutex ;
2010-01-12 23:42:51 +03:00
struct mutex ops_mutex ;
2010-01-16 11:14:11 +03:00
2010-01-17 20:13:31 +03:00
/* protects thread_events and sysfs_events */
2008-08-26 02:09:56 +04:00
spinlock_t thread_lock ;
2005-04-17 02:20:36 +04:00
/* pcmcia (16-bit) */
struct pcmcia_callback * callback ;
2005-06-28 03:28:50 +04:00
# if defined(CONFIG_PCMCIA) || defined(CONFIG_PCMCIA_MODULE)
2008-08-26 02:09:56 +04:00
/* The following elements refer to 16-bit PCMCIA devices inserted
* into the socket */
struct list_head devices_list ;
/* the number of devices, used only internally and subject to
* incorrectness and change */
u8 device_count ;
2005-06-28 03:28:50 +04:00
2010-07-21 16:43:05 +04:00
/* does the PCMCIA card consist of two pseudo devices? */
u8 pcmcia_pfc ;
2008-08-26 02:09:56 +04:00
2010-04-20 16:49:01 +04:00
/* non-zero if PCMCIA card is present */
atomic_t present ;
2008-08-26 02:09:56 +04:00
2010-03-07 12:51:23 +03:00
/* IRQ to be used by PCMCIA devices. May not be IRQ 0. */
unsigned int pcmcia_irq ;
2008-08-26 02:09:56 +04:00
# endif /* CONFIG_PCMCIA */
2005-06-28 03:28:50 +04:00
2005-04-17 02:20:36 +04:00
/* socket device */
2006-09-12 19:00:10 +04:00
struct device dev ;
2008-08-26 02:09:56 +04:00
/* data internal to the socket driver */
void * driver_data ;
2009-11-03 12:54:58 +03:00
/* status of the card during resume from a system sleep state */
int resume_status ;
2005-04-17 02:20:36 +04:00
} ;
2008-08-26 02:09:56 +04:00
/* socket drivers must define the resource operations type they use. There
* are three options :
* - pccard_static_ops iomem and ioport areas are assigned statically
* - pccard_iodyn_ops iomem areas is assigned statically , ioport
* areas dynamically
2010-01-06 13:19:25 +03:00
* If this option is selected , use
* " select PCCARD_IODYN " in Kconfig .
2008-08-26 02:09:56 +04:00
* - pccard_nonstatic_ops iomem and ioport areas are assigned dynamically .
* If this option is selected , use
* " select PCCARD_NONSTATIC " in Kconfig .
2010-01-06 16:33:15 +03:00
*
2008-08-26 02:09:56 +04:00
*/
extern struct pccard_resource_ops pccard_static_ops ;
2010-01-06 16:33:15 +03:00
# if defined(CONFIG_PCMCIA) || defined(CONFIG_PCMCIA_MODULE)
2008-08-26 02:09:56 +04:00
extern struct pccard_resource_ops pccard_iodyn_ops ;
extern struct pccard_resource_ops pccard_nonstatic_ops ;
2010-01-06 16:33:15 +03:00
# else
/* If PCMCIA is not used, but only CARDBUS, these functions are not used
* at all . Therefore , do not use the large ( 240 K ! ) rsrc_nonstatic module
*/
# define pccard_iodyn_ops pccard_static_ops
# define pccard_nonstatic_ops pccard_static_ops
# endif
2005-04-17 02:20:36 +04:00
2008-08-26 02:09:56 +04:00
/* socket drivers use this callback in their IRQ handler */
extern void pcmcia_parse_events ( struct pcmcia_socket * socket ,
unsigned int events ) ;
2005-04-17 02:20:36 +04:00
2008-08-26 02:09:56 +04:00
/* to register and unregister a socket */
2005-04-17 02:20:36 +04:00
extern int pcmcia_register_socket ( struct pcmcia_socket * socket ) ;
extern void pcmcia_unregister_socket ( struct pcmcia_socket * socket ) ;
# endif /* _LINUX_SS_H */