forked from Mirrors/opensbi
		
	lib: sbi_scratch: Introduce sbi_scratch_last_hartid() API
The patch adds sbi_scratch_last_hartid() API which returns last HART id having a scratch space. We can use this new API to optimize places where we iterate over HART id from 0 to SBI_HARTMASK_MAX_BITS. Signed-off-by: Anup Patel <anup.patel@wdc.com> Reviewed-by: Atish Patra <atish.patra@wdc.com>
This commit is contained in:
		@@ -113,6 +113,12 @@ extern struct sbi_scratch *hartid_to_scratch_table[];
 | 
			
		||||
#define sbi_hartid_to_scratch(__hartid) \
 | 
			
		||||
	hartid_to_scratch_table[__hartid]
 | 
			
		||||
 | 
			
		||||
/** Last HART id having a sbi_scratch pointer */
 | 
			
		||||
extern u32 last_hartid_having_scratch;
 | 
			
		||||
 | 
			
		||||
/** Get last HART id having a sbi_scratch pointer */
 | 
			
		||||
#define sbi_scratch_last_hartid()	last_hartid_having_scratch
 | 
			
		||||
 | 
			
		||||
#endif
 | 
			
		||||
 | 
			
		||||
#endif
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user