Bit fields

Register fields can be of the type bit. Meaning a field of width one that can only take on the logic values of zero or one.

This page will show you how the set up bit fields in a register, and will showcase all the code that can be generated from it.

Usage in TOML

The TOML file below shows how to set up a register with two bit fields. See comments for rules about the different properties.

TOML that sets up a register with bit fields.
 1[config]
 2
 3mode = "r_w"
 4description = "Configuration register."
 5
 6# This will allocate a bit field named "enable" in the "config" register.
 7# The "type" property MUST be present and set to "bit".
 8enable.type = "bit"
 9
10# The "description" property is OPTIONAL for a bit field.
11# Will default to "" if not specified.
12# The value specified MUST be a string.
13enable.description = "Enable data passthrough."
14
15# The "default_value" property is OPTIONAL for a bit field.
16# Will default to "0" if not specified.
17# The value specified MUST be a string, consisting of either a "1" or a "0".
18enable.default_value = "1"
19
20
21invert.type = "bit"
22invert.description = "Optionally enable inversion of data."

Note that the second field does not have any default value specified, meaning it will default to zero.

Below you will see how you can parse this TOML file and generate artifacts from it.

Usage with Python API

The Python code below shows

  1. How to parse the TOML file listed above.

  2. How to create an identical register list when instead using the Python API.

  3. How to generate register artifacts.

Note that the result of the create_from_api call is identical to that of the parse_toml call. Meaning that using a TOML file or using the Python API is completely equivalent. You choose yourself which method you want to use in your code base.

Python code that sets up a register with bit fields.
 1import sys
 2from pathlib import Path
 3
 4from hdl_registers.generator.c.header import CHeaderGenerator
 5from hdl_registers.generator.cpp.implementation import CppImplementationGenerator
 6from hdl_registers.generator.cpp.interface import CppInterfaceGenerator
 7from hdl_registers.generator.html.page import HtmlPageGenerator
 8from hdl_registers.generator.vhdl.record_package import VhdlRecordPackageGenerator
 9from hdl_registers.generator.vhdl.register_package import VhdlRegisterPackageGenerator
10from hdl_registers.parser.toml import from_toml
11from hdl_registers.register_list import RegisterList
12from hdl_registers.register_modes import REGISTER_MODES
13
14THIS_DIR = Path(__file__).parent
15
16
17def parse_toml() -> RegisterList:
18    """
19    Create the register list by parsing a TOML data file.
20    """
21    return from_toml(name="caesar", toml_file=THIS_DIR.parent / "toml" / "field_bit.toml")
22
23
24def create_from_api() -> RegisterList:
25    """
26    Alternative method: Create the register list by using the Python API.
27    """
28    register_list = RegisterList(name="caesar")
29
30    register = register_list.append_register(
31        name="config", mode=REGISTER_MODES["r_w"], description="Configuration register."
32    )
33
34    register.append_bit(
35        name="enable",
36        description="Enable data passthrough.",
37        default_value="1",
38    )
39
40    register.append_bit(
41        name="invert",
42        description="Optionally enable inversion of data.",
43        default_value="0",
44    )
45
46    return register_list
47
48
49def generate(register_list: RegisterList, output_folder: Path) -> None:
50    """
51    Generate the artifacts that we are interested in.
52    """
53    CHeaderGenerator(register_list=register_list, output_folder=output_folder).create()
54
55    CppImplementationGenerator(register_list=register_list, output_folder=output_folder).create()
56    CppInterfaceGenerator(register_list=register_list, output_folder=output_folder).create()
57
58    HtmlPageGenerator(register_list=register_list, output_folder=output_folder).create()
59
60    VhdlRegisterPackageGenerator(register_list=register_list, output_folder=output_folder).create()
61    VhdlRecordPackageGenerator(register_list=register_list, output_folder=output_folder).create()
62
63
64def main(output_folder: Path) -> None:
65    generate(register_list=parse_toml(), output_folder=output_folder / "toml")
66    generate(register_list=create_from_api(), output_folder=output_folder / "api")
67
68
69if __name__ == "__main__":
70    main(output_folder=Path(sys.argv[1]))

