cplbinfo.c 5.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208
  1. /*
  2. * File: arch/blackfin/mach-common/cplbinfo.c
  3. * Based on:
  4. * Author: Sonic Zhang <sonic.zhang@analog.com>
  5. *
  6. * Created: Jan. 2005
  7. * Description: Display CPLB status
  8. *
  9. * Modified:
  10. * Copyright 2004-2006 Analog Devices Inc.
  11. *
  12. * Bugs: Enter bugs at http://blackfin.uclinux.org/
  13. *
  14. * This program is free software; you can redistribute it and/or modify
  15. * it under the terms of the GNU General Public License as published by
  16. * the Free Software Foundation; either version 2 of the License, or
  17. * (at your option) any later version.
  18. *
  19. * This program is distributed in the hope that it will be useful,
  20. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  21. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  22. * GNU General Public License for more details.
  23. *
  24. * You should have received a copy of the GNU General Public License
  25. * along with this program; if not, see the file COPYING, or write
  26. * to the Free Software Foundation, Inc.,
  27. * 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
  28. */
  29. #include <linux/module.h>
  30. #include <linux/kernel.h>
  31. #include <linux/init.h>
  32. #include <linux/proc_fs.h>
  33. #include <linux/uaccess.h>
  34. #include <asm/current.h>
  35. #include <asm/system.h>
  36. #include <asm/cplb.h>
  37. #include <asm/blackfin.h>
  38. #define CPLB_I 1
  39. #define CPLB_D 2
  40. #define SYNC_SYS SSYNC()
  41. #define SYNC_CORE CSYNC()
  42. #define CPLB_BIT_PAGESIZE 0x30000
  43. static int page_size_table[4] = {
  44. 0x00000400, /* 1K */
  45. 0x00001000, /* 4K */
  46. 0x00100000, /* 1M */
  47. 0x00400000 /* 4M */
  48. };
  49. static char page_size_string_table[][4] = { "1K", "4K", "1M", "4M" };
  50. static int cplb_find_entry(unsigned long *cplb_addr,
  51. unsigned long *cplb_data, unsigned long addr,
  52. unsigned long data)
  53. {
  54. int ii;
  55. for (ii = 0; ii < 16; ii++)
  56. if (addr >= cplb_addr[ii] && addr < cplb_addr[ii] +
  57. page_size_table[(cplb_data[ii] & CPLB_BIT_PAGESIZE) >> 16]
  58. && (cplb_data[ii] == data))
  59. return ii;
  60. return -1;
  61. }
  62. static char *cplb_print_entry(char *buf, int type)
  63. {
  64. unsigned long *p_addr = dpdt_table;
  65. unsigned long *p_data = dpdt_table + 1;
  66. unsigned long *p_icount = dpdt_swapcount_table;
  67. unsigned long *p_ocount = dpdt_swapcount_table + 1;
  68. unsigned long *cplb_addr = (unsigned long *)DCPLB_ADDR0;
  69. unsigned long *cplb_data = (unsigned long *)DCPLB_DATA0;
  70. int entry = 0, used_cplb = 0;
  71. if (type == CPLB_I) {
  72. buf += sprintf(buf, "Instruction CPLB entry:\n");
  73. p_addr = ipdt_table;
  74. p_data = ipdt_table + 1;
  75. p_icount = ipdt_swapcount_table;
  76. p_ocount = ipdt_swapcount_table + 1;
  77. cplb_addr = (unsigned long *)ICPLB_ADDR0;
  78. cplb_data = (unsigned long *)ICPLB_DATA0;
  79. } else
  80. buf += sprintf(buf, "Data CPLB entry:\n");
  81. buf += sprintf(buf, "Address\t\tData\tSize\tValid\tLocked\tSwapin\tiCount\toCount\n");
  82. while (*p_addr != 0xffffffff) {
  83. entry = cplb_find_entry(cplb_addr, cplb_data, *p_addr, *p_data);
  84. if (entry >= 0)
  85. used_cplb |= 1 << entry;
  86. buf +=
  87. sprintf(buf,
  88. "0x%08lx\t0x%05lx\t%s\t%c\t%c\t%2d\t%ld\t%ld\n",
  89. *p_addr, *p_data,
  90. page_size_string_table[(*p_data & 0x30000) >> 16],
  91. (*p_data & CPLB_VALID) ? 'Y' : 'N',
  92. (*p_data & CPLB_LOCK) ? 'Y' : 'N', entry, *p_icount,
  93. *p_ocount);
  94. p_addr += 2;
  95. p_data += 2;
  96. p_icount += 2;
  97. p_ocount += 2;
  98. }
  99. if (used_cplb != 0xffff) {
  100. buf += sprintf(buf, "Unused/mismatched CPLBs:\n");
  101. for (entry = 0; entry < 16; entry++)
  102. if (0 == ((1 << entry) & used_cplb)) {
  103. int flags = cplb_data[entry];
  104. buf +=
  105. sprintf(buf,
  106. "%2d: 0x%08lx\t0x%05x\t%s\t%c\t%c\n",
  107. entry, cplb_addr[entry], flags,
  108. page_size_string_table[(flags &
  109. 0x30000) >>
  110. 16],
  111. (flags & CPLB_VALID) ? 'Y' : 'N',
  112. (flags & CPLB_LOCK) ? 'Y' : 'N');
  113. }
  114. }
  115. buf += sprintf(buf, "\n");
  116. return buf;
  117. }
  118. static int cplbinfo_proc_output(char *buf)
  119. {
  120. char *p;
  121. p = buf;
  122. p += sprintf(p, "------------------ CPLB Information ------------------\n\n");
  123. if (bfin_read_IMEM_CONTROL() & ENICPLB)
  124. p = cplb_print_entry(p, CPLB_I);
  125. else
  126. p += sprintf(p, "Instruction CPLB is disabled.\n\n");
  127. if (bfin_read_DMEM_CONTROL() & ENDCPLB)
  128. p = cplb_print_entry(p, CPLB_D);
  129. else
  130. p += sprintf(p, "Data CPLB is disabled.\n");
  131. return p - buf;
  132. }
  133. static int cplbinfo_read_proc(char *page, char **start, off_t off,
  134. int count, int *eof, void *data)
  135. {
  136. int len;
  137. len = cplbinfo_proc_output(page);
  138. if (len <= off + count)
  139. *eof = 1;
  140. *start = page + off;
  141. len -= off;
  142. if (len > count)
  143. len = count;
  144. if (len < 0)
  145. len = 0;
  146. return len;
  147. }
  148. static int cplbinfo_write_proc(struct file *file, const char __user *buffer,
  149. unsigned long count, void *data)
  150. {
  151. printk(KERN_INFO "Reset the CPLB swap in/out counts.\n");
  152. memset(ipdt_swapcount_table, 0, MAX_SWITCH_I_CPLBS * sizeof(unsigned long));
  153. memset(dpdt_swapcount_table, 0, MAX_SWITCH_D_CPLBS * sizeof(unsigned long));
  154. return count;
  155. }
  156. static int __init cplbinfo_init(void)
  157. {
  158. struct proc_dir_entry *entry;
  159. entry = create_proc_entry("cplbinfo", 0, NULL);
  160. if (!entry)
  161. return -ENOMEM;
  162. entry->read_proc = cplbinfo_read_proc;
  163. entry->write_proc = cplbinfo_write_proc;
  164. entry->data = NULL;
  165. return 0;
  166. }
  167. static void __exit cplbinfo_exit(void)
  168. {
  169. remove_proc_entry("cplbinfo", NULL);
  170. }
  171. module_init(cplbinfo_init);
  172. module_exit(cplbinfo_exit);