Home
last modified time | relevance | path

Searched refs:allocated_channels (Results 1 – 2 of 2) sorted by relevance

/drivers/gpu/host1x/
Dchannel.c24 chlist->allocated_channels = in host1x_channel_list_init()
27 if (!chlist->allocated_channels) { in host1x_channel_list_init()
32 bitmap_zero(chlist->allocated_channels, num_channels); in host1x_channel_list_init()
39 kfree(chlist->allocated_channels); in host1x_channel_list_free()
88 clear_bit(channel->id, chlist->allocated_channels); in release_channel()
103 index = find_first_zero_bit(chlist->allocated_channels, max_channels); in acquire_unused_channel()
111 set_bit(index, chlist->allocated_channels); in acquire_unused_channel()
150 clear_bit(channel->id, chlist->allocated_channels); in host1x_channel_request()
Dchannel.h21 unsigned long *allocated_channels; member