You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

92 lines
1.9 KiB

  1. From a2985ca233641f596926314762b5f1085aeaa723 Mon Sep 17 00:00:00 2001
  2. From: Stephane Fillod <f8cfe@free.fr>
  3. Date: Tue, 15 Jan 2019 14:56:15 +0100
  4. Subject: [PATCH] Add various SD/eMMC vendors to table
  5. Part if this list update comes from a compilation of this web site[1].
  6. [1] https://www.cameramemoryspeed.com/sd-memory-card-faq/reading-sd-card-cid-serial-psn-internal-numbers/
  7. Signed-off-by: Stephane Fillod <f8cfe@free.fr>
  8. ---
  9. lsmmc.c | 34 ++++++++++++++++++++++++++++++++--
  10. 1 file changed, 32 insertions(+), 2 deletions(-)
  11. --- a/lsmmc.c
  12. +++ b/lsmmc.c
  13. @@ -112,7 +112,7 @@ struct ids_database database[] = {
  14. {
  15. .type = "sd",
  16. .id = 0x1b,
  17. - .manufacturer = "Transcend",
  18. + .manufacturer = "Transcend/Samsung",
  19. },
  20. {
  21. .type = "sd",
  22. @@ -122,7 +122,7 @@ struct ids_database database[] = {
  23. {
  24. .type = "sd",
  25. .id = 0x1d,
  26. - .manufacturer = "Corsair",
  27. + .manufacturer = "Corsair/AData",
  28. },
  29. {
  30. .type = "sd",
  31. @@ -136,6 +136,11 @@ struct ids_database database[] = {
  32. },
  33. {
  34. .type = "sd",
  35. + .id = 0x27,
  36. + .manufacturer = "Delkin/Phison",
  37. + },
  38. + {
  39. + .type = "sd",
  40. .id = 0x28,
  41. .manufacturer = "Lexar",
  42. },
  43. @@ -146,6 +151,11 @@ struct ids_database database[] = {
  44. },
  45. {
  46. .type = "sd",
  47. + .id = 0x31,
  48. + .manufacturer = "Silicon Power",
  49. + },
  50. + {
  51. + .type = "sd",
  52. .id = 0x33,
  53. .manufacturer = "STMicroelectronics",
  54. },
  55. @@ -161,6 +171,21 @@ struct ids_database database[] = {
  56. },
  57. {
  58. .type = "sd",
  59. + .id = 0x74,
  60. + .manufacturer = "Transcend",
  61. + },
  62. + {
  63. + .type = "sd",
  64. + .id = 0x76,
  65. + .manufacturer = "Patriot",
  66. + },
  67. + {
  68. + .type = "sd",
  69. + .id = 0x82,
  70. + .manufacturer = "Gobe/Sony",
  71. + },
  72. + {
  73. + .type = "sd",
  74. .id = 0x89,
  75. .manufacturer = "Unknown",
  76. },
  77. @@ -224,6 +249,11 @@ struct ids_database database[] = {
  78. .id = 0x70,
  79. .manufacturer = "Kingston",
  80. },
  81. + {
  82. + .type = "mmc",
  83. + .id = 0xfe,
  84. + .manufacturer = "Micron",
  85. + },
  86. };
  87. /* Command line parsing functions */