ip22-hpc.c
上传用户:jlfgdled
上传日期:2013-04-10
资源大小:33168k
文件大小:2k
源码类别:

Linux/Unix编程

开发平台:

Unix_Linux

  1. /*
  2.  * ip22-hpc.c: Routines for generic manipulation of the HPC controllers.
  3.  *
  4.  * Copyright (C) 1996 David S. Miller (dm@engr.sgi.com)
  5.  * Copyright (C) 1998 Ralf Baechle
  6.  */
  7. #include <linux/init.h>
  8. #include <linux/types.h>
  9. #include <asm/addrspace.h>
  10. #include <asm/sgi/sgihpc.h>
  11. #include <asm/sgi/sgint23.h>
  12. #include <asm/sgialib.h>
  13. #include <asm/bootinfo.h>
  14. #if 0
  15. #define HPC_DEBUG(args...) printk(args)
  16. #else
  17. #define HPC_DEBUG(args...)
  18. #endif
  19. struct hpc3_regs *hpc3c0, *hpc3c1;
  20. struct hpc3_miscregs *hpc3mregs;
  21. /* We need software copies of these because they are write only. */
  22. u32 sgi_hpc_write1, sgi_hpc_write2;
  23. /* Machine specific identifier knobs. */
  24. int sgi_has_ioc2 = 0;
  25. int sgi_guiness = 0;
  26. int sgi_boardid;
  27. extern char *system_type;
  28. void __init sgihpc_init(void)
  29. {
  30. unsigned int sid, crev, brev;
  31. hpc3c0 = (struct hpc3_regs *) (KSEG1 + HPC3_CHIP0_PBASE);
  32. hpc3c1 = (struct hpc3_regs *) (KSEG1 + HPC3_CHIP1_PBASE);
  33. hpc3mregs = (struct hpc3_miscregs *) (KSEG1 + HPC3_MREGS_PBASE);
  34. sid = hpc3mregs->sysid;
  35. sid &= 0xff;
  36. crev = (sid & 0xe0) >> 5;
  37. brev = (sid & 0x1e) >> 1;
  38. HPC_DEBUG("sgihpc_init: crev<%2x> brev<%2x>n", crev, brev);
  39. HPC_DEBUG("sgihpc_init: ");
  40. /* This test works now thanks to William J. Earl */
  41. if ((sid & 1) == 0 ) {
  42. HPC_DEBUG("GUINESS ");
  43. sgi_guiness = 1;
  44. mips_machtype = MACH_SGI_INDY;
  45. system_type =  "SGI Indy";
  46. } else {
  47. HPC_DEBUG("FULLHOUSE ");
  48. mips_machtype = MACH_SGI_INDIGO2;
  49. sgi_guiness = 0;
  50. system_type = "SGI Indigo2";
  51. }
  52. sgi_boardid = brev;
  53. HPC_DEBUG("sgi_boardid<%d> ", sgi_boardid);
  54. if(crev == 1) {
  55. if((sid & 1) || (brev >= 2)) {
  56. HPC_DEBUG("IOC2 ");
  57. sgi_has_ioc2 = 1;
  58. } else {
  59. HPC_DEBUG("IOC1 revision 1 ");
  60. }
  61. } else {
  62. HPC_DEBUG("IOC1 revision 0 ");
  63. }
  64. HPC_DEBUG("n");
  65. sgi_hpc_write1 = (HPC3_WRITE1_PRESET | HPC3_WRITE1_KMRESET |
  66.   HPC3_WRITE1_ERESET | HPC3_WRITE1_LC0OFF);
  67. sgi_hpc_write2 = (HPC3_WRITE2_EASEL   | HPC3_WRITE2_NTHRESH |
  68.   HPC3_WRITE2_TPSPEED | HPC3_WRITE2_EPSEL   |
  69.   HPC3_WRITE2_U0AMODE | HPC3_WRITE2_U1AMODE);
  70. if(!sgi_guiness)
  71. sgi_hpc_write1 |= HPC3_WRITE1_GRESET;
  72. hpc3mregs->write1 = sgi_hpc_write1;
  73. hpc3mregs->write2 = sgi_hpc_write2;
  74. hpc3c0->pbus_piocfgs[0][6] |= HPC3_PIOPCFG_HW;
  75. }