See Register.append_bit() for more Python API details.

Generated code

See below for a description of the code that can be generated when using bit fields.

HTML page

See HTML file below for the human-readable documentation that is produced by the generate() call in the Python example above. Each bit field is documented with its bit index, default value and description.

See HTML code generator for more details about the HTML generator and its capabilities.

HTML page

VHDL package

The VHDL code below is produced by the generate() call in the Python example above. Click the button to expand and view the code. See VHDL code generator for instructions on how it can be used in your VHDL project.

Base register package

Some interesting things to notice:

  1. There is only one register, at index 0.

  2. For each bit field there is a named constant that defines the bit’s index within the register.

  3. In VHDL, slicing out a bit from the register value will yield a value of type std_ulogic, meaning that typically no casting is needed. Hence there are no conversion functions for bit fields, the way there are for e.g. enumeration fields.

Click to expand/collapse code.
Generated VHDL register package.
 1-- -----------------------------------------------------------------------------
 2-- This file is automatically generated by hdl-registers version 7.0.5-dev.
 3-- Code generator VhdlRegisterPackageGenerator version 2.0.0.
 4-- Generated 2025-02-22 20:51 at commit 57cebe3573f7.
 5-- Register hash 7c13846493994dad03b80d0ee1c1a9ee3d977e92.
 6-- -----------------------------------------------------------------------------
 7
 8library ieee;
 9use ieee.std_logic_1164.all;
10use ieee.numeric_std.all;
11use ieee.fixed_pkg.all;
12
13library register_file;
14use register_file.register_file_pkg.all;
15
16
17package caesar_regs_pkg is
18
19  -- ---------------------------------------------------------------------------
20  -- The valid range of register indexes.
21  subtype caesar_register_range is natural range 0 to 0;
22
23  -- ---------------------------------------------------------------------------
24  -- The number of bits needed to address all 1 registers on a register bus.
25  -- Note that this figure includes the lowest two address bits that are assumed zero, since
26  -- registers are 32-bit and unaligned accesses are not supported.
27  constant caesar_address_width : positive := 3;
28
29  -- Register indexes, within the list of registers.
30  constant caesar_config : natural := 0;
31
32  -- Declare 'register_map' and 'regs_init' constants here but define them in
33  -- the package body (deferred constants).
34  -- So that functions have been elaborated when they are called.
35  -- Needed for ModelSim compilation to pass.
36
37  -- To be used as the 'registers' generic of 'axi_lite_register_file.vhd'.
38  constant caesar_register_map : register_definition_vec_t(caesar_register_range);
39
40  -- To be used for the 'regs_up' and 'regs_down' ports of 'axi_lite_register_file.vhd'.
41  subtype caesar_regs_t is register_vec_t(caesar_register_range);
42  -- To be used as the 'default_values' generic of 'axi_lite_register_file.vhd'.
43  constant caesar_regs_init : caesar_regs_t;
44
45  -- To be used for the 'reg_was_read' and 'reg_was_written' ports of 'axi_lite_register_file.vhd'.
46  subtype caesar_reg_was_accessed_t is std_ulogic_vector(caesar_register_range);
47
48  -- -----------------------------------------------------------------------------
49  -- Fields in the 'config' register.
50  -- Range of the 'enable' field.
51  constant caesar_config_enable : natural := 0;
52  -- Default value of the 'enable' field.
53  constant caesar_config_enable_init : std_ulogic := '1';
54
55  -- Range of the 'invert' field.
56  constant caesar_config_invert : natural := 1;
57  -- Default value of the 'invert' field.
58  constant caesar_config_invert_init : std_ulogic := '0';
59
60end package;
61
62package body caesar_regs_pkg is
63
64  constant caesar_register_map : register_definition_vec_t(caesar_register_range) := (
65    0 => (index => caesar_config, mode => r_w, utilized_width => 2)
66  );
67
68  constant caesar_regs_init : caesar_regs_t := (
69    0 => "00000000000000000000000000000001"
70  );
71
72end package body;

