• Home
  • Raw
  • Download

Lines Matching refs:top

27 nvkm_top_device_new(struct nvkm_top *top)  in nvkm_top_device_new()  argument
38 list_add_tail(&info->head, &top->device); in nvkm_top_device_new()
46 struct nvkm_top *top = device->top; in nvkm_top_reset() local
49 if (top) { in nvkm_top_reset()
50 list_for_each_entry(info, &top->device, head) { in nvkm_top_reset()
62 struct nvkm_top *top = device->top; in nvkm_top_intr_mask() local
65 if (top) { in nvkm_top_intr_mask()
66 list_for_each_entry(info, &top->device, head) { in nvkm_top_intr_mask()
78 struct nvkm_top *top = device->top; in nvkm_top_intr() local
83 if (top) { in nvkm_top_intr()
84 list_for_each_entry(info, &top->device, head) { in nvkm_top_intr()
101 struct nvkm_top *top = device->top; in nvkm_top_fault_id() local
104 list_for_each_entry(info, &top->device, head) { in nvkm_top_fault_id()
115 struct nvkm_top *top = device->top; in nvkm_top_fault() local
118 list_for_each_entry(info, &top->device, head) { in nvkm_top_fault()
129 struct nvkm_top *top = device->top; in nvkm_top_engine() local
133 list_for_each_entry(info, &top->device, head) { in nvkm_top_engine()
147 struct nvkm_top *top = nvkm_top(subdev); in nvkm_top_oneinit() local
148 return top->func->oneinit(top); in nvkm_top_oneinit()
154 struct nvkm_top *top = nvkm_top(subdev); in nvkm_top_dtor() local
157 list_for_each_entry_safe(info, temp, &top->device, head) { in nvkm_top_dtor()
162 return top; in nvkm_top_dtor()
175 struct nvkm_top *top; in nvkm_top_new_() local
176 if (!(top = *ptop = kzalloc(sizeof(*top), GFP_KERNEL))) in nvkm_top_new_()
178 nvkm_subdev_ctor(&nvkm_top, device, index, &top->subdev); in nvkm_top_new_()
179 top->func = func; in nvkm_top_new_()
180 INIT_LIST_HEAD(&top->device); in nvkm_top_new_()