Home | History | Annotate | Download | only in acpidump

Lines Matching defs:spcr

1448 /* This function is used by DBG2 and SPCR. */
2944 ACPI_TABLE_SPCR *spcr;
2948 spcr = (ACPI_TABLE_SPCR *)sdp;
2954 (spcr->InterfaceType == 1) ?
2958 acpi_print_dbg2_serial_subtype(spcr->InterfaceType);
2966 acpi_print_gas(&spcr->SerialPort);
2968 if (spcr->InterruptType & 0x1) {
2970 switch (spcr->PcInterrupt) {
2974 printf("%d", spcr->PcInterrupt);
2977 printf("%d (invalid entry)", spcr->PcInterrupt);
2981 if (spcr->InterruptType & 0x2) {
2982 printf("\n\t\tIO APIC={ GSI=%d }", spcr->Interrupt);
2984 if (spcr->InterruptType & 0x4) {
2985 printf("\n\t\tIO SAPIC={ GSI=%d }", spcr->Interrupt);
2987 if (spcr->InterruptType & 0x8) {
2988 printf("\n\t\tARMH GIC={ GSI=%d }", spcr->Interrupt);
2993 switch (spcr->BaudRate) {
3007 printf("unknown speed index %d", spcr->BaudRate);
3011 switch (spcr->Parity) {
3022 switch (spcr->StopBits) {
3033 if (spcr->FlowControl & 0x1)
3035 if (spcr->FlowControl & 0x2)
3037 if (spcr->FlowControl & 0x4)
3042 switch (spcr->TerminalType) {
3056 printf("unknown type %d", spcr->TerminalType);
3061 acpi_print_pci(spcr->PciVendorId, spcr->PciDeviceId,
3062 spcr->PciSegment, spcr->PciBus, spcr->PciDevice, spcr->PciFunction);
3065 if (spcr->PciFlags & ACPI_SPCR_DO_NOT_DISABLE)