| 
									
										
										
										
											2012-12-06 12:15:58 +01:00
										 |  |  | #ifndef HW_PCMCIA_H
 | 
					
						
							|  |  |  | #define HW_PCMCIA_H 1
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2007-11-17 17:14:51 +00:00
										 |  |  | /* PCMCIA/Cardbus */ | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-07-17 19:46:16 +02:00
										 |  |  | #include "hw/qdev.h"
 | 
					
						
							| 
									
										
										
										
											2009-03-05 23:01:23 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-07-17 19:46:16 +02:00
										 |  |  | typedef struct PCMCIASocket { | 
					
						
							| 
									
										
										
										
											2007-11-17 17:14:51 +00:00
										 |  |  |     qemu_irq irq; | 
					
						
							| 
									
										
										
										
											2013-07-17 19:46:16 +02:00
										 |  |  |     bool attached; | 
					
						
							| 
									
										
										
										
											2009-05-10 01:44:56 +01:00
										 |  |  | } PCMCIASocket; | 
					
						
							| 
									
										
										
										
											2007-11-17 17:14:51 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-07-17 19:46:16 +02:00
										 |  |  | #define TYPE_PCMCIA_CARD "pcmcia-card"
 | 
					
						
							|  |  |  | #define PCMCIA_CARD(obj) \
 | 
					
						
							|  |  |  |     OBJECT_CHECK(PCMCIACardState, (obj), TYPE_PCMCIA_CARD) | 
					
						
							|  |  |  | #define PCMCIA_CARD_GET_CLASS(obj) \
 | 
					
						
							|  |  |  |     OBJECT_GET_CLASS(PCMCIACardClass, obj, TYPE_PCMCIA_CARD) | 
					
						
							|  |  |  | #define PCMCIA_CARD_CLASS(cls) \
 | 
					
						
							|  |  |  |     OBJECT_CLASS_CHECK(PCMCIACardClass, cls, TYPE_PCMCIA_CARD) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-05-10 01:44:56 +01:00
										 |  |  | struct PCMCIACardState { | 
					
						
							| 
									
										
										
										
											2013-07-17 19:46:16 +02:00
										 |  |  |     /*< private >*/ | 
					
						
							|  |  |  |     DeviceState parent_obj; | 
					
						
							|  |  |  |     /*< public >*/ | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-05-10 01:44:56 +01:00
										 |  |  |     PCMCIASocket *slot; | 
					
						
							| 
									
										
										
										
											2013-07-17 19:46:16 +02:00
										 |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | typedef struct PCMCIACardClass { | 
					
						
							|  |  |  |     /*< private >*/ | 
					
						
							|  |  |  |     DeviceClass parent_class; | 
					
						
							|  |  |  |     /*< public >*/ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     int (*attach)(PCMCIACardState *state); | 
					
						
							|  |  |  |     int (*detach)(PCMCIACardState *state); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2007-11-17 17:14:51 +00:00
										 |  |  |     const uint8_t *cis; | 
					
						
							|  |  |  |     int cis_len; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     /* Only valid if attached */ | 
					
						
							| 
									
										
										
										
											2013-07-17 19:46:16 +02:00
										 |  |  |     uint8_t (*attr_read)(PCMCIACardState *card, uint32_t address); | 
					
						
							|  |  |  |     void (*attr_write)(PCMCIACardState *card, uint32_t address, uint8_t value); | 
					
						
							|  |  |  |     uint16_t (*common_read)(PCMCIACardState *card, uint32_t address); | 
					
						
							|  |  |  |     void (*common_write)(PCMCIACardState *card, | 
					
						
							|  |  |  |                          uint32_t address, uint16_t value); | 
					
						
							|  |  |  |     uint16_t (*io_read)(PCMCIACardState *card, uint32_t address); | 
					
						
							|  |  |  |     void (*io_write)(PCMCIACardState *card, uint32_t address, uint16_t value); | 
					
						
							|  |  |  | } PCMCIACardClass; | 
					
						
							| 
									
										
										
										
											2007-11-17 17:14:51 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | #define CISTPL_DEVICE		0x01	/* 5V Device Information Tuple */
 | 
					
						
							|  |  |  | #define CISTPL_NO_LINK		0x14	/* No Link Tuple */
 | 
					
						
							|  |  |  | #define CISTPL_VERS_1		0x15	/* Level 1 Version Tuple */
 | 
					
						
							|  |  |  | #define CISTPL_JEDEC_C		0x18	/* JEDEC ID Tuple */
 | 
					
						
							|  |  |  | #define CISTPL_JEDEC_A		0x19	/* JEDEC ID Tuple */
 | 
					
						
							|  |  |  | #define CISTPL_CONFIG		0x1a	/* Configuration Tuple */
 | 
					
						
							|  |  |  | #define CISTPL_CFTABLE_ENTRY	0x1b	/* 16-bit PCCard Configuration */
 | 
					
						
							|  |  |  | #define CISTPL_DEVICE_OC	0x1c	/* Additional Device Information */
 | 
					
						
							|  |  |  | #define CISTPL_DEVICE_OA	0x1d	/* Additional Device Information */
 | 
					
						
							|  |  |  | #define CISTPL_DEVICE_GEO	0x1e	/* Additional Device Information */
 | 
					
						
							|  |  |  | #define CISTPL_DEVICE_GEO_A	0x1f	/* Additional Device Information */
 | 
					
						
							|  |  |  | #define CISTPL_MANFID		0x20	/* Manufacture ID Tuple */
 | 
					
						
							|  |  |  | #define CISTPL_FUNCID		0x21	/* Function ID Tuple */
 | 
					
						
							|  |  |  | #define CISTPL_FUNCE		0x22	/* Function Extension Tuple */
 | 
					
						
							|  |  |  | #define CISTPL_END		0xff	/* Tuple End */
 | 
					
						
							|  |  |  | #define CISTPL_ENDMARK		0xff
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /* dscm1xxxx.c */ | 
					
						
							| 
									
										
										
										
											2009-08-28 15:47:03 +02:00
										 |  |  | PCMCIACardState *dscm1xxxx_init(DriveInfo *bdrv); | 
					
						
							| 
									
										
										
										
											2012-12-06 12:15:58 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  | #endif
 |