diff options
author | Patrick Wildt <patrick@cvs.openbsd.org> | 2018-05-16 13:42:36 +0000 |
---|---|---|
committer | Patrick Wildt <patrick@cvs.openbsd.org> | 2018-05-16 13:42:36 +0000 |
commit | ae19f39f805e9c78d05c831a059e4821dd4e1ba4 (patch) | |
tree | fc47f5fde64af9950226f0c2847bb999cfe6f5b9 /sys/arch | |
parent | 474dcc859acce6fa11c89c124986ab299f522c3b (diff) |
Move the code that decodes the i.MX6 PLLs and PFDs into imxanatop(4)
instead of having imxccm(4) map more than it should and access the
memory space that imxanatop(4) should be responsible for.
ok kettenis@
Diffstat (limited to 'sys/arch')
-rw-r--r-- | sys/arch/arm64/conf/GENERIC | 4 | ||||
-rw-r--r-- | sys/arch/arm64/conf/RAMDISK | 4 | ||||
-rw-r--r-- | sys/arch/armv7/conf/GENERIC | 4 | ||||
-rw-r--r-- | sys/arch/armv7/conf/RAMDISK | 4 |
4 files changed, 8 insertions, 8 deletions
diff --git a/sys/arch/arm64/conf/GENERIC b/sys/arch/arm64/conf/GENERIC index 955099c9220..8c8728199ca 100644 --- a/sys/arch/arm64/conf/GENERIC +++ b/sys/arch/arm64/conf/GENERIC @@ -1,4 +1,4 @@ -# $OpenBSD: GENERIC,v 1.70 2018/05/16 13:21:50 patrick Exp $ +# $OpenBSD: GENERIC,v 1.71 2018/05/16 13:42:35 patrick Exp $ # # GENERIC machine description file # @@ -89,7 +89,7 @@ wsdisplay* at simplefb? # iMX imxccm* at fdt? early 1 imxiomuxc* at fdt? early 1 -imxanatop* at fdt? +imxanatop* at fdt? early 1 imxgpc* at fdt? imxgpio* at fdt? fec* at fdt? diff --git a/sys/arch/arm64/conf/RAMDISK b/sys/arch/arm64/conf/RAMDISK index 6a5713e7a1e..f71c48183a0 100644 --- a/sys/arch/arm64/conf/RAMDISK +++ b/sys/arch/arm64/conf/RAMDISK @@ -1,4 +1,4 @@ -# $OpenBSD: RAMDISK,v 1.59 2018/05/16 13:21:50 patrick Exp $ +# $OpenBSD: RAMDISK,v 1.60 2018/05/16 13:42:35 patrick Exp $ # # GENERIC machine description file # @@ -95,7 +95,7 @@ wsdisplay* at simplefb? # iMX imxccm* at fdt? early 1 imxiomuxc* at fdt? early 1 -imxanatop* at fdt? +imxanatop* at fdt? early 1 imxgpc* at fdt? imxgpio* at fdt? fec* at fdt? diff --git a/sys/arch/armv7/conf/GENERIC b/sys/arch/armv7/conf/GENERIC index 052f73bf71f..8d2ff0ae4dd 100644 --- a/sys/arch/armv7/conf/GENERIC +++ b/sys/arch/armv7/conf/GENERIC @@ -1,4 +1,4 @@ -# $OpenBSD: GENERIC,v 1.106 2018/01/06 13:05:20 kettenis Exp $ +# $OpenBSD: GENERIC,v 1.107 2018/05/16 13:42:35 patrick Exp $ # # For further information on compiling OpenBSD kernels, see the config(8) # man page. @@ -41,7 +41,7 @@ armliicc* at cortex? # iMX imxccm* at fdt? early 1 # clock control module imxiomuxc* at fdt? early 1 # iomux controller -imxanatop* at fdt? # anatop controller +imxanatop* at fdt? early 1 # anatop controller imxgpc* at fdt? # power controller imxdog* at fdt? # watchdog timer imxtemp* at fdt? # temperature monitor diff --git a/sys/arch/armv7/conf/RAMDISK b/sys/arch/armv7/conf/RAMDISK index c1bb9d21fc8..ad95d5eaa23 100644 --- a/sys/arch/armv7/conf/RAMDISK +++ b/sys/arch/armv7/conf/RAMDISK @@ -1,4 +1,4 @@ -# $OpenBSD: RAMDISK,v 1.96 2018/04/01 19:28:32 patrick Exp $ +# $OpenBSD: RAMDISK,v 1.97 2018/05/16 13:42:35 patrick Exp $ machine armv7 arm @@ -42,7 +42,7 @@ armliicc* at cortex? # iMX imxccm* at fdt? early 1 # clock control module imxiomuxc* at fdt? early 1 # iomux controller -imxanatop* at fdt? # anatop controller +imxanatop* at fdt? early 1 # anatop controller imxgpc* at fdt? # power controller imxdog* at fdt? # watchdog timer imxgpio* at fdt? # user-visible GPIO pins? |