summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSukadev Bhattiprolu <sukadev@linux.vnet.ibm.com>2017-05-24 22:02:11 -0700
committerStewart Smith <stewart@linux.vnet.ibm.com>2017-08-01 12:39:23 +1000
commit3b0a9da5be5b9f0dff7e4eddeb83971734f19659 (patch)
tree7051366b8c0639569ff427c74fe30995af0f22b1
parent31120a7e021fc3a3b3185d3fa839e2e135d4d83c (diff)
downloadblackbird-skiboot-3b0a9da5be5b9f0dff7e4eddeb83971734f19659.tar.gz
blackbird-skiboot-3b0a9da5be5b9f0dff7e4eddeb83971734f19659.zip
vas: Initialize VAS registers
Initialize the VAS registers on each of instance that we discover. Initializing VAS involves writing either pre-defined values or allocated addresses to appropriate SCOM addresses. Signed-off-by: Sukadev Bhattiprolu <sukadev@linux.vnet.ibm.com> [stewart@linux.vnet.ibm.com: update phys_map_get API usage] Signed-off-by: Stewart Smith <stewart@linux.vnet.ibm.com>
-rw-r--r--core/Makefile.inc1
-rw-r--r--core/init.c4
-rw-r--r--core/vas.c295
-rw-r--r--include/chip.h3
4 files changed, 303 insertions, 0 deletions
diff --git a/core/Makefile.inc b/core/Makefile.inc
index f2de2f64..c343386c 100644
--- a/core/Makefile.inc
+++ b/core/Makefile.inc
@@ -9,6 +9,7 @@ CORE_OBJS += vpd.o hostservices.o platform.o nvram.o nvram-format.o hmi.o
CORE_OBJS += console-log.o ipmi.o time-utils.o pel.o pool.o errorlog.o
CORE_OBJS += timer.o i2c.o rtc.o flash.o sensor.o ipmi-opal.o
CORE_OBJS += flash-subpartition.o bitmap.o buddy.o pci-quirk.o powercap.o psr.o
+CORE_OBJS += vas.o
ifeq ($(SKIBOOT_GCOV),1)
CORE_OBJS += gcov-profiling.o
diff --git a/core/init.c b/core/init.c
index 466a4263..61b531c7 100644
--- a/core/init.c
+++ b/core/init.c
@@ -45,6 +45,7 @@
#include <sensor.h>
#include <xive.h>
#include <nvram.h>
+#include <vas.h>
#include <libstb/stb.h>
#include <libstb/container.h>
#include <phys-map.h>
@@ -1002,6 +1003,9 @@ void __noreturn __nomcount main_cpu_entry(const void *fdt)
preload_capp_ucode();
start_preload_kernel();
+ /* Virtual Accelerator Switchboard */
+ vas_init();
+
/* NX init */
nx_init();
diff --git a/core/vas.c b/core/vas.c
new file mode 100644
index 00000000..2f8a8645
--- /dev/null
+++ b/core/vas.c
@@ -0,0 +1,295 @@
+/* Copyright 2013-2016 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 <skiboot.h>
+#include <chip.h>
+#include <phys-map.h>
+#include <xscom.h>
+#include <io.h>
+#include <vas.h>
+
+#define vas_err(__fmt,...) prlog(PR_ERR,"VAS: " __fmt, ##__VA_ARGS__)
+
+#ifdef VAS_VERBOSE_DEBUG
+#define vas_vdbg(__x,__fmt,...) prlog(PR_DEBUG,"VAS: " __fmt, ##__VA_ARGS__)
+#else
+#define vas_vdbg(__x,__fmt,...) do { } while (0)
+#endif
+
+static int vas_initialized;
+
+struct vas {
+ uint32_t chip_id;
+ uint32_t vas_id;
+ uint64_t xscom_base;
+ uint64_t wcbs;
+ uint32_t vas_irq;
+};
+
+static inline void get_hvwc_mmio_bar(int chipid, uint64_t *start, uint64_t *len)
+{
+ phys_map_get(chipid, VAS_HYP_WIN, 0, start, len);
+}
+
+static inline void get_uwc_mmio_bar(int chipid, uint64_t *start, uint64_t *len)
+{
+ phys_map_get(chipid, VAS_USER_WIN, 0, start, len);
+}
+
+static inline uint64_t compute_vas_scom_addr(struct vas *vas, uint64_t reg)
+{
+ return vas->xscom_base + reg;
+}
+
+static int vas_scom_write(struct proc_chip *chip, uint64_t reg, uint64_t val)
+{
+ int rc;
+ uint64_t addr;
+
+ addr = compute_vas_scom_addr(chip->vas, reg);
+
+ rc = xscom_write(chip->id, addr, val);
+ if (rc != OPAL_SUCCESS) {
+ vas_err("Error writing 0x%llx to 0x%llx, rc %d\n", val, addr,
+ rc);
+ }
+
+ return rc;
+}
+
+static int init_north_ctl(struct proc_chip *chip)
+{
+ uint64_t val = 0ULL;
+
+ val = SETFIELD(VAS_64K_MODE_MASK, val, true);
+ val = SETFIELD(VAS_ACCEPT_PASTE_MASK, val, true);
+
+ return vas_scom_write(chip, VAS_MISC_N_CTL, val);
+}
+
+static inline int reset_north_ctl(struct proc_chip *chip)
+{
+ return vas_scom_write(chip, VAS_MISC_N_CTL, 0ULL);
+}
+
+static void reset_fir(struct proc_chip *chip)
+{
+ uint64_t val;
+
+ val = 0x0ULL;
+ vas_scom_write(chip, VAS_FIR0, val);
+ vas_scom_write(chip, VAS_FIR1, val);
+ vas_scom_write(chip, VAS_FIR2, val);
+ vas_scom_write(chip, VAS_FIR3, val);
+ vas_scom_write(chip, VAS_FIR4, val);
+ vas_scom_write(chip, VAS_FIR5, val);
+ vas_scom_write(chip, VAS_FIR6, val);
+ vas_scom_write(chip, VAS_FIR7, val);
+}
+
+#define RMA_LSMP_64K_SYS_ID PPC_BITMASK(8, 12)
+#define RMA_LSMP_64K_NODE_ID PPC_BITMASK(15, 18)
+#define RMA_LSMP_64K_CHIP_ID PPC_BITMASK(19, 21)
+
+/*
+ * Initialize RMA BAR on this chip to correspond to its node/chip id.
+ * This will cause VAS to accept paste commands to targeted for this chip.
+ * Initialize RMA Base Address Mask Register (BAMR) to its default value.
+ */
+static int init_rma(struct proc_chip *chip)
+{
+ int rc;
+ uint64_t val;
+
+ val = 0ULL;
+ val = SETFIELD(RMA_LSMP_64K_SYS_ID, val, 1);
+ val = SETFIELD(RMA_LSMP_64K_NODE_ID, val, P9_GCID2NODEID(chip->id));
+ val = SETFIELD(RMA_LSMP_64K_CHIP_ID, val, P9_GCID2CHIPID(chip->id));
+
+ rc = vas_scom_write(chip, VAS_RMA_BAR, val);
+ if (rc)
+ return rc;
+
+ val = SETFIELD(VAS_RMA_BAMR_ADDR_MASK, 0ULL, 0xFFFC0000000ULL);
+
+ return vas_scom_write(chip, VAS_RMA_BAMR, val);
+}
+
+/*
+ * Window Context MMIO (WCM) Region for each chip is assigned in the P9
+ * MMIO MAP spreadsheet. Write this value to the SCOM address associated
+ * with WCM_BAR.
+ */
+static int init_wcm(struct proc_chip *chip)
+{
+ uint64_t wcmbar;
+
+ get_hvwc_mmio_bar(chip->id, &wcmbar, NULL);
+
+ /*
+ * Write the entire WCMBAR address to the SCOM address. VAS will
+ * extract bits that it thinks are relevant i.e bits 8..38
+ */
+ return vas_scom_write(chip, VAS_WCM_BAR, wcmbar);
+}
+
+/*
+ * OS/User Window Context MMIO (UWCM) Region for each is assigned in the
+ * P9 MMIO MAP spreadsheet. Write this value to the SCOM address associated
+ * with UWCM_BAR.
+ */
+static int init_uwcm(struct proc_chip *chip)
+{
+ uint64_t uwcmbar;
+
+ get_uwc_mmio_bar(chip->id, &uwcmbar, NULL);
+
+ /*
+ * Write the entire UWCMBAR address to the SCOM address. VAS will
+ * extract bits that it thinks are relevant i.e bits 8..35.
+ */
+ return vas_scom_write(chip, VAS_UWCM_BAR, uwcmbar);
+}
+
+static inline void free_wcbs(struct proc_chip *chip)
+{
+ if (chip->vas->wcbs) {
+ free((void *)chip->vas->wcbs);
+ chip->vas->wcbs = 0ULL;
+ }
+}
+
+/*
+ * VAS needs a backing store for the 64K window contexts on a chip.
+ * (64K times 512 = 8MB). This region needs to be contiguous, so
+ * allocate during early boot. Then write the allocated address to
+ * the SCOM address for the Backing store BAR.
+ */
+static int alloc_init_wcbs(struct proc_chip *chip)
+{
+ int rc;
+ uint64_t wcbs;
+ size_t size;
+
+ /* align to the backing store size */
+ size = (size_t)VAS_WCBS_SIZE;
+ wcbs = (uint64_t)local_alloc(chip->id, size, size);
+ if (!wcbs) {
+ vas_err("Unable to allocate memory for backing store\n");
+ return -ENOMEM;
+ }
+ memset((void *)wcbs, 0ULL, size);
+
+ /*
+ * Write entire WCBS_BAR address to the SCOM address. VAS will extract
+ * relevant bits.
+ */
+ rc = vas_scom_write(chip, VAS_WCBS_BAR, wcbs);
+ if (rc != OPAL_SUCCESS)
+ goto out;
+
+ chip->vas->wcbs = wcbs;
+ return OPAL_SUCCESS;
+
+out:
+ free((void *)wcbs);
+ return rc;
+}
+
+static struct vas *alloc_vas(uint32_t chip_id, uint32_t vas_id, uint64_t base)
+{
+ struct vas *vas;
+
+ vas = zalloc(sizeof(struct vas));
+ assert(vas);
+
+ vas->chip_id = chip_id;
+ vas->vas_id = vas_id;
+ vas->xscom_base = base;
+
+ return vas;
+}
+
+/*
+ * Disable one VAS instance.
+ *
+ * Free memory and ensure chip does not accept paste instructions.
+ */
+static void disable_vas_inst(struct dt_node *np)
+{
+ struct proc_chip *chip;
+
+ chip = get_chip(dt_get_chip_id(np));
+
+ if (!chip->vas)
+ return;
+
+ free_wcbs(chip);
+
+ reset_north_ctl(chip);
+}
+
+/*
+ * Initialize one VAS instance
+ */
+static int init_vas_inst(struct dt_node *np)
+{
+ uint32_t vas_id;
+ uint64_t xscom_base;
+ struct proc_chip *chip;
+
+ chip = get_chip(dt_get_chip_id(np));
+ vas_id = dt_prop_get_u32(np, "ibm,vas-id");
+ xscom_base = dt_get_address(np, 0, NULL);
+
+ chip->vas = alloc_vas(chip->id, vas_id, xscom_base);
+
+ if (alloc_init_wcbs(chip))
+ return -1;
+
+ reset_fir(chip);
+
+ if (init_wcm(chip) || init_uwcm(chip) || init_north_ctl(chip) ||
+ init_rma(chip))
+ return -1;
+
+ prlog(PR_INFO, "VAS: Initialized chip %d\n", chip->id);
+ return 0;
+
+}
+
+void vas_init()
+{
+ struct dt_node *np;
+
+ if (proc_gen != proc_gen_p9)
+ return;
+
+ dt_for_each_compatible(dt_root, np, "ibm,power9-vas-x") {
+ if (init_vas_inst(np))
+ goto out;
+ }
+
+ vas_initialized = 1;
+ prlog(PR_NOTICE, "VAS: Initialized\n");
+ return;
+
+out:
+ dt_for_each_compatible(dt_root, np, "ibm,power9-vas-x")
+ disable_vas_inst(np);
+
+ vas_err("Disabled (failed initialization)\n");
+ return;
+}
diff --git a/include/chip.h b/include/chip.h
index 6d227ddc..566edc55 100644
--- a/include/chip.h
+++ b/include/chip.h
@@ -112,6 +112,7 @@ struct centaur_chip;
struct mfsi;
struct xive;
struct lpcm;
+struct vas;
/* Chip type */
enum proc_chip_type {
@@ -212,6 +213,8 @@ struct proc_chip {
/* Used by hw/xive.c */
struct xive *xive;
+
+ struct vas *vas;
};
extern uint32_t pir_to_chip_id(uint32_t pir);
OpenPOWER on IntegriCloud