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

嵌入式Linux

开发平台:

Unix_Linux

  1. /***********************************************************************
  2.  *
  3.  * Copyright 2001 MontaVista Software Inc.
  4.  * Author: jsun@mvista.com or jsun@junsun.net
  5.  *
  6.  * arch/mips/ddb5xxx/common/nile4.c
  7.  *     misc low-level routines for vrc-5xxx controllers.
  8.  *
  9.  * derived from original code by Geert Uytterhoeven <geert@sonycom.com>
  10.  *
  11.  * This program is free software; you can redistribute  it and/or modify it
  12.  * under  the terms of  the GNU General  Public License as published by the
  13.  * Free Software Foundation;  either version 2 of the  License, or (at your
  14.  * option) any later version.
  15.  *
  16.  ***********************************************************************
  17.  */
  18. #include <linux/config.h>
  19. #include <linux/types.h>
  20. #include <linux/kernel.h>
  21. #include <asm/ddb5xxx/ddb5xxx.h>
  22. #include <asm/ddb5xxx/debug.h>
  23. u32
  24. ddb_calc_pdar(u32 phys, u32 size, int width, 
  25.       int on_memory_bus, int pci_visible)
  26. {
  27.         u32 maskbits;
  28.         u32 widthbits;
  29.         switch (size) {
  30. #if 0                           /* We don't support 4 GB yet */
  31.         case 0x100000000:       /* 4 GB */
  32.                 maskbits = 4;
  33.                 break;
  34. #endif
  35.         case 0x80000000:        /* 2 GB */
  36.                 maskbits = 5;
  37.                 break;
  38.         case 0x40000000:        /* 1 GB */
  39.                 maskbits = 6;
  40.                 break;
  41.         case 0x20000000:        /* 512 MB */
  42.                 maskbits = 7;
  43.                 break;
  44.         case 0x10000000:        /* 256 MB */
  45.                 maskbits = 8;
  46.                 break;
  47.         case 0x08000000:        /* 128 MB */
  48.                 maskbits = 9;
  49.                 break;
  50.         case 0x04000000:        /* 64 MB */
  51.                 maskbits = 10;
  52.                 break;
  53.         case 0x02000000:        /* 32 MB */
  54.                 maskbits = 11;
  55.                 break;
  56.         case 0x01000000:        /* 16 MB */
  57.                 maskbits = 12;
  58.                 break;
  59.         case 0x00800000:        /* 8 MB */
  60.                 maskbits = 13;
  61.                 break;
  62.         case 0x00400000:        /* 4 MB */
  63.                 maskbits = 14;
  64.                 break;
  65.         case 0x00200000:        /* 2 MB */
  66.                 maskbits = 15;
  67.                 break;
  68.         case 0:         /* OFF */
  69.                 maskbits = 0;
  70.                 break;
  71.         default:
  72.                 panic("nile4_set_pdar: unsupported size %pn", (void *) size);
  73.         }
  74.         switch (width) {
  75.         case 8:
  76.                 widthbits = 0;
  77.                 break;
  78.         case 16:
  79.                 widthbits = 1;
  80.                 break;
  81.         case 32:
  82.                 widthbits = 2;
  83.                 break;
  84.         case 64:
  85.                 widthbits = 3;
  86.                 break;
  87.         default:
  88.                 panic("nile4_set_pdar: unsupported width %dn", width);
  89.         }
  90. return maskbits | (on_memory_bus ? 0x10 : 0) |
  91. (pci_visible ? 0x20 : 0) | (widthbits << 6) |
  92. (phys & 0xffe00000);
  93. }
  94. void
  95. ddb_set_pdar(u32 pdar, u32 phys, u32 size, int width,
  96.      int on_memory_bus, int pci_visible)
  97. {
  98. u32 temp= ddb_calc_pdar(phys, size, width, on_memory_bus, pci_visible);
  99. ddb_out32(pdar, temp);
  100. ddb_out32(pdar + 4, 0);
  101.         /*
  102.          * When programming a PDAR, the register should be read immediately
  103.          * after writing it. This ensures that address decoders are properly
  104.          * configured.
  105.  * [jsun] is this really necesary?
  106.          */
  107.         ddb_in32(pdar);
  108.         ddb_in32(pdar + 4);
  109. }
  110. /*
  111.  * routines that mess with PCIINITx registers
  112.  */
  113. void ddb_set_pmr(u32 pmr, u32 type, u32 addr, u32 options)
  114. {
  115.         switch (type) {
  116.         case DDB_PCICMD_IACK: /* PCI Interrupt Acknowledge */
  117.         case DDB_PCICMD_IO:   /* PCI I/O Space */
  118.         case DDB_PCICMD_MEM:  /* PCI Memory Space */
  119.         case DDB_PCICMD_CFG:  /* PCI Configuration Space */
  120.                 break;
  121.         default:
  122.                 panic("nile4_set_pmr: invalid type %dn", type);
  123.         }
  124.         ddb_out32(pmr, (type << 1) | (addr & 0xffe00000) | options );
  125.         ddb_out32(pmr + 4, 0);
  126. }