punit_atom_debug.c 4.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180
  1. /*
  2. * Intel SOC Punit device state debug driver
  3. * Punit controls power management for North Complex devices (Graphics
  4. * blocks, Image Signal Processing, video processing, display, DSP etc.)
  5. *
  6. * Copyright (c) 2015, Intel Corporation.
  7. *
  8. * This program is free software; you can redistribute it and/or modify it
  9. * under the terms and conditions of the GNU General Public License,
  10. * version 2, as published by the Free Software Foundation.
  11. *
  12. * This program is distributed in the hope it will be useful, but WITHOUT
  13. * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
  14. * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
  15. * more details.
  16. *
  17. */
  18. #include <linux/module.h>
  19. #include <linux/init.h>
  20. #include <linux/device.h>
  21. #include <linux/debugfs.h>
  22. #include <linux/seq_file.h>
  23. #include <linux/io.h>
  24. #include <asm/cpu_device_id.h>
  25. #include <asm/iosf_mbi.h>
  26. /* Power gate status reg */
  27. #define PWRGT_STATUS 0x61
  28. /* Subsystem config/status Video processor */
  29. #define VED_SS_PM0 0x32
  30. /* Subsystem config/status ISP (Image Signal Processor) */
  31. #define ISP_SS_PM0 0x39
  32. /* Subsystem config/status Input/output controller */
  33. #define MIO_SS_PM 0x3B
  34. /* Shift bits for getting status for video, isp and i/o */
  35. #define SSS_SHIFT 24
  36. /* Shift bits for getting status for graphics rendering */
  37. #define RENDER_POS 0
  38. /* Shift bits for getting status for media control */
  39. #define MEDIA_POS 2
  40. /* Shift bits for getting status for Valley View/Baytrail display */
  41. #define VLV_DISPLAY_POS 6
  42. /* Subsystem config/status display for Cherry Trail SOC */
  43. #define CHT_DSP_SSS 0x36
  44. /* Shift bits for getting status for display */
  45. #define CHT_DSP_SSS_POS 16
  46. struct punit_device {
  47. char *name;
  48. int reg;
  49. int sss_pos;
  50. };
  51. static const struct punit_device punit_device_byt[] = {
  52. { "GFX RENDER", PWRGT_STATUS, RENDER_POS },
  53. { "GFX MEDIA", PWRGT_STATUS, MEDIA_POS },
  54. { "DISPLAY", PWRGT_STATUS, VLV_DISPLAY_POS },
  55. { "VED", VED_SS_PM0, SSS_SHIFT },
  56. { "ISP", ISP_SS_PM0, SSS_SHIFT },
  57. { "MIO", MIO_SS_PM, SSS_SHIFT },
  58. { NULL }
  59. };
  60. static const struct punit_device punit_device_cht[] = {
  61. { "GFX RENDER", PWRGT_STATUS, RENDER_POS },
  62. { "GFX MEDIA", PWRGT_STATUS, MEDIA_POS },
  63. { "DISPLAY", CHT_DSP_SSS, CHT_DSP_SSS_POS },
  64. { "VED", VED_SS_PM0, SSS_SHIFT },
  65. { "ISP", ISP_SS_PM0, SSS_SHIFT },
  66. { "MIO", MIO_SS_PM, SSS_SHIFT },
  67. { NULL }
  68. };
  69. static const char * const dstates[] = {"D0", "D0i1", "D0i2", "D0i3"};
  70. static int punit_dev_state_show(struct seq_file *seq_file, void *unused)
  71. {
  72. u32 punit_pwr_status;
  73. struct punit_device *punit_devp = seq_file->private;
  74. int index;
  75. int status;
  76. seq_puts(seq_file, "\n\nPUNIT NORTH COMPLEX DEVICES :\n");
  77. while (punit_devp->name) {
  78. status = iosf_mbi_read(BT_MBI_UNIT_PMC, MBI_REG_READ,
  79. punit_devp->reg, &punit_pwr_status);
  80. if (status) {
  81. seq_printf(seq_file, "%9s : Read Failed\n",
  82. punit_devp->name);
  83. } else {
  84. index = (punit_pwr_status >> punit_devp->sss_pos) & 3;
  85. seq_printf(seq_file, "%9s : %s\n", punit_devp->name,
  86. dstates[index]);
  87. }
  88. punit_devp++;
  89. }
  90. return 0;
  91. }
  92. static int punit_dev_state_open(struct inode *inode, struct file *file)
  93. {
  94. return single_open(file, punit_dev_state_show, inode->i_private);
  95. }
  96. static const struct file_operations punit_dev_state_ops = {
  97. .open = punit_dev_state_open,
  98. .read = seq_read,
  99. .llseek = seq_lseek,
  100. .release = single_release,
  101. };
  102. static struct dentry *punit_dbg_file;
  103. static int punit_dbgfs_register(struct punit_device *punit_device)
  104. {
  105. static struct dentry *dev_state;
  106. punit_dbg_file = debugfs_create_dir("punit_atom", NULL);
  107. if (!punit_dbg_file)
  108. return -ENXIO;
  109. dev_state = debugfs_create_file("dev_power_state", S_IFREG | S_IRUGO,
  110. punit_dbg_file, punit_device,
  111. &punit_dev_state_ops);
  112. if (!dev_state) {
  113. pr_err("punit_dev_state register failed\n");
  114. debugfs_remove(punit_dbg_file);
  115. return -ENXIO;
  116. }
  117. return 0;
  118. }
  119. static void punit_dbgfs_unregister(void)
  120. {
  121. debugfs_remove_recursive(punit_dbg_file);
  122. }
  123. #define ICPU(model, drv_data) \
  124. { X86_VENDOR_INTEL, 6, model, X86_FEATURE_MWAIT,\
  125. (kernel_ulong_t)&drv_data }
  126. static const struct x86_cpu_id intel_punit_cpu_ids[] = {
  127. ICPU(55, punit_device_byt), /* Valleyview, Bay Trail */
  128. ICPU(76, punit_device_cht), /* Braswell, Cherry Trail */
  129. {}
  130. };
  131. MODULE_DEVICE_TABLE(x86cpu, intel_punit_cpu_ids);
  132. static int __init punit_atom_debug_init(void)
  133. {
  134. const struct x86_cpu_id *id;
  135. int ret;
  136. id = x86_match_cpu(intel_punit_cpu_ids);
  137. if (!id)
  138. return -ENODEV;
  139. ret = punit_dbgfs_register((struct punit_device *)id->driver_data);
  140. if (ret < 0)
  141. return ret;
  142. return 0;
  143. }
  144. static void __exit punit_atom_debug_exit(void)
  145. {
  146. punit_dbgfs_unregister();
  147. }
  148. module_init(punit_atom_debug_init);
  149. module_exit(punit_atom_debug_exit);
  150. MODULE_AUTHOR("Kumar P, Mahesh <mahesh.kumar.p@intel.com>");
  151. MODULE_AUTHOR("Srinivas Pandruvada <srinivas.pandruvada@linux.intel.com>");
  152. MODULE_DESCRIPTION("Driver for Punit devices states debugging");
  153. MODULE_LICENSE("GPL v2");