arch/powerpc/platforms/44x/ppc44x_simple.c

Source file repositories/reference/linux-study-clean/arch/powerpc/platforms/44x/ppc44x_simple.c

File Facts

System
Linux kernel
Corpus path
arch/powerpc/platforms/44x/ppc44x_simple.c
Extension
.c
Size
2137 bytes
Lines
86
Domain
Architecture Layer
Bucket
arch/powerpc
Inferred role
Architecture Layer: exported/initcall integration point
Status
integration implementation candidate

Why This File Exists

CPU and platform-specific kernel glue: boot entry, traps, syscall entry, interrupts, page tables, context switch, and low-level barriers.

Dependency Surface

Detected Declarations

Annotated Snippet

if (of_machine_is_compatible(board[i])) {
			pci_set_flags(PCI_REASSIGN_ALL_RSRC);
			return 1;
		}
	}

	return 0;
}

define_machine(ppc44x_simple) {
	.name = "PowerPC 44x Platform",
	.probe = ppc44x_probe,
	.progress = udbg_progress,
	.init_IRQ = uic_init_tree,
	.get_irq = uic_get_irq,
	.restart = ppc4xx_reset_system,
};

Annotation

Implementation Notes