Record package

The caesar_regs_down_t type is a record with a member config, the only register in this example. The type of the config member is another record with the two bits set up in our example: enable and invert.

In our VHDL code we can access a field value for example like this:

result_valid <= input_valid and regs_down.config.enable;
Click to expand/collapse code.
Generated VHDL record package.
  1-- -----------------------------------------------------------------------------
  2-- This file is automatically generated by hdl-registers version 7.0.5-dev.
  3-- Code generator VhdlRecordPackageGenerator version 1.0.0.
  4-- Generated 2025-02-22 20:51 at commit 57cebe3573f7.
  5-- Register hash 7c13846493994dad03b80d0ee1c1a9ee3d977e92.
  6-- -----------------------------------------------------------------------------
  7
  8library ieee;
  9use ieee.fixed_pkg.all;
 10use ieee.std_logic_1164.all;
 11use ieee.numeric_std.all;
 12
 13library register_file;
 14use register_file.register_file_pkg.register_t;
 15
 16use work.caesar_regs_pkg.all;
 17
 18
 19package caesar_register_record_pkg is
 20
 21  -- -----------------------------------------------------------------------------
 22  -- Record with correctly-typed members for each field in each register.
 23  -- Fields in the 'config' register as a record.
 24  type caesar_config_t is record
 25    enable : std_ulogic;
 26    invert : std_ulogic;
 27  end record;
 28  -- Default value for the 'config' register as a record.
 29  constant caesar_config_init : caesar_config_t := (
 30    enable => caesar_config_enable_init,
 31    invert => caesar_config_invert_init
 32  );
 33  -- Convert a record of the 'config' register to SLV.
 34  function to_slv(data : caesar_config_t) return register_t;
 35  -- Convert an SLV register value to the record for the 'config' register.
 36  function to_caesar_config(data : register_t) return caesar_config_t;
 37
 38  -- -----------------------------------------------------------------------------
 39  -- Below is a record with correctly typed and ranged members for all registers, register arrays
 40  -- and fields that are in the 'down' direction.
 41  -- Record with everything in the 'down' direction.
 42  type caesar_regs_down_t is record
 43    config : caesar_config_t;
 44  end record;
 45  -- Default value of the above record.
 46  constant caesar_regs_down_init : caesar_regs_down_t := (
 47    config => caesar_config_init
 48  );
 49  -- Convert SLV register list to record with everything in the 'down' direction.
 50  function to_caesar_regs_down(data : caesar_regs_t) return caesar_regs_down_t;
 51
 52  -- ---------------------------------------------------------------------------
 53  -- Below is a record with a status bit for each readable register in the register list.
 54  -- It can be used for the 'reg_was_read' port of a register file wrapper.
 55  -- Combined status mask record for all readable register.
 56  type caesar_reg_was_read_t is record
 57    config : std_ulogic;
 58  end record;
 59  -- Default value for the above record.
 60  constant caesar_reg_was_read_init : caesar_reg_was_read_t := (
 61    others => '0'
 62  );
 63  -- Convert an SLV 'reg_was_read' from generic register file to the record above.
 64  function to_caesar_reg_was_read(
 65    data : caesar_reg_was_accessed_t
 66  ) return caesar_reg_was_read_t;
 67
 68  -- ---------------------------------------------------------------------------
 69  -- Below is a record with a status bit for each writeable register in the register list.
 70  -- It can be used for the 'reg_was_written' port of a register file wrapper.
 71  -- Combined status mask record for all writeable register.
 72  type caesar_reg_was_written_t is record
 73    config : std_ulogic;
 74  end record;
 75  -- Default value for the above record.
 76  constant caesar_reg_was_written_init : caesar_reg_was_written_t := (
 77    others => '0'
 78  );
 79  -- Convert an SLV 'reg_was_written' from generic register file to the record above.
 80  function to_caesar_reg_was_written(
 81    data : caesar_reg_was_accessed_t
 82  ) return caesar_reg_was_written_t;
 83
 84end package;
 85
 86package body caesar_register_record_pkg is
 87
 88  function to_slv(data : caesar_config_t) return register_t is
 89    variable result : register_t := (others => '-');
 90  begin
 91    result(caesar_config_enable) := data.enable;
 92    result(caesar_config_invert) := data.invert;
 93
 94    return result;
 95  end function;
 96
 97  function to_caesar_config(data : register_t) return caesar_config_t is
 98    variable result : caesar_config_t := caesar_config_init;
 99  begin
