title: “Padctrl Technical Specification”

Overview

This document specifies the functionality of the pad control block. This module is a peripheral on the chip interconnect bus, and thus follows the [OpenTitan guideline for peripheral device functionality.]({{< relref “doc/rm/comportability_specification” >}}). See that document for integration overview within the broader OpenTitan top level system.

Features

  • Programmable control of chip pin input/output inversion

  • Programmable control of chip pin output locking enable

  • Programmable control of chip pin output drive strength, pull up, pull down and virtual open drain

Description

The padctrl module instantiates all chip pads and provides a software accessible register file to control pad attributes such as pull-up, pull-down, virtual open-drain, drive-strength, keeper and input/output inversion. The padctrl module supports a comprehensive set of pin attributes, but it is permissible that some of them may not be supported by the underlying pad implementation. For example, certain ASIC libraries may not provide open-drain outputs, and FPGAs typically do not allow all of these attributes to be programmed dynamically at runtime.

Note that static pin attributes for FPGAs are currently not covered in this specification.

Theory of Operations

Block Diagram

Even though the pad control IP is referred to as one IP, it is logically split into two modules that are instantiated on the top-level and the chip-level respectively, as shown in the block diagram below. The top-level module padctrl contains the CSRs that are accessible via the TL-UL interface, while the chip-level module padring instantiates the bidirectional pads and connects the physical pin attributes.

Padctrl Block Diagram

The chip level padctrl module provides two sets of parametric IO arrays prefixed with mio* and dio*. Both sets are functionally equivalent, but are meant to be used with either multiplexed or dedicated IOs as the naming suggests. I.e., the mio* pads can be connected to the pinmux module ([see spec]({{< relref “hw/ip/pinmux/doc” >}})) in order to provide as much IO flexibility as possible to the software running on the device. The dio* pads on the other hand are to be connected to peripherals that require dedicated ownership of the pads. Examples that fall into the latter category are a high-speed SPI peripherals or a UART device that should always be connected for debugging purposes.

The implementation of the pad wrapper can be technology dependent, but the interface must follow the specification detailed in this document (see following sections). This ensures that the pad instance compatible with the target technology can be selected during the RTL build flow by just including the right pad wrapper IP, without having to regenerate parts of the padctrl code.

Note that the chip-level padctrl module also contains the pads for clock and reset, but these have no associated runtime configurable pad attributes.

Hardware Interfaces

Parameters

The following table lists the main parameters used throughout the padctrl design. Note that the padctrl modules are generated based on the system configuration, and hence these parameters are placed into a package as “localparams”.

LocalparamDefault (Min, Max)Description
NMioPads4 (1, -)Number of muxed output pads.
NDioPads16 (1, -)Number of dedicated output pads.
AttrDw10 (9, -)Width of the pad attribute vector.

Additional IOs

The table below lists additional padctrl signals. The number of IOs is parametric, and hence the signals are stacked in packed arrays.

SignalDirectionTypeDescription
mio_attr_o[NMioPads-1:0][AttrDw-1:0]outputpacked logicPacked array containing the pad attributes of all muxed IOs.
dio_attr_o[NDioPads-1:0][AttrDw-1:0]outputpacked logicPacked array containing the pad attributes of all dedicated IOs.

The table below lists the padring signals. The number of IOs is parametric, and hence the signals are stacked in packed arrays.

SignalDirectionTypeDescription
clk_pad_iinputwireClock pad input.
rst_pad_niinputwireReset pad input.
mio_pad_io[NMioPads-1:0]inoutpacked wireBidirectional IOs of the muxed IO pads.
dio_pad_io[NDioPads-1:0]inoutpacked wireBidirectional IOs of the dedicated IO pads.
clk_ooutputlogicClock output (to clocking infrastructure).
rst_nooutputlogicReset output (to reset infrastructure).
mio_attr_i[NMioPads-1:0][AttrDw-1:0]inputpacked logicPacked array containing the pad attributes of all muxed IOs.
dio_attr_i[NDioPads-1:0][AttrDw-1:0]inputpacked logicPacked array containing the pad attributes of all dedicated IOs.
mio_in_o[NMioPads-1:0]outputpacked logicInput data signals of muxed IOs.
dio_in_o[NDioPads-1:0]outputpacked logicInput data signals of dedicated IOs.
mio_out_i[NMioPads-1:0]inputpacked logicOutput data signal of muxed IOs.
dio_out_i[NDioPads-1:0]inputpacked logicOutput data signal of dedicated IOs.
mio_oe_i[NMioPads-1:0]inputpacked logicOutput data enable of muxed IOs.
dio_oe_i[NDioPads-1:0]inputpacked logicOutput data enable of dedicated IOs.

