mirror of
https://git.FreeBSD.org/src.git
synced 2024-12-22 11:17:19 +00:00
Stop setting {KERN,}PHYSADDR on armv6, it's unneeded.
Sponsored by: ABT Systems Ltd
This commit is contained in:
parent
1fd7e8637c
commit
aeef645f92
Notes:
svn2git
2020-12-20 02:59:44 +00:00
svn path=/head/; revision=291102
@ -6,14 +6,6 @@ machine arm armv6
|
||||
makeoptions CONF_CFLAGS="-march=armv7a"
|
||||
makeoption ARM_LITTLE_ENDIAN
|
||||
|
||||
# Physical memory starts at 0x40200000. We assume images are loaded at
|
||||
# 0x40200000, e.g. from u-boot with 'fatload mmc 0 0x40200000 kernel'
|
||||
#
|
||||
#
|
||||
options PHYSADDR=0x40000000
|
||||
|
||||
makeoptions KERNPHYSADDR=0x40200000
|
||||
options KERNPHYSADDR=0x40200000
|
||||
makeoptions KERNVIRTADDR=0xc0200000
|
||||
options KERNVIRTADDR=0xc0200000
|
||||
|
||||
|
@ -6,14 +6,6 @@ machine arm armv6
|
||||
makeoptions CONF_CFLAGS="-march=armv7a"
|
||||
makeoption ARM_LITTLE_ENDIAN
|
||||
|
||||
# Physical memory starts at 0x40200000. We assume images are loaded at
|
||||
# 0x40200000, e.g. from u-boot with 'fatload mmc 0 0x40200000 kernel'
|
||||
#
|
||||
#
|
||||
options PHYSADDR=0x40000000
|
||||
|
||||
makeoptions KERNPHYSADDR=0x40200000
|
||||
options KERNPHYSADDR=0x40200000
|
||||
makeoptions KERNVIRTADDR=0xc0200000
|
||||
options KERNVIRTADDR=0xc0200000
|
||||
|
||||
|
@ -6,11 +6,6 @@ cpu CPU_CORTEXA
|
||||
machine arm armv6
|
||||
makeoptions CONF_CFLAGS="-march=armv7a"
|
||||
|
||||
options PHYSADDR=0x00000000
|
||||
|
||||
makeoptions KERNPHYSADDR=0x00f00000
|
||||
options KERNPHYSADDR=0x00f00000
|
||||
|
||||
makeoptions KERNVIRTADDR=0xc0f00000
|
||||
options KERNVIRTADDR=0xc0f00000
|
||||
|
||||
|
@ -6,9 +6,6 @@ cpu CPU_CORTEXA
|
||||
machine arm armv6
|
||||
makeoptions CONF_CFLAGS="-march=armv7a -DAL_HAVE_TYPES"
|
||||
|
||||
makeoptions KERNPHYSADDR=0x00200000
|
||||
options KERNPHYSADDR=0x00200000
|
||||
|
||||
makeoptions KERNVIRTADDR=0xa0200000
|
||||
options KERNVIRTADDR=0xa0200000
|
||||
|
||||
|
@ -2,8 +2,5 @@
|
||||
|
||||
options KERNVIRTADDR=0xc0100000
|
||||
makeoptions KERNVIRTADDR=0xc0100000
|
||||
options KERNPHYSADDR=0x00100000
|
||||
makeoptions KERNPHYSADDR=0x00100000
|
||||
options PHYSADDR=0x00000000
|
||||
options FREEBSD_BOOT_LOADER
|
||||
options LINUX_BOOT_ABI
|
||||
|
@ -28,9 +28,6 @@ makeoptions MODULES_OVERRIDE=""
|
||||
|
||||
options KERNVIRTADDR=0xc0100000
|
||||
makeoptions KERNVIRTADDR=0xc0100000
|
||||
options KERNPHYSADDR=0x00100000
|
||||
makeoptions KERNPHYSADDR=0x00100000
|
||||
options PHYSADDR=0x00000000
|
||||
|
||||
options HZ=100
|
||||
options SCHED_4BSD # 4BSD scheduler
|
||||
|
@ -7,9 +7,6 @@ options ARM_L2_PIPT
|
||||
|
||||
options KERNVIRTADDR=0xc0100000
|
||||
makeoptions KERNVIRTADDR=0xc0100000
|
||||
options KERNPHYSADDR=0x90100000
|
||||
makeoptions KERNPHYSADDR=0x90100000
|
||||
options PHYSADDR=0x90000000
|
||||
|
||||
device fdt_pinctrl
|
||||
|
||||
|
@ -7,9 +7,6 @@ options ARM_L2_PIPT
|
||||
|
||||
options KERNVIRTADDR=0xc0100000
|
||||
makeoptions KERNVIRTADDR=0xc0100000
|
||||
options KERNPHYSADDR=0x70100000
|
||||
makeoptions KERNPHYSADDR=0x70100000
|
||||
options PHYSADDR=0x70000000
|
||||
|
||||
device fdt_pinctrl
|
||||
|
||||
|
@ -7,9 +7,6 @@ options ARM_L2_PIPT
|
||||
|
||||
options KERNVIRTADDR = 0xc2000000
|
||||
makeoptions KERNVIRTADDR = 0xc2000000
|
||||
options KERNPHYSADDR = 0x12000000
|
||||
makeoptions KERNPHYSADDR = 0x12000000
|
||||
options PHYSADDR = 0x10000000
|
||||
|
||||
options IPI_IRQ_START=0
|
||||
options IPI_IRQ_END=15
|
||||
|
@ -6,11 +6,6 @@ cpu CPU_CORTEXA
|
||||
machine arm armv6
|
||||
makeoptions CONF_CFLAGS="-march=armv7a"
|
||||
|
||||
options PHYSADDR=0x80000000
|
||||
|
||||
makeoptions KERNPHYSADDR=0x80100000
|
||||
options KERNPHYSADDR=0x80100000
|
||||
|
||||
makeoptions KERNVIRTADDR=0xc0100000
|
||||
options KERNVIRTADDR=0xc0100000
|
||||
|
||||
|
@ -1,16 +1,6 @@
|
||||
# $FreeBSD$
|
||||
|
||||
# kernel gets loaded at 0x00200000 by the loader, but runs at virtual address
|
||||
# 0xc0200000. RAM starts at 0. We put the pagetable at a reasonable place
|
||||
# in memory, but may need to bounce it higher if there's a problem with this.
|
||||
# We could paper over this by loading the kernel at 0xc0000000 virtual, but
|
||||
# that leads to other complications, so we'll just reclaim the lower region of
|
||||
# ram after we're loaded. Put the page tables for startup at 1MB.
|
||||
makeoptions KERNPHYSADDR=0x00200000
|
||||
makeoptions KERNVIRTADDR=0xc0200000
|
||||
|
||||
options KERNPHYSADDR=0x00200000
|
||||
options KERNVIRTADDR=0xc0200000
|
||||
options PHYSADDR=0x00000000
|
||||
|
||||
options ARM_L2_PIPT
|
||||
|
@ -6,15 +6,6 @@ machine arm armv6
|
||||
makeoptions CONF_CFLAGS="-march=armv7a"
|
||||
makeoption ARM_LITTLE_ENDIAN
|
||||
|
||||
# Physical memory starts at 0x60400000. We assume images are loaded at
|
||||
# 0x60400000.
|
||||
#
|
||||
#
|
||||
options PHYSADDR=0x60000000
|
||||
|
||||
makeoptions KERNPHYSADDR=0x60400000
|
||||
options KERNPHYSADDR=0x60400000
|
||||
|
||||
makeoptions KERNVIRTADDR=0xc0400000
|
||||
options KERNVIRTADDR=0xc0400000
|
||||
|
||||
|
@ -6,11 +6,6 @@ cpu CPU_CORTEXA
|
||||
machine arm armv6
|
||||
makeoptions CONF_CFLAGS="-march=armv7a"
|
||||
|
||||
options PHYSADDR=0x40000000
|
||||
|
||||
makeoptions KERNPHYSADDR=0x40f00000
|
||||
options KERNPHYSADDR=0x40f00000
|
||||
|
||||
makeoptions KERNVIRTADDR=0xc0f00000
|
||||
options KERNVIRTADDR=0xc0f00000
|
||||
|
||||
|
@ -6,11 +6,6 @@ cpu CPU_CORTEXA
|
||||
machine arm armv6
|
||||
makeoptions CONF_CFLAGS="-march=armv7a"
|
||||
|
||||
options PHYSADDR=0x20000000
|
||||
|
||||
makeoptions KERNPHYSADDR=0x20f00000
|
||||
options KERNPHYSADDR=0x20f00000
|
||||
|
||||
makeoptions KERNVIRTADDR=0xc0f00000
|
||||
options KERNVIRTADDR=0xc0f00000
|
||||
|
||||
|
@ -4,13 +4,6 @@ files "../ti/am335x/files.am335x"
|
||||
include "../ti/std.ti"
|
||||
makeoption ARM_LITTLE_ENDIAN
|
||||
|
||||
# Physical memory starts at 0x80000000. We assume images are loaded at
|
||||
# 0x80200000, e.g. from u-boot with 'fatload mmc 0 0x80200000 kernel.bin'
|
||||
#
|
||||
#
|
||||
options PHYSADDR=0x80000000
|
||||
options KERNPHYSADDR=0x80200000
|
||||
makeoptions KERNPHYSADDR=0x80200000
|
||||
options KERNVIRTADDR=0xc0200000 # Used in ldscript.arm
|
||||
makeoptions KERNVIRTADDR=0xc0200000
|
||||
|
||||
|
@ -4,13 +4,6 @@ files "../ti/omap4/files.omap4"
|
||||
include "../ti/std.ti"
|
||||
makeoption ARM_LITTLE_ENDIAN
|
||||
|
||||
# Physical memory starts at 0x80000000. We assume images are loaded at
|
||||
# 0x80200000, e.g. from u-boot with 'fatload mmc 0 0x80200000 kernel.bin'
|
||||
#
|
||||
#
|
||||
options PHYSADDR=0x80000000
|
||||
options KERNPHYSADDR=0x80200000
|
||||
makeoptions KERNPHYSADDR=0x80200000
|
||||
options KERNVIRTADDR=0xc0200000 # Used in ldscript.arm
|
||||
makeoptions KERNVIRTADDR=0xc0200000
|
||||
|
||||
|
@ -9,13 +9,6 @@ makeoptions CONF_CFLAGS="-march=armv7a"
|
||||
|
||||
files "../xilinx/files.zynq7"
|
||||
|
||||
# Physical memory starts at 0x00000000. We assume images are loaded at
|
||||
# 0x00100000, e.g. from u-boot with 'fatload mmc 0 0x100000 kernel.bin'
|
||||
#
|
||||
#
|
||||
options PHYSADDR=0x00000000
|
||||
options KERNPHYSADDR=0x00100000
|
||||
makeoptions KERNPHYSADDR=0x00100000
|
||||
options KERNVIRTADDR=0xc0100000 # Used in ldscript.arm
|
||||
makeoptions KERNVIRTADDR=0xc0100000
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user