#include <linux/version.h>
#include <linux/byteorder/generic.h>
#include <linux/of.h>
+#include <dt-bindings/mtd/partitions/uimage.h>
#include "mtdsplit.h"
*/
#define MAX_HEADER_LEN 96
-#define IH_MAGIC 0x27051956 /* Image Magic Number */
-#define IH_NMLEN 32 /* Image Name Length */
-
-#define IH_OS_LINUX 5 /* Linux */
-
-#define IH_TYPE_KERNEL 2 /* OS Kernel Image */
-#define IH_TYPE_FILESYSTEM 7 /* Filesystem Image */
-
/*
* Legacy format image header,
* all data in network byte order (aka natural aka bigendian).
return 0;
}
+static void uimage_parse_dt(struct mtd_info *master, int *extralen)
+{
+ struct device_node *np = mtd_get_of_node(master);
+
+ if (!np || !of_device_is_compatible(np, "openwrt,uimage"))
+ return;
+ of_property_read_u32(np, "openwrt,padding", extralen);
+}
+
/**
* __mtdsplit_parse_uimage - scan partition and create kernel + rootfs parts
*
size_t rootfs_size = 0;
int uimage_part, rf_part;
int ret;
- int extralen;
+ int extralen = 0;
enum mtdsplit_part_type type;
nr_parts = 2;
goto err_free_parts;
}
+ uimage_parse_dt(master, &extralen);
+
/* find uImage on erase block boundaries */
for (offset = 0; offset < master->size; offset += master->erasesize) {
struct uimage_header *header;
if (ret)
continue;
- extralen = 0;
ret = find_header(buf, MAX_HEADER_LEN, &extralen);
if (ret < 0) {
pr_debug("no valid uImage found in \"%s\" at offset %llx\n",
static const struct of_device_id mtdsplit_uimage_of_match_table[] = {
{ .compatible = "denx,uimage" },
+ { .compatible = "openwrt,uimage" },
{},
};