Lines Matching full:syncpt
14 #include "syncpt.h"
49 struct host1x_syncpt *sp = host->syncpt; in host1x_syncpt_alloc()
121 struct host1x_syncpt *sp_base = host->syncpt; in host1x_syncpt_restore()
139 struct host1x_syncpt *sp_base = host->syncpt; in host1x_syncpt_save()
368 struct host1x_syncpt *syncpt; in host1x_syncpt_init() local
371 syncpt = devm_kcalloc(host->dev, host->info->nb_pts, sizeof(*syncpt), in host1x_syncpt_init()
373 if (!syncpt) in host1x_syncpt_init()
382 syncpt[i].id = i; in host1x_syncpt_init()
383 syncpt[i].host = host; in host1x_syncpt_init()
386 * Unassign syncpt from channels for purposes of Tegra186 in host1x_syncpt_init()
390 host1x_hw_syncpt_assign_to_channel(host, &syncpt[i], NULL); in host1x_syncpt_init()
397 host->syncpt = syncpt; in host1x_syncpt_init()
460 struct host1x_syncpt *sp = host->syncpt; in host1x_syncpt_deinit()
532 return host->syncpt + id; in host1x_syncpt_get()