pa7300lc.c
上传用户:lgb322
上传日期:2013-02-24
资源大小:30529k
文件大小:1k
源码类别:

嵌入式Linux

开发平台:

Unix_Linux

  1. /*
  2.  *   linux/arch/parisc/kernel/pa7300lc.c
  3.  * - PA7300LC-specific functions
  4.  *
  5.  *   Copyright (C) 2000 Philipp Rumpf */
  6. #include <asm/gsc.h>
  7. #include <asm/ptrace.h>
  8. #include <asm/machdep.h>
  9. #include <linux/smp.h>
  10. #include <linux/kernel.h>
  11. /* CPU register indices */
  12. #define MIOC_STATUS 0xf040
  13. #define MIOC_CONTROL 0xf080
  14. #define MDERRADD 0xf0e0
  15. #define DMAERR 0xf0e8
  16. #define DIOERR 0xf0ec
  17. #define HIDMAMEM 0xf0f4
  18. /* read CPU Diagnose register index */
  19. static u32 diag_read(int index)
  20. {
  21. return 0;
  22. }
  23. /* this returns the HPA of the CPU it was called on */
  24. static u32 cpu_hpa(void)
  25. {
  26. return 0xfffb0000;
  27. }
  28. static void pa7300lc_lpmc(int code, struct pt_regs *regs)
  29. {
  30. u32 hpa;
  31. printk(KERN_WARNING "LPMC on CPU %dn", smp_processor_id());
  32. show_regs(regs);
  33. hpa = cpu_hpa();
  34. printk(KERN_WARNING
  35. "MIOC_CONTROL %08xn" "MIOC_STATUS  %08xn"
  36. "MDERRADD     %08xn" "DMAERR       %08xn"
  37. "DIOERR       %08xn" "HIDMAMEM     %08xn",
  38. gsc_readl(hpa+MIOC_CONTROL), gsc_readl(hpa+MIOC_STATUS),
  39. gsc_readl(hpa+MDERRADD), gsc_readl(hpa+DMAERR),
  40. gsc_readl(hpa+DIOERR), gsc_readl(hpa+HIDMAMEM));
  41. }
  42. void pa7300lc_init(void)
  43. {
  44. cpu_lpmc = pa7300lc_lpmc;
  45. }