100    result.enable := data(caesar_config_enable);
101    result.invert := data(caesar_config_invert);
102
103    return result;
104  end function;
105
106  function to_caesar_regs_down(data : caesar_regs_t) return caesar_regs_down_t is
107    variable result : caesar_regs_down_t := caesar_regs_down_init;
108  begin
109    result.config := to_caesar_config(data(caesar_config));
110
111    return result;
112  end function;
113
114  function to_caesar_reg_was_read(
115    data : caesar_reg_was_accessed_t
116  ) return caesar_reg_was_read_t is
117    variable result : caesar_reg_was_read_t := caesar_reg_was_read_init;
118  begin
119    result.config := data(caesar_config);
120
121    return result;
122  end function;
123
124  function to_caesar_reg_was_written(
125    data : caesar_reg_was_accessed_t
126  ) return caesar_reg_was_written_t is
127    variable result : caesar_reg_was_written_t := caesar_reg_was_written_init;
128  begin
129    result.config := data(caesar_config);
130
131    return result;
132  end function;
133
134end package body;

C++

The C++ interface header and implementation code below is produced by the generate() call in the Python example above. Click the button to expand and view each code block.

The class header is skipped here, since its inclusion would make this page very long. See C++ code generator for more details and an example of how the excluded file might look.

C++ interface header

Note the setters and getters for each individual field value.

Click to expand/collapse code.
Generated C++ class interface code.
 1// -----------------------------------------------------------------------------
 2// This file is automatically generated by hdl-registers version 7.0.5-dev.
 3// Code generator CppInterfaceGenerator version 1.0.0.
 4// Generated 2025-02-22 20:51 at commit 57cebe3573f7.
 5// Register hash 7c13846493994dad03b80d0ee1c1a9ee3d977e92.
 6// -----------------------------------------------------------------------------
 7
 8#pragma once
 9
10#include <sstream>
11#include <cstdint>
12#include <cstdlib>
13
14namespace fpga_regs
15{
16
17  // Attributes for the 'enable' field in the 'config' register.
18  namespace caesar::config::enable
19  {
20    static const auto width = 1;
21    static const auto default_value = 0b1;
22  }
23  // Attributes for the 'invert' field in the 'config' register.
24  namespace caesar::config::invert
25  {
26    static const auto width = 1;
27    static const auto default_value = 0b0;
28  }
29
30  class ICaesar
31  {
32  public:
33    // Number of registers within this register list.
34    static const size_t num_registers = 1uL;
35
36    virtual ~ICaesar() {}
37
38    // -------------------------------------------------------------------------
39    // Methods for the 'config' register. Mode 'Read, Write'.
40
41    // Getter that will read the whole register's value over the register bus.
42    virtual uint32_t get_config() const = 0;
43
44    // Setter that will write the whole register's value over the register bus.
45    virtual void set_config(
46      uint32_t register_value
47    ) const = 0;
48
49    // Getter for the 'enable' field in the 'config' register,
50    // which will read register value over the register bus.
51    virtual uint32_t get_config_enable() const = 0;
52    // Getter for the 'enable' field in the 'config' register,
53    // given a register value.
54    virtual uint32_t get_config_enable_from_value(
55      uint32_t register_value
56    ) const = 0;
57    // Setter for the 'enable' field in the 'config' register,
58    // which will read-modify-write over the register bus.
59    virtual void set_config_enable(
60      uint32_t field_value
61    ) const = 0;
62    // Setter for the 'enable' field in the 'config' register,
63    // given a register value, which will return an updated value.
64    virtual uint32_t set_config_enable_from_value(
65      uint32_t register_value,
66      uint32_t field_value
67    ) const = 0;
68
69    // Getter for the 'invert' field in the 'config' register,
70    // which will read register value over the register bus.
71    virtual uint32_t get_config_invert() const = 0;
72    // Getter for the 'invert' field in the 'config' register,
73    // given a register value.
74    virtual uint32_t get_config_invert_from_value(
75      uint32_t register_value
76    ) const = 0;
77    // Setter for the 'invert' field in the 'config' register,
78    // which will read-modify-write over the register bus.
79    virtual void set_config_invert(
80      uint32_t field_value
81    ) const = 0;
82    // Setter for the 'invert' field in the 'config' register,
83    // given a register value, which will return an updated value.
84    virtual uint32_t set_config_invert_from_value(
85      uint32_t register_value,
86      uint32_t field_value
87    ) const = 0;
88
89  };
90
91} /* namespace fpga_regs */

