Lines Matching refs:features
183 static void enable_extra_feature(unsigned int features)
189 if (features & CACHE_TAUROS2_PREFETCH_ON)
194 (features & CACHE_TAUROS2_PREFETCH_ON)
197 if (features & CACHE_TAUROS2_LINEFILL_BURST8)
202 (features & CACHE_TAUROS2_LINEFILL_BURST8)
208 static void __init tauros2_internal_init(unsigned int features)
212 enable_extra_feature(features);
285 void __init tauros2_init(unsigned int features)
296 ret = of_property_read_u32(node, "marvell,tauros2-cache-features", &f);
298 pr_info("Not found marvell,tauros-cache-features property, "
299 "disable extra features\n");
300 features = 0;
302 features = f;
305 tauros2_internal_init(features);