From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:43662) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Wz6sD-000320-2e for qemu-devel@nongnu.org; Mon, 23 Jun 2014 12:13:49 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1Wz6s4-0001in-1Q for qemu-devel@nongnu.org; Mon, 23 Jun 2014 12:13:36 -0400 Received: from mail-lb0-x236.google.com ([2a00:1450:4010:c04::236]:64605) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Wz6s3-0001ig-OJ for qemu-devel@nongnu.org; Mon, 23 Jun 2014 12:13:27 -0400 Received: by mail-lb0-f182.google.com with SMTP id c11so4910092lbj.27 for ; Mon, 23 Jun 2014 09:13:26 -0700 (PDT) From: Max Filippov Date: Mon, 23 Jun 2014 20:12:47 +0400 Message-Id: <1403539976-22581-1-git-send-email-jcmvbkbc@gmail.com> Subject: [Qemu-devel] [PATCH 0/9] target-xtensa: linux booting improvements List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org Cc: Max Filippov , Waldemar Brodkorb Hi, this series refactors boot parameters handling for xtensa xtfpga boards and implements uImage, FDT and initrd loading. Max Filippov (9): 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} | 120 +++++++++++++++++++++++++++++----- 5 files changed, 157 insertions(+), 47 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} (70%) -- 1.8.1.4