punit_atom_debug.c 4.9 KB

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