Home
last modified time | relevance | path

Searched refs:mmc_dev (Results 1 – 10 of 10) sorted by relevance

/external/u-boot/test/py/tests/
Dtest_avb.py22 mmc_dev = 1 variable
33 response = u_boot_console.run_command('avb init %s' %str(mmc_dev))
45 response = u_boot_console.run_command('avb init %s' % str(mmc_dev))
49 str(mmc_dev))
77 response = u_boot_console.run_command('avb init %s' % str(mmc_dev))
88 response = u_boot_console.run_command('avb init %s' % str(mmc_dev))
100 str(mmc_dev))
106 response = u_boot_console.run_command('avb init %s' % str(mmc_dev))
/external/u-boot/drivers/mmc/
Dmmc-uclass.c186 struct udevice *dev, *mmc_dev; in find_mmc_device() local
198 mmc_dev = dev_get_parent(dev); in find_mmc_device()
200 struct mmc *mmc = mmc_get_mmc_dev(mmc_dev); in find_mmc_device()
338 struct udevice *mmc_dev = dev_get_parent(bdev); in mmc_select_hwpart() local
339 struct mmc *mmc = mmc_get_mmc_dev(mmc_dev); in mmc_select_hwpart()
353 struct udevice *mmc_dev = dev_get_parent(dev); in mmc_blk_probe() local
354 struct mmc_uclass_priv *upriv = dev_get_uclass_priv(mmc_dev); in mmc_blk_probe()
Dsdhci.c153 int mmc_dev = mmc_get_blk_desc(mmc)->devnum; local
170 printf("%s: MMC: %d busy ", __func__, mmc_dev);
Dzynq_sdhci.c76 dev_err(mmc_dev(host->mmc), in arasan_zynqmp_dll_reset()
/external/u-boot/common/spl/
Dspl_mmc.c119 int err, mmc_dev; in spl_mmc_find_device() local
121 mmc_dev = spl_mmc_get_device_index(boot_device); in spl_mmc_find_device()
122 if (mmc_dev < 0) in spl_mmc_find_device()
123 return mmc_dev; in spl_mmc_find_device()
134 err = uclass_get_device(UCLASS_MMC, mmc_dev, &dev); in spl_mmc_find_device()
138 *mmcp = find_mmc_device(mmc_dev); in spl_mmc_find_device()
/external/u-boot/test/dm/
Dblk.c121 struct udevice *dev, *mmc_dev, *parent; in dm_test_blk_devnum() local
135 ut_assertok(uclass_get_device_by_seq(UCLASS_MMC, i, &mmc_dev)); in dm_test_blk_devnum()
138 ut_asserteq_ptr(parent, mmc_dev); in dm_test_blk_devnum()
139 ut_asserteq(trailing_strtol(mmc_dev->name), i); in dm_test_blk_devnum()
/external/u-boot/include/
Davb_verify.h28 int mmc_dev; member
90 return data->mmc_dev; in get_boot_device()
/external/u-boot/cmd/
Davb.c24 unsigned long mmc_dev; in do_avb_init() local
29 mmc_dev = simple_strtoul(argv[1], NULL, 16); in do_avb_init()
34 avb_ops = avb_ops_alloc(mmc_dev); in do_avb_init()
Dmmc.c451 struct blk_desc *mmc_dev; in do_mmc_part() local
458 mmc_dev = blk_get_devnum_by_type(IF_TYPE_MMC, curr_device); in do_mmc_part()
459 if (mmc_dev != NULL && mmc_dev->type != DEV_TYPE_UNKNOWN) { in do_mmc_part()
460 part_print(mmc_dev); in do_mmc_part()
/external/u-boot/common/
Davb_verify.c725 ops_data->mmc_dev = boot_device; in avb_ops_alloc()