Home
last modified time | relevance | path

Searched refs:tmp32 (Results 1 – 2 of 2) sorted by relevance

/rk3399_rockchip-uboot/drivers/pci/
H A Dpci_ftpci100.c34 unsigned int i, tmp32, bar_no, iovsmem = 1; in setup_pci_bar() local
55 PCI_BASE_ADDRESS_0 + i * 4, &tmp32); in setup_pci_bar()
57 if (tmp32 == 0x0) in setup_pci_bar()
61 if (tmp32 & 0x1) { in setup_pci_bar()
63 unsigned int size_mask = ~(tmp32 & 0xfffffffc); in setup_pci_bar()
84 unsigned int is_64bit = ((tmp32 & 0x6) == 0x4); in setup_pci_bar()
85 unsigned int is_pref = tmp32 & 0x8; in setup_pci_bar()
86 unsigned int size_mask = ~(tmp32 & 0xfffffff0); in setup_pci_bar()
129 pci_hose_read_config_dword(hose, dev_nu, PCI_CACHE_LINE_SIZE, &tmp32); in setup_pci_bar()
131 pci_hose_read_config_dword(hose, dev_nu, PCI_CACHE_LINE_SIZE, &tmp32); in setup_pci_bar()
[all …]
/rk3399_rockchip-uboot/lib/
H A Duuid.c148 uint32_t tmp32; in uuid_str_to_bin() local
160 tmp32 = cpu_to_be32(simple_strtoul(uuid_str, NULL, 16)); in uuid_str_to_bin()
161 memcpy(uuid_bin, &tmp32, 4); in uuid_str_to_bin()
169 tmp32 = cpu_to_le32(simple_strtoul(uuid_str, NULL, 16)); in uuid_str_to_bin()
170 memcpy(uuid_bin, &tmp32, 4); in uuid_str_to_bin()