| 
									
										
										
										
											2006-06-25 22:28:15 +00:00
										 |  |  | /*
 | 
					
						
							|  |  |  |  *  CFI parallel flash with AMD command set emulation | 
					
						
							| 
									
										
										
										
											2007-09-16 21:08:06 +00:00
										 |  |  |  * | 
					
						
							| 
									
										
										
										
											2006-06-25 22:28:15 +00:00
										 |  |  |  *  Copyright (c) 2005 Jocelyn Mayer | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * This library is free software; you can redistribute it and/or | 
					
						
							|  |  |  |  * modify it under the terms of the GNU Lesser General Public | 
					
						
							|  |  |  |  * License as published by the Free Software Foundation; either | 
					
						
							|  |  |  |  * version 2 of the License, or (at your option) any later version. | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * This library 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 | 
					
						
							|  |  |  |  * Lesser General Public License for more details. | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * You should have received a copy of the GNU Lesser General Public | 
					
						
							| 
									
										
										
										
											2009-07-16 20:47:01 +00:00
										 |  |  |  * License along with this library; if not, see <http://www.gnu.org/licenses/>.
 | 
					
						
							| 
									
										
										
										
											2006-06-25 22:28:15 +00:00
										 |  |  |  */ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /*
 | 
					
						
							|  |  |  |  * For now, this code can emulate flashes of 1, 2 or 4 bytes width. | 
					
						
							|  |  |  |  * Supported commands/modes are: | 
					
						
							|  |  |  |  * - flash read | 
					
						
							|  |  |  |  * - flash write | 
					
						
							|  |  |  |  * - flash ID read | 
					
						
							|  |  |  |  * - sector erase | 
					
						
							|  |  |  |  * - chip erase | 
					
						
							|  |  |  |  * - unlock bypass command | 
					
						
							|  |  |  |  * - CFI queries | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * It does not support flash interleaving. | 
					
						
							|  |  |  |  * It does not implement boot blocs with reduced size | 
					
						
							|  |  |  |  * It does not implement software data protection as found in many real chips | 
					
						
							|  |  |  |  * It does not implement erase suspend/resume commands | 
					
						
							|  |  |  |  * It does not implement multiple sectors erase | 
					
						
							|  |  |  |  */ | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2007-11-17 17:14:51 +00:00
										 |  |  | #include "hw.h"
 | 
					
						
							|  |  |  | #include "flash.h"
 | 
					
						
							|  |  |  | #include "qemu-timer.h"
 | 
					
						
							|  |  |  | #include "block.h"
 | 
					
						
							| 
									
										
										
										
											2011-08-04 15:55:30 +03:00
										 |  |  | #include "exec-memory.h"
 | 
					
						
							| 
									
										
										
										
											2006-06-25 22:28:15 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | //#define PFLASH_DEBUG
 | 
					
						
							|  |  |  | #ifdef PFLASH_DEBUG
 | 
					
						
							| 
									
										
										
										
											2009-05-13 17:53:17 +00:00
										 |  |  | #define DPRINTF(fmt, ...)                          \
 | 
					
						
							| 
									
										
										
										
											2006-06-25 22:28:15 +00:00
										 |  |  | do {                                               \ | 
					
						
							| 
									
										
										
										
											2009-05-13 17:53:17 +00:00
										 |  |  |     printf("PFLASH: " fmt , ## __VA_ARGS__);       \ | 
					
						
							| 
									
										
										
										
											2006-06-25 22:28:15 +00:00
										 |  |  | } while (0) | 
					
						
							|  |  |  | #else
 | 
					
						
							| 
									
										
										
										
											2009-05-13 17:53:17 +00:00
										 |  |  | #define DPRINTF(fmt, ...) do { } while (0)
 | 
					
						
							| 
									
										
										
										
											2006-06-25 22:28:15 +00:00
										 |  |  | #endif
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-04-10 12:53:39 +02:00
										 |  |  | #define PFLASH_LAZY_ROMD_THRESHOLD 42
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-10-01 16:12:16 -05:00
										 |  |  | struct pflash_t { | 
					
						
							| 
									
										
										
										
											2006-06-25 22:28:15 +00:00
										 |  |  |     BlockDriverState *bs; | 
					
						
							| 
									
										
										
										
											2009-10-01 16:12:16 -05:00
										 |  |  |     target_phys_addr_t base; | 
					
						
							| 
									
										
										
										
											2007-06-08 16:45:23 +00:00
										 |  |  |     uint32_t sector_len; | 
					
						
							| 
									
										
										
										
											2008-04-16 23:45:36 +00:00
										 |  |  |     uint32_t chip_len; | 
					
						
							|  |  |  |     int mappings; | 
					
						
							| 
									
										
										
										
											2006-06-25 22:28:15 +00:00
										 |  |  |     int width; | 
					
						
							|  |  |  |     int wcycle; /* if 0, the flash is read normally */ | 
					
						
							|  |  |  |     int bypass; | 
					
						
							|  |  |  |     int ro; | 
					
						
							|  |  |  |     uint8_t cmd; | 
					
						
							|  |  |  |     uint8_t status; | 
					
						
							|  |  |  |     uint16_t ident[4]; | 
					
						
							| 
									
										
										
										
											2008-04-16 23:37:15 +00:00
										 |  |  |     uint16_t unlock_addr[2]; | 
					
						
							| 
									
										
										
										
											2006-06-25 22:28:15 +00:00
										 |  |  |     uint8_t cfi_len; | 
					
						
							|  |  |  |     uint8_t cfi_table[0x52]; | 
					
						
							|  |  |  |     QEMUTimer *timer; | 
					
						
							| 
									
										
										
										
											2011-08-04 15:55:30 +03:00
										 |  |  |     /* The device replicates the flash memory across its memory space.  Emulate
 | 
					
						
							|  |  |  |      * that by having a container (.mem) filled with an array of aliases | 
					
						
							|  |  |  |      * (.mem_mappings) pointing to the flash memory (.orig_mem). | 
					
						
							|  |  |  |      */ | 
					
						
							|  |  |  |     MemoryRegion mem; | 
					
						
							|  |  |  |     MemoryRegion *mem_mappings;    /* array; one per mapping */ | 
					
						
							|  |  |  |     MemoryRegion orig_mem; | 
					
						
							| 
									
										
										
										
											2008-04-16 23:58:02 +00:00
										 |  |  |     int rom_mode; | 
					
						
							| 
									
										
										
										
											2011-04-10 12:53:39 +02:00
										 |  |  |     int read_counter; /* used for lazy switch-back to rom mode */ | 
					
						
							| 
									
										
										
										
											2006-06-25 22:28:15 +00:00
										 |  |  |     void *storage; | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-08-04 15:55:30 +03:00
										 |  |  | /*
 | 
					
						
							|  |  |  |  * Set up replicated mappings of the same region. | 
					
						
							|  |  |  |  */ | 
					
						
							|  |  |  | static void pflash_setup_mappings(pflash_t *pfl) | 
					
						
							| 
									
										
										
										
											2011-08-04 15:55:30 +03:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2011-08-04 15:55:30 +03:00
										 |  |  |     unsigned i; | 
					
						
							|  |  |  |     target_phys_addr_t size = memory_region_size(&pfl->orig_mem); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     memory_region_init(&pfl->mem, "pflash", pfl->mappings * size); | 
					
						
							|  |  |  |     pfl->mem_mappings = g_new(MemoryRegion, pfl->mappings); | 
					
						
							|  |  |  |     for (i = 0; i < pfl->mappings; ++i) { | 
					
						
							|  |  |  |         memory_region_init_alias(&pfl->mem_mappings[i], "pflash-alias", | 
					
						
							|  |  |  |                                  &pfl->orig_mem, 0, size); | 
					
						
							|  |  |  |         memory_region_add_subregion(&pfl->mem, i * size, &pfl->mem_mappings[i]); | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											2011-08-25 14:39:18 -05:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-08-04 15:55:30 +03:00
										 |  |  | static void pflash_register_memory(pflash_t *pfl, int rom_mode) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     memory_region_rom_device_set_readable(&pfl->orig_mem, rom_mode); | 
					
						
							| 
									
										
										
										
											2008-04-16 23:45:36 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2006-06-25 22:28:15 +00:00
										 |  |  | static void pflash_timer (void *opaque) | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2009-10-01 16:12:16 -05:00
										 |  |  |     pflash_t *pfl = opaque; | 
					
						
							| 
									
										
										
										
											2006-06-25 22:28:15 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |     DPRINTF("%s: command %02x done\n", __func__, pfl->cmd); | 
					
						
							|  |  |  |     /* Reset flash */ | 
					
						
							|  |  |  |     pfl->status ^= 0x80; | 
					
						
							|  |  |  |     if (pfl->bypass) { | 
					
						
							|  |  |  |         pfl->wcycle = 2; | 
					
						
							|  |  |  |     } else { | 
					
						
							| 
									
										
										
										
											2008-04-16 23:45:36 +00:00
										 |  |  |         pflash_register_memory(pfl, 1); | 
					
						
							| 
									
										
										
										
											2006-06-25 22:28:15 +00:00
										 |  |  |         pfl->wcycle = 0; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |     pfl->cmd = 0; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-03-29 19:23:55 +00:00
										 |  |  | static uint32_t pflash_read (pflash_t *pfl, target_phys_addr_t offset, | 
					
						
							|  |  |  |                              int width, int be) | 
					
						
							| 
									
										
										
										
											2006-06-25 22:28:15 +00:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2010-03-27 18:24:35 +00:00
										 |  |  |     target_phys_addr_t boff; | 
					
						
							| 
									
										
										
										
											2006-06-25 22:28:15 +00:00
										 |  |  |     uint32_t ret; | 
					
						
							|  |  |  |     uint8_t *p; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-03-27 18:24:35 +00:00
										 |  |  |     DPRINTF("%s: offset " TARGET_FMT_plx "\n", __func__, offset); | 
					
						
							| 
									
										
										
										
											2006-06-25 22:28:15 +00:00
										 |  |  |     ret = -1; | 
					
						
							| 
									
										
										
										
											2011-04-10 12:53:39 +02:00
										 |  |  |     /* Lazy reset to ROMD mode after a certain amount of read accesses */ | 
					
						
							|  |  |  |     if (!pfl->rom_mode && pfl->wcycle == 0 && | 
					
						
							|  |  |  |         ++pfl->read_counter > PFLASH_LAZY_ROMD_THRESHOLD) { | 
					
						
							|  |  |  |         pflash_register_memory(pfl, 1); | 
					
						
							| 
									
										
										
										
											2008-06-09 00:20:13 +00:00
										 |  |  |     } | 
					
						
							| 
									
										
										
										
											2008-04-16 23:45:36 +00:00
										 |  |  |     offset &= pfl->chip_len - 1; | 
					
						
							| 
									
										
										
										
											2006-06-25 22:28:15 +00:00
										 |  |  |     boff = offset & 0xFF; | 
					
						
							|  |  |  |     if (pfl->width == 2) | 
					
						
							|  |  |  |         boff = boff >> 1; | 
					
						
							|  |  |  |     else if (pfl->width == 4) | 
					
						
							|  |  |  |         boff = boff >> 2; | 
					
						
							|  |  |  |     switch (pfl->cmd) { | 
					
						
							|  |  |  |     default: | 
					
						
							|  |  |  |         /* This should never happen : reset state & treat it as a read*/ | 
					
						
							|  |  |  |         DPRINTF("%s: unknown command state: %x\n", __func__, pfl->cmd); | 
					
						
							|  |  |  |         pfl->wcycle = 0; | 
					
						
							|  |  |  |         pfl->cmd = 0; | 
					
						
							|  |  |  |     case 0x80: | 
					
						
							|  |  |  |         /* We accept reads during second unlock sequence... */ | 
					
						
							|  |  |  |     case 0x00: | 
					
						
							|  |  |  |     flash_read: | 
					
						
							|  |  |  |         /* Flash area read */ | 
					
						
							|  |  |  |         p = pfl->storage; | 
					
						
							|  |  |  |         switch (width) { | 
					
						
							|  |  |  |         case 1: | 
					
						
							|  |  |  |             ret = p[offset]; | 
					
						
							|  |  |  | //            DPRINTF("%s: data offset %08x %02x\n", __func__, offset, ret);
 | 
					
						
							|  |  |  |             break; | 
					
						
							|  |  |  |         case 2: | 
					
						
							| 
									
										
										
										
											2010-03-29 19:23:55 +00:00
										 |  |  |             if (be) { | 
					
						
							|  |  |  |                 ret = p[offset] << 8; | 
					
						
							|  |  |  |                 ret |= p[offset + 1]; | 
					
						
							|  |  |  |             } else { | 
					
						
							|  |  |  |                 ret = p[offset]; | 
					
						
							|  |  |  |                 ret |= p[offset + 1] << 8; | 
					
						
							|  |  |  |             } | 
					
						
							| 
									
										
										
										
											2006-06-25 22:28:15 +00:00
										 |  |  | //            DPRINTF("%s: data offset %08x %04x\n", __func__, offset, ret);
 | 
					
						
							|  |  |  |             break; | 
					
						
							|  |  |  |         case 4: | 
					
						
							| 
									
										
										
										
											2010-03-29 19:23:55 +00:00
										 |  |  |             if (be) { | 
					
						
							|  |  |  |                 ret = p[offset] << 24; | 
					
						
							|  |  |  |                 ret |= p[offset + 1] << 16; | 
					
						
							|  |  |  |                 ret |= p[offset + 2] << 8; | 
					
						
							|  |  |  |                 ret |= p[offset + 3]; | 
					
						
							|  |  |  |             } else { | 
					
						
							|  |  |  |                 ret = p[offset]; | 
					
						
							|  |  |  |                 ret |= p[offset + 1] << 8; | 
					
						
							|  |  |  |                 ret |= p[offset + 2] << 16; | 
					
						
							|  |  |  |                 ret |= p[offset + 3] << 24; | 
					
						
							|  |  |  |             } | 
					
						
							| 
									
										
										
										
											2006-06-25 22:28:15 +00:00
										 |  |  | //            DPRINTF("%s: data offset %08x %08x\n", __func__, offset, ret);
 | 
					
						
							|  |  |  |             break; | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |         break; | 
					
						
							|  |  |  |     case 0x90: | 
					
						
							|  |  |  |         /* flash ID read */ | 
					
						
							|  |  |  |         switch (boff) { | 
					
						
							|  |  |  |         case 0x00: | 
					
						
							|  |  |  |         case 0x01: | 
					
						
							|  |  |  |             ret = pfl->ident[boff & 0x01]; | 
					
						
							|  |  |  |             break; | 
					
						
							|  |  |  |         case 0x02: | 
					
						
							|  |  |  |             ret = 0x00; /* Pretend all sectors are unprotected */ | 
					
						
							|  |  |  |             break; | 
					
						
							|  |  |  |         case 0x0E: | 
					
						
							|  |  |  |         case 0x0F: | 
					
						
							|  |  |  |             if (pfl->ident[2 + (boff & 0x01)] == (uint8_t)-1) | 
					
						
							|  |  |  |                 goto flash_read; | 
					
						
							|  |  |  |             ret = pfl->ident[2 + (boff & 0x01)]; | 
					
						
							|  |  |  |             break; | 
					
						
							|  |  |  |         default: | 
					
						
							|  |  |  |             goto flash_read; | 
					
						
							|  |  |  |         } | 
					
						
							| 
									
										
										
										
											2011-05-22 14:02:39 +02:00
										 |  |  |         DPRINTF("%s: ID " TARGET_FMT_plx " %x\n", __func__, boff, ret); | 
					
						
							| 
									
										
										
										
											2006-06-25 22:28:15 +00:00
										 |  |  |         break; | 
					
						
							|  |  |  |     case 0xA0: | 
					
						
							|  |  |  |     case 0x10: | 
					
						
							|  |  |  |     case 0x30: | 
					
						
							|  |  |  |         /* Status register read */ | 
					
						
							|  |  |  |         ret = pfl->status; | 
					
						
							|  |  |  |         DPRINTF("%s: status %x\n", __func__, ret); | 
					
						
							|  |  |  |         /* Toggle bit 6 */ | 
					
						
							|  |  |  |         pfl->status ^= 0x40; | 
					
						
							|  |  |  |         break; | 
					
						
							|  |  |  |     case 0x98: | 
					
						
							|  |  |  |         /* CFI query mode */ | 
					
						
							|  |  |  |         if (boff > pfl->cfi_len) | 
					
						
							|  |  |  |             ret = 0; | 
					
						
							|  |  |  |         else | 
					
						
							|  |  |  |             ret = pfl->cfi_table[boff]; | 
					
						
							|  |  |  |         break; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     return ret; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /* update flash content on disk */ | 
					
						
							| 
									
										
										
										
											2009-10-01 16:12:16 -05:00
										 |  |  | static void pflash_update(pflash_t *pfl, int offset, | 
					
						
							| 
									
										
										
										
											2006-06-25 22:28:15 +00:00
										 |  |  |                           int size) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     int offset_end; | 
					
						
							|  |  |  |     if (pfl->bs) { | 
					
						
							|  |  |  |         offset_end = offset + size; | 
					
						
							|  |  |  |         /* round to sectors */ | 
					
						
							|  |  |  |         offset = offset >> 9; | 
					
						
							|  |  |  |         offset_end = (offset_end + 511) >> 9; | 
					
						
							| 
									
										
										
										
											2007-09-16 21:08:06 +00:00
										 |  |  |         bdrv_write(pfl->bs, offset, pfl->storage + (offset << 9), | 
					
						
							| 
									
										
										
										
											2006-06-25 22:28:15 +00:00
										 |  |  |                    offset_end - offset); | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-03-27 18:24:35 +00:00
										 |  |  | static void pflash_write (pflash_t *pfl, target_phys_addr_t offset, | 
					
						
							| 
									
										
										
										
											2010-03-29 19:23:55 +00:00
										 |  |  |                           uint32_t value, int width, int be) | 
					
						
							| 
									
										
										
										
											2006-06-25 22:28:15 +00:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2010-03-27 18:24:35 +00:00
										 |  |  |     target_phys_addr_t boff; | 
					
						
							| 
									
										
										
										
											2006-06-25 22:28:15 +00:00
										 |  |  |     uint8_t *p; | 
					
						
							|  |  |  |     uint8_t cmd; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2007-04-16 07:14:26 +00:00
										 |  |  |     cmd = value; | 
					
						
							|  |  |  |     if (pfl->cmd != 0xA0 && cmd == 0xF0) { | 
					
						
							|  |  |  | #if 0
 | 
					
						
							|  |  |  |         DPRINTF("%s: flash reset asked (%02x %02x)\n", | 
					
						
							|  |  |  |                 __func__, pfl->cmd, cmd); | 
					
						
							|  |  |  | #endif
 | 
					
						
							|  |  |  |         goto reset_flash; | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2010-03-27 18:24:35 +00:00
										 |  |  |     DPRINTF("%s: offset " TARGET_FMT_plx " %08x %d %d\n", __func__, | 
					
						
							| 
									
										
										
										
											2007-04-16 07:14:26 +00:00
										 |  |  |             offset, value, width, pfl->wcycle); | 
					
						
							| 
									
										
										
										
											2008-04-16 23:45:36 +00:00
										 |  |  |     offset &= pfl->chip_len - 1; | 
					
						
							| 
									
										
										
										
											2007-09-17 08:09:54 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-03-27 18:24:35 +00:00
										 |  |  |     DPRINTF("%s: offset " TARGET_FMT_plx " %08x %d\n", __func__, | 
					
						
							| 
									
										
										
										
											2007-04-14 12:17:09 +00:00
										 |  |  |             offset, value, width); | 
					
						
							| 
									
										
										
										
											2006-06-25 22:28:15 +00:00
										 |  |  |     boff = offset & (pfl->sector_len - 1); | 
					
						
							|  |  |  |     if (pfl->width == 2) | 
					
						
							|  |  |  |         boff = boff >> 1; | 
					
						
							|  |  |  |     else if (pfl->width == 4) | 
					
						
							|  |  |  |         boff = boff >> 2; | 
					
						
							|  |  |  |     switch (pfl->wcycle) { | 
					
						
							|  |  |  |     case 0: | 
					
						
							| 
									
										
										
										
											2008-04-16 23:58:02 +00:00
										 |  |  |         /* Set the device in I/O access mode if required */ | 
					
						
							|  |  |  |         if (pfl->rom_mode) | 
					
						
							|  |  |  |             pflash_register_memory(pfl, 0); | 
					
						
							| 
									
										
										
										
											2011-04-10 12:53:39 +02:00
										 |  |  |         pfl->read_counter = 0; | 
					
						
							| 
									
										
										
										
											2006-06-25 22:28:15 +00:00
										 |  |  |         /* We're in read mode */ | 
					
						
							|  |  |  |     check_unlock0: | 
					
						
							|  |  |  |         if (boff == 0x55 && cmd == 0x98) { | 
					
						
							|  |  |  |         enter_CFI_mode: | 
					
						
							|  |  |  |             /* Enter CFI query mode */ | 
					
						
							|  |  |  |             pfl->wcycle = 7; | 
					
						
							|  |  |  |             pfl->cmd = 0x98; | 
					
						
							|  |  |  |             return; | 
					
						
							|  |  |  |         } | 
					
						
							| 
									
										
										
										
											2008-04-16 23:37:15 +00:00
										 |  |  |         if (boff != pfl->unlock_addr[0] || cmd != 0xAA) { | 
					
						
							| 
									
										
										
										
											2010-03-27 18:24:35 +00:00
										 |  |  |             DPRINTF("%s: unlock0 failed " TARGET_FMT_plx " %02x %04x\n", | 
					
						
							| 
									
										
										
										
											2008-04-16 23:37:15 +00:00
										 |  |  |                     __func__, boff, cmd, pfl->unlock_addr[0]); | 
					
						
							| 
									
										
										
										
											2006-06-25 22:28:15 +00:00
										 |  |  |             goto reset_flash; | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |         DPRINTF("%s: unlock sequence started\n", __func__); | 
					
						
							|  |  |  |         break; | 
					
						
							|  |  |  |     case 1: | 
					
						
							|  |  |  |         /* We started an unlock sequence */ | 
					
						
							|  |  |  |     check_unlock1: | 
					
						
							| 
									
										
										
										
											2008-04-16 23:37:15 +00:00
										 |  |  |         if (boff != pfl->unlock_addr[1] || cmd != 0x55) { | 
					
						
							| 
									
										
										
										
											2010-03-27 18:24:35 +00:00
										 |  |  |             DPRINTF("%s: unlock1 failed " TARGET_FMT_plx " %02x\n", __func__, | 
					
						
							| 
									
										
										
										
											2007-04-14 12:17:09 +00:00
										 |  |  |                     boff, cmd); | 
					
						
							| 
									
										
										
										
											2006-06-25 22:28:15 +00:00
										 |  |  |             goto reset_flash; | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |         DPRINTF("%s: unlock sequence done\n", __func__); | 
					
						
							|  |  |  |         break; | 
					
						
							|  |  |  |     case 2: | 
					
						
							|  |  |  |         /* We finished an unlock sequence */ | 
					
						
							| 
									
										
										
										
											2008-04-16 23:37:15 +00:00
										 |  |  |         if (!pfl->bypass && boff != pfl->unlock_addr[0]) { | 
					
						
							| 
									
										
										
										
											2010-03-27 18:24:35 +00:00
										 |  |  |             DPRINTF("%s: command failed " TARGET_FMT_plx " %02x\n", __func__, | 
					
						
							| 
									
										
										
										
											2007-04-14 12:17:09 +00:00
										 |  |  |                     boff, cmd); | 
					
						
							| 
									
										
										
										
											2006-06-25 22:28:15 +00:00
										 |  |  |             goto reset_flash; | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |         switch (cmd) { | 
					
						
							|  |  |  |         case 0x20: | 
					
						
							|  |  |  |             pfl->bypass = 1; | 
					
						
							|  |  |  |             goto do_bypass; | 
					
						
							|  |  |  |         case 0x80: | 
					
						
							|  |  |  |         case 0x90: | 
					
						
							|  |  |  |         case 0xA0: | 
					
						
							|  |  |  |             pfl->cmd = cmd; | 
					
						
							|  |  |  |             DPRINTF("%s: starting command %02x\n", __func__, cmd); | 
					
						
							|  |  |  |             break; | 
					
						
							|  |  |  |         default: | 
					
						
							|  |  |  |             DPRINTF("%s: unknown command %02x\n", __func__, cmd); | 
					
						
							|  |  |  |             goto reset_flash; | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |         break; | 
					
						
							|  |  |  |     case 3: | 
					
						
							|  |  |  |         switch (pfl->cmd) { | 
					
						
							|  |  |  |         case 0x80: | 
					
						
							|  |  |  |             /* We need another unlock sequence */ | 
					
						
							|  |  |  |             goto check_unlock0; | 
					
						
							|  |  |  |         case 0xA0: | 
					
						
							| 
									
										
										
										
											2010-03-27 18:24:35 +00:00
										 |  |  |             DPRINTF("%s: write data offset " TARGET_FMT_plx " %08x %d\n", | 
					
						
							| 
									
										
										
										
											2006-06-25 22:28:15 +00:00
										 |  |  |                     __func__, offset, value, width); | 
					
						
							|  |  |  |             p = pfl->storage; | 
					
						
							|  |  |  |             switch (width) { | 
					
						
							|  |  |  |             case 1: | 
					
						
							|  |  |  |                 p[offset] &= value; | 
					
						
							|  |  |  |                 pflash_update(pfl, offset, 1); | 
					
						
							|  |  |  |                 break; | 
					
						
							|  |  |  |             case 2: | 
					
						
							| 
									
										
										
										
											2010-03-29 19:23:55 +00:00
										 |  |  |                 if (be) { | 
					
						
							|  |  |  |                     p[offset] &= value >> 8; | 
					
						
							|  |  |  |                     p[offset + 1] &= value; | 
					
						
							|  |  |  |                 } else { | 
					
						
							|  |  |  |                     p[offset] &= value; | 
					
						
							|  |  |  |                     p[offset + 1] &= value >> 8; | 
					
						
							|  |  |  |                 } | 
					
						
							| 
									
										
										
										
											2006-06-25 22:28:15 +00:00
										 |  |  |                 pflash_update(pfl, offset, 2); | 
					
						
							|  |  |  |                 break; | 
					
						
							|  |  |  |             case 4: | 
					
						
							| 
									
										
										
										
											2010-03-29 19:23:55 +00:00
										 |  |  |                 if (be) { | 
					
						
							|  |  |  |                     p[offset] &= value >> 24; | 
					
						
							|  |  |  |                     p[offset + 1] &= value >> 16; | 
					
						
							|  |  |  |                     p[offset + 2] &= value >> 8; | 
					
						
							|  |  |  |                     p[offset + 3] &= value; | 
					
						
							|  |  |  |                 } else { | 
					
						
							|  |  |  |                     p[offset] &= value; | 
					
						
							|  |  |  |                     p[offset + 1] &= value >> 8; | 
					
						
							|  |  |  |                     p[offset + 2] &= value >> 16; | 
					
						
							|  |  |  |                     p[offset + 3] &= value >> 24; | 
					
						
							|  |  |  |                 } | 
					
						
							| 
									
										
										
										
											2006-06-25 22:28:15 +00:00
										 |  |  |                 pflash_update(pfl, offset, 4); | 
					
						
							|  |  |  |                 break; | 
					
						
							|  |  |  |             } | 
					
						
							|  |  |  |             pfl->status = 0x00 | ~(value & 0x80); | 
					
						
							|  |  |  |             /* Let's pretend write is immediate */ | 
					
						
							|  |  |  |             if (pfl->bypass) | 
					
						
							|  |  |  |                 goto do_bypass; | 
					
						
							|  |  |  |             goto reset_flash; | 
					
						
							|  |  |  |         case 0x90: | 
					
						
							|  |  |  |             if (pfl->bypass && cmd == 0x00) { | 
					
						
							|  |  |  |                 /* Unlock bypass reset */ | 
					
						
							|  |  |  |                 goto reset_flash; | 
					
						
							|  |  |  |             } | 
					
						
							|  |  |  |             /* We can enter CFI query mode from autoselect mode */ | 
					
						
							|  |  |  |             if (boff == 0x55 && cmd == 0x98) | 
					
						
							|  |  |  |                 goto enter_CFI_mode; | 
					
						
							|  |  |  |             /* No break here */ | 
					
						
							|  |  |  |         default: | 
					
						
							|  |  |  |             DPRINTF("%s: invalid write for command %02x\n", | 
					
						
							|  |  |  |                     __func__, pfl->cmd); | 
					
						
							|  |  |  |             goto reset_flash; | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |     case 4: | 
					
						
							|  |  |  |         switch (pfl->cmd) { | 
					
						
							|  |  |  |         case 0xA0: | 
					
						
							| 
									
										
										
										
											2011-04-28 17:20:38 +02:00
										 |  |  |             /* Ignore writes while flash data write is occurring */ | 
					
						
							| 
									
										
										
										
											2006-06-25 22:28:15 +00:00
										 |  |  |             /* As we suppose write is immediate, this should never happen */ | 
					
						
							|  |  |  |             return; | 
					
						
							|  |  |  |         case 0x80: | 
					
						
							|  |  |  |             goto check_unlock1; | 
					
						
							|  |  |  |         default: | 
					
						
							|  |  |  |             /* Should never happen */ | 
					
						
							|  |  |  |             DPRINTF("%s: invalid command state %02x (wc 4)\n", | 
					
						
							|  |  |  |                     __func__, pfl->cmd); | 
					
						
							|  |  |  |             goto reset_flash; | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |         break; | 
					
						
							|  |  |  |     case 5: | 
					
						
							|  |  |  |         switch (cmd) { | 
					
						
							|  |  |  |         case 0x10: | 
					
						
							| 
									
										
										
										
											2008-04-16 23:37:15 +00:00
										 |  |  |             if (boff != pfl->unlock_addr[0]) { | 
					
						
							| 
									
										
										
										
											2010-03-27 18:24:35 +00:00
										 |  |  |                 DPRINTF("%s: chip erase: invalid address " TARGET_FMT_plx "\n", | 
					
						
							| 
									
										
										
										
											2006-06-25 22:28:15 +00:00
										 |  |  |                         __func__, offset); | 
					
						
							|  |  |  |                 goto reset_flash; | 
					
						
							|  |  |  |             } | 
					
						
							|  |  |  |             /* Chip erase */ | 
					
						
							|  |  |  |             DPRINTF("%s: start chip erase\n", __func__); | 
					
						
							| 
									
										
										
										
											2008-04-16 23:45:36 +00:00
										 |  |  |             memset(pfl->storage, 0xFF, pfl->chip_len); | 
					
						
							| 
									
										
										
										
											2006-06-25 22:28:15 +00:00
										 |  |  |             pfl->status = 0x00; | 
					
						
							| 
									
										
										
										
											2008-04-16 23:45:36 +00:00
										 |  |  |             pflash_update(pfl, 0, pfl->chip_len); | 
					
						
							| 
									
										
										
										
											2006-06-25 22:28:15 +00:00
										 |  |  |             /* Let's wait 5 seconds before chip erase is done */ | 
					
						
							| 
									
										
										
										
											2007-09-16 21:08:06 +00:00
										 |  |  |             qemu_mod_timer(pfl->timer, | 
					
						
							| 
									
										
										
										
											2011-03-11 16:47:48 +01:00
										 |  |  |                            qemu_get_clock_ns(vm_clock) + (get_ticks_per_sec() * 5)); | 
					
						
							| 
									
										
										
										
											2006-06-25 22:28:15 +00:00
										 |  |  |             break; | 
					
						
							|  |  |  |         case 0x30: | 
					
						
							|  |  |  |             /* Sector erase */ | 
					
						
							|  |  |  |             p = pfl->storage; | 
					
						
							|  |  |  |             offset &= ~(pfl->sector_len - 1); | 
					
						
							| 
									
										
										
										
											2010-03-27 18:24:35 +00:00
										 |  |  |             DPRINTF("%s: start sector erase at " TARGET_FMT_plx "\n", __func__, | 
					
						
							| 
									
										
										
										
											2007-04-14 12:17:09 +00:00
										 |  |  |                     offset); | 
					
						
							| 
									
										
										
										
											2006-06-25 22:28:15 +00:00
										 |  |  |             memset(p + offset, 0xFF, pfl->sector_len); | 
					
						
							|  |  |  |             pflash_update(pfl, offset, pfl->sector_len); | 
					
						
							|  |  |  |             pfl->status = 0x00; | 
					
						
							|  |  |  |             /* Let's wait 1/2 second before sector erase is done */ | 
					
						
							| 
									
										
										
										
											2007-09-16 21:08:06 +00:00
										 |  |  |             qemu_mod_timer(pfl->timer, | 
					
						
							| 
									
										
										
										
											2011-03-11 16:47:48 +01:00
										 |  |  |                            qemu_get_clock_ns(vm_clock) + (get_ticks_per_sec() / 2)); | 
					
						
							| 
									
										
										
										
											2006-06-25 22:28:15 +00:00
										 |  |  |             break; | 
					
						
							|  |  |  |         default: | 
					
						
							|  |  |  |             DPRINTF("%s: invalid command %02x (wc 5)\n", __func__, cmd); | 
					
						
							|  |  |  |             goto reset_flash; | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |         pfl->cmd = cmd; | 
					
						
							|  |  |  |         break; | 
					
						
							|  |  |  |     case 6: | 
					
						
							|  |  |  |         switch (pfl->cmd) { | 
					
						
							|  |  |  |         case 0x10: | 
					
						
							|  |  |  |             /* Ignore writes during chip erase */ | 
					
						
							|  |  |  |             return; | 
					
						
							|  |  |  |         case 0x30: | 
					
						
							|  |  |  |             /* Ignore writes during sector erase */ | 
					
						
							|  |  |  |             return; | 
					
						
							|  |  |  |         default: | 
					
						
							|  |  |  |             /* Should never happen */ | 
					
						
							|  |  |  |             DPRINTF("%s: invalid command state %02x (wc 6)\n", | 
					
						
							|  |  |  |                     __func__, pfl->cmd); | 
					
						
							|  |  |  |             goto reset_flash; | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |         break; | 
					
						
							|  |  |  |     case 7: /* Special value for CFI queries */ | 
					
						
							|  |  |  |         DPRINTF("%s: invalid write in CFI query mode\n", __func__); | 
					
						
							|  |  |  |         goto reset_flash; | 
					
						
							|  |  |  |     default: | 
					
						
							|  |  |  |         /* Should never happen */ | 
					
						
							|  |  |  |         DPRINTF("%s: invalid write state (wc 7)\n",  __func__); | 
					
						
							|  |  |  |         goto reset_flash; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |     pfl->wcycle++; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     return; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     /* Reset flash */ | 
					
						
							|  |  |  |  reset_flash: | 
					
						
							|  |  |  |     pfl->bypass = 0; | 
					
						
							|  |  |  |     pfl->wcycle = 0; | 
					
						
							|  |  |  |     pfl->cmd = 0; | 
					
						
							|  |  |  |     return; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |  do_bypass: | 
					
						
							|  |  |  |     pfl->wcycle = 2; | 
					
						
							|  |  |  |     pfl->cmd = 0; | 
					
						
							|  |  |  |     return; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-03-29 19:23:55 +00:00
										 |  |  | static uint32_t pflash_readb_be(void *opaque, target_phys_addr_t addr) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     return pflash_read(opaque, addr, 1, 1); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static uint32_t pflash_readb_le(void *opaque, target_phys_addr_t addr) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     return pflash_read(opaque, addr, 1, 0); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static uint32_t pflash_readw_be(void *opaque, target_phys_addr_t addr) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     pflash_t *pfl = opaque; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     return pflash_read(pfl, addr, 2, 1); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static uint32_t pflash_readw_le(void *opaque, target_phys_addr_t addr) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     pflash_t *pfl = opaque; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     return pflash_read(pfl, addr, 2, 0); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static uint32_t pflash_readl_be(void *opaque, target_phys_addr_t addr) | 
					
						
							| 
									
										
										
										
											2006-06-25 22:28:15 +00:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2010-03-29 19:23:55 +00:00
										 |  |  |     pflash_t *pfl = opaque; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     return pflash_read(pfl, addr, 4, 1); | 
					
						
							| 
									
										
										
										
											2006-06-25 22:28:15 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-03-29 19:23:55 +00:00
										 |  |  | static uint32_t pflash_readl_le(void *opaque, target_phys_addr_t addr) | 
					
						
							| 
									
										
										
										
											2006-06-25 22:28:15 +00:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2009-10-01 16:12:16 -05:00
										 |  |  |     pflash_t *pfl = opaque; | 
					
						
							| 
									
										
										
										
											2006-06-25 22:28:15 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-03-29 19:23:55 +00:00
										 |  |  |     return pflash_read(pfl, addr, 4, 0); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static void pflash_writeb_be(void *opaque, target_phys_addr_t addr, | 
					
						
							|  |  |  |                              uint32_t value) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     pflash_write(opaque, addr, value, 1, 1); | 
					
						
							| 
									
										
										
										
											2006-06-25 22:28:15 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-03-29 19:23:55 +00:00
										 |  |  | static void pflash_writeb_le(void *opaque, target_phys_addr_t addr, | 
					
						
							|  |  |  |                              uint32_t value) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     pflash_write(opaque, addr, value, 1, 0); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static void pflash_writew_be(void *opaque, target_phys_addr_t addr, | 
					
						
							|  |  |  |                              uint32_t value) | 
					
						
							| 
									
										
										
										
											2006-06-25 22:28:15 +00:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2009-10-01 16:12:16 -05:00
										 |  |  |     pflash_t *pfl = opaque; | 
					
						
							| 
									
										
										
										
											2006-06-25 22:28:15 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-03-29 19:23:55 +00:00
										 |  |  |     pflash_write(pfl, addr, value, 2, 1); | 
					
						
							| 
									
										
										
										
											2006-06-25 22:28:15 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-03-29 19:23:55 +00:00
										 |  |  | static void pflash_writew_le(void *opaque, target_phys_addr_t addr, | 
					
						
							|  |  |  |                              uint32_t value) | 
					
						
							| 
									
										
										
										
											2006-06-25 22:28:15 +00:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2010-03-29 19:23:55 +00:00
										 |  |  |     pflash_t *pfl = opaque; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     pflash_write(pfl, addr, value, 2, 0); | 
					
						
							| 
									
										
										
										
											2006-06-25 22:28:15 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-03-29 19:23:55 +00:00
										 |  |  | static void pflash_writel_be(void *opaque, target_phys_addr_t addr, | 
					
						
							|  |  |  |                              uint32_t value) | 
					
						
							| 
									
										
										
										
											2006-06-25 22:28:15 +00:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2009-10-01 16:12:16 -05:00
										 |  |  |     pflash_t *pfl = opaque; | 
					
						
							| 
									
										
										
										
											2006-06-25 22:28:15 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-03-29 19:23:55 +00:00
										 |  |  |     pflash_write(pfl, addr, value, 4, 1); | 
					
						
							| 
									
										
										
										
											2006-06-25 22:28:15 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-03-29 19:23:55 +00:00
										 |  |  | static void pflash_writel_le(void *opaque, target_phys_addr_t addr, | 
					
						
							|  |  |  |                              uint32_t value) | 
					
						
							| 
									
										
										
										
											2006-06-25 22:28:15 +00:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2009-10-01 16:12:16 -05:00
										 |  |  |     pflash_t *pfl = opaque; | 
					
						
							| 
									
										
										
										
											2006-06-25 22:28:15 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-03-29 19:23:55 +00:00
										 |  |  |     pflash_write(pfl, addr, value, 4, 0); | 
					
						
							| 
									
										
										
										
											2006-06-25 22:28:15 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-08-04 15:55:30 +03:00
										 |  |  | static const MemoryRegionOps pflash_cfi02_ops_be = { | 
					
						
							|  |  |  |     .old_mmio = { | 
					
						
							|  |  |  |         .read = { pflash_readb_be, pflash_readw_be, pflash_readl_be, }, | 
					
						
							|  |  |  |         .write = { pflash_writeb_be, pflash_writew_be, pflash_writel_be, }, | 
					
						
							|  |  |  |     }, | 
					
						
							|  |  |  |     .endianness = DEVICE_NATIVE_ENDIAN, | 
					
						
							| 
									
										
										
										
											2010-03-29 19:23:55 +00:00
										 |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-08-04 15:55:30 +03:00
										 |  |  | static const MemoryRegionOps pflash_cfi02_ops_le = { | 
					
						
							|  |  |  |     .old_mmio = { | 
					
						
							|  |  |  |         .read = { pflash_readb_le, pflash_readw_le, pflash_readl_le, }, | 
					
						
							|  |  |  |         .write = { pflash_writeb_le, pflash_writew_le, pflash_writel_le, }, | 
					
						
							|  |  |  |     }, | 
					
						
							|  |  |  |     .endianness = DEVICE_NATIVE_ENDIAN, | 
					
						
							| 
									
										
										
										
											2006-06-25 22:28:15 +00:00
										 |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /* Count trailing zeroes of a 32 bits quantity */ | 
					
						
							|  |  |  | static int ctz32 (uint32_t n) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     int ret; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     ret = 0; | 
					
						
							|  |  |  |     if (!(n & 0xFFFF)) { | 
					
						
							|  |  |  |         ret += 16; | 
					
						
							|  |  |  |         n = n >> 16; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |     if (!(n & 0xFF)) { | 
					
						
							|  |  |  |         ret += 8; | 
					
						
							|  |  |  |         n = n >> 8; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |     if (!(n & 0xF)) { | 
					
						
							|  |  |  |         ret += 4; | 
					
						
							|  |  |  |         n = n >> 4; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |     if (!(n & 0x3)) { | 
					
						
							|  |  |  |         ret += 2; | 
					
						
							|  |  |  |         n = n >> 2; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |     if (!(n & 0x1)) { | 
					
						
							|  |  |  |         ret++; | 
					
						
							| 
									
										
										
										
											2010-04-25 19:31:06 +00:00
										 |  |  | #if 0 /* This is not necessary as n is never 0 */
 | 
					
						
							| 
									
										
										
										
											2006-06-25 22:28:15 +00:00
										 |  |  |         n = n >> 1; | 
					
						
							| 
									
										
										
										
											2010-04-25 19:31:06 +00:00
										 |  |  | #endif
 | 
					
						
							| 
									
										
										
										
											2006-06-25 22:28:15 +00:00
										 |  |  |     } | 
					
						
							|  |  |  | #if 0 /* This is not necessary as n is never 0 */
 | 
					
						
							|  |  |  |     if (!n) | 
					
						
							|  |  |  |         ret++; | 
					
						
							|  |  |  | #endif
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     return ret; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-08-04 15:55:30 +03:00
										 |  |  | pflash_t *pflash_cfi02_register(target_phys_addr_t base, | 
					
						
							|  |  |  |                                 DeviceState *qdev, const char *name, | 
					
						
							|  |  |  |                                 target_phys_addr_t size, | 
					
						
							| 
									
										
										
										
											2007-12-10 01:07:47 +00:00
										 |  |  |                                 BlockDriverState *bs, uint32_t sector_len, | 
					
						
							| 
									
										
										
										
											2008-04-16 23:45:36 +00:00
										 |  |  |                                 int nb_blocs, int nb_mappings, int width, | 
					
						
							| 
									
										
										
										
											2007-12-10 00:28:27 +00:00
										 |  |  |                                 uint16_t id0, uint16_t id1, | 
					
						
							| 
									
										
										
										
											2008-04-16 23:37:15 +00:00
										 |  |  |                                 uint16_t id2, uint16_t id3, | 
					
						
							| 
									
										
										
										
											2011-08-25 14:39:18 -05:00
										 |  |  |                                 uint16_t unlock_addr0, uint16_t unlock_addr1, | 
					
						
							|  |  |  |                                 int be) | 
					
						
							| 
									
										
										
										
											2006-06-25 22:28:15 +00:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2009-10-01 16:12:16 -05:00
										 |  |  |     pflash_t *pfl; | 
					
						
							| 
									
										
										
										
											2008-04-16 23:45:36 +00:00
										 |  |  |     int32_t chip_len; | 
					
						
							| 
									
										
										
										
											2009-08-21 10:27:38 +05:30
										 |  |  |     int ret; | 
					
						
							| 
									
										
										
										
											2006-06-25 22:28:15 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-04-16 23:45:36 +00:00
										 |  |  |     chip_len = sector_len * nb_blocs; | 
					
						
							| 
									
										
										
										
											2006-06-25 22:28:15 +00:00
										 |  |  |     /* XXX: to be fixed */ | 
					
						
							| 
									
										
										
										
											2007-04-16 07:14:26 +00:00
										 |  |  | #if 0
 | 
					
						
							| 
									
										
										
										
											2006-06-25 22:28:15 +00:00
										 |  |  |     if (total_len != (8 * 1024 * 1024) && total_len != (16 * 1024 * 1024) && | 
					
						
							|  |  |  |         total_len != (32 * 1024 * 1024) && total_len != (64 * 1024 * 1024)) | 
					
						
							|  |  |  |         return NULL; | 
					
						
							| 
									
										
										
										
											2007-04-16 07:14:26 +00:00
										 |  |  | #endif
 | 
					
						
							| 
									
										
										
										
											2011-08-20 22:09:37 -05:00
										 |  |  |     pfl = g_malloc0(sizeof(pflash_t)); | 
					
						
							| 
									
										
										
										
											2011-08-04 15:55:30 +03:00
										 |  |  |     memory_region_init_rom_device( | 
					
						
							|  |  |  |         &pfl->orig_mem, be ? &pflash_cfi02_ops_be : &pflash_cfi02_ops_le, pfl, | 
					
						
							|  |  |  |         qdev, name, size); | 
					
						
							|  |  |  |     pfl->storage = memory_region_get_ram_ptr(&pfl->orig_mem); | 
					
						
							| 
									
										
										
										
											2008-04-16 23:45:36 +00:00
										 |  |  |     pfl->base = base; | 
					
						
							|  |  |  |     pfl->chip_len = chip_len; | 
					
						
							|  |  |  |     pfl->mappings = nb_mappings; | 
					
						
							| 
									
										
										
										
											2006-06-25 22:28:15 +00:00
										 |  |  |     pfl->bs = bs; | 
					
						
							|  |  |  |     if (pfl->bs) { | 
					
						
							|  |  |  |         /* read the initial flash content */ | 
					
						
							| 
									
										
										
										
											2009-08-21 10:27:38 +05:30
										 |  |  |         ret = bdrv_read(pfl->bs, 0, pfl->storage, chip_len >> 9); | 
					
						
							|  |  |  |         if (ret < 0) { | 
					
						
							| 
									
										
										
										
											2011-08-20 22:09:37 -05:00
										 |  |  |             g_free(pfl); | 
					
						
							| 
									
										
										
										
											2009-08-21 10:27:38 +05:30
										 |  |  |             return NULL; | 
					
						
							|  |  |  |         } | 
					
						
							| 
									
										
										
										
											2011-08-03 15:07:40 +02:00
										 |  |  |         bdrv_attach_dev_nofail(pfl->bs, pfl); | 
					
						
							| 
									
										
										
										
											2006-06-25 22:28:15 +00:00
										 |  |  |     } | 
					
						
							| 
									
										
										
										
											2011-08-04 15:55:30 +03:00
										 |  |  |     pflash_setup_mappings(pfl); | 
					
						
							|  |  |  |     pfl->rom_mode = 1; | 
					
						
							|  |  |  |     memory_region_add_subregion(get_system_memory(), pfl->base, &pfl->mem); | 
					
						
							| 
									
										
										
										
											2006-06-25 22:28:15 +00:00
										 |  |  | #if 0 /* XXX: there should be a bit to set up read-only,
 | 
					
						
							|  |  |  |        *      the same way the hardware does (with WP pin). | 
					
						
							|  |  |  |        */ | 
					
						
							|  |  |  |     pfl->ro = 1; | 
					
						
							|  |  |  | #else
 | 
					
						
							|  |  |  |     pfl->ro = 0; | 
					
						
							|  |  |  | #endif
 | 
					
						
							| 
									
										
										
										
											2011-03-11 16:47:48 +01:00
										 |  |  |     pfl->timer = qemu_new_timer_ns(vm_clock, pflash_timer, pfl); | 
					
						
							| 
									
										
										
										
											2006-06-25 22:28:15 +00:00
										 |  |  |     pfl->sector_len = sector_len; | 
					
						
							|  |  |  |     pfl->width = width; | 
					
						
							|  |  |  |     pfl->wcycle = 0; | 
					
						
							|  |  |  |     pfl->cmd = 0; | 
					
						
							|  |  |  |     pfl->status = 0; | 
					
						
							|  |  |  |     pfl->ident[0] = id0; | 
					
						
							|  |  |  |     pfl->ident[1] = id1; | 
					
						
							|  |  |  |     pfl->ident[2] = id2; | 
					
						
							|  |  |  |     pfl->ident[3] = id3; | 
					
						
							| 
									
										
										
										
											2008-04-16 23:37:15 +00:00
										 |  |  |     pfl->unlock_addr[0] = unlock_addr0; | 
					
						
							|  |  |  |     pfl->unlock_addr[1] = unlock_addr1; | 
					
						
							| 
									
										
										
										
											2006-06-25 22:28:15 +00:00
										 |  |  |     /* Hardcoded CFI table (mostly from SG29 Spansion flash) */ | 
					
						
							|  |  |  |     pfl->cfi_len = 0x52; | 
					
						
							|  |  |  |     /* Standard "QRY" string */ | 
					
						
							|  |  |  |     pfl->cfi_table[0x10] = 'Q'; | 
					
						
							|  |  |  |     pfl->cfi_table[0x11] = 'R'; | 
					
						
							|  |  |  |     pfl->cfi_table[0x12] = 'Y'; | 
					
						
							|  |  |  |     /* Command set (AMD/Fujitsu) */ | 
					
						
							|  |  |  |     pfl->cfi_table[0x13] = 0x02; | 
					
						
							|  |  |  |     pfl->cfi_table[0x14] = 0x00; | 
					
						
							| 
									
										
										
										
											2008-05-08 21:02:43 +00:00
										 |  |  |     /* Primary extended table address */ | 
					
						
							|  |  |  |     pfl->cfi_table[0x15] = 0x31; | 
					
						
							| 
									
										
										
										
											2006-06-25 22:28:15 +00:00
										 |  |  |     pfl->cfi_table[0x16] = 0x00; | 
					
						
							|  |  |  |     /* Alternate command set (none) */ | 
					
						
							|  |  |  |     pfl->cfi_table[0x17] = 0x00; | 
					
						
							|  |  |  |     pfl->cfi_table[0x18] = 0x00; | 
					
						
							|  |  |  |     /* Alternate extended table (none) */ | 
					
						
							|  |  |  |     pfl->cfi_table[0x19] = 0x00; | 
					
						
							|  |  |  |     pfl->cfi_table[0x1A] = 0x00; | 
					
						
							|  |  |  |     /* Vcc min */ | 
					
						
							|  |  |  |     pfl->cfi_table[0x1B] = 0x27; | 
					
						
							|  |  |  |     /* Vcc max */ | 
					
						
							|  |  |  |     pfl->cfi_table[0x1C] = 0x36; | 
					
						
							|  |  |  |     /* Vpp min (no Vpp pin) */ | 
					
						
							|  |  |  |     pfl->cfi_table[0x1D] = 0x00; | 
					
						
							|  |  |  |     /* Vpp max (no Vpp pin) */ | 
					
						
							|  |  |  |     pfl->cfi_table[0x1E] = 0x00; | 
					
						
							|  |  |  |     /* Reserved */ | 
					
						
							|  |  |  |     pfl->cfi_table[0x1F] = 0x07; | 
					
						
							| 
									
										
										
										
											2008-05-08 21:02:43 +00:00
										 |  |  |     /* Timeout for min size buffer write (NA) */ | 
					
						
							|  |  |  |     pfl->cfi_table[0x20] = 0x00; | 
					
						
							| 
									
										
										
										
											2006-06-25 22:28:15 +00:00
										 |  |  |     /* Typical timeout for block erase (512 ms) */ | 
					
						
							|  |  |  |     pfl->cfi_table[0x21] = 0x09; | 
					
						
							|  |  |  |     /* Typical timeout for full chip erase (4096 ms) */ | 
					
						
							|  |  |  |     pfl->cfi_table[0x22] = 0x0C; | 
					
						
							|  |  |  |     /* Reserved */ | 
					
						
							|  |  |  |     pfl->cfi_table[0x23] = 0x01; | 
					
						
							| 
									
										
										
										
											2008-05-08 21:02:43 +00:00
										 |  |  |     /* Max timeout for buffer write (NA) */ | 
					
						
							|  |  |  |     pfl->cfi_table[0x24] = 0x00; | 
					
						
							| 
									
										
										
										
											2006-06-25 22:28:15 +00:00
										 |  |  |     /* Max timeout for block erase */ | 
					
						
							|  |  |  |     pfl->cfi_table[0x25] = 0x0A; | 
					
						
							|  |  |  |     /* Max timeout for chip erase */ | 
					
						
							|  |  |  |     pfl->cfi_table[0x26] = 0x0D; | 
					
						
							|  |  |  |     /* Device size */ | 
					
						
							| 
									
										
										
										
											2008-05-08 21:02:43 +00:00
										 |  |  |     pfl->cfi_table[0x27] = ctz32(chip_len); | 
					
						
							| 
									
										
										
										
											2006-06-25 22:28:15 +00:00
										 |  |  |     /* Flash device interface (8 & 16 bits) */ | 
					
						
							|  |  |  |     pfl->cfi_table[0x28] = 0x02; | 
					
						
							|  |  |  |     pfl->cfi_table[0x29] = 0x00; | 
					
						
							|  |  |  |     /* Max number of bytes in multi-bytes write */ | 
					
						
							| 
									
										
										
										
											2007-04-16 07:14:26 +00:00
										 |  |  |     /* XXX: disable buffered write as it's not supported */ | 
					
						
							|  |  |  |     //    pfl->cfi_table[0x2A] = 0x05;
 | 
					
						
							|  |  |  |     pfl->cfi_table[0x2A] = 0x00; | 
					
						
							| 
									
										
										
										
											2006-06-25 22:28:15 +00:00
										 |  |  |     pfl->cfi_table[0x2B] = 0x00; | 
					
						
							|  |  |  |     /* Number of erase block regions (uniform) */ | 
					
						
							|  |  |  |     pfl->cfi_table[0x2C] = 0x01; | 
					
						
							|  |  |  |     /* Erase block region 1 */ | 
					
						
							|  |  |  |     pfl->cfi_table[0x2D] = nb_blocs - 1; | 
					
						
							|  |  |  |     pfl->cfi_table[0x2E] = (nb_blocs - 1) >> 8; | 
					
						
							|  |  |  |     pfl->cfi_table[0x2F] = sector_len >> 8; | 
					
						
							|  |  |  |     pfl->cfi_table[0x30] = sector_len >> 16; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-05-08 21:02:43 +00:00
										 |  |  |     /* Extended */ | 
					
						
							|  |  |  |     pfl->cfi_table[0x31] = 'P'; | 
					
						
							|  |  |  |     pfl->cfi_table[0x32] = 'R'; | 
					
						
							|  |  |  |     pfl->cfi_table[0x33] = 'I'; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     pfl->cfi_table[0x34] = '1'; | 
					
						
							|  |  |  |     pfl->cfi_table[0x35] = '0'; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     pfl->cfi_table[0x36] = 0x00; | 
					
						
							|  |  |  |     pfl->cfi_table[0x37] = 0x00; | 
					
						
							|  |  |  |     pfl->cfi_table[0x38] = 0x00; | 
					
						
							|  |  |  |     pfl->cfi_table[0x39] = 0x00; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     pfl->cfi_table[0x3a] = 0x00; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     pfl->cfi_table[0x3b] = 0x00; | 
					
						
							|  |  |  |     pfl->cfi_table[0x3c] = 0x00; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2006-06-25 22:28:15 +00:00
										 |  |  |     return pfl; | 
					
						
							|  |  |  | } |