common.c 2.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100
  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,brcmstb-sun-top-ctrl", },
  37. { }
  38. };
  39. static int __init brcmstb_soc_device_init(void)
  40. {
  41. struct soc_device_attribute *soc_dev_attr;
  42. struct soc_device *soc_dev;
  43. struct device_node *sun_top_ctrl;
  44. void __iomem *sun_top_ctrl_base;
  45. int ret = 0;
  46. sun_top_ctrl = of_find_matching_node(NULL, sun_top_ctrl_match);
  47. if (!sun_top_ctrl)
  48. return -ENODEV;
  49. sun_top_ctrl_base = of_iomap(sun_top_ctrl, 0);
  50. if (!sun_top_ctrl_base)
  51. return -ENODEV;
  52. family_id = readl(sun_top_ctrl_base);
  53. product_id = readl(sun_top_ctrl_base + 0x4);
  54. soc_dev_attr = kzalloc(sizeof(*soc_dev_attr), GFP_KERNEL);
  55. if (!soc_dev_attr) {
  56. ret = -ENOMEM;
  57. goto out;
  58. }
  59. soc_dev_attr->family = kasprintf(GFP_KERNEL, "%x",
  60. family_id >> 28 ?
  61. family_id >> 16 : family_id >> 8);
  62. soc_dev_attr->soc_id = kasprintf(GFP_KERNEL, "%x",
  63. product_id >> 28 ?
  64. product_id >> 16 : product_id >> 8);
  65. soc_dev_attr->revision = kasprintf(GFP_KERNEL, "%c%d",
  66. ((product_id & 0xf0) >> 4) + 'A',
  67. product_id & 0xf);
  68. soc_dev = soc_device_register(soc_dev_attr);
  69. if (IS_ERR(soc_dev)) {
  70. kfree(soc_dev_attr->family);
  71. kfree(soc_dev_attr->soc_id);
  72. kfree(soc_dev_attr->revision);
  73. kfree(soc_dev_attr);
  74. ret = -ENODEV;
  75. goto out;
  76. }
  77. return 0;
  78. out:
  79. iounmap(sun_top_ctrl_base);
  80. return ret;
  81. }
  82. arch_initcall(brcmstb_soc_device_init);