blob: db2fed09efc18f016474cd2cf601c02b3cf43267 [file] [log] [blame]
Shubhraprakash Daseb6df1d2012-05-01 00:55:35 -06001/* Copyright (c) 2012, Code Aurora Forum. All rights reserved.
2 *
3 * This program is free software; you can redistribute it and/or modify
4 * it under the terms of the GNU General Public License version 2 and
5 * only version 2 as published by the Free Software Foundation.
6 *
7 * This program is distributed in the hope that it will be useful,
8 * but WITHOUT ANY WARRANTY; without even the implied warranty of
9 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
10 * GNU General Public License for more details.
11 *
12 */
13#ifndef __KGSL_IOMMU_H
14#define __KGSL_IOMMU_H
15
16#include <mach/iommu.h>
17
Shubhraprakash Das2b8716b2012-05-04 16:58:40 -060018/* IOMMU registers and masks */
19#define KGSL_IOMMU_TTBR0 0x10
20#define KGSL_IOMMU_TTBR1 0x14
21#define KGSL_IOMMU_TTBR0_PA_MASK 0x0003FFFF
22#define KGSL_IOMMU_TTBR0_PA_SHIFT 14
23#define KGSL_IOMMU_CTX_TLBIALL 0x800
24#define KGSL_IOMMU_CONTEXTIDR 0x8
25#define KGSL_IOMMU_CONTEXTIDR_ASID_MASK 0xFF
26#define KGSL_IOMMU_CONTEXTIDR_ASID_SHIFT 0
27#define KGSL_IOMMU_CTX_TLBIASID 0x804
28#define KGSL_IOMMU_CTX_SHIFT 12
Shubhraprakash Dasd3f937c2012-05-07 12:44:40 -060029
30#define KGSL_IOMMU_MAX_ASIDS 256
31#define KGSL_IOMMU_ASID_REUSE 2
32
Shubhraprakash Daseb6df1d2012-05-01 00:55:35 -060033/*
34 * Max number of iommu units that the gpu core can have
35 * On APQ8064, KGSL can control a maximum of 2 IOMMU units.
36 */
37#define KGSL_IOMMU_MAX_UNITS 2
38
39/* Max number of iommu contexts per IOMMU unit */
40#define KGSL_IOMMU_MAX_DEVS_PER_UNIT 2
41
42/*
43 * struct kgsl_iommu_device - Structure holding data about iommu contexts
44 * @dev: Device pointer to iommu context
45 * @attached: Indicates whether this iommu context is presently attached to
46 * a pagetable/domain or not
47 * @pt_lsb: The LSB of IOMMU_TTBR0 register which is the pagetable
48 * register
49 * @ctx_id: This iommu units context id. It can be either 0 or 1
50 * @clk_enabled: If set indicates that iommu clocks of this iommu context
51 * are on, else the clocks are off
52 */
53struct kgsl_iommu_device {
54 struct device *dev;
55 bool attached;
56 unsigned int pt_lsb;
57 enum kgsl_iommu_context_id ctx_id;
58 bool clk_enabled;
59};
60
61/*
62 * struct kgsl_iommu_unit - Structure holding data about iommu units. An IOMMU
63 * units is basically a separte IOMMU h/w block with it's own IOMMU contexts
64 * @dev: Pointer to array of struct kgsl_iommu_device which has information
65 * about the IOMMU contexts under this IOMMU unit
66 * @dev_count: Number of IOMMU contexts that are valid in the previous feild
67 * @reg_map: Memory descriptor which holds the mapped address of this IOMMU
68 * units register range
69 */
70struct kgsl_iommu_unit {
71 struct kgsl_iommu_device dev[KGSL_IOMMU_MAX_DEVS_PER_UNIT];
72 unsigned int dev_count;
73 struct kgsl_memdesc reg_map;
74};
75
76/*
77 * struct kgsl_iommu - Structure holding iommu data for kgsl driver
78 * @dev: Array of kgsl_iommu_device which contain information about
79 * iommu contexts owned by graphics cores
80 * @unit_count: Number of IOMMU units that are available for this
81 * instance of the IOMMU driver
82 * @iommu_last_cmd_ts: The timestamp of last command submitted that
83 * aceeses iommu registers
84 * @device: Pointer to kgsl device
85 * @asids: A bit structure indicating which id's are presently used
86 * @asid: Contains the initial value of IOMMU_CONTEXTIDR when a domain
87 * is first attached
Shubhraprakash Dasd3f937c2012-05-07 12:44:40 -060088 * asid_reuse: Holds the number of times the reuse asid is reused
Shubhraprakash Daseb6df1d2012-05-01 00:55:35 -060089 */
90struct kgsl_iommu {
91 struct kgsl_iommu_unit iommu_units[KGSL_IOMMU_MAX_UNITS];
92 unsigned int unit_count;
93 unsigned int iommu_last_cmd_ts;
94 struct kgsl_device *device;
95 unsigned long *asids;
96 unsigned int asid;
Shubhraprakash Dasd3f937c2012-05-07 12:44:40 -060097 unsigned int asid_reuse;
98};
99
100/*
101 * struct kgsl_iommu_pt - Iommu pagetable structure private to kgsl driver
102 * @domain: Pointer to the iommu domain that contains the iommu pagetable
103 * @iommu: Pointer to iommu structure
104 * @asid: The asid assigned to this domain
105 */
106struct kgsl_iommu_pt {
107 struct iommu_domain *domain;
108 struct kgsl_iommu *iommu;
109 unsigned int asid;
Shubhraprakash Daseb6df1d2012-05-01 00:55:35 -0600110};
111
112#endif