diff options
author | Edgar E. Iglesias <edgar.iglesias@xilinx.com> | 2018-10-11 04:19:20 +0200 |
---|---|---|
committer | Peter Maydell <peter.maydell@linaro.org> | 2018-10-16 16:16:42 +0100 |
commit | b2d43091b59fc9937e68800b0ec3e76efd73690a (patch) | |
tree | 8716249e3623d230c00add67241de3897d758018 | |
parent | 37bdda89eb7615cb225f781c9fb552e144c68ea7 (diff) | |
download | qemu-b2d43091b59fc9937e68800b0ec3e76efd73690a.zip |
net: cadence_gem: Disable TSU feature bit
Disable the Timestamping Unit feature bit since QEMU does not
yet support it. This allows guest SW to correctly probe for
its existance.
Reviewed-by: Alistair Francis <alistair.francis@wdc.com>
Signed-off-by: Edgar E. Iglesias <edgar.iglesias@xilinx.com>
Message-id: 20181011021931.4249-2-edgar.iglesias@gmail.com
Signed-off-by: Peter Maydell <peter.maydell@linaro.org>
-rw-r--r-- | hw/net/cadence_gem.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/hw/net/cadence_gem.c b/hw/net/cadence_gem.c index 0fa4b0dc44..e560b7a142 100644 --- a/hw/net/cadence_gem.c +++ b/hw/net/cadence_gem.c @@ -1228,7 +1228,7 @@ static void gem_reset(DeviceState *d) s->regs[GEM_MODID] = s->revision; s->regs[GEM_DESCONF] = 0x02500111; s->regs[GEM_DESCONF2] = 0x2ab13fff; - s->regs[GEM_DESCONF5] = 0x002f2145; + s->regs[GEM_DESCONF5] = 0x002f2045; s->regs[GEM_DESCONF6] = 0x00000200; /* Set MAC address */ |