cplbinfo.c 4.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195
  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/cplbinit.h>
  35. #include <asm/blackfin.h>
  36. #define CPLB_I 1
  37. #define CPLB_D 2
  38. #define SYNC_SYS SSYNC()
  39. #define SYNC_CORE CSYNC()
  40. #define CPLB_BIT_PAGESIZE 0x30000
  41. static int page_size_table[4] = {
  42. 0x00000400, /* 1K */
  43. 0x00001000, /* 4K */
  44. 0x00100000, /* 1M */
  45. 0x00400000 /* 4M */
  46. };
  47. static char page_size_string_table[][4] = { "1K", "4K", "1M", "4M" };
  48. static int cplb_find_entry(unsigned long *cplb_addr,
  49. unsigned long *cplb_data, unsigned long addr,
  50. unsigned long data)
  51. {
  52. int ii;
  53. for (ii = 0; ii < 16; ii++)
  54. if (addr >= cplb_addr[ii] && addr < cplb_addr[ii] +
  55. page_size_table[(cplb_data[ii] & CPLB_BIT_PAGESIZE) >> 16]
  56. && (cplb_data[ii] == data))
  57. return ii;
  58. return -1;
  59. }
  60. static char *cplb_print_entry(char *buf, int type)
  61. {
  62. unsigned long *p_addr = dpdt_table;
  63. unsigned long *p_data = dpdt_table + 1;
  64. unsigned long *p_icount = dpdt_swapcount_table;
  65. unsigned long *p_ocount = dpdt_swapcount_table + 1;
  66. unsigned long *cplb_addr = (unsigned long *)DCPLB_ADDR0;
  67. unsigned long *cplb_data = (unsigned long *)DCPLB_DATA0;
  68. int entry = 0, used_cplb = 0;
  69. if (type == CPLB_I) {
  70. buf += sprintf(buf, "Instruction CPLB entry:\n");
  71. p_addr = ipdt_table;
  72. p_data = ipdt_table + 1;
  73. p_icount = ipdt_swapcount_table;
  74. p_ocount = ipdt_swapcount_table + 1;
  75. cplb_addr = (unsigned long *)ICPLB_ADDR0;
  76. cplb_data = (unsigned long *)ICPLB_DATA0;
  77. } else
  78. buf += sprintf(buf, "Data CPLB entry:\n");
  79. buf += sprintf(buf, "Address\t\tData\tSize\tValid\tLocked\tSwapin\tiCount\toCount\n");
  80. while (*p_addr != 0xffffffff) {
  81. entry = cplb_find_entry(cplb_addr, cplb_data, *p_addr, *p_data);
  82. if (entry >= 0)
  83. used_cplb |= 1 << entry;
  84. buf +=
  85. sprintf(buf,
  86. "0x%08lx\t0x%05lx\t%s\t%c\t%c\t%2d\t%ld\t%ld\n",
  87. *p_addr, *p_data,
  88. page_size_string_table[(*p_data & 0x30000) >> 16],
  89. (*p_data & CPLB_VALID) ? 'Y' : 'N',
  90. (*p_data & CPLB_LOCK) ? 'Y' : 'N', entry, *p_icount,
  91. *p_ocount);
  92. p_addr += 2;
  93. p_data += 2;
  94. p_icount += 2;
  95. p_ocount += 2;
  96. }
  97. if (used_cplb != 0xffff) {
  98. buf += sprintf(buf, "Unused/mismatched CPLBs:\n");
  99. for (entry = 0; entry < 16; entry++)
  100. if (0 == ((1 << entry) & used_cplb)) {
  101. int flags = cplb_data[entry];
  102. buf +=
  103. sprintf(buf,
  104. "%2d: 0x%08lx\t0x%05x\t%s\t%c\t%c\n",
  105. entry, cplb_addr[entry], flags,
  106. page_size_string_table[(flags &
  107. 0x30000) >>
  108. 16],
  109. (flags & CPLB_VALID) ? 'Y' : 'N',
  110. (flags & CPLB_LOCK) ? 'Y' : 'N');
  111. }
  112. }
  113. buf += sprintf(buf, "\n");
  114. return buf;
  115. }
  116. static int cplbinfo_proc_output(char *buf)
  117. {
  118. char *p;
  119. p = buf;
  120. p += sprintf(p, "------------------ CPLB Information ------------------\n\n");
  121. if (bfin_read_IMEM_CONTROL() & ENICPLB)
  122. p = cplb_print_entry(p, CPLB_I);
  123. else
  124. p += sprintf(p, "Instruction CPLB is disabled.\n\n");
  125. if (bfin_read_DMEM_CONTROL() & ENDCPLB)
  126. p = cplb_print_entry(p, CPLB_D);
  127. else
  128. p += sprintf(p, "Data CPLB is disabled.\n");
  129. return p - buf;
  130. }
  131. static int cplbinfo_read_proc(char *page, char **start, off_t off,
  132. int count, int *eof, void *data)
  133. {
  134. int len;
  135. len = cplbinfo_proc_output(page);
  136. if (len <= off + count)
  137. *eof = 1;
  138. *start = page + off;
  139. len -= off;
  140. if (len > count)
  141. len = count;
  142. if (len < 0)
  143. len = 0;
  144. return len;
  145. }
  146. static int __init cplbinfo_init(void)
  147. {
  148. struct proc_dir_entry *entry;
  149. entry = create_proc_entry("cplbinfo", 0, NULL);
  150. if (!entry)
  151. return -ENOMEM;
  152. entry->read_proc = cplbinfo_read_proc;
  153. entry->data = NULL;
  154. return 0;
  155. }
  156. static void __exit cplbinfo_exit(void)
  157. {
  158. remove_proc_entry("cplbinfo", NULL);
  159. }
  160. module_init(cplbinfo_init);
  161. module_exit(cplbinfo_exit);