Commit 90b593ce authored by Rob Clark's avatar Rob Clark

drm/msm/adreno: Switch to chip-id for identifying GPU

Since the revision becomes an opaque identifier with future GPUs, move
away from treating different ranges of bits as having a given meaning.
This means that we need to explicitly list different patch revisions in
the device table.
Signed-off-by: default avatarRob Clark <robdclark@chromium.org>
Reviewed-by: default avatarDmitry Baryshkov <dmitry.baryshkov@linaro.org>
Patchwork: https://patchwork.freedesktop.org/patch/549782/
parent b42ab854
...@@ -145,7 +145,7 @@ static void a4xx_enable_hwcg(struct msm_gpu *gpu) ...@@ -145,7 +145,7 @@ static void a4xx_enable_hwcg(struct msm_gpu *gpu)
gpu_write(gpu, REG_A4XX_RBBM_CLOCK_DELAY_HLSQ, 0x00220000); gpu_write(gpu, REG_A4XX_RBBM_CLOCK_DELAY_HLSQ, 0x00220000);
/* Early A430's have a timing issue with SP/TP power collapse; /* Early A430's have a timing issue with SP/TP power collapse;
disabling HW clock gating prevents it. */ disabling HW clock gating prevents it. */
if (adreno_is_a430(adreno_gpu) && adreno_gpu->rev.patchid < 2) if (adreno_is_a430(adreno_gpu) && adreno_patchid(adreno_gpu) < 2)
gpu_write(gpu, REG_A4XX_RBBM_CLOCK_CTL, 0); gpu_write(gpu, REG_A4XX_RBBM_CLOCK_CTL, 0);
else else
gpu_write(gpu, REG_A4XX_RBBM_CLOCK_CTL, 0xAAAAAAAA); gpu_write(gpu, REG_A4XX_RBBM_CLOCK_CTL, 0xAAAAAAAA);
......
...@@ -1770,7 +1770,7 @@ struct msm_gpu *a5xx_gpu_init(struct drm_device *dev) ...@@ -1770,7 +1770,7 @@ struct msm_gpu *a5xx_gpu_init(struct drm_device *dev)
nr_rings = 4; nr_rings = 4;
if (adreno_cmp_rev(ADRENO_REV(5, 1, 0, ANY_ID), config->rev)) if (config->info->revn == 510)
nr_rings = 1; nr_rings = 1;
ret = adreno_gpu_init(dev, pdev, adreno_gpu, &funcs, nr_rings); ret = adreno_gpu_init(dev, pdev, adreno_gpu, &funcs, nr_rings);
......
...@@ -179,7 +179,7 @@ static void a540_lm_setup(struct msm_gpu *gpu) ...@@ -179,7 +179,7 @@ static void a540_lm_setup(struct msm_gpu *gpu)
/* The battery current limiter isn't enabled for A540 */ /* The battery current limiter isn't enabled for A540 */
config = AGC_LM_CONFIG_BCL_DISABLED; config = AGC_LM_CONFIG_BCL_DISABLED;
config |= adreno_gpu->rev.patchid << AGC_LM_CONFIG_GPU_VERSION_SHIFT; config |= adreno_patchid(adreno_gpu) << AGC_LM_CONFIG_GPU_VERSION_SHIFT;
/* For now disable GPMU side throttling */ /* For now disable GPMU side throttling */
config |= AGC_LM_CONFIG_THROTTLE_DISABLE; config |= AGC_LM_CONFIG_THROTTLE_DISABLE;
......
...@@ -790,10 +790,16 @@ static int a6xx_gmu_fw_start(struct a6xx_gmu *gmu, unsigned int state) ...@@ -790,10 +790,16 @@ static int a6xx_gmu_fw_start(struct a6xx_gmu *gmu, unsigned int state)
gmu_write(gmu, REG_A6XX_GMU_AHB_FENCE_RANGE_0, gmu_write(gmu, REG_A6XX_GMU_AHB_FENCE_RANGE_0,
(1 << 31) | (0xa << 18) | (0xa0)); (1 << 31) | (0xa << 18) | (0xa0));
chipid = adreno_gpu->rev.core << 24; /*
chipid |= adreno_gpu->rev.major << 16; * Note that the GMU has a slightly different layout for
chipid |= adreno_gpu->rev.minor << 12; * chip_id, for whatever reason, so a bit of massaging
chipid |= adreno_gpu->rev.patchid << 8; * is needed. The upper 16b are the same, but minor and
* patchid are packed in four bits each with the lower
* 8b unused:
*/
chipid = adreno_gpu->chip_id & 0xffff0000;
chipid |= (adreno_gpu->chip_id << 4) & 0xf000; /* minor */
chipid |= (adreno_gpu->chip_id << 8) & 0x0f00; /* patchid */
gmu_write(gmu, REG_A6XX_GMU_HFI_SFR_ADDR, chipid); gmu_write(gmu, REG_A6XX_GMU_HFI_SFR_ADDR, chipid);
......
This diff is collapsed.
...@@ -326,10 +326,7 @@ int adreno_get_param(struct msm_gpu *gpu, struct msm_file_private *ctx, ...@@ -326,10 +326,7 @@ int adreno_get_param(struct msm_gpu *gpu, struct msm_file_private *ctx,
*value = !adreno_is_a650_family(adreno_gpu) ? 0x100000 : 0; *value = !adreno_is_a650_family(adreno_gpu) ? 0x100000 : 0;
return 0; return 0;
case MSM_PARAM_CHIP_ID: case MSM_PARAM_CHIP_ID:
*value = (uint64_t)adreno_gpu->rev.patchid | *value = adreno_gpu->chip_id;
((uint64_t)adreno_gpu->rev.minor << 8) |
((uint64_t)adreno_gpu->rev.major << 16) |
((uint64_t)adreno_gpu->rev.core << 24);
if (!adreno_gpu->info->revn) if (!adreno_gpu->info->revn)
*value |= ((uint64_t) adreno_gpu->speedbin) << 32; *value |= ((uint64_t) adreno_gpu->speedbin) << 32;
return 0; return 0;
...@@ -849,7 +846,7 @@ void adreno_show(struct msm_gpu *gpu, struct msm_gpu_state *state, ...@@ -849,7 +846,7 @@ void adreno_show(struct msm_gpu *gpu, struct msm_gpu_state *state,
drm_printf(p, "revision: %u (%"ADRENO_CHIPID_FMT")\n", drm_printf(p, "revision: %u (%"ADRENO_CHIPID_FMT")\n",
adreno_gpu->info->revn, adreno_gpu->info->revn,
ADRENO_CHIPID_ARGS(adreno_gpu->rev)); ADRENO_CHIPID_ARGS(adreno_gpu->chip_id));
/* /*
* If this is state collected due to iova fault, so fault related info * If this is state collected due to iova fault, so fault related info
* *
...@@ -922,7 +919,7 @@ void adreno_dump_info(struct msm_gpu *gpu) ...@@ -922,7 +919,7 @@ void adreno_dump_info(struct msm_gpu *gpu)
printk("revision: %u (%"ADRENO_CHIPID_FMT")\n", printk("revision: %u (%"ADRENO_CHIPID_FMT")\n",
adreno_gpu->info->revn, adreno_gpu->info->revn,
ADRENO_CHIPID_ARGS(adreno_gpu->rev)); ADRENO_CHIPID_ARGS(adreno_gpu->chip_id));
for (i = 0; i < gpu->nr_rings; i++) { for (i = 0; i < gpu->nr_rings; i++) {
struct msm_ringbuffer *ring = gpu->rb[i]; struct msm_ringbuffer *ring = gpu->rb[i];
...@@ -1073,14 +1070,13 @@ int adreno_gpu_init(struct drm_device *drm, struct platform_device *pdev, ...@@ -1073,14 +1070,13 @@ int adreno_gpu_init(struct drm_device *drm, struct platform_device *pdev,
struct adreno_platform_config *config = dev->platform_data; struct adreno_platform_config *config = dev->platform_data;
struct msm_gpu_config adreno_gpu_config = { 0 }; struct msm_gpu_config adreno_gpu_config = { 0 };
struct msm_gpu *gpu = &adreno_gpu->base; struct msm_gpu *gpu = &adreno_gpu->base;
struct adreno_rev *rev = &config->rev;
const char *gpu_name; const char *gpu_name;
u32 speedbin; u32 speedbin;
int ret; int ret;
adreno_gpu->funcs = funcs; adreno_gpu->funcs = funcs;
adreno_gpu->info = config->info; adreno_gpu->info = config->info;
adreno_gpu->rev = *rev; adreno_gpu->chip_id = config->chip_id;
/* Only handle the core clock when GMU is not in use (or is absent). */ /* Only handle the core clock when GMU is not in use (or is absent). */
if (adreno_has_gmu_wrapper(adreno_gpu) || if (adreno_has_gmu_wrapper(adreno_gpu) ||
...@@ -1105,7 +1101,7 @@ int adreno_gpu_init(struct drm_device *drm, struct platform_device *pdev, ...@@ -1105,7 +1101,7 @@ int adreno_gpu_init(struct drm_device *drm, struct platform_device *pdev,
adreno_gpu->speedbin = (uint16_t) (0xffff & speedbin); adreno_gpu->speedbin = (uint16_t) (0xffff & speedbin);
gpu_name = devm_kasprintf(dev, GFP_KERNEL, "%"ADRENO_CHIPID_FMT, gpu_name = devm_kasprintf(dev, GFP_KERNEL, "%"ADRENO_CHIPID_FMT,
ADRENO_CHIPID_ARGS(config->rev)); ADRENO_CHIPID_ARGS(config->chip_id));
if (!gpu_name) if (!gpu_name)
return -ENOMEM; return -ENOMEM;
......
...@@ -54,23 +54,15 @@ enum adreno_family { ...@@ -54,23 +54,15 @@ enum adreno_family {
#define ADRENO_QUIRK_HAS_HW_APRIV BIT(3) #define ADRENO_QUIRK_HAS_HW_APRIV BIT(3)
#define ADRENO_QUIRK_HAS_CACHED_COHERENT BIT(4) #define ADRENO_QUIRK_HAS_CACHED_COHERENT BIT(4)
struct adreno_rev {
uint8_t core;
uint8_t major;
uint8_t minor;
uint8_t patchid;
};
#define ANY_ID 0xff
#define ADRENO_REV(core, major, minor, patchid) \
((struct adreno_rev){ core, major, minor, patchid })
/* Helper for formating the chip_id in the way that userspace tools like /* Helper for formating the chip_id in the way that userspace tools like
* crashdec expect. * crashdec expect.
*/ */
#define ADRENO_CHIPID_FMT "u.%u.%u.%u" #define ADRENO_CHIPID_FMT "u.%u.%u.%u"
#define ADRENO_CHIPID_ARGS(_r) (_r).core, (_r).major, (_r).minor, (_r).patchid #define ADRENO_CHIPID_ARGS(_c) \
(((_c) >> 24) & 0xff), \
(((_c) >> 16) & 0xff), \
(((_c) >> 8) & 0xff), \
((_c) & 0xff)
struct adreno_gpu_funcs { struct adreno_gpu_funcs {
struct msm_gpu_funcs base; struct msm_gpu_funcs base;
...@@ -92,7 +84,12 @@ struct adreno_speedbin { ...@@ -92,7 +84,12 @@ struct adreno_speedbin {
struct adreno_info { struct adreno_info {
const char *machine; const char *machine;
struct adreno_rev rev; /**
* @chipids: Table of matching chip-ids
*
* Terminated with 0 sentinal
*/
uint32_t *chip_ids;
enum adreno_family family; enum adreno_family family;
uint32_t revn; uint32_t revn;
const char *fw[ADRENO_FW_MAX]; const char *fw[ADRENO_FW_MAX];
...@@ -112,6 +109,8 @@ struct adreno_info { ...@@ -112,6 +109,8 @@ struct adreno_info {
struct adreno_speedbin *speedbins; struct adreno_speedbin *speedbins;
}; };
#define ADRENO_CHIP_IDS(tbl...) (uint32_t[]) { tbl, 0 }
/* /*
* Helper to build a speedbin table, ie. the table: * Helper to build a speedbin table, ie. the table:
* fuse | speedbin * fuse | speedbin
...@@ -132,8 +131,8 @@ struct adreno_info { ...@@ -132,8 +131,8 @@ struct adreno_info {
struct adreno_gpu { struct adreno_gpu {
struct msm_gpu base; struct msm_gpu base;
struct adreno_rev rev;
const struct adreno_info *info; const struct adreno_info *info;
uint32_t chip_id;
uint16_t speedbin; uint16_t speedbin;
const struct adreno_gpu_funcs *funcs; const struct adreno_gpu_funcs *funcs;
...@@ -182,7 +181,7 @@ struct adreno_ocmem { ...@@ -182,7 +181,7 @@ struct adreno_ocmem {
/* platform config data (ie. from DT, or pdata) */ /* platform config data (ie. from DT, or pdata) */
struct adreno_platform_config { struct adreno_platform_config {
struct adreno_rev rev; uint32_t chip_id;
const struct adreno_info *info; const struct adreno_info *info;
}; };
...@@ -200,7 +199,15 @@ struct adreno_platform_config { ...@@ -200,7 +199,15 @@ struct adreno_platform_config {
__ret; \ __ret; \
}) })
bool adreno_cmp_rev(struct adreno_rev rev1, struct adreno_rev rev2); static inline uint8_t adreno_patchid(const struct adreno_gpu *gpu)
{
/* It is probably ok to assume legacy "adreno_rev" format
* for all a6xx devices, but probably best to limit this
* to older things.
*/
WARN_ON_ONCE(gpu->info->family >= ADRENO_6XX_GEN1);
return gpu->chip_id & 0xff;
}
static inline bool adreno_is_revn(const struct adreno_gpu *gpu, uint32_t revn) static inline bool adreno_is_revn(const struct adreno_gpu *gpu, uint32_t revn)
{ {
...@@ -256,7 +263,7 @@ static inline bool adreno_is_a330(const struct adreno_gpu *gpu) ...@@ -256,7 +263,7 @@ static inline bool adreno_is_a330(const struct adreno_gpu *gpu)
static inline bool adreno_is_a330v2(const struct adreno_gpu *gpu) static inline bool adreno_is_a330v2(const struct adreno_gpu *gpu)
{ {
return adreno_is_a330(gpu) && (gpu->rev.patchid > 0); return adreno_is_a330(gpu) && (adreno_patchid(gpu) > 0);
} }
static inline int adreno_is_a405(const struct adreno_gpu *gpu) static inline int adreno_is_a405(const struct adreno_gpu *gpu)
...@@ -346,8 +353,7 @@ static inline int adreno_is_a650(const struct adreno_gpu *gpu) ...@@ -346,8 +353,7 @@ static inline int adreno_is_a650(const struct adreno_gpu *gpu)
static inline int adreno_is_7c3(const struct adreno_gpu *gpu) static inline int adreno_is_7c3(const struct adreno_gpu *gpu)
{ {
/* The order of args is important here to handle ANY_ID correctly */ return gpu->info->chip_ids[0] == 0x06030500;
return adreno_cmp_rev(ADRENO_REV(6, 3, 5, ANY_ID), gpu->rev);
} }
static inline int adreno_is_a660(const struct adreno_gpu *gpu) static inline int adreno_is_a660(const struct adreno_gpu *gpu)
...@@ -362,8 +368,7 @@ static inline int adreno_is_a680(const struct adreno_gpu *gpu) ...@@ -362,8 +368,7 @@ static inline int adreno_is_a680(const struct adreno_gpu *gpu)
static inline int adreno_is_a690(const struct adreno_gpu *gpu) static inline int adreno_is_a690(const struct adreno_gpu *gpu)
{ {
/* The order of args is important here to handle ANY_ID correctly */ return gpu->info->chip_ids[0] == 0x06090000;
return adreno_cmp_rev(ADRENO_REV(6, 9, 0, ANY_ID), gpu->rev);
} }
/* check for a615, a616, a618, a619 or any a630 derivatives */ /* check for a615, a616, a618, a619 or any a630 derivatives */
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment