pub struct CSW {}
Expand description
Control and Status Word register
The control and status word register (CSW) is used to configure memory access through the memory AP.
Fields
DbgSwEnable: u8
Is debug software access enabled.
HNONSEC: u8
Specifies whether HNONSEC is enabled.
PROT: u8
Prot
CACHE: u8
Cache
SPIDEN: u8
Secure Debug Enabled. This field has one of the following values:
0b0
Secure access is disabled.0b1
Secure access is enabled. This field is optional, and read-only. If not implemented, the bit is RES0. If CSW.DEVICEEN is 0b0, SDEVICEEN is ignored and the effective value of SDEVICEEN is 0b1. For more information, see Enabling access to the connected debug device or memory system on page C2-154. Note In ADIv5 and older versions of the architecture, the CSW.SPIDEN field is in the same bit position as CSW.SDeviceEn, and has the same meaning. From ADIv6, the name SDeviceEn is used to avoid confusion between this field and the SPIDEN signal on the authentication interface.
_RES0: u8
Reserved.
MTE: u8
1
if memory tagging access is enabled.
Type: u8
Memory tagging type. Implementation defined.
Mode: u8
Mode of operation. Is set to 0b0000
normally.
TrinProg: u8
A transfer is in progress. Can be used to poll whether an aborted transaction has completed. Read only.
DeviceEn: u8
1
if transactions can be issued through this access port at the moment.
Read only.
AddrInc: AddressIncrement
The address increment on DRW access.
_RES1: u8
Reserved
SIZE: DataSize
The access size of this memory AP.
Implementations
sourceimpl CSW
impl CSW
sourcepub fn new(data_size: DataSize) -> Self
pub fn new(data_size: DataSize) -> Self
Creates a new CSW content with default values and a configurable DataSize
.
See in code documentation for more info.
The CSW Register is set for an AMBA AHB Acccess, according to the ARM Debug Interface Architecture Specification.
The PROT bits are set as follows:
HNONSEC[30] = 1 - Should be One, if not supported.
MasterType, bit [29] = 1 - Access as default AHB Master
HPROT[4] = 0 - Non-allocating access
The CACHE bits are set for the following AHB access:
HPROT[0] == 1 - data access
HPROT[1] == 1 - privileged access
HPROT[2] == 0 - non-cacheable access
HPROT[3] == 0 - non-bufferable access
Trait Implementations
impl ApRegister<MemoryAp> for CSW
impl Copy for CSW
impl StructuralPartialEq for CSW
Auto Trait Implementations
impl RefUnwindSafe for CSW
impl Send for CSW
impl Sync for CSW
impl Unpin for CSW
impl UnwindSafe for CSW
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more