Merge pull request #40 from mborgerson/xbox

Add option to skip Xbox boot animation.
This commit is contained in:
espes 2015-08-22 13:49:04 +10:00
commit b17c9ed5d4
2 changed files with 18 additions and 6 deletions

View File

@ -20,8 +20,9 @@
#include "hw/hw.h"
#include "hw/i2c/i2c.h"
#include "hw/i2c/smbus.h"
#include <qemu/config-file.h>
/*
/*
* Hardware is a PIC16LC
* http://www.xbox-linux.org/wiki/PIC
*/
@ -68,6 +69,7 @@ static const char* smc_version_string = "P01";
typedef struct SMBusSMCDevice {
SMBusDevice smbusdev;
int versionStringIndex;
bool useShortAnimation;
} SMBusSMCDevice;
static void smc_quick_cmd(SMBusDevice *dev, uint8_t read)
@ -128,7 +130,7 @@ static uint8_t smc_read_data(SMBusDevice *dev, uint8_t cmd, int n)
printf("smc_read_data: addr=0x%02x cmd=0x%02x n=%d\n",
dev->i2c.address, cmd, n);
#endif
switch(cmd) {
case SMC_REG_VER:
return smc_version_string[
@ -137,9 +139,11 @@ static uint8_t smc_read_data(SMBusDevice *dev, uint8_t cmd, int n)
/* pretend to have a composite av pack plugged in */
return SMC_REG_AVPACK_COMPOSITE;
case SMC_REG_SCRATCH:
case SMC_REG_SCRATCH: {
if (smc->useShortAnimation)
return SMC_REG_SCRATCH_SHORT_ANIMATION;
return 0;
// return SMC_REG_SCRATCH_SHORT_ANIMATION;
}
/* challenge request:
* must be non-0 */
@ -155,16 +159,20 @@ static uint8_t smc_read_data(SMBusDevice *dev, uint8_t cmd, int n)
default:
break;
}
return 0;
}
static int smbus_smc_init(SMBusDevice *dev)
{
QemuOpts *opts;
SMBusSMCDevice *smc = (SMBusSMCDevice *)dev;
smc->versionStringIndex = 0;
opts = qemu_opts_find(qemu_find_opts("machine"), NULL);
smc->useShortAnimation = qemu_opt_get_bool(opts, "short_animation", 0);
return 0;
}

4
vl.c
View File

@ -440,6 +440,10 @@ static QemuOptsList qemu_machine_opts = {
.name = "mediaboard_filesystem",
.type = QEMU_OPT_STRING,
.help = "Chihiro mediaboard filesystem file",
},{
.name = "short_animation",
.type = QEMU_OPT_BOOL,
.help = "Skip Xbox boot animation",
},
{ /* End of list */ }
},