File tree Expand file tree Collapse file tree 1 file changed +31
-10
lines changed Expand file tree Collapse file tree 1 file changed +31
-10
lines changed Original file line number Diff line number Diff line change @@ -123,23 +123,44 @@ hart_schema:
123
123
check_with: isa_xlen
124
124
125
125
###
126
- #pmp_granularity
126
+ #PMPs Configurations
127
127
#---------------
128
128
#
129
- # - **Description**: Granularity of pmps
130
- # - **Default**: 0
129
+ # - **Description**: Granularity of pmps and count of implemented pmp csrs.
130
+ # - **Default implemented**: False
131
+ # - **Default pmp-grain**: 0
132
+ # - **Default pmp-count**: 16
131
133
# - **Constraints**: None
132
134
# - **Examples**:
133
135
#
134
136
# .. code-block:: yaml
135
- #
136
- # pmp_granularity : 2
137
- # pmp_granularity : 4
137
+ # PMP:
138
+ # implemented: true
139
+ # pmp-grain : 0
140
+ # pmp-count : 16
138
141
139
- pmp_granularity:
140
- type: integer
141
- min: 0
142
- default: 0
142
+ PMP:
143
+ type: dict
144
+ schema:
145
+ implemented:
146
+ type: integer
147
+ default: False
148
+ pmp-grain:
149
+ type: integer
150
+ max: [4096]
151
+ default: 0
152
+ pmp-count:
153
+ type: integer
154
+ max: [64]
155
+ default: 16
156
+ pmp-writable:
157
+ type: integer
158
+ max: [64]
159
+ default: 7
160
+ default:
161
+ implemented: False
162
+ pmp-grain: 0
163
+ pmp-count: 16
143
164
144
165
###
145
166
#physical_addr_sz
You can’t perform that action at this time.
0 commit comments