mtd: rawnand: sunxi: Add A23/A33 DMA support
[linux/fpc-iii.git] / include / soc / tegra / mc.h
blobe489a028ec9f8e49042a6157b9dfc4cdadbe1078
1 /*
2 * Copyright (C) 2014 NVIDIA Corporation
4 * This program is free software; you can redistribute it and/or modify
5 * it under the terms of the GNU General Public License version 2 as
6 * published by the Free Software Foundation.
7 */
9 #ifndef __SOC_TEGRA_MC_H__
10 #define __SOC_TEGRA_MC_H__
12 #include <linux/err.h>
13 #include <linux/reset-controller.h>
14 #include <linux/types.h>
16 struct clk;
17 struct device;
18 struct page;
20 struct tegra_smmu_enable {
21 unsigned int reg;
22 unsigned int bit;
25 struct tegra_mc_timing {
26 unsigned long rate;
28 u32 *emem_data;
31 /* latency allowance */
32 struct tegra_mc_la {
33 unsigned int reg;
34 unsigned int shift;
35 unsigned int mask;
36 unsigned int def;
39 struct tegra_mc_client {
40 unsigned int id;
41 const char *name;
42 unsigned int swgroup;
44 unsigned int fifo_size;
46 struct tegra_smmu_enable smmu;
47 struct tegra_mc_la la;
50 struct tegra_smmu_swgroup {
51 const char *name;
52 unsigned int swgroup;
53 unsigned int reg;
56 struct tegra_smmu_group_soc {
57 const char *name;
58 const unsigned int *swgroups;
59 unsigned int num_swgroups;
62 struct tegra_smmu_soc {
63 const struct tegra_mc_client *clients;
64 unsigned int num_clients;
66 const struct tegra_smmu_swgroup *swgroups;
67 unsigned int num_swgroups;
69 const struct tegra_smmu_group_soc *groups;
70 unsigned int num_groups;
72 bool supports_round_robin_arbitration;
73 bool supports_request_limit;
75 unsigned int num_tlb_lines;
76 unsigned int num_asids;
79 struct tegra_mc;
80 struct tegra_smmu;
81 struct gart_device;
83 #ifdef CONFIG_TEGRA_IOMMU_SMMU
84 struct tegra_smmu *tegra_smmu_probe(struct device *dev,
85 const struct tegra_smmu_soc *soc,
86 struct tegra_mc *mc);
87 void tegra_smmu_remove(struct tegra_smmu *smmu);
88 #else
89 static inline struct tegra_smmu *
90 tegra_smmu_probe(struct device *dev, const struct tegra_smmu_soc *soc,
91 struct tegra_mc *mc)
93 return NULL;
96 static inline void tegra_smmu_remove(struct tegra_smmu *smmu)
99 #endif
101 #ifdef CONFIG_TEGRA_IOMMU_GART
102 struct gart_device *tegra_gart_probe(struct device *dev, struct tegra_mc *mc);
103 int tegra_gart_suspend(struct gart_device *gart);
104 int tegra_gart_resume(struct gart_device *gart);
105 #else
106 static inline struct gart_device *
107 tegra_gart_probe(struct device *dev, struct tegra_mc *mc)
109 return ERR_PTR(-ENODEV);
112 static inline int tegra_gart_suspend(struct gart_device *gart)
114 return -ENODEV;
117 static inline int tegra_gart_resume(struct gart_device *gart)
119 return -ENODEV;
121 #endif
123 struct tegra_mc_reset {
124 const char *name;
125 unsigned long id;
126 unsigned int control;
127 unsigned int status;
128 unsigned int reset;
129 unsigned int bit;
132 struct tegra_mc_reset_ops {
133 int (*hotreset_assert)(struct tegra_mc *mc,
134 const struct tegra_mc_reset *rst);
135 int (*hotreset_deassert)(struct tegra_mc *mc,
136 const struct tegra_mc_reset *rst);
137 int (*block_dma)(struct tegra_mc *mc,
138 const struct tegra_mc_reset *rst);
139 bool (*dma_idling)(struct tegra_mc *mc,
140 const struct tegra_mc_reset *rst);
141 int (*unblock_dma)(struct tegra_mc *mc,
142 const struct tegra_mc_reset *rst);
143 int (*reset_status)(struct tegra_mc *mc,
144 const struct tegra_mc_reset *rst);
147 struct tegra_mc_soc {
148 const struct tegra_mc_client *clients;
149 unsigned int num_clients;
151 const unsigned long *emem_regs;
152 unsigned int num_emem_regs;
154 unsigned int num_address_bits;
155 unsigned int atom_size;
157 u8 client_id_mask;
159 const struct tegra_smmu_soc *smmu;
161 u32 intmask;
163 const struct tegra_mc_reset_ops *reset_ops;
164 const struct tegra_mc_reset *resets;
165 unsigned int num_resets;
168 struct tegra_mc {
169 struct device *dev;
170 struct tegra_smmu *smmu;
171 struct gart_device *gart;
172 void __iomem *regs;
173 struct clk *clk;
174 int irq;
176 const struct tegra_mc_soc *soc;
177 unsigned long tick;
179 struct tegra_mc_timing *timings;
180 unsigned int num_timings;
182 struct reset_controller_dev reset;
184 spinlock_t lock;
187 void tegra_mc_write_emem_configuration(struct tegra_mc *mc, unsigned long rate);
188 unsigned int tegra_mc_get_emem_device_count(struct tegra_mc *mc);
190 #endif /* __SOC_TEGRA_MC_H__ */