1 #include "qemu/osdep.h"
5 #include "sysemu/qtest.h"
6 #include "qemu/error-report.h"
16 #define RDY(n) ((n) == 0 ? RDY1 : RDY2)
18 typedef enum { WAIT, READ1, READ2, READ3 } state_t;
21 uint8_t *flash_contents;
24 uint8_t address_cycle;
27 static tc58128_dev tc58128_devs[2];
29 #define FLASH_SIZE (16*1024*1024)
31 static void init_dev(tc58128_dev * dev, const char *filename)
36 dev->flash_contents = g_malloc(FLASH_SIZE);
37 memset(dev->flash_contents, 0xff, FLASH_SIZE);
39 /* Load flash image skipping the first block */
40 ret = load_image(filename, dev->flash_contents + 528 * 32);
42 if (!qtest_enabled()) {
43 error_report("Could not load flash image %s", filename);
47 /* Build first block with number of blocks */
48 blocks = DIV_ROUND_UP(ret, 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 static 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 static 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 static 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 static 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, const char *zone1, const char *zone2)
178 init_dev(&tc58128_devs[0], zone1);
179 init_dev(&tc58128_devs[1], zone2);
180 return sh7750_register_io_device(s, &tc58128);