⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 acpi.c

📁 microwindows移植到S3C44B0的源码
💻 C
📖 第 1 页 / 共 2 页
字号:
			printk("ACPI 2.0 MADT: LOCAL APIC entry\n"); break;		      case ACPI20_ENTRY_IO_APIC:			printk("ACPI 2.0 MADT: IO APIC entry\n"); break;		      case ACPI20_ENTRY_NMI_SOURCE:			printk("ACPI 2.0 MADT: NMI SOURCE entry\n"); break;		      case ACPI20_ENTRY_LOCAL_APIC_NMI:			printk("ACPI 2.0 MADT: LOCAL APIC NMI entry\n"); break;		      case ACPI20_ENTRY_INT_SRC_OVERRIDE:			break;		      default:			printk("ACPI 2.0 MADT: unknown entry skip\n"); break;			break;		}		p += p[1];	}	p = (char *) (madt + 1);	end = p + (madt->header.length - sizeof(acpi_madt_t));	while (p < end) {		switch (*p) {		      case ACPI20_ENTRY_LOCAL_APIC:			if (lsapic) break;			printk("ACPI 2.0 MADT: LOCAL APIC entry\n");			/* parse local apic if there's no local Sapic */			break;		      case ACPI20_ENTRY_IO_APIC:			if (iosapic) break;			printk("ACPI 2.0 MADT: IO APIC entry\n");			/* parse ioapic if there's no ioSapic */			break;		      default:			break;		}		p += p[1];	}	p = (char *) (madt + 1);	end = p + (madt->header.length - sizeof(acpi_madt_t));	while (p < end) {		switch (*p) {		      case ACPI20_ENTRY_INT_SRC_OVERRIDE:			printk("ACPI 2.0 MADT: INT SOURCE Override\n");			acpi_legacy_irq(p);			break;		      default:			break;		}		p += p[1];	}	/* Make bootup pretty */	printk("      %d CPUs available, %d CPUs total\n",		available_cpus, total_cpus);}int __initacpi20_parse (acpi20_rsdp_t *rsdp20){# ifdef CONFIG_ACPI	acpi_xsdt_t *xsdt;	acpi_desc_table_hdr_t *hdrp;	acpi_madt_t *madt = NULL;	int tables, i;	if (strncmp(rsdp20->signature, ACPI_RSDP_SIG, ACPI_RSDP_SIG_LEN)) {		printk("ACPI 2.0 RSDP signature incorrect!\n");		return 0;	} else {		printk("ACPI 2.0 Root System Description Ptr at 0x%lx\n",			(unsigned long)rsdp20);	}	xsdt = __va(rsdp20->xsdt);	hdrp = &xsdt->header;	if (strncmp(hdrp->signature,		ACPI_XSDT_SIG, ACPI_XSDT_SIG_LEN)) {		printk("ACPI 2.0 XSDT signature incorrect. Trying RSDT\n");		/* RSDT parsing here */		return 0;	} else {		printk("ACPI 2.0 XSDT at 0x%lx (p=0x%lx)\n",		(unsigned long)xsdt, (unsigned long)rsdp20->xsdt);	}	printk("ACPI 2.0: %.6s %.8s %d.%d\n",		hdrp->oem_id,		hdrp->oem_table_id,		hdrp->oem_revision >> 16,		hdrp->oem_revision & 0xffff);	acpi_cf_init((void *)rsdp20);	tables =(hdrp->length -sizeof(acpi_desc_table_hdr_t))>>3;	for (i = 0; i < tables; i++) {		hdrp = (acpi_desc_table_hdr_t *) __va(readl_unaligned(&xsdt->entry_ptrs[i]));		printk("        :table %4.4s found\n", hdrp->signature);		/* Only interested int the MADT table for now ... */		if (strncmp(hdrp->signature,			ACPI_MADT_SIG, ACPI_MADT_SIG_LEN) != 0)			continue;		/* Save MADT pointer for later */		madt = (acpi_madt_t *) hdrp;		acpi20_parse_madt(madt);	}#ifdef CONFIG_SERIAL_ACPI	/*	 * Now we're interested in other tables.  We want the iosapics already	 * initialized, so we do it in a separate loop.	 */	for (i = 0; i < tables; i++) {		hdrp = (acpi_desc_table_hdr_t *) __va(readl_unaligned(&xsdt->entry_ptrs[i]));		/*		 * search for SPCR and DBGP table entries so we can enable		 * non-pci interrupts to IO-SAPICs.		 */		if (!strncmp(hdrp->signature, ACPI_SPCRT_SIG, ACPI_SPCRT_SIG_LEN) ||		    !strncmp(hdrp->signature, ACPI_DBGPT_SIG, ACPI_DBGPT_SIG_LEN))		{			acpi_ser_t *spcr = (void *)hdrp;			unsigned long global_int;			setup_serial_acpi(hdrp);			/*			 * ACPI is able to describe serial ports that live at non-standard			 * memory space addresses and use SAPIC interrupts.  If not also			 * PCI devices, there would be no interrupt vector information for			 * them.  This checks for and fixes that situation.			 */			if (spcr->length < sizeof(acpi_ser_t))				/* table is not long enough for full info, thus no int */				break;			/*			 * If the device is not in PCI space, but uses a SAPIC interrupt,			 * we need to program the SAPIC so that serial can autoprobe for			 * the IA64 interrupt vector later on.  If the device is in PCI			 * space, it should already be setup via the PCI vectors			 */			if (spcr->base_addr.space_id != ACPI_SERIAL_PCICONF_SPACE &&			    spcr->int_type == ACPI_SERIAL_INT_SAPIC)			{				u32 irq_base;				char *iosapic_address;				int vector;				/* We have a UART in memory space with a SAPIC interrupt */				global_int = (  (spcr->global_int[3] << 24)					      | (spcr->global_int[2] << 16)					      | (spcr->global_int[1] << 8)					      | spcr->global_int[0]);				if (!iosapic_register_irq)					continue;				/* which iosapic does this IRQ belong to? */				if (acpi20_which_iosapic(global_int, madt, &irq_base,							 &iosapic_address) == 0)				{					vector = iosapic_register_irq(global_int,					                              1, /* active high polarity */					                              1, /* edge triggered */					                              irq_base,					                              iosapic_address);				}			}		}	}#endif	acpi_cf_terminate();#  ifdef CONFIG_SMP	if (available_cpus == 0) {		printk("ACPI: Found 0 CPUS; assuming 1\n");		available_cpus = 1; /* We've got at least one of these, no? */	}	smp_boot_data.cpu_count = total_cpus;#  endif# endif /* CONFIG_ACPI */	return 1;}/* * ACPI 1.0b with 0.71 IA64 extensions functions; should be removed once all * platforms start supporting ACPI 2.0 *//* * Identify usable CPU's and remember them for SMP bringup later. */static void __initacpi_lsapic (char *p){	int add = 1;	acpi_entry_lsapic_t *lsapic = (acpi_entry_lsapic_t *) p;	if ((lsapic->flags & LSAPIC_PRESENT) == 0)		return;	printk("      CPU %d (%.04x:%.04x): ", total_cpus, lsapic->eid, lsapic->id);	if ((lsapic->flags & LSAPIC_ENABLED) == 0) {		printk("Disabled.\n");		add = 0;	} else if (lsapic->flags & LSAPIC_PERFORMANCE_RESTRICTED) {		printk("Performance Restricted; ignoring.\n");		add = 0;	}#ifdef CONFIG_SMP	smp_boot_data.cpu_phys_id[total_cpus] = -1;#endif	if (add) {		printk("Available.\n");		available_cpus++;#ifdef CONFIG_SMP		smp_boot_data.cpu_phys_id[total_cpus] = (lsapic->id << 8) | lsapic->eid;#endif /* CONFIG_SMP */	}	total_cpus++;}/* * Info on platform interrupt sources: NMI. PMI, INIT, etc. */static void __initacpi_platform (char *p){	acpi_entry_platform_src_t *plat = (acpi_entry_platform_src_t *) p;	printk("PLATFORM: IOSAPIC %x -> Vector %x on CPU %.04u:%.04u\n",	       plat->iosapic_vector, plat->global_vector, plat->eid, plat->id);}/* * Parse the ACPI Multiple SAPIC Table */static void __initacpi_parse_msapic (acpi_sapic_t *msapic){	acpi_entry_iosapic_t *iosapic;	char *p, *end;	/* Base address of IPI Message Block */	ipi_base_addr = (unsigned long) ioremap(msapic->interrupt_block, 0);	p = (char *) (msapic + 1);	end = p + (msapic->header.length - sizeof(acpi_sapic_t));	while (p < end) {		switch (*p) {		      case ACPI_ENTRY_LOCAL_SAPIC:			acpi_lsapic(p);			break;		      case ACPI_ENTRY_IO_SAPIC:			iosapic = (acpi_entry_iosapic_t *) p;			if (iosapic_init)				/*				 * The ACPI I/O SAPIC table doesn't have a PCAT_COMPAT				 * flag like the MADT table, but we can safely assume that				 * ACPI 1.0b systems have a dual-8259 setup.				 */				iosapic_init(iosapic->address, iosapic->irq_base, 1);			break;		      case ACPI_ENTRY_INT_SRC_OVERRIDE:			acpi_legacy_irq(p);			break;		      case ACPI_ENTRY_PLATFORM_INT_SOURCE:			acpi_platform(p);			break;		      default:			break;		}		/* Move to next table entry. */		p += p[1];	}	/* Make bootup pretty */	printk("      %d CPUs available, %d CPUs total\n", available_cpus, total_cpus);}int __initacpi_parse (acpi_rsdp_t *rsdp){# ifdef CONFIG_ACPI	acpi_rsdt_t *rsdt;	acpi_desc_table_hdr_t *hdrp;	long tables, i;	if (strncmp(rsdp->signature, ACPI_RSDP_SIG, ACPI_RSDP_SIG_LEN)) {		printk("Uh-oh, ACPI RSDP signature incorrect!\n");		return 0;	}	rsdt = __va(rsdp->rsdt);	if (strncmp(rsdt->header.signature, ACPI_RSDT_SIG, ACPI_RSDT_SIG_LEN)) {		printk("Uh-oh, ACPI RDST signature incorrect!\n");		return 0;	}	printk("ACPI: %.6s %.8s %d.%d\n", rsdt->header.oem_id, rsdt->header.oem_table_id,	       rsdt->header.oem_revision >> 16, rsdt->header.oem_revision & 0xffff);	acpi_cf_init(rsdp);	tables = (rsdt->header.length - sizeof(acpi_desc_table_hdr_t)) / 8;	for (i = 0; i < tables; i++) {		hdrp = (acpi_desc_table_hdr_t *) __va(rsdt->entry_ptrs[i]);		/* Only interested int the MSAPIC table for now ... */		if (strncmp(hdrp->signature, ACPI_SAPIC_SIG, ACPI_SAPIC_SIG_LEN) != 0)			continue;		acpi_parse_msapic((acpi_sapic_t *) hdrp);	}	acpi_cf_terminate();#  ifdef CONFIG_SMP	if (available_cpus == 0) {		printk("ACPI: Found 0 CPUS; assuming 1\n");		available_cpus = 1; /* We've got at least one of these, no? */	}	smp_boot_data.cpu_count = total_cpus;#  endif# endif /* CONFIG_ACPI */	return 1;}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -