12 #define RDY(n) ((n) == 0 ? RDY1 : RDY2)
14 typedef enum { WAIT, READ1, READ2, READ3 } state_t;
17 uint8_t *flash_contents;
20 uint8_t address_cycle;
23 static tc58128_dev tc58128_devs[2];
25 #define FLASH_SIZE (16*1024*1024)
27 void init_dev(tc58128_dev * dev, char *filename)
32 dev->flash_contents = qemu_mallocz(FLASH_SIZE);
33 memset(dev->flash_contents, 0xff, FLASH_SIZE);
34 if (!dev->flash_contents) {
35 fprintf(stderr, "could not alloc memory for flash\n");
39 /* Load flash image skipping the first block */
40 ret = load_image(filename, dev->flash_contents + 528 * 32);
42 fprintf(stderr, "ret=%d\n", ret);
43 fprintf(stderr, "qemu: could not load flash image %s\n",
47 /* Build first block with number of blocks */
48 blocks = (ret + 528 * 32 - 1) / (528 * 32);
49 dev->flash_contents[0] = blocks & 0xff;
50 dev->flash_contents[1] = (blocks >> 8) & 0xff;
51 dev->flash_contents[2] = (blocks >> 16) & 0xff;
52 dev->flash_contents[3] = (blocks >> 24) & 0xff;
53 fprintf(stderr, "loaded %d bytes for %s into flash\n", ret,
59 void handle_command(tc58128_dev * dev, uint8_t command)
63 fprintf(stderr, "reset flash device\n");
67 fprintf(stderr, "read mode 1\n");
69 dev->address_cycle = 0;
72 fprintf(stderr, "read mode 2\n");
74 dev->address_cycle = 0;
77 fprintf(stderr, "read mode 3\n");
79 dev->address_cycle = 0;
82 fprintf(stderr, "unknown flash command 0x%02x\n", command);
87 void handle_address(tc58128_dev * dev, uint8_t data)
93 switch (dev->address_cycle) {
96 if (dev->state == READ2)
97 dev->address |= 0x100;
98 else if (dev->state == READ3)
99 dev->address |= 0x200;
102 dev->address += data * 528 * 0x100;
105 dev->address += data * 528;
106 fprintf(stderr, "address pointer in flash: 0x%08x\n",
113 dev->address_cycle++;
120 uint8_t handle_read(tc58128_dev * dev)
123 if (dev->address % 0x100000 == 0)
124 fprintf(stderr, "reading flash at address 0x%08x\n", dev->address);
126 return dev->flash_contents[dev->address++];
129 /* We never mark the device as busy, so interrupts cannot be triggered
132 int tc58128_cb(uint16_t porta, uint16_t portb,
133 uint16_t * periph_pdtra, uint16_t * periph_portadir,
134 uint16_t * periph_pdtrb, uint16_t * periph_portbdir)
138 if ((porta & CE1) == 0)
140 else if ((porta & CE2) == 0)
143 return 0; /* No device selected */
145 if ((porta & RE) && (porta & WE)) {
146 /* Nothing to do, assert ready and return to input state */
147 *periph_portadir &= 0xff00;
148 *periph_portadir |= RDY(dev);
149 *periph_pdtra |= RDY(dev);
155 assert((porta & WE) == 0);
156 handle_command(&tc58128_devs[dev], porta & 0x00ff);
157 } else if (porta & ALE) {
158 assert((porta & WE) == 0);
159 handle_address(&tc58128_devs[dev], porta & 0x00ff);
160 } else if ((porta & RE) == 0) {
161 *periph_portadir |= 0x00ff;
162 *periph_pdtra &= 0xff00;
163 *periph_pdtra |= handle_read(&tc58128_devs[dev]);
170 static sh7750_io_device tc58128 = {
171 RE | WE, /* Port A triggers */
172 0, /* Port B triggers */
173 tc58128_cb /* Callback */
176 int tc58128_init(struct SH7750State *s, char *zone1, char *zone2)
178 init_dev(&tc58128_devs[0], zone1);
179 init_dev(&tc58128_devs[1], zone2);
180 return sh7750_register_io_device(s, &tc58128);