grutables.h 23 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679
  1. /*
  2. * SN Platform GRU Driver
  3. *
  4. * GRU DRIVER TABLES, MACROS, externs, etc
  5. *
  6. * Copyright (c) 2008 Silicon Graphics, Inc. All Rights Reserved.
  7. *
  8. * This program is free software; you can redistribute it and/or modify
  9. * it under the terms of the GNU General Public License as published by
  10. * the Free Software Foundation; either version 2 of the License, or
  11. * (at your option) any later version.
  12. *
  13. * This program is distributed in the hope that it will be useful,
  14. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  15. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  16. * GNU General Public License for more details.
  17. *
  18. * You should have received a copy of the GNU General Public License
  19. * along with this program; if not, write to the Free Software
  20. * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
  21. */
  22. #ifndef __GRUTABLES_H__
  23. #define __GRUTABLES_H__
  24. /*
  25. * GRU Chiplet:
  26. * The GRU is a user addressible memory accelerator. It provides
  27. * several forms of load, store, memset, bcopy instructions. In addition, it
  28. * contains special instructions for AMOs, sending messages to message
  29. * queues, etc.
  30. *
  31. * The GRU is an integral part of the node controller. It connects
  32. * directly to the cpu socket. In its current implementation, there are 2
  33. * GRU chiplets in the node controller on each blade (~node).
  34. *
  35. * The entire GRU memory space is fully coherent and cacheable by the cpus.
  36. *
  37. * Each GRU chiplet has a physical memory map that looks like the following:
  38. *
  39. * +-----------------+
  40. * |/////////////////|
  41. * |/////////////////|
  42. * |/////////////////|
  43. * |/////////////////|
  44. * |/////////////////|
  45. * |/////////////////|
  46. * |/////////////////|
  47. * |/////////////////|
  48. * +-----------------+
  49. * | system control |
  50. * +-----------------+ _______ +-------------+
  51. * |/////////////////| / | |
  52. * |/////////////////| / | |
  53. * |/////////////////| / | instructions|
  54. * |/////////////////| / | |
  55. * |/////////////////| / | |
  56. * |/////////////////| / |-------------|
  57. * |/////////////////| / | |
  58. * +-----------------+ | |
  59. * | context 15 | | data |
  60. * +-----------------+ | |
  61. * | ...... | \ | |
  62. * +-----------------+ \____________ +-------------+
  63. * | context 1 |
  64. * +-----------------+
  65. * | context 0 |
  66. * +-----------------+
  67. *
  68. * Each of the "contexts" is a chunk of memory that can be mmaped into user
  69. * space. The context consists of 2 parts:
  70. *
  71. * - an instruction space that can be directly accessed by the user
  72. * to issue GRU instructions and to check instruction status.
  73. *
  74. * - a data area that acts as normal RAM.
  75. *
  76. * User instructions contain virtual addresses of data to be accessed by the
  77. * GRU. The GRU contains a TLB that is used to convert these user virtual
  78. * addresses to physical addresses.
  79. *
  80. * The "system control" area of the GRU chiplet is used by the kernel driver
  81. * to manage user contexts and to perform functions such as TLB dropin and
  82. * purging.
  83. *
  84. * One context may be reserved for the kernel and used for cross-partition
  85. * communication. The GRU will also be used to asynchronously zero out
  86. * large blocks of memory (not currently implemented).
  87. *
  88. *
  89. * Tables:
  90. *
  91. * VDATA-VMA Data - Holds a few parameters. Head of linked list of
  92. * GTS tables for threads using the GSEG
  93. * GTS - Gru Thread State - contains info for managing a GSEG context. A
  94. * GTS is allocated for each thread accessing a
  95. * GSEG.
  96. * GTD - GRU Thread Data - contains shadow copy of GRU data when GSEG is
  97. * not loaded into a GRU
  98. * GMS - GRU Memory Struct - Used to manage TLB shootdowns. Tracks GRUs
  99. * where a GSEG has been loaded. Similar to
  100. * an mm_struct but for GRU.
  101. *
  102. * GS - GRU State - Used to manage the state of a GRU chiplet
  103. * BS - Blade State - Used to manage state of all GRU chiplets
  104. * on a blade
  105. *
  106. *
  107. * Normal task tables for task using GRU.
  108. * - 2 threads in process
  109. * - 2 GSEGs open in process
  110. * - GSEG1 is being used by both threads
  111. * - GSEG2 is used only by thread 2
  112. *
  113. * task -->|
  114. * task ---+---> mm ->------ (notifier) -------+-> gms
  115. * | |
  116. * |--> vma -> vdata ---> gts--->| GSEG1 (thread1)
  117. * | | |
  118. * | +-> gts--->| GSEG1 (thread2)
  119. * | |
  120. * |--> vma -> vdata ---> gts--->| GSEG2 (thread2)
  121. * .
  122. * .
  123. *
  124. * GSEGs are marked DONTCOPY on fork
  125. *
  126. * At open
  127. * file.private_data -> NULL
  128. *
  129. * At mmap,
  130. * vma -> vdata
  131. *
  132. * After gseg reference
  133. * vma -> vdata ->gts
  134. *
  135. * After fork
  136. * parent
  137. * vma -> vdata -> gts
  138. * child
  139. * (vma is not copied)
  140. *
  141. */
  142. #include <linux/rmap.h>
  143. #include <linux/interrupt.h>
  144. #include <linux/mutex.h>
  145. #include <linux/wait.h>
  146. #include <linux/mmu_notifier.h>
  147. #include "gru.h"
  148. #include "grulib.h"
  149. #include "gruhandles.h"
  150. extern struct gru_stats_s gru_stats;
  151. extern struct gru_blade_state *gru_base[];
  152. extern unsigned long gru_start_paddr, gru_end_paddr;
  153. extern void *gru_start_vaddr;
  154. extern unsigned int gru_max_gids;
  155. #define GRU_MAX_BLADES MAX_NUMNODES
  156. #define GRU_MAX_GRUS (GRU_MAX_BLADES * GRU_CHIPLETS_PER_BLADE)
  157. #define GRU_DRIVER_ID_STR "SGI GRU Device Driver"
  158. #define GRU_DRIVER_VERSION_STR "0.80"
  159. /*
  160. * GRU statistics.
  161. */
  162. struct gru_stats_s {
  163. atomic_long_t vdata_alloc;
  164. atomic_long_t vdata_free;
  165. atomic_long_t gts_alloc;
  166. atomic_long_t gts_free;
  167. atomic_long_t vdata_double_alloc;
  168. atomic_long_t gts_double_allocate;
  169. atomic_long_t assign_context;
  170. atomic_long_t assign_context_failed;
  171. atomic_long_t free_context;
  172. atomic_long_t load_user_context;
  173. atomic_long_t load_kernel_context;
  174. atomic_long_t lock_kernel_context;
  175. atomic_long_t unlock_kernel_context;
  176. atomic_long_t steal_user_context;
  177. atomic_long_t steal_kernel_context;
  178. atomic_long_t steal_context_failed;
  179. atomic_long_t nopfn;
  180. atomic_long_t break_cow;
  181. atomic_long_t asid_new;
  182. atomic_long_t asid_next;
  183. atomic_long_t asid_wrap;
  184. atomic_long_t asid_reuse;
  185. atomic_long_t intr;
  186. atomic_long_t intr_mm_lock_failed;
  187. atomic_long_t call_os;
  188. atomic_long_t call_os_offnode_reference;
  189. atomic_long_t call_os_check_for_bug;
  190. atomic_long_t call_os_wait_queue;
  191. atomic_long_t user_flush_tlb;
  192. atomic_long_t user_unload_context;
  193. atomic_long_t user_exception;
  194. atomic_long_t set_context_option;
  195. atomic_long_t migrate_check;
  196. atomic_long_t migrated_retarget;
  197. atomic_long_t migrated_unload;
  198. atomic_long_t migrated_unload_delay;
  199. atomic_long_t migrated_nopfn_retarget;
  200. atomic_long_t migrated_nopfn_unload;
  201. atomic_long_t tlb_dropin;
  202. atomic_long_t tlb_dropin_fail_no_asid;
  203. atomic_long_t tlb_dropin_fail_upm;
  204. atomic_long_t tlb_dropin_fail_invalid;
  205. atomic_long_t tlb_dropin_fail_range_active;
  206. atomic_long_t tlb_dropin_fail_idle;
  207. atomic_long_t tlb_dropin_fail_fmm;
  208. atomic_long_t tlb_dropin_fail_no_exception;
  209. atomic_long_t tlb_dropin_fail_no_exception_war;
  210. atomic_long_t tfh_stale_on_fault;
  211. atomic_long_t mmu_invalidate_range;
  212. atomic_long_t mmu_invalidate_page;
  213. atomic_long_t mmu_clear_flush_young;
  214. atomic_long_t flush_tlb;
  215. atomic_long_t flush_tlb_gru;
  216. atomic_long_t flush_tlb_gru_tgh;
  217. atomic_long_t flush_tlb_gru_zero_asid;
  218. atomic_long_t copy_gpa;
  219. atomic_long_t read_gpa;
  220. atomic_long_t mesq_receive;
  221. atomic_long_t mesq_receive_none;
  222. atomic_long_t mesq_send;
  223. atomic_long_t mesq_send_failed;
  224. atomic_long_t mesq_noop;
  225. atomic_long_t mesq_send_unexpected_error;
  226. atomic_long_t mesq_send_lb_overflow;
  227. atomic_long_t mesq_send_qlimit_reached;
  228. atomic_long_t mesq_send_amo_nacked;
  229. atomic_long_t mesq_send_put_nacked;
  230. atomic_long_t mesq_qf_not_full;
  231. atomic_long_t mesq_qf_locked;
  232. atomic_long_t mesq_qf_noop_not_full;
  233. atomic_long_t mesq_qf_switch_head_failed;
  234. atomic_long_t mesq_qf_unexpected_error;
  235. atomic_long_t mesq_noop_unexpected_error;
  236. atomic_long_t mesq_noop_lb_overflow;
  237. atomic_long_t mesq_noop_qlimit_reached;
  238. atomic_long_t mesq_noop_amo_nacked;
  239. atomic_long_t mesq_noop_put_nacked;
  240. };
  241. enum mcs_op {cchop_allocate, cchop_start, cchop_interrupt, cchop_interrupt_sync,
  242. cchop_deallocate, tghop_invalidate, mcsop_last};
  243. struct mcs_op_statistic {
  244. atomic_long_t count;
  245. atomic_long_t total;
  246. unsigned long max;
  247. };
  248. extern struct mcs_op_statistic mcs_op_statistics[mcsop_last];
  249. #define OPT_DPRINT 1
  250. #define OPT_STATS 2
  251. #define IRQ_GRU 110 /* Starting IRQ number for interrupts */
  252. /* Delay in jiffies between attempts to assign a GRU context */
  253. #define GRU_ASSIGN_DELAY ((HZ * 20) / 1000)
  254. /*
  255. * If a process has it's context stolen, min delay in jiffies before trying to
  256. * steal a context from another process.
  257. */
  258. #define GRU_STEAL_DELAY ((HZ * 200) / 1000)
  259. #define STAT(id) do { \
  260. if (gru_options & OPT_STATS) \
  261. atomic_long_inc(&gru_stats.id); \
  262. } while (0)
  263. #ifdef CONFIG_SGI_GRU_DEBUG
  264. #define gru_dbg(dev, fmt, x...) \
  265. do { \
  266. if (gru_options & OPT_DPRINT) \
  267. dev_dbg(dev, "%s: " fmt, __func__, x); \
  268. } while (0)
  269. #else
  270. #define gru_dbg(x...)
  271. #endif
  272. /*-----------------------------------------------------------------------------
  273. * ASID management
  274. */
  275. #define MAX_ASID 0xfffff0
  276. #define MIN_ASID 8
  277. #define ASID_INC 8 /* number of regions */
  278. /* Generate a GRU asid value from a GRU base asid & a virtual address. */
  279. #if defined CONFIG_IA64
  280. #define VADDR_HI_BIT 64
  281. #elif defined CONFIG_X86_64
  282. #define VADDR_HI_BIT 48
  283. #else
  284. #error "Unsupported architecture"
  285. #endif
  286. #define GRUREGION(addr) ((addr) >> (VADDR_HI_BIT - 3) & 3)
  287. #define GRUASID(asid, addr) ((asid) + GRUREGION(addr))
  288. /*------------------------------------------------------------------------------
  289. * File & VMS Tables
  290. */
  291. struct gru_state;
  292. /*
  293. * This structure is pointed to from the mmstruct via the notifier pointer.
  294. * There is one of these per address space.
  295. */
  296. struct gru_mm_tracker { /* pack to reduce size */
  297. unsigned int mt_asid_gen:24; /* ASID wrap count */
  298. unsigned int mt_asid:24; /* current base ASID for gru */
  299. unsigned short mt_ctxbitmap:16;/* bitmap of contexts using
  300. asid */
  301. } __attribute__ ((packed));
  302. struct gru_mm_struct {
  303. struct mmu_notifier ms_notifier;
  304. atomic_t ms_refcnt;
  305. spinlock_t ms_asid_lock; /* protects ASID assignment */
  306. atomic_t ms_range_active;/* num range_invals active */
  307. char ms_released;
  308. wait_queue_head_t ms_wait_queue;
  309. DECLARE_BITMAP(ms_asidmap, GRU_MAX_GRUS);
  310. struct gru_mm_tracker ms_asids[GRU_MAX_GRUS];
  311. };
  312. /*
  313. * One of these structures is allocated when a GSEG is mmaped. The
  314. * structure is pointed to by the vma->vm_private_data field in the vma struct.
  315. */
  316. struct gru_vma_data {
  317. spinlock_t vd_lock; /* Serialize access to vma */
  318. struct list_head vd_head; /* head of linked list of gts */
  319. long vd_user_options;/* misc user option flags */
  320. int vd_cbr_au_count;
  321. int vd_dsr_au_count;
  322. };
  323. /*
  324. * One of these is allocated for each thread accessing a mmaped GRU. A linked
  325. * list of these structure is hung off the struct gru_vma_data in the mm_struct.
  326. */
  327. struct gru_thread_state {
  328. struct list_head ts_next; /* list - head at vma-private */
  329. struct mutex ts_ctxlock; /* load/unload CTX lock */
  330. struct mm_struct *ts_mm; /* mm currently mapped to
  331. context */
  332. struct vm_area_struct *ts_vma; /* vma of GRU context */
  333. struct gru_state *ts_gru; /* GRU where the context is
  334. loaded */
  335. struct gru_mm_struct *ts_gms; /* asid & ioproc struct */
  336. unsigned long ts_cbr_map; /* map of allocated CBRs */
  337. unsigned long ts_dsr_map; /* map of allocated DATA
  338. resources */
  339. unsigned long ts_steal_jiffies;/* jiffies when context last
  340. stolen */
  341. long ts_user_options;/* misc user option flags */
  342. pid_t ts_tgid_owner; /* task that is using the
  343. context - for migration */
  344. short ts_user_blade_id;/* user selected blade */
  345. char ts_user_chiplet_id;/* user selected chiplet */
  346. unsigned short ts_sizeavail; /* Pagesizes in use */
  347. int ts_tsid; /* thread that owns the
  348. structure */
  349. int ts_tlb_int_select;/* target cpu if interrupts
  350. enabled */
  351. int ts_ctxnum; /* context number where the
  352. context is loaded */
  353. atomic_t ts_refcnt; /* reference count GTS */
  354. unsigned char ts_dsr_au_count;/* Number of DSR resources
  355. required for contest */
  356. unsigned char ts_cbr_au_count;/* Number of CBR resources
  357. required for contest */
  358. char ts_cch_req_slice;/* CCH packet slice */
  359. char ts_blade; /* If >= 0, migrate context if
  360. ref from diferent blade */
  361. char ts_force_cch_reload;
  362. char ts_force_unload;/* force context to be unloaded
  363. after migration */
  364. char ts_cbr_idx[GRU_CBR_AU];/* CBR numbers of each
  365. allocated CB */
  366. int ts_data_valid; /* Indicates if ts_gdata has
  367. valid data */
  368. struct gts_statistics ustats; /* User statistics */
  369. unsigned long ts_gdata[0]; /* save area for GRU data (CB,
  370. DS, CBE) */
  371. };
  372. /*
  373. * Threaded programs actually allocate an array of GSEGs when a context is
  374. * created. Each thread uses a separate GSEG. TSID is the index into the GSEG
  375. * array.
  376. */
  377. #define TSID(a, v) (((a) - (v)->vm_start) / GRU_GSEG_PAGESIZE)
  378. #define UGRUADDR(gts) ((gts)->ts_vma->vm_start + \
  379. (gts)->ts_tsid * GRU_GSEG_PAGESIZE)
  380. #define NULLCTX (-1) /* if context not loaded into GRU */
  381. /*-----------------------------------------------------------------------------
  382. * GRU State Tables
  383. */
  384. /*
  385. * One of these exists for each GRU chiplet.
  386. */
  387. struct gru_state {
  388. struct gru_blade_state *gs_blade; /* GRU state for entire
  389. blade */
  390. unsigned long gs_gru_base_paddr; /* Physical address of
  391. gru segments (64) */
  392. void *gs_gru_base_vaddr; /* Virtual address of
  393. gru segments (64) */
  394. unsigned short gs_gid; /* unique GRU number */
  395. unsigned short gs_blade_id; /* blade of GRU */
  396. unsigned char gs_tgh_local_shift; /* used to pick TGH for
  397. local flush */
  398. unsigned char gs_tgh_first_remote; /* starting TGH# for
  399. remote flush */
  400. spinlock_t gs_asid_lock; /* lock used for
  401. assigning asids */
  402. spinlock_t gs_lock; /* lock used for
  403. assigning contexts */
  404. /* -- the following are protected by the gs_asid_lock spinlock ---- */
  405. unsigned int gs_asid; /* Next availe ASID */
  406. unsigned int gs_asid_limit; /* Limit of available
  407. ASIDs */
  408. unsigned int gs_asid_gen; /* asid generation.
  409. Inc on wrap */
  410. /* --- the following fields are protected by the gs_lock spinlock --- */
  411. unsigned long gs_context_map; /* bitmap to manage
  412. contexts in use */
  413. unsigned long gs_cbr_map; /* bitmap to manage CB
  414. resources */
  415. unsigned long gs_dsr_map; /* bitmap used to manage
  416. DATA resources */
  417. unsigned int gs_reserved_cbrs; /* Number of kernel-
  418. reserved cbrs */
  419. unsigned int gs_reserved_dsr_bytes; /* Bytes of kernel-
  420. reserved dsrs */
  421. unsigned short gs_active_contexts; /* number of contexts
  422. in use */
  423. struct gru_thread_state *gs_gts[GRU_NUM_CCH]; /* GTS currently using
  424. the context */
  425. };
  426. /*
  427. * This structure contains the GRU state for all the GRUs on a blade.
  428. */
  429. struct gru_blade_state {
  430. void *kernel_cb; /* First kernel
  431. reserved cb */
  432. void *kernel_dsr; /* First kernel
  433. reserved DSR */
  434. struct rw_semaphore bs_kgts_sema; /* lock for kgts */
  435. struct gru_thread_state *bs_kgts; /* GTS for kernel use */
  436. /* ---- the following are used for managing kernel async GRU CBRs --- */
  437. int bs_async_dsr_bytes; /* DSRs for async */
  438. int bs_async_cbrs; /* CBRs AU for async */
  439. struct completion *bs_async_wq;
  440. /* ---- the following are protected by the bs_lock spinlock ---- */
  441. spinlock_t bs_lock; /* lock used for
  442. stealing contexts */
  443. int bs_lru_ctxnum; /* STEAL - last context
  444. stolen */
  445. struct gru_state *bs_lru_gru; /* STEAL - last gru
  446. stolen */
  447. struct gru_state bs_grus[GRU_CHIPLETS_PER_BLADE];
  448. };
  449. /*-----------------------------------------------------------------------------
  450. * Address Primitives
  451. */
  452. #define get_tfm_for_cpu(g, c) \
  453. ((struct gru_tlb_fault_map *)get_tfm((g)->gs_gru_base_vaddr, (c)))
  454. #define get_tfh_by_index(g, i) \
  455. ((struct gru_tlb_fault_handle *)get_tfh((g)->gs_gru_base_vaddr, (i)))
  456. #define get_tgh_by_index(g, i) \
  457. ((struct gru_tlb_global_handle *)get_tgh((g)->gs_gru_base_vaddr, (i)))
  458. #define get_cbe_by_index(g, i) \
  459. ((struct gru_control_block_extended *)get_cbe((g)->gs_gru_base_vaddr,\
  460. (i)))
  461. /*-----------------------------------------------------------------------------
  462. * Useful Macros
  463. */
  464. /* Given a blade# & chiplet#, get a pointer to the GRU */
  465. #define get_gru(b, c) (&gru_base[b]->bs_grus[c])
  466. /* Number of bytes to save/restore when unloading/loading GRU contexts */
  467. #define DSR_BYTES(dsr) ((dsr) * GRU_DSR_AU_BYTES)
  468. #define CBR_BYTES(cbr) ((cbr) * GRU_HANDLE_BYTES * GRU_CBR_AU_SIZE * 2)
  469. /* Convert a user CB number to the actual CBRNUM */
  470. #define thread_cbr_number(gts, n) ((gts)->ts_cbr_idx[(n) / GRU_CBR_AU_SIZE] \
  471. * GRU_CBR_AU_SIZE + (n) % GRU_CBR_AU_SIZE)
  472. /* Convert a gid to a pointer to the GRU */
  473. #define GID_TO_GRU(gid) \
  474. (gru_base[(gid) / GRU_CHIPLETS_PER_BLADE] ? \
  475. (&gru_base[(gid) / GRU_CHIPLETS_PER_BLADE]-> \
  476. bs_grus[(gid) % GRU_CHIPLETS_PER_BLADE]) : \
  477. NULL)
  478. /* Scan all active GRUs in a GRU bitmap */
  479. #define for_each_gru_in_bitmap(gid, map) \
  480. for ((gid) = find_first_bit((map), GRU_MAX_GRUS); (gid) < GRU_MAX_GRUS;\
  481. (gid)++, (gid) = find_next_bit((map), GRU_MAX_GRUS, (gid)))
  482. /* Scan all active GRUs on a specific blade */
  483. #define for_each_gru_on_blade(gru, nid, i) \
  484. for ((gru) = gru_base[nid]->bs_grus, (i) = 0; \
  485. (i) < GRU_CHIPLETS_PER_BLADE; \
  486. (i)++, (gru)++)
  487. /* Scan all GRUs */
  488. #define foreach_gid(gid) \
  489. for ((gid) = 0; (gid) < gru_max_gids; (gid)++)
  490. /* Scan all active GTSs on a gru. Note: must hold ss_lock to use this macro. */
  491. #define for_each_gts_on_gru(gts, gru, ctxnum) \
  492. for ((ctxnum) = 0; (ctxnum) < GRU_NUM_CCH; (ctxnum)++) \
  493. if (((gts) = (gru)->gs_gts[ctxnum]))
  494. /* Scan each CBR whose bit is set in a TFM (or copy of) */
  495. #define for_each_cbr_in_tfm(i, map) \
  496. for ((i) = find_first_bit(map, GRU_NUM_CBE); \
  497. (i) < GRU_NUM_CBE; \
  498. (i)++, (i) = find_next_bit(map, GRU_NUM_CBE, i))
  499. /* Scan each CBR in a CBR bitmap. Note: multiple CBRs in an allocation unit */
  500. #define for_each_cbr_in_allocation_map(i, map, k) \
  501. for ((k) = find_first_bit(map, GRU_CBR_AU); (k) < GRU_CBR_AU; \
  502. (k) = find_next_bit(map, GRU_CBR_AU, (k) + 1)) \
  503. for ((i) = (k)*GRU_CBR_AU_SIZE; \
  504. (i) < ((k) + 1) * GRU_CBR_AU_SIZE; (i)++)
  505. /* Scan each DSR in a DSR bitmap. Note: multiple DSRs in an allocation unit */
  506. #define for_each_dsr_in_allocation_map(i, map, k) \
  507. for ((k) = find_first_bit((const unsigned long *)map, GRU_DSR_AU);\
  508. (k) < GRU_DSR_AU; \
  509. (k) = find_next_bit((const unsigned long *)map, \
  510. GRU_DSR_AU, (k) + 1)) \
  511. for ((i) = (k) * GRU_DSR_AU_CL; \
  512. (i) < ((k) + 1) * GRU_DSR_AU_CL; (i)++)
  513. #define gseg_physical_address(gru, ctxnum) \
  514. ((gru)->gs_gru_base_paddr + ctxnum * GRU_GSEG_STRIDE)
  515. #define gseg_virtual_address(gru, ctxnum) \
  516. ((gru)->gs_gru_base_vaddr + ctxnum * GRU_GSEG_STRIDE)
  517. /*-----------------------------------------------------------------------------
  518. * Lock / Unlock GRU handles
  519. * Use the "delresp" bit in the handle as a "lock" bit.
  520. */
  521. /* Lock hierarchy checking enabled only in emulator */
  522. /* 0 = lock failed, 1 = locked */
  523. static inline int __trylock_handle(void *h)
  524. {
  525. return !test_and_set_bit(1, h);
  526. }
  527. static inline void __lock_handle(void *h)
  528. {
  529. while (test_and_set_bit(1, h))
  530. cpu_relax();
  531. }
  532. static inline void __unlock_handle(void *h)
  533. {
  534. clear_bit(1, h);
  535. }
  536. static inline int trylock_cch_handle(struct gru_context_configuration_handle *cch)
  537. {
  538. return __trylock_handle(cch);
  539. }
  540. static inline void lock_cch_handle(struct gru_context_configuration_handle *cch)
  541. {
  542. __lock_handle(cch);
  543. }
  544. static inline void unlock_cch_handle(struct gru_context_configuration_handle
  545. *cch)
  546. {
  547. __unlock_handle(cch);
  548. }
  549. static inline void lock_tgh_handle(struct gru_tlb_global_handle *tgh)
  550. {
  551. __lock_handle(tgh);
  552. }
  553. static inline void unlock_tgh_handle(struct gru_tlb_global_handle *tgh)
  554. {
  555. __unlock_handle(tgh);
  556. }
  557. static inline int is_kernel_context(struct gru_thread_state *gts)
  558. {
  559. return !gts->ts_mm;
  560. }
  561. /*-----------------------------------------------------------------------------
  562. * Function prototypes & externs
  563. */
  564. struct gru_unload_context_req;
  565. extern const struct vm_operations_struct gru_vm_ops;
  566. extern struct device *grudev;
  567. extern struct gru_vma_data *gru_alloc_vma_data(struct vm_area_struct *vma,
  568. int tsid);
  569. extern struct gru_thread_state *gru_find_thread_state(struct vm_area_struct
  570. *vma, int tsid);
  571. extern struct gru_thread_state *gru_alloc_thread_state(struct vm_area_struct
  572. *vma, int tsid);
  573. extern struct gru_state *gru_assign_gru_context(struct gru_thread_state *gts,
  574. int blade);
  575. extern void gru_load_context(struct gru_thread_state *gts);
  576. extern void gru_steal_context(struct gru_thread_state *gts, int blade_id);
  577. extern void gru_unload_context(struct gru_thread_state *gts, int savestate);
  578. extern int gru_update_cch(struct gru_thread_state *gts, int force_unload);
  579. extern void gts_drop(struct gru_thread_state *gts);
  580. extern void gru_tgh_flush_init(struct gru_state *gru);
  581. extern int gru_kservices_init(void);
  582. extern void gru_kservices_exit(void);
  583. extern int gru_dump_chiplet_request(unsigned long arg);
  584. extern long gru_get_gseg_statistics(unsigned long arg);
  585. extern irqreturn_t gru_intr(int irq, void *dev_id);
  586. extern int gru_handle_user_call_os(unsigned long address);
  587. extern int gru_user_flush_tlb(unsigned long arg);
  588. extern int gru_user_unload_context(unsigned long arg);
  589. extern int gru_get_exception_detail(unsigned long arg);
  590. extern int gru_set_context_option(unsigned long address);
  591. extern int gru_cpu_fault_map_id(void);
  592. extern struct vm_area_struct *gru_find_vma(unsigned long vaddr);
  593. extern void gru_flush_all_tlb(struct gru_state *gru);
  594. extern int gru_proc_init(void);
  595. extern void gru_proc_exit(void);
  596. extern struct gru_thread_state *gru_alloc_gts(struct vm_area_struct *vma,
  597. int cbr_au_count, int dsr_au_count, int options, int tsid);
  598. extern unsigned long gru_reserve_cb_resources(struct gru_state *gru,
  599. int cbr_au_count, char *cbmap);
  600. extern unsigned long gru_reserve_ds_resources(struct gru_state *gru,
  601. int dsr_au_count, char *dsmap);
  602. extern int gru_fault(struct vm_area_struct *, struct vm_fault *vmf);
  603. extern struct gru_mm_struct *gru_register_mmu_notifier(void);
  604. extern void gru_drop_mmu_notifier(struct gru_mm_struct *gms);
  605. extern int gru_ktest(unsigned long arg);
  606. extern void gru_flush_tlb_range(struct gru_mm_struct *gms, unsigned long start,
  607. unsigned long len);
  608. extern unsigned long gru_options;
  609. #endif /* __GRUTABLES_H__ */