mc.h 5.3 KB
Newer Older
1
/* SPDX-License-Identifier: GPL-2.0-only */
2 3 4 5 6 7 8
/*
 * Copyright (C) 2014 NVIDIA Corporation
 */

#ifndef __SOC_TEGRA_MC_H__
#define __SOC_TEGRA_MC_H__

9
#include <linux/bits.h>
10
#include <linux/debugfs.h>
11
#include <linux/err.h>
12
#include <linux/interconnect-provider.h>
13
#include <linux/reset-controller.h>
14 15 16 17 18 19
#include <linux/types.h>

struct clk;
struct device;
struct page;

20 21 22 23 24 25
struct tegra_mc_timing {
	unsigned long rate;

	u32 *emem_data;
};

26 27 28
struct tegra_mc_client {
	unsigned int id;
	const char *name;
29 30 31 32 33 34 35 36 37
	/*
	 * For Tegra210 and earlier, this is the SWGROUP ID used for IOVA translations in the
	 * Tegra SMMU, whereas on Tegra186 and later this is the ID used to override the ARM SMMU
	 * stream ID used for IOVA translations for the given memory client.
	 */
	union {
		unsigned int swgroup;
		unsigned int sid;
	};
38 39 40

	unsigned int fifo_size;

41
	struct {
42
		/* Tegra SMMU enable (Tegra210 and earlier) */
43 44 45 46 47 48 49 50 51 52 53 54
		struct {
			unsigned int reg;
			unsigned int bit;
		} smmu;

		/* latency allowance */
		struct {
			unsigned int reg;
			unsigned int shift;
			unsigned int mask;
			unsigned int def;
		} la;
55 56 57 58 59 60

		/* stream ID overrides (Tegra186 and later) */
		struct {
			unsigned int override;
			unsigned int security;
		} sid;
61
	} regs;
62 63 64
};

struct tegra_smmu_swgroup {
65
	const char *name;
66 67 68 69
	unsigned int swgroup;
	unsigned int reg;
};

70 71 72 73 74 75
struct tegra_smmu_group_soc {
	const char *name;
	const unsigned int *swgroups;
	unsigned int num_swgroups;
};

76 77 78 79 80 81 82
struct tegra_smmu_soc {
	const struct tegra_mc_client *clients;
	unsigned int num_clients;

	const struct tegra_smmu_swgroup *swgroups;
	unsigned int num_swgroups;

83 84 85
	const struct tegra_smmu_group_soc *groups;
	unsigned int num_groups;

86 87 88
	bool supports_round_robin_arbitration;
	bool supports_request_limit;

89
	unsigned int num_tlb_lines;
90 91 92 93 94
	unsigned int num_asids;
};

struct tegra_mc;
struct tegra_smmu;
95
struct gart_device;
96 97 98 99 100

#ifdef CONFIG_TEGRA_IOMMU_SMMU
struct tegra_smmu *tegra_smmu_probe(struct device *dev,
				    const struct tegra_smmu_soc *soc,
				    struct tegra_mc *mc);
101
void tegra_smmu_remove(struct tegra_smmu *smmu);
102 103 104 105 106 107 108
#else
static inline struct tegra_smmu *
tegra_smmu_probe(struct device *dev, const struct tegra_smmu_soc *soc,
		 struct tegra_mc *mc)
{
	return NULL;
}
109 110 111 112

static inline void tegra_smmu_remove(struct tegra_smmu *smmu)
{
}
113 114
#endif

115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136
#ifdef CONFIG_TEGRA_IOMMU_GART
struct gart_device *tegra_gart_probe(struct device *dev, struct tegra_mc *mc);
int tegra_gart_suspend(struct gart_device *gart);
int tegra_gart_resume(struct gart_device *gart);
#else
static inline struct gart_device *
tegra_gart_probe(struct device *dev, struct tegra_mc *mc)
{
	return ERR_PTR(-ENODEV);
}

static inline int tegra_gart_suspend(struct gart_device *gart)
{
	return -ENODEV;
}

