[RFC,libdrm 1/3] tegra: Add stream library
Arto Merilainen
amerilainen at nvidia.com
Thu Dec 27 23:45:48 PST 2012
On 12/28/2012 08:47 AM, Mark Zhang wrote:
>> +int tegra_fence_is_valid(const struct tegra_fence *fence)
>> +{
>> + int valid = fence ? 1 : 0;
>> + valid = valid && fence->id != (uint32_t) -1;
>> + valid = valid && fence->id < 32;
>
> Hardcode here. Assume always has 32 syncpts.
> Change to a micro wrapped with tegra version ifdef will be better.
>
You are correct. I will fix this.
>> + return valid;
>> +}
>> +
> [...]
>> +
>> + /* Add fences */
>> + if (num_fences) {
>> +
>> + tegra_stream_push(stream,
>> + nvhost_opcode_setclass(NV_HOST1X_CLASS_ID,
>> + host1x_uclass_wait_syncpt_r(), num_fences));
>> +
>> + for (; num_fences; num_fences--, fence++) {
>> + assert(tegra_fence_is_valid(fence));
>
> This is useless. We already add "1 + num_fences" to num_words above. So
> move this "assert" before adding "1 + num_fences" to num_words makes sense.
>
The assertion checks the validity of a single fence - not if there is
room in the command buffer.
The goal is to prevent having invalid fences in the command stream. If
this check were not here it would be possible to initialise a fence with
tegra_fence_clear() and put that fence into the stream.
>> +
>> + tegra_stream_push(stream, nvhost_class_host_wait_syncpt(fence->id,
>> + fence->value));
>> + }
>> + }
>> +
>> + if (class_id)
>> + tegra_stream_push(stream, nvhost_opcode_setclass(class_id, 0, 0));
>> +
>> + return 0;
>> +}
>> +
> [...]
>> +
>> +#endif /* TEGRA_DRMIF_H */
>>
- Arto
More information about the dri-devel
mailing list