aboutsummaryrefslogtreecommitdiff
path: root/hw
diff options
context:
space:
mode:
authorStewart Smith <stewart@linux.ibm.com>2019-06-18 17:29:23 +1000
committerStewart Smith <stewart@linux.ibm.com>2019-06-24 15:59:07 +1000
commitdfb707f5579eb3c4fa2a2e5d94ddb7136fac8249 (patch)
tree9b7ffcb46406c9217caffa5d55eac400a749fa89 /hw
parent5f64c9e48a120ccf49a27354c5a56b46d8441fc5 (diff)
downloadskiboot-dfb707f5579eb3c4fa2a2e5d94ddb7136fac8249.zip
skiboot-dfb707f5579eb3c4fa2a2e5d94ddb7136fac8249.tar.gz
skiboot-dfb707f5579eb3c4fa2a2e5d94ddb7136fac8249.tar.bz2
Separate FSP specific PSI code
Signed-off-by: Stewart Smith <stewart@linux.ibm.com>
Diffstat (limited to 'hw')
-rw-r--r--hw/fsp/Makefile.inc2
-rw-r--r--hw/fsp/fsp-psi.c97
-rw-r--r--hw/psi.c94
3 files changed, 107 insertions, 86 deletions
diff --git a/hw/fsp/Makefile.inc b/hw/fsp/Makefile.inc
index 4649621..bcb3f3b 100644
--- a/hw/fsp/Makefile.inc
+++ b/hw/fsp/Makefile.inc
@@ -5,6 +5,6 @@ FSP_OBJS += fsp-surveillance.o fsp-codeupdate.o fsp-sensor.o
FSP_OBJS += fsp-diag.o fsp-leds.o fsp-mem-err.o fsp-op-panel.o
FSP_OBJS += fsp-elog-read.o fsp-elog-write.o fsp-epow.o fsp-dpo.o
FSP_OBJS += fsp-dump.o fsp-mdst-table.o fsp-chiptod.o fsp-ipmi.o
-FSP_OBJS += fsp-attn.o fsp-occ.o
+FSP_OBJS += fsp-attn.o fsp-occ.o fsp-psi.o
FSP = hw/fsp/built-in.a
$(FSP): $(FSP_OBJS:%=hw/fsp/%)
diff --git a/hw/fsp/fsp-psi.c b/hw/fsp/fsp-psi.c
new file mode 100644
index 0000000..6c2d4bf
--- /dev/null
+++ b/hw/fsp/fsp-psi.c
@@ -0,0 +1,97 @@
+/* Copyright 2013-2014 IBM Corp.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
+ * implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+
+#include <io.h>
+#include <psi.h>
+#include <lock.h>
+#include <fsp.h>
+
+static void psi_tce_enable(struct psi *psi, bool enable)
+{
+ void *addr;
+ u64 val;
+
+ switch (proc_gen) {
+ case proc_gen_p8:
+ case proc_gen_p9:
+ addr = psi->regs + PSIHB_PHBSCR;
+ break;
+ default:
+ prerror("%s: Unknown CPU type\n", __func__);
+ return;
+ }
+
+ val = in_be64(addr);
+ if (enable)
+ val |= PSIHB_CR_TCE_ENABLE;
+ else
+ val &= ~PSIHB_CR_TCE_ENABLE;
+ out_be64(addr, val);
+}
+
+/*
+ * Configure the PSI interface for communicating with
+ * an FSP, such as enabling the TCEs, FSP commands,
+ * etc...
+ */
+void psi_init_for_fsp(struct psi *psi)
+{
+ uint64_t reg;
+ bool enable_tce = true;
+
+ lock(&psi_lock);
+
+ /* Disable and setup TCE base address */
+ psi_tce_enable(psi, false);
+
+ switch (proc_gen) {
+ case proc_gen_p8:
+ case proc_gen_p9:
+ out_be64(psi->regs + PSIHB_TAR, PSI_TCE_TABLE_BASE |
+ PSIHB_TAR_256K_ENTRIES);
+ break;
+ default:
+ enable_tce = false;
+ };
+
+ /* Enable various other configuration register bits based
+ * on what pHyp does. We keep interrupts disabled until
+ * after the mailbox has been properly configured. We assume
+ * basic stuff such as PSI link enable is already there.
+ *
+ * - FSP CMD Enable
+ * - FSP MMIO Enable
+ * - TCE Enable
+ * - Error response enable
+ *
+ * Clear all other error bits
+ */
+ if (!psi->active) {
+ prerror("PSI: psi_init_for_fsp() called on inactive link!\n");
+ unlock(&psi_lock);
+ return;
+ }
+
+ reg = in_be64(psi->regs + PSIHB_CR);
+ reg |= PSIHB_CR_FSP_CMD_ENABLE;
+ reg |= PSIHB_CR_FSP_MMIO_ENABLE;
+ reg |= PSIHB_CR_FSP_ERR_RSP_ENABLE;
+ reg &= ~0x00000000ffffffffull;
+ out_be64(psi->regs + PSIHB_CR, reg);
+ psi_tce_enable(psi, enable_tce);
+
+ unlock(&psi_lock);
+}
diff --git a/hw/psi.c b/hw/psi.c
index 5435c46..3b6ade1 100644
--- a/hw/psi.c
+++ b/hw/psi.c
@@ -45,7 +45,7 @@ static bool psi_ext_irq_policy = EXTERNAL_IRQ_POLICY_LINUX;
static void psi_activate_phb(struct psi *psi);
-static struct lock psi_lock = LOCK_UNLOCKED;
+struct lock psi_lock = LOCK_UNLOCKED;
DEFINE_LOG_ENTRY(OPAL_RC_PSI_TIMEOUT, OPAL_PLATFORM_ERR_EVT, OPAL_PSI,
OPAL_PLATFORM_FIRMWARE,
@@ -199,7 +199,8 @@ static void psi_link_poll(void *data __unused)
psi_activate_phb(psi);
psi_set_link_polling(false);
unlock(&psi_lock);
- fsp_reinit_fsp();
+ if (platform.psi && platform.psi->link_established)
+ platform.psi->link_established();
return;
}
}
@@ -333,14 +334,14 @@ static void psihb_interrupt(struct irq_source *is, uint32_t isn __unused)
*/
if (!psi->active)
psi_spurious_fsp_irq(psi);
- else
- fsp_interrupt();
+ else {
+ if (platform.psi && platform.psi->fsp_interrupt)
+ platform.psi->fsp_interrupt();
+ }
}
- /* Poll the console buffers on any interrupt since we don't
- * get send notifications
- */
- fsp_console_poll(NULL);
+ if (platform.psi && platform.psi->psihb_interrupt)
+ platform.psi->psihb_interrupt();
}
@@ -627,83 +628,6 @@ static const struct irq_source_ops psi_p9_irq_ops = {
.name = psi_p9_irq_name,
};
-static void psi_tce_enable(struct psi *psi, bool enable)
-{
- void *addr;
- u64 val;
-
- switch (proc_gen) {
- case proc_gen_p8:
- case proc_gen_p9:
- addr = psi->regs + PSIHB_PHBSCR;
- break;
- default:
- prerror("%s: Unknown CPU type\n", __func__);
- return;
- }
-
- val = in_be64(addr);
- if (enable)
- val |= PSIHB_CR_TCE_ENABLE;
- else
- val &= ~PSIHB_CR_TCE_ENABLE;
- out_be64(addr, val);
-}
-
-/*
- * Configure the PSI interface for communicating with
- * an FSP, such as enabling the TCEs, FSP commands,
- * etc...
- */
-void psi_init_for_fsp(struct psi *psi)
-{
- uint64_t reg;
- bool enable_tce = true;
-
- lock(&psi_lock);
-
- /* Disable and setup TCE base address */
- psi_tce_enable(psi, false);
-
- switch (proc_gen) {
- case proc_gen_p8:
- case proc_gen_p9:
- out_be64(psi->regs + PSIHB_TAR, PSI_TCE_TABLE_BASE |
- PSIHB_TAR_256K_ENTRIES);
- break;
- default:
- enable_tce = false;
- };
-
- /* Enable various other configuration register bits based
- * on what pHyp does. We keep interrupts disabled until
- * after the mailbox has been properly configured. We assume
- * basic stuff such as PSI link enable is already there.
- *
- * - FSP CMD Enable
- * - FSP MMIO Enable
- * - TCE Enable
- * - Error response enable
- *
- * Clear all other error bits
- */
- if (!psi->active) {
- prerror("PSI: psi_init_for_fsp() called on inactive link!\n");
- unlock(&psi_lock);
- return;
- }
-
- reg = in_be64(psi->regs + PSIHB_CR);
- reg |= PSIHB_CR_FSP_CMD_ENABLE;
- reg |= PSIHB_CR_FSP_MMIO_ENABLE;
- reg |= PSIHB_CR_FSP_ERR_RSP_ENABLE;
- reg &= ~0x00000000ffffffffull;
- out_be64(psi->regs + PSIHB_CR, reg);
- psi_tce_enable(psi, enable_tce);
-
- unlock(&psi_lock);
-}
-
void psi_set_external_irq_policy(bool policy)
{
psi_ext_irq_policy = policy;