490-ubi-auto-attach-mtd-device-named-ubi-or-data-on-boot.patch 2.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576
  1. From 8a52e4100d7c3a4a1dfddfa02b8864a9b0068c13 Mon Sep 17 00:00:00 2001
  2. From: Daniel Golle <daniel@makrotopia.org>
  3. Date: Sat, 17 May 2014 03:36:18 +0200
  4. Subject: [PATCH 1/5] ubi: auto-attach mtd device named "ubi" or "data" on boot
  5. To: openwrt-devel@lists.openwrt.org
  6. Signed-off-by: Daniel Golle <daniel@makrotopia.org>
  7. ---
  8. drivers/mtd/ubi/build.c | 36 ++++++++++++++++++++++++++++++++++++
  9. 1 file changed, 36 insertions(+)
  10. --- a/drivers/mtd/ubi/build.c
  11. +++ b/drivers/mtd/ubi/build.c
  12. @@ -1203,6 +1203,49 @@ static struct mtd_info * __init open_mtd
  13. return mtd;
  14. }
  15. +/*
  16. + * This function tries attaching mtd partitions named either "ubi" or "data"
  17. + * during boot.
  18. + */
  19. +static void __init ubi_auto_attach(void)
  20. +{
  21. + int err;
  22. + struct mtd_info *mtd;
  23. +
  24. + /* try attaching mtd device named "ubi" or "data" */
  25. + mtd = open_mtd_device("ubi");
  26. + if (IS_ERR(mtd))
  27. + mtd = open_mtd_device("data");
  28. +
  29. + if (!IS_ERR(mtd)) {
  30. + size_t len;
  31. + char magic[4];
  32. +
  33. + /* check for a valid ubi magic */
  34. + err = mtd_read(mtd, 0, 4, &len, (void *) magic);
  35. + if (!err && len == 4 && strncmp(magic, "UBI#", 4)) {
  36. + pr_err("UBI error: no valid UBI magic found inside mtd%d", mtd->index);
  37. + put_mtd_device(mtd);
  38. + return;
  39. + }
  40. +
  41. + /* auto-add only media types where UBI makes sense */
  42. + if (mtd->type == MTD_NANDFLASH ||
  43. + mtd->type == MTD_NORFLASH ||
  44. + mtd->type == MTD_DATAFLASH ||
  45. + mtd->type == MTD_MLCNANDFLASH) {
  46. + mutex_lock(&ubi_devices_mutex);
  47. + pr_notice("UBI: auto-attach mtd%d", mtd->index);
  48. + err = ubi_attach_mtd_dev(mtd, UBI_DEV_NUM_AUTO, 0, 0);
  49. + mutex_unlock(&ubi_devices_mutex);
  50. + if (err < 0) {
  51. + pr_err("UBI error: cannot attach mtd%d", mtd->index);
  52. + put_mtd_device(mtd);
  53. + }
  54. + }
  55. + }
  56. +}
  57. +
  58. static int __init ubi_init(void)
  59. {
  60. int err, i, k;
  61. @@ -1286,6 +1329,12 @@ static int __init ubi_init(void)
  62. }
  63. }
  64. + /* auto-attach mtd devices only if built-in to the kernel and no ubi.mtd
  65. + * parameter was given */
  66. + if (config_enabled(CONFIG_MTD_ROOTFS_ROOT_DEV) &&
  67. + !ubi_is_module() && !mtd_devs)
  68. + ubi_auto_attach();
  69. +
  70. err = ubiblock_init();
  71. if (err) {
  72. pr_err("UBI error: block: cannot initialize, error %d", err);