Home
last modified time | relevance | path

Searched refs:tmc_pages (Results 1 – 3 of 3) sorted by relevance

/openbmc/linux/drivers/hwtracing/coresight/
H A Dcoresight-tmc-etr.c141 tmc_pages_get_offset(struct tmc_pages *tmc_pages, dma_addr_t addr) in tmc_pages_get_offset() argument
160 static void tmc_pages_free(struct tmc_pages *tmc_pages, in tmc_pages_free() argument
167 if (tmc_pages->daddrs && tmc_pages->daddrs[i]) in tmc_pages_free()
170 if (tmc_pages->pages && tmc_pages->pages[i]) in tmc_pages_free()
174 kfree(tmc_pages->pages); in tmc_pages_free()
176 tmc_pages->pages = NULL; in tmc_pages_free()
189 static int tmc_pages_alloc(struct tmc_pages *tmc_pages, in tmc_pages_alloc() argument
199 tmc_pages->daddrs = kcalloc(nr_pages, sizeof(*tmc_pages->daddrs), in tmc_pages_alloc()
201 if (!tmc_pages->daddrs) in tmc_pages_alloc()
203 tmc_pages->pages = kcalloc(nr_pages, sizeof(*tmc_pages->pages), in tmc_pages_alloc()
[all …]
H A Dcoresight-tmc.h231 struct tmc_pages { struct
253 struct tmc_pages table_pages; argument
254 struct tmc_pages data_pages;
H A Dcoresight-catu.c120 struct tmc_pages *table_pages = &catu_table->table_pages; in catu_get_table()