| // Copyright lowRISC contributors. |
| // Licensed under the Apache License, Version 2.0, see LICENSE for details. |
| // SPDX-License-Identifier: Apache-2.0 |
| import pinmux_reg_pkg::*; |
| import prim_pad_wrapper_pkg::*; |
| parameter int NumIOs = NMioPads + NDioPads; |
| parameter int NDFTStraps = 2; |
| parameter int NTapStraps = 2; |
| // Since the target-specific top-levels often have slightly different debug signal positions, we |
| // need a way to pass this info from the target specific top-level into the pinmux logic. The |
| // datastructure below serves this purpose. Note that all the indices below are with respect to |
| // the concatenated {DIO, MIO} packed array. |
| pad_type_e [NDioPads-1:0] dio_pad_type; |
| pad_type_e [NMioPads-1:0] mio_pad_type; |
| parameter target_cfg_t DefaultTargetCfg = '{ |
| dio_pad_type: {NDioPads{BidirStd}}, |
| mio_pad_type: {NMioPads{BidirStd}} |
| typedef enum logic [2:0] { |
| // Interface with LC controller |
| logic [NDFTStraps-1:0] straps; |
| typedef enum logic [NTapStraps-1:0] { |