You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
| fletcher_tag_width | 1 / 2 / 3 / ... | 1 | Width of the `tag` field of commands and unlock streams of RecordBatchReaders/Writers. Can be used to identify commands. |
96
96
97
97
# Custom MMIO registers
98
+
98
99
You can add custom MMIO registers to your kernel using `--reg`.
99
100
More information [can be found here](../../../docs/mmio.md).
100
101
@@ -114,32 +115,35 @@ bit.
114
115
- record:
115
116
name: platform
116
117
fields:
117
-
- record:
118
-
name: complete
119
-
fields:
120
-
- field:
121
-
name: req
122
-
width: 1
123
-
- field:
124
-
name: ack
125
-
width: 1
126
-
reverse: true
118
+
- record:
119
+
name: complete
120
+
fields:
121
+
- field:
122
+
name: req
123
+
width: 1
124
+
- field:
125
+
name: ack
126
+
width: 1
127
+
reverse: true
127
128
```
128
129
129
130
This will result in the following signals appearing at the top-level:
131
+
130
132
```vhdl
131
133
ext_platform_complete_req : out std_logic;
132
134
ext_platform_complete_ack : in std_logic
133
135
```
134
136
135
-
* The signals are assumed to be driven by the kernel. To drive them from the top
137
+
- The signals are assumed to be driven by the kernel. To drive them from the top
136
138
level, use:
139
+
137
140
```yaml
138
141
reverse: true
139
142
```
140
143
141
-
* Fields with a width of 1 can be forced to be `std_logic_vector` instead of
144
+
- Fields with a width of 1 can be forced to be `std_logic_vector` instead of
0 commit comments