lowRISC Contributors | 802543a | 2019-08-31 12:12:56 +0100 | [diff] [blame] | 1 | // Copyright lowRISC contributors. |
| 2 | // Licensed under the Apache License, Version 2.0, see LICENSE for details. |
| 3 | // SPDX-License-Identifier: Apache-2.0 |
| 4 | // |
| 5 | // TOP Earlgrey configuration |
| 6 | { name: "earlgrey", |
| 7 | type: "top", |
| 8 | |
Michael Schaffner | 7b0807d | 2020-10-27 19:54:52 -0700 | [diff] [blame] | 9 | ///////////////////////////////////////////////////////////// |
| 10 | // Seed for compile-time random constants // |
| 11 | // NOTE: REPLACE THIS WITH A NEW VALUE BEFORE THE TAPEOUT // |
| 12 | ///////////////////////////////////////////////////////////// |
| 13 | rnd_cnst_seed: 4881560218908238235 |
| 14 | |
| 15 | // 32-bit datawidth |
Timothy Chen | c623393 | 2020-08-19 15:34:07 -0700 | [diff] [blame] | 16 | datawidth: "32", |
lowRISC Contributors | 802543a | 2019-08-31 12:12:56 +0100 | [diff] [blame] | 17 | |
Timothy Chen | 7f8cc8e | 2020-11-11 13:15:57 -0800 | [diff] [blame] | 18 | // Power information for the design |
| 19 | power: { |
| 20 | // Power domains supported by the design |
| 21 | // Aon represents domain aon |
| 22 | // 0 represents domain 0 |
| 23 | domains: ["Aon", "0"], |
| 24 | |
| 25 | // Default power domain used for the design |
| 26 | default: "0" |
| 27 | }, |
| 28 | |
Michael Schaffner | 7b0807d | 2020-10-27 19:54:52 -0700 | [diff] [blame] | 29 | // This is the clock data structure of the design. |
Timothy Chen | f56c1b5 | 2020-04-28 17:00:43 -0700 | [diff] [blame] | 30 | // The hier path refers to the clock reference path (struct / port) |
| 31 | // - The top/ext desgination follows the same scheme as inter-module |
Timothy Chen | 0550d69 | 2020-04-20 17:19:35 -0700 | [diff] [blame] | 32 | // The src key indicates the raw clock sources in the design |
| 33 | // The groups key indicates the various clock groupings in the design |
| 34 | clocks: { |
| 35 | |
Timothy Chen | f56c1b5 | 2020-04-28 17:00:43 -0700 | [diff] [blame] | 36 | hier_paths: { |
Timothy Chen | 92b526e | 2021-02-01 21:23:42 -0800 | [diff] [blame] | 37 | top: "clkmgr_aon_clocks.", // top level is a struct |
| 38 | ext: "", // ext is a port of the clock name |
Timothy Chen | f56c1b5 | 2020-04-28 17:00:43 -0700 | [diff] [blame] | 39 | }, |
| 40 | |
Timothy Chen | 33b3b9d | 2020-05-08 10:14:17 -0700 | [diff] [blame] | 41 | // Clock Source attributes |
| 42 | // name: Name of group. |
| 43 | // aon: Whether the clock is free running all the time. |
| 44 | // If it is, the clock is not hanlded by clkmgr. |
| 45 | // freq: Absolute frequency of clk in Hz |
Timothy Chen | 0550d69 | 2020-04-20 17:19:35 -0700 | [diff] [blame] | 46 | srcs: [ |
Timothy Chen | 33b3b9d | 2020-05-08 10:14:17 -0700 | [diff] [blame] | 47 | { name: "main", aon: "no", freq: "100000000" } |
Timothy Chen | ced60b2 | 2020-08-20 10:35:00 -0700 | [diff] [blame] | 48 | { name: "io", aon: "no", freq: "96000000" } |
Timothy Chen | 33b3b9d | 2020-05-08 10:14:17 -0700 | [diff] [blame] | 49 | { name: "usb", aon: "no", freq: "48000000" } |
| 50 | { name: "aon", aon: "yes", freq: "200000" } |
Timothy Chen | 0550d69 | 2020-04-20 17:19:35 -0700 | [diff] [blame] | 51 | ], |
| 52 | |
Timothy Chen | 79972ad | 2020-06-30 17:13:49 -0700 | [diff] [blame] | 53 | // Derived clock source attributes |
| 54 | // name: Name of group. |
| 55 | // aon: Whether the clock is free running all the time. |
| 56 | // If it is, the clock is not hanlded by clkmgr. |
| 57 | // freq: Absolute frequency of clk in Hz |
| 58 | // src: From which clock source is the clock derived |
| 59 | // div: Ratio between derived clock and source clock |
| 60 | derived_srcs: [ |
Timothy Chen | ced60b2 | 2020-08-20 10:35:00 -0700 | [diff] [blame] | 61 | { name: "io_div2", aon: "no", div: 2, src: "io", freq: "48000000" } |
| 62 | { name: "io_div4", aon: "no", div: 4, src: "io", freq: "24000000" } |
Timothy Chen | 79972ad | 2020-06-30 17:13:49 -0700 | [diff] [blame] | 63 | ], |
| 64 | |
Timothy Chen | 0550d69 | 2020-04-20 17:19:35 -0700 | [diff] [blame] | 65 | // Clock Group attributes |
| 66 | // name: name of group. |
| 67 | // |
Timothy Chen | f56c1b5 | 2020-04-28 17:00:43 -0700 | [diff] [blame] | 68 | // src: The hierarchical source of the clock |
| 69 | // "ext" - clock is supplied from a port of the top module |
| 70 | // "top" - clock is supplied from a net inside the top module |
| 71 | // |
Rupert Swarbrick | cba33a2 | 2020-07-02 16:46:38 +0100 | [diff] [blame] | 72 | // sw_cg: whether software is allowed to gate the clock |
Timothy Chen | 0550d69 | 2020-04-20 17:19:35 -0700 | [diff] [blame] | 73 | // "no" - software is not allowed to gate clocks |
| 74 | // "yes" - software is allowed to gate clocks |
| 75 | // "hint" - software can provide a hint, and hw controls the rest |
| 76 | // |
| 77 | // unique: whether each module in the group can be separately gated |
Rupert Swarbrick | cba33a2 | 2020-07-02 16:46:38 +0100 | [diff] [blame] | 78 | // if sw_cg is "no", this field has no meaning |
Timothy Chen | 0550d69 | 2020-04-20 17:19:35 -0700 | [diff] [blame] | 79 | // "yes" - each clock is individually controlled |
| 80 | // "no" - the group is controlled as one single unit |
| 81 | // |
| 82 | // The powerup and proc groups are unique. |
Timothy Chen | 33b3b9d | 2020-05-08 10:14:17 -0700 | [diff] [blame] | 83 | // The powerup group of clocks do not feed through the clock |
Timothy Chen | 0550d69 | 2020-04-20 17:19:35 -0700 | [diff] [blame] | 84 | // controller as they manage clock controller behavior |
Michael Schaffner | be5cb9c | 2020-11-19 19:53:47 -0800 | [diff] [blame] | 85 | // The proc group is not peripheral, and directly hardwired |
Timothy Chen | 0550d69 | 2020-04-20 17:19:35 -0700 | [diff] [blame] | 86 | |
| 87 | groups: [ |
Timothy Chen | 383afb8 | 2021-02-23 13:18:53 -0800 | [diff] [blame] | 88 | // the powerup group is used exclusively by clk/pwr/rstmgr/pinmux |
Timothy Chen | 79972ad | 2020-06-30 17:13:49 -0700 | [diff] [blame] | 89 | { name: "powerup", src:"top", sw_cg: "no" } |
Timothy Chen | f56c1b5 | 2020-04-28 17:00:43 -0700 | [diff] [blame] | 90 | { name: "trans", src:"top", sw_cg: "hint", unique: "yes", } |
| 91 | { name: "infra", src:"top", sw_cg: "no", } |
| 92 | { name: "secure", src:"top", sw_cg: "no" } |
| 93 | { name: "peri", src:"top", sw_cg: "yes", unique: "no" } |
| 94 | { name: "timers", src:"top", sw_cg: "no" } |
Timothy Chen | 0550d69 | 2020-04-20 17:19:35 -0700 | [diff] [blame] | 95 | { name: "proc", |
Timothy Chen | c623393 | 2020-08-19 15:34:07 -0700 | [diff] [blame] | 96 | src: "no", |
| 97 | sw_cg: "no", |
| 98 | unique: "no", |
Timothy Chen | 0550d69 | 2020-04-20 17:19:35 -0700 | [diff] [blame] | 99 | clocks: { |
| 100 | clk_proc_main: main |
| 101 | } |
| 102 | } |
| 103 | ], |
Timothy Chen | c623393 | 2020-08-19 15:34:07 -0700 | [diff] [blame] | 104 | }, |
lowRISC Contributors | 802543a | 2019-08-31 12:12:56 +0100 | [diff] [blame] | 105 | |
Timothy Chen | c623393 | 2020-08-19 15:34:07 -0700 | [diff] [blame] | 106 | // This is the reset data strcture of the design. |
| 107 | // The hier path refers to the reset reference path (struct / port) |
| 108 | // - The top/ext desgination follows the same scheme as inter-module |
| 109 | // The node key represents all the known resets in the design |
| 110 | resets: { |
| 111 | |
| 112 | hier_paths: { |
Timothy Chen | 92b526e | 2021-02-01 21:23:42 -0800 | [diff] [blame] | 113 | top: "rstmgr_aon_resets.", // top level is a struct |
| 114 | ext: "", // ext is a port of the clock name |
Timothy Chen | c623393 | 2020-08-19 15:34:07 -0700 | [diff] [blame] | 115 | }, |
| 116 | |
| 117 | // Reset node attributes |
| 118 | // name: name of reset. |
| 119 | // |
| 120 | // gen: whether the reset is generated |
| 121 | // true: it is a generated reset inside rstmgr |
| 122 | // false: it is a hardwired design reset inside rstmgr (roots and por) |
Timothy Chen | 7f8cc8e | 2020-11-11 13:15:57 -0800 | [diff] [blame] | 123 | // For non-generated resets, the parent / domain definitions have no meaning. |
Timothy Chen | c623393 | 2020-08-19 15:34:07 -0700 | [diff] [blame] | 124 | // |
| 125 | // type: the reset type [ext, top] |
| 126 | // ext: the reset is coming in from the ports, external to earlgrey |
| 127 | // int: the reset is only used inside rstmgr |
| 128 | // top: the reset is output from rstmgr to top level struct |
| 129 | // |
| 130 | // parent: The parent reset |
| 131 | // If type is "ext", there is no root, since it is external |
| 132 | // |
Timothy Chen | 7f8cc8e | 2020-11-11 13:15:57 -0800 | [diff] [blame] | 133 | // domains: The power domains of a particular reset |
| 134 | // This is a list of of the supported power domains. |
| 135 | // Valid values are Aon and (power domain)0 ~ (power domain)1. |
| 136 | // If no value is supplied, the default is only the Aon version. |
Timothy Chen | c623393 | 2020-08-19 15:34:07 -0700 | [diff] [blame] | 137 | // |
| 138 | // clk: related clock domain for synchronous release |
| 139 | // If type is "por", there is not related clock, since it is |
| 140 | // likely external or generated from a voltage comparator |
| 141 | // |
| 142 | nodes: [ |
Timothy Chen | 7f8cc8e | 2020-11-11 13:15:57 -0800 | [diff] [blame] | 143 | { name: "rst_ni", gen: false, type: "ext", } |
| 144 | { name: "por_aon", gen: false, type: "top", domains: ["Aon" ], clk: "aon" } |
| 145 | { name: "lc_src", gen: false, type: "int", domains: ["Aon", "0"], clk: "io_div4" } |
| 146 | { name: "sys_src", gen: false, type: "int", domains: ["Aon", "0"], clk: "io_div4" } |
| 147 | { name: "por", gen: true, type: "top", domains: ["Aon" ], parent: "por_aon", clk: "main" } |
| 148 | { name: "por_io", gen: true, type: "top", domains: ["Aon", ], parent: "por_aon", clk: "io" } |
| 149 | { name: "por_io_div2", gen: true, type: "top", domains: ["Aon", ], parent: "por_aon", clk: "io_div2" } |
| 150 | { name: "por_io_div4", gen: true , type: "top", domains: ["Aon", ], parent: "por_aon", clk: "io_div4" } |
| 151 | { name: "por_usb", gen: true, type: "top", domains: ["Aon", ], parent: "por_aon", clk: "usb" } |
| 152 | { name: "lc", gen: true, type: "top", domains: [ "0"], parent: "lc_src", clk: "main" } |
| 153 | { name: "lc_io_div4", gen: true, type: "top", domains: [ "0"], parent: "lc_src", clk: "io_div4" } |
Timothy Chen | ac6af87 | 2021-02-22 17:17:52 -0800 | [diff] [blame] | 154 | { name: "sys", gen: true, type: "top", domains: [ "0"], parent: "sys_src", clk: "main" } |
Timothy Chen | 7f8cc8e | 2020-11-11 13:15:57 -0800 | [diff] [blame] | 155 | { name: "sys_io_div4", gen: true, type: "top", domains: ["Aon", "0"], parent: "sys_src", clk: "io_div4" } |
Timothy Chen | c2b279a | 2021-01-14 18:53:34 -0800 | [diff] [blame] | 156 | { name: "sys_aon", gen: true, type: "top", domains: ["Aon", "0"], parent: "sys_src", clk: "aon" } |
Timothy Chen | 7f8cc8e | 2020-11-11 13:15:57 -0800 | [diff] [blame] | 157 | { name: "spi_device", gen: true, type: "top", domains: [ "0"], parent: "sys_src", clk: "io_div2", sw: 1 } |
Michael Schaffner | dbd087e | 2021-02-12 17:58:30 -0800 | [diff] [blame] | 158 | { name: "spi_host0", gen: true, type: "top", domains: [ "0"], parent: "sys_src", clk: "io_div2", sw: 1 } |
| 159 | { name: "spi_host1", gen: true, type: "top", domains: [ "0"], parent: "sys_src", clk: "io_div2", sw: 1 } |
Timothy Chen | c2b279a | 2021-01-14 18:53:34 -0800 | [diff] [blame] | 160 | { name: "usb", gen: true, type: "top", domains: [ "0"], parent: "sys_src", clk: "usb", sw: 1 } |
Timothy Chen | b0f5577 | 2021-02-01 15:43:47 -0800 | [diff] [blame] | 161 | { name: "i2c0", gen: true, type: "top", domains: [ "0"], parent: "sys_src", clk: "io_div2", sw: 1 }, |
| 162 | { name: "i2c1", gen: true, type: "top", domains: [ "0"], parent: "sys_src", clk: "io_div2", sw: 1 }, |
| 163 | { name: "i2c2", gen: true, type: "top", domains: [ "0"], parent: "sys_src", clk: "io_div2", sw: 1 }, |
Timothy Chen | c623393 | 2020-08-19 15:34:07 -0700 | [diff] [blame] | 164 | ] |
| 165 | } |
Timothy Chen | 3193b00 | 2019-10-04 16:56:05 -0700 | [diff] [blame] | 166 | |
lowRISC Contributors | 802543a | 2019-08-31 12:12:56 +0100 | [diff] [blame] | 167 | // Number of cores: used in rv_plic and timer |
| 168 | num_cores: "1", |
| 169 | |
Timothy Chen | e4e857d | 2020-12-16 18:00:01 -0800 | [diff] [blame] | 170 | |
| 171 | // `host` defines the host only components in the system (such as processor) |
| 172 | // This should eventually be used to cover more functionality, but for now, |
| 173 | // it is a temporary solution for top level connectivity |
| 174 | host: [ |
| 175 | { name: "rv_core_ibex", |
| 176 | type: "rv_core_ibex", |
| 177 | inter_signal_list: [ |
| 178 | { struct: "esc_tx", |
| 179 | type: "uni", |
| 180 | name: "esc_nmi_tx", |
| 181 | act: "rcv", |
| 182 | package: "prim_esc_pkg", |
| 183 | }, |
| 184 | |
| 185 | { struct: "esc_rx", |
| 186 | type: "uni", |
| 187 | name: "esc_nmi_rx", |
| 188 | act: "req", |
| 189 | package: "prim_esc_pkg", |
| 190 | }, |
Timothy Chen | f524c21 | 2020-12-17 14:08:45 -0800 | [diff] [blame] | 191 | |
Tom Roberts | c88e97f | 2021-03-04 13:38:20 +0000 | [diff] [blame] | 192 | { struct: "crash_dump", |
Timothy Chen | f524c21 | 2020-12-17 14:08:45 -0800 | [diff] [blame] | 193 | type: "uni", |
Tom Roberts | c88e97f | 2021-03-04 13:38:20 +0000 | [diff] [blame] | 194 | name: "crash_dump", |
Timothy Chen | f524c21 | 2020-12-17 14:08:45 -0800 | [diff] [blame] | 195 | act: "req", |
Tom Roberts | c88e97f | 2021-03-04 13:38:20 +0000 | [diff] [blame] | 196 | package: "ibex_pkg", |
Timothy Chen | f524c21 | 2020-12-17 14:08:45 -0800 | [diff] [blame] | 197 | }, |
Michael Schaffner | dc0c1e9 | 2021-03-02 14:41:31 -0800 | [diff] [blame] | 198 | |
| 199 | { struct: "lc_tx_t", |
| 200 | type: "uni", |
| 201 | name: "lc_cpu_en", |
| 202 | act: "rcv", |
| 203 | package: "lc_ctrl_pkg", |
| 204 | }, |
Michael Schaffner | 9bb75e9 | 2021-03-12 15:13:31 -0800 | [diff] [blame] | 205 | |
| 206 | { struct: "ram_1p_cfg_t", |
| 207 | type: "uni", |
| 208 | name: "ram_cfg", |
| 209 | act: "rcv", |
| 210 | package: "prim_ram_1p_pkg" |
| 211 | } |
Timothy Chen | e4e857d | 2020-12-16 18:00:01 -0800 | [diff] [blame] | 212 | ], |
| 213 | } |
Michael Schaffner | 5f54587 | 2021-03-05 17:54:28 -0800 | [diff] [blame] | 214 | { name: "rv_dm", |
| 215 | type: "rv_dm", |
| 216 | inter_signal_list: [ |
| 217 | { struct: "jtag", |
| 218 | type: "req_rsp", |
| 219 | name: "jtag", |
| 220 | act: "rsp", |
| 221 | package: "jtag_pkg", |
| 222 | }, |
| 223 | ] |
| 224 | } |
Timothy Chen | e4e857d | 2020-12-16 18:00:01 -0800 | [diff] [blame] | 225 | ] |
| 226 | |
lowRISC Contributors | 802543a | 2019-08-31 12:12:56 +0100 | [diff] [blame] | 227 | // `module` defines the peripherals. |
| 228 | // Details are coming from each modules' config file `ip.hjson` |
| 229 | // TODO: Define parameter here |
Timothy Chen | 9443221 | 2021-03-01 22:29:18 -0800 | [diff] [blame] | 230 | // attr: There are a few types of modules supported |
| 231 | // normal(default): Normal, non-templated modules that will be instantiated |
| 232 | // templated: These modules are templated and must be run through topgen |
| 233 | // reggen_top: These modules are not templated, but need to have reggen run |
| 234 | // because they live exclusively in hw/top_* instead of hw/ip_*. |
| 235 | // These modules are also instantiated in the top level. |
| 236 | // reggen_only: Similar to reggen_top, but are not instantiated in the top level. |
lowRISC Contributors | 802543a | 2019-08-31 12:12:56 +0100 | [diff] [blame] | 237 | module: [ |
Timothy Chen | 2971a1e | 2021-01-21 16:00:01 -0800 | [diff] [blame] | 238 | { name: "uart0", // instance name |
lowRISC Contributors | 802543a | 2019-08-31 12:12:56 +0100 | [diff] [blame] | 239 | type: "uart", // Must be matched to the ip name in `ip.hson` (_reg, _cfg permitted) |
| 240 | // and `hw/ip/{type}` |
Timothy Chen | 3193b00 | 2019-10-04 16:56:05 -0700 | [diff] [blame] | 241 | |
Timothy Chen | 80bd8aa | 2019-10-04 15:57:11 -0700 | [diff] [blame] | 242 | // clock connections defines the port to top level clock connection |
| 243 | // the ip.hjson will declare the clock port names |
| 244 | // If none are defined at ip.hjson, clk_i is used by default |
Timothy Chen | 6b70fd2 | 2020-08-20 14:01:26 -0700 | [diff] [blame] | 245 | clock_srcs: {clk_i: "io_div4"}, |
Timothy Chen | 3193b00 | 2019-10-04 16:56:05 -0700 | [diff] [blame] | 246 | |
| 247 | // reset connections defines the port to top level reset connection |
| 248 | // the ip.hjson will declare the reset port names |
Timothy Chen | 80bd8aa | 2019-10-04 15:57:11 -0700 | [diff] [blame] | 249 | // If none are defined at ip.hjson, rst_ni is used by default |
Timothy Chen | 6b70fd2 | 2020-08-20 14:01:26 -0700 | [diff] [blame] | 250 | reset_connections: {rst_ni: "sys_io_div4"}, |
lowRISC Contributors | 802543a | 2019-08-31 12:12:56 +0100 | [diff] [blame] | 251 | base_addr: "0x40000000", |
| 252 | }, |
Timothy Chen | 2971a1e | 2021-01-21 16:00:01 -0800 | [diff] [blame] | 253 | { name: "uart1", // instance name |
| 254 | type: "uart", // Must be matched to the ip name in `ip.hson` (_reg, _cfg permitted) |
| 255 | // and `hw/ip/{type}` |
| 256 | |
| 257 | // clock connections defines the port to top level clock connection |
| 258 | // the ip.hjson will declare the clock port names |
| 259 | // If none are defined at ip.hjson, clk_i is used by default |
| 260 | clock_srcs: {clk_i: "io_div4"}, |
| 261 | |
| 262 | // reset connections defines the port to top level reset connection |
| 263 | // the ip.hjson will declare the reset port names |
| 264 | // If none are defined at ip.hjson, rst_ni is used by default |
| 265 | reset_connections: {rst_ni: "sys_io_div4"}, |
| 266 | base_addr: "0x40010000", |
| 267 | }, |
| 268 | { name: "uart2", // instance name |
| 269 | type: "uart", // Must be matched to the ip name in `ip.hson` (_reg, _cfg permitted) |
| 270 | // and `hw/ip/{type}` |
| 271 | |
| 272 | // clock connections defines the port to top level clock connection |
| 273 | // the ip.hjson will declare the clock port names |
| 274 | // If none are defined at ip.hjson, clk_i is used by default |
| 275 | clock_srcs: {clk_i: "io_div4"}, |
| 276 | |
| 277 | // reset connections defines the port to top level reset connection |
| 278 | // the ip.hjson will declare the reset port names |
| 279 | // If none are defined at ip.hjson, rst_ni is used by default |
| 280 | reset_connections: {rst_ni: "sys_io_div4"}, |
| 281 | base_addr: "0x40020000", |
| 282 | }, |
| 283 | { name: "uart3", // instance name |
| 284 | type: "uart", // Must be matched to the ip name in `ip.hson` (_reg, _cfg permitted) |
| 285 | // and `hw/ip/{type}` |
| 286 | |
| 287 | // clock connections defines the port to top level clock connection |
| 288 | // the ip.hjson will declare the clock port names |
| 289 | // If none are defined at ip.hjson, clk_i is used by default |
| 290 | clock_srcs: {clk_i: "io_div4"}, |
| 291 | |
| 292 | // reset connections defines the port to top level reset connection |
| 293 | // the ip.hjson will declare the reset port names |
| 294 | // If none are defined at ip.hjson, rst_ni is used by default |
| 295 | reset_connections: {rst_ni: "sys_io_div4"}, |
| 296 | base_addr: "0x40030000", |
| 297 | }, |
lowRISC Contributors | 802543a | 2019-08-31 12:12:56 +0100 | [diff] [blame] | 298 | { name: "gpio", |
| 299 | type: "gpio", |
Timothy Chen | 6b70fd2 | 2020-08-20 14:01:26 -0700 | [diff] [blame] | 300 | clock_srcs: {clk_i: "io_div4"}, |
Timothy Chen | 0550d69 | 2020-04-20 17:19:35 -0700 | [diff] [blame] | 301 | clock_group: "peri", |
Timothy Chen | 6b70fd2 | 2020-08-20 14:01:26 -0700 | [diff] [blame] | 302 | reset_connections: {rst_ni: "sys_io_div4"}, |
Martin Lueker-Boden | d5a1e4b | 2020-11-11 19:46:33 -0800 | [diff] [blame] | 303 | base_addr: "0x40040000", |
lowRISC Contributors | 802543a | 2019-08-31 12:12:56 +0100 | [diff] [blame] | 304 | } |
lowRISC Contributors | 802543a | 2019-08-31 12:12:56 +0100 | [diff] [blame] | 305 | { name: "spi_device", |
| 306 | type: "spi_device", |
Timothy Chen | 04192e0 | 2021-02-19 16:16:25 -0800 | [diff] [blame] | 307 | clock_srcs: {clk_i: "io_div4", scan_clk_i: "io_div2"}, |
Timothy Chen | 0550d69 | 2020-04-20 17:19:35 -0700 | [diff] [blame] | 308 | clock_group: "peri", |
Timothy Chen | 3193b00 | 2019-10-04 16:56:05 -0700 | [diff] [blame] | 309 | reset_connections: {rst_ni: "spi_device"}, |
Martin Lueker-Boden | d5a1e4b | 2020-11-11 19:46:33 -0800 | [diff] [blame] | 310 | base_addr: "0x40050000", |
lowRISC Contributors | 802543a | 2019-08-31 12:12:56 +0100 | [diff] [blame] | 311 | }, |
Michael Schaffner | dbd087e | 2021-02-12 17:58:30 -0800 | [diff] [blame] | 312 | { name: "spi_host0", |
| 313 | type: "spi_host", |
Martin Lueker-Boden | eb9498c | 2021-02-02 08:33:29 -0800 | [diff] [blame] | 314 | clock_srcs: {clk_i: "io_div4", clk_core_i: "io_div2"}, |
Michael Schaffner | dbd087e | 2021-02-12 17:58:30 -0800 | [diff] [blame] | 315 | clock_group: "peri", |
Martin Lueker-Boden | eb9498c | 2021-02-02 08:33:29 -0800 | [diff] [blame] | 316 | reset_connections: {rst_ni: "spi_host0", rst_core_ni: "spi_host0"}, |
Michael Schaffner | dbd087e | 2021-02-12 17:58:30 -0800 | [diff] [blame] | 317 | base_addr: "0x40060000", |
| 318 | }, |
| 319 | { name: "spi_host1", |
| 320 | type: "spi_host", |
Martin Lueker-Boden | eb9498c | 2021-02-02 08:33:29 -0800 | [diff] [blame] | 321 | clock_srcs: {clk_i: "io_div4", clk_core_i: "io_div2"}, |
Michael Schaffner | dbd087e | 2021-02-12 17:58:30 -0800 | [diff] [blame] | 322 | clock_group: "peri", |
Martin Lueker-Boden | eb9498c | 2021-02-02 08:33:29 -0800 | [diff] [blame] | 323 | reset_connections: {rst_ni: "spi_host1", rst_core_ni: "spi_host1"}, |
Michael Schaffner | dbd087e | 2021-02-12 17:58:30 -0800 | [diff] [blame] | 324 | base_addr: "0x40070000", |
| 325 | }, |
Timothy Chen | b0f5577 | 2021-02-01 15:43:47 -0800 | [diff] [blame] | 326 | { name: "i2c0", |
| 327 | type: "i2c", |
| 328 | clock_srcs: {clk_i: "io_div4"}, |
| 329 | clock_group: "peri", |
| 330 | reset_connections: {rst_ni: "i2c0"}, |
| 331 | base_addr: "0x40080000", |
| 332 | }, |
| 333 | { name: "i2c1", |
| 334 | type: "i2c", |
| 335 | clock_srcs: {clk_i: "io_div4"}, |
| 336 | clock_group: "peri", |
| 337 | reset_connections: {rst_ni: "i2c1"}, |
| 338 | base_addr: "0x40090000", |
| 339 | }, |
| 340 | { name: "i2c2", |
| 341 | type: "i2c", |
| 342 | clock_srcs: {clk_i: "io_div4"}, |
| 343 | clock_group: "peri", |
| 344 | reset_connections: {rst_ni: "i2c2"}, |
| 345 | base_addr: "0x400A0000", |
| 346 | }, |
| 347 | { name: "pattgen", |
| 348 | type: "pattgen", |
| 349 | clock_srcs: {clk_i: "io_div4"}, |
| 350 | clock_group: "peri", |
| 351 | reset_connections: {rst_ni: "sys_io_div4"}, |
| 352 | base_addr: "0x400E0000", |
| 353 | }, |
lowRISC Contributors | 802543a | 2019-08-31 12:12:56 +0100 | [diff] [blame] | 354 | { name: "rv_timer", |
| 355 | type: "rv_timer", |
Timothy Chen | 6b70fd2 | 2020-08-20 14:01:26 -0700 | [diff] [blame] | 356 | clock_srcs: {clk_i: "io_div4"}, |
Timothy Chen | 0550d69 | 2020-04-20 17:19:35 -0700 | [diff] [blame] | 357 | clock_group: "timers", |
Timothy Chen | 6b70fd2 | 2020-08-20 14:01:26 -0700 | [diff] [blame] | 358 | reset_connections: {rst_ni: "sys_io_div4"}, |
Martin Lueker-Boden | d5a1e4b | 2020-11-11 19:46:33 -0800 | [diff] [blame] | 359 | base_addr: "0x40100000", |
lowRISC Contributors | 802543a | 2019-08-31 12:12:56 +0100 | [diff] [blame] | 360 | }, |
Timothy Chen | 92b526e | 2021-02-01 21:23:42 -0800 | [diff] [blame] | 361 | { name: "usbdev", |
| 362 | type: "usbdev", |
| 363 | clock_srcs: {clk_i: "io_div4", clk_aon_i: "aon", clk_usb_48mhz_i: "usb"}, |
| 364 | clock_group: "peri", |
Martin Lueker-Boden | d5a1e4b | 2020-11-11 19:46:33 -0800 | [diff] [blame] | 365 | clock_reset_export: ["ast"], |
Timothy Chen | 92b526e | 2021-02-01 21:23:42 -0800 | [diff] [blame] | 366 | reset_connections: {rst_ni: "sys_io_div4", rst_aon_ni: "sys_aon", rst_usb_48mhz_ni: "usb"}, |
Pirmin Vogel | d453438 | 2019-10-17 13:18:31 +0100 | [diff] [blame] | 367 | base_addr: "0x40110000", |
| 368 | }, |
Martin Lueker-Boden | d5a1e4b | 2020-11-11 19:46:33 -0800 | [diff] [blame] | 369 | { name: "otp_ctrl", |
| 370 | type: "otp_ctrl", |
Michael Schaffner | 3c7892d | 2020-12-28 16:25:46 -0800 | [diff] [blame] | 371 | clock_srcs: {clk_i: "io_div4", clk_edn_i: "main"}, |
Martin Lueker-Boden | d5a1e4b | 2020-11-11 19:46:33 -0800 | [diff] [blame] | 372 | clock_group: "timers", |
Michael Schaffner | 3c7892d | 2020-12-28 16:25:46 -0800 | [diff] [blame] | 373 | reset_connections: {rst_ni: "lc_io_div4", rst_edn_ni: "sys"}, |
Martin Lueker-Boden | d5a1e4b | 2020-11-11 19:46:33 -0800 | [diff] [blame] | 374 | base_addr: "0x40130000", |
Timothy Chen | 65e1667 | 2020-12-05 09:17:14 -0800 | [diff] [blame] | 375 | }, |
Michael Schaffner | 60aa10e | 2020-12-07 19:39:08 -0800 | [diff] [blame] | 376 | { name: "lc_ctrl", |
| 377 | type: "lc_ctrl", |
| 378 | clock_srcs: {clk_i: "io_div4"}, |
| 379 | clock_group: "timers", |
| 380 | reset_connections: {rst_ni: "lc_io_div4"}, |
| 381 | base_addr: "0x40140000", |
| 382 | }, |
Michael Schaffner | be5cb9c | 2020-11-19 19:53:47 -0800 | [diff] [blame] | 383 | { name: "alert_handler", |
| 384 | type: "alert_handler", |
Timothy Chen | f1006bd | 2021-02-05 13:05:43 -0800 | [diff] [blame] | 385 | clock_srcs: {clk_i: "io_div4", clk_edn_i: "main"}, |
Michael Schaffner | be5cb9c | 2020-11-19 19:53:47 -0800 | [diff] [blame] | 386 | clock_group: "timers", |
Timothy Chen | f1006bd | 2021-02-05 13:05:43 -0800 | [diff] [blame] | 387 | reset_connections: {rst_ni: "sys_io_div4", rst_edn_ni: "sys"}, |
Michael Schaffner | be5cb9c | 2020-11-19 19:53:47 -0800 | [diff] [blame] | 388 | base_addr: "0x40150000", |
Timothy Chen | 9443221 | 2021-03-01 22:29:18 -0800 | [diff] [blame] | 389 | attr: "templated", |
Michael Schaffner | be5cb9c | 2020-11-19 19:53:47 -0800 | [diff] [blame] | 390 | localparam: { |
| 391 | EscCntDw: 32, |
| 392 | AccuCntDw: 16, |
| 393 | LfsrSeed: "0x7FFFFFFF" |
| 394 | } |
| 395 | }, |
| 396 | // dummy module to capture the alert handler escalation signals |
| 397 | // and test them by converting them into IRQs |
Timothy Chen | 2b8ef76 | 2021-02-16 14:44:55 -0800 | [diff] [blame] | 398 | // { name: "nmi_gen", |
| 399 | // type: "nmi_gen", |
| 400 | // clock_srcs: {clk_i: "io_div4"}, |
| 401 | // clock_group: "timers", |
| 402 | // reset_connections: {rst_ni: "sys_io_div4"}, |
| 403 | // base_addr: "0x40160000", |
| 404 | // } |
Timothy Chen | 92b526e | 2021-02-01 21:23:42 -0800 | [diff] [blame] | 405 | { name: "pwrmgr_aon", |
Timothy Chen | 163050b | 2020-04-13 23:29:29 -0700 | [diff] [blame] | 406 | type: "pwrmgr", |
Timothy Chen | 6b70fd2 | 2020-08-20 14:01:26 -0700 | [diff] [blame] | 407 | clock_srcs: {clk_i: "io_div4", clk_slow_i: "aon"}, |
Timothy Chen | 0550d69 | 2020-04-20 17:19:35 -0700 | [diff] [blame] | 408 | clock_group: "powerup", |
Timothy Chen | a4cc10d | 2020-05-08 16:06:20 -0700 | [diff] [blame] | 409 | reset_connections: {rst_ni: "por", rst_slow_ni: "por_aon"}, |
Timothy Chen | 7f8cc8e | 2020-11-11 13:15:57 -0800 | [diff] [blame] | 410 | domain: "Aon", |
Martin Lueker-Boden | d5a1e4b | 2020-11-11 19:46:33 -0800 | [diff] [blame] | 411 | base_addr: "0x40400000", |
Timothy Chen | 9443221 | 2021-03-01 22:29:18 -0800 | [diff] [blame] | 412 | attr: "templated", |
Timothy Chen | f56c1b5 | 2020-04-28 17:00:43 -0700 | [diff] [blame] | 413 | |
Timothy Chen | 163050b | 2020-04-13 23:29:29 -0700 | [diff] [blame] | 414 | }, |
Timothy Chen | 92b526e | 2021-02-01 21:23:42 -0800 | [diff] [blame] | 415 | { name: "rstmgr_aon", |
Timothy Chen | c59f701 | 2020-04-16 19:11:42 -0700 | [diff] [blame] | 416 | type: "rstmgr", |
Timothy Chen | 6b70fd2 | 2020-08-20 14:01:26 -0700 | [diff] [blame] | 417 | clock_srcs: {clk_i: "io_div4", clk_aon_i: "aon", clk_main_i: "main", clk_io_i: "io", clk_usb_i: "usb", |
Timothy Chen | 0f3c175 | 2020-08-26 12:47:17 -0700 | [diff] [blame] | 418 | clk_io_div2_i: "io_div2", clk_io_div4_i: "io_div4"}, |
Timothy Chen | c59f701 | 2020-04-16 19:11:42 -0700 | [diff] [blame] | 419 | clock_group: "powerup", |
| 420 | reset_connections: {rst_ni: "rst_ni"}, |
Timothy Chen | 7f8cc8e | 2020-11-11 13:15:57 -0800 | [diff] [blame] | 421 | domain: "Aon", |
Martin Lueker-Boden | d5a1e4b | 2020-11-11 19:46:33 -0800 | [diff] [blame] | 422 | base_addr: "0x40410000", |
Timothy Chen | 9443221 | 2021-03-01 22:29:18 -0800 | [diff] [blame] | 423 | attr: "templated", |
Timothy Chen | f56c1b5 | 2020-04-28 17:00:43 -0700 | [diff] [blame] | 424 | }, |
Timothy Chen | 92b526e | 2021-02-01 21:23:42 -0800 | [diff] [blame] | 425 | { name: "clkmgr_aon", |
Timothy Chen | f56c1b5 | 2020-04-28 17:00:43 -0700 | [diff] [blame] | 426 | type: "clkmgr", |
Timothy Chen | 6b70fd2 | 2020-08-20 14:01:26 -0700 | [diff] [blame] | 427 | clock_srcs: {clk_i: "io_div4"}, |
Timothy Chen | f56c1b5 | 2020-04-28 17:00:43 -0700 | [diff] [blame] | 428 | clock_group: "powerup", |
Timothy Chen | 7f8cc8e | 2020-11-11 13:15:57 -0800 | [diff] [blame] | 429 | reset_connections: {rst_ni: "por_io_div4", rst_main_ni: "por", rst_io_ni: "por_io", rst_usb_ni: "por_usb" |
Timothy Chen | ced60b2 | 2020-08-20 10:35:00 -0700 | [diff] [blame] | 430 | rst_io_div2_ni: "por_io_div2", rst_io_div4_ni: "por_io_div4"}, |
Timothy Chen | 7f8cc8e | 2020-11-11 13:15:57 -0800 | [diff] [blame] | 431 | domain: "Aon", |
Martin Lueker-Boden | d5a1e4b | 2020-11-11 19:46:33 -0800 | [diff] [blame] | 432 | base_addr: "0x40420000", |
Timothy Chen | 9443221 | 2021-03-01 22:29:18 -0800 | [diff] [blame] | 433 | attr: "templated", |
Timothy Chen | c59f701 | 2020-04-16 19:11:42 -0700 | [diff] [blame] | 434 | }, |
Michael Schaffner | e029a68 | 2021-04-06 16:21:30 -0700 | [diff] [blame] | 435 | { name: "sysrst_ctrl_aon", |
| 436 | type: "sysrst_ctrl", |
| 437 | clock_srcs: {clk_i: "io_div4", clk_aon_i: "aon"}, |
| 438 | clock_group: "secure", |
| 439 | reset_connections: {rst_ni: "sys_io_div4", rst_aon_ni: "sys_aon"}, |
| 440 | domain: "Aon", |
| 441 | base_addr: "0x40430000" |
| 442 | }, |
Timothy Chen | 6f98f35 | 2021-03-10 16:27:29 -0800 | [diff] [blame] | 443 | { name: "adc_ctrl_aon", |
Eric Shiu | 5f1d304 | 2021-03-17 17:24:11 -0700 | [diff] [blame] | 444 | type: "adc_ctrl", |
Timothy Chen | 6f98f35 | 2021-03-10 16:27:29 -0800 | [diff] [blame] | 445 | clock_srcs: {clk_i: "io_div4", clk_aon_i: "aon"}, |
| 446 | clock_group: "peri", |
| 447 | reset_connections: {rst_ni: "sys_io_div4", rst_slow_ni: "sys_aon"}, |
| 448 | clock_reset_export: ["ast"], |
| 449 | domain: "Aon", |
| 450 | base_addr: "0x40440000" |
Michael Schaffner | d13f442 | 2021-04-20 10:27:48 -0700 | [diff] [blame^] | 451 | }, |
Martin Lueker-Boden | 0d63fe0 | 2021-03-10 17:30:37 -0800 | [diff] [blame] | 452 | { name: "pwm_aon", |
| 453 | type: "pwm", |
| 454 | clock_srcs: {clk_i: "io_div4", clk_core_i: "aon"}, |
| 455 | clock_group: "powerup", |
| 456 | reset_connections: {rst_ni: "sys_io_div4", rst_core_ni: "sys_aon"}, |
| 457 | domain: "Aon", |
| 458 | base_addr: "0x40450000", |
Timothy Chen | 6f98f35 | 2021-03-10 16:27:29 -0800 | [diff] [blame] | 459 | }, |
Timothy Chen | 92b526e | 2021-02-01 21:23:42 -0800 | [diff] [blame] | 460 | { name: "pinmux_aon", |
Martin Lueker-Boden | d5a1e4b | 2020-11-11 19:46:33 -0800 | [diff] [blame] | 461 | type: "pinmux", |
Timothy Chen | 92b526e | 2021-02-01 21:23:42 -0800 | [diff] [blame] | 462 | clock_srcs: {clk_i: "io_div4", clk_aon_i: "aon"}, |
Timothy Chen | 383afb8 | 2021-02-23 13:18:53 -0800 | [diff] [blame] | 463 | clock_group: "powerup", |
Timothy Chen | 92b526e | 2021-02-01 21:23:42 -0800 | [diff] [blame] | 464 | reset_connections: {rst_ni: "sys_io_div4", rst_aon_ni: "sys_aon"}, |
Martin Lueker-Boden | d5a1e4b | 2020-11-11 19:46:33 -0800 | [diff] [blame] | 465 | domain: "Aon", |
| 466 | base_addr: "0x40460000", |
Timothy Chen | 9443221 | 2021-03-01 22:29:18 -0800 | [diff] [blame] | 467 | attr: "templated", |
Martin Lueker-Boden | d5a1e4b | 2020-11-11 19:46:33 -0800 | [diff] [blame] | 468 | }, |
Timothy Chen | 2b8ef76 | 2021-02-16 14:44:55 -0800 | [diff] [blame] | 469 | { name: "aon_timer_aon", |
| 470 | type: "aon_timer", |
| 471 | clock_srcs: {clk_i: "io_div4", clk_aon_i: "aon"}, |
| 472 | clock_group: "timers", |
| 473 | reset_connections: {rst_ni: "sys_io_div4", rst_aon_ni: "sys_aon"}, |
| 474 | domain: "Aon", |
| 475 | base_addr: "0x40470000", |
Timothy Chen | 9443221 | 2021-03-01 22:29:18 -0800 | [diff] [blame] | 476 | attr: "templated", |
| 477 | }, |
| 478 | { name: "ast", |
| 479 | type: "ast", |
| 480 | clock_srcs: {clk_i: "io_div4"}, |
| 481 | clock_group: "secure", |
| 482 | clock_reset_export: ["ast"], |
| 483 | reset_connections: {rst_ni: "sys_io_div4"}, |
| 484 | base_addr: "0x40480000", |
| 485 | attr: "reggen_only", |
Timothy Chen | 2b8ef76 | 2021-02-16 14:44:55 -0800 | [diff] [blame] | 486 | }, |
Timothy Chen | 92b526e | 2021-02-01 21:23:42 -0800 | [diff] [blame] | 487 | { name: "sensor_ctrl_aon", |
| 488 | type: "sensor_ctrl", |
| 489 | clock_srcs: {clk_i: "io_div4"}, |
| 490 | clock_group: "secure", |
Timothy Chen | 4c8905e | 2020-08-26 10:34:33 -0700 | [diff] [blame] | 491 | clock_reset_export: ["ast"], |
Timothy Chen | 92b526e | 2021-02-01 21:23:42 -0800 | [diff] [blame] | 492 | reset_connections: {rst_ni: "sys_io_div4"}, |
| 493 | domain: "Aon", |
Timothy Chen | 2b8ef76 | 2021-02-16 14:44:55 -0800 | [diff] [blame] | 494 | base_addr: "0x40490000", |
Timothy Chen | 9443221 | 2021-03-01 22:29:18 -0800 | [diff] [blame] | 495 | attr: "reggen_top", |
Pirmin Vogel | ea91b30 | 2020-01-14 18:53:01 +0000 | [diff] [blame] | 496 | }, |
Timothy Chen | 92b526e | 2021-02-01 21:23:42 -0800 | [diff] [blame] | 497 | { name: "sram_ctrl_ret_aon", |
Michael Schaffner | bd9a354 | 2020-12-21 13:08:32 -0800 | [diff] [blame] | 498 | type: "sram_ctrl", |
| 499 | clock_srcs: {clk_i: "io_div4", clk_otp_i: "io_div4"}, |
| 500 | clock_group: "peri", |
| 501 | reset_connections: {rst_ni: "sys_io_div4", rst_otp_ni: "lc_io_div4"}, |
| 502 | domain: "Aon", |
Timothy Chen | 2b8ef76 | 2021-02-16 14:44:55 -0800 | [diff] [blame] | 503 | base_addr: "0x40500000" |
Michael Schaffner | bd9a354 | 2020-12-21 13:08:32 -0800 | [diff] [blame] | 504 | }, |
Martin Lueker-Boden | d5a1e4b | 2020-11-11 19:46:33 -0800 | [diff] [blame] | 505 | { name: "flash_ctrl", |
| 506 | type: "flash_ctrl", |
Timothy Chen | f52a461 | 2020-12-04 20:37:49 -0800 | [diff] [blame] | 507 | clock_srcs: {clk_i: "main", clk_otp_i: "io_div4"}, |
Martin Lueker-Boden | d5a1e4b | 2020-11-11 19:46:33 -0800 | [diff] [blame] | 508 | clock_group: "infra", |
Timothy Chen | f52a461 | 2020-12-04 20:37:49 -0800 | [diff] [blame] | 509 | reset_connections: {rst_ni: "lc", rst_otp_ni: "lc_io_div4"}, |
Timothy Chen | 8adb20d | 2021-03-25 16:49:04 -0700 | [diff] [blame] | 510 | base_addrs: {core: "0x41000000", prim: "0x41008000"} |
Timothy Chen | 9443221 | 2021-03-01 22:29:18 -0800 | [diff] [blame] | 511 | attr: "templated", |
Martin Lueker-Boden | d5a1e4b | 2020-11-11 19:46:33 -0800 | [diff] [blame] | 512 | }, |
| 513 | { name: "rv_plic", |
| 514 | type: "rv_plic", |
| 515 | clock_srcs: {clk_i: "main"}, |
Timothy Chen | dde6805 | 2020-08-05 16:29:35 -0700 | [diff] [blame] | 516 | clock_group: "secure", |
Martin Lueker-Boden | d5a1e4b | 2020-11-11 19:46:33 -0800 | [diff] [blame] | 517 | reset_connections: {rst_ni: "sys"}, |
| 518 | base_addr: "0x41010000", |
Timothy Chen | 9443221 | 2021-03-01 22:29:18 -0800 | [diff] [blame] | 519 | attr: "templated", |
Martin Lueker-Boden | d5a1e4b | 2020-11-11 19:46:33 -0800 | [diff] [blame] | 520 | }, |
| 521 | { name: "aes", |
| 522 | type: "aes", |
Pirmin Vogel | 95cea45 | 2021-03-02 08:54:01 +0100 | [diff] [blame] | 523 | clock_srcs: {clk_i: "main", clk_edn_i: "main"}, |
Martin Lueker-Boden | d5a1e4b | 2020-11-11 19:46:33 -0800 | [diff] [blame] | 524 | clock_group: "trans", |
Pirmin Vogel | 95cea45 | 2021-03-02 08:54:01 +0100 | [diff] [blame] | 525 | reset_connections: {rst_ni: "sys", rst_edn_ni: "sys"}, |
Martin Lueker-Boden | d5a1e4b | 2020-11-11 19:46:33 -0800 | [diff] [blame] | 526 | base_addr: "0x41100000", |
| 527 | }, |
| 528 | { name: "hmac", |
| 529 | type: "hmac", |
| 530 | clock_srcs: {clk_i: "main"}, |
| 531 | clock_group: "trans", |
| 532 | reset_connections: {rst_ni: "sys"}, |
| 533 | base_addr: "0x41110000", |
| 534 | }, |
| 535 | { name: "kmac" |
| 536 | type: "kmac" |
Eunchan Kim | 6baeda4 | 2021-01-07 12:32:16 -0800 | [diff] [blame] | 537 | clock_srcs: {clk_i: "main", clk_edn_i: "main"} |
Martin Lueker-Boden | d5a1e4b | 2020-11-11 19:46:33 -0800 | [diff] [blame] | 538 | clock_group: "trans" |
Eunchan Kim | 6baeda4 | 2021-01-07 12:32:16 -0800 | [diff] [blame] | 539 | reset_connections: {rst_ni: "sys", rst_edn_ni: "sys"} |
Martin Lueker-Boden | d5a1e4b | 2020-11-11 19:46:33 -0800 | [diff] [blame] | 540 | base_addr: "0x41120000" |
Timothy Chen | dde6805 | 2020-08-05 16:29:35 -0700 | [diff] [blame] | 541 | }, |
Timothy Chen | 3c3f348 | 2020-09-09 18:45:41 -0700 | [diff] [blame] | 542 | { name: "keymgr", |
| 543 | type: "keymgr", |
Timothy Chen | d5820b0 | 2020-12-05 17:19:06 -0800 | [diff] [blame] | 544 | clock_srcs: {clk_i: "main", clk_edn_i: "main"}, |
Timothy Chen | 3c3f348 | 2020-09-09 18:45:41 -0700 | [diff] [blame] | 545 | clock_group: "secure", |
Timothy Chen | d5820b0 | 2020-12-05 17:19:06 -0800 | [diff] [blame] | 546 | reset_connections: {rst_ni: "sys", rst_edn_ni: "sys"}, |
Martin Lueker-Boden | d5a1e4b | 2020-11-11 19:46:33 -0800 | [diff] [blame] | 547 | base_addr: "0x41130000", |
Michael Schaffner | 5ae4a23 | 2020-10-06 19:03:43 -0700 | [diff] [blame] | 548 | }, |
Mark Branstad | ff80736 | 2020-11-16 07:56:15 -0800 | [diff] [blame] | 549 | { name: "csrng", |
| 550 | type: "csrng", |
| 551 | clock_srcs: {clk_i: "main"}, |
| 552 | clock_group: "secure", |
| 553 | reset_connections: {rst_ni: "sys"}, |
| 554 | base_addr: "0x41150000", |
| 555 | }, |
| 556 | { name: "entropy_src", |
| 557 | type: "entropy_src", |
| 558 | clock_srcs: {clk_i: "main"}, |
| 559 | clock_group: "secure", |
| 560 | reset_connections: {rst_ni: "sys"}, |
Timothy Chen | ea59ad3 | 2021-02-03 17:51:38 -0800 | [diff] [blame] | 561 | clock_reset_export: ["ast"], |
Mark Branstad | ff80736 | 2020-11-16 07:56:15 -0800 | [diff] [blame] | 562 | base_addr: "0x41160000", |
| 563 | }, |
| 564 | { name: "edn0", |
| 565 | type: "edn", |
| 566 | clock_srcs: {clk_i: "main"}, |
| 567 | clock_group: "secure", |
| 568 | reset_connections: {rst_ni: "sys"}, |
Timothy Chen | ea59ad3 | 2021-02-03 17:51:38 -0800 | [diff] [blame] | 569 | clock_reset_export: ["ast"], |
Mark Branstad | ff80736 | 2020-11-16 07:56:15 -0800 | [diff] [blame] | 570 | base_addr: "0x41170000", |
| 571 | }, |
| 572 | { name: "edn1", |
| 573 | type: "edn", |
| 574 | clock_srcs: {clk_i: "main"}, |
| 575 | clock_group: "secure", |
| 576 | reset_connections: {rst_ni: "sys"}, |
| 577 | base_addr: "0x41180000", |
| 578 | }, |
Michael Schaffner | bd9a354 | 2020-12-21 13:08:32 -0800 | [diff] [blame] | 579 | { name: "sram_ctrl_main", |
| 580 | type: "sram_ctrl", |
| 581 | clock_srcs: {clk_i: "main", clk_otp_i: "io_div4"}, |
| 582 | clock_group: "secure", |
| 583 | reset_connections: {rst_ni: "sys", rst_otp_ni: "lc_io_div4"}, |
| 584 | base_addr: "0x411C0000", |
| 585 | }, |
Philipp Wagner | a4a9e40 | 2020-06-22 12:06:56 +0100 | [diff] [blame] | 586 | { name: "otbn", |
| 587 | type: "otbn", |
Greg Chadwick | c62e57b | 2021-02-18 11:30:06 +0000 | [diff] [blame] | 588 | clock_srcs: {clk_i: "main", clk_edn_i: "main"}, |
Philipp Wagner | a4a9e40 | 2020-06-22 12:06:56 +0100 | [diff] [blame] | 589 | clock_group: "trans", |
Greg Chadwick | c62e57b | 2021-02-18 11:30:06 +0000 | [diff] [blame] | 590 | reset_connections: {rst_ni: "sys", rst_edn_ni: "sys"}, |
Michael Schaffner | bd9a354 | 2020-12-21 13:08:32 -0800 | [diff] [blame] | 591 | base_addr: "0x411D0000", |
Philipp Wagner | a4a9e40 | 2020-06-22 12:06:56 +0100 | [diff] [blame] | 592 | }, |
Rupert Swarbrick | 9855d4b | 2020-12-02 08:41:35 +0000 | [diff] [blame] | 593 | { name: "rom_ctrl", |
| 594 | type: "rom_ctrl", |
| 595 | clock_srcs: {clk_i: "main"}, |
| 596 | clock_group: "infra", |
| 597 | reset_connections: {rst_ni: "sys"}, |
| 598 | base_addrs: {rom: "0x00008000", regs: "0x411e0000"} |
| 599 | } |
lowRISC Contributors | 802543a | 2019-08-31 12:12:56 +0100 | [diff] [blame] | 600 | ] |
| 601 | |
| 602 | // Memories (ROM, RAM, eFlash) are defined at the top. |
| 603 | // It utilizes the primitive cells but configurable |
| 604 | memory: [ |
Timothy Chen | 80bd8aa | 2019-10-04 15:57:11 -0700 | [diff] [blame] | 605 | { name: "ram_main", |
Timothy Chen | 0550d69 | 2020-04-20 17:19:35 -0700 | [diff] [blame] | 606 | clock_srcs: {clk_i: "main"}, |
| 607 | clock_group: "infra", |
Timothy Chen | 80bd8aa | 2019-10-04 15:57:11 -0700 | [diff] [blame] | 608 | reset_connections: {rst_ni: "sys"}, |
Michael Schaffner | bd9a354 | 2020-12-21 13:08:32 -0800 | [diff] [blame] | 609 | type: "ram_1p_scr", |
Timothy Chen | 80bd8aa | 2019-10-04 15:57:11 -0700 | [diff] [blame] | 610 | base_addr: "0x10000000", |
Timothy Chen | 15d98b7 | 2021-02-10 20:58:34 -0800 | [diff] [blame] | 611 | size: "0x20000", |
Weicai Yang | 2ac0dee | 2020-12-08 12:19:18 -0800 | [diff] [blame] | 612 | byte_write: "true", |
Timothy Chen | 466585e | 2021-03-01 15:06:01 -0800 | [diff] [blame] | 613 | // data integrity width |
| 614 | integ_width: 7, |
Timothy Chen | 15d98b7 | 2021-02-10 20:58:34 -0800 | [diff] [blame] | 615 | exec: "1", |
Eunchan Kim | e0d37fe | 2020-08-03 12:05:21 -0700 | [diff] [blame] | 616 | inter_signal_list: [ |
| 617 | { struct: "tl" |
| 618 | package: "tlul_pkg" |
| 619 | type: "req_rsp" |
| 620 | act: "rsp" |
| 621 | name: "tl" |
Michael Schaffner | bd9a354 | 2020-12-21 13:08:32 -0800 | [diff] [blame] | 622 | }, |
| 623 | // Interface to SRAM controller |
| 624 | { struct: "sram_scr", |
| 625 | package: "sram_ctrl_pkg" |
| 626 | type: "req_rsp", |
| 627 | name: "sram_scr", |
| 628 | act: "rsp", |
Timothy Chen | 15d98b7 | 2021-02-10 20:58:34 -0800 | [diff] [blame] | 629 | }, |
Timothy Chen | 95d23d9 | 2021-03-11 17:44:59 -0800 | [diff] [blame] | 630 | { struct: "sram_scr_init", |
| 631 | package: "sram_ctrl_pkg" |
| 632 | type: "req_rsp", |
| 633 | name: "sram_scr_init", |
| 634 | act: "rsp", |
| 635 | }, |
Timothy Chen | 15d98b7 | 2021-02-10 20:58:34 -0800 | [diff] [blame] | 636 | { struct: "tl_instr_en", |
| 637 | package: "tlul_pkg" |
| 638 | type: "uni", |
| 639 | name: "en_ifetch", |
| 640 | act: "rcv", |
| 641 | }, |
Timothy Chen | 12cce14 | 2021-03-02 18:11:01 -0800 | [diff] [blame] | 642 | { struct: "logic", |
| 643 | package: "" |
| 644 | type: "uni", |
| 645 | name: "intg_error", |
| 646 | act: "req", |
| 647 | }, |
Timothy Chen | 685d649 | 2021-03-09 21:28:39 -0800 | [diff] [blame] | 648 | // Interface to memory configuration |
| 649 | { struct: "ram_1p_cfg", |
| 650 | package: "prim_ram_1p_pkg", |
| 651 | type: "uni", |
| 652 | name: "cfg", |
| 653 | act: "rcv" |
| 654 | } |
Eunchan Kim | e0d37fe | 2020-08-03 12:05:21 -0700 | [diff] [blame] | 655 | ] |
| 656 | }, |
Timothy Chen | 92b526e | 2021-02-01 21:23:42 -0800 | [diff] [blame] | 657 | { name: "ram_ret_aon", |
Timothy Chen | 6b70fd2 | 2020-08-20 14:01:26 -0700 | [diff] [blame] | 658 | clock_srcs: {clk_i: "io_div4"}, |
Timothy Chen | 2c9e1a9 | 2020-06-29 15:03:25 -0700 | [diff] [blame] | 659 | clock_group: "infra", |
Timothy Chen | 6b70fd2 | 2020-08-20 14:01:26 -0700 | [diff] [blame] | 660 | reset_connections: {rst_ni: "sys_io_div4"}, |
Timothy Chen | 7f8cc8e | 2020-11-11 13:15:57 -0800 | [diff] [blame] | 661 | domain: "Aon", |
Michael Schaffner | bd9a354 | 2020-12-21 13:08:32 -0800 | [diff] [blame] | 662 | type: "ram_1p_scr", |
Silvestrs Timofejevs | af2b5c2 | 2021-02-05 10:33:18 +0000 | [diff] [blame] | 663 | base_addr: "0x40600000", |
Timothy Chen | 7f8cc8e | 2020-11-11 13:15:57 -0800 | [diff] [blame] | 664 | size: "0x1000", |
Weicai Yang | 2ac0dee | 2020-12-08 12:19:18 -0800 | [diff] [blame] | 665 | byte_write: "true", |
Timothy Chen | 466585e | 2021-03-01 15:06:01 -0800 | [diff] [blame] | 666 | // data integrity width |
| 667 | integ_width: 7, |
Timothy Chen | 15d98b7 | 2021-02-10 20:58:34 -0800 | [diff] [blame] | 668 | exec: "0", |
Eunchan Kim | e0d37fe | 2020-08-03 12:05:21 -0700 | [diff] [blame] | 669 | inter_signal_list: [ |
| 670 | { struct: "tl" |
| 671 | package: "tlul_pkg" |
| 672 | type: "req_rsp" |
| 673 | act: "rsp" |
| 674 | name: "tl" |
Michael Schaffner | bd9a354 | 2020-12-21 13:08:32 -0800 | [diff] [blame] | 675 | }, |
| 676 | // Interface to SRAM controller |
| 677 | { struct: "sram_scr", |
| 678 | package: "sram_ctrl_pkg" |
| 679 | type: "req_rsp", |
| 680 | name: "sram_scr", |
| 681 | act: "rsp", |
Timothy Chen | 15d98b7 | 2021-02-10 20:58:34 -0800 | [diff] [blame] | 682 | }, |
Timothy Chen | 95d23d9 | 2021-03-11 17:44:59 -0800 | [diff] [blame] | 683 | { struct: "sram_scr_init", |
| 684 | package: "sram_ctrl_pkg" |
| 685 | type: "req_rsp", |
| 686 | name: "sram_scr_init", |
| 687 | act: "rsp", |
| 688 | }, |
Timothy Chen | 15d98b7 | 2021-02-10 20:58:34 -0800 | [diff] [blame] | 689 | { struct: "tl_instr_en", |
| 690 | package: "tlul_pkg" |
| 691 | type: "uni", |
| 692 | name: "en_ifetch", |
| 693 | act: "rcv", |
| 694 | }, |
Timothy Chen | 12cce14 | 2021-03-02 18:11:01 -0800 | [diff] [blame] | 695 | { struct: "logic", |
| 696 | package: "" |
| 697 | type: "uni", |
| 698 | name: "intg_error", |
| 699 | act: "req", |
| 700 | }, |
Timothy Chen | 685d649 | 2021-03-09 21:28:39 -0800 | [diff] [blame] | 701 | // Interface to memory configuration |
| 702 | { struct: "ram_1p_cfg", |
| 703 | package: "prim_ram_1p_pkg", |
| 704 | type: "uni", |
| 705 | name: "cfg", |
| 706 | act: "rcv" |
| 707 | } |
Eunchan Kim | e0d37fe | 2020-08-03 12:05:21 -0700 | [diff] [blame] | 708 | ] |
| 709 | }, |
Timothy Chen | 80bd8aa | 2019-10-04 15:57:11 -0700 | [diff] [blame] | 710 | { name: "eflash", |
Timothy Chen | 0550d69 | 2020-04-20 17:19:35 -0700 | [diff] [blame] | 711 | clock_srcs: {clk_i: "main"}, |
| 712 | clock_group: "infra", |
Timothy Chen | 80bd8aa | 2019-10-04 15:57:11 -0700 | [diff] [blame] | 713 | reset_connections: {rst_ni: "lc"}, |
| 714 | type: "eflash", |
| 715 | base_addr: "0x20000000", |
Timothy Chen | 1daf582 | 2020-10-26 17:28:15 -0700 | [diff] [blame] | 716 | banks: 2, |
Timothy Chen | 4367c48 | 2021-01-22 00:18:45 -0800 | [diff] [blame] | 717 | pages_per_bank: 256, |
Timothy Chen | e97e0b8 | 2020-12-11 17:18:43 -0800 | [diff] [blame] | 718 | program_resolution: 8, // maximum number of flash words allowed to program at one time |
Weicai Yang | 55b2cdf | 2020-04-10 15:40:30 -0700 | [diff] [blame] | 719 | swaccess: "ro", |
Eunchan Kim | e4a8507 | 2020-02-05 16:00:00 -0800 | [diff] [blame] | 720 | inter_signal_list: [ |
| 721 | { struct: "flash", // flash_req_t, flash_rsp_t |
| 722 | type: "req_rsp", |
| 723 | name: "flash_ctrl", // flash_ctrl_i (req), flash_ctrl_o (rsp) |
Eunchan Kim | 40098a9 | 2020-04-17 12:22:36 -0700 | [diff] [blame] | 724 | act: "rsp", |
Timothy Chen | ac62065 | 2020-06-25 13:48:50 -0700 | [diff] [blame] | 725 | }, |
Eunchan Kim | e0d37fe | 2020-08-03 12:05:21 -0700 | [diff] [blame] | 726 | { struct: "tl" |
| 727 | package: "tlul_pkg" |
| 728 | type: "req_rsp" |
| 729 | act: "rsp" |
| 730 | name: "tl" |
Timothy Chen | d2c9ff4 | 2020-11-19 16:03:54 -0800 | [diff] [blame] | 731 | }, |
Michael Schaffner | 60aa10e | 2020-12-07 19:39:08 -0800 | [diff] [blame] | 732 | { struct: "lc_tx", |
| 733 | package: "lc_ctrl_pkg", |
| 734 | type: "uni" |
| 735 | act: "rcv" |
Timothy Chen | b1ba59b | 2021-01-07 12:18:11 -0800 | [diff] [blame] | 736 | name: "lc_nvm_debug_en" |
| 737 | }, |
Timothy Chen | 1674110 | 2021-01-15 17:32:13 -0800 | [diff] [blame] | 738 | { struct: "lc_tx" |
| 739 | package: "lc_ctrl_pkg" |
Timothy Chen | b1ba59b | 2021-01-07 12:18:11 -0800 | [diff] [blame] | 740 | type: "uni" |
| 741 | act: "rcv" |
| 742 | name: "flash_bist_enable" |
Michael Schaffner | 60aa10e | 2020-12-07 19:39:08 -0800 | [diff] [blame] | 743 | }, |
Timothy Chen | d2c9ff4 | 2020-11-19 16:03:54 -0800 | [diff] [blame] | 744 | { struct: "logic" |
| 745 | package: "" |
| 746 | type: "uni" |
| 747 | act: "rcv" |
| 748 | name: "flash_power_down_h" |
| 749 | }, |
| 750 | { struct: "logic" |
| 751 | package: "" |
| 752 | type: "uni" |
| 753 | act: "rcv" |
| 754 | name: "flash_power_ready_h" |
| 755 | }, |
| 756 | { struct: "logic", |
| 757 | package: "", |
Michael Schaffner | 9c3d6a8 | 2021-02-02 17:05:31 -0800 | [diff] [blame] | 758 | width: "4", |
Timothy Chen | d2c9ff4 | 2020-11-19 16:03:54 -0800 | [diff] [blame] | 759 | type: "uni" |
| 760 | act: "rcv" |
| 761 | name: "flash_test_mode_a" |
| 762 | }, |
| 763 | { struct: "logic", |
| 764 | package: "", |
| 765 | type: "uni" |
| 766 | act: "rcv" |
| 767 | name: "flash_test_voltage_h" |
| 768 | }, |
Eunchan Kim | e4a8507 | 2020-02-05 16:00:00 -0800 | [diff] [blame] | 769 | ], |
| 770 | }, |
lowRISC Contributors | 802543a | 2019-08-31 12:12:56 +0100 | [diff] [blame] | 771 | ], |
| 772 | |
Timothy Chen | 075ed37 | 2021-02-04 14:42:29 -0800 | [diff] [blame] | 773 | // The port data structure is not something that should be used liberally. |
| 774 | // It is used specifically to assign special attributes to specific ports. |
| 775 | // For example, this allows us to designate a port as part of inter-module |
| 776 | // connections. |
| 777 | port: [ |
Timothy Chen | 685d649 | 2021-03-09 21:28:39 -0800 | [diff] [blame] | 778 | { name: "ast", |
Timothy Chen | 075ed37 | 2021-02-04 14:42:29 -0800 | [diff] [blame] | 779 | inter_signal_list: [ |
| 780 | { struct: "edn", |
| 781 | type: "req_rsp", |
| 782 | name: "edn", |
| 783 | // The activity direction for a port inter-signal is "opposite" of |
| 784 | // what the external module actually needs. |
| 785 | act: "rsp", |
| 786 | package: "edn_pkg", |
| 787 | }, |
Timothy Chen | 685d649 | 2021-03-09 21:28:39 -0800 | [diff] [blame] | 788 | |
| 789 | { struct: "lc_tx", |
| 790 | type: "uni", |
| 791 | name: "lc_dft_en", |
| 792 | // The activity direction for a port inter-signal is "opposite" of |
| 793 | // what the external module actually needs. |
| 794 | act: "req", |
| 795 | package: "lc_ctrl_pkg", |
| 796 | }, |
| 797 | |
| 798 | { struct: "ram_1p_cfg", |
| 799 | package: "prim_ram_1p_pkg", |
| 800 | type: "uni", |
| 801 | name: "ram_1p_cfg", |
| 802 | // The activity direction for a port inter-signal is "opposite" of |
| 803 | // what the external module actually needs. |
| 804 | act: "rcv" |
| 805 | }, |
| 806 | |
| 807 | { struct: "ram_2p_cfg", |
| 808 | package: "prim_ram_2p_pkg", |
| 809 | type: "uni", |
| 810 | name: "ram_2p_cfg", |
| 811 | // The activity direction for a port inter-signal is "opposite" of |
| 812 | // what the external module actually needs. |
| 813 | act: "rcv" |
| 814 | }, |
| 815 | |
| 816 | { struct: "rom_cfg", |
| 817 | package: "prim_rom_pkg", |
| 818 | type: "uni", |
| 819 | name: "rom_cfg", |
| 820 | // The activity direction for a port inter-signal is "opposite" of |
| 821 | // what the external module actually needs. |
| 822 | act: "rcv" |
| 823 | } |
Timothy Chen | 075ed37 | 2021-02-04 14:42:29 -0800 | [diff] [blame] | 824 | ] |
| 825 | }, |
| 826 | ] |
| 827 | |
Eunchan Kim | e4a8507 | 2020-02-05 16:00:00 -0800 | [diff] [blame] | 828 | // Inter-module Connection. |
| 829 | // format: |
| 830 | // requester: [ resp1, resp2, ... ], |
| 831 | // |
Eunchan Kim | 40098a9 | 2020-04-17 12:22:36 -0700 | [diff] [blame] | 832 | // the field and value should be module_inst.port_name |
Eunchan Kim | e4a8507 | 2020-02-05 16:00:00 -0800 | [diff] [blame] | 833 | // e.g flash_ctrl0.flash: [flash_phy0.flash_ctrl] |
| 834 | inter_module: { |
Eunchan Kim | 40098a9 | 2020-04-17 12:22:36 -0700 | [diff] [blame] | 835 | 'connect': { |
Michael Schaffner | 9bb75e9 | 2021-03-12 15:13:31 -0800 | [diff] [blame] | 836 | 'ast.ram_1p_cfg' : ['otbn.ram_cfg', 'ram_main.cfg', 'ram_ret_aon.cfg', 'rv_core_ibex.ram_cfg'], |
Timothy Chen | 685d649 | 2021-03-09 21:28:39 -0800 | [diff] [blame] | 837 | 'ast.ram_2p_cfg' : ['spi_device.ram_cfg', 'usbdev.ram_cfg'], |
Rupert Swarbrick | 9855d4b | 2020-12-02 08:41:35 +0000 | [diff] [blame] | 838 | 'ast.rom_cfg' : ['rom_ctrl.rom_cfg'], |
Timothy Chen | 92b526e | 2021-02-01 21:23:42 -0800 | [diff] [blame] | 839 | 'alert_handler.crashdump' : ['rstmgr_aon.alert_dump'], |
Timothy Chen | e4e857d | 2020-12-16 18:00:01 -0800 | [diff] [blame] | 840 | 'alert_handler.esc_rx' : ['rv_core_ibex.esc_nmi_rx', |
| 841 | 'lc_ctrl.esc_wipe_secrets_rx', |
| 842 | 'lc_ctrl.esc_scrap_state_rx' |
Timothy Chen | 92b526e | 2021-02-01 21:23:42 -0800 | [diff] [blame] | 843 | 'pwrmgr_aon.esc_rst_rx'], |
Timothy Chen | e4e857d | 2020-12-16 18:00:01 -0800 | [diff] [blame] | 844 | 'alert_handler.esc_tx' : ['rv_core_ibex.esc_nmi_tx', |
| 845 | 'lc_ctrl.esc_wipe_secrets_tx', |
| 846 | 'lc_ctrl.esc_scrap_state_tx', |
Timothy Chen | 92b526e | 2021-02-01 21:23:42 -0800 | [diff] [blame] | 847 | 'pwrmgr_aon.esc_rst_tx'], |
Timothy Chen | e4e857d | 2020-12-16 18:00:01 -0800 | [diff] [blame] | 848 | 'csrng.csrng_cmd' : ['edn0.csrng_cmd', 'edn1.csrng_cmd'], |
Timothy Chen | f52a461 | 2020-12-04 20:37:49 -0800 | [diff] [blame] | 849 | 'csrng.entropy_src_hw_if' : ['entropy_src.entropy_src_hw_if'], |
Mark Branstad | de7eba3 | 2021-03-22 14:18:38 -0700 | [diff] [blame] | 850 | 'csrng.cs_aes_halt' : ['entropy_src.cs_aes_halt'], |
Timothy Chen | d39402a | 2020-12-15 20:34:09 -0800 | [diff] [blame] | 851 | 'flash_ctrl.flash' : ['eflash.flash_ctrl'], |
| 852 | 'flash_ctrl.keymgr' : ['keymgr.flash'], |
| 853 | 'flash_ctrl.otp' : ['otp_ctrl.flash_otp_key'], |
| 854 | 'flash_ctrl.rma_req' : ['lc_ctrl.lc_flash_rma_req'], |
| 855 | 'flash_ctrl.rma_ack' : ['lc_ctrl.lc_flash_rma_ack'], |
| 856 | 'flash_ctrl.rma_seed' : ['lc_ctrl.lc_flash_rma_seed'], |
Michael Schaffner | bd9a354 | 2020-12-21 13:08:32 -0800 | [diff] [blame] | 857 | 'sram_ctrl_main.sram_scr' : ['ram_main.sram_scr'], |
Timothy Chen | 95d23d9 | 2021-03-11 17:44:59 -0800 | [diff] [blame] | 858 | 'sram_ctrl_main.sram_scr_init' : ['ram_main.sram_scr_init'], |
| 859 | 'sram_ctrl_ret_aon.sram_scr' : ['ram_ret_aon.sram_scr'], |
| 860 | 'sram_ctrl_ret_aon.sram_scr_init' : ['ram_ret_aon.sram_scr_init'], |
Timothy Chen | 12cce14 | 2021-03-02 18:11:01 -0800 | [diff] [blame] | 861 | 'sram_ctrl_main.en_ifetch' : ['ram_main.en_ifetch'], |
| 862 | 'sram_ctrl_ret_aon.en_ifetch' : ['ram_ret_aon.en_ifetch'], |
| 863 | 'ram_main.intg_error' : ['sram_ctrl_main.intg_error'], |
| 864 | 'ram_ret_aon.intg_error' : ['sram_ctrl_ret_aon.intg_error'], |
Michael Schaffner | bd9a354 | 2020-12-21 13:08:32 -0800 | [diff] [blame] | 865 | 'otp_ctrl.sram_otp_key' : ['sram_ctrl_main.sram_otp_key', |
Timothy Chen | 92b526e | 2021-02-01 21:23:42 -0800 | [diff] [blame] | 866 | 'sram_ctrl_ret_aon.sram_otp_key'] |
| 867 | 'pwrmgr_aon.pwr_flash' : ['flash_ctrl.pwrmgr'], |
| 868 | 'pwrmgr_aon.pwr_rst' : ['rstmgr_aon.pwr'], |
| 869 | 'pwrmgr_aon.pwr_clk' : ['clkmgr_aon.pwr'], |
| 870 | 'pwrmgr_aon.pwr_otp' : ['otp_ctrl.pwr_otp'], |
| 871 | 'pwrmgr_aon.pwr_lc' : ['lc_ctrl.pwr_lc'], |
Timothy Chen | 383afb8 | 2021-02-23 13:18:53 -0800 | [diff] [blame] | 872 | 'pwrmgr_aon.strap' : ['pinmux_aon.strap_en'], |
| 873 | 'pwrmgr_aon.low_power' : ['pinmux_aon.sleep_en','aon_timer_aon.sleep_mode'], |
Timothy Chen | d39402a | 2020-12-15 20:34:09 -0800 | [diff] [blame] | 874 | 'flash_ctrl.keymgr' : ['keymgr.flash'], |
Timothy Chen | 92b526e | 2021-02-01 21:23:42 -0800 | [diff] [blame] | 875 | 'alert_handler.crashdump' : ['rstmgr_aon.alert_dump'], |
Tom Roberts | c88e97f | 2021-03-04 13:38:20 +0000 | [diff] [blame] | 876 | 'rv_core_ibex.crash_dump' : ['rstmgr_aon.cpu_dump'], |
Mark Branstad | ff80736 | 2020-11-16 07:56:15 -0800 | [diff] [blame] | 877 | 'csrng.entropy_src_hw_if' : ['entropy_src.entropy_src_hw_if'], |
Timothy Chen | c2b279a | 2021-01-14 18:53:34 -0800 | [diff] [blame] | 878 | |
| 879 | // usbdev connection to pinmux |
Timothy Chen | 92b526e | 2021-02-01 21:23:42 -0800 | [diff] [blame] | 880 | 'usbdev.usb_out_of_rst' : ['pinmux_aon.usb_out_of_rst'], |
| 881 | 'usbdev.usb_aon_wake_en' : ['pinmux_aon.usb_aon_wake_en'], |
| 882 | 'usbdev.usb_aon_wake_ack' : ['pinmux_aon.usb_aon_wake_ack'], |
| 883 | 'usbdev.usb_suspend' : ['pinmux_aon.usb_suspend'], |
| 884 | 'pinmux_aon.usb_state_debug' : ['usbdev.usb_state_debug'], |
Timothy Chen | c2b279a | 2021-01-14 18:53:34 -0800 | [diff] [blame] | 885 | |
Timothy Chen | 72cb99c | 2021-03-08 15:58:44 -0800 | [diff] [blame] | 886 | // Edn connections |
Timothy Chen | 685d649 | 2021-03-09 21:28:39 -0800 | [diff] [blame] | 887 | 'edn0.edn' : ['keymgr.edn', 'otp_ctrl.edn', 'ast.edn', 'kmac.entropy', |
Greg Chadwick | cc0dd2a | 2021-03-10 15:55:58 +0000 | [diff] [blame] | 888 | 'alert_handler.edn', 'aes.edn', 'otbn.edn_urnd'], |
| 889 | 'edn1.edn' : ['otbn.edn_rnd'], |
Timothy Chen | d5820b0 | 2020-12-05 17:19:06 -0800 | [diff] [blame] | 890 | |
Eunchan Kim | 97be1d0 | 2020-11-03 14:33:52 -0800 | [diff] [blame] | 891 | // KeyMgr Sideload & KDF function |
Timothy Chen | 92b526e | 2021-02-01 21:23:42 -0800 | [diff] [blame] | 892 | 'otp_ctrl.otp_keymgr_key' : ['keymgr.otp_key'], |
| 893 | 'keymgr.kmac_key' : ['kmac.keymgr_key'] |
Eunchan Kim | 02eaac7 | 2021-03-23 10:54:25 -0700 | [diff] [blame] | 894 | |
| 895 | // KMAC Application Interface |
| 896 | 'kmac.app' : ['keymgr.kmac_data'] |
| 897 | |
Timothy Chen | 455afcb | 2020-10-01 11:46:35 -0700 | [diff] [blame] | 898 | // The idle connection is automatically connected through topgen. |
| 899 | // The user does not need to explicitly declare anything other than |
| 900 | // an empty list. |
Timothy Chen | 92b526e | 2021-02-01 21:23:42 -0800 | [diff] [blame] | 901 | 'clkmgr_aon.idle' : [], |
Michael Schaffner | 60aa10e | 2020-12-07 19:39:08 -0800 | [diff] [blame] | 902 | |
Michael Schaffner | a706380 | 2021-02-18 18:06:03 -0800 | [diff] [blame] | 903 | // Pinmux JTAG signals |
| 904 | // Note that the DFT TAP will be connected |
| 905 | // automatically by the DFT insertion tool, |
| 906 | // hence it does not have to be connected here. |
| 907 | 'pinmux_aon.lc_jtag' : ['lc_ctrl.jtag'], |
Michael Schaffner | 5f54587 | 2021-03-05 17:54:28 -0800 | [diff] [blame] | 908 | 'pinmux_aon.rv_jtag' : ['rv_dm.jtag'], |
Michael Schaffner | a706380 | 2021-02-18 18:06:03 -0800 | [diff] [blame] | 909 | |
Michael Schaffner | 60aa10e | 2020-12-07 19:39:08 -0800 | [diff] [blame] | 910 | // OTP LC interface |
| 911 | 'otp_ctrl.otp_lc_data' : ['lc_ctrl.otp_lc_data'], |
| 912 | 'lc_ctrl.lc_otp_program' : ['otp_ctrl.lc_otp_program'], |
| 913 | 'lc_ctrl.lc_otp_token' : ['otp_ctrl.lc_otp_token'], |
| 914 | |
| 915 | // HW_CFG broadcast |
Timothy Chen | 8d33919 | 2021-03-31 19:55:16 -0700 | [diff] [blame] | 916 | 'otp_ctrl.otp_hw_cfg' : ['entropy_src.otp_hw_cfg', |
| 917 | 'lc_ctrl.otp_hw_cfg', 'keymgr.otp_hw_cfg', |
Timothy Chen | 15d98b7 | 2021-02-10 20:58:34 -0800 | [diff] [blame] | 918 | 'sram_ctrl_main.otp_hw_cfg', 'sram_ctrl_ret_aon.otp_hw_cfg'], |
Michael Schaffner | 60aa10e | 2020-12-07 19:39:08 -0800 | [diff] [blame] | 919 | |
| 920 | // Diversification constant coming from life cycle |
Timothy Chen | 0a12094 | 2020-12-14 17:20:51 -0800 | [diff] [blame] | 921 | 'lc_ctrl.lc_keymgr_div' : ['keymgr.lc_keymgr_div'], |
Michael Schaffner | 60aa10e | 2020-12-07 19:39:08 -0800 | [diff] [blame] | 922 | |
| 923 | // LC function control signal broadcast |
Michael Schaffner | a706380 | 2021-02-18 18:06:03 -0800 | [diff] [blame] | 924 | 'lc_ctrl.lc_dft_en' : ['otp_ctrl.lc_dft_en', |
Timothy Chen | 685d649 | 2021-03-09 21:28:39 -0800 | [diff] [blame] | 925 | 'pinmux_aon.lc_dft_en', |
| 926 | 'ast.lc_dft_en' |
| 927 | ], |
Timothy Chen | b1ba59b | 2021-01-07 12:18:11 -0800 | [diff] [blame] | 928 | 'lc_ctrl.lc_nvm_debug_en' : ['eflash.lc_nvm_debug_en'], |
Timothy Chen | 15d98b7 | 2021-02-10 20:58:34 -0800 | [diff] [blame] | 929 | 'lc_ctrl.lc_hw_debug_en' : ['sram_ctrl_main.lc_hw_debug_en', |
Michael Schaffner | a706380 | 2021-02-18 18:06:03 -0800 | [diff] [blame] | 930 | 'sram_ctrl_ret_aon.lc_hw_debug_en', |
| 931 | 'pinmux_aon.lc_hw_debug_en'], |
Timothy Chen | 0481a82 | 2021-03-05 14:30:17 -0800 | [diff] [blame] | 932 | 'lc_ctrl.lc_cpu_en' : ['rv_core_ibex.lc_cpu_en', 'aon_timer_aon.lc_cpu_en'], |
Michael Schaffner | dc0c1e9 | 2021-03-02 14:41:31 -0800 | [diff] [blame] | 933 | 'lc_ctrl.lc_keymgr_en' : ['keymgr.lc_keymgr_en'], |
Pirmin Vogel | 144ca84 | 2021-02-26 15:46:43 +0100 | [diff] [blame] | 934 | 'lc_ctrl.lc_escalate_en' : ['aes.lc_escalate_en', |
| 935 | 'otp_ctrl.lc_escalate_en', |
Michael Schaffner | bd9a354 | 2020-12-21 13:08:32 -0800 | [diff] [blame] | 936 | 'sram_ctrl_main.lc_escalate_en', |
Timothy Chen | 92b526e | 2021-02-01 21:23:42 -0800 | [diff] [blame] | 937 | 'sram_ctrl_ret_aon.lc_escalate_en'], |
Michael Schaffner | 60aa10e | 2020-12-07 19:39:08 -0800 | [diff] [blame] | 938 | |
Michael Schaffner | c506dc5 | 2020-12-22 21:07:17 -0800 | [diff] [blame] | 939 | 'lc_ctrl.lc_check_byp_en' : ['otp_ctrl.lc_check_byp_en'], |
Timothy Chen | fa60a60 | 2021-03-23 14:29:40 -0700 | [diff] [blame] | 940 | 'lc_ctrl.lc_clk_byp_req' : ['clkmgr_aon.lc_clk_byp_req'], |
| 941 | 'lc_ctrl.lc_clk_byp_ack' : ['clkmgr_aon.lc_clk_byp_ack'], |
Michael Schaffner | 60aa10e | 2020-12-07 19:39:08 -0800 | [diff] [blame] | 942 | |
Michael Schaffner | 60aa10e | 2020-12-07 19:39:08 -0800 | [diff] [blame] | 943 | // LC access control signal broadcast |
| 944 | 'lc_ctrl.lc_creator_seed_sw_rw_en' : ['otp_ctrl.lc_creator_seed_sw_rw_en', |
Timothy Chen | 0a12094 | 2020-12-14 17:20:51 -0800 | [diff] [blame] | 945 | 'flash_ctrl.lc_creator_seed_sw_rw_en'], |
Michael Schaffner | 60aa10e | 2020-12-07 19:39:08 -0800 | [diff] [blame] | 946 | 'lc_ctrl.lc_owner_seed_sw_rw_en' : ['flash_ctrl.lc_owner_seed_sw_rw_en'], |
| 947 | 'lc_ctrl.lc_iso_part_sw_rd_en' : ['flash_ctrl.lc_iso_part_sw_rd_en'], |
| 948 | 'lc_ctrl.lc_iso_part_sw_wr_en' : ['flash_ctrl.lc_iso_part_sw_wr_en'], |
| 949 | 'lc_ctrl.lc_seed_hw_rd_en' : ['otp_ctrl.lc_seed_hw_rd_en', |
| 950 | 'flash_ctrl.lc_seed_hw_rd_en'], |
Eunchan Kim | 40098a9 | 2020-04-17 12:22:36 -0700 | [diff] [blame] | 951 | } |
| 952 | |
| 953 | // top is to connect to top net/struct. |
| 954 | // It defines the signal in the top and connect from the module, |
| 955 | // use of the signal is up to top template |
Eunchan Kim | e0d37fe | 2020-08-03 12:05:21 -0700 | [diff] [blame] | 956 | 'top': [ |
Timothy Chen | 92b526e | 2021-02-01 21:23:42 -0800 | [diff] [blame] | 957 | 'rstmgr_aon.resets', 'rstmgr_aon.cpu', 'pwrmgr_aon.pwr_cpu', 'clkmgr_aon.clocks', |
Eunchan Kim | e0d37fe | 2020-08-03 12:05:21 -0700 | [diff] [blame] | 958 | |
| 959 | // Xbars |
| 960 | 'main.tl_corei', 'main.tl_cored', 'main.tl_dm_sba', 'main.tl_debug_mem' |
| 961 | ], |
Eunchan Kim | 40098a9 | 2020-04-17 12:22:36 -0700 | [diff] [blame] | 962 | |
| 963 | // ext is to create port in the top. |
Eunchan Kim | 57071c0 | 2020-08-07 13:59:05 -0700 | [diff] [blame] | 964 | 'external': { |
Timothy Chen | 6f98f35 | 2021-03-10 16:27:29 -0800 | [diff] [blame] | 965 | 'adc_ctrl_aon.adc' : 'adc' |
Timothy Chen | 685d649 | 2021-03-09 21:28:39 -0800 | [diff] [blame] | 966 | 'ast.edn' : '', |
| 967 | 'ast.lc_dft_en' : '', |
| 968 | 'ast.ram_1p_cfg' : 'ram_1p_cfg', |
| 969 | 'ast.ram_2p_cfg' : 'ram_2p_cfg', |
| 970 | 'ast.rom_cfg' : 'rom_cfg', |
| 971 | 'clkmgr_aon.clk_main' : 'clk_main', // clock inputs |
Timothy Chen | ea59ad3 | 2021-02-03 17:51:38 -0800 | [diff] [blame] | 972 | 'clkmgr_aon.clk_io' : 'clk_io', // clock inputs |
| 973 | 'clkmgr_aon.clk_usb' : 'clk_usb', // clock inputs |
| 974 | 'clkmgr_aon.clk_aon' : 'clk_aon', // clock inputs |
Timothy Chen | 5649c2a | 2021-02-08 18:32:22 -0800 | [diff] [blame] | 975 | 'clkmgr_aon.jitter_en' : 'clk_main_jitter_en', |
Timothy Chen | fa60a60 | 2021-03-23 14:29:40 -0700 | [diff] [blame] | 976 | 'clkmgr_aon.ast_clk_byp_req' : 'ast_clk_byp_req', |
| 977 | 'clkmgr_aon.ast_clk_byp_ack' : 'ast_clk_byp_ack', |
Timothy Chen | ea59ad3 | 2021-02-03 17:51:38 -0800 | [diff] [blame] | 978 | 'eflash.flash_bist_enable' : 'flash_bist_enable', |
| 979 | 'eflash.flash_power_down_h' : 'flash_power_down_h', |
| 980 | 'eflash.flash_power_ready_h' : 'flash_power_ready_h', |
Timothy Chen | ea59ad3 | 2021-02-03 17:51:38 -0800 | [diff] [blame] | 981 | 'entropy_src.entropy_src_rng' : 'es_rng', |
Timothy Chen | 5270b7c | 2021-03-17 17:38:30 -0700 | [diff] [blame] | 982 | 'entropy_src.rng_fips' : 'es_rng_fips', |
Timothy Chen | 685d649 | 2021-03-09 21:28:39 -0800 | [diff] [blame] | 983 | 'peri.tl_ast' : 'ast_tl', |
| 984 | 'pinmux_aon.dft_strap_test' : 'dft_strap_test' |
| 985 | 'pwrmgr_aon.pwr_ast' : 'pwrmgr_ast', |
| 986 | 'otp_ctrl.otp_ast_pwr_seq' : '', |
| 987 | 'otp_ctrl.otp_ast_pwr_seq_h' : '', |
| 988 | 'sensor_ctrl_aon.ast_alert' : 'sensor_ctrl_ast_alert', |
| 989 | 'sensor_ctrl_aon.ast_status' : 'sensor_ctrl_ast_status', |
Timothy Chen | 685d649 | 2021-03-09 21:28:39 -0800 | [diff] [blame] | 990 | 'sensor_ctrl_aon.ast2pinmux' : 'ast2pinmux', |
| 991 | 'usbdev.usb_ref_val' : '', |
| 992 | 'usbdev.usb_ref_pulse' : '', |
Eunchan Kim | 57071c0 | 2020-08-07 13:59:05 -0700 | [diff] [blame] | 993 | }, |
Eunchan Kim | e4a8507 | 2020-02-05 16:00:00 -0800 | [diff] [blame] | 994 | }, |
| 995 | |
lowRISC Contributors | 802543a | 2019-08-31 12:12:56 +0100 | [diff] [blame] | 996 | debug_mem_base_addr: "0x1A110000", |
| 997 | |
| 998 | // Crossbars: having a top level crossbar |
| 999 | // This version assumes all crossbars are instantiated at the top. |
| 1000 | // Assume xbar.hjson is located in the same directory of top.hjson |
| 1001 | xbar: [ |
| 1002 | { name: "main", |
Timothy Chen | 6b70fd2 | 2020-08-20 14:01:26 -0700 | [diff] [blame] | 1003 | clock_srcs: {clk_main_i: "main", clk_fixed_i: "io_div4"}, |
Timothy Chen | 0550d69 | 2020-04-20 17:19:35 -0700 | [diff] [blame] | 1004 | clock_group: "infra", |
Timothy Chen | 3193b00 | 2019-10-04 16:56:05 -0700 | [diff] [blame] | 1005 | reset: "sys", |
Timothy Chen | 6b70fd2 | 2020-08-20 14:01:26 -0700 | [diff] [blame] | 1006 | reset_connections: {rst_main_ni: "sys", rst_fixed_ni: "sys_io_div4"} |
lowRISC Contributors | 802543a | 2019-08-31 12:12:56 +0100 | [diff] [blame] | 1007 | }, |
Eunchan Kim | 0523f6b | 2019-12-17 13:53:11 -0800 | [diff] [blame] | 1008 | { name: "peri", |
Timothy Chen | 6b70fd2 | 2020-08-20 14:01:26 -0700 | [diff] [blame] | 1009 | clock_srcs: {clk_peri_i: "io_div4"}, |
Timothy Chen | 0550d69 | 2020-04-20 17:19:35 -0700 | [diff] [blame] | 1010 | clock_group: "infra", |
Timothy Chen | 6b70fd2 | 2020-08-20 14:01:26 -0700 | [diff] [blame] | 1011 | reset: "sys_io_div4", |
| 1012 | reset_connections: {rst_peri_ni: "sys_io_div4"}, |
Eunchan Kim | 0523f6b | 2019-12-17 13:53:11 -0800 | [diff] [blame] | 1013 | } |
lowRISC Contributors | 802543a | 2019-08-31 12:12:56 +0100 | [diff] [blame] | 1014 | ], |
| 1015 | |
Michael Schaffner | 74c4ff2 | 2021-03-30 15:43:46 -0700 | [diff] [blame] | 1016 | // ===== PINMUX & PINOUT ====================================================== |
Timothy Chen | 6f98f35 | 2021-03-10 16:27:29 -0800 | [diff] [blame] | 1017 | |
Michael Schaffner | 74c4ff2 | 2021-03-30 15:43:46 -0700 | [diff] [blame] | 1018 | pinout: { |
| 1019 | // IO power bank declaration. |
| 1020 | // This list defines the IO bank power domains on the ASIC. |
| 1021 | // Each individual pad must be in one of the declared power domains. |
| 1022 | banks: ['VCC', 'AVCC', 'VIOA', 'VIOB'], |
| 1023 | // Pad declaration. |
| 1024 | // Each entry must have the following four keys: |
| 1025 | // |
| 1026 | // - name: Name of the pad (this will be exposed at the chiplevel). |
| 1027 | // |
| 1028 | // - type: Pad type (this maps to the pad types defined in prim_pad_wrapper_pkg.sv) |
| 1029 | // |
| 1030 | // - bank: Specifies in which of the IO power banks this pad lives. |
| 1031 | // |
| 1032 | // - connection: Can have either of the following values: |
| 1033 | // |
| 1034 | // 1) 'direct': This is a dedicated IO Pad that is directly connected to a peripheral. |
| 1035 | // |
| 1036 | // 2) 'manual': This is a dedicated IO signal that is not directly connected to a |
| 1037 | // peripheral. It needs to be manually wired up in the template. |
| 1038 | // |
| 1039 | // 3) 'muxed': This is a muxed IO pad that will be connected to the pinmux. |
| 1040 | // |
| 1041 | // Optionally, each pad can also have a 'desc' field for further description. |
Eunchan Kim | 632c6f7 | 2019-09-30 11:11:51 -0700 | [diff] [blame] | 1042 | pads: [ |
Michael Schaffner | 6c5f7a7 | 2021-04-09 11:51:10 -0700 | [diff] [blame] | 1043 | // Special manually connected pads |
Michael Schaffner | 74c4ff2 | 2021-03-30 15:43:46 -0700 | [diff] [blame] | 1044 | { name: 'POR_N' , type: 'InputStd', bank: 'VCC' , connection: 'manual', desc: 'System reset'}, |
Michael Schaffner | 6c5f7a7 | 2021-04-09 11:51:10 -0700 | [diff] [blame] | 1045 | { name: 'USB_P' , type: 'BidirTol', bank: 'VCC' , connection: 'manual', desc: 'USB P signal'}, |
| 1046 | { name: 'USB_N' , type: 'BidirTol', bank: 'VCC' , connection: 'manual', desc: 'USB N signal'}, |
| 1047 | { name: 'CC1' , type: 'InputStd', bank: 'AVCC', connection: 'manual', desc: 'ADC input 1'}, |
| 1048 | { name: 'CC2' , type: 'InputStd', bank: 'AVCC', connection: 'manual', desc: 'ADC input 2'}, |
| 1049 | { name: 'FLASH_TEST_VOLT' , type: 'AnalogIn0',bank: 'VCC' , connection: 'manual', desc: 'Flash test voltage input'}, |
| 1050 | { name: 'FLASH_TEST_MODE0', type: 'InputStd', bank: 'VCC' , connection: 'manual', desc: 'Flash test mode signal'}, |
| 1051 | { name: 'FLASH_TEST_MODE1', type: 'InputStd', bank: 'VCC' , connection: 'manual', desc: 'Flash test mode signal'}, |
Michael Schaffner | d13f442 | 2021-04-20 10:27:48 -0700 | [diff] [blame^] | 1052 | { name: 'OTP_EXT_VOLT' , type: 'AnalogIn0',bank: 'VCC' , connection: 'manual', desc: 'OTP external voltage input'}, |
Michael Schaffner | 6c5f7a7 | 2021-04-09 11:51:10 -0700 | [diff] [blame] | 1053 | // Dedicated IOs |
Michael Schaffner | 74c4ff2 | 2021-03-30 15:43:46 -0700 | [diff] [blame] | 1054 | { name: 'SPI_HOST_D0' , type: 'BidirStd', bank: 'VIOA', connection: 'direct', desc: 'SPI host data'}, |
| 1055 | { name: 'SPI_HOST_D1' , type: 'BidirStd', bank: 'VIOA', connection: 'direct', desc: 'SPI host data'}, |
| 1056 | { name: 'SPI_HOST_D2' , type: 'BidirStd', bank: 'VIOA', connection: 'direct', desc: 'SPI host data'}, |
| 1057 | { name: 'SPI_HOST_D3' , type: 'BidirStd', bank: 'VIOA', connection: 'direct', desc: 'SPI host data'}, |
| 1058 | { name: 'SPI_HOST_CLK' , type: 'BidirStd', bank: 'VIOA', connection: 'direct', desc: 'SPI host clock'}, |
| 1059 | { name: 'SPI_HOST_CS_L' , type: 'BidirStd', bank: 'VIOA', connection: 'direct', desc: 'SPI host chip select'}, |
| 1060 | { name: 'SPI_DEV_D0' , type: 'BidirStd', bank: 'VIOA', connection: 'direct', desc: 'SPI device data'}, |
| 1061 | { name: 'SPI_DEV_D1' , type: 'BidirStd', bank: 'VIOA', connection: 'direct', desc: 'SPI device data'}, |
| 1062 | { name: 'SPI_DEV_D2' , type: 'BidirStd', bank: 'VIOA', connection: 'direct', desc: 'SPI device data'}, |
| 1063 | { name: 'SPI_DEV_D3' , type: 'BidirStd', bank: 'VIOA', connection: 'direct', desc: 'SPI device data'}, |
| 1064 | { name: 'SPI_DEV_CLK' , type: 'InputStd', bank: 'VIOA', connection: 'direct', desc: 'SPI device clock'}, |
| 1065 | { name: 'SPI_DEV_CS_L' , type: 'InputStd', bank: 'VIOA', connection: 'direct', desc: 'SPI device chip select'}, |
Michael Schaffner | 74c4ff2 | 2021-03-30 15:43:46 -0700 | [diff] [blame] | 1066 | // IOA |
Michael Schaffner | 3b1c030 | 2021-04-02 18:01:15 -0700 | [diff] [blame] | 1067 | { name: 'IOA0' , type: 'BidirStd', bank: 'VIOA', connection: 'muxed' , desc: 'Muxed IO pad'}, |
| 1068 | { name: 'IOA1' , type: 'BidirStd', bank: 'VIOA', connection: 'muxed' , desc: 'Muxed IO pad'}, |
| 1069 | { name: 'IOA2' , type: 'BidirStd', bank: 'VIOA', connection: 'muxed' , desc: 'Muxed IO pad'}, |
| 1070 | { name: 'IOA3' , type: 'BidirStd', bank: 'VIOA', connection: 'muxed' , desc: 'Muxed IO pad'}, |
| 1071 | { name: 'IOA4' , type: 'BidirStd', bank: 'VIOA', connection: 'muxed' , desc: 'Muxed IO pad'}, |
| 1072 | { name: 'IOA5' , type: 'BidirStd', bank: 'VIOA', connection: 'muxed' , desc: 'Muxed IO pad'}, |
| 1073 | { name: 'IOA6' , type: 'BidirOd', bank: 'VIOA', connection: 'muxed' , desc: 'Muxed IO pad'}, |
| 1074 | { name: 'IOA7' , type: 'BidirOd', bank: 'VIOA', connection: 'muxed' , desc: 'Muxed IO pad'}, |
| 1075 | { name: 'IOA8' , type: 'BidirOd', bank: 'VIOA', connection: 'muxed' , desc: 'Muxed IO pad'}, |
Michael Schaffner | 74c4ff2 | 2021-03-30 15:43:46 -0700 | [diff] [blame] | 1076 | // IOB |
Michael Schaffner | 3b1c030 | 2021-04-02 18:01:15 -0700 | [diff] [blame] | 1077 | { name: 'IOB0' , type: 'BidirStd', bank: 'VIOB', connection: 'muxed' , desc: 'Muxed IO pad'}, |
| 1078 | { name: 'IOB1' , type: 'BidirStd', bank: 'VIOB', connection: 'muxed' , desc: 'Muxed IO pad'}, |
| 1079 | { name: 'IOB2' , type: 'BidirStd', bank: 'VIOB', connection: 'muxed' , desc: 'Muxed IO pad'}, |
| 1080 | { name: 'IOB3' , type: 'BidirStd', bank: 'VIOB', connection: 'muxed' , desc: 'Muxed IO pad'}, |
| 1081 | { name: 'IOB4' , type: 'BidirStd', bank: 'VIOB', connection: 'muxed' , desc: 'Muxed IO pad'}, |
| 1082 | { name: 'IOB5' , type: 'BidirStd', bank: 'VIOB', connection: 'muxed' , desc: 'Muxed IO pad'}, |
| 1083 | { name: 'IOB6' , type: 'BidirStd', bank: 'VIOB', connection: 'muxed' , desc: 'Muxed IO pad'}, |
| 1084 | { name: 'IOB7' , type: 'BidirStd', bank: 'VIOB', connection: 'muxed' , desc: 'Muxed IO pad'}, |
| 1085 | { name: 'IOB8' , type: 'BidirStd', bank: 'VIOB', connection: 'muxed' , desc: 'Muxed IO pad'}, |
Michael Schaffner | 74c4ff2 | 2021-03-30 15:43:46 -0700 | [diff] [blame] | 1086 | { name: 'IOB9' , type: 'BidirOd' , bank: 'VIOB', connection: 'muxed' , desc: 'Muxed IO pad'}, |
Michael Schaffner | 3b1c030 | 2021-04-02 18:01:15 -0700 | [diff] [blame] | 1087 | { name: 'IOB10' , type: 'BidirOd' , bank: 'VIOB', connection: 'muxed' , desc: 'Muxed IO pad'}, |
| 1088 | { name: 'IOB11' , type: 'BidirOd' , bank: 'VIOB', connection: 'muxed' , desc: 'Muxed IO pad'}, |
| 1089 | { name: 'IOB12' , type: 'BidirOd' , bank: 'VIOB', connection: 'muxed' , desc: 'Muxed IO pad'}, |
Michael Schaffner | 74c4ff2 | 2021-03-30 15:43:46 -0700 | [diff] [blame] | 1090 | // IOC |
Michael Schaffner | 3b1c030 | 2021-04-02 18:01:15 -0700 | [diff] [blame] | 1091 | { name: 'IOC0' , type: 'BidirStd', bank: 'VCC' , connection: 'muxed' , desc: 'Muxed IO pad'}, |
| 1092 | { name: 'IOC1' , type: 'BidirStd', bank: 'VCC' , connection: 'muxed' , desc: 'Muxed IO pad'}, |
| 1093 | { name: 'IOC2' , type: 'BidirStd', bank: 'VCC' , connection: 'muxed' , desc: 'Muxed IO pad'}, |
| 1094 | { name: 'IOC3' , type: 'BidirStd', bank: 'VCC' , connection: 'muxed' , desc: 'Muxed IO pad'}, |
| 1095 | { name: 'IOC4' , type: 'BidirStd', bank: 'VCC' , connection: 'muxed' , desc: 'Muxed IO pad'}, |
| 1096 | { name: 'IOC5' , type: 'BidirStd', bank: 'VCC' , connection: 'muxed' , desc: 'Muxed IO pad'}, |
| 1097 | { name: 'IOC6' , type: 'BidirStd', bank: 'VCC' , connection: 'muxed' , desc: 'Muxed IO pad'}, |
| 1098 | { name: 'IOC7' , type: 'BidirStd', bank: 'VCC' , connection: 'muxed' , desc: 'Muxed IO pad'}, |
| 1099 | { name: 'IOC8' , type: 'BidirStd', bank: 'VCC' , connection: 'muxed' , desc: 'Muxed IO pad'}, |
| 1100 | { name: 'IOC9' , type: 'BidirStd', bank: 'VCC' , connection: 'muxed' , desc: 'Muxed IO pad'}, |
Michael Schaffner | 74c4ff2 | 2021-03-30 15:43:46 -0700 | [diff] [blame] | 1101 | { name: 'IOC10' , type: 'BidirOd' , bank: 'VCC' , connection: 'muxed' , desc: 'Muxed IO pad'}, |
| 1102 | { name: 'IOC11' , type: 'BidirOd' , bank: 'VCC' , connection: 'muxed' , desc: 'Muxed IO pad'}, |
Michael Schaffner | 3b1c030 | 2021-04-02 18:01:15 -0700 | [diff] [blame] | 1103 | { name: 'IOC12' , type: 'BidirOd' , bank: 'VCC' , connection: 'muxed' , desc: 'Muxed IO pad'}, |
Michael Schaffner | 74c4ff2 | 2021-03-30 15:43:46 -0700 | [diff] [blame] | 1104 | // IOR |
Michael Schaffner | 3b1c030 | 2021-04-02 18:01:15 -0700 | [diff] [blame] | 1105 | { name: 'IOR0' , type: 'BidirStd', bank: 'VCC' , connection: 'muxed' , desc: 'Muxed IO pad'}, |
| 1106 | { name: 'IOR1' , type: 'BidirStd', bank: 'VCC' , connection: 'muxed' , desc: 'Muxed IO pad'}, |
| 1107 | { name: 'IOR2' , type: 'BidirStd', bank: 'VCC' , connection: 'muxed' , desc: 'Muxed IO pad'}, |
| 1108 | { name: 'IOR3' , type: 'BidirStd', bank: 'VCC' , connection: 'muxed' , desc: 'Muxed IO pad'}, |
| 1109 | { name: 'IOR4' , type: 'BidirStd', bank: 'VCC' , connection: 'muxed' , desc: 'Muxed IO pad'}, |
| 1110 | { name: 'IOR5' , type: 'BidirStd', bank: 'VCC' , connection: 'muxed' , desc: 'Muxed IO pad'}, |
| 1111 | { name: 'IOR6' , type: 'BidirStd', bank: 'VCC' , connection: 'muxed' , desc: 'Muxed IO pad'}, |
| 1112 | { name: 'IOR7' , type: 'BidirStd', bank: 'VCC' , connection: 'muxed' , desc: 'Muxed IO pad'}, |
| 1113 | { name: 'IOR8' , type: 'BidirOd' , bank: 'VCC' , connection: 'direct', desc: 'Dedicated sysrst_ctrl output (ec_rst_l)'}, |
| 1114 | { name: 'IOR9' , type: 'BidirOd' , bank: 'VCC' , connection: 'direct', desc: 'Dedicated sysrst_ctrl output (pwrb_out)'}, |
Michael Schaffner | 74c4ff2 | 2021-03-30 15:43:46 -0700 | [diff] [blame] | 1115 | { name: 'IOR10' , type: 'BidirOd' , bank: 'VCC' , connection: 'muxed' , desc: 'Muxed IO pad'}, |
| 1116 | { name: 'IOR11' , type: 'BidirOd' , bank: 'VCC' , connection: 'muxed' , desc: 'Muxed IO pad'}, |
| 1117 | { name: 'IOR12' , type: 'BidirOd' , bank: 'VCC' , connection: 'muxed' , desc: 'Muxed IO pad'}, |
| 1118 | { name: 'IOR13' , type: 'BidirOd' , bank: 'VCC' , connection: 'muxed' , desc: 'Muxed IO pad'}, |
Eunchan Kim | 632c6f7 | 2019-09-30 11:11:51 -0700 | [diff] [blame] | 1119 | ] |
| 1120 | } |
lowRISC Contributors | 802543a | 2019-08-31 12:12:56 +0100 | [diff] [blame] | 1121 | |
Michael Schaffner | 74c4ff2 | 2021-03-30 15:43:46 -0700 | [diff] [blame] | 1122 | pinmux: { |
| 1123 | // Signal to pinmux/pad mapping. |
| 1124 | // Each entry in the list below must have the following two mandatory keys: |
| 1125 | // |
| 1126 | // - instance: This is the comportable IO instance name where the IO signal comes from. |
| 1127 | // |
| 1128 | // - connection: This key is similar to the connection key in the pinout/pad configuration and |
| 1129 | // can have either of the following values: |
| 1130 | // |
| 1131 | // 1) 'direct': This is a dedicated IO signal that is directly connected to a pad. |
| 1132 | // Such an IO signal must also specify the 'port' and 'pad' keys |
| 1133 | // (see further below). |
| 1134 | // |
| 1135 | // 2) 'manual': This is a dedicated IO signal that is not directly connected to a pad. |
| 1136 | // It needs to be manually wired up in the template. |
| 1137 | // Such an IO signal may have a 'port' key, but no 'pad' key. |
| 1138 | // |
| 1139 | // 3) 'muxed': This is a muxed IO signal that will be connected to the pinmux. |
| 1140 | // Such an IO signal may have a 'port' key, but no 'pad' key. |
| 1141 | // |
| 1142 | // Depending on the connection type specified, each entry may have the following optional keys: |
| 1143 | // |
| 1144 | // - port: Name of the available IO signal of the instance. |
| 1145 | // This is required for 'direct' connections, but optional for the others. |
| 1146 | // Individual signals of a bus IO signal must be indexed with square brackets, e.g. mybus[1]. |
| 1147 | // Not specifying this key or setting it to an empty string acts as a wild card |
| 1148 | // and includes all available IOs of this instance. |
| 1149 | // |
| 1150 | // - pad: Name of the pad the 'direct' connection should connect to. |
| 1151 | // This is not required for 'muxed' and 'manual' connections. |
| 1152 | // |
| 1153 | // - desc: Optional description field. |
Michael Schaffner | c7dc533 | 2021-04-09 16:30:26 -0700 | [diff] [blame] | 1154 | // |
| 1155 | // - attr: Manual direct IOs may specify an additional pad attr field. |
| 1156 | // This is used to create the correct pad attribute CSR for that DIO channel (since the |
| 1157 | // DIO is manual, there is no way to automatically infer the corresponding pad type). |
| 1158 | // |
Michael Schaffner | 74c4ff2 | 2021-03-30 15:43:46 -0700 | [diff] [blame] | 1159 | signals: [ |
| 1160 | // SPI Host0 |
Michael Schaffner | e029a68 | 2021-04-06 16:21:30 -0700 | [diff] [blame] | 1161 | { instance: 'spi_host0', port: 'sck', connection: 'direct', pad: 'SPI_HOST_CLK' , desc: ''}, |
| 1162 | { instance: 'spi_host0', port: 'csb', connection: 'direct', pad: 'SPI_HOST_CS_L', desc: ''}, |
| 1163 | { instance: 'spi_host0', port: 'sd[0]', connection: 'direct', pad: 'SPI_HOST_D0' , desc: ''}, |
| 1164 | { instance: 'spi_host0', port: 'sd[1]', connection: 'direct', pad: 'SPI_HOST_D1' , desc: ''}, |
| 1165 | { instance: 'spi_host0', port: 'sd[2]', connection: 'direct', pad: 'SPI_HOST_D2' , desc: ''}, |
| 1166 | { instance: 'spi_host0', port: 'sd[3]', connection: 'direct', pad: 'SPI_HOST_D3' , desc: ''}, |
Michael Schaffner | 74c4ff2 | 2021-03-30 15:43:46 -0700 | [diff] [blame] | 1167 | // SPI Device |
Michael Schaffner | e029a68 | 2021-04-06 16:21:30 -0700 | [diff] [blame] | 1168 | { instance: 'spi_device', port: 'sck', connection: 'direct', pad: 'SPI_DEV_CLK' , desc: ''}, |
| 1169 | { instance: 'spi_device', port: 'csb', connection: 'direct', pad: 'SPI_DEV_CS_L' , desc: ''}, |
| 1170 | { instance: 'spi_device', port: 'sd[0]', connection: 'direct', pad: 'SPI_DEV_D0' , desc: ''}, |
| 1171 | { instance: 'spi_device', port: 'sd[1]', connection: 'direct', pad: 'SPI_DEV_D1' , desc: ''}, |
| 1172 | { instance: 'spi_device', port: 'sd[2]', connection: 'direct', pad: 'SPI_DEV_D2' , desc: ''}, |
| 1173 | { instance: 'spi_device', port: 'sd[3]', connection: 'direct', pad: 'SPI_DEV_D3' , desc: ''}, |
Michael Schaffner | 74c4ff2 | 2021-03-30 15:43:46 -0700 | [diff] [blame] | 1174 | // USBDEV |
Timothy Chen | 22c1856 | 2021-04-09 14:52:12 -0700 | [diff] [blame] | 1175 | // TODO: #6043 |
| 1176 | { instance: 'usbdev', port: 'd', connection: 'manual', pad: '' , desc: '', attr: 'BidirTol'}, |
| 1177 | { instance: 'usbdev', port: 'dp', connection: 'manual', pad: '' , desc: '', attr: 'BidirTol'}, |
| 1178 | { instance: 'usbdev', port: 'dn', connection: 'manual', pad: '' , desc: '', attr: 'BidirTol'}, |
| 1179 | { instance: 'usbdev', port: 'sense', connection: 'manual', pad: '' , desc: '', attr: 'BidirTol'}, |
| 1180 | { instance: 'usbdev', port: 'se0', connection: 'manual', pad: '' , desc: '', attr: 'BidirTol'}, |
| 1181 | { instance: 'usbdev', port: 'dp_pullup', connection: 'manual', pad: '' , desc: '', attr: 'BidirTol'}, |
| 1182 | { instance: 'usbdev', port: 'dn_pullup', connection: 'manual', pad: '' , desc: '', attr: 'BidirTol'}, |
| 1183 | { instance: 'usbdev', port: 'tx_mode_se', connection: 'manual', pad: '' , desc: '', attr: 'BidirTol'}, |
| 1184 | { instance: 'usbdev', port: 'suspend', connection: 'manual', pad: '' , desc: '', attr: 'BidirTol'}, |
| 1185 | { instance: 'usbdev', port: 'rx_enable', connection: 'manual', pad: '' , desc: '', attr: 'BidirTol'}, |
Michael Schaffner | 74c4ff2 | 2021-03-30 15:43:46 -0700 | [diff] [blame] | 1186 | // MIOs |
Michael Schaffner | e029a68 | 2021-04-06 16:21:30 -0700 | [diff] [blame] | 1187 | { instance: "gpio", port: '', connection: 'muxed' , pad: '' , desc: ''}, |
| 1188 | { instance: "uart0", port: '', connection: 'muxed' , pad: '' , desc: ''}, |
| 1189 | { instance: "uart1", port: '', connection: 'muxed' , pad: '' , desc: ''}, |
| 1190 | { instance: "uart2", port: '', connection: 'muxed' , pad: '' , desc: ''}, |
| 1191 | { instance: "uart3", port: '', connection: 'muxed' , pad: '' , desc: ''}, |
| 1192 | { instance: "i2c0", port: '', connection: 'muxed' , pad: '' , desc: ''}, |
| 1193 | { instance: "i2c1", port: '', connection: 'muxed' , pad: '' , desc: ''}, |
| 1194 | { instance: "i2c2", port: '', connection: 'muxed' , pad: '' , desc: ''}, |
| 1195 | { instance: "pattgen", port: '', connection: 'muxed' , pad: '' , desc: ''}, |
| 1196 | { instance: "spi_host1", port: '', connection: 'muxed' , pad: '' , desc: ''}, |
| 1197 | { instance: "flash_ctrl", port: '', connection: 'muxed' , pad: '' , desc: ''}, |
| 1198 | { instance: "sensor_ctrl_aon", port: '', connection: 'muxed' , pad: '' , desc: ''}, |
Martin Lueker-Boden | 0d63fe0 | 2021-03-10 17:30:37 -0800 | [diff] [blame] | 1199 | { instance: "pwm_aon", port: '', connection: 'muxed' , pad: '' , desc: ''}, |
Michael Schaffner | e029a68 | 2021-04-06 16:21:30 -0700 | [diff] [blame] | 1200 | // Sysrst ctrl has both muxed and dedicated IOs |
| 1201 | { instance: "sysrst_ctrl_aon", port: 'ac_present', connection: 'muxed' , pad: '' , desc: ''}, |
| 1202 | { instance: "sysrst_ctrl_aon", port: 'ec_rst_in_l', connection: 'muxed' , pad: '' , desc: ''}, |
| 1203 | { instance: "sysrst_ctrl_aon", port: 'key0_in', connection: 'muxed' , pad: '' , desc: ''}, |
| 1204 | { instance: "sysrst_ctrl_aon", port: 'key1_in', connection: 'muxed' , pad: '' , desc: ''}, |
| 1205 | { instance: "sysrst_ctrl_aon", port: 'key2_in', connection: 'muxed' , pad: '' , desc: ''}, |
| 1206 | { instance: "sysrst_ctrl_aon", port: 'pwrb_in', connection: 'muxed' , pad: '' , desc: ''}, |
| 1207 | { instance: "sysrst_ctrl_aon", port: 'bat_disable', connection: 'muxed' , pad: '' , desc: ''}, |
| 1208 | { instance: "sysrst_ctrl_aon", port: 'ec_rst_out_l', connection: 'direct', pad: 'IOR8' , desc: ''}, |
| 1209 | { instance: "sysrst_ctrl_aon", port: 'key0_out', connection: 'muxed' , pad: '' , desc: ''}, |
| 1210 | { instance: "sysrst_ctrl_aon", port: 'key1_out', connection: 'muxed' , pad: '' , desc: ''}, |
| 1211 | { instance: "sysrst_ctrl_aon", port: 'key2_out', connection: 'muxed' , pad: '' , desc: ''}, |
Michael Schaffner | 3b1c030 | 2021-04-02 18:01:15 -0700 | [diff] [blame] | 1212 | { instance: "sysrst_ctrl_aon", port: 'pwrb_out', connection: 'direct', pad: 'IOR9' , desc: ''}, |
Michael Schaffner | 74c4ff2 | 2021-03-30 15:43:46 -0700 | [diff] [blame] | 1213 | ], |
| 1214 | |
Michael Schaffner | 74c4ff2 | 2021-03-30 15:43:46 -0700 | [diff] [blame] | 1215 | num_wkup_detect: 8 |
| 1216 | wkup_cnt_width: 8 |
| 1217 | } |
| 1218 | |
| 1219 | // Implementation targets. |
| 1220 | // This defines the configuration of the target-specific chip-levels to |
| 1221 | // generate from the shared template. Each target uses the same base |
| 1222 | // configuration for the pinmux and pinout as defined above, and the |
| 1223 | // generated software constants for the pinmux DIF do not change among the |
| 1224 | // implementation targets. However, in order to accommodate slight |
| 1225 | // differences among the ASIC, FPGA emulation and simulation environments, |
| 1226 | // it is possible to make very limited pinout changes below. In particular, |
| 1227 | // it is possible to remove and tie-off specific pads, or add more 'manual' |
| 1228 | // pads that need to be manually connected in the template. It is also possible |
| 1229 | // to override the JTAG and strap locations indices, since the testing and DFT |
| 1230 | // setups may differ among the targets. |
| 1231 | targets: [ |
| 1232 | { name: 'asic', |
| 1233 | |
| 1234 | // Pinout Changes. |
| 1235 | pinout: { |
| 1236 | // This is a list of pad names to remove from the base pinout defined |
| 1237 | // above. Removed pads will be stubbed off such that their inputs |
| 1238 | // signals are driven with zero. Output signals and output enables |
| 1239 | // will be left unconnected. If no changes are needed, this list can |
| 1240 | // be left empty. |
| 1241 | remove_pads: [], |
| 1242 | |
| 1243 | // This is a list of additional "manual" pads to add to the pinout. |
| 1244 | // The pad entries have the same format as the pad entries in the pinout |
| 1245 | // configuration above. However, the 'connection' key must always be set |
| 1246 | // to 'manual' as it is not possible to connect these additional pads |
| 1247 | // to the pinmux or peripherals. |
| 1248 | add_pads: [], |
| 1249 | }, |
| 1250 | |
| 1251 | pinmux: { |
| 1252 | // Special signal positions. Each entry in the list below creates a |
| 1253 | // target-specific pad position parameter in the chiplevel hierarchy |
| 1254 | // that can be used to parameterize certain IPs like the pinmux or |
| 1255 | // padring. This is mainly used to define the pad positions of special |
| 1256 | // test and DFT signals such as the JTAG signals and the TAP and DFT |
| 1257 | // straps. Straps in this context are special pads that get sampled at |
| 1258 | // boot time during certain life cycle states in order to determine |
| 1259 | // DFT modes and the TAP mux selection index (the JTAG signals can be |
| 1260 | // muxed to either the lifecycle TAP, DFT TAP or RISC-V processor |
| 1261 | // TAP). TODO: add more documentation to https://docs.opentitan.org/hw/ip/pinmux/doc/index.html |
| 1262 | // Each entry must have the following two keys: |
| 1263 | // |
| 1264 | // - name: Basename for the SV parameter. |
| 1265 | // |
| 1266 | // - pad: The pad name that this special signal maps to. The generated |
| 1267 | // parameter will be assigned the corresponding pad index. |
| 1268 | // |
| 1269 | // Each entry may have an optional 'desc' key for further description. |
| 1270 | special_signals: [ |
| 1271 | // Straps |
Michael Schaffner | 3b1c030 | 2021-04-02 18:01:15 -0700 | [diff] [blame] | 1272 | { name: 'tap0', pad: 'IOC8', desc: 'TAP strap signal.' }, |
| 1273 | { name: 'tap1', pad: 'IOC5', desc: 'TAP strap signal.' }, |
| 1274 | { name: 'dft0', pad: 'IOC3', desc: 'DFT strap signal.' }, |
| 1275 | { name: 'dft1', pad: 'IOC4', desc: 'DFT strap signal.' }, |
Michael Schaffner | 74c4ff2 | 2021-03-30 15:43:46 -0700 | [diff] [blame] | 1276 | // JTAG |
Michael Schaffner | 3b1c030 | 2021-04-02 18:01:15 -0700 | [diff] [blame] | 1277 | { name: 'tck', pad: 'IOR3', desc: 'JTAG tck signal.' }, |
| 1278 | { name: 'tms', pad: 'IOR0', desc: 'JTAG tms signal.' }, |
| 1279 | { name: 'trst_n', pad: 'IOR4', desc: 'JTAG trst_n signal.' }, |
| 1280 | { name: 'tdi', pad: 'IOR2', desc: 'JTAG tdi signal.' }, |
| 1281 | { name: 'tdo', pad: 'IOR1', desc: 'JTAG tdo signal.' }, |
Michael Schaffner | 74c4ff2 | 2021-03-30 15:43:46 -0700 | [diff] [blame] | 1282 | ], |
| 1283 | } |
| 1284 | }, |
| 1285 | { name: 'nexysvideo', |
| 1286 | |
| 1287 | pinout: { |
| 1288 | remove_pads: [ |
| 1289 | 'CC1', 'CC2', |
Michael Schaffner | 74c4ff2 | 2021-03-30 15:43:46 -0700 | [diff] [blame] | 1290 | 'SPI_DEV_D2', 'SPI_DEV_D3' |
| 1291 | 'SPI_HOST_CLK', 'SPI_HOST_CS_L', |
| 1292 | 'SPI_HOST_D0', 'SPI_HOST_D1', 'SPI_HOST_D2', 'SPI_HOST_D3', |
Michael Schaffner | d13f442 | 2021-04-20 10:27:48 -0700 | [diff] [blame^] | 1293 | 'FLASH_TEST_VOLT', 'OTP_EXT_VOLT' |
Michael Schaffner | 6c5f7a7 | 2021-04-09 11:51:10 -0700 | [diff] [blame] | 1294 | 'FLASH_TEST_MODE0', 'FLASH_TEST_MODE1', |
Michael Schaffner | 3b1c030 | 2021-04-02 18:01:15 -0700 | [diff] [blame] | 1295 | 'IOB10', 'IOB11', 'IOB12', |
| 1296 | 'IOC0', 'IOC1', 'IOC12', |
| 1297 | 'IOR0', 'IOR1', 'IOR2', 'IOR3', 'IOR4', 'IOR5', 'IOR6', 'IOR7', 'IOR8', 'IOR9', 'IOR10', 'IOR11', 'IOR12', 'IOR13' |
Michael Schaffner | 74c4ff2 | 2021-03-30 15:43:46 -0700 | [diff] [blame] | 1298 | ], |
| 1299 | |
| 1300 | add_pads: [ |
| 1301 | // Additional infrastucture pads |
| 1302 | { name: 'IO_CLK', type: 'InputStd', bank: 'VCC', connection: 'manual', desc: 'Extra clock input for FPGA target'} |
| 1303 | { name: 'IO_JSRST_N', type: 'InputStd', bank: 'VCC', connection: 'manual', desc: 'Dedicated JTAG system reset input'} |
| 1304 | // Custom USB pads |
| 1305 | { name: 'IO_USB_SENSE0', type: 'BidirStd', bank: 'VCC', connection: 'manual', desc: 'Manual USB signal for FPGA target'} |
| 1306 | { name: 'IO_USB_DNPULLUP0', type: 'BidirStd', bank: 'VCC', connection: 'manual', desc: 'Manual USB signal for FPGA target'} |
| 1307 | { name: 'IO_USB_DPPULLUP0', type: 'BidirStd', bank: 'VCC', connection: 'manual', desc: 'Manual USB signal for FPGA target'} |
| 1308 | { name: 'IO_UPHY_DP_TX', type: 'BidirStd', bank: 'VCC', connection: 'manual', desc: 'Manual USB UPHY signal for FPGA target'} |
| 1309 | { name: 'IO_UPHY_DN_TX', type: 'BidirStd', bank: 'VCC', connection: 'manual', desc: 'Manual USB UPHY signal for FPGA target'} |
| 1310 | { name: 'IO_UPHY_DP_RX', type: 'BidirStd', bank: 'VCC', connection: 'manual', desc: 'Manual USB UPHY signal for FPGA target'} |
| 1311 | { name: 'IO_UPHY_DN_RX', type: 'BidirStd', bank: 'VCC', connection: 'manual', desc: 'Manual USB UPHY signal for FPGA target'} |
| 1312 | { name: 'IO_UPHY_D_RX', type: 'BidirStd', bank: 'VCC', connection: 'manual', desc: 'Manual USB UPHY signal for FPGA target'} |
| 1313 | { name: 'IO_UPHY_OE_N', type: 'BidirStd', bank: 'VCC', connection: 'manual', desc: 'Manual USB UPHY signal for FPGA target'} |
| 1314 | { name: 'IO_UPHY_SENSE', type: 'BidirStd', bank: 'VCC', connection: 'manual', desc: 'Manual USB UPHY signal for FPGA target'} |
| 1315 | { name: 'IO_UPHY_DPPULLUP', type: 'BidirStd', bank: 'VCC', connection: 'manual', desc: 'Manual USB UPHY signal for FPGA target'} |
| 1316 | ], |
| 1317 | }, |
| 1318 | |
Michael Schaffner | 3b1c030 | 2021-04-02 18:01:15 -0700 | [diff] [blame] | 1319 | pinmux: { |
Michael Schaffner | 74c4ff2 | 2021-03-30 15:43:46 -0700 | [diff] [blame] | 1320 | special_signals: [ |
| 1321 | // Straps |
Michael Schaffner | 3b1c030 | 2021-04-02 18:01:15 -0700 | [diff] [blame] | 1322 | { name: 'tap0', pad: 'IOC0' , desc: 'TAP strap signal, maps to a stubbed-off MIO.' }, |
| 1323 | { name: 'tap1', pad: 'IOB7', desc: 'TAP strap signal, maps to MIO pad 16.' }, |
| 1324 | { name: 'dft0', pad: 'IOC1' , desc: 'DFT strap signal, maps to a stubbed-off MIO.' }, |
| 1325 | { name: 'dft1', pad: 'IOC12', desc: 'DFT strap signal, maps to a stubbed-off MIO.' }, |
Michael Schaffner | 74c4ff2 | 2021-03-30 15:43:46 -0700 | [diff] [blame] | 1326 | // JTAG |
| 1327 | { name: 'tck', pad: 'SPI_DEV_CLK' , desc: 'JTAG tck signal, overlaid on SPI_DEV.' }, |
| 1328 | { name: 'tms', pad: 'SPI_DEV_CS_L', desc: 'JTAG tms signal, overlaid on SPI_DEV.' }, |
Michael Schaffner | 3b1c030 | 2021-04-02 18:01:15 -0700 | [diff] [blame] | 1329 | { name: 'trst_n', pad: 'IOB9' , desc: 'JTAG trst_n signal, maps to MIO pad 18.' }, |
Michael Schaffner | 74c4ff2 | 2021-03-30 15:43:46 -0700 | [diff] [blame] | 1330 | { name: 'tdi', pad: 'SPI_DEV_D0' , desc: 'JTAG tdi signal, overlaid on SPI_DEV.' }, |
| 1331 | { name: 'tdo', pad: 'SPI_DEV_D1' , desc: 'JTAG tdo signal, overlaid on SPI_DEV.' }, |
| 1332 | ], |
| 1333 | } |
| 1334 | } |
| 1335 | ] |
lowRISC Contributors | 802543a | 2019-08-31 12:12:56 +0100 | [diff] [blame] | 1336 | } |