Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 8421dc1d authored by Linux Build Service Account's avatar Linux Build Service Account Committed by Gerrit - the friendly Code Review server
Browse files

Merge "msm: kgsl: Don't overwrite the VBIF XIN offset for A3xx"

parents 480ed542 63e2074d
Loading
Loading
Loading
Loading
+2 −6
Original line number Diff line number Diff line
/* Copyright (c) 2012-2015, The Linux Foundation. All rights reserved.
/* Copyright (c) 2012-2016, The Linux Foundation. All rights reserved.
 *
 * This program is free software; you can redistribute it and/or modify
 * it under the terms of the GNU General Public License version 2 and
@@ -548,15 +548,11 @@

#define A3XX_VBIF_XIN_HALT_CTRL0 0x3080
#define A3XX_VBIF_XIN_HALT_CTRL0_MASK 0x3F
#define A30X_VBIF_XIN_HALT_CTRL0_MASK 0x7

#define A3XX_VBIF_XIN_HALT_CTRL1 0x3081

/* VBIF register offsets for A306 */
#define A3XX_VBIF2_XIN_HALT_CTRL0 0x3081
#define A3XX_VBIF2_XIN_HALT_CTRL0_MASK 0x7

#define A3XX_VBIF2_XIN_HALT_CTRL1 0x3082

#define A3XX_VBIF2_PERF_CNT_EN0 0x30c0
#define A3XX_VBIF2_PERF_CNT_EN1 0x30c1
#define A3XX_VBIF2_PERF_CNT_EN2 0x30c2
+3 −8
Original line number Diff line number Diff line
@@ -596,17 +596,12 @@ int adreno_a3xx_pwron_fixup_init(struct adreno_device *adreno_dev)
static void a3xx_platform_setup(struct adreno_device *adreno_dev)
{
	struct adreno_gpudev *gpudev;
	const struct adreno_reg_offsets *reg_offsets;

	if (adreno_is_a306(adreno_dev) || adreno_is_a306a(adreno_dev)) {
	if (adreno_is_a306(adreno_dev) || adreno_is_a306a(adreno_dev)
			|| adreno_is_a304(adreno_dev)) {
		gpudev = ADRENO_GPU_DEVICE(adreno_dev);
		reg_offsets = gpudev->reg_offsets;
		reg_offsets->offsets[ADRENO_REG_VBIF_XIN_HALT_CTRL0] =
			A3XX_VBIF2_XIN_HALT_CTRL0;
		reg_offsets->offsets[ADRENO_REG_VBIF_XIN_HALT_CTRL1] =
			A3XX_VBIF2_XIN_HALT_CTRL1;
		gpudev->vbif_xin_halt_ctrl0_mask =
				A3XX_VBIF2_XIN_HALT_CTRL0_MASK;
				A30X_VBIF_XIN_HALT_CTRL0_MASK;
	}
}