#include #include #include #include #include #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; if (data->dryrun) { free(barebox); return 0; } shutdown_barebox(); barebox(); restart_machine(); } 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 do_bootm_elf(struct image_data *data) { void (*entry)(int, void *); void *fdt; int ret = 0; ret = bootm_load_os(data, data->os_address); if (ret) return ret; fdt = bootm_get_devicetree(data); if (IS_ERR(fdt)) { ret = PTR_ERR(fdt); goto bootm_free_fdt; } pr_info("Starting application at 0x%08lx, dts 0x%08lx...\n", phys_to_virt(data->os_address), data->of_root_node); if (data->dryrun) goto bootm_free_fdt; shutdown_barebox(); entry = (void *) (unsigned long) data->os_address; entry(-2, phys_to_virt((unsigned long)fdt)); pr_err("ELF application terminated\n"); ret = -EINVAL; bootm_free_fdt: free(fdt); return ret; } static struct image_handler elf_handler = { .name = "ELF", .bootm = do_bootm_elf, .filetype = filetype_elf, }; static struct binfmt_hook binfmt_elf_hook = { .type = filetype_elf, .exec = "bootm", }; static int mips_register_image_handler(void) { register_image_handler(&barebox_handler); binfmt_register(&binfmt_barebox_hook); register_image_handler(&elf_handler); binfmt_register(&binfmt_elf_hook); return 0; } late_initcall(mips_register_image_handler);