1
0
Henry Cook 4c595d175c Refactor package hierarchy and remove legacy bus protocol implementations ()
* Refactors package hierarchy.

Additionally:
  - Removes legacy ground tests and configs
  - Removes legacy bus protocol implementations
  - Removes NTiles
  - Adds devices package
  - Adds more functions to util package
2017-07-07 10:48:16 -07:00

17 lines
383 B
Scala

// See LICENSE.SiFive for license details.
package freechips.rocketchip.amba.apb
import Chisel._
object APBParameters
{
// These are all fixed by the AHB standard:
val protBits = 3
def PROT_PRIVILEDGED = UInt(1, width = protBits)
def PROT_NONSECURE = UInt(2, width = protBits)
def PROT_INSTRUCTION = UInt(4, width = protBits)
def PROT_DEFAULT = PROT_PRIVILEDGED
}