Searched refs:drv (Results 1 – 4 of 4) sorted by relevance
/optee_os-3.20.0/core/drivers/crypto/caam/ |
A D | crypto.mk | 120 define cryphw-enable-drv-hw 133 $(eval $(call cryphw-enable-drv-hw, HASH)) 134 $(eval $(call cryphw-enable-drv-hw, CIPHER)) 140 $(eval $(call cryphw-enable-drv-hw, RSA)) 141 $(eval $(call cryphw-enable-drv-hw, ECC)) 142 $(eval $(call cryphw-enable-drv-hw, DH)) 143 $(eval $(call cryphw-enable-drv-hw, DSA)) 155 $(eval $(call cryphw-enable-drv-hw, RSA)) 156 $(eval $(call cryphw-enable-drv-hw, ECC)) 157 $(eval $(call cryphw-enable-drv-hw, DH)) [all …]
|
/optee_os-3.20.0/core/include/kernel/ |
A D | dt.h | 308 #define for_each_dt_driver(drv) \ argument 309 for (drv = SCATTERED_ARRAY_BEGIN(dt_drivers, struct dt_driver); \ 310 drv < SCATTERED_ARRAY_END(dt_drivers, struct dt_driver); \ 311 drv++)
|
/optee_os-3.20.0/core/kernel/ |
A D | dt.c | 19 const struct dt_driver *drv; in dt_find_compatible_driver() local 21 for_each_dt_driver(drv) { in dt_find_compatible_driver() 22 for (dm = drv->match_table; dm; dm++) { in dt_find_compatible_driver() 28 return drv; in dt_find_compatible_driver()
|
A D | dt_driver.c | 402 const struct dt_driver *drv = NULL; in probe_device_by_compat() local 405 for_each_dt_driver(drv) { in probe_device_by_compat() 406 if (drv->type != type) in probe_device_by_compat() 409 for (dm = drv->match_table; dm && dm->compatible; dm++) in probe_device_by_compat() 411 return alloc_elt_and_probe(fdt, node, drv, dm); in probe_device_by_compat()
|
Completed in 7 milliseconds