mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-12-21 19:41:34 +07:00
9952f6918d
Based on 1 normalized pattern(s): 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 you should have received a copy of the gnu general public license along with this program if not see http www gnu org licenses extracted by the scancode license scanner the SPDX license identifier GPL-2.0-only has been chosen to replace the boilerplate/reference in 228 file(s). Signed-off-by: Thomas Gleixner <tglx@linutronix.de> Reviewed-by: Allison Randal <allison@lohutok.net> Reviewed-by: Steve Winslow <swinslow@gmail.com> Reviewed-by: Richard Fontana <rfontana@redhat.com> Reviewed-by: Alexios Zavras <alexios.zavras@intel.com> Cc: linux-spdx@vger.kernel.org Link: https://lkml.kernel.org/r/20190528171438.107155473@linutronix.de Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
100 lines
2.1 KiB
C
100 lines
2.1 KiB
C
// SPDX-License-Identifier: GPL-2.0-only
|
|
/*
|
|
* Copyright (c) 2013-2014, NVIDIA CORPORATION. All rights reserved.
|
|
*/
|
|
|
|
#include <linux/bug.h>
|
|
#include <linux/device.h>
|
|
#include <linux/kernel.h>
|
|
|
|
#include <soc/tegra/fuse.h>
|
|
|
|
#include "fuse.h"
|
|
|
|
#define SOC_PROCESS_CORNERS 2
|
|
#define CPU_PROCESS_CORNERS 2
|
|
|
|
enum {
|
|
THRESHOLD_INDEX_0,
|
|
THRESHOLD_INDEX_1,
|
|
THRESHOLD_INDEX_COUNT,
|
|
};
|
|
|
|
static const u32 __initconst soc_process_speedos[][SOC_PROCESS_CORNERS] = {
|
|
{1123, UINT_MAX},
|
|
{0, UINT_MAX},
|
|
};
|
|
|
|
static const u32 __initconst cpu_process_speedos[][CPU_PROCESS_CORNERS] = {
|
|
{1695, UINT_MAX},
|
|
{0, UINT_MAX},
|
|
};
|
|
|
|
static void __init rev_sku_to_speedo_ids(struct tegra_sku_info *sku_info,
|
|
int *threshold)
|
|
{
|
|
u32 tmp;
|
|
u32 sku = sku_info->sku_id;
|
|
enum tegra_revision rev = sku_info->revision;
|
|
|
|
switch (sku) {
|
|
case 0x00:
|
|
case 0x10:
|
|
case 0x05:
|
|
case 0x06:
|
|
sku_info->cpu_speedo_id = 1;
|
|
sku_info->soc_speedo_id = 0;
|
|
*threshold = THRESHOLD_INDEX_0;
|
|
break;
|
|
|
|
case 0x03:
|
|
case 0x04:
|
|
sku_info->cpu_speedo_id = 2;
|
|
sku_info->soc_speedo_id = 1;
|
|
*threshold = THRESHOLD_INDEX_1;
|
|
break;
|
|
|
|
default:
|
|
pr_err("Tegra Unknown SKU %d\n", sku);
|
|
sku_info->cpu_speedo_id = 0;
|
|
sku_info->soc_speedo_id = 0;
|
|
*threshold = THRESHOLD_INDEX_0;
|
|
break;
|
|
}
|
|
|
|
if (rev == TEGRA_REVISION_A01) {
|
|
tmp = tegra_fuse_read_early(0x270) << 1;
|
|
tmp |= tegra_fuse_read_early(0x26c);
|
|
if (!tmp)
|
|
sku_info->cpu_speedo_id = 0;
|
|
}
|
|
}
|
|
|
|
void __init tegra114_init_speedo_data(struct tegra_sku_info *sku_info)
|
|
{
|
|
u32 cpu_speedo_val;
|
|
u32 soc_speedo_val;
|
|
int threshold;
|
|
int i;
|
|
|
|
BUILD_BUG_ON(ARRAY_SIZE(cpu_process_speedos) !=
|
|
THRESHOLD_INDEX_COUNT);
|
|
BUILD_BUG_ON(ARRAY_SIZE(soc_process_speedos) !=
|
|
THRESHOLD_INDEX_COUNT);
|
|
|
|
rev_sku_to_speedo_ids(sku_info, &threshold);
|
|
|
|
cpu_speedo_val = tegra_fuse_read_early(0x12c) + 1024;
|
|
soc_speedo_val = tegra_fuse_read_early(0x134);
|
|
|
|
for (i = 0; i < CPU_PROCESS_CORNERS; i++)
|
|
if (cpu_speedo_val < cpu_process_speedos[threshold][i])
|
|
break;
|
|
sku_info->cpu_process_id = i;
|
|
|
|
for (i = 0; i < SOC_PROCESS_CORNERS; i++)
|
|
if (soc_speedo_val < soc_process_speedos[threshold][i])
|
|
break;
|
|
sku_info->soc_process_id = i;
|
|
}
|