punit_atom_debug.c 4.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183
  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. /* Side band Interface port */
  27. #define PUNIT_PORT 0x04
  28. /* Power gate status reg */
  29. #define PWRGT_STATUS 0x61
  30. /* Subsystem config/status Video processor */
  31. #define VED_SS_PM0 0x32
  32. /* Subsystem config/status ISP (Image Signal Processor) */
  33. #define ISP_SS_PM0 0x39
  34. /* Subsystem config/status Input/output controller */
  35. #define MIO_SS_PM 0x3B
  36. /* Shift bits for getting status for video, isp and i/o */
  37. #define SSS_SHIFT 24
  38. /* Shift bits for getting status for graphics rendering */
  39. #define RENDER_POS 0
  40. /* Shift bits for getting status for media control */
  41. #define MEDIA_POS 2
  42. /* Shift bits for getting status for Valley View/Baytrail display */
  43. #define VLV_DISPLAY_POS 6
  44. /* Subsystem config/status display for Cherry Trail SOC */
  45. #define CHT_DSP_SSS 0x36
  46. /* Shift bits for getting status for display */
  47. #define CHT_DSP_SSS_POS 16
  48. struct punit_device {
  49. char *name;
  50. int reg;
  51. int sss_pos;
  52. };
  53. static const struct punit_device punit_device_byt[] = {
  54. { "GFX RENDER", PWRGT_STATUS, RENDER_POS },
  55. { "GFX MEDIA", PWRGT_STATUS, MEDIA_POS },
  56. { "DISPLAY", PWRGT_STATUS, VLV_DISPLAY_POS },
  57. { "VED", VED_SS_PM0, SSS_SHIFT },
  58. { "ISP", ISP_SS_PM0, SSS_SHIFT },
  59. { "MIO", MIO_SS_PM, SSS_SHIFT },
  60. { NULL }
  61. };
  62. static const struct punit_device punit_device_cht[] = {
  63. { "GFX RENDER", PWRGT_STATUS, RENDER_POS },
  64. { "GFX MEDIA", PWRGT_STATUS, MEDIA_POS },
  65. { "DISPLAY", CHT_DSP_SSS, CHT_DSP_SSS_POS },
  66. { "VED", VED_SS_PM0, SSS_SHIFT },
  67. { "ISP", ISP_SS_PM0, SSS_SHIFT },
  68. { "MIO", MIO_SS_PM, SSS_SHIFT },
  69. { NULL }
  70. };
  71. static const char * const dstates[] = {"D0", "D0i1", "D0i2", "D0i3"};
  72. static int punit_dev_state_show(struct seq_file *seq_file, void *unused)
  73. {
  74. u32 punit_pwr_status;
  75. struct punit_device *punit_devp = seq_file->private;
  76. int index;
  77. int status;
  78. seq_puts(seq_file, "\n\nPUNIT NORTH COMPLEX DEVICES :\n");
  79. while (punit_devp->name) {
  80. status = iosf_mbi_read(PUNIT_PORT, BT_MBI_PMC_READ,
  81. punit_devp->reg,
  82. &punit_pwr_status);
  83. if (status) {
  84. seq_printf(seq_file, "%9s : Read Failed\n",
  85. punit_devp->name);
  86. } else {
  87. index = (punit_pwr_status >> punit_devp->sss_pos) & 3;
  88. seq_printf(seq_file, "%9s : %s\n", punit_devp->name,
  89. dstates[index]);
  90. }
  91. punit_devp++;
  92. }
  93. return 0;
  94. }
  95. static int punit_dev_state_open(struct inode *inode, struct file *file)
  96. {
  97. return single_open(file, punit_dev_state_show, inode->i_private);
  98. }
  99. static const struct file_operations punit_dev_state_ops = {
  100. .open = punit_dev_state_open,
  101. .read = seq_read,
  102. .llseek = seq_lseek,
  103. .release = single_release,
  104. };
  105. static struct dentry *punit_dbg_file;
  106. static int punit_dbgfs_register(struct punit_device *punit_device)
  107. {
  108. static struct dentry *dev_state;
  109. punit_dbg_file = debugfs_create_dir("punit_atom", NULL);
  110. if (!punit_dbg_file)
  111. return -ENXIO;
  112. dev_state = debugfs_create_file("dev_power_state", S_IFREG | S_IRUGO,
  113. punit_dbg_file, punit_device,
  114. &punit_dev_state_ops);
  115. if (!dev_state) {
  116. pr_err("punit_dev_state register failed\n");
  117. debugfs_remove(punit_dbg_file);
  118. return -ENXIO;
  119. }
  120. return 0;
  121. }
  122. static void punit_dbgfs_unregister(void)
  123. {
  124. debugfs_remove_recursive(punit_dbg_file);
  125. }
  126. #define ICPU(model, drv_data) \
  127. { X86_VENDOR_INTEL, 6, model, X86_FEATURE_MWAIT,\
  128. (kernel_ulong_t)&drv_data }
  129. static const struct x86_cpu_id intel_punit_cpu_ids[] = {
  130. ICPU(55, punit_device_byt), /* Valleyview, Bay Trail */
  131. ICPU(76, punit_device_cht), /* Braswell, Cherry Trail */
  132. {}
  133. };
  134. MODULE_DEVICE_TABLE(x86cpu, intel_punit_cpu_ids);
  135. static int __init punit_atom_debug_init(void)
  136. {
  137. const struct x86_cpu_id *id;
  138. int ret;
  139. id = x86_match_cpu(intel_punit_cpu_ids);
  140. if (!id)
  141. return -ENODEV;
  142. ret = punit_dbgfs_register((struct punit_device *)id->driver_data);
  143. if (ret < 0)
  144. return ret;
  145. return 0;
  146. }
  147. static void __exit punit_atom_debug_exit(void)
  148. {
  149. punit_dbgfs_unregister();
  150. }
  151. module_init(punit_atom_debug_init);
  152. module_exit(punit_atom_debug_exit);
  153. MODULE_AUTHOR("Kumar P, Mahesh <mahesh.kumar.p@intel.com>");
  154. MODULE_AUTHOR("Srinivas Pandruvada <srinivas.pandruvada@linux.intel.com>");
  155. MODULE_DESCRIPTION("Driver for Punit devices states debugging");
  156. MODULE_LICENSE("GPL v2");