static inline int tegra_gart_resume(struct gart_device *gart)
{
	return -ENODEV;
}
#endif

137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160
struct tegra_mc_reset {
	const char *name;
	unsigned long id;
	unsigned int control;
	unsigned int status;
	unsigned int reset;
	unsigned int bit;
};

struct tegra_mc_reset_ops {
	int (*hotreset_assert)(struct tegra_mc *mc,
			       const struct tegra_mc_reset *rst);
	int (*hotreset_deassert)(struct tegra_mc *mc,
				 const struct tegra_mc_reset *rst);
	int (*block_dma)(struct tegra_mc *mc,
			 const struct tegra_mc_reset *rst);
	bool (*dma_idling)(struct tegra_mc *mc,
			   const struct tegra_mc_reset *rst);
	int (*unblock_dma)(struct tegra_mc *mc,
			   const struct tegra_mc_reset *rst);
	int (*reset_status)(struct tegra_mc *mc,
			    const struct tegra_mc_reset *rst);
};

161 162 163 164 165 166 167 168 169 170 171
#define TEGRA_MC_ICC_TAG_DEFAULT				0
#define TEGRA_MC_ICC_TAG_ISO					BIT(0)

struct tegra_mc_icc_ops {
	int (*set)(struct icc_node *src, struct icc_node *dst);
	int (*aggregate)(struct icc_node *node, u32 tag, u32 avg_bw,
			 u32 peak_bw, u32 *agg_avg, u32 *agg_peak);
	struct icc_node_data *(*xlate_extended)(struct of_phandle_args *spec,
						void *data);
};

172
struct tegra_mc_ops {
173 174 175 176 177
	/*
	 * @probe: Callback to set up SoC-specific bits of the memory controller. This is called
	 * after basic, common set up that is done by the SoC-agnostic bits.
	 */
	int (*probe)(struct tegra_mc *mc);
178 179
	int (*suspend)(struct tegra_mc *mc);
	int (*resume)(struct tegra_mc *mc);
180 181
};

182 183 184 185
struct tegra_mc_soc {
	const struct tegra_mc_client *clients;
	unsigned int num_clients;

186
	const unsigned long *emem_regs;
187 188 189 190 191
	unsigned int num_emem_regs;

	unsigned int num_address_bits;
	unsigned int atom_size;

192 193
	u8 client_id_mask;

194
	const struct tegra_smmu_soc *smmu;
195 196

	u32 intmask;
197 198 199 200

	const struct tegra_mc_reset_ops *reset_ops;
	const struct tegra_mc_reset *resets;
	unsigned int num_resets;
201 202

	const struct tegra_mc_icc_ops *icc_ops;
203
	const struct tegra_mc_ops *ops;
204 205 206 207 208
};

struct tegra_mc {
	struct device *dev;
	struct tegra_smmu *smmu;
209
	struct gart_device *gart;
210
	void __iomem *regs;
211 212 213 214 215
	struct clk *clk;
	int irq;

	const struct tegra_mc_soc *soc;
	unsigned long tick;
216 217 218

	struct tegra_mc_timing *timings;
	unsigned int num_timings;
219 220 221

	struct reset_controller_dev reset;

222 223
	struct icc_provider provider;

224
	spinlock_t lock;
225 226 227 228

	struct {
		struct dentry *root;
	} debugfs;
229 230
};

231
int tegra_mc_write_emem_configuration(struct tegra_mc *mc, unsigned long rate);
232 233
unsigned int tegra_mc_get_emem_device_count(struct tegra_mc *mc);

234 235 236 237 238 239
#ifdef CONFIG_TEGRA_MC
struct tegra_mc *devm_tegra_memory_controller_get(struct device *dev);
#else
static inline struct tegra_mc *
devm_tegra_memory_controller_get(struct device *dev)
{
240
	return ERR_PTR(-ENODEV);
241 242 243
}
#endif

244
#endif /* __SOC_TEGRA_MC_H__ */