| Message ID | 1512989626-4303-1-git-send-email-tien.fong.chee@intel.com |
|---|---|
| Headers | show
Return-Path: <u-boot-bounces@lists.denx.de> X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Authentication-Results: ozlabs.org; spf=none (mailfrom) smtp.mailfrom=lists.denx.de (client-ip=81.169.180.215; helo=lists.denx.de; envelope-from=u-boot-bounces@lists.denx.de; receiver=<UNKNOWN>) Received: from lists.denx.de (dione.denx.de [81.169.180.215]) by ozlabs.org (Postfix) with ESMTP id 3ywKbq5d4Fz9s7F for <incoming@patchwork.ozlabs.org>; Mon, 11 Dec 2017 21:55:03 +1100 (AEDT) Received: by lists.denx.de (Postfix, from userid 105) id 5086AC21CEC; Mon, 11 Dec 2017 10:54:17 +0000 (UTC) X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on lists.denx.de X-Spam-Level: X-Spam-Status: No, score=-0.0 required=5.0 tests=RCVD_IN_MSPIKE_H3, RCVD_IN_MSPIKE_WL autolearn=unavailable autolearn_force=no version=3.4.0 Received: from lists.denx.de (localhost [IPv6:::1]) by lists.denx.de (Postfix) with ESMTP id DF795C21D64; Mon, 11 Dec 2017 10:53:58 +0000 (UTC) Received: by lists.denx.de (Postfix, from userid 105) id E9825C21C29; Mon, 11 Dec 2017 10:53:56 +0000 (UTC) Received: from mga01.intel.com (mga01.intel.com [192.55.52.88]) by lists.denx.de (Postfix) with ESMTPS id 7F5C9C21C29 for <u-boot@lists.denx.de>; Mon, 11 Dec 2017 10:53:54 +0000 (UTC) X-Amp-Result: SKIPPED(no attachment in message) X-Amp-File-Uploaded: False Received: from fmsmga006.fm.intel.com ([10.253.24.20]) by fmsmga101.fm.intel.com with ESMTP/TLS/DHE-RSA-AES256-GCM-SHA384; 11 Dec 2017 02:53:52 -0800 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.45,391,1508828400"; d="scan'208";a="185916078" Received: from tfchee-mobl.gar.corp.intel.com (HELO tienfong.fm.intel.com, ) ([10.226.242.147]) by fmsmga006.fm.intel.com with ESMTP; 11 Dec 2017 02:53:50 -0800 From: tien.fong.chee@intel.com To: u-boot@lists.denx.de Date: Mon, 11 Dec 2017 18:53:44 +0800 Message-Id: <1512989626-4303-1-git-send-email-tien.fong.chee@intel.com> X-Mailer: git-send-email 2.7.4 Cc: Marek Vasut <marex@denx.de>, Tien Fong Chee <tien.fong.chee@intel.com>, Ching Liang See <chin.liang.see@intel.com>, Tien Fong <skywindctf@gmail.com>, Westergteen Dalon <dalon.westergreen@intel.com> Subject: [U-Boot] [PATCH 0/2] Generic firmware loader X-BeenThere: u-boot@lists.denx.de X-Mailman-Version: 2.1.18 Precedence: list List-Id: U-Boot discussion <u-boot.lists.denx.de> List-Unsubscribe: <https://lists.denx.de/options/u-boot>, <mailto:u-boot-request@lists.denx.de?subject=unsubscribe> List-Archive: <http://lists.denx.de/pipermail/u-boot/> List-Post: <mailto:u-boot@lists.denx.de> List-Help: <mailto:u-boot-request@lists.denx.de?subject=help> List-Subscribe: <https://lists.denx.de/listinfo/u-boot>, <mailto:u-boot-request@lists.denx.de?subject=subscribe> MIME-Version: 1.0 Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: base64 Errors-To: u-boot-bounces@lists.denx.de Sender: "U-Boot" <u-boot-bounces@lists.denx.de> |
| Series |
Generic firmware loader
|
expand
|
From: Tien Fong Chee <tien.fong.chee@intel.com> This patchset contains generic firmware loader which is very close to Linux firmware loader but for U-Boot framework. Generic firmware loader can be used load whatever into target location, and then consumer driver would use it to program whatever, ie. the FPGA. This series is working on top of u-boot-socfpga.git - http://git.denx.de/u-boot-socfpga.git . Tien Fong Chee (2): arm: socfpga: Remove static declaration on spl_mmc_find_device function common: Generic firmware loader for file system common/Makefile | 1 + common/fs_loader.c | 299 +++++++++++++++++++++++++++++++++++++++++++++++++++ common/spl/spl_mmc.c | 2 +- include/fs_loader.h | 30 ++++++ include/spl.h | 2 + 5 files changed, 333 insertions(+), 1 deletion(-) create mode 100644 common/fs_loader.c create mode 100644 include/fs_loader.h