| 
									
										
										
										
											2007-04-02 12:35:34 +00:00
										 |  |  | /*
 | 
					
						
							|  |  |  |  * QEMU EEPROM 93xx emulation | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * Copyright (c) 2006-2007 Stefan Weil | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * This program is free software; you can redistribute it and/or modify | 
					
						
							|  |  |  |  * it under the terms of the GNU General Public License as published by | 
					
						
							|  |  |  |  * the Free Software Foundation; either version 2 of the License, or | 
					
						
							|  |  |  |  * (at your option) any later version. | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * This program is distributed in the hope that it will be useful, | 
					
						
							|  |  |  |  * but WITHOUT ANY WARRANTY; without even the implied warranty of | 
					
						
							|  |  |  |  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the | 
					
						
							|  |  |  |  * GNU General Public License for more details. | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * You should have received a copy of the GNU General Public License | 
					
						
							| 
									
										
										
										
											2009-07-16 20:47:01 +00:00
										 |  |  |  * along with this program; if not, see <http://www.gnu.org/licenses/>.
 | 
					
						
							| 
									
										
										
										
											2007-04-02 12:35:34 +00:00
										 |  |  |  */ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #ifndef EEPROM93XX_H
 | 
					
						
							|  |  |  | #define EEPROM93XX_H
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-10-01 16:12:16 -05:00
										 |  |  | typedef struct _eeprom_t eeprom_t; | 
					
						
							| 
									
										
										
										
											2007-04-02 12:35:34 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | /* Create a new EEPROM with (nwords * 2) bytes. */ | 
					
						
							| 
									
										
										
										
											2010-06-25 11:09:21 -06:00
										 |  |  | eeprom_t *eeprom93xx_new(DeviceState *dev, uint16_t nwords); | 
					
						
							| 
									
										
										
										
											2007-04-02 12:35:34 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | /* Destroy an existing EEPROM. */ | 
					
						
							| 
									
										
										
										
											2010-06-25 11:09:21 -06:00
										 |  |  | void eeprom93xx_free(DeviceState *dev, eeprom_t *eeprom); | 
					
						
							| 
									
										
										
										
											2007-04-02 12:35:34 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | /* Read from the EEPROM. */ | 
					
						
							| 
									
										
										
										
											2009-10-01 16:12:16 -05:00
										 |  |  | uint16_t eeprom93xx_read(eeprom_t *eeprom); | 
					
						
							| 
									
										
										
										
											2007-04-02 12:35:34 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | /* Write to the EEPROM. */ | 
					
						
							| 
									
										
										
										
											2009-10-01 16:12:16 -05:00
										 |  |  | void eeprom93xx_write(eeprom_t *eeprom, int eecs, int eesk, int eedi); | 
					
						
							| 
									
										
										
										
											2007-04-02 12:35:34 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | /* Get EEPROM data array. */ | 
					
						
							| 
									
										
										
										
											2009-10-01 16:12:16 -05:00
										 |  |  | uint16_t *eeprom93xx_data(eeprom_t *eeprom); | 
					
						
							| 
									
										
										
										
											2007-04-02 12:35:34 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | #endif /* EEPROM93XX_H */
 |