C++ implementation

Click to expand/collapse code.
Generated C++ class implementation code.
  1// -----------------------------------------------------------------------------
  2// This file is automatically generated by hdl-registers version 7.0.5-dev.
  3// Code generator CppImplementationGenerator version 2.0.1.
  4// Generated 2025-02-22 20:51 at commit 57cebe3573f7.
  5// Register hash 7c13846493994dad03b80d0ee1c1a9ee3d977e92.
  6// -----------------------------------------------------------------------------
  7
  8#include "include/caesar.h"
  9
 10namespace fpga_regs
 11{
 12
 13#ifdef NO_REGISTER_SETTER_ASSERT
 14
 15#define _SETTER_ASSERT_TRUE(expression, message) ((void)0)
 16
 17#else // Not NO_REGISTER_SETTER_ASSERT.
 18
 19// This macro is called by the register code to check for runtime errors.
 20#define _SETTER_ASSERT_TRUE(expression, message)                                 \
 21  {                                                                              \
 22    if (!static_cast<bool>(expression)) {                                        \
 23      std::ostringstream diagnostics;                                            \
 24      diagnostics << "Tried to set value out of range in "                       \
 25                  << "caesar.cpp:" << __LINE__                                   \
 26                  << ", message: " << message << ".";                            \
 27      std::string diagnostic_message = diagnostics.str();                        \
 28      m_assertion_handler(&diagnostic_message);                                  \
 29    }                                                                            \
 30  }
 31
 32#endif // NO_REGISTER_SETTER_ASSERT.
 33
 34#ifdef NO_REGISTER_GETTER_ASSERT
 35
 36#define _GETTER_ASSERT_TRUE(expression, message) ((void)0)
 37
 38#else // Not NO_REGISTER_GETTER_ASSERT.
 39
 40// This macro is called by the register code to check for runtime errors.
 41#define _GETTER_ASSERT_TRUE(expression, message)                                 \
 42  {                                                                              \
 43    if (!static_cast<bool>(expression)) {                                        \
 44      std::ostringstream diagnostics;                                            \
 45      diagnostics << "Got read value out of range in "                           \
 46                  << "caesar.cpp:" << __LINE__                                   \
 47                  << ", message: " << message << ".";                            \
 48      std::string diagnostic_message = diagnostics.str();                        \
 49      m_assertion_handler(&diagnostic_message);                                  \
 50    }                                                                            \
 51  }
 52
 53#endif // NO_REGISTER_GETTER_ASSERT.
 54
 55#ifdef NO_REGISTER_ARRAY_INDEX_ASSERT
 56
 57#define _ARRAY_INDEX_ASSERT_TRUE(expression, message) ((void)0)
 58
 59#else // Not NO_REGISTER_ARRAY_INDEX_ASSERT.
 60
 61// This macro is called by the register code to check for runtime errors.
 62#define _ARRAY_INDEX_ASSERT_TRUE(expression, message)                            \
 63  {                                                                              \
 64    if (!static_cast<bool>(expression)) {                                        \
 65      std::ostringstream diagnostics;                                            \
 66      diagnostics << "Provided array index out of range in "                     \
 67                  << "caesar.cpp:" << __LINE__                                   \
 68                  << ", message: " << message << ".";                            \
 69      std::string diagnostic_message = diagnostics.str();                        \
 70      m_assertion_handler(&diagnostic_message);                                  \
 71    }                                                                            \
 72  }
 73
 74#endif // NO_REGISTER_ARRAY_INDEX_ASSERT.
 75
 76  Caesar::Caesar(uintptr_t base_address, bool (*assertion_handler) (const std::string*))
 77      : m_registers(reinterpret_cast<volatile uint32_t *>(base_address)),
 78        m_assertion_handler(assertion_handler)
 79  {
 80    // Empty
 81  }
 82
 83  // ---------------------------------------------------------------------------
 84  // Methods for the 'config' register.
 85  // See interface header for documentation.
 86
 87  uint32_t Caesar::get_config() const
 88  {
 89    const size_t index = 0;
 90    const uint32_t result = m_registers[index];
 91
 92    return result;
 93  }
 94
 95  uint32_t Caesar::get_config_enable() const
 96  {
 97    const uint32_t register_value = get_config();
 98    const uint32_t field_value = get_config_enable_from_value(register_value);
 99
100    return field_value;
101  }
102
103  uint32_t Caesar::get_config_enable_from_value(
104    uint32_t register_value
105  ) const
106  {
107    const uint32_t shift = 0uL;
108    const uint32_t mask_at_base = 0b1uL;
109    const uint32_t mask_shifted = mask_at_base << shift;
110
111    const uint32_t result_masked = register_value & mask_shifted;
112    const uint32_t result_shifted = result_masked >> shift;
113
114    uint32_t field_value;
115
116    // No casting needed.
117    field_value = result_shifted;
118
119    return field_value;
120  }
121
122  uint32_t Caesar::get_config_invert() const
123  {
124    const uint32_t register_value = get_config();
125    const uint32_t field_value = get_config_invert_from_value(register_value);
126
127    return field_value;
128  }
129
130  uint32_t Caesar::get_config_invert_from_value(
131    uint32_t register_value
132  ) const
133  {
134    const uint32_t shift = 1uL;
135    const uint32_t mask_at_base = 0b1uL;
136    const uint32_t mask_shifted = mask_at_base << shift;
137
138    const uint32_t result_masked = register_value & mask_shifted;
139    const uint32_t result_shifted = result_masked >> shift;
140
141    uint32_t field_value;
142
143    // No casting needed.
144    field_value = result_shifted;
145
146    return field_value;
147  }
148
149  void Caesar::set_config(
150    uint32_t register_value
151  ) const
152  {
153    const size_t index = 0;
154    m_registers[index] = register_value;
155  }
156
157  void Caesar::set_config_enable(
158    uint32_t field_value
159  ) const
160  {
161    // Get the current value of other fields by reading register on the bus.
162    const uint32_t current_register_value = get_config();
163    const uint32_t result_register_value = set_config_enable_from_value(current_register_value, field_value);
164    set_config(result_register_value);
165  }
166
167  uint32_t Caesar::set_config_enable_from_value(
168    uint32_t register_value,
169    uint32_t field_value
170  ) const  {
171    const uint32_t shift = 0uL;
172    const uint32_t mask_at_base = 0b1uL;
173    const uint32_t mask_shifted = mask_at_base << shift;
174
175    // Check that field value is within the legal range.
176    const uint32_t mask_at_base_inverse = ~mask_at_base;
177    _SETTER_ASSERT_TRUE(
178      (field_value & mask_at_base_inverse) == 0,
179      "'enable' value too many bits used, got '" << field_value << "'"
180    );
181
182    const uint32_t field_value_masked = field_value & mask_at_base;
183    const uint32_t field_value_masked_and_shifted = field_value_masked << shift;
184
185    const uint32_t mask_shifted_inverse = ~mask_shifted;
186    const uint32_t register_value_masked = register_value & mask_shifted_inverse;
187
188    const uint32_t result_register_value = register_value_masked | field_value_masked_and_shifted;
189
190    return result_register_value;
191  }
192
193  void Caesar::set_config_invert(
194    uint32_t field_value
195  ) const
196  {
197    // Get the current value of other fields by reading register on the bus.
198    const uint32_t current_register_value = get_config();
199    const uint32_t result_register_value = set_config_invert_from_value(current_register_value, field_value);
200    set_config(result_register_value);
201  }
202
203  uint32_t Caesar::set_config_invert_from_value(
204    uint32_t register_value,
205    uint32_t field_value
206  ) const  {
207    const uint32_t shift = 1uL;
208    const uint32_t mask_at_base = 0b1uL;
209    const uint32_t mask_shifted = mask_at_base << shift;
210
211    // Check that field value is within the legal range.
212    const uint32_t mask_at_base_inverse = ~mask_at_base;
213    _SETTER_ASSERT_TRUE(
214      (field_value & mask_at_base_inverse) == 0,
215      "'invert' value too many bits used, got '" << field_value << "'"
216    );
217
218    const uint32_t field_value_masked = field_value & mask_at_base;
219    const uint32_t field_value_masked_and_shifted = field_value_masked << shift;
220
221    const uint32_t mask_shifted_inverse = ~mask_shifted;
222    const uint32_t register_value_masked = register_value & mask_shifted_inverse;
223
224    const uint32_t result_register_value = register_value_masked | field_value_masked_and_shifted;
225
226    return result_register_value;
227  }
228
229} /* namespace fpga_regs */

