From: Aleksander Morgado <aleksander@aleksander.es>
To: barebox@lists.infradead.org
Cc: Aleksander Morgado <aleksander@aleksander.es>
Subject: [RFC PATCH v2 0/8] ratp: new generic RATP command support
Date: Thu, 8 Feb 2018 14:22:53 +0100 [thread overview]
Message-ID: <20180208132301.24921-1-aleksander@aleksander.es> (raw)
This updated patchset doesn't break the RATP API. It keeps the separate IDs for requests and responses, and doesn't try to flag responses or indications in a different way.
The command definition logic is also updated so that the request and response IDs associated to each command are defined in the body of the command, instead of magically constructing the id fields with macro glues.
All the RATP specific commands are now implemented in files completely separated from the console commands, and they are all kept in common/ratp, along with the core ratp implementation itself.
As additional changes w.r.t. v1, this patchset also includes a change to make it possible building the RATP logic without full console support (e.g. making it possible to enable CONFIG_RATP with CONFIG_CONSOLE_RATP disabled).
The new commands were tested with the libratp-barebox library
(wip2/md-mw branch) in https://github.com/aleksander0m/libratp-barebox
Aleksander Morgado (8):
ratp: implement generic command support
ratp: moved logic to its own subdirectory
ratp: allow building without full console support
ratp: implement ping as a standard ratp command
ratp: implement getenv as a standard ratp command
ratp: use xstrndup() instead of a custom xmemdup_add_zero()
ratp: new md and mw commands
ratp: new reset command
arch/arm/lib32/barebox.lds.S | 4 +
arch/arm/lib64/barebox.lds.S | 4 +
arch/blackfin/boards/ipe337/barebox.lds.S | 5 +-
arch/mips/lib/barebox.lds.S | 4 +
arch/nios2/cpu/barebox.lds.S | 5 +-
arch/openrisc/cpu/barebox.lds.S | 4 +
arch/ppc/boards/pcm030/barebox.lds.S | 4 +
arch/ppc/mach-mpc85xx/barebox.lds.S | 4 +
arch/sandbox/board/barebox.lds.S | 5 +
arch/x86/lib/barebox.lds.S | 7 ++
arch/x86/mach-efi/elf_ia32_efi.lds.S | 5 +
arch/x86/mach-efi/elf_x86_64_efi.lds.S | 5 +
common/Kconfig | 13 +-
common/Makefile | 3 +-
common/module.lds.S | 2 +
common/ratp/Kconfig | 14 +++
common/ratp/Makefile | 6 +
common/ratp/getenv.c | 51 ++++++++
common/ratp/md.c | 202 ++++++++++++++++++++++++++++++
common/ratp/mw.c | 173 +++++++++++++++++++++++++
common/ratp/ping.c | 40 ++++++
common/{ => ratp}/ratp.c | 156 +++++++++++------------
common/ratp/reset.c | 55 ++++++++
fs/Kconfig | 2 +-
include/asm-generic/barebox.lds.h | 2 +
include/ratp_bb.h | 52 ++++++++
lib/Kconfig | 2 +-
lib/readline.c | 2 +-
28 files changed, 728 insertions(+), 103 deletions(-)
create mode 100644 common/ratp/Kconfig
create mode 100644 common/ratp/Makefile
create mode 100644 common/ratp/getenv.c
create mode 100644 common/ratp/md.c
create mode 100644 common/ratp/mw.c
create mode 100644 common/ratp/ping.c
rename common/{ => ratp}/ratp.c (81%)
create mode 100644 common/ratp/reset.c
--
2.15.1
_______________________________________________
barebox mailing list
barebox@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/barebox
next reply other threads:[~2018-02-08 13:23 UTC|newest]
Thread overview: 12+ messages / expand[flat|nested] mbox.gz Atom feed top
2018-02-08 13:22 Aleksander Morgado [this message]
2018-02-08 13:22 ` [RFC PATCH v2 1/8] ratp: implement generic " Aleksander Morgado
2018-02-08 13:22 ` [RFC PATCH v2 2/8] ratp: moved logic to its own subdirectory Aleksander Morgado
2018-02-08 13:22 ` [RFC PATCH v2 3/8] ratp: allow building without full console support Aleksander Morgado
2018-02-08 13:22 ` [RFC PATCH v2 4/8] ratp: implement ping as a standard ratp command Aleksander Morgado
2018-02-08 13:22 ` [RFC PATCH v2 5/8] ratp: implement getenv " Aleksander Morgado
2018-02-08 13:22 ` [RFC PATCH v2 6/8] ratp: use xstrndup() instead of a custom xmemdup_add_zero() Aleksander Morgado
2018-02-08 13:23 ` [RFC PATCH v2 7/8] ratp: new md and mw commands Aleksander Morgado
2018-02-13 7:55 ` Sascha Hauer
2018-02-21 13:10 ` Aleksander Morgado
2018-02-22 7:59 ` Sascha Hauer
2018-02-08 13:23 ` [RFC PATCH v2 8/8] ratp: new reset command Aleksander Morgado
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20180208132301.24921-1-aleksander@aleksander.es \
--to=aleksander@aleksander.es \
--cc=barebox@lists.infradead.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox