meson-gx-socinfo.c 4.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187
  1. /*
  2. * Copyright (c) 2017 BayLibre, SAS
  3. * Author: Neil Armstrong <narmstrong@baylibre.com>
  4. *
  5. * SPDX-License-Identifier: GPL-2.0+
  6. */
  7. #include <linux/io.h>
  8. #include <linux/of.h>
  9. #include <linux/of_address.h>
  10. #include <linux/of_platform.h>
  11. #include <linux/platform_device.h>
  12. #include <linux/slab.h>
  13. #include <linux/sys_soc.h>
  14. #include <linux/bitfield.h>
  15. #include <linux/regmap.h>
  16. #include <linux/mfd/syscon.h>
  17. #define AO_SEC_SD_CFG8 0xe0
  18. #define AO_SEC_SOCINFO_OFFSET AO_SEC_SD_CFG8
  19. #define SOCINFO_MAJOR GENMASK(31, 24)
  20. #define SOCINFO_PACK GENMASK(23, 16)
  21. #define SOCINFO_MINOR GENMASK(15, 8)
  22. #define SOCINFO_MISC GENMASK(7, 0)
  23. static const struct meson_gx_soc_id {
  24. const char *name;
  25. unsigned int id;
  26. } soc_ids[] = {
  27. { "GXBB", 0x1f },
  28. { "GXTVBB", 0x20 },
  29. { "GXL", 0x21 },
  30. { "GXM", 0x22 },
  31. { "TXL", 0x23 },
  32. { "TXLX", 0x24 },
  33. { "AXG", 0x25 },
  34. { "GXLX", 0x26 },
  35. { "TXHD", 0x27 },
  36. };
  37. static const struct meson_gx_package_id {
  38. const char *name;
  39. unsigned int major_id;
  40. unsigned int pack_id;
  41. } soc_packages[] = {
  42. { "S905", 0x1f, 0 },
  43. { "S905H", 0x1f, 0x13 },
  44. { "S905M", 0x1f, 0x20 },
  45. { "S905D", 0x21, 0 },
  46. { "S905X", 0x21, 0x80 },
  47. { "S905W", 0x21, 0xa0 },
  48. { "S905L", 0x21, 0xc0 },
  49. { "S905M2", 0x21, 0xe0 },
  50. { "S912", 0x22, 0 },
  51. { "962X", 0x24, 0x10 },
  52. { "962E", 0x24, 0x20 },
  53. { "A113X", 0x25, 0x37 },
  54. { "A113D", 0x25, 0x22 },
  55. };
  56. static inline unsigned int socinfo_to_major(u32 socinfo)
  57. {
  58. return FIELD_GET(SOCINFO_MAJOR, socinfo);
  59. }
  60. static inline unsigned int socinfo_to_minor(u32 socinfo)
  61. {
  62. return FIELD_GET(SOCINFO_MINOR, socinfo);
  63. }
  64. static inline unsigned int socinfo_to_pack(u32 socinfo)
  65. {
  66. return FIELD_GET(SOCINFO_PACK, socinfo);
  67. }
  68. static inline unsigned int socinfo_to_misc(u32 socinfo)
  69. {
  70. return FIELD_GET(SOCINFO_MISC, socinfo);
  71. }
  72. static const char *socinfo_to_package_id(u32 socinfo)
  73. {
  74. unsigned int pack = socinfo_to_pack(socinfo) & 0xf0;
  75. unsigned int major = socinfo_to_major(socinfo);
  76. int i;
  77. for (i = 0 ; i < ARRAY_SIZE(soc_packages) ; ++i) {
  78. if (soc_packages[i].major_id == major &&
  79. soc_packages[i].pack_id == pack)
  80. return soc_packages[i].name;
  81. }
  82. return "Unknown";
  83. }
  84. static const char *socinfo_to_soc_id(u32 socinfo)
  85. {
  86. unsigned int id = socinfo_to_major(socinfo);
  87. int i;
  88. for (i = 0 ; i < ARRAY_SIZE(soc_ids) ; ++i) {
  89. if (soc_ids[i].id == id)
  90. return soc_ids[i].name;
  91. }
  92. return "Unknown";
  93. }
  94. static int __init meson_gx_socinfo_init(void)
  95. {
  96. struct soc_device_attribute *soc_dev_attr;
  97. struct soc_device *soc_dev;
  98. struct device_node *np;
  99. struct regmap *regmap;
  100. unsigned int socinfo;
  101. struct device *dev;
  102. int ret;
  103. /* look up for chipid node */
  104. np = of_find_compatible_node(NULL, NULL, "amlogic,meson-gx-ao-secure");
  105. if (!np)
  106. return -ENODEV;
  107. /* check if interface is enabled */
  108. if (!of_device_is_available(np))
  109. return -ENODEV;
  110. /* check if chip-id is available */
  111. if (!of_property_read_bool(np, "amlogic,has-chip-id"))
  112. return -ENODEV;
  113. /* node should be a syscon */
  114. regmap = syscon_node_to_regmap(np);
  115. of_node_put(np);
  116. if (IS_ERR(regmap)) {
  117. pr_err("%s: failed to get regmap\n", __func__);
  118. return -ENODEV;
  119. }
  120. ret = regmap_read(regmap, AO_SEC_SOCINFO_OFFSET, &socinfo);
  121. if (ret < 0)
  122. return ret;
  123. if (!socinfo) {
  124. pr_err("%s: invalid chipid value\n", __func__);
  125. return -EINVAL;
  126. }
  127. soc_dev_attr = kzalloc(sizeof(*soc_dev_attr), GFP_KERNEL);
  128. if (!soc_dev_attr)
  129. return -ENODEV;
  130. soc_dev_attr->family = "Amlogic Meson";
  131. np = of_find_node_by_path("/");
  132. of_property_read_string(np, "model", &soc_dev_attr->machine);
  133. of_node_put(np);
  134. soc_dev_attr->revision = kasprintf(GFP_KERNEL, "%x:%x - %x:%x",
  135. socinfo_to_major(socinfo),
  136. socinfo_to_minor(socinfo),
  137. socinfo_to_pack(socinfo),
  138. socinfo_to_misc(socinfo));
  139. soc_dev_attr->soc_id = kasprintf(GFP_KERNEL, "%s (%s)",
  140. socinfo_to_soc_id(socinfo),
  141. socinfo_to_package_id(socinfo));
  142. soc_dev = soc_device_register(soc_dev_attr);
  143. if (IS_ERR(soc_dev)) {
  144. kfree(soc_dev_attr->revision);
  145. kfree_const(soc_dev_attr->soc_id);
  146. kfree(soc_dev_attr);
  147. return PTR_ERR(soc_dev);
  148. }
  149. dev = soc_device_to_device(soc_dev);
  150. dev_info(dev, "Amlogic Meson %s Revision %x:%x (%x:%x) Detected\n",
  151. soc_dev_attr->soc_id,
  152. socinfo_to_major(socinfo),
  153. socinfo_to_minor(socinfo),
  154. socinfo_to_pack(socinfo),
  155. socinfo_to_misc(socinfo));
  156. return 0;
  157. }
  158. device_initcall(meson_gx_socinfo_init);