Hi Anthony, Peter, please pull my current xtensa tree.
The following changes since commit 105a060188dc6fdd4551571a966514d1a5f6815a: Merge remote-tracking branch 'remotes/pmaydell/tags/pull-target-arm-20140220' into staging (2014-02-21 15:04:58 +0000) are available in the git repository at: git://github.com/OSLL/qemu-xtensa.git tags/20140224-xtensa for you to fetch changes up to 604e1f9cd0602e92ba49a27dd3a46db3d29f882e: target-xtensa: provide HW confg ID registers (2014-02-24 04:47:02 +0400) ---------------------------------------------------------------- Xtensa fixes and improvements queue 2014-02-24: - add support for ML605 and KC705 FPGA boards; - flush opencores_eth queue when new RX descriptor is available; - add basic checks to cache opcodes; - make core configuration available to tests; - implement HW config ID special registers. ---------------------------------------------------------------- Max Filippov (10): hw/xtensa: add support for ML605 and KC705 FPGA board opencores_eth: flush queue whenever can_receive can go from false to true target-xtensa: add RRRI4 opcode format fields target-xtensa: add basic checks to dcache opcodes target-xtensa: add basic checks to icache opcodes target-xtensa: add overridable test_init macro target-xtensa: allow using core configuration in tests target-xtensa: add basic tests for cache opcodes target-xtensa: refactor standard core configuration target-xtensa: provide HW confg ID registers hw/net/opencores_eth.c | 33 ++++++++++++- hw/xtensa/xtensa_lx60.c | 51 ++++++++++++++++++-- target-xtensa/core-dc232b.c | 8 +--- target-xtensa/core-dc233c.c | 8 +--- target-xtensa/core-fsf.c | 8 +--- target-xtensa/cpu.c | 2 + target-xtensa/cpu.h | 4 ++ target-xtensa/helper.h | 1 + target-xtensa/op_helper.c | 5 ++ target-xtensa/overlay_tool.h | 17 +++++++ target-xtensa/translate.c | 83 ++++++++++++++++++++++++++++++++- tests/tcg/xtensa/Makefile | 12 +++-- tests/tcg/xtensa/macros.inc | 6 +++ tests/tcg/xtensa/test_b.S | 2 +- tests/tcg/xtensa/test_bi.S | 2 +- tests/tcg/xtensa/test_boolean.S | 2 +- tests/tcg/xtensa/test_break.S | 2 +- tests/tcg/xtensa/test_bz.S | 2 +- tests/tcg/xtensa/test_cache.S | 97 +++++++++++++++++++++++++++++++++++++++ tests/tcg/xtensa/test_clamps.S | 2 +- tests/tcg/xtensa/test_extui.S | 2 +- tests/tcg/xtensa/test_fail.S | 2 +- tests/tcg/xtensa/test_interrupt.S | 2 +- tests/tcg/xtensa/test_loop.S | 2 +- tests/tcg/xtensa/test_mac16.S | 2 +- tests/tcg/xtensa/test_max.S | 2 +- tests/tcg/xtensa/test_min.S | 2 +- tests/tcg/xtensa/test_mmu.S | 6 +-- tests/tcg/xtensa/test_mul16.S | 2 +- tests/tcg/xtensa/test_mul32.S | 2 +- tests/tcg/xtensa/test_nsa.S | 2 +- tests/tcg/xtensa/test_pipeline.S | 2 +- tests/tcg/xtensa/test_quo.S | 2 +- tests/tcg/xtensa/test_rem.S | 2 +- tests/tcg/xtensa/test_rst0.S | 2 +- tests/tcg/xtensa/test_s32c1i.S | 2 +- tests/tcg/xtensa/test_sar.S | 2 +- tests/tcg/xtensa/test_sext.S | 2 +- tests/tcg/xtensa/test_shift.S | 2 +- tests/tcg/xtensa/test_sr.S | 2 +- tests/tcg/xtensa/test_timer.S | 2 +- tests/tcg/xtensa/test_windowed.S | 2 +- 42 files changed, 332 insertions(+), 63 deletions(-) create mode 100644 tests/tcg/xtensa/test_cache.S