Lines Matching refs:data
16 uint32_t data; in boot_source_get() local
19 data = FORCE_BOOTSOURCE; in boot_source_get()
22 data = mmio_read_32(CRMU_IHOST_SW_PERSISTENT_REG1); in boot_source_get()
23 if (data & BOOT_SOURCE_SOFT_ENABLE_MASK) { in boot_source_get()
24 data >>= BOOT_SOURCE_SOFT_DATA_OFFSET; in boot_source_get()
33 data = 0; in boot_source_get()
35 data |= 0x1; in boot_source_get()
37 data |= 0x2; in boot_source_get()
39 data |= 0x4; in boot_source_get()
51 data = mmio_read_32(ROM_S0_IDM_IO_STATUS); in boot_source_get()
59 data &= BOOT_SOURCE_MASK; in boot_source_get()
62 data << BOOT_SOURCE_SOFT_DATA_OFFSET); in boot_source_get()
67 return (data & BOOT_SOURCE_MASK); in boot_source_get()