mirror of https://github.com/xqemu/xqemu.git
esp: implement Disable selection command
Signed-off-by: Hervé Poussineau <hpoussin@reactos.org> Signed-off-by: Blue Swirl <blauwirbel@gmail.com>
This commit is contained in:
parent
7246e16076
commit
6fe84c1835
6
hw/esp.c
6
hw/esp.c
|
@ -117,6 +117,7 @@ struct ESPState {
|
||||||
#define CMD_SELATN 0x42
|
#define CMD_SELATN 0x42
|
||||||
#define CMD_SELATNS 0x43
|
#define CMD_SELATNS 0x43
|
||||||
#define CMD_ENSEL 0x44
|
#define CMD_ENSEL 0x44
|
||||||
|
#define CMD_DISSEL 0x45
|
||||||
|
|
||||||
#define STAT_DO 0x00
|
#define STAT_DO 0x00
|
||||||
#define STAT_DI 0x01
|
#define STAT_DI 0x01
|
||||||
|
@ -649,6 +650,11 @@ static void esp_mem_write(void *opaque, target_phys_addr_t addr,
|
||||||
trace_esp_mem_writeb_cmd_ensel(val);
|
trace_esp_mem_writeb_cmd_ensel(val);
|
||||||
s->rregs[ESP_RINTR] = 0;
|
s->rregs[ESP_RINTR] = 0;
|
||||||
break;
|
break;
|
||||||
|
case CMD_DISSEL:
|
||||||
|
trace_esp_mem_writeb_cmd_dissel(val);
|
||||||
|
s->rregs[ESP_RINTR] = 0;
|
||||||
|
esp_raise_irq(s);
|
||||||
|
break;
|
||||||
default:
|
default:
|
||||||
ESP_ERROR("Unhandled ESP command (%2.2x)\n", (unsigned)val);
|
ESP_ERROR("Unhandled ESP command (%2.2x)\n", (unsigned)val);
|
||||||
break;
|
break;
|
||||||
|
|
|
@ -755,6 +755,7 @@ esp_mem_writeb_cmd_sel(uint32_t val) "Select without ATN (%2.2x)"
|
||||||
esp_mem_writeb_cmd_selatn(uint32_t val) "Select with ATN (%2.2x)"
|
esp_mem_writeb_cmd_selatn(uint32_t val) "Select with ATN (%2.2x)"
|
||||||
esp_mem_writeb_cmd_selatns(uint32_t val) "Select with ATN & stop (%2.2x)"
|
esp_mem_writeb_cmd_selatns(uint32_t val) "Select with ATN & stop (%2.2x)"
|
||||||
esp_mem_writeb_cmd_ensel(uint32_t val) "Enable selection (%2.2x)"
|
esp_mem_writeb_cmd_ensel(uint32_t val) "Enable selection (%2.2x)"
|
||||||
|
esp_mem_writeb_cmd_dissel(uint32_t val) "Disable selection (%2.2x)"
|
||||||
|
|
||||||
# monitor.c
|
# monitor.c
|
||||||
handle_qmp_command(void *mon, const char *cmd_name) "mon %p cmd_name \"%s\""
|
handle_qmp_command(void *mon, const char *cmd_name) "mon %p cmd_name \"%s\""
|
||||||
|
|
Loading…
Reference in New Issue