Struct probe_rs::architecture::arm::ap::CSW

source ·
pub struct CSW {
Show 14 fields pub DbgSwEnable: u8, pub HNONSEC: u8, pub PROT: u8, pub CACHE: u8, pub SPIDEN: u8, pub _RES0: u8, pub MTE: u8, pub Type: u8, pub Mode: u8, pub TrinProg: u8, pub DeviceEn: u8, pub AddrInc: AddressIncrement, pub _RES1: u8, pub SIZE: DataSize,
}
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§

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§

Returns a copy of the value. Read more
Performs copy-assignment from source. Read more
Formats the value using the given formatter. Read more
Returns the “default value” for a type. Read more
Converts to this type from the input type.
This method tests for self and other values to be equal, and is used by ==.
This method tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
The address of the register (in bytes).
The name of the register as string.
The type returned in the event of a conversion error.
Performs the conversion.

Auto Trait Implementations§

Blanket Implementations§

Gets the TypeId of self. Read more
Immutably borrows from an owned value. Read more
Mutably borrows from an owned value. Read more
Converts self into T using Into<T>. Read more
Compare self to key and return true if they are equal.
Causes self to use its Binary implementation when Debug-formatted.
Causes self to use its Display implementation when Debug-formatted.
Causes self to use its LowerExp implementation when Debug-formatted.
Causes self to use its LowerHex implementation when Debug-formatted.
Causes self to use its Octal implementation when Debug-formatted.
Causes self to use its Pointer implementation when Debug-formatted.
Causes self to use its UpperExp implementation when Debug-formatted.
Causes self to use its UpperHex implementation when Debug-formatted.
Formats each item in a sequence. Read more

Returns the argument unchanged.

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more
Instruments this type with the current Span, returning an Instrumented wrapper. Read more

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Pipes by value. This is generally the method you want to use. Read more
Borrows self and passes that borrow into the pipe function. Read more
Mutably borrows self and passes that borrow into the pipe function. Read more
Borrows self, then passes self.borrow() into the pipe function. Read more
Mutably borrows self, then passes self.borrow_mut() into the pipe function. Read more
Borrows self, then passes self.as_ref() into the pipe function.
Mutably borrows self, then passes self.as_mut() into the pipe function.
Borrows self, then passes self.deref() into the pipe function.
Mutably borrows self, then passes self.deref_mut() into the pipe function.
Immutable access to a value. Read more
Mutable access to a value. Read more
Immutable access to the Borrow<B> of a value. Read more
Mutable access to the BorrowMut<B> of a value. Read more
Immutable access to the AsRef<R> view of a value. Read more
Mutable access to the AsMut<R> view of a value. Read more
Immutable access to the Deref::Target of a value. Read more
Mutable access to the Deref::Target of a value. Read more
Calls .tap() only in debug builds, and is erased in release builds.
Calls .tap_mut() only in debug builds, and is erased in release builds.
Calls .tap_borrow() only in debug builds, and is erased in release builds.
Calls .tap_borrow_mut() only in debug builds, and is erased in release builds.
Calls .tap_ref() only in debug builds, and is erased in release builds.
Calls .tap_ref_mut() only in debug builds, and is erased in release builds.
Calls .tap_deref() only in debug builds, and is erased in release builds.
Calls .tap_deref_mut() only in debug builds, and is erased in release builds.
The resulting type after obtaining ownership.
Creates owned data from borrowed data, usually by cloning. Read more
Uses borrowed data to replace owned data, usually by cloning. Read more
Attempts to convert self into T using TryInto<T>. Read more
The type returned in the event of a conversion error.
Performs the conversion.
The type returned in the event of a conversion error.
Performs the conversion.
Attaches the provided Subscriber to this type, returning a WithDispatch wrapper. Read more
Attaches the current default Subscriber to this type, returning a WithDispatch wrapper. Read more