[ES40-developers] DPR patch
Status: Alpha
Brought to you by:
iamcamiel
From: Brian W. <bdw...@in...> - 2008-04-09 12:45:27
|
Just a little patch which makes the RMC versions come out right: Firmware SRM Console: V7.2-1 ARC Console: PALcode: OpenVMS PALcode V1.98-104, Tru64 UNIX PALcode V1.92-105 Serial ROM: V2.22G RMC ROM: V1.0 RMC Flash ROM: V1.0 Index: DPR.cpp =================================================================== RCS file: /cvsroot/es40/es40/src/DPR.cpp,v retrieving revision 1.21 diff -u -r1.21 DPR.cpp --- DPR.cpp 17 Mar 2008 20:20:39 -0000 1.21 +++ DPR.cpp 9 Apr 2008 12:44:23 -0000 @@ -340,14 +340,14 @@ // 3009:300B RMC Rev Level of RMC first byte is letter Rev [x/t/v] second 2 bytes are major/minor. // This is the rev level of the RMC on-chip code. state.ram[0x3009] = 'V'; - state.ram[0x300a] = 0x01; - state.ram[0x300b] = 0x00; + state.ram[0x300a] = 0x31; + state.ram[0x300b] = 0x30; // 300C:300E RMC Rev Level of RMC first byte is letter Rev [x/t/v] second 2 bytes are major/minor. // This is the rev level of the RMC flash code. state.ram[0x300c] = 'V'; - state.ram[0x300d] = 0x01; - state.ram[0x300e] = 0x00; + state.ram[0x300d] = 0x31; + state.ram[0x300e] = 0x30; // 300F:3010 300F RMC Revision Field of the DPR Structure // 3400 SROM Size of Bcache in MB |