| Geoff Levand | 540270d | 2006-06-19 20:33:29 +0200 | [diff] [blame] | 1 | /* | 
 | 2 |  * Defines an spu hypervisor abstraction layer. | 
 | 3 |  * | 
 | 4 |  *  Copyright 2006 Sony Corp. | 
 | 5 |  * | 
 | 6 |  *  This program is free software; you can redistribute it and/or modify | 
 | 7 |  *  it under the terms of the GNU General Public License as published by | 
 | 8 |  *  the Free Software Foundation; version 2 of the License. | 
 | 9 |  * | 
 | 10 |  *  This program is distributed in the hope that it will be useful, | 
 | 11 |  *  but WITHOUT ANY WARRANTY; without even the implied warranty of | 
 | 12 |  *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the | 
 | 13 |  *  GNU General Public License for more details. | 
 | 14 |  * | 
 | 15 |  *  You should have received a copy of the GNU General Public License | 
 | 16 |  *  along with this program; if not, write to the Free Software | 
 | 17 |  *  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA | 
 | 18 |  */ | 
 | 19 |  | 
 | 20 | #if !defined(_SPU_PRIV1_H) | 
 | 21 | #define _SPU_PRIV1_H | 
 | 22 | #if defined(__KERNEL__) | 
 | 23 |  | 
 | 24 | struct spu; | 
 | 25 |  | 
 | 26 | /* access to priv1 registers */ | 
 | 27 |  | 
 | 28 | struct spu_priv1_ops | 
 | 29 | { | 
 | 30 | 	void (*int_mask_and) (struct spu *spu, int class, u64 mask); | 
 | 31 | 	void (*int_mask_or) (struct spu *spu, int class, u64 mask); | 
 | 32 | 	void (*int_mask_set) (struct spu *spu, int class, u64 mask); | 
 | 33 | 	u64 (*int_mask_get) (struct spu *spu, int class); | 
 | 34 | 	void (*int_stat_clear) (struct spu *spu, int class, u64 stat); | 
 | 35 | 	u64 (*int_stat_get) (struct spu *spu, int class); | 
| Geoff Levand | a91942a | 2006-06-19 20:33:30 +0200 | [diff] [blame] | 36 | 	void (*cpu_affinity_set) (struct spu *spu, int cpu); | 
| Geoff Levand | 540270d | 2006-06-19 20:33:29 +0200 | [diff] [blame] | 37 | 	u64 (*mfc_dar_get) (struct spu *spu); | 
 | 38 | 	u64 (*mfc_dsisr_get) (struct spu *spu); | 
 | 39 | 	void (*mfc_dsisr_set) (struct spu *spu, u64 dsisr); | 
 | 40 | 	void (*mfc_sdr_set) (struct spu *spu, u64 sdr); | 
 | 41 | 	void (*mfc_sr1_set) (struct spu *spu, u64 sr1); | 
 | 42 | 	u64 (*mfc_sr1_get) (struct spu *spu); | 
 | 43 | 	void (*mfc_tclass_id_set) (struct spu *spu, u64 tclass_id); | 
 | 44 | 	u64 (*mfc_tclass_id_get) (struct spu *spu); | 
 | 45 | 	void (*tlb_invalidate) (struct spu *spu); | 
 | 46 | 	void (*resource_allocation_groupID_set) (struct spu *spu, u64 id); | 
 | 47 | 	u64 (*resource_allocation_groupID_get) (struct spu *spu); | 
 | 48 | 	void (*resource_allocation_enable_set) (struct spu *spu, u64 enable); | 
 | 49 | 	u64 (*resource_allocation_enable_get) (struct spu *spu); | 
 | 50 | }; | 
 | 51 |  | 
 | 52 | extern const struct spu_priv1_ops* spu_priv1_ops; | 
 | 53 |  | 
 | 54 | static inline void | 
 | 55 | spu_int_mask_and (struct spu *spu, int class, u64 mask) | 
 | 56 | { | 
 | 57 | 	spu_priv1_ops->int_mask_and(spu, class, mask); | 
 | 58 | } | 
 | 59 |  | 
 | 60 | static inline void | 
 | 61 | spu_int_mask_or (struct spu *spu, int class, u64 mask) | 
 | 62 | { | 
 | 63 | 	spu_priv1_ops->int_mask_or(spu, class, mask); | 
 | 64 | } | 
 | 65 |  | 
 | 66 | static inline void | 
 | 67 | spu_int_mask_set (struct spu *spu, int class, u64 mask) | 
 | 68 | { | 
 | 69 | 	spu_priv1_ops->int_mask_set(spu, class, mask); | 
 | 70 | } | 
 | 71 |  | 
 | 72 | static inline u64 | 
 | 73 | spu_int_mask_get (struct spu *spu, int class) | 
 | 74 | { | 
 | 75 | 	return spu_priv1_ops->int_mask_get(spu, class); | 
 | 76 | } | 
 | 77 |  | 
 | 78 | static inline void | 
 | 79 | spu_int_stat_clear (struct spu *spu, int class, u64 stat) | 
 | 80 | { | 
 | 81 | 	spu_priv1_ops->int_stat_clear(spu, class, stat); | 
 | 82 | } | 
 | 83 |  | 
 | 84 | static inline u64 | 
 | 85 | spu_int_stat_get (struct spu *spu, int class) | 
 | 86 | { | 
 | 87 | 	return spu_priv1_ops->int_stat_get (spu, class); | 
 | 88 | } | 
 | 89 |  | 
 | 90 | static inline void | 
