panfrost_device.h 3.6 KB
Newer Older
1 2 3 4 5 6 7
/* SPDX-License-Identifier: GPL-2.0 */
/* Copyright 2018 Marty E. Plummer <hanetzer@startmail.com> */
/* Copyright 2019 Linaro, Ltd, Rob Herring <robh@kernel.org> */

#ifndef __PANFROST_DEVICE_H__
#define __PANFROST_DEVICE_H__

8 9
#include <linux/atomic.h>
#include <linux/io-pgtable.h>
10
#include <linux/regulator/consumer.h>
11 12 13 14 15 16 17 18 19
#include <linux/spinlock.h>
#include <drm/drm_device.h>
#include <drm/drm_mm.h>
#include <drm/gpu_scheduler.h>

struct panfrost_device;
struct panfrost_mmu;
struct panfrost_job_slot;
struct panfrost_job;
20
struct panfrost_perfcnt;
21 22

#define NUM_JOB_SLOTS 3
23
#define MAX_REGULATORS 2
24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49

struct panfrost_features {
	u16 id;
	u16 revision;

	u64 shader_present;
	u64 tiler_present;
	u64 l2_present;
	u64 stack_present;
	u32 as_present;
	u32 js_present;

	u32 l2_features;
	u32 core_features;
	u32 tiler_features;
	u32 mem_features;
	u32 mmu_features;
	u32 thread_features;
	u32 max_threads;
	u32 thread_max_workgroup_sz;
	u32 thread_max_barrier_sz;
	u32 coherency_features;
	u32 texture_features[4];
	u32 js_features[16];

	u32 nr_core_groups;
50
	u32 thread_tls_alloc;
51 52 53 54 55

	unsigned long hw_features[64 / BITS_PER_LONG];
	unsigned long hw_issues[64 / BITS_PER_LONG];
};

56 57 58 59 60 61 62 63 64 65
/*
 * Features that cannot be automatically detected and need matching using the
 * compatible string, typically SoC-specific.
 */
struct panfrost_compatible {
	/* Supplies count and names. */
	int num_supplies;
	const char * const *supply_names;
};

66 67 68 69 70 71 72
struct panfrost_device {
	struct device *dev;
	struct drm_device *ddev;
	struct platform_device *pdev;

	void __iomem *iomem;
	struct clk *clock;
73
	struct clk *bus_clock;
74
	struct regulator_bulk_data regulators[MAX_REGULATORS];
75 76 77
	struct reset_control *rstc;

	struct panfrost_features features;
78
	const struct panfrost_compatible *comp;
79

80 81 82 83 84
	spinlock_t as_lock;
	unsigned long as_in_use_mask;
	unsigned long as_alloc_mask;
	struct list_head as_lru_list;

85 86 87 88 89
	struct panfrost_job_slot *js;

	struct panfrost_job *jobs[NUM_JOB_SLOTS];
	struct list_head scheduled_jobs;

90 91
	struct panfrost_perfcnt *perfcnt;

92
	struct mutex sched_lock;
93
	struct mutex reset_lock;
94

95 96 97 98
	struct mutex shrinker_lock;
	struct list_head shrinker_list;
	struct shrinker shrinker;

99 100 101
	struct {
		struct devfreq *devfreq;
		struct thermal_cooling_device *cooling;
102 103 104 105
		ktime_t busy_time;
		ktime_t idle_time;
		ktime_t time_last_update;
		atomic_t busy_count;
106 107 108
	} devfreq;
};

109 110 111 112 113 114 115 116
struct panfrost_mmu {
	struct io_pgtable_cfg pgtbl_cfg;
	struct io_pgtable_ops *pgtbl_ops;
	int as;
	atomic_t as_count;
	struct list_head list;
};

117 118 119 120
struct panfrost_file_priv {
	struct panfrost_device *pfdev;

	struct drm_sched_entity sched_entity[NUM_JOB_SLOTS];
121 122 123 124

	struct panfrost_mmu mmu;
	struct drm_mm mm;
	spinlock_t mm_lock;
125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140
};

static inline struct panfrost_device *to_panfrost_device(struct drm_device *ddev)
{
	return ddev->dev_private;
}

static inline int panfrost_model_cmp(struct panfrost_device *pfdev, s32 id)
{
	s32 match_id = pfdev->features.id;

	if (match_id & 0xf000)
		match_id &= 0xf00f;
	return match_id - id;
}

141 142 143 144 145
static inline bool panfrost_model_is_bifrost(struct panfrost_device *pfdev)
{
	return panfrost_model_cmp(pfdev, 0x1000) >= 0;
}

146 147 148 149 150
static inline bool panfrost_model_eq(struct panfrost_device *pfdev, s32 id)
{
	return !panfrost_model_cmp(pfdev, id);
}

151 152
int panfrost_unstable_ioctl_check(void);

153 154
int panfrost_device_init(struct panfrost_device *pfdev);
void panfrost_device_fini(struct panfrost_device *pfdev);
155
void panfrost_device_reset(struct panfrost_device *pfdev);
156 157 158 159 160 161 162

int panfrost_device_resume(struct device *dev);
int panfrost_device_suspend(struct device *dev);

const char *panfrost_exception_name(struct panfrost_device *pfdev, u32 exception_code);

#endif