Browse Source

Merge #107

107: fix reading marchid and mimpid r=Disasm a=orangecms

It seems to have been a copy-paste error.
We ran into a very nasty bug in oreboot on the Allwinner D1 (C906) where
an errata patch in Linux relies on those two being zero.

Signed-off-by: Daniel Maslowski <info@orangecms.org>

Co-authored-by: Daniel Maslowski <info@orangecms.org>
bors[bot] 2 years ago
parent
commit
e38a68d2ed
2 changed files with 2 additions and 2 deletions
  1. 1 1
      src/register/marchid.rs
  2. 1 1
      src/register/mimpid.rs

+ 1 - 1
src/register/marchid.rs

@@ -16,7 +16,7 @@ impl Marchid {
     }
 }
 
-read_csr!(0xF11);
+read_csr!(0xF12);
 
 /// Reads the CSR
 #[inline]

+ 1 - 1
src/register/mimpid.rs

@@ -16,7 +16,7 @@ impl Mimpid {
     }
 }
 
-read_csr!(0xF11);
+read_csr!(0xF13);
 
 /// Reads the CSR
 #[inline]