/u-boot/test/py/tests/ |
A D | test_mmc_rd.py | 108 def mmc_dev(u_boot_console, is_emmc, devid, partid): argument 122 cmd = 'mmc dev %d' % devid 149 devid = env__mmc_dev_config['devid'] 153 mmc_dev(u_boot_console, is_emmc, devid, partid) 170 devid = env__mmc_dev_config['devid'] 174 mmc_dev(u_boot_console, is_emmc, devid, partid) 196 devid = env__mmc_dev_config['devid'] 204 mmc_dev(u_boot_console, is_emmc, devid, partid) 233 devid = env__mmc_rd_config['devid'] 248 mmc_dev(u_boot_console, is_emmc, devid, partid) [all …]
|
A D | test_mmc_wr.py | 55 devid = env__mmc_wr_config['devid'] 77 cmd = 'mmc dev %d' % devid 86 good_response = 'mmc%d%s is current device' % (devid, partid_response) 92 … 'MMC write: dev # %d, block # %d, count %d ... %d blocks written: OK' % (devid, sector, count_sec… 98 …good_response = 'MMC read: dev # %d, block # %d, count %d ... %d blocks read: OK' % (devid, sector…
|
/u-boot/drivers/pci/ |
A D | pcie_layerscape_gen4_fixup.c | 42 u32 devid, u32 streamid) in ls_pcie_g4_lut_set_mapping() argument 45 lut_writel(pcie, devid << 16, PCIE_LUT_UDR(index)); in ls_pcie_g4_lut_set_mapping() 59 u32 devid, u32 streamid) in fdt_pcie_set_msi_map_entry_ls_gen4() argument 86 fdt_appendprop_u32(blob, nodeoff, "msi-map", devid); in fdt_pcie_set_msi_map_entry_ls_gen4() 102 u32 devid, u32 streamid) in fdt_pcie_set_iommu_map_entry_ls_gen4() argument 129 iommu_map[0] = cpu_to_fdt32(devid); in fdt_pcie_set_iommu_map_entry_ls_gen4() 134 if (devid == 0) in fdt_pcie_set_iommu_map_entry_ls_gen4()
|
A D | pcie_layerscape_fixup.c | 82 u32 devid, u32 streamid) in ls_pcie_lut_set_mapping() argument 85 lut_writel(pcie_rc, devid << 16, PCIE_LUT_UDR(index)); in ls_pcie_lut_set_mapping() 99 u32 devid, u32 streamid) in fdt_pcie_set_msi_map_entry_ls() argument 138 fdt_appendprop_u32(blob, nodeoffset, "msi-map", devid); in fdt_pcie_set_msi_map_entry_ls() 154 u32 devid, u32 streamid) in fdt_pcie_set_iommu_map_entry_ls() argument 175 iommu_map[0] = cpu_to_fdt32(devid); in fdt_pcie_set_iommu_map_entry_ls() 180 if (devid == 0) { in fdt_pcie_set_iommu_map_entry_ls()
|
/u-boot/arch/arm/mach-kirkwood/ |
A D | cpu.c | 152 u16 devid = (readl(KW_REG_PCIE_DEVID) >> 16) & 0xffff; in print_cpuinfo() local 156 printf("Error.. %s:Unsupported Kirkwood SoC 88F%04x\n", __FUNCTION__, devid); in print_cpuinfo() 162 if (devid == 0x6281) in print_cpuinfo() 164 else if (devid == 0x6282) in print_cpuinfo() 180 printf("SoC: Kirkwood 88F%04x_%s\n", devid, rev); in print_cpuinfo()
|
/u-boot/fs/btrfs/ |
A D | volumes.c | 151 u64 devid, u8 *uuid) in find_device() argument 157 if (dev->devid == devid && in find_device() 213 fs_devices->latest_devid = devid; in device_list_add() 227 device->devid = devid; in device_list_add() 249 device->devid, found_transid, in device_list_add() 260 fs_devices->latest_devid = devid; in device_list_add() 264 fs_devices->lowest_devid = devid; in device_list_add() 323 device->devid); in btrfs_open_devices() 337 u64 devid; in btrfs_scan_one_device() local 524 u64 devid; in read_one_chunk() local [all …]
|
A D | volumes.h | 25 u64 devid; member 195 struct btrfs_device *btrfs_find_device(struct btrfs_fs_info *fs_info, u64 devid,
|
A D | conv-funcs.h | 122 DEFINE_CONV(btrfs_dev_item, devid, total_bytes, bytes_used, io_align, io_width, 124 DEFINE_CONV(btrfs_stripe, devid, offset)
|
A D | ctree.h | 225 BTRFS_SETGET_FUNCS(device_id, struct btrfs_dev_item, devid, 64); 242 BTRFS_SETGET_STACK_FUNCS(stack_device_id, struct btrfs_dev_item, devid, 64); 271 BTRFS_SETGET_FUNCS(stripe_devid, struct btrfs_stripe, devid, 64); 294 BTRFS_SETGET_STACK_FUNCS(stack_stripe_devid, struct btrfs_stripe, devid, 64);
|
/u-boot/drivers/xen/ |
A D | pvblock.c | 70 unsigned int devid; member 75 unsigned int devid; member 138 dev->devid = devid; in init_blkfront() 691 int ret, devid; in pvblock_blk_probe() local 693 devid = plat->devid; in pvblock_blk_probe() 696 ret = init_blkfront(devid, blk_dev); in pvblock_blk_probe() 752 plat->devid = devid; in on_new_vbd() 760 devid, ret); in on_new_vbd() 779 int devid; in xenbus_enumerate_vbd() local 781 sscanf(dirs[i], "%d", &devid); in xenbus_enumerate_vbd() [all …]
|
/u-boot/arch/x86/lib/ |
A D | bios_interrupts.c | 107 unsigned short devid, vendorid, devfn; in int1a_handler() local 133 devid = M.x86.R_ECX; in int1a_handler() 137 ret = dm_pci_find_device(vendorid, devid, devindex, &dev); in int1a_handler()
|
/u-boot/board/toradex/apalis_imx6/ |
A D | pf0100.c | 40 uchar devid, revid, val; in pmic_init() local 99 if (dm_i2c_read(dev, PFUZE100_DEVICEID, &devid, 1) < 0) { in pmic_init() 107 printf("device id: 0x%.2x, revision id: 0x%.2x, ", devid, revid); in pmic_init()
|
/u-boot/board/toradex/colibri_imx6/ |
A D | pf0100.c | 40 uchar devid, revid, val; in pmic_init() local 99 if (dm_i2c_read(dev, PFUZE100_DEVICEID, &devid, 1) < 0) { in pmic_init() 107 printf("device id: 0x%.2x, revision id: 0x%.2x, ", devid, revid); in pmic_init()
|
/u-boot/arch/arm/mach-mvebu/ |
A D | cpu.c | 58 u16 devid = (readl(MVEBU_REG_PCIE_DEVID) >> 16) & 0xffff; in mvebu_soc_family() local 60 switch (devid) { in mvebu_soc_family() 206 u16 devid = (readl(MVEBU_REG_PCIE_DEVID) >> 16) & 0xffff; in print_cpuinfo() local 212 switch (devid) { in print_cpuinfo()
|
/u-boot/include/linux/mtd/ |
A D | spinand.h | 271 u8 devid; member 305 .devid = __id, \ 445 unsigned int table_size, u8 devid);
|
A D | rawnand.h | 1030 #define LEGACY_ID_NAND(nm, devid, chipsz, erasesz, opts) \ argument 1031 { .name = (nm), {{ .dev_id = (devid) }}, .pagesize = 512, \ 1044 #define EXTENDED_ID_NAND(nm, devid, chipsz, opts) \ argument 1045 { .name = (nm), {{ .dev_id = (devid) }}, .chipsize = (chipsz), \
|
/u-boot/arch/arm/mach-nexell/ |
A D | clock.c | 83 #define CLK_PERI_1S(name, devid, id, addr, mk)[id] = \ argument 84 { .dev_name = name, .dev_id = devid, .periph_id = id, .clk_step = 1, \ 87 #define CLK_PERI_2S(name, devid, id, addr, mk, mk2)[id] = \ argument 88 { .dev_name = name, .dev_id = devid, .periph_id = id, .clk_step = 2, \ 583 int i, devid; in clk_get() local 595 devid = simple_strtoul(++c, NULL, 10); in clk_get() 596 if (cdev->peri->dev_id == devid) in clk_get()
|
/u-boot/drivers/video/ |
A D | broadwell_igd.c | 405 u16 devid; in igd_cdclk_init_haswell() local 410 dm_pci_read_config16(dev, PCI_DEVICE_ID, &devid); in igd_cdclk_init_haswell() 413 if (devid == 0x0a0e || devid == 0x0a1e) in igd_cdclk_init_haswell()
|
/u-boot/fs/btrfs/kernel-shared/ |
A D | btrfs_tree.h | 401 __le64 devid; member 447 __le64 devid; member 757 __le64 devid; member
|
/u-boot/drivers/mtd/nand/spi/ |
A D | core.c | 923 unsigned int table_size, u8 devid) in spinand_match_and_init() argument 932 if (devid != info->devid) in spinand_match_and_init()
|
/u-boot/arch/arm/dts/ |
A D | k3-am65-main.dtsi | 331 pcie_devid: pcie-devid@210 {
|