1 #include "qemu/osdep.h"
2 #include "qemu/units.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 * MiB)
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_size(filename
, dev
->flash_contents
+ 528 * 32,
41 FLASH_SIZE
- 528 * 32);
43 if (!qtest_enabled()) {
44 error_report("Could not load flash image %s", filename
);
48 /* Build first block with number of blocks */
49 blocks
= DIV_ROUND_UP(ret
, 528 * 32);
50 dev
->flash_contents
[0] = blocks
& 0xff;
51 dev
->flash_contents
[1] = (blocks
>> 8) & 0xff;
52 dev
->flash_contents
[2] = (blocks
>> 16) & 0xff;
53 dev
->flash_contents
[3] = (blocks
>> 24) & 0xff;
54 fprintf(stderr
, "loaded %d bytes for %s into flash\n", ret
,
60 static void handle_command(tc58128_dev
* dev
, uint8_t command
)
64 fprintf(stderr
, "reset flash device\n");
68 fprintf(stderr
, "read mode 1\n");
70 dev
->address_cycle
= 0;
73 fprintf(stderr
, "read mode 2\n");
75 dev
->address_cycle
= 0;
78 fprintf(stderr
, "read mode 3\n");
80 dev
->address_cycle
= 0;
83 fprintf(stderr
, "unknown flash command 0x%02x\n", command
);
88 static void handle_address(tc58128_dev
* dev
, uint8_t data
)
94 switch (dev
->address_cycle
) {
97 if (dev
->state
== READ2
)
98 dev
->address
|= 0x100;
99 else if (dev
->state
== READ3
)
100 dev
->address
|= 0x200;
103 dev
->address
+= data
* 528 * 0x100;
106 dev
->address
+= data
* 528;
107 fprintf(stderr
, "address pointer in flash: 0x%08x\n",
114 dev
->address_cycle
++;
121 static uint8_t handle_read(tc58128_dev
* dev
)
124 if (dev
->address
% 0x100000 == 0)
125 fprintf(stderr
, "reading flash at address 0x%08x\n", dev
->address
);
127 return dev
->flash_contents
[dev
->address
++];
130 /* We never mark the device as busy, so interrupts cannot be triggered
133 static int tc58128_cb(uint16_t porta
, uint16_t portb
,
134 uint16_t * periph_pdtra
, uint16_t * periph_portadir
,
135 uint16_t * periph_pdtrb
, uint16_t * periph_portbdir
)
139 if ((porta
& CE1
) == 0)
141 else if ((porta
& CE2
) == 0)
144 return 0; /* No device selected */
146 if ((porta
& RE
) && (porta
& WE
)) {
147 /* Nothing to do, assert ready and return to input state */
148 *periph_portadir
&= 0xff00;
149 *periph_portadir
|= RDY(dev
);
150 *periph_pdtra
|= RDY(dev
);
156 assert((porta
& WE
) == 0);
157 handle_command(&tc58128_devs
[dev
], porta
& 0x00ff);
158 } else if (porta
& ALE
) {
159 assert((porta
& WE
) == 0);
160 handle_address(&tc58128_devs
[dev
], porta
& 0x00ff);
161 } else if ((porta
& RE
) == 0) {
162 *periph_portadir
|= 0x00ff;
163 *periph_pdtra
&= 0xff00;
164 *periph_pdtra
|= handle_read(&tc58128_devs
[dev
]);
171 static sh7750_io_device tc58128
= {
172 RE
| WE
, /* Port A triggers */
173 0, /* Port B triggers */
174 tc58128_cb
/* Callback */
177 int tc58128_init(struct SH7750State
*s
, const char *zone1
, const char *zone2
)
179 init_dev(&tc58128_devs
[0], zone1
);
180 init_dev(&tc58128_devs
[1], zone2
);
181 return sh7750_register_io_device(s
, &tc58128
);