diff options
author | Dan Crowell <dcrowell@us.ibm.com> | 2014-10-15 23:53:14 -0500 |
---|---|---|
committer | A. Patrick Williams III <iawillia@us.ibm.com> | 2014-10-31 10:04:14 -0500 |
commit | 96fe95fe8def7d1c1d6b110588b42167d1238d42 (patch) | |
tree | 547ba33b72ae894a99c36d8f4ee0c681adf9e24d /src/usr/console | |
parent | acd26bc5132d001051405e408f724fc6a1c7088b (diff) | |
download | talos-hostboot-96fe95fe8def7d1c1d6b110588b42167d1238d42.tar.gz talos-hostboot-96fe95fe8def7d1c1d6b110588b42167d1238d42.zip |
Enable writes to PNOR on AST systems
Unlock SIO after console setup
Fix PP write length
Change-Id: I3b5b9c589ac16b392a0df6f9d4355f8aa1701061
RTC: 97493
Reviewed-on: http://gfw160.aus.stglabs.ibm.com:8080/gerrit/14028
Tested-by: Jenkins Server
Reviewed-by: Michael Baiocchi <baiocchi@us.ibm.com>
Reviewed-by: A. Patrick Williams III <iawillia@us.ibm.com>
Diffstat (limited to 'src/usr/console')
-rw-r--r-- | src/usr/console/ast2400.C | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/src/usr/console/ast2400.C b/src/usr/console/ast2400.C index 0723c5342..db0bf40ae 100644 --- a/src/usr/console/ast2400.C +++ b/src/usr/console/ast2400.C @@ -102,9 +102,11 @@ class Ast2400Uart : public Uart l_errl = _writeReg( 0x2f, 0x01 ); // write enable if (l_errl) { break; } + //@fixme-RTC:115576 - Leaving SIO unlocked for now to allow + // PNOR write/erase to work // Lock the SIO registers - l_errl = _writeReg( 0x2e, 0xAA ); - if (l_errl) { break; } + //l_errl = _writeReg( 0x2e, 0xAA ); + //if (l_errl) { break; } } while(0); |