I have device with a common register bank that can be accessed through 3 different interfaces, one is the "regular" interface where the register and fields have the normal access restriction (e.g. rw or ro) per the specification, but the other two interfaces are privileged access interfaces where the access restrictions are lifted in different ways for different registers/fields.
How would I implement that in a convenient way in DML?
One could imagine implementing a register bank with no restrictions on register and fields, but how would I then apply the normal access restrictions on top of it for the regular interface?
Eriks answer fits quite well if you want to put the access restriction logic in the main bank, in his case this is bank
z
, and then just add meta data in bankx
andy
describing access path.However, an alternative solution would be to do the restrictive logic on bank
x
andy
and only forward the accesses to bank z if it is allowed on the specific interface. That way, the logic in bankz
remains clean and does not have to consider any special access interfaces.The example code below handles restrictive access on register level and not on field level. Next example will expand to also include field level.
In the example above, an access on interface
x
only has access toreg0
in bankz
and an access on interfacey
only has access toreg1
in bankz
.But the question also includes access restrictions on field level which makes it a bit more complicated but perfectly doable. Here is an example of how that could be done with the same design pattern.
In this example a read access of register
regX
is allowed on both interfacesx
andy
. However, on interfacex
it is not possible to write tofield a
and on interfacey
it is not possible to write tofield b
. The templateregister_accessor
masks the bits corresponding to the read-only field before forwarding the write tobank z
. You can create as many interfaces as you want without having to modify any logic in the storage bank (bank z
in this example).