mtdsplit_lzma.c 2.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104
  1. /*
  2. * Copyright (C) 2014 Gabor Juhos <[email protected]>
  3. *
  4. * This program is free software; you can redistribute it and/or modify it
  5. * under the terms of the GNU General Public License version 2 as published
  6. * by the Free Software Foundation.
  7. *
  8. */
  9. #include <linux/module.h>
  10. #include <linux/init.h>
  11. #include <linux/kernel.h>
  12. #include <linux/slab.h>
  13. #include <linux/mtd/mtd.h>
  14. #include <linux/mtd/partitions.h>
  15. #include <linux/of.h>
  16. #include <asm/unaligned.h>
  17. #include "mtdsplit.h"
  18. #define LZMA_NR_PARTS 2
  19. #define LZMA_PROPERTIES_SIZE 5
  20. struct lzma_header {
  21. u8 props[LZMA_PROPERTIES_SIZE];
  22. u8 size_low[4];
  23. u8 size_high[4];
  24. };
  25. static int mtdsplit_parse_lzma(struct mtd_info *master,
  26. const struct mtd_partition **pparts,
  27. struct mtd_part_parser_data *data)
  28. {
  29. struct lzma_header hdr;
  30. size_t hdr_len, retlen;
  31. size_t rootfs_offset;
  32. u32 t;
  33. struct mtd_partition *parts;
  34. int err;
  35. hdr_len = sizeof(hdr);
  36. err = mtd_read(master, 0, hdr_len, &retlen, (void *) &hdr);
  37. if (err)
  38. return err;
  39. if (retlen != hdr_len)
  40. return -EIO;
  41. /* verify LZMA properties */
  42. if (hdr.props[0] >= (9 * 5 * 5))
  43. return -EINVAL;
  44. t = get_unaligned_le32(&hdr.props[1]);
  45. if (!is_power_of_2(t))
  46. return -EINVAL;
  47. t = get_unaligned_le32(&hdr.size_high);
  48. if (t)
  49. return -EINVAL;
  50. err = mtd_find_rootfs_from(master, master->erasesize, master->size,
  51. &rootfs_offset, NULL);
  52. if (err)
  53. return err;
  54. parts = kzalloc(LZMA_NR_PARTS * sizeof(*parts), GFP_KERNEL);
  55. if (!parts)
  56. return -ENOMEM;
  57. parts[0].name = KERNEL_PART_NAME;
  58. parts[0].offset = 0;
  59. parts[0].size = rootfs_offset;
  60. parts[1].name = ROOTFS_PART_NAME;
  61. parts[1].offset = rootfs_offset;
  62. parts[1].size = master->size - rootfs_offset;
  63. *pparts = parts;
  64. return LZMA_NR_PARTS;
  65. }
  66. static const struct of_device_id mtdsplit_lzma_of_match_table[] = {
  67. { .compatible = "lzma" },
  68. {},
  69. };
  70. MODULE_DEVICE_TABLE(of, mtdsplit_lzma_of_match_table);
  71. static struct mtd_part_parser mtdsplit_lzma_parser = {
  72. .owner = THIS_MODULE,
  73. .name = "lzma-fw",
  74. .of_match_table = mtdsplit_lzma_of_match_table,
  75. .parse_fn = mtdsplit_parse_lzma,
  76. .type = MTD_PARSER_TYPE_FIRMWARE,
  77. };
  78. static int __init mtdsplit_lzma_init(void)
  79. {
  80. register_mtd_parser(&mtdsplit_lzma_parser);
  81. return 0;
  82. }
  83. subsys_initcall(mtdsplit_lzma_init);