Home
last modified time | relevance | path

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

/third_party/uboot/u-boot-2020.01/test/py/tests/test_android/
Dtest_avb.py22 mmc_dev = 1 variable
34 response = u_boot_console.run_command('avb init %s' %str(mmc_dev))
47 response = u_boot_console.run_command('avb init %s' % str(mmc_dev))
51 str(mmc_dev))
79 response = u_boot_console.run_command('avb init %s' % str(mmc_dev))
91 response = u_boot_console.run_command('avb init %s' % str(mmc_dev))
105 str(mmc_dev))
111 response = u_boot_console.run_command('avb init %s' % str(mmc_dev))
130 response = u_boot_console.run_command('avb init %s' % str(mmc_dev))
/third_party/uboot/u-boot-2020.01/arch/arm/mach-snapdragon/
Dmisc.c30 struct mmc *mmc_dev; in msm_board_serial() local
32 mmc_dev = find_mmc_device(0); in msm_board_serial()
33 if (!mmc_dev) in msm_board_serial()
36 return UNSTUFF_BITS(mmc_dev->cid, 16, 32); in msm_board_serial()
/third_party/uboot/u-boot-2020.01/test/py/tests/
Dtest_mmc_rd.py108 def mmc_dev(u_boot_console, is_emmc, devid, partid): function
153 mmc_dev(u_boot_console, is_emmc, devid, partid)
174 mmc_dev(u_boot_console, is_emmc, devid, partid)
204 mmc_dev(u_boot_console, is_emmc, devid, partid)
248 mmc_dev(u_boot_console, is_emmc, devid, partid)
/third_party/uboot/u-boot-2020.01/drivers/mmc/
Dmmc-uclass.c222 struct udevice *dev, *mmc_dev; in find_mmc_device() local
234 mmc_dev = dev_get_parent(dev); in find_mmc_device()
236 struct mmc *mmc = mmc_get_mmc_dev(mmc_dev); in find_mmc_device()
374 struct udevice *mmc_dev = dev_get_parent(bdev); in mmc_select_hwpart() local
375 struct mmc *mmc = mmc_get_mmc_dev(mmc_dev); in mmc_select_hwpart()
394 struct udevice *mmc_dev = dev_get_parent(dev); in mmc_blk_probe() local
395 struct mmc_uclass_priv *upriv = dev_get_uclass_priv(mmc_dev); in mmc_blk_probe()
413 struct udevice *mmc_dev = dev_get_parent(dev); in mmc_blk_remove() local
414 struct mmc_uclass_priv *upriv = dev_get_uclass_priv(mmc_dev); in mmc_blk_remove()
Dzynq_sdhci.c70 dev_err(mmc_dev(host->mmc), in arasan_zynqmp_dll_reset()
Dsdhci.c346 int mmc_dev = mmc_get_blk_desc(mmc)->devnum; local
364 printf("%s: MMC: %d busy ", __func__, mmc_dev);
/third_party/uboot/u-boot-2020.01/common/spl/
Dspl_mmc.c126 int err, mmc_dev; in spl_mmc_find_device() local
128 mmc_dev = spl_mmc_get_device_index(boot_device); in spl_mmc_find_device()
129 if (mmc_dev < 0) in spl_mmc_find_device()
130 return mmc_dev; in spl_mmc_find_device()
133 err = mmc_init_device(mmc_dev); in spl_mmc_find_device()
143 *mmcp = find_mmc_device(mmc_dev); in spl_mmc_find_device()
148 mmc_dev, err); in spl_mmc_find_device()
/third_party/uboot/u-boot-2020.01/test/dm/
Dblk.c116 struct udevice *dev, *mmc_dev, *parent; in dm_test_blk_devnum() local
130 ut_assertok(uclass_get_device_by_seq(UCLASS_MMC, i, &mmc_dev)); in dm_test_blk_devnum()
133 ut_asserteq_ptr(parent, mmc_dev); in dm_test_blk_devnum()
134 ut_asserteq(trailing_strtol(mmc_dev->name), i); in dm_test_blk_devnum()
/third_party/uboot/u-boot-2020.01/include/
Davb_verify.h29 int mmc_dev; member
95 return data->mmc_dev; in get_boot_device()
/third_party/uboot/u-boot-2020.01/cmd/
Davb.c20 unsigned long mmc_dev; in do_avb_init() local
25 mmc_dev = simple_strtoul(argv[1], NULL, 16); in do_avb_init()
30 avb_ops = avb_ops_alloc(mmc_dev); in do_avb_init()
Dmmc.c565 struct blk_desc *mmc_dev; in do_mmc_part() local
572 mmc_dev = blk_get_devnum_by_type(IF_TYPE_MMC, curr_device); in do_mmc_part()
573 if (mmc_dev != NULL && mmc_dev->type != DEV_TYPE_UNKNOWN) { in do_mmc_part()
574 part_print(mmc_dev); in do_mmc_part()
/third_party/uboot/u-boot-2020.01/common/
Davb_verify.c1003 ops_data->mmc_dev = boot_device; in avb_ops_alloc()