File tree Expand file tree Collapse file tree 1 file changed +6
-0
lines changed Expand file tree Collapse file tree 1 file changed +6
-0
lines changed Original file line number Diff line number Diff line change @@ -1005,6 +1005,8 @@ impl Cbp {
1005
1005
}
1006
1006
1007
1007
/// D-cache invalidate by set-way
1008
+ ///
1009
+ /// `set` is masked to be between 0 and 3, and `way` between 0 and 511.
1008
1010
#[ inline( always) ]
1009
1011
pub fn dcisw ( & self , set : u16 , way : u16 ) {
1010
1012
// The ARMv7-M Architecture Reference Manual, as of Revision E.b, says these set/way
@@ -1035,6 +1037,8 @@ impl Cbp {
1035
1037
}
1036
1038
1037
1039
/// D-cache clean by set-way
1040
+ ///
1041
+ /// `set` is masked to be between 0 and 3, and `way` between 0 and 511.
1038
1042
#[ inline( always) ]
1039
1043
pub fn dccsw ( & self , set : u16 , way : u16 ) {
1040
1044
// See comment for dcisw() about the format here
@@ -1051,6 +1055,8 @@ impl Cbp {
1051
1055
}
1052
1056
1053
1057
/// D-cache clean and invalidate by set-way
1058
+ ///
1059
+ /// `set` is masked to be between 0 and 3, and `way` between 0 and 511.
1054
1060
#[ inline( always) ]
1055
1061
pub fn dccisw ( & self , set : u16 , way : u16 ) {
1056
1062
// See comment for dcisw() about the format here
You can’t perform that action at this time.
0 commit comments