Lines Matching defs:reg_00

1176 	union IO_APIC_reg_00 reg_00;
1182 reg_00.raw = io_apic_read(ioapic_idx, 0);
1191 apic_dbg(".... register #00: %08X\n", reg_00.raw);
1192 apic_dbg("....... : physical APIC id: %02X\n", reg_00.bits.ID);
1193 apic_dbg("....... : Delivery Type: %X\n", reg_00.bits.delivery_type);
1194 apic_dbg("....... : LTS : %X\n", reg_00.bits.LTS);
1367 union IO_APIC_reg_00 reg_00;
1383 reg_00.raw = io_apic_read(ioapic_idx, 0);
1390 pr_err("... fixing up to %d. (tell your hw vendor)\n", reg_00.bits.ID);
1391 ioapics[ioapic_idx].mp_config.apicid = reg_00.bits.ID;
1431 if (mpc_ioapic_id(ioapic_idx) == reg_00.bits.ID)
1437 reg_00.bits.ID = mpc_ioapic_id(ioapic_idx);
1439 io_apic_write(ioapic_idx, 0, reg_00.raw);
1440 reg_00.raw = io_apic_read(ioapic_idx, 0);
1443 if (reg_00.bits.ID != mpc_ioapic_id(ioapic_idx))
2301 union IO_APIC_reg_00 reg_00;
2304 reg_00.raw = io_apic_read(ioapic_idx, 0);
2305 if (reg_00.bits.ID != mpc_ioapic_id(ioapic_idx)) {
2306 reg_00.bits.ID = mpc_ioapic_id(ioapic_idx);
2307 io_apic_write(ioapic_idx, 0, reg_00.raw);
2373 union IO_APIC_reg_00 reg_00;
2381 reg_00.raw = io_apic_read(ioapic, 0);
2385 ioapic, apic_id, reg_00.bits.ID);
2386 apic_id = reg_00.bits.ID;
2405 if (reg_00.bits.ID != apic_id) {
2406 reg_00.bits.ID = apic_id;
2409 io_apic_write(ioapic, 0, reg_00.raw);
2410 reg_00.raw = io_apic_read(ioapic, 0);
2414 if (reg_00.bits.ID != apic_id) {
2434 union IO_APIC_reg_00 reg_00;
2452 reg_00.raw = io_apic_read(idx, 0);
2454 new_id = reg_00.bits.ID;
2463 reg_00.bits.ID = new_id;
2465 io_apic_write(idx, 0, reg_00.raw);
2466 reg_00.raw = io_apic_read(idx, 0);
2469 BUG_ON(reg_00.bits.ID != new_id);
2637 union IO_APIC_reg_00 reg_00;
2641 reg_00.raw = io_apic_read(idx, 0);
2645 if (reg_00.raw == -1 && reg_01.raw == -1 && reg_02.raw == -1) {