common.c 2.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108
  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. struct device_node *root;
  30. root = of_find_node_by_path("/");
  31. if (!root)
  32. return false;
  33. return of_match_node(brcmstb_machine_match, root) != NULL;
  34. }
  35. static const struct of_device_id sun_top_ctrl_match[] = {
  36. { .compatible = "brcm,bcm7125-sun-top-ctrl", },
  37. { .compatible = "brcm,bcm7346-sun-top-ctrl", },
  38. { .compatible = "brcm,bcm7358-sun-top-ctrl", },
  39. { .compatible = "brcm,bcm7360-sun-top-ctrl", },
  40. { .compatible = "brcm,bcm7362-sun-top-ctrl", },
  41. { .compatible = "brcm,bcm7420-sun-top-ctrl", },
  42. { .compatible = "brcm,bcm7425-sun-top-ctrl", },
  43. { .compatible = "brcm,bcm7429-sun-top-ctrl", },
  44. { .compatible = "brcm,bcm7435-sun-top-ctrl", },
  45. { .compatible = "brcm,brcmstb-sun-top-ctrl", },
  46. { }
  47. };
  48. static int __init brcmstb_soc_device_init(void)
  49. {
  50. struct soc_device_attribute *soc_dev_attr;
  51. struct soc_device *soc_dev;
  52. struct device_node *sun_top_ctrl;
  53. void __iomem *sun_top_ctrl_base;
  54. int ret = 0;
  55. sun_top_ctrl = of_find_matching_node(NULL, sun_top_ctrl_match);
  56. if (!sun_top_ctrl)
  57. return -ENODEV;
  58. sun_top_ctrl_base = of_iomap(sun_top_ctrl, 0);
  59. if (!sun_top_ctrl_base)
  60. return -ENODEV;
  61. family_id = readl(sun_top_ctrl_base);
  62. product_id = readl(sun_top_ctrl_base + 0x4);
  63. soc_dev_attr = kzalloc(sizeof(*soc_dev_attr), GFP_KERNEL);
  64. if (!soc_dev_attr) {
  65. ret = -ENOMEM;
  66. goto out;
  67. }
  68. soc_dev_attr->family = kasprintf(GFP_KERNEL, "%x",
  69. family_id >> 28 ?
  70. family_id >> 16 : family_id >> 8);
  71. soc_dev_attr->soc_id = kasprintf(GFP_KERNEL, "%x",
  72. product_id >> 28 ?
  73. product_id >> 16 : product_id >> 8);
  74. soc_dev_attr->revision = kasprintf(GFP_KERNEL, "%c%d",
  75. ((product_id & 0xf0) >> 4) + 'A',
  76. product_id & 0xf);
  77. soc_dev = soc_device_register(soc_dev_attr);
  78. if (IS_ERR(soc_dev)) {
  79. kfree(soc_dev_attr->family);
  80. kfree(soc_dev_attr->soc_id);
  81. kfree(soc_dev_attr->revision);
  82. kfree(soc_dev_attr);
  83. ret = -ENODEV;
  84. goto out;
  85. }
  86. return 0;
  87. out:
  88. iounmap(sun_top_ctrl_base);
  89. return ret;
  90. }
  91. arch_initcall(brcmstb_soc_device_init);