From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:42562) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1X11SC-0006EX-Lb for qemu-devel@nongnu.org; Sat, 28 Jun 2014 18:50:49 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1X11S1-0005Fy-39 for qemu-devel@nongnu.org; Sat, 28 Jun 2014 18:50:40 -0400 Received: from mail-la0-x22d.google.com ([2a00:1450:4010:c03::22d]:40048) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1X11S0-0005Fo-Ql for qemu-devel@nongnu.org; Sat, 28 Jun 2014 18:50:29 -0400 Received: by mail-la0-f45.google.com with SMTP id hr17so3952520lab.32 for ; Sat, 28 Jun 2014 15:50:27 -0700 (PDT) From: Max Filippov Date: Sun, 29 Jun 2014 02:49:42 +0400 Message-Id: <1403995782-17041-1-git-send-email-jcmvbkbc@gmail.com> Subject: [Qemu-devel] [PULL 2.1 00/10] target-xtensa queue 2014-06-29 List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org Cc: Peter Maydell , Max Filippov Hi Peter, please pull my current target-xtensa patch queue. The following changes since commit d4cba13bdf251baeedb36b87c1e9f6766773e380: tcg/ppc: Fix failure in tcg_out_mem_long (2014-06-27 13:23:41 +0100) are available in the git repository at: git@github.com:OSLL/qemu-xtensa.git tags/20140629-xtensa for you to fetch changes up to f55b32e7499b291058a0d0fd7d35b14c24791684: hw/xtensa/xtfpga: implement initrd loading (2014-06-29 02:32:42 +0400) ---------------------------------------------------------------- Xtensa fixes and improvements queue 2014-06-29: - fix FLASH mapping to boot region for KC705; - clean up boot parameters passing; - add uImage, DTB and initrd support. ---------------------------------------------------------------- Max Filippov (10): hw/xtensa/xtfpga: fix FLASH mapping to boot region for KC705 hw/xtensa: remove extraneous xtensa_ prefix from file names hw/xtensa: replace fprintfs with error_report hw/xtensa/xtfpga: retrieve parameters from machine_opts hw/xtensa/xtfpga: use symbolic constants for bootparam tags hw/xtensa/xtfpga: refactor bootparameters filling hw/xtensa/xtfpga: add memory info to bootparam hw/xtensa/xtfpga: implement uImage loading hw/xtensa/xtfpga: implement DTB loading hw/xtensa/xtfpga: implement initrd loading hw/xtensa/Makefile.objs | 4 +- hw/xtensa/bootparam.h | 49 +++++++++++++ hw/xtensa/{xtensa_sim.c => sim.c} | 6 +- hw/xtensa/xtensa_bootparam.h | 25 ------- hw/xtensa/{xtensa_lx60.c => xtfpga.c} | 128 ++++++++++++++++++++++++++++------ 5 files changed, 162 insertions(+), 50 deletions(-) create mode 100644 hw/xtensa/bootparam.h rename hw/xtensa/{xtensa_sim.c => sim.c} (96%) delete mode 100644 hw/xtensa/xtensa_bootparam.h rename hw/xtensa/{xtensa_lx60.c => xtfpga.c} (68%)