Home
last modified time | relevance | path

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

/Linux-v4.19/drivers/gpu/host1x/
Dchannel.c35 chlist->allocated_channels = in host1x_channel_list_init()
38 if (!chlist->allocated_channels) { in host1x_channel_list_init()
43 bitmap_zero(chlist->allocated_channels, num_channels); in host1x_channel_list_init()
50 kfree(chlist->allocated_channels); in host1x_channel_list_free()
99 clear_bit(channel->id, chlist->allocated_channels); in release_channel()
114 index = find_first_zero_bit(chlist->allocated_channels, max_channels); in acquire_unused_channel()
122 set_bit(index, chlist->allocated_channels); in acquire_unused_channel()
160 clear_bit(channel->id, chlist->allocated_channels); in host1x_channel_request()
Dchannel.h32 unsigned long *allocated_channels; member