* (no subject)
@ 2016-04-29 14:22 Nikolaus Schulz
2016-04-29 14:22 ` [PATCH v2 1/3] zImage-arm: Fix a return value check that use the wrong variable Nikolaus Schulz
` (2 more replies)
0 siblings, 3 replies; 4+ messages in thread
From: Nikolaus Schulz @ 2016-04-29 14:22 UTC (permalink / raw)
To: Simon Horman; +Cc: Alban Bedel, kexec
Hi Simon,
here is v2 of the patch series from Avionic Design. There are no
content changes, only the setup_dtb_prop patch has a reworked commit
message, as requested.
Best regards,
Nikolaus
_______________________________________________
kexec mailing list
kexec@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/kexec
^ permalink raw reply [flat|nested] 4+ messages in thread
* [PATCH v2 1/3] zImage-arm: Fix a return value check that use the wrong variable
2016-04-29 14:22 Nikolaus Schulz
@ 2016-04-29 14:22 ` Nikolaus Schulz
2016-04-29 14:22 ` [PATCH v2 2/3] zImage-arm: Add support for booting android images Nikolaus Schulz
2016-04-29 14:22 ` [PATCH v2 3/3] arm: Change setup_dtb_prop to create nodes by offset and node name Nikolaus Schulz
2 siblings, 0 replies; 4+ messages in thread
From: Nikolaus Schulz @ 2016-04-29 14:22 UTC (permalink / raw)
To: Simon Horman; +Cc: Alban Bedel, kexec
From: Alban Bedel <alban.bedel@avionic-design.de>
When looking for a hole to put the initrd in the error check used the
wrong variable.
Signed-off-by: Alban Bedel <alban.bedel@avionic-design.de>
---
kexec/arch/arm/kexec-zImage-arm.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/kexec/arch/arm/kexec-zImage-arm.c b/kexec/arch/arm/kexec-zImage-arm.c
index d85ab9b..0ac194d 100644
--- a/kexec/arch/arm/kexec-zImage-arm.c
+++ b/kexec/arch/arm/kexec-zImage-arm.c
@@ -529,7 +529,7 @@ int zImage_arm_load(int argc, char **argv, const char *buf, off_t len,
unsigned long initrd_base_new = locate_hole(info,
hole_size, page_size,
initrd_base, ULONG_MAX, INT_MAX);
- if (base == ULONG_MAX)
+ if (initrd_base_new == ULONG_MAX)
return -1;
initrd_base = initrd_base_new;
}
--
2.1.4
_______________________________________________
kexec mailing list
kexec@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/kexec
^ permalink raw reply related [flat|nested] 4+ messages in thread
* [PATCH v2 2/3] zImage-arm: Add support for booting android images
2016-04-29 14:22 Nikolaus Schulz
2016-04-29 14:22 ` [PATCH v2 1/3] zImage-arm: Fix a return value check that use the wrong variable Nikolaus Schulz
@ 2016-04-29 14:22 ` Nikolaus Schulz
2016-04-29 14:22 ` [PATCH v2 3/3] arm: Change setup_dtb_prop to create nodes by offset and node name Nikolaus Schulz
2 siblings, 0 replies; 4+ messages in thread
From: Nikolaus Schulz @ 2016-04-29 14:22 UTC (permalink / raw)
To: Simon Horman; +Cc: Alban Bedel, kexec
From: Alban Bedel <alban.bedel@avionic-design.de>
Add very basic support for booting an android image. The ramdisk and
command line from the image are only used if none has been given on
the command line.
Signed-off-by: Alban Bedel <alban.bedel@avionic-design.de>
---
kexec/arch/arm/kexec-zImage-arm.c | 56 +++++++++++++++++++++++++++++++++++++--
1 file changed, 54 insertions(+), 2 deletions(-)
diff --git a/kexec/arch/arm/kexec-zImage-arm.c b/kexec/arch/arm/kexec-zImage-arm.c
index 0ac194d..3222dd3 100644
--- a/kexec/arch/arm/kexec-zImage-arm.c
+++ b/kexec/arch/arm/kexec-zImage-arm.c
@@ -27,6 +27,23 @@ off_t initrd_base = 0, initrd_size = 0;
unsigned int kexec_arm_image_size = 0;
unsigned long long user_page_offset = (-1ULL);
+struct android_image {
+ char magic[8];
+ uint32_t kernel_size;
+ uint32_t kernel_addr;
+ uint32_t ramdisk_size;
+ uint32_t ramdisk_addr;
+ uint32_t stage2_size;
+ uint32_t stage2_addr;
+ uint32_t tags_addr;
+ uint32_t page_size;
+ uint32_t reserved1;
+ uint32_t reserved2;
+ char name[16];
+ char command_line[512];
+ uint32_t chksum[8];
+};
+
struct tag_header {
uint32_t size;
uint32_t tag;
@@ -328,7 +345,7 @@ int zImage_arm_load(int argc, char **argv, const char *buf, off_t len,
char *modified_cmdline = NULL;
off_t command_line_len;
const char *ramdisk;
- char *ramdisk_buf;
+ const char *ramdisk_buf;
int opt;
int use_atags;
char *dtb_buf;
@@ -415,6 +432,41 @@ int zImage_arm_load(int argc, char **argv, const char *buf, off_t len,
if (dtb_file)
dtb_buf = slurp_file(dtb_file, &dtb_length);
+ /* Handle android images, 2048 is the minimum page size */
+ if (len > 2048 && !strncmp(buf, "ANDROID!", 8)) {
+ const struct android_image *aimg = (const void *)buf;
+ uint32_t page_size = le32_to_cpu(aimg->page_size);
+ uint32_t kernel_size = le32_to_cpu(aimg->kernel_size);
+ uint32_t ramdisk_size = le32_to_cpu(aimg->ramdisk_size);
+ uint32_t stage2_size = le32_to_cpu(aimg->stage2_size);
+ off_t aimg_size = page_size + _ALIGN(kernel_size, page_size) +
+ _ALIGN(ramdisk_size, page_size) + stage2_size;
+
+ if (len < aimg_size) {
+ fprintf(stderr, "Android image size is incorrect\n");
+ return -1;
+ }
+
+ /* Get the kernel */
+ buf = buf + page_size;
+ len = kernel_size;
+
+ /* And the ramdisk if none was given on the command line */
+ if (!ramdisk && ramdisk_size) {
+ initrd_size = ramdisk_size;
+ ramdisk_buf = buf + _ALIGN(kernel_size, page_size);
+ }
+
+ /* Likewise for the command line */
+ if (!command_line && aimg->command_line[0]) {
+ command_line = aimg->command_line;
+ if (command_line[sizeof(aimg->command_line) - 1])
+ command_line_len = sizeof(aimg->command_line);
+ else
+ command_line_len = strlen(command_line) + 1;
+ }
+ }
+
/*
* If we are loading a dump capture kernel, we need to update kernel
* command line and also add some additional segments.
@@ -534,7 +586,7 @@ int zImage_arm_load(int argc, char **argv, const char *buf, off_t len,
initrd_base = initrd_base_new;
}
- if (ramdisk) {
+ if (ramdisk_buf) {
add_segment(info, ramdisk_buf, initrd_size,
initrd_base, initrd_size);
--
2.1.4
_______________________________________________
kexec mailing list
kexec@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/kexec
^ permalink raw reply related [flat|nested] 4+ messages in thread
* [PATCH v2 3/3] arm: Change setup_dtb_prop to create nodes by offset and node name
2016-04-29 14:22 Nikolaus Schulz
2016-04-29 14:22 ` [PATCH v2 1/3] zImage-arm: Fix a return value check that use the wrong variable Nikolaus Schulz
2016-04-29 14:22 ` [PATCH v2 2/3] zImage-arm: Add support for booting android images Nikolaus Schulz
@ 2016-04-29 14:22 ` Nikolaus Schulz
2 siblings, 0 replies; 4+ messages in thread
From: Nikolaus Schulz @ 2016-04-29 14:22 UTC (permalink / raw)
To: Simon Horman; +Cc: Alban Bedel, kexec, Nikolaus Schulz
setup_dtb_prop looks like a generic function that can find and add any
nodes, which need not be top-level in the DT. In practice though, the
function is only used for the top-level /chosen node, and it can't add
nodes for which the parent doesn't exist.
So far, so good - but for adding a new node to the DT, the parent offset
need be passed to fdt_add_subnode. Currently in setup_dtb_prop the
parent offset is unknown, and instead a bogus error code is passed to
fdt_add_subnode.
Fix that by adding the parent offset as an extra function argument to
setup_dtb_prop, and change the handling of the /chosen node to operate
on a relative path plus (zero) offset instead of an absolute path. This
aligns setup_dtb_prop to the libfdt API, where functions commonly
operate with a parent offset plus child node name.
Signed-off-by: Nikolaus Schulz <nikolaus.schulz@avionic-design.de>
---
kexec/arch/arm/kexec-zImage-arm.c | 15 ++++++++-------
1 file changed, 8 insertions(+), 7 deletions(-)
diff --git a/kexec/arch/arm/kexec-zImage-arm.c b/kexec/arch/arm/kexec-zImage-arm.c
index 3222dd3..6b548c3 100644
--- a/kexec/arch/arm/kexec-zImage-arm.c
+++ b/kexec/arch/arm/kexec-zImage-arm.c
@@ -274,8 +274,9 @@ int atag_arm_load(struct kexec_info *info, unsigned long base,
return 0;
}
-static int setup_dtb_prop(char **bufp, off_t *sizep, const char *node_name,
- const char *prop_name, const void *val, int len)
+static int setup_dtb_prop(char **bufp, off_t *sizep, int parentoffset,
+ const char *node_name, const char *prop_name,
+ const void *val, int len)
{
char *dtb_buf;
off_t dtb_size;
@@ -290,14 +291,14 @@ static int setup_dtb_prop(char **bufp, off_t *sizep, const char *node_name,
dtb_size = *sizep;
/* check if the subnode has already exist */
- off = fdt_path_offset(dtb_buf, node_name);
+ off = fdt_subnode_offset(dtb_buf, parentoffset, node_name);
if (off == -FDT_ERR_NOTFOUND) {
dtb_size += fdt_node_len(node_name);
fdt_set_totalsize(dtb_buf, dtb_size);
dtb_buf = xrealloc(dtb_buf, dtb_size);
if (dtb_buf == NULL)
die("xrealloc failed\n");
- off = fdt_add_subnode(dtb_buf, off, node_name);
+ off = fdt_add_subnode(dtb_buf, parentoffset, node_name);
}
if (off < 0) {
@@ -548,7 +549,7 @@ int zImage_arm_load(int argc, char **argv, const char *buf, off_t len,
* Error should have been reported so
* directly return -1
*/
- if (setup_dtb_prop(&dtb_buf, &dtb_length, "/chosen",
+ if (setup_dtb_prop(&dtb_buf, &dtb_length, 0, "chosen",
"bootargs", command_line,
strlen(command_line) + 1))
return -1;
@@ -594,11 +595,11 @@ int zImage_arm_load(int argc, char **argv, const char *buf, off_t len,
start = cpu_to_be32((unsigned long)(initrd_base));
end = cpu_to_be32((unsigned long)(initrd_base + initrd_size));
- if (setup_dtb_prop(&dtb_buf, &dtb_length, "/chosen",
+ if (setup_dtb_prop(&dtb_buf, &dtb_length, 0, "chosen",
"linux,initrd-start", &start,
sizeof(start)))
return -1;
- if (setup_dtb_prop(&dtb_buf, &dtb_length, "/chosen",
+ if (setup_dtb_prop(&dtb_buf, &dtb_length, 0, "chosen",
"linux,initrd-end", &end,
sizeof(end)))
return -1;
--
2.1.4
_______________________________________________
kexec mailing list
kexec@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/kexec
^ permalink raw reply related [flat|nested] 4+ messages in thread
end of thread, other threads:[~2016-04-29 14:23 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2016-04-29 14:22 Nikolaus Schulz
2016-04-29 14:22 ` [PATCH v2 1/3] zImage-arm: Fix a return value check that use the wrong variable Nikolaus Schulz
2016-04-29 14:22 ` [PATCH v2 2/3] zImage-arm: Add support for booting android images Nikolaus Schulz
2016-04-29 14:22 ` [PATCH v2 3/3] arm: Change setup_dtb_prop to create nodes by offset and node name Nikolaus Schulz
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox