blob: ae884d13ae9af73c4acbd39c389679bfaca7291d [file] [log] [blame]
Sam Elliott45fb1c62020-06-02 18:18:54 +01001// Copyright lowRISC contributors.
2// Licensed under the Apache License, Version 2.0, see LICENSE for details.
3// SPDX-License-Identifier: Apache-2.0
Eunchan Kim266b3a52019-10-09 14:31:57 -07004{
5 name: "2x2",
Eunchan Kim0c36b922020-01-06 10:49:44 -08006 clock: "clk_main_i",
7 clock_connections: {
8 clk_main_i: "main"
9 clk_periph_i: "fixed"
10 }
11 reset: "rst_main_ni",
12 reset_connections: {
13 rst_main_ni: "sys"
14 rst_periph_ni: "sys_fixed"
15 }
Eunchan Kim266b3a52019-10-09 14:31:57 -070016 nodes: [
Eunchan Kim0c36b922020-01-06 10:49:44 -080017 { name: "h0",
18 type: "host",
19 clock: "clk_main_i",
20 reset: "rst_main_ni"
21 xbar: false
22 },
23 { name: "h1",
24 type: "host",
25 clock: "clk_periph_i",
26 reset: "rst_periph_ni"
27 xbar: false
28 },
29 { name: "d0",
30 type: "device",
31 clock: "clk_main_i",
32 reset: "rst_main_ni",
33 addr_range: [{
34 base_addr: "0x0000",
35 size_byte: "0x1000"
36 }]
37 xbar: false
38 },
39 { name: "d1",
40 type: "device",
41 clock: "clk_main_i",
42 reset: "rst_main_ni",
43 addr_range: [{
44 base_addr: "0x1000",
45 size_byte: "0x1000"
46 }]
47 xbar: false
48 }
Eunchan Kim266b3a52019-10-09 14:31:57 -070049 ],
50 connections: {
51 h0: ["d0", "d1"],
52 h1: ["d0", "d1"]
53 }
54}
55