HomeSort by relevance Sort by last modified time
    Searched defs:sys_id (Results 1 - 2 of 2) sorted by null

  /device/linaro/bootloader/arm-trusted-firmware/plat/fvp/aarch64/
fvp_common.c 190 * SYS_ID register provides a mechanism for detecting the differences between
196 unsigned int rev, hbi, bld, arch, sys_id; local
198 sys_id = mmio_read_32(VE_SYSREGS_BASE + V2M_SYS_ID);
199 rev = (sys_id >> SYS_ID_REV_SHIFT) & SYS_ID_REV_MASK;
200 hbi = (sys_id >> SYS_ID_HBI_SHIFT) & SYS_ID_HBI_MASK;
201 bld = (sys_id >> SYS_ID_BLD_SHIFT) & SYS_ID_BLD_MASK;
202 arch = (sys_id >> SYS_ID_ARCH_SHIFT) & SYS_ID_ARCH_MASK;
210 * The build field in the SYS_ID tells which variant of the GIC
232 * The hbi field in the SYS_ID is 0x020 for the Base FVP & 0x010
  /external/toybox/toys/pending/
fdisk.c 573 int sys_id, looper = 0; local
580 sys_id = p->sys_ind;
581 if (!sys_id) xprintf("Partition %u is empty\n", i+1);
583 if (i < 4 && !IS_EXTENDED(sys_id)) {
586 } else if (i < 4 && IS_EXTENDED(sys_id)) {
914 static int add_partition(int idx, int sys_id)
955 p->sys_ind = sys_id;
967 if (IS_EXTENDED(sys_id)) {
1041 int i, sys_id; local
1052 sys_id = read_hex("Hex code (L to list codes): ")
    [all...]

Completed in 183 milliseconds