blob: e1b6995decd03a05f4104a1f1f333002ab35a814 [file] [log] [blame]
/*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you under the Apache License, Version 2.0 (the
* "License"); you may not use this file except in compliance
* with the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing,
* software distributed under the License is distributed on an
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
* KIND, either express or implied. See the License for the
* specific language governing permissions and limitations
* under the License.
*/
package vta.shell
import chisel3._
import vta.util.config._
import vta.interface.axi._
import vta.core._
/** IntelShell.
*
* The IntelShell is based on a VME, VCR and core. This creates a complete VTA
* system that can be used for simulation or real hardware.
*/
class IntelShell(implicit p: Parameters) extends Module {
val io = IO(new Bundle {
val host = new AXIClient(p(ShellKey).hostParams)
val mem = new AXIMaster(p(ShellKey).memParams)
})
val vcr = Module(new VCR)
val vme = Module(new VME)
val core = Module(new Core)
core.io.vcr <> vcr.io.vcr
vme.io.vme <> core.io.vme
// vcr.io.host <> io.host
io.host.aw.ready := vcr.io.host.aw.ready
vcr.io.host.aw.valid := io.host.aw.valid
vcr.io.host.aw.bits.addr := io.host.aw.bits.addr
io.host.w.ready := vcr.io.host.w.ready
vcr.io.host.w.valid := io.host.w.valid
vcr.io.host.w.bits.data := io.host.w.bits.data
vcr.io.host.w.bits.strb := io.host.w.bits.strb
vcr.io.host.b.ready := io.host.b.ready
io.host.b.valid := vcr.io.host.b.valid
io.host.b.bits.resp := vcr.io.host.b.bits.resp
io.host.b.bits.id := io.host.w.bits.id
io.host.ar.ready := vcr.io.host.ar.ready
vcr.io.host.ar.valid := io.host.ar.valid
vcr.io.host.ar.bits.addr := io.host.ar.bits.addr
vcr.io.host.r.ready := io.host.r.ready
io.host.r.valid := vcr.io.host.r.valid
io.host.r.bits.data := vcr.io.host.r.bits.data
io.host.r.bits.resp := vcr.io.host.r.bits.resp
io.host.r.bits.id := io.host.ar.bits.id
io.host.b.bits.user <> DontCare
io.host.r.bits.user <> DontCare
io.host.r.bits.last := 1.U
io.mem <> vme.io.mem
}