2 * Copyright 2012 Red Hat Inc.
4 * Permission is hereby granted, free of charge, to any person obtaining a
5 * copy of this software and associated documentation files (the "Software"),
6 * to deal in the Software without restriction, including without limitation
7 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
8 * and/or sell copies of the Software, and to permit persons to whom the
9 * Software is furnished to do so, subject to the following conditions:
11 * The above copyright notice and this permission notice shall be included in
12 * all copies or substantial portions of the Software.
14 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
15 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
16 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
17 * THE COPYRIGHT HOLDER(S) OR AUTHOR(S) BE LIABLE FOR ANY CLAIM, DAMAGES OR
18 * OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
19 * ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
20 * OTHER DEALINGS IN THE SOFTWARE.
22 #include <core/ramht.h>
23 #include <core/engine.h>
25 #include <subdev/bar.h>
28 nvkm_ramht_hash(struct nvkm_ramht
*ramht
, int chid
, u32 handle
)
33 hash
^= (handle
& ((1 << ramht
->bits
) - 1));
34 handle
>>= ramht
->bits
;
37 hash
^= chid
<< (ramht
->bits
- 4);
43 nvkm_ramht_insert(struct nvkm_ramht
*ramht
, int chid
, u32 handle
, u32 context
)
45 struct nvkm_bar
*bar
= nvkm_bar(ramht
);
48 co
= ho
= nvkm_ramht_hash(ramht
, chid
, handle
);
50 if (!nv_ro32(ramht
, co
+ 4)) {
51 nv_wo32(ramht
, co
+ 0, handle
);
52 nv_wo32(ramht
, co
+ 4, context
);
59 if (co
>= nv_gpuobj(ramht
)->size
)
67 nvkm_ramht_remove(struct nvkm_ramht
*ramht
, int cookie
)
69 struct nvkm_bar
*bar
= nvkm_bar(ramht
);
70 nv_wo32(ramht
, cookie
+ 0, 0x00000000);
71 nv_wo32(ramht
, cookie
+ 4, 0x00000000);
76 static struct nvkm_oclass
79 .ofuncs
= &(struct nvkm_ofuncs
) {
81 .dtor
= _nvkm_gpuobj_dtor
,
82 .init
= _nvkm_gpuobj_init
,
83 .fini
= _nvkm_gpuobj_fini
,
84 .rd32
= _nvkm_gpuobj_rd32
,
85 .wr32
= _nvkm_gpuobj_wr32
,
90 nvkm_ramht_new(struct nvkm_object
*parent
, struct nvkm_object
*pargpu
,
91 u32 size
, u32 align
, struct nvkm_ramht
**pramht
)
93 struct nvkm_ramht
*ramht
;
96 ret
= nvkm_gpuobj_create(parent
, parent
->engine
?
97 &parent
->engine
->subdev
.object
: parent
, /* <nv50 ramht */
98 &nvkm_ramht_oclass
, 0, pargpu
, size
,
99 align
, NVOBJ_FLAG_ZERO_ALLOC
, &ramht
);
104 ramht
->bits
= order_base_2(nv_gpuobj(ramht
)->size
>> 3);