Lines Matching defs:spcr
145 ACPI_TABLE_SPCR *spcr;
154 spcr = acpi_map_table(spcr_physaddr, ACPI_SIG_SPCR);
155 if (spcr == NULL) {
161 cd = uart_cpu_acpi_scan(spcr->InterfaceType);
166 error = uart_cpu_acpi_init_devinfo(di, class, &spcr->SerialPort);
175 if (spcr->Header.Revision >= 4 && spcr->PreciseBaudrate != 0) {
176 di->baudrate = spcr->PreciseBaudrate;
178 switch (spcr->BaudRate) {
197 (int)spcr->BaudRate);
207 if (spcr->Header.Revision >= 3)
208 di->bas.rclk = spcr->UartClkFreq;
218 if (spcr->PciVendorId != PCIV_INVALID &&
219 spcr->PciDeviceId != PCIV_INVALID) {
220 di->pci_info.vendor = spcr->PciVendorId;
221 di->pci_info.device = spcr->PciDeviceId;
225 error = bus_space_map(di->bas.bst, spcr->SerialPort.Address,
229 acpi_unmap_table(spcr);