All of lore.kernel.org
 help / color / mirror / Atom feed
* [U-Boot] [PATCH v10 0/4] Generic firmware loader
@ 2018-03-05  9:43 tien.fong.chee at intel.com
  2018-03-05  9:43 ` [U-Boot] [PATCH v10 1/4] spl: Remove static declaration on spl_mmc_find_device function tien.fong.chee at intel.com
                   ` (3 more replies)
  0 siblings, 4 replies; 13+ messages in thread
From: tien.fong.chee at intel.com @ 2018-03-05  9:43 UTC (permalink / raw)
  To: u-boot

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 version mainly resolved comments from
Lothar Waßmann in [v9].

This series is working on top of u-boot.git -
 http://git.denx.de/u-boot.git .

[v9]: https://www.mail-archive.com/u-boot at lists.denx.de/msg279152.html

v9 -> v10 changes:
-----------------
- Resolved memory leaking and cleaning up messy codes.

Patchset history
----------------
[v1]: https://www.mail-archive.com/u-boot at lists.denx.de/msg271905.html
[v2]: https://www.mail-archive.com/u-boot at lists.denx.de/msg271979.html
[v3]: https://www.mail-archive.com/u-boot at lists.denx.de/msg272039.html
[v4]: https://www.mail-archive.com/u-boot at lists.denx.de/msg272432.html
[v5]: https://www.mail-archive.com/u-boot at lists.denx.de/msg272771.html
[v6]: https://www.mail-archive.com/u-boot at lists.denx.de/msg273961.html
[v7]: https://www.mail-archive.com/u-boot at lists.denx.de/msg276775.html
[v8]: https://www.mail-archive.com/u-boot at lists.denx.de/msg278735.html

Tien Fong Chee (4):
  spl: Remove static declaration on spl_mmc_find_device function
  cmd: ubifs: Move ubifs_initialized checking into cmd_ubifs_umount()
  cmd: ubifs: Factor out some checking codes into cmd_ubifs_mount()
  common: Generic firmware loader for file system

 cmd/ubifs.c                |  40 ++---
 common/Kconfig             |  10 ++
 common/Makefile            |   1 +
 common/fs_loader.c         | 353 +++++++++++++++++++++++++++++++++++++++++++++
 common/spl/spl_mmc.c       |   2 +-
 doc/README.firmware_loader |  86 +++++++++++
 include/fs_loader.h        |  28 ++++
 include/spl.h              |   2 +
 include/ubi_uboot.h        |   2 +
 9 files changed, 506 insertions(+), 18 deletions(-)
 create mode 100644 common/fs_loader.c
 create mode 100644 doc/README.firmware_loader
 create mode 100644 include/fs_loader.h

-- 
2.2.0

^ permalink raw reply	[flat|nested] 13+ messages in thread

end of thread, other threads:[~2018-03-15 12:21 UTC | newest]

Thread overview: 13+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2018-03-05  9:43 [U-Boot] [PATCH v10 0/4] Generic firmware loader tien.fong.chee at intel.com
2018-03-05  9:43 ` [U-Boot] [PATCH v10 1/4] spl: Remove static declaration on spl_mmc_find_device function tien.fong.chee at intel.com
2018-03-05  9:43 ` [U-Boot] [PATCH v10 2/4] cmd: ubifs: Move ubifs_initialized checking into cmd_ubifs_umount() tien.fong.chee at intel.com
2018-03-05 14:34   ` Tom Rini
2018-03-05  9:43 ` [U-Boot] [PATCH v10 3/4] cmd: ubifs: Factor out some checking codes into cmd_ubifs_mount() tien.fong.chee at intel.com
2018-03-05 14:34   ` Tom Rini
2018-03-05  9:43 ` [U-Boot] [PATCH v10 4/4] common: Generic firmware loader for file system tien.fong.chee at intel.com
2018-03-06 17:51   ` Simon Glass
2018-03-08  5:03     ` Chee, Tien Fong
2018-03-08 21:04       ` Simon Glass
2018-03-15  7:18         ` Chee, Tien Fong
2018-03-15 12:21           ` Tom Rini
2018-03-08 23:02       ` Wolfgang Denk

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.