diff options
Diffstat (limited to 'src/dev/arm/rv_ctrl.hh')
-rw-r--r-- | src/dev/arm/rv_ctrl.hh | 10 |
1 files changed, 7 insertions, 3 deletions
diff --git a/src/dev/arm/rv_ctrl.hh b/src/dev/arm/rv_ctrl.hh index c6cf40f96..adf065631 100644 --- a/src/dev/arm/rv_ctrl.hh +++ b/src/dev/arm/rv_ctrl.hh @@ -1,5 +1,5 @@ /* - * Copyright (c) 2010 ARM Limited + * Copyright (c) 2010,2013 ARM Limited * All rights reserved * * The license below extends only to copyright in the software and shall @@ -80,8 +80,8 @@ class RealViewCtrl : public BasicPioDevice IoSel = 0x70, ProcId0 = 0x84, ProcId1 = 0x88, - CfgCtrl = 0xA0, - CfgData = 0xA4, + CfgData = 0xA0, + CfgCtrl = 0xA4, CfgStat = 0xA8, TestOsc0 = 0xC0, TestOsc1 = 0xC4, @@ -105,6 +105,10 @@ class RealViewCtrl : public BasicPioDevice */ uint32_t flags; + /** This register contains the result from a system control reg access + */ + uint32_t scData; + public: typedef RealViewCtrlParams Params; const Params * |