C header

The C code below is produced by the generate() call in the Python example above. The index and mask of each field are available as constants.

Click to expand/collapse code.
Generated C code.
 1// -----------------------------------------------------------------------------
 2// This file is automatically generated by hdl-registers version 7.0.5-dev.
 3// Code generator CHeaderGenerator version 1.0.0.
 4// Generated 2025-02-22 20:51 at commit 57cebe3573f7.
 5// Register hash 7c13846493994dad03b80d0ee1c1a9ee3d977e92.
 6// -----------------------------------------------------------------------------
 7
 8#ifndef CAESAR_REGS_H
 9#define CAESAR_REGS_H
10
11
12// Number of registers within this register list.
13#define CAESAR_NUM_REGS (1u)
14
15// Type for this register list.
16typedef struct caesar_regs_t
17{
18  // Mode "Read, Write".
19  uint32_t config;
20} caesar_regs_t;
21
22// Address of the 'config' register.
23// Mode 'Read, Write'.
24#define CAESAR_CONFIG_INDEX (0u)
25#define CAESAR_CONFIG_ADDR (4u * CAESAR_CONFIG_INDEX)
26// Attributes for the 'enable' field in the 'config' register.
27#define CAESAR_CONFIG_ENABLE_SHIFT (0u)
28#define CAESAR_CONFIG_ENABLE_MASK (0b1u << 0u)
29#define CAESAR_CONFIG_ENABLE_MASK_INVERSE (~CAESAR_CONFIG_ENABLE_MASK)
30// Attributes for the 'invert' field in the 'config' register.
31#define CAESAR_CONFIG_INVERT_SHIFT (1u)
32#define CAESAR_CONFIG_INVERT_MASK (0b1u << 1u)
33#define CAESAR_CONFIG_INVERT_MASK_INVERSE (~CAESAR_CONFIG_INVERT_MASK)
34
35#endif // CAESAR_REGS_H