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

嵌入式Linux

开发平台:

Unix_Linux

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