Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 7375aba6 authored by Nicolas Pitre's avatar Nicolas Pitre Committed by Nicolas Pitre
Browse files

ARM: mach-pxa: convert boot_params to atag_offset

parent d7a8a58e
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -828,5 +828,5 @@ MACHINE_START(BALLOON3, "Balloon3")
	.handle_irq	= pxa27x_handle_irq,
	.timer		= &pxa_timer,
	.init_machine	= balloon3_init,
	.boot_params	= PLAT_PHYS_OFFSET + 0x100,
	.atag_offset	= 0x100,
MACHINE_END
+1 −1
Original line number Diff line number Diff line
@@ -148,7 +148,7 @@ static void __init capc7117_init(void)

MACHINE_START(CAPC7117,
	      "Embedian CAPC-7117 evaluation kit based on the MXM-8x10 CoM")
	.boot_params = 0xa0000100,
	.atag_offset = 0x100,
	.map_io = pxa3xx_map_io,
	.init_irq = pxa3xx_init_irq,
	.handle_irq = pxa3xx_handle_irq,
+1 −1
Original line number Diff line number Diff line
@@ -513,7 +513,7 @@ static void __init cmx2xx_map_io(void)
#endif

MACHINE_START(ARMCORE, "Compulab CM-X2XX")
	.boot_params	= 0xa0000100,
	.atag_offset	= 0x100,
	.map_io		= cmx2xx_map_io,
	.nr_irqs	= CMX2XX_NR_IRQS,
	.init_irq	= cmx2xx_init_irq,
+1 −1
Original line number Diff line number Diff line
@@ -852,7 +852,7 @@ static void __init cm_x300_fixup(struct machine_desc *mdesc, struct tag *tags,
}

MACHINE_START(CM_X300, "CM-X300 module")
	.boot_params	= 0xa0000100,
	.atag_offset	= 0x100,
	.map_io		= pxa3xx_map_io,
	.init_irq	= pxa3xx_init_irq,
	.handle_irq	= pxa3xx_handle_irq,
+2 −2
Original line number Diff line number Diff line
@@ -306,7 +306,7 @@ static void __init colibri_pxa270_income_init(void)
}

MACHINE_START(COLIBRI, "Toradex Colibri PXA270")
	.boot_params	= COLIBRI_SDRAM_BASE + 0x100,
	.atag_offset	= 0x100,
	.init_machine	= colibri_pxa270_init,
	.map_io		= pxa27x_map_io,
	.init_irq	= pxa27x_init_irq,
@@ -315,7 +315,7 @@ MACHINE_START(COLIBRI, "Toradex Colibri PXA270")
MACHINE_END

MACHINE_START(INCOME, "Income s.r.o. SH-Dmaster PXA270 SBC")
	.boot_params	= 0xa0000100,
	.atag_offset	= 0x100,
	.init_machine	= colibri_pxa270_income_init,
	.map_io		= pxa27x_map_io,
	.init_irq	= pxa27x_init_irq,
Loading