[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [Xen-changelog] [xen-unstable] xen: arm32: Don't bother with the bootloader provided ARM-Linux machine type
# HG changeset patch # User Ian Campbell <ian.campbell@xxxxxxxxxx> # Date 1360935127 0 # Node ID dcb95a6f2b57f84922562cbdfe3c2e34c5faf46e # Parent 9dd3f5b570b9c1ca3f1c923ef85dc946386d2cbe xen: arm32: Don't bother with the bootloader provided ARM-Linux machine type Everything is DTB based and on 64-bit there is no such concept even in Linux. Signed-off-by: Ian Campbell <ian.campbell@xxxxxxxxxx> Acked-by: Stefano Stabellini <stefano.stabellini@xxxxxxxxxxxxx> Committed-by: Ian Campbell <ian.campbell@xxxxxxxxxx> --- diff -r 9dd3f5b570b9 -r dcb95a6f2b57 xen/arch/arm/arm32/head.S --- a/xen/arch/arm/arm32/head.S Fri Feb 15 13:32:06 2013 +0000 +++ b/xen/arch/arm/arm32/head.S Fri Feb 15 13:32:07 2013 +0000 @@ -72,7 +72,7 @@ past_zImage: cpsid aif /* Disable all interrupts */ /* Save the bootloader arguments in less-clobberable registers */ - mov r7, r1 /* r7 := ARM-linux machine type */ + /* No need to save r1 == Unused ARM-linux machine type */ mov r8, r2 /* r8 := ATAG base address */ /* Find out where we are */ @@ -334,9 +334,8 @@ launch: add sp, #STACK_SIZE /* (which grows down from the top). */ sub sp, #CPUINFO_sizeof /* Make room for CPU save record */ mov r0, r10 /* Marshal args: - phys_offset */ - mov r1, r7 /* - machine type */ - mov r2, r8 /* - ATAG address */ - movs r3, r12 /* - CPU ID */ + mov r1, r8 /* - ATAG address */ + movs r2, r12 /* - CPU ID */ beq start_xen /* and disappear into the land of C */ b start_secondary /* (to the appropriate entry point) */ diff -r 9dd3f5b570b9 -r dcb95a6f2b57 xen/arch/arm/setup.c --- a/xen/arch/arm/setup.c Fri Feb 15 13:32:06 2013 +0000 +++ b/xen/arch/arm/setup.c Fri Feb 15 13:32:07 2013 +0000 @@ -329,7 +329,6 @@ void __init setup_cache(void) /* C entry point for boot CPU */ void __init start_xen(unsigned long boot_phys_offset, - unsigned long arm_type, unsigned long atag_paddr, unsigned long cpuid) { diff -r 9dd3f5b570b9 -r dcb95a6f2b57 xen/arch/arm/smpboot.c --- a/xen/arch/arm/smpboot.c Fri Feb 15 13:32:06 2013 +0000 +++ b/xen/arch/arm/smpboot.c Fri Feb 15 13:32:07 2013 +0000 @@ -132,7 +132,6 @@ make_cpus_ready(unsigned int max_cpus, u /* Boot the current CPU */ void __cpuinit start_secondary(unsigned long boot_phys_offset, - unsigned long arm_type, unsigned long atag_paddr, unsigned long cpuid) { _______________________________________________ Xen-changelog mailing list Xen-changelog@xxxxxxxxxxxxx http://lists.xensource.com/xen-changelog
|
Lists.xenproject.org is hosted with RackSpace, monitoring our |