This source file includes following definitions.
- security_ftr_set
- security_ftr_clear
- security_ftr_enabled
   1 
   2 
   3 
   4 
   5 
   6 
   7 
   8 #ifndef _ASM_POWERPC_SECURITY_FEATURES_H
   9 #define _ASM_POWERPC_SECURITY_FEATURES_H
  10 
  11 
  12 extern u64 powerpc_security_features;
  13 extern bool rfi_flush;
  14 
  15 
  16 enum stf_barrier_type {
  17         STF_BARRIER_NONE        = 0x1,
  18         STF_BARRIER_FALLBACK    = 0x2,
  19         STF_BARRIER_EIEIO       = 0x4,
  20         STF_BARRIER_SYNC_ORI    = 0x8,
  21 };
  22 
  23 void setup_stf_barrier(void);
  24 void do_stf_barrier_fixups(enum stf_barrier_type types);
  25 void setup_count_cache_flush(void);
  26 
  27 static inline void security_ftr_set(u64 feature)
  28 {
  29         powerpc_security_features |= feature;
  30 }
  31 
  32 static inline void security_ftr_clear(u64 feature)
  33 {
  34         powerpc_security_features &= ~feature;
  35 }
  36 
  37 static inline bool security_ftr_enabled(u64 feature)
  38 {
  39         return !!(powerpc_security_features & feature);
  40 }
  41 
  42 
  43 
  44 
  45 
  46 #define SEC_FTR_L1D_FLUSH_ORI30         0x0000000000000001ull
  47 
  48 
  49 #define SEC_FTR_L1D_FLUSH_TRIG2         0x0000000000000002ull
  50 
  51 
  52 #define SEC_FTR_SPEC_BAR_ORI31          0x0000000000000004ull
  53 
  54 
  55 #define SEC_FTR_BCCTRL_SERIALISED       0x0000000000000008ull
  56 
  57 
  58 #define SEC_FTR_L1D_THREAD_PRIV         0x0000000000000010ull
  59 
  60 
  61 #define SEC_FTR_COUNT_CACHE_DISABLED    0x0000000000000020ull
  62 
  63 
  64 #define SEC_FTR_BCCTR_FLUSH_ASSIST      0x0000000000000800ull
  65 
  66 
  67 
  68 
  69 
  70 #define SEC_FTR_L1D_FLUSH_HV            0x0000000000000040ull
  71 
  72 
  73 #define SEC_FTR_L1D_FLUSH_PR            0x0000000000000080ull
  74 
  75 
  76 #define SEC_FTR_BNDS_CHK_SPEC_BAR       0x0000000000000100ull
  77 
  78 
  79 #define SEC_FTR_FAVOUR_SECURITY         0x0000000000000200ull
  80 
  81 
  82 #define SEC_FTR_FLUSH_COUNT_CACHE       0x0000000000000400ull
  83 
  84 
  85 #define SEC_FTR_FLUSH_LINK_STACK        0x0000000000001000ull
  86 
  87 
  88 
  89 #define SEC_FTR_DEFAULT \
  90         (SEC_FTR_L1D_FLUSH_HV | \
  91          SEC_FTR_L1D_FLUSH_PR | \
  92          SEC_FTR_BNDS_CHK_SPEC_BAR | \
  93          SEC_FTR_FAVOUR_SECURITY)
  94 
  95 #endif