13 #define RDY(n) ((n) == 0 ? RDY1 : RDY2)
15 typedef enum { WAIT
, READ1
, READ2
, READ3
} state_t
;
18 uint8_t *flash_contents
;
21 uint8_t address_cycle
;
24 static tc58128_dev tc58128_devs
[2];
26 #define FLASH_SIZE (16*1024*1024)
28 static void init_dev(tc58128_dev
* dev
, const char *filename
)
33 dev
->flash_contents
= g_malloc(FLASH_SIZE
);
34 memset(dev
->flash_contents
, 0xff, FLASH_SIZE
);
36 /* Load flash image skipping the first block */
37 ret
= load_image(filename
, dev
->flash_contents
+ 528 * 32);
39 fprintf(stderr
, "ret=%d\n", ret
);
40 fprintf(stderr
, "qemu: could not load flash image %s\n",
44 /* Build first block with number of blocks */
45 blocks
= (ret
+ 528 * 32 - 1) / (528 * 32);
46 dev
->flash_contents
[0] = blocks
& 0xff;
47 dev
->flash_contents
[1] = (blocks
>> 8) & 0xff;
48 dev
->flash_contents
[2] = (blocks
>> 16) & 0xff;
49 dev
->flash_contents
[3] = (blocks
>> 24) & 0xff;
50 fprintf(stderr
, "loaded %d bytes for %s into flash\n", ret
,
56 static void handle_command(tc58128_dev
* dev
, uint8_t command
)
60 fprintf(stderr
, "reset flash device\n");
64 fprintf(stderr
, "read mode 1\n");
66 dev
->address_cycle
= 0;
69 fprintf(stderr
, "read mode 2\n");
71 dev
->address_cycle
= 0;
74 fprintf(stderr
, "read mode 3\n");
76 dev
->address_cycle
= 0;
79 fprintf(stderr
, "unknown flash command 0x%02x\n", command
);
84 static void handle_address(tc58128_dev
* dev
, uint8_t data
)
90 switch (dev
->address_cycle
) {
93 if (dev
->state
== READ2
)
94 dev
->address
|= 0x100;
95 else if (dev
->state
== READ3
)
96 dev
->address
|= 0x200;
99 dev
->address
+= data
* 528 * 0x100;
102 dev
->address
+= data
* 528;
103 fprintf(stderr
, "address pointer in flash: 0x%08x\n",
110 dev
->address_cycle
++;
117 static uint8_t handle_read(tc58128_dev
* dev
)
120 if (dev
->address
% 0x100000 == 0)
121 fprintf(stderr
, "reading flash at address 0x%08x\n", dev
->address
);
123 return dev
->flash_contents
[dev
->address
++];
126 /* We never mark the device as busy, so interrupts cannot be triggered
129 static int tc58128_cb(uint16_t porta
, uint16_t portb
,
130 uint16_t * periph_pdtra
, uint16_t * periph_portadir
,
131 uint16_t * periph_pdtrb
, uint16_t * periph_portbdir
)
135 if ((porta
& CE1
) == 0)
137 else if ((porta
& CE2
) == 0)
140 return 0; /* No device selected */
142 if ((porta
& RE
) && (porta
& WE
)) {
143 /* Nothing to do, assert ready and return to input state */
144 *periph_portadir
&= 0xff00;
145 *periph_portadir
|= RDY(dev
);
146 *periph_pdtra
|= RDY(dev
);
152 assert((porta
& WE
) == 0);
153 handle_command(&tc58128_devs
[dev
], porta
& 0x00ff);
154 } else if (porta
& ALE
) {
155 assert((porta
& WE
) == 0);
156 handle_address(&tc58128_devs
[dev
], porta
& 0x00ff);
157 } else if ((porta
& RE
) == 0) {
158 *periph_portadir
|= 0x00ff;
159 *periph_pdtra
&= 0xff00;
160 *periph_pdtra
|= handle_read(&tc58128_devs
[dev
]);
167 static sh7750_io_device tc58128
= {
168 RE
| WE
, /* Port A triggers */
169 0, /* Port B triggers */
170 tc58128_cb
/* Callback */
173 int tc58128_init(struct SH7750State
*s
, const char *zone1
, const char *zone2
)
175 init_dev(&tc58128_devs
[0], zone1
);
176 init_dev(&tc58128_devs
[1], zone2
);
177 return sh7750_register_io_device(s
, &tc58128
);