1 // SPDX-License-Identifier: GPL-2.0 2 /* 3 * Copyright (c) 2009-2017, The Linux Foundation. All rights reserved. 4 * Copyright (c) 2017-2019, Linaro Ltd. 5 */ 6 7 #include <linux/debugfs.h> 8 #include <linux/err.h> 9 #include <linux/module.h> 10 #include <linux/platform_device.h> 11 #include <linux/random.h> 12 #include <linux/slab.h> 13 #include <linux/soc/qcom/smem.h> 14 #include <linux/string.h> 15 #include <linux/sys_soc.h> 16 #include <linux/types.h> 17 18 #include <asm/unaligned.h> 19 20 /* 21 * SoC version type with major number in the upper 16 bits and minor 22 * number in the lower 16 bits. 23 */ 24 #define SOCINFO_MAJOR(ver) (((ver) >> 16) & 0xffff) 25 #define SOCINFO_MINOR(ver) ((ver) & 0xffff) 26 #define SOCINFO_VERSION(maj, min) ((((maj) & 0xffff) << 16)|((min) & 0xffff)) 27 28 #define SMEM_SOCINFO_BUILD_ID_LENGTH 32 29 #define SMEM_SOCINFO_CHIP_ID_LENGTH 32 30 31 /* 32 * SMEM item id, used to acquire handles to respective 33 * SMEM region. 34 */ 35 #define SMEM_HW_SW_BUILD_ID 137 36 37 #ifdef CONFIG_DEBUG_FS 38 #define SMEM_IMAGE_VERSION_BLOCKS_COUNT 32 39 #define SMEM_IMAGE_VERSION_SIZE 4096 40 #define SMEM_IMAGE_VERSION_NAME_SIZE 75 41 #define SMEM_IMAGE_VERSION_VARIANT_SIZE 20 42 #define SMEM_IMAGE_VERSION_OEM_SIZE 32 43 44 /* 45 * SMEM Image table indices 46 */ 47 #define SMEM_IMAGE_TABLE_BOOT_INDEX 0 48 #define SMEM_IMAGE_TABLE_TZ_INDEX 1 49 #define SMEM_IMAGE_TABLE_RPM_INDEX 3 50 #define SMEM_IMAGE_TABLE_APPS_INDEX 10 51 #define SMEM_IMAGE_TABLE_MPSS_INDEX 11 52 #define SMEM_IMAGE_TABLE_ADSP_INDEX 12 53 #define SMEM_IMAGE_TABLE_CNSS_INDEX 13 54 #define SMEM_IMAGE_TABLE_VIDEO_INDEX 14 55 #define SMEM_IMAGE_VERSION_TABLE 469 56 57 /* 58 * SMEM Image table names 59 */ 60 static const char *const socinfo_image_names[] = { 61 [SMEM_IMAGE_TABLE_ADSP_INDEX] = "adsp", 62 [SMEM_IMAGE_TABLE_APPS_INDEX] = "apps", 63 [SMEM_IMAGE_TABLE_BOOT_INDEX] = "boot", 64 [SMEM_IMAGE_TABLE_CNSS_INDEX] = "cnss", 65 [SMEM_IMAGE_TABLE_MPSS_INDEX] = "mpss", 66 [SMEM_IMAGE_TABLE_RPM_INDEX] = "rpm", 67 [SMEM_IMAGE_TABLE_TZ_INDEX] = "tz", 68 [SMEM_IMAGE_TABLE_VIDEO_INDEX] = "video", 69 }; 70 71 static const char *const pmic_models[] = { 72 [0] = "Unknown PMIC model", 73 [1] = "PM8941", 74 [2] = "PM8841", 75 [3] = "PM8019", 76 [4] = "PM8226", 77 [5] = "PM8110", 78 [6] = "PMA8084", 79 [7] = "PMI8962", 80 [8] = "PMD9635", 81 [9] = "PM8994", 82 [10] = "PMI8994", 83 [11] = "PM8916", 84 [12] = "PM8004", 85 [13] = "PM8909/PM8058", 86 [14] = "PM8028", 87 [15] = "PM8901", 88 [16] = "PM8950/PM8027", 89 [17] = "PMI8950/ISL9519", 90 [18] = "PMK8001/PM8921", 91 [19] = "PMI8996/PM8018", 92 [20] = "PM8998/PM8015", 93 [21] = "PMI8998/PM8014", 94 [22] = "PM8821", 95 [23] = "PM8038", 96 [24] = "PM8005/PM8922", 97 [25] = "PM8917", 98 [26] = "PM660L", 99 [27] = "PM660", 100 [30] = "PM8150", 101 [31] = "PM8150L", 102 [32] = "PM8150B", 103 [33] = "PMK8002", 104 [36] = "PM8009", 105 [38] = "PM8150C", 106 [41] = "SMB2351", 107 [47] = "PMK8350", 108 [48] = "PM8350", 109 [49] = "PM8350C", 110 [50] = "PM8350B", 111 [51] = "PMR735A", 112 [52] = "PMR735B", 113 [58] = "PM8450", 114 [65] = "PM8010", 115 }; 116 #endif /* CONFIG_DEBUG_FS */ 117 118 /* Socinfo SMEM item structure */ 119 struct socinfo { 120 __le32 fmt; 121 __le32 id; 122 __le32 ver; 123 char build_id[SMEM_SOCINFO_BUILD_ID_LENGTH]; 124 /* Version 2 */ 125 __le32 raw_id; 126 __le32 raw_ver; 127 /* Version 3 */ 128 __le32 hw_plat; 129 /* Version 4 */ 130 __le32 plat_ver; 131 /* Version 5 */ 132 __le32 accessory_chip; 133 /* Version 6 */ 134 __le32 hw_plat_subtype; 135 /* Version 7 */ 136 __le32 pmic_model; 137 __le32 pmic_die_rev; 138 /* Version 8 */ 139 __le32 pmic_model_1; 140 __le32 pmic_die_rev_1; 141 __le32 pmic_model_2; 142 __le32 pmic_die_rev_2; 143 /* Version 9 */ 144 __le32 foundry_id; 145 /* Version 10 */ 146 __le32 serial_num; 147 /* Version 11 */ 148 __le32 num_pmics; 149 __le32 pmic_array_offset; 150 /* Version 12 */ 151 __le32 chip_family; 152 __le32 raw_device_family; 153 __le32 raw_device_num; 154 /* Version 13 */ 155 __le32 nproduct_id; 156 char chip_id[SMEM_SOCINFO_CHIP_ID_LENGTH]; 157 /* Version 14 */ 158 __le32 num_clusters; 159 __le32 ncluster_array_offset; 160 __le32 num_defective_parts; 161 __le32 ndefective_parts_array_offset; 162 /* Version 15 */ 163 __le32 nmodem_supported; 164 }; 165 166 #ifdef CONFIG_DEBUG_FS 167 struct socinfo_params { 168 u32 raw_device_family; 169 u32 hw_plat_subtype; 170 u32 accessory_chip; 171 u32 raw_device_num; 172 u32 chip_family; 173 u32 foundry_id; 174 u32 plat_ver; 175 u32 raw_ver; 176 u32 hw_plat; 177 u32 fmt; 178 u32 nproduct_id; 179 u32 num_clusters; 180 u32 ncluster_array_offset; 181 u32 num_defective_parts; 182 u32 ndefective_parts_array_offset; 183 u32 nmodem_supported; 184 }; 185 186 struct smem_image_version { 187 char name[SMEM_IMAGE_VERSION_NAME_SIZE]; 188 char variant[SMEM_IMAGE_VERSION_VARIANT_SIZE]; 189 char pad; 190 char oem[SMEM_IMAGE_VERSION_OEM_SIZE]; 191 }; 192 #endif /* CONFIG_DEBUG_FS */ 193 194 struct qcom_socinfo { 195 struct soc_device *soc_dev; 196 struct soc_device_attribute attr; 197 #ifdef CONFIG_DEBUG_FS 198 struct dentry *dbg_root; 199 struct socinfo_params info; 200 #endif /* CONFIG_DEBUG_FS */ 201 }; 202 203 struct soc_id { 204 unsigned int id; 205 const char *name; 206 }; 207 208 static const struct soc_id soc_id[] = { 209 { 87, "MSM8960" }, 210 { 109, "APQ8064" }, 211 { 122, "MSM8660A" }, 212 { 123, "MSM8260A" }, 213 { 124, "APQ8060A" }, 214 { 126, "MSM8974" }, 215 { 130, "MPQ8064" }, 216 { 138, "MSM8960AB" }, 217 { 139, "APQ8060AB" }, 218 { 140, "MSM8260AB" }, 219 { 141, "MSM8660AB" }, 220 { 145, "MSM8626" }, 221 { 147, "MSM8610" }, 222 { 153, "APQ8064AB" }, 223 { 158, "MSM8226" }, 224 { 159, "MSM8526" }, 225 { 161, "MSM8110" }, 226 { 162, "MSM8210" }, 227 { 163, "MSM8810" }, 228 { 164, "MSM8212" }, 229 { 165, "MSM8612" }, 230 { 166, "MSM8112" }, 231 { 168, "MSM8225Q" }, 232 { 169, "MSM8625Q" }, 233 { 170, "MSM8125Q" }, 234 { 172, "APQ8064AA" }, 235 { 178, "APQ8084" }, 236 { 184, "APQ8074" }, 237 { 185, "MSM8274" }, 238 { 186, "MSM8674" }, 239 { 194, "MSM8974PRO" }, 240 { 198, "MSM8126" }, 241 { 199, "APQ8026" }, 242 { 200, "MSM8926" }, 243 { 205, "MSM8326" }, 244 { 206, "MSM8916" }, 245 { 207, "MSM8994" }, 246 { 208, "APQ8074-AA" }, 247 { 209, "APQ8074-AB" }, 248 { 210, "APQ8074PRO" }, 249 { 211, "MSM8274-AA" }, 250 { 212, "MSM8274-AB" }, 251 { 213, "MSM8274PRO" }, 252 { 214, "MSM8674-AA" }, 253 { 215, "MSM8674-AB" }, 254 { 216, "MSM8674PRO" }, 255 { 217, "MSM8974-AA" }, 256 { 218, "MSM8974-AB" }, 257 { 219, "APQ8028" }, 258 { 220, "MSM8128" }, 259 { 221, "MSM8228" }, 260 { 222, "MSM8528" }, 261 { 223, "MSM8628" }, 262 { 224, "MSM8928" }, 263 { 225, "MSM8510" }, 264 { 226, "MSM8512" }, 265 { 233, "MSM8936" }, 266 { 239, "MSM8939" }, 267 { 240, "APQ8036" }, 268 { 241, "APQ8039" }, 269 { 246, "MSM8996" }, 270 { 247, "APQ8016" }, 271 { 248, "MSM8216" }, 272 { 249, "MSM8116" }, 273 { 250, "MSM8616" }, 274 { 251, "MSM8992" }, 275 { 253, "APQ8094" }, 276 { 290, "MDM9607" }, 277 { 291, "APQ8096" }, 278 { 292, "MSM8998" }, 279 { 293, "MSM8953" }, 280 { 296, "MDM8207" }, 281 { 297, "MDM9207" }, 282 { 298, "MDM9307" }, 283 { 299, "MDM9628" }, 284 { 304, "APQ8053" }, 285 { 305, "MSM8996SG" }, 286 { 310, "MSM8996AU" }, 287 { 311, "APQ8096AU" }, 288 { 312, "APQ8096SG" }, 289 { 317, "SDM660" }, 290 { 318, "SDM630" }, 291 { 319, "APQ8098" }, 292 { 321, "SDM845" }, 293 { 322, "MDM9206" }, 294 { 323, "IPQ8074" }, 295 { 324, "SDA660" }, 296 { 325, "SDM658" }, 297 { 326, "SDA658" }, 298 { 327, "SDA630" }, 299 { 338, "SDM450" }, 300 { 341, "SDA845" }, 301 { 342, "IPQ8072" }, 302 { 343, "IPQ8076" }, 303 { 344, "IPQ8078" }, 304 { 345, "SDM636" }, 305 { 346, "SDA636" }, 306 { 349, "SDM632" }, 307 { 350, "SDA632" }, 308 { 351, "SDA450" }, 309 { 356, "SM8250" }, 310 { 375, "IPQ8070" }, 311 { 376, "IPQ8071" }, 312 { 389, "IPQ8072A" }, 313 { 390, "IPQ8074A" }, 314 { 391, "IPQ8076A" }, 315 { 392, "IPQ8078A" }, 316 { 394, "SM6125" }, 317 { 395, "IPQ8070A" }, 318 { 396, "IPQ8071A" }, 319 { 402, "IPQ6018" }, 320 { 403, "IPQ6028" }, 321 { 421, "IPQ6000" }, 322 { 422, "IPQ6010" }, 323 { 425, "SC7180" }, 324 { 434, "SM6350" }, 325 { 439, "SM8350" }, 326 { 449, "SC8280XP" }, 327 { 453, "IPQ6005" }, 328 { 455, "QRB5165" }, 329 { 457, "SM8450" }, 330 { 459, "SM7225" }, 331 { 460, "SA8540P" }, 332 { 480, "SM8450" }, 333 }; 334 335 static const char *socinfo_machine(struct device *dev, unsigned int id) 336 { 337 int idx; 338 339 for (idx = 0; idx < ARRAY_SIZE(soc_id); idx++) { 340 if (soc_id[idx].id == id) 341 return soc_id[idx].name; 342 } 343 344 return NULL; 345 } 346 347 #ifdef CONFIG_DEBUG_FS 348 349 #define QCOM_OPEN(name, _func) \ 350 static int qcom_open_##name(struct inode *inode, struct file *file) \ 351 { \ 352 return single_open(file, _func, inode->i_private); \ 353 } \ 354 \ 355 static const struct file_operations qcom_ ##name## _ops = { \ 356 .open = qcom_open_##name, \ 357 .read = seq_read, \ 358 .llseek = seq_lseek, \ 359 .release = single_release, \ 360 } 361 362 #define DEBUGFS_ADD(info, name) \ 363 debugfs_create_file(__stringify(name), 0444, \ 364 qcom_socinfo->dbg_root, \ 365 info, &qcom_ ##name## _ops) 366 367 368 static int qcom_show_build_id(struct seq_file *seq, void *p) 369 { 370 struct socinfo *socinfo = seq->private; 371 372 seq_printf(seq, "%s\n", socinfo->build_id); 373 374 return 0; 375 } 376 377 static int qcom_show_pmic_model(struct seq_file *seq, void *p) 378 { 379 struct socinfo *socinfo = seq->private; 380 int model = SOCINFO_MINOR(le32_to_cpu(socinfo->pmic_model)); 381 382 if (model < 0) 383 return -EINVAL; 384 385 if (model < ARRAY_SIZE(pmic_models) && pmic_models[model]) 386 seq_printf(seq, "%s\n", pmic_models[model]); 387 else 388 seq_printf(seq, "unknown (%d)\n", model); 389 390 return 0; 391 } 392 393 static int qcom_show_pmic_model_array(struct seq_file *seq, void *p) 394 { 395 struct socinfo *socinfo = seq->private; 396 unsigned int num_pmics = le32_to_cpu(socinfo->num_pmics); 397 unsigned int pmic_array_offset = le32_to_cpu(socinfo->pmic_array_offset); 398 int i; 399 void *ptr = socinfo; 400 401 ptr += pmic_array_offset; 402 403 /* No need for bounds checking, it happened at socinfo_debugfs_init */ 404 for (i = 0; i < num_pmics; i++) { 405 unsigned int model = SOCINFO_MINOR(get_unaligned_le32(ptr + 2 * i * sizeof(u32))); 406 unsigned int die_rev = get_unaligned_le32(ptr + (2 * i + 1) * sizeof(u32)); 407 408 if (model < ARRAY_SIZE(pmic_models) && pmic_models[model]) 409 seq_printf(seq, "%s %u.%u\n", pmic_models[model], 410 SOCINFO_MAJOR(die_rev), 411 SOCINFO_MINOR(die_rev)); 412 else 413 seq_printf(seq, "unknown (%d)\n", model); 414 } 415 416 return 0; 417 } 418 419 static int qcom_show_pmic_die_revision(struct seq_file *seq, void *p) 420 { 421 struct socinfo *socinfo = seq->private; 422 423 seq_printf(seq, "%u.%u\n", 424 SOCINFO_MAJOR(le32_to_cpu(socinfo->pmic_die_rev)), 425 SOCINFO_MINOR(le32_to_cpu(socinfo->pmic_die_rev))); 426 427 return 0; 428 } 429 430 static int qcom_show_chip_id(struct seq_file *seq, void *p) 431 { 432 struct socinfo *socinfo = seq->private; 433 434 seq_printf(seq, "%s\n", socinfo->chip_id); 435 436 return 0; 437 } 438 439 QCOM_OPEN(build_id, qcom_show_build_id); 440 QCOM_OPEN(pmic_model, qcom_show_pmic_model); 441 QCOM_OPEN(pmic_model_array, qcom_show_pmic_model_array); 442 QCOM_OPEN(pmic_die_rev, qcom_show_pmic_die_revision); 443 QCOM_OPEN(chip_id, qcom_show_chip_id); 444 445 #define DEFINE_IMAGE_OPS(type) \ 446 static int show_image_##type(struct seq_file *seq, void *p) \ 447 { \ 448 struct smem_image_version *image_version = seq->private; \ 449 if (image_version->type[0] != '\0') \ 450 seq_printf(seq, "%s\n", image_version->type); \ 451 return 0; \ 452 } \ 453 static int open_image_##type(struct inode *inode, struct file *file) \ 454 { \ 455 return single_open(file, show_image_##type, inode->i_private); \ 456 } \ 457 \ 458 static const struct file_operations qcom_image_##type##_ops = { \ 459 .open = open_image_##type, \ 460 .read = seq_read, \ 461 .llseek = seq_lseek, \ 462 .release = single_release, \ 463 } 464 465 DEFINE_IMAGE_OPS(name); 466 DEFINE_IMAGE_OPS(variant); 467 DEFINE_IMAGE_OPS(oem); 468 469 static void socinfo_debugfs_init(struct qcom_socinfo *qcom_socinfo, 470 struct socinfo *info, size_t info_size) 471 { 472 struct smem_image_version *versions; 473 struct dentry *dentry; 474 size_t size; 475 int i; 476 unsigned int num_pmics; 477 unsigned int pmic_array_offset; 478 479 qcom_socinfo->dbg_root = debugfs_create_dir("qcom_socinfo", NULL); 480 481 qcom_socinfo->info.fmt = __le32_to_cpu(info->fmt); 482 483 debugfs_create_x32("info_fmt", 0444, qcom_socinfo->dbg_root, 484 &qcom_socinfo->info.fmt); 485 486 switch (qcom_socinfo->info.fmt) { 487 case SOCINFO_VERSION(0, 15): 488 qcom_socinfo->info.nmodem_supported = __le32_to_cpu(info->nmodem_supported); 489 490 debugfs_create_u32("nmodem_supported", 0444, qcom_socinfo->dbg_root, 491 &qcom_socinfo->info.nmodem_supported); 492 fallthrough; 493 case SOCINFO_VERSION(0, 14): 494 qcom_socinfo->info.num_clusters = __le32_to_cpu(info->num_clusters); 495 qcom_socinfo->info.ncluster_array_offset = __le32_to_cpu(info->ncluster_array_offset); 496 qcom_socinfo->info.num_defective_parts = __le32_to_cpu(info->num_defective_parts); 497 qcom_socinfo->info.ndefective_parts_array_offset = __le32_to_cpu(info->ndefective_parts_array_offset); 498 499 debugfs_create_u32("num_clusters", 0444, qcom_socinfo->dbg_root, 500 &qcom_socinfo->info.num_clusters); 501 debugfs_create_u32("ncluster_array_offset", 0444, qcom_socinfo->dbg_root, 502 &qcom_socinfo->info.ncluster_array_offset); 503 debugfs_create_u32("num_defective_parts", 0444, qcom_socinfo->dbg_root, 504 &qcom_socinfo->info.num_defective_parts); 505 debugfs_create_u32("ndefective_parts_array_offset", 0444, qcom_socinfo->dbg_root, 506 &qcom_socinfo->info.ndefective_parts_array_offset); 507 fallthrough; 508 case SOCINFO_VERSION(0, 13): 509 qcom_socinfo->info.nproduct_id = __le32_to_cpu(info->nproduct_id); 510 511 debugfs_create_u32("nproduct_id", 0444, qcom_socinfo->dbg_root, 512 &qcom_socinfo->info.nproduct_id); 513 DEBUGFS_ADD(info, chip_id); 514 fallthrough; 515 case SOCINFO_VERSION(0, 12): 516 qcom_socinfo->info.chip_family = 517 __le32_to_cpu(info->chip_family); 518 qcom_socinfo->info.raw_device_family = 519 __le32_to_cpu(info->raw_device_family); 520 qcom_socinfo->info.raw_device_num = 521 __le32_to_cpu(info->raw_device_num); 522 523 debugfs_create_x32("chip_family", 0444, qcom_socinfo->dbg_root, 524 &qcom_socinfo->info.chip_family); 525 debugfs_create_x32("raw_device_family", 0444, 526 qcom_socinfo->dbg_root, 527 &qcom_socinfo->info.raw_device_family); 528 debugfs_create_x32("raw_device_number", 0444, 529 qcom_socinfo->dbg_root, 530 &qcom_socinfo->info.raw_device_num); 531 fallthrough; 532 case SOCINFO_VERSION(0, 11): 533 num_pmics = le32_to_cpu(info->num_pmics); 534 pmic_array_offset = le32_to_cpu(info->pmic_array_offset); 535 if (pmic_array_offset + 2 * num_pmics * sizeof(u32) <= info_size) 536 DEBUGFS_ADD(info, pmic_model_array); 537 fallthrough; 538 case SOCINFO_VERSION(0, 10): 539 case SOCINFO_VERSION(0, 9): 540 qcom_socinfo->info.foundry_id = __le32_to_cpu(info->foundry_id); 541 542 debugfs_create_u32("foundry_id", 0444, qcom_socinfo->dbg_root, 543 &qcom_socinfo->info.foundry_id); 544 fallthrough; 545 case SOCINFO_VERSION(0, 8): 546 case SOCINFO_VERSION(0, 7): 547 DEBUGFS_ADD(info, pmic_model); 548 DEBUGFS_ADD(info, pmic_die_rev); 549 fallthrough; 550 case SOCINFO_VERSION(0, 6): 551 qcom_socinfo->info.hw_plat_subtype = 552 __le32_to_cpu(info->hw_plat_subtype); 553 554 debugfs_create_u32("hardware_platform_subtype", 0444, 555 qcom_socinfo->dbg_root, 556 &qcom_socinfo->info.hw_plat_subtype); 557 fallthrough; 558 case SOCINFO_VERSION(0, 5): 559 qcom_socinfo->info.accessory_chip = 560 __le32_to_cpu(info->accessory_chip); 561 562 debugfs_create_u32("accessory_chip", 0444, 563 qcom_socinfo->dbg_root, 564 &qcom_socinfo->info.accessory_chip); 565 fallthrough; 566 case SOCINFO_VERSION(0, 4): 567 qcom_socinfo->info.plat_ver = __le32_to_cpu(info->plat_ver); 568 569 debugfs_create_u32("platform_version", 0444, 570 qcom_socinfo->dbg_root, 571 &qcom_socinfo->info.plat_ver); 572 fallthrough; 573 case SOCINFO_VERSION(0, 3): 574 qcom_socinfo->info.hw_plat = __le32_to_cpu(info->hw_plat); 575 576 debugfs_create_u32("hardware_platform", 0444, 577 qcom_socinfo->dbg_root, 578 &qcom_socinfo->info.hw_plat); 579 fallthrough; 580 case SOCINFO_VERSION(0, 2): 581 qcom_socinfo->info.raw_ver = __le32_to_cpu(info->raw_ver); 582 583 debugfs_create_u32("raw_version", 0444, qcom_socinfo->dbg_root, 584 &qcom_socinfo->info.raw_ver); 585 fallthrough; 586 case SOCINFO_VERSION(0, 1): 587 DEBUGFS_ADD(info, build_id); 588 break; 589 } 590 591 versions = qcom_smem_get(QCOM_SMEM_HOST_ANY, SMEM_IMAGE_VERSION_TABLE, 592 &size); 593 594 for (i = 0; i < ARRAY_SIZE(socinfo_image_names); i++) { 595 if (!socinfo_image_names[i]) 596 continue; 597 598 dentry = debugfs_create_dir(socinfo_image_names[i], 599 qcom_socinfo->dbg_root); 600 debugfs_create_file("name", 0444, dentry, &versions[i], 601 &qcom_image_name_ops); 602 debugfs_create_file("variant", 0444, dentry, &versions[i], 603 &qcom_image_variant_ops); 604 debugfs_create_file("oem", 0444, dentry, &versions[i], 605 &qcom_image_oem_ops); 606 } 607 } 608 609 static void socinfo_debugfs_exit(struct qcom_socinfo *qcom_socinfo) 610 { 611 debugfs_remove_recursive(qcom_socinfo->dbg_root); 612 } 613 #else 614 static void socinfo_debugfs_init(struct qcom_socinfo *qcom_socinfo, 615 struct socinfo *info, size_t info_size) 616 { 617 } 618 static void socinfo_debugfs_exit(struct qcom_socinfo *qcom_socinfo) { } 619 #endif /* CONFIG_DEBUG_FS */ 620 621 static int qcom_socinfo_probe(struct platform_device *pdev) 622 { 623 struct qcom_socinfo *qs; 624 struct socinfo *info; 625 size_t item_size; 626 627 info = qcom_smem_get(QCOM_SMEM_HOST_ANY, SMEM_HW_SW_BUILD_ID, 628 &item_size); 629 if (IS_ERR(info)) { 630 dev_err(&pdev->dev, "Couldn't find socinfo\n"); 631 return PTR_ERR(info); 632 } 633 634 qs = devm_kzalloc(&pdev->dev, sizeof(*qs), GFP_KERNEL); 635 if (!qs) 636 return -ENOMEM; 637 638 qs->attr.family = "Snapdragon"; 639 qs->attr.machine = socinfo_machine(&pdev->dev, 640 le32_to_cpu(info->id)); 641 qs->attr.soc_id = devm_kasprintf(&pdev->dev, GFP_KERNEL, "%u", 642 le32_to_cpu(info->id)); 643 qs->attr.revision = devm_kasprintf(&pdev->dev, GFP_KERNEL, "%u.%u", 644 SOCINFO_MAJOR(le32_to_cpu(info->ver)), 645 SOCINFO_MINOR(le32_to_cpu(info->ver))); 646 if (offsetof(struct socinfo, serial_num) <= item_size) 647 qs->attr.serial_number = devm_kasprintf(&pdev->dev, GFP_KERNEL, 648 "%u", 649 le32_to_cpu(info->serial_num)); 650 651 qs->soc_dev = soc_device_register(&qs->attr); 652 if (IS_ERR(qs->soc_dev)) 653 return PTR_ERR(qs->soc_dev); 654 655 socinfo_debugfs_init(qs, info, item_size); 656 657 /* Feed the soc specific unique data into entropy pool */ 658 add_device_randomness(info, item_size); 659 660 platform_set_drvdata(pdev, qs); 661 662 return 0; 663 } 664 665 static int qcom_socinfo_remove(struct platform_device *pdev) 666 { 667 struct qcom_socinfo *qs = platform_get_drvdata(pdev); 668 669 soc_device_unregister(qs->soc_dev); 670 671 socinfo_debugfs_exit(qs); 672 673 return 0; 674 } 675 676 static struct platform_driver qcom_socinfo_driver = { 677 .probe = qcom_socinfo_probe, 678 .remove = qcom_socinfo_remove, 679 .driver = { 680 .name = "qcom-socinfo", 681 }, 682 }; 683 684 module_platform_driver(qcom_socinfo_driver); 685 686 MODULE_DESCRIPTION("Qualcomm SoCinfo driver"); 687 MODULE_LICENSE("GPL v2"); 688 MODULE_ALIAS("platform:qcom-socinfo"); 689