common.c 3.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144
  1. /*
  2. * Copyright © 2014 NVIDIA Corporation
  3. * Copyright © 2015 Broadcom Corporation
  4. *
  5. * This program is free software; you can redistribute it and/or modify
  6. * it under the terms of the GNU General Public License version 2 as
  7. * published by the Free Software Foundation.
  8. *
  9. * This program is distributed in the hope that it will be useful,
  10. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  11. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  12. * GNU General Public License for more details.
  13. */
  14. #include <linux/io.h>
  15. #include <linux/of.h>
  16. #include <linux/of_address.h>
  17. #include <linux/slab.h>
  18. #include <linux/soc/brcmstb/brcmstb.h>
  19. #include <linux/sys_soc.h>
  20. #include <soc/brcmstb/common.h>
  21. static u32 family_id;
  22. static u32 product_id;
  23. static const struct of_device_id brcmstb_machine_match[] = {
  24. { .compatible = "brcm,brcmstb", },
  25. { }
  26. };
  27. bool soc_is_brcmstb(void)
  28. {
  29. const struct of_device_id *match;
  30. struct device_node *root;
  31. root = of_find_node_by_path("/");
  32. if (!root)
  33. return false;
  34. match = of_match_node(brcmstb_machine_match, root);
  35. of_node_put(root);
  36. return match != NULL;
  37. }
  38. u32 brcmstb_get_family_id(void)
  39. {
  40. return family_id;
  41. }
  42. EXPORT_SYMBOL(brcmstb_get_family_id);
  43. u32 brcmstb_get_product_id(void)
  44. {
  45. return product_id;
  46. }
  47. EXPORT_SYMBOL(brcmstb_get_product_id);
  48. static const struct of_device_id sun_top_ctrl_match[] = {
  49. { .compatible = "brcm,bcm7125-sun-top-ctrl", },
  50. { .compatible = "brcm,bcm7346-sun-top-ctrl", },
  51. { .compatible = "brcm,bcm7358-sun-top-ctrl", },
  52. { .compatible = "brcm,bcm7360-sun-top-ctrl", },
  53. { .compatible = "brcm,bcm7362-sun-top-ctrl", },
  54. { .compatible = "brcm,bcm7420-sun-top-ctrl", },
  55. { .compatible = "brcm,bcm7425-sun-top-ctrl", },
  56. { .compatible = "brcm,bcm7429-sun-top-ctrl", },
  57. { .compatible = "brcm,bcm7435-sun-top-ctrl", },
  58. { .compatible = "brcm,brcmstb-sun-top-ctrl", },
  59. { }
  60. };
  61. static int __init brcmstb_soc_device_early_init(void)
  62. {
  63. struct device_node *sun_top_ctrl;
  64. void __iomem *sun_top_ctrl_base;
  65. int ret = 0;
  66. /* We could be on a multi-platform kernel, don't make this fatal but
  67. * bail out early
  68. */
  69. sun_top_ctrl = of_find_matching_node(NULL, sun_top_ctrl_match);
  70. if (!sun_top_ctrl)
  71. return ret;
  72. sun_top_ctrl_base = of_iomap(sun_top_ctrl, 0);
  73. if (!sun_top_ctrl_base) {
  74. ret = -ENODEV;
  75. goto out;
  76. }
  77. family_id = readl(sun_top_ctrl_base);
  78. product_id = readl(sun_top_ctrl_base + 0x4);
  79. iounmap(sun_top_ctrl_base);
  80. out:
  81. of_node_put(sun_top_ctrl);
  82. return ret;
  83. }
  84. early_initcall(brcmstb_soc_device_early_init);
  85. static int __init brcmstb_soc_device_init(void)
  86. {
  87. struct soc_device_attribute *soc_dev_attr;
  88. struct device_node *sun_top_ctrl;
  89. struct soc_device *soc_dev;
  90. int ret = 0;
  91. /* We could be on a multi-platform kernel, don't make this fatal but
  92. * bail out early
  93. */
  94. sun_top_ctrl = of_find_matching_node(NULL, sun_top_ctrl_match);
  95. if (!sun_top_ctrl)
  96. return ret;
  97. soc_dev_attr = kzalloc(sizeof(*soc_dev_attr), GFP_KERNEL);
  98. if (!soc_dev_attr) {
  99. ret = -ENOMEM;
  100. goto out;
  101. }
  102. soc_dev_attr->family = kasprintf(GFP_KERNEL, "%x",
  103. family_id >> 28 ?
  104. family_id >> 16 : family_id >> 8);
  105. soc_dev_attr->soc_id = kasprintf(GFP_KERNEL, "%x",
  106. product_id >> 28 ?
  107. product_id >> 16 : product_id >> 8);
  108. soc_dev_attr->revision = kasprintf(GFP_KERNEL, "%c%d",
  109. ((product_id & 0xf0) >> 4) + 'A',
  110. product_id & 0xf);
  111. soc_dev = soc_device_register(soc_dev_attr);
  112. if (IS_ERR(soc_dev)) {
  113. kfree(soc_dev_attr->family);
  114. kfree(soc_dev_attr->soc_id);
  115. kfree(soc_dev_attr->revision);
  116. kfree(soc_dev_attr);
  117. ret = -ENOMEM;
  118. }
  119. out:
  120. of_node_put(sun_top_ctrl);
  121. return ret;
  122. }
  123. arch_initcall(brcmstb_soc_device_init);