Searched refs:drv (Results 1 – 5 of 5) sorted by relevance
/optee_os/core/arch/arm/plat-imx/ |
A D | crypto_conf.mk | 86 define cryphw-enable-drv-hw 98 $(eval $(call cryphw-enable-drv-hw, HASH)) 99 $(eval $(call cryphw-enable-drv-hw, CIPHER)) 100 $(eval $(call cryphw-enable-drv-hw, HMAC)) 101 $(eval $(call cryphw-enable-drv-hw, CMAC)) 105 $(eval $(call cryphw-enable-drv-hw, RSA)) 106 $(eval $(call cryphw-enable-drv-hw, ECC)) 107 $(eval $(call cryphw-enable-drv-hw, DH)) 108 $(eval $(call cryphw-enable-drv-hw, DSA))
|
/optee_os/core/arch/arm/plat-ls/ |
A D | crypto_conf.mk | 111 define cryphw-enable-drv-hw 123 $(eval $(call cryphw-enable-drv-hw, HASH)) 124 $(eval $(call cryphw-enable-drv-hw, CIPHER)) 127 $(eval $(call cryphw-enable-drv-hw, RSA)) 128 $(eval $(call cryphw-enable-drv-hw, ECC)) 129 $(eval $(call cryphw-enable-drv-hw, DH)) 130 $(eval $(call cryphw-enable-drv-hw, DSA))
|
/optee_os/core/include/kernel/ |
A D | dt.h | 238 #define for_each_dt_driver(drv) \ argument 239 for (drv = SCATTERED_ARRAY_BEGIN(dt_drivers, struct dt_driver); \ 240 drv < SCATTERED_ARRAY_END(dt_drivers, struct dt_driver); \ 241 drv++)
|
/optee_os/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 | 389 const struct dt_driver *drv = NULL; in probe_device_by_compat() local 392 for_each_dt_driver(drv) { in probe_device_by_compat() 393 if (drv->type != type) in probe_device_by_compat() 396 for (dm = drv->match_table; dm && dm->compatible; dm++) in probe_device_by_compat() 398 return alloc_elt_and_probe(fdt, node, drv, dm); in probe_device_by_compat()
|
Completed in 8 milliseconds