Design Details

Generic Pad Wrapper

The generic pad wrapper is intended to abstract away implementation differences between the target technologies by providing a generic interface that is compatible with the padring module. It is the task of the RTL build flow to select the appropriate pad wrapper implementation.

A specific implementation of a pad wrapper may choose to instantiate a technology primitive (as it is common in ASIC flows), or it may choose to model the functionality behaviorally such that it can be inferred by the technology mapping tool (e.g., in the case of an FPGA target). It is permissible to omit the implementation of all IO attributes except input/output inversion.

The generic pad wrapper must expose the following IOs and parameters, even if they are not connected internally. In particular, the pad attribute vector attr_i must contain at least AttrDw=9 bits, even if not all attributes are supported (it is permissible to just leave them unconnected in the pad wrapper implementation).

ParameterDefault (Min, Max)Description
Variant0Pad variant to be instantiated (technology-specific)
AttrDw8 (6, -)Width of the pad attribute vector.
WarlOnly0 (0, 1)If set to 1, no pad is instantiated and only the WARL behavior of the attr_i bits is output via warl_o

Note that Variant is a technology-specific parameter. The generic pad wrapper only implements variant 0, but for other target technologies, this parameter can be used to select among a variety of different pad flavors.

Also note that the pad wrapper may implement a “virtual” open drain termination, where standard bidirectional pads are employed, but instead of driving the output high for a logic 1 the pad is put into tristate mode.

SignalDirectionTypeDescriptionMandatory
inout_ioinoutwireBidirectional inout of the padyes
in_ooutputlogicInput data signalyes
out_iinputlogicOutput data signalyes
oe_iinputlogicOutput data enableyes
attr_i[0]inputlogicInput/output inversionyes
attr_i[1]inputlogicOpen drain enableyes
attr_i[2]inputlogicPull enableno
attr_i[3]inputlogicPull select (0: down, 1: up)no
attr_i[4]inputlogicKeeper enableno
attr_i[5]inputlogicSchmitt trigger enableno
attr_i[6]inputlogicSlew rate (0: slow, 1: fast)no
attr_i[8:7]inputlogicDrive strengh (00: weakest, 11: strongest)no
attr_i[AttrDw-1:9]inputlogicAdditional (optional) attributesno
warl_o[AttrDw-1:0]outputlogicIndicate which attr_i bits are supportedyes

The warl_o mask can be used to determine the WARL behavior of a specific pad variant.

Programmers Guide

Software should determine and program the padctrl pin attributes at startup, or reprogram it when the functionality requirements change at runtime.

This can be achieved by writing to the {{< regref “MIO_PADS” >}} and {{< regref “DIO_PADS” >}} registers. Note that the IO attributes should be configured before enabling any driving modules such as the pinmux in order to avoid undesired electrical behavior and/or contention at the pads.

The padctrl configuration can be locked down by writing a 0 to register {{< regref “REGEN” >}}. The configuration can then not be altered anymore unless the system is reset. One possible future enhancement is to individually lock each register instead of locking them all at once.

Note that the register description given in the next section is an example that has been generated with the default parameterization, and the layout may change once reparameterized. The following pad attributes are supported by this register layout by default:

ATTR BitsDescriptionAccess
0Input/output inversionRW
1Open drain enableRW
2Pull enableWARL
3Pull select (0: down, 1: up)WARL
4Keeper enableWARL
5Schmitt trigger enableWARL
6Slew rate (0: slow, 1: fast)WARL
8:7Drive strengh (00: weakest, 11: strongest)WARL
9ReservedWARL

Since some of the pad attributes may not be implemented, software can probe this capability by writing the CSRs and read them back to determine whether the value was legal. This behavior is also referred to as “writes-any-reads-legal” or “WARL” in the RISC-V world.

Register Table