| Geoff Levand | a91942a | 2006-06-19 20:33:30 +0200 | [diff] [blame] | 91 | spu_cpu_affinity_set (struct spu *spu, int cpu) | 
| Geoff Levand | 540270d | 2006-06-19 20:33:29 +0200 | [diff] [blame] | 92 | { | 
| Geoff Levand | a91942a | 2006-06-19 20:33:30 +0200 | [diff] [blame] | 93 | 	spu_priv1_ops->cpu_affinity_set(spu, cpu); | 
| Geoff Levand | 540270d | 2006-06-19 20:33:29 +0200 | [diff] [blame] | 94 | } | 
 | 95 |  | 
 | 96 | static inline u64 | 
 | 97 | spu_mfc_dar_get (struct spu *spu) | 
 | 98 | { | 
 | 99 | 	return spu_priv1_ops->mfc_dar_get(spu); | 
 | 100 | } | 
 | 101 |  | 
 | 102 | static inline u64 | 
 | 103 | spu_mfc_dsisr_get (struct spu *spu) | 
 | 104 | { | 
 | 105 | 	return spu_priv1_ops->mfc_dsisr_get(spu); | 
 | 106 | } | 
 | 107 |  | 
 | 108 | static inline void | 
 | 109 | spu_mfc_dsisr_set (struct spu *spu, u64 dsisr) | 
 | 110 | { | 
 | 111 | 	spu_priv1_ops->mfc_dsisr_set(spu, dsisr); | 
 | 112 | } | 
 | 113 |  | 
 | 114 | static inline void | 
 | 115 | spu_mfc_sdr_set (struct spu *spu, u64 sdr) | 
 | 116 | { | 
 | 117 | 	spu_priv1_ops->mfc_sdr_set(spu, sdr); | 
 | 118 | } | 
 | 119 |  | 
 | 120 | static inline void | 
 | 121 | spu_mfc_sr1_set (struct spu *spu, u64 sr1) | 
 | 122 | { | 
 | 123 | 	spu_priv1_ops->mfc_sr1_set(spu, sr1); | 
 | 124 | } | 
 | 125 |  | 
 | 126 | static inline u64 | 
 | 127 | spu_mfc_sr1_get (struct spu *spu) | 
 | 128 | { | 
 | 129 | 	return spu_priv1_ops->mfc_sr1_get(spu); | 
 | 130 | } | 
 | 131 |  | 
 | 132 | static inline void | 
 | 133 | spu_mfc_tclass_id_set (struct spu *spu, u64 tclass_id) | 
 | 134 | { | 
 | 135 | 	spu_priv1_ops->mfc_tclass_id_set(spu, tclass_id); | 
 | 136 | } | 
 | 137 |  | 
 | 138 | static inline u64 | 
 | 139 | spu_mfc_tclass_id_get (struct spu *spu) | 
 | 140 | { | 
 | 141 | 	return spu_priv1_ops->mfc_tclass_id_get(spu); | 
 | 142 | } | 
 | 143 |  | 
 | 144 | static inline void | 
 | 145 | spu_tlb_invalidate (struct spu *spu) | 
 | 146 | { | 
 | 147 | 	spu_priv1_ops->tlb_invalidate(spu); | 
 | 148 | } | 
 | 149 |  | 
 | 150 | static inline void | 
 | 151 | spu_resource_allocation_groupID_set (struct spu *spu, u64 id) | 
 | 152 | { | 
 | 153 | 	spu_priv1_ops->resource_allocation_groupID_set(spu, id); | 
 | 154 | } | 
 | 155 |  | 
 | 156 | static inline u64 | 
 | 157 | spu_resource_allocation_groupID_get (struct spu *spu) | 
 | 158 | { | 
 | 159 | 	return spu_priv1_ops->resource_allocation_groupID_get(spu); | 
 | 160 | } | 
 | 161 |  | 
 | 162 | static inline void | 
 | 163 | spu_resource_allocation_enable_set (struct spu *spu, u64 enable) | 
 | 164 | { | 
 | 165 | 	spu_priv1_ops->resource_allocation_enable_set(spu, enable); | 
 | 166 | } | 
 | 167 |  | 
 | 168 | static inline u64 | 
 | 169 | spu_resource_allocation_enable_get (struct spu *spu) | 
 | 170 | { | 
 | 171 | 	return spu_priv1_ops->resource_allocation_enable_get(spu); | 
 | 172 | } | 
 | 173 |  | 
 | 174 | /* The declarations folowing are put here for convenience | 
 | 175 |  * and only intended to be used by the platform setup code | 
 | 176 |  * for initializing spu_priv1_ops. | 
 | 177 |  */ | 
 | 178 |  | 
 | 179 | extern const struct spu_priv1_ops spu_priv1_mmio_ops; | 
 | 180 |  | 
 | 181 | #endif /* __KERNEL__ */ | 
 | 182 | #endif |