From mboxrd@z Thu Jan 1 00:00:00 1970 Return-path: Received: from mail-lb0-f177.google.com ([209.85.217.177]) by merlin.infradead.org with esmtps (Exim 4.76 #1 (Red Hat Linux)) id 1SO84c-0006Cd-G0 for barebox@lists.infradead.org; Sat, 28 Apr 2012 13:52:31 +0000 Received: by lboj14 with SMTP id j14so1332067lbo.36 for ; Sat, 28 Apr 2012 06:52:29 -0700 (PDT) From: Antony Pavlov Date: Sat, 28 Apr 2012 17:52:10 +0400 Message-Id: <1335621130-935-2-git-send-email-antonynpavlov@gmail.com> In-Reply-To: <1335621130-935-1-git-send-email-antonynpavlov@gmail.com> References: <1335621130-935-1-git-send-email-antonynpavlov@gmail.com> List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Sender: barebox-bounces@lists.infradead.org Errors-To: barebox-bounces+u.kleine-koenig=pengutronix.de@lists.infradead.org Subject: [RFC 2/2] MIPS: bootm: add "MIPS barebox" handler To: barebox@lists.infradead.org Signed-off-by: Antony Pavlov --- arch/mips/lib/Makefile | 1 + arch/mips/lib/bootm.c | 43 +++++++++++++++++++++++++++++++++++++++++++ common/filetype.c | 2 ++ include/filetype.h | 1 + 4 files changed, 47 insertions(+) create mode 100644 arch/mips/lib/bootm.c diff --git a/arch/mips/lib/Makefile b/arch/mips/lib/Makefile index 45fe920..85aa194 100644 --- a/arch/mips/lib/Makefile +++ b/arch/mips/lib/Makefile @@ -6,3 +6,4 @@ obj-y += ashrdi3.o obj-y += memory.o obj-$(CONFIG_CMD_MIPS_CPUINFO) += cpuinfo.o +obj-$(CONFIG_CMD_BOOTM) += bootm.o diff --git a/arch/mips/lib/bootm.c b/arch/mips/lib/bootm.c new file mode 100644 index 0000000..3d6a4ce --- /dev/null +++ b/arch/mips/lib/bootm.c @@ -0,0 +1,43 @@ +#include +#include +#include +#include +#include +#include + +#include + +static int do_bootm_barebox(struct image_data *data) +{ + void (*barebox)(void); + + barebox = read_file(data->os_file, NULL); + if (!barebox) + return -EINVAL; + + shutdown_barebox(); + + barebox(); + + reset_cpu(0); +} + +static struct image_handler barebox_handler = { + .name = "MIPS barebox", + .bootm = do_bootm_barebox, + .filetype = filetype_mips_barebox, +}; + +static struct binfmt_hook binfmt_barebox_hook = { + .type = filetype_mips_barebox, + .exec = "bootm", +}; + +static int mips_register_image_handler(void) +{ + register_image_handler(&barebox_handler); + binfmt_register(&binfmt_barebox_hook); + + return 0; +} +late_initcall(mips_register_image_handler); diff --git a/common/filetype.c b/common/filetype.c index 15a3732..04d666c 100644 --- a/common/filetype.c +++ b/common/filetype.c @@ -78,6 +78,8 @@ enum filetype file_detect_type(void *_buf) return filetype_oftree; if (strncmp(buf8, "ANDROID!", 8) == 0) return filetype_aimage; + if (strncmp(buf8 + 8, "barebox", 8) == 0) + return filetype_mips_barebox; return filetype_unknown; } diff --git a/include/filetype.h b/include/filetype.h index 9338793..f5de8ed 100644 --- a/include/filetype.h +++ b/include/filetype.h @@ -17,6 +17,7 @@ enum filetype { filetype_oftree, filetype_aimage, filetype_sh, + filetype_mips_barebox, }; const char *file_type_to_string(enum filetype f); -- 1.7.10 _______________________________________________ barebox mailing list barebox@lists.infradead.org http://lists.infradead.org/mailman/listinfo/barebox