Searched refs:lotar (Results 1 – 4 of 4) sorted by relevance
/arch/tile/include/asm/ |
D | smp.h | 113 static inline int hv_lotar_to_cpu(HV_LOTAR lotar) in hv_lotar_to_cpu() argument 115 return HV_LOTAR_X(lotar) + (HV_LOTAR_Y(lotar) * smp_width); in hv_lotar_to_cpu()
|
/arch/tile/kernel/ |
D | sysfs.c | 165 long lotar = HV_XY_TO_LOTAR(cpu_x(cpu), cpu_y(cpu)); in hv_stats_show() local 169 lotar, 0); in hv_stats_show() 181 long lotar = HV_XY_TO_LOTAR(cpu_x(cpu), cpu_y(cpu)); in hv_stats_store() local 183 ssize_t n = hv_confstr(HV_CONFSTR_HV_STATS, 0, 0, lotar, 1); in hv_stats_store() 255 long lotar = HV_XY_TO_LOTAR(cpu_x(cpu), cpu_y(cpu)); in create_sysfs_entries() local 259 lotar, 0); in create_sysfs_entries()
|
/arch/tile/include/hv/ |
D | hypervisor.h | 2364 #define HV_LOTAR_X(lotar) ((lotar) >> HV_LOTAR_WIDTH) argument 2367 #define HV_LOTAR_Y(lotar) ((lotar) & ((1 << HV_LOTAR_WIDTH) - 1)) argument 2491 unsigned int lotar = ((__hv32) pte.val) >> HV_PTE_INDEX_LOTAR; in hv_pte_get_lotar() local 2493 return HV_XY_TO_LOTAR( (lotar >> (HV_PTE_LOTAR_BITS / 2)), in hv_pte_get_lotar() 2494 (lotar & ((1 << (HV_PTE_LOTAR_BITS / 2)) - 1)) ); in hv_pte_get_lotar()
|
/arch/tile/mm/ |
D | pgtable.c | 385 HV_LOTAR lotar = hv_pte_get_lotar(prot); in get_remote_cache_cpu() local 386 int x = HV_LOTAR_X(lotar); in get_remote_cache_cpu() 387 int y = HV_LOTAR_Y(lotar); in get_remote_cache_cpu()
|