/* * GM20B PMU * * Copyright (c) 2014, NVIDIA CORPORATION. All rights reserved. * * This program is free software; you can redistribute it and/or modify it * under the terms and conditions of the GNU General Public License, * version 2, as published by the Free Software Foundation. * * This program is distributed in the hope it will be useful, but WITHOUT * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for * more details. */ #include /* for udelay */ #include "gk20a/gk20a.h" #include "gk20a/pmu_gk20a.h" #include "acr_gm20b.h" #include "pmu_gm20b.h" /*! * Structure/object which single register write need to be done during PG init * sequence to set PROD values. */ struct pg_init_sequence_list { u32 regaddr; u32 writeval; }; #define gm20b_dbg_pmu(fmt, arg...) \ gk20a_dbg(gpu_dbg_pmu, fmt, ##arg) /* PROD settings for ELPG sequencing registers*/ static struct pg_init_sequence_list _pginitseq_gm20b[] = { { 0x0010ab10, 0x8180}, { 0x0010e118, 0x81818080}, { 0x0010e068, 0}, { 0x0010e06c, 0x00000080}, { 0x0010e06c, 0x00000080}, { 0x0010e06c, 0x00000081}, { 0x0010e06c, 0x00000081}, { 0x0010e06c, 0x00000082}, { 0x0010e06c, 0x00000083}, { 0x0010e06c, 0x00000083}, { 0x0010e06c, 0x00000083}, { 0x0010e06c, 0x00000083}, { 0x0010e06c, 0x00000083}, { 0x0010e06c, 0x00000080}, { 0x0010e06c, 0x00000080}, { 0x0010e06c, 0x00000081}, { 0x0010e06c, 0x00000081}, { 0x0010e06c, 0x00000082}, { 0x0010e06c, 0x00000083}, { 0x0010e06c, 0x00000083}, { 0x0010e06c, 0x00000083}, { 0x0010e06c, 0x00000083}, { 0x0010e06c, 0x00000083}, { 0x0010e06c, 0x00000080}, { 0x0010e06c, 0x00000080}, { 0x0010e06c, 0x00000081}, { 0x0010e06c, 0x00000081}, { 0x0010e06c, 0x00000082}, { 0x0010e06c, 0x00000083}, { 0x0010e06c, 0x00000083}, { 0x0010e06c, 0x00000083}, { 0x0010e06c, 0x00000083}, { 0x0010e06c, 0x00000083}, { 0x0010e06c, 0x00000080}, { 0x0010e06c, 0x00000080}, { 0x0010e06c, 0x00000081}, { 0x0010e06c, 0x00000081}, { 0x0010e06c, 0x00000082}, { 0x0010e06c, 0x00000083}, { 0x0010e06c, 0x00000083}, { 0x0010e06c, 0x00000083}, { 0x0010e06c, 0x00000083}, { 0x0010e06c, 0x00000083}, { 0x0010e06c, 0x00000080}, { 0x0010e06c, 0x00000080}, { 0x0010e06c, 0x00000081}, { 0x0010e06c, 0x00000081}, { 0x0010e06c, 0x00000082}, { 0x0010e06c, 0x00000083}, { 0x0010e06c, 0x00000083}, { 0x0010e06c, 0x00000083}, { 0x0010e06c, 0x00000083}, { 0x0010e06c, 0x00000083}, { 0x0010e06c, 0x00000080}, { 0x0010e06c, 0x00000080}, { 0x0010e06c, 0x00000081}, { 0x0010e06c, 0x00000081}, { 0x0010e06c, 0x00000082}, { 0x0010e06c, 0x00000083}, { 0x0010e06c, 0x00000083}, { 0x0010e06c, 0x00000083}, { 0x0010e06c, 0x00000083}, { 0x0010e06c, 0x00000083}, { 0x0010e06c, 0x00000080}, { 0x0010e06c, 0x00000080}, { 0x0010e06c, 0x00000081}, { 0x0010e06c, 0x00000081}, { 0x0010e06c, 0x00000082}, { 0x0010e06c, 0x00000083}, { 0x0010ab14, 0x00000000}, { 0x0010ab18, 0x00000000}, { 0x0010e024, 0x00000000}, { 0x0010e028, 0x00000000}, { 0x0010e11c, 0x00000000}, { 0x0010e120, 0x00000000}, { 0x0010ab1c, 0x00010011}, { 0x0010e020, 0x001C0011}, { 0x0010e124, 0x00030011}, { 0x0010ab20, 0xfedcba98}, { 0x0010ab24, 0x00000000}, { 0x0010e02c, 0xfedcba98}, { 0x0010e030, 0x00000000}, { 0x0010e128, 0xfedcba98}, { 0x0010e12c, 0x00000000}, { 0x0010ab28, 0x71111111}, { 0x0010ab2c, 0x70000000}, { 0x0010e034, 0x71111111}, { 0x0010e038, 0x70000000}, { 0x0010e130, 0x71111111}, { 0x0010e134, 0x70000000}, { 0x0010ab30, 0x00000000}, { 0x0010ab34, 0x00000001}, { 0x00020004, 0x00000000}, { 0x0010e138, 0x00000000}, { 0x0010e040, 0x00000000}, }; int gm20b_pmu_setup_elpg(struct gk20a *g) { int ret = 0; u32 reg_writes; u32 index; gk20a_dbg_fn(""); if (g->elpg_enabled) { reg_writes = ((sizeof(_pginitseq_gm20b) / sizeof((_pginitseq_gm20b)[0]))); /* Initialize registers with production values*/ for (index = 0; index < reg_writes; index++) { gk20a_writel(g, _pginitseq_gm20b[index].regaddr, _pginitseq_gm20b[index].writeval); } } gk20a_dbg_fn("done"); return ret; } void pmu_handle_acr_init_wpr_msg(struct gk20a *g, struct pmu_msg *msg, void *param, u32 handle, u32 status) { gk20a_dbg_fn(""); gm20b_dbg_pmu("reply PMU_ACR_CMD_ID_INIT_WPR_REGION"); if (msg->msg.acr.acrmsg.errorcode == PMU_ACR_SUCCESS) g->ops.pmu.lspmuwprinitdone = true; gk20a_dbg_fn("done"); } int gm20b_pmu_init_acr(struct gk20a *g) { struct pmu_gk20a *pmu = &g->pmu; struct pmu_cmd cmd; u32 seq; gk20a_dbg_fn(""); /* init ACR */ memset(&cmd, 0, sizeof(struct pmu_cmd)); cmd.hdr.unit_id = PMU_UNIT_ACR; cmd.hdr.size = PMU_CMD_HDR_SIZE + sizeof(struct pmu_acr_cmd_init_wpr_details); cmd.cmd.acr.init_wpr.cmd_type = PMU_ACR_CMD_ID_INIT_WPR_REGION; cmd.cmd.acr.init_wpr.regionid = 0x01; cmd.cmd.acr.init_wpr.wproffset = 0x00; gm20b_dbg_pmu("cmd post PMU_ACR_CMD_ID_INIT_WPR_REGION"); gk20a_pmu_cmd_post(g, &cmd, NULL, NULL, PMU_COMMAND_QUEUE_HPQ, pmu_handle_acr_init_wpr_msg, pmu, &seq, ~0); gk20a_dbg_fn("done"); return 0; } void pmu_handle_fecs_boot_acr_msg(struct gk20a *g, struct pmu_msg *msg, void *param, u32 handle, u32 status) { gk20a_dbg_fn(""); if (msg->msg.acr.acrmsg.falconid == LSF_FALCON_ID_FECS) gm20b_dbg_pmu("reply PMU_ACR_CMD_ID_BOOTSTRAP_FALCON"); gm20b_dbg_pmu("response code = %x\n", msg->msg.acr.acrmsg.falconid); gk20a_dbg_fn("done"); } void gm20b_pmu_load_lsf(struct gk20a *g, u8 falcon_id) { struct pmu_gk20a *pmu = &g->pmu; struct pmu_cmd cmd; u32 seq; gk20a_dbg_fn(""); gm20b_dbg_pmu("wprinit status = %x\n", g->ops.pmu.lspmuwprinitdone); if (g->ops.pmu.lspmuwprinitdone && g->ops.pmu.fecsbootstrapdone) { /* send message to load FECS falcon */ memset(&cmd, 0, sizeof(struct pmu_cmd)); cmd.hdr.unit_id = PMU_UNIT_ACR; cmd.hdr.size = PMU_CMD_HDR_SIZE + sizeof(struct pmu_acr_cmd_bootstrap_falcon); cmd.cmd.acr.bootstrap_falcon.cmd_type = PMU_ACR_CMD_ID_BOOTSTRAP_FALCON; cmd.cmd.acr.bootstrap_falcon.flags = PMU_ACR_CMD_BOOTSTRAP_FALCON_FLAGS_RESET_YES; cmd.cmd.acr.bootstrap_falcon.falconid = falcon_id; gm20b_dbg_pmu("cmd post PMU_ACR_CMD_ID_BOOTSTRAP_FALCON"); g->ops.pmu.fecsrecoveryinprogress = 1; gk20a_pmu_cmd_post(g, &cmd, NULL, NULL, PMU_COMMAND_QUEUE_HPQ, pmu_handle_fecs_boot_acr_msg, pmu, &seq, ~0); } gk20a_dbg_fn("done"); return; } void gm20b_init_pmu_ops(struct gpu_ops *gops) { if (gops->privsecurity) { gm20b_init_secure_pmu(gops); gops->pmu.init_wpr_region = gm20b_pmu_init_acr; } else { gk20a_init_pmu_ops(gops); gops->pmu.init_wpr_region = NULL; } gops->pmu.pmu_setup_elpg = gm20b_pmu_setup_elpg; gops->pmu.lspmuwprinitdone = false; gops->pmu.fecsbootstrapdone = false; gops->pmu.fecsrecoveryinprogress = 0; }