diff options
author | Peter Maydell <peter.maydell@linaro.org> | 2016-07-29 13:05:55 +0100 |
---|---|---|
committer | Peter Maydell <peter.maydell@linaro.org> | 2016-07-29 13:05:55 +0100 |
commit | c7e9aafe5c2fc82858a3026862ac05c33d363ffb (patch) | |
tree | 9127089af696376063b96bfa0e6d7260632daa60 /hw | |
parent | df2c35902e315c772ca97ca29cb6398ddc4a5861 (diff) | |
parent | 701074a6fc7470d0ed54e4a4bcd4d491ad8da22e (diff) | |
download | qemu-c7e9aafe5c2fc82858a3026862ac05c33d363ffb.tar.gz qemu-c7e9aafe5c2fc82858a3026862ac05c33d363ffb.tar.bz2 qemu-c7e9aafe5c2fc82858a3026862ac05c33d363ffb.zip |
Merge remote-tracking branch 'remotes/lalrae/tags/mips-20160729' into staging
MIPS patches 2016-07-29
Changes:
* bug fixes
# gpg: Signature made Fri 29 Jul 2016 09:44:13 BST
# gpg: using RSA key 0x52118E3C0B29DA6B
# gpg: Good signature from "Leon Alrae <leon.alrae@imgtec.com>"
# Primary key fingerprint: 8DD3 2F98 5495 9D66 35D4 4FC0 5211 8E3C 0B29 DA6B
* remotes/lalrae/tags/mips-20160729:
target-mips: fix EntryHi.EHINV being cleared on TLB exception
hw/mips_malta: Fix YAMON API print routine
Signed-off-by: Peter Maydell <peter.maydell@linaro.org>
Diffstat (limited to 'hw')
-rw-r--r-- | hw/mips/mips_malta.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/hw/mips/mips_malta.c b/hw/mips/mips_malta.c index 34d41ef44a..e90857ee0b 100644 --- a/hw/mips/mips_malta.c +++ b/hw/mips/mips_malta.c @@ -727,7 +727,7 @@ static void write_bootloader(uint8_t *base, int64_t run_addr, stl_p(p++, 0x00000000); /* nop */ stl_p(p++, 0x0ff0021c); /* jal 870 */ stl_p(p++, 0x00000000); /* nop */ - stl_p(p++, 0x08000205); /* j 814 */ + stl_p(p++, 0x1000fff9); /* b 814 */ stl_p(p++, 0x00000000); /* nop */ stl_p(p++, 0x01a00009); /* jalr t5 */ stl_p(p++, 0x01602021); /* move a0,t3 */ |