aboutsummaryrefslogtreecommitdiff
path: root/hw/phb3.c
diff options
context:
space:
mode:
authorStewart Smith <stewart@linux.vnet.ibm.com>2014-11-19 12:04:50 +1100
committerStewart Smith <stewart@linux.vnet.ibm.com>2014-11-19 12:04:50 +1100
commit0265f805be05f224fbcf3913fb4c604fa04da7e0 (patch)
treedeabdf98c2e95fa63ff43dbcb1341c66dd4fe6e3 /hw/phb3.c
parent31d20fc02c8ee7c12d84bc28ce732bbc362ce369 (diff)
parent73cd106cdfd9f6629e8ab720792f68d70ddf5b72 (diff)
downloadskiboot-0265f805be05f224fbcf3913fb4c604fa04da7e0.zip
skiboot-0265f805be05f224fbcf3913fb4c604fa04da7e0.tar.gz
skiboot-0265f805be05f224fbcf3913fb4c604fa04da7e0.tar.bz2
Merge branch 'update-2.1.1.1'
Diffstat (limited to 'hw/phb3.c')
-rw-r--r--hw/phb3.c32
1 files changed, 32 insertions, 0 deletions
diff --git a/hw/phb3.c b/hw/phb3.c
index 631ff88..c07d2eb 100644
--- a/hw/phb3.c
+++ b/hw/phb3.c
@@ -3704,12 +3704,44 @@ static void phb3_init_errors(struct phb3 *p)
out_be64(p->regs + PHB_LEM_WOF, 0x0000000000000000);
}
+static int64_t phb3_fixup_pec_inits(struct phb3 *p)
+{
+ int64_t rc;
+ uint64_t val;
+
+ /* These fixups handle some timer updates that HB doesn't yet do
+ * to work around problems with some adapters or external drawers
+ * (SW283991)
+ */
+
+ /* PCI Hardware Configuration 0 Register */
+ rc = xscom_read(p->chip_id, p->pe_xscom + 0x18, &val);
+ if (rc) {
+ PHBERR(p, "Can't read CS0 !\n");
+ return rc;
+ }
+ val = val & 0x0f0fffffffffffffull;
+ val = val | 0x1010000000000000ull;
+ rc = xscom_write(p->chip_id, p->pe_xscom + 0x18, val);
+ if (rc) {
+ PHBERR(p, "Can't write CS0 !\n");
+ return rc;
+ }
+ return 0;
+}
+
static void phb3_init_hw(struct phb3 *p)
{
uint64_t val;
PHBDBG(p, "Initializing PHB...\n");
+ /* Fixups for PEC inits */
+ if (phb3_fixup_pec_inits(p)) {
+ PHBERR(p, "Failed to init PEC, PHB appears broken\n");
+ goto failed;
+ }
+
/* Lift reset */
xscom_read(p->chip_id, p->spci_xscom + 1, &val);/* HW275117 */
xscom_write(p->chip_id, p->pci_xscom + 0xa, 0);