浏览代码

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 年之前
父节点
当前提交
e38a68d2ed
共有 2 个文件被更改,包括 2 次插入2 次删除
  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
 /// Reads the CSR
 #[inline]
 #[inline]

+ 1 - 1
src/register/mimpid.rs

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