Merge branch 'linus' into irq/core
Bring in upstream updates for patches which depend on them
This commit is contained in:
commit
e50226b4b8
|
@ -43,7 +43,7 @@ o udev 081 # udevd --version
|
||||||
o grub 0.93 # grub --version || grub-install --version
|
o grub 0.93 # grub --version || grub-install --version
|
||||||
o mcelog 0.6 # mcelog --version
|
o mcelog 0.6 # mcelog --version
|
||||||
o iptables 1.4.2 # iptables -V
|
o iptables 1.4.2 # iptables -V
|
||||||
o openssl & libcrypto 1.0.1k # openssl version
|
o openssl & libcrypto 1.0.0 # openssl version
|
||||||
|
|
||||||
|
|
||||||
Kernel compilation
|
Kernel compilation
|
||||||
|
|
|
@ -41,9 +41,13 @@ useless and be disabled, returning errors. So it is important to monitor
|
||||||
the amount of free space and expand the <COW device> before it fills up.
|
the amount of free space and expand the <COW device> before it fills up.
|
||||||
|
|
||||||
<persistent?> is P (Persistent) or N (Not persistent - will not survive
|
<persistent?> is P (Persistent) or N (Not persistent - will not survive
|
||||||
after reboot).
|
after reboot). O (Overflow) can be added as a persistent store option
|
||||||
The difference is that for transient snapshots less metadata must be
|
to allow userspace to advertise its support for seeing "Overflow" in the
|
||||||
saved on disk - they can be kept in memory by the kernel.
|
snapshot status. So supported store types are "P", "PO" and "N".
|
||||||
|
|
||||||
|
The difference between persistent and transient is with transient
|
||||||
|
snapshots less metadata must be saved on disk - they can be kept in
|
||||||
|
memory by the kernel.
|
||||||
|
|
||||||
|
|
||||||
* snapshot-merge <origin> <COW device> <persistent> <chunksize>
|
* snapshot-merge <origin> <COW device> <persistent> <chunksize>
|
||||||
|
|
|
@ -25,7 +25,7 @@ Example:
|
||||||
/* Cypress Gen3 touchpad */
|
/* Cypress Gen3 touchpad */
|
||||||
touchpad@67 {
|
touchpad@67 {
|
||||||
compatible = "cypress,cyapa";
|
compatible = "cypress,cyapa";
|
||||||
reg = <0x24>;
|
reg = <0x67>;
|
||||||
interrupt-parent = <&gpio>;
|
interrupt-parent = <&gpio>;
|
||||||
interrupts = <2 IRQ_TYPE_EDGE_FALLING>; /* GPIO 2 */
|
interrupts = <2 IRQ_TYPE_EDGE_FALLING>; /* GPIO 2 */
|
||||||
wakeup-source;
|
wakeup-source;
|
||||||
|
|
|
@ -4,8 +4,8 @@ The MISC interrupt controller is a secondary controller for lower priority
|
||||||
interrupt.
|
interrupt.
|
||||||
|
|
||||||
Required Properties:
|
Required Properties:
|
||||||
- compatible: has to be "qca,<soctype>-cpu-intc", "qca,ar7100-misc-intc"
|
- compatible: has to be "qca,<soctype>-cpu-intc", "qca,ar7100-misc-intc" or
|
||||||
as fallback
|
"qca,<soctype>-cpu-intc", "qca,ar7240-misc-intc"
|
||||||
- reg: Base address and size of the controllers memory area
|
- reg: Base address and size of the controllers memory area
|
||||||
- interrupt-parent: phandle of the parent interrupt controller.
|
- interrupt-parent: phandle of the parent interrupt controller.
|
||||||
- interrupts: Interrupt specifier for the controllers interrupt.
|
- interrupts: Interrupt specifier for the controllers interrupt.
|
||||||
|
@ -13,6 +13,9 @@ Required Properties:
|
||||||
- #interrupt-cells : Specifies the number of cells needed to encode interrupt
|
- #interrupt-cells : Specifies the number of cells needed to encode interrupt
|
||||||
source, should be 1
|
source, should be 1
|
||||||
|
|
||||||
|
Compatible fallback depends on the SoC. Use ar7100 for ar71xx and ar913x,
|
||||||
|
use ar7240 for all other SoCs.
|
||||||
|
|
||||||
Please refer to interrupts.txt in this directory for details of the common
|
Please refer to interrupts.txt in this directory for details of the common
|
||||||
Interrupt Controllers bindings used by client devices.
|
Interrupt Controllers bindings used by client devices.
|
||||||
|
|
||||||
|
@ -28,3 +31,16 @@ Example:
|
||||||
interrupt-controller;
|
interrupt-controller;
|
||||||
#interrupt-cells = <1>;
|
#interrupt-cells = <1>;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
Another example:
|
||||||
|
|
||||||
|
interrupt-controller@18060010 {
|
||||||
|
compatible = "qca,ar9331-misc-intc", qca,ar7240-misc-intc";
|
||||||
|
reg = <0x18060010 0x4>;
|
||||||
|
|
||||||
|
interrupt-parent = <&cpuintc>;
|
||||||
|
interrupts = <6>;
|
||||||
|
|
||||||
|
interrupt-controller;
|
||||||
|
#interrupt-cells = <1>;
|
||||||
|
};
|
||||||
|
|
|
@ -51,7 +51,7 @@ Optional properties, deprecated for soctype-specific bindings:
|
||||||
- renesas,tx-fifo-size : Overrides the default tx fifo size given in words
|
- renesas,tx-fifo-size : Overrides the default tx fifo size given in words
|
||||||
(default is 64)
|
(default is 64)
|
||||||
- renesas,rx-fifo-size : Overrides the default rx fifo size given in words
|
- renesas,rx-fifo-size : Overrides the default rx fifo size given in words
|
||||||
(default is 64, or 256 on R-Car Gen2)
|
(default is 64)
|
||||||
|
|
||||||
Pinctrl properties might be needed, too. See
|
Pinctrl properties might be needed, too. See
|
||||||
Documentation/devicetree/bindings/pinctrl/renesas,*.
|
Documentation/devicetree/bindings/pinctrl/renesas,*.
|
||||||
|
|
|
@ -5,6 +5,7 @@ Required properties:
|
||||||
- "renesas,usbhs-r8a7790"
|
- "renesas,usbhs-r8a7790"
|
||||||
- "renesas,usbhs-r8a7791"
|
- "renesas,usbhs-r8a7791"
|
||||||
- "renesas,usbhs-r8a7794"
|
- "renesas,usbhs-r8a7794"
|
||||||
|
- "renesas,usbhs-r8a7795"
|
||||||
- reg: Base address and length of the register for the USBHS
|
- reg: Base address and length of the register for the USBHS
|
||||||
- interrupts: Interrupt specifier for the USBHS
|
- interrupts: Interrupt specifier for the USBHS
|
||||||
- clocks: A list of phandle + clock specifier pairs
|
- clocks: A list of phandle + clock specifier pairs
|
||||||
|
|
|
@ -361,7 +361,7 @@ For win8 devices with both T and C coordinates, the position mapping is
|
||||||
ABS_MT_POSITION_X := T_X
|
ABS_MT_POSITION_X := T_X
|
||||||
ABS_MT_POSITION_Y := T_Y
|
ABS_MT_POSITION_Y := T_Y
|
||||||
ABS_MT_TOOL_X := C_X
|
ABS_MT_TOOL_X := C_X
|
||||||
ABS_MT_TOOL_X := C_Y
|
ABS_MT_TOOL_Y := C_Y
|
||||||
|
|
||||||
Unfortunately, there is not enough information to specify both the touching
|
Unfortunately, there is not enough information to specify both the touching
|
||||||
ellipse and the tool ellipse, so one has to resort to approximations. One
|
ellipse and the tool ellipse, so one has to resort to approximations. One
|
||||||
|
|
|
@ -979,20 +979,45 @@ every time right after the runtime_resume() callback has returned
|
||||||
(alternatively, the runtime_suspend() callback will have to check if the
|
(alternatively, the runtime_suspend() callback will have to check if the
|
||||||
device should really be suspended and return -EAGAIN if that is not the case).
|
device should really be suspended and return -EAGAIN if that is not the case).
|
||||||
|
|
||||||
The runtime PM of PCI devices is disabled by default. It is also blocked by
|
The runtime PM of PCI devices is enabled by default by the PCI core. PCI
|
||||||
pci_pm_init() that runs the pm_runtime_forbid() helper function. If a PCI
|
device drivers do not need to enable it and should not attempt to do so.
|
||||||
driver implements the runtime PM callbacks and intends to use the runtime PM
|
However, it is blocked by pci_pm_init() that runs the pm_runtime_forbid()
|
||||||
framework provided by the PM core and the PCI subsystem, it should enable this
|
helper function. In addition to that, the runtime PM usage counter of
|
||||||
feature by executing the pm_runtime_enable() helper function. However, the
|
each PCI device is incremented by local_pci_probe() before executing the
|
||||||
driver should not call the pm_runtime_allow() helper function unblocking
|
probe callback provided by the device's driver.
|
||||||
the runtime PM of the device. Instead, it should allow user space or some
|
|
||||||
platform-specific code to do that (user space can do it via sysfs), although
|
If a PCI driver implements the runtime PM callbacks and intends to use the
|
||||||
once it has called pm_runtime_enable(), it must be prepared to handle the
|
runtime PM framework provided by the PM core and the PCI subsystem, it needs
|
||||||
|
to decrement the device's runtime PM usage counter in its probe callback
|
||||||
|
function. If it doesn't do that, the counter will always be different from
|
||||||
|
zero for the device and it will never be runtime-suspended. The simplest
|
||||||
|
way to do that is by calling pm_runtime_put_noidle(), but if the driver
|
||||||
|
wants to schedule an autosuspend right away, for example, it may call
|
||||||
|
pm_runtime_put_autosuspend() instead for this purpose. Generally, it
|
||||||
|
just needs to call a function that decrements the devices usage counter
|
||||||
|
from its probe routine to make runtime PM work for the device.
|
||||||
|
|
||||||
|
It is important to remember that the driver's runtime_suspend() callback
|
||||||
|
may be executed right after the usage counter has been decremented, because
|
||||||
|
user space may already have cuased the pm_runtime_allow() helper function
|
||||||
|
unblocking the runtime PM of the device to run via sysfs, so the driver must
|
||||||
|
be prepared to cope with that.
|
||||||
|
|
||||||
|
The driver itself should not call pm_runtime_allow(), though. Instead, it
|
||||||
|
should let user space or some platform-specific code do that (user space can
|
||||||
|
do it via sysfs as stated above), but it must be prepared to handle the
|
||||||
runtime PM of the device correctly as soon as pm_runtime_allow() is called
|
runtime PM of the device correctly as soon as pm_runtime_allow() is called
|
||||||
(which may happen at any time). [It also is possible that user space causes
|
(which may happen at any time, even before the driver is loaded).
|
||||||
pm_runtime_allow() to be called via sysfs before the driver is loaded, so in
|
|
||||||
fact the driver has to be prepared to handle the runtime PM of the device as
|
When the driver's remove callback runs, it has to balance the decrementation
|
||||||
soon as it calls pm_runtime_enable().]
|
of the device's runtime PM usage counter at the probe time. For this reason,
|
||||||
|
if it has decremented the counter in its probe callback, it must run
|
||||||
|
pm_runtime_get_noresume() in its remove callback. [Since the core carries
|
||||||
|
out a runtime resume of the device and bumps up the device's usage counter
|
||||||
|
before running the driver's remove callback, the runtime PM of the device
|
||||||
|
is effectively disabled for the duration of the remove execution and all
|
||||||
|
runtime PM helper functions incrementing the device's usage counter are
|
||||||
|
then effectively equivalent to pm_runtime_get_noresume().]
|
||||||
|
|
||||||
The runtime PM framework works by processing requests to suspend or resume
|
The runtime PM framework works by processing requests to suspend or resume
|
||||||
devices, or to check if they are idle (in which cases it is reasonable to
|
devices, or to check if they are idle (in which cases it is reasonable to
|
||||||
|
|
|
@ -18,6 +18,7 @@
|
||||||
* Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
* Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
||||||
*/
|
*/
|
||||||
#define _GNU_SOURCE
|
#define _GNU_SOURCE
|
||||||
|
#define __SANE_USERSPACE_TYPES__ /* For PPC64, to get LL64 types */
|
||||||
#include <errno.h>
|
#include <errno.h>
|
||||||
#include <fcntl.h>
|
#include <fcntl.h>
|
||||||
#include <inttypes.h>
|
#include <inttypes.h>
|
||||||
|
|
18
MAINTAINERS
18
MAINTAINERS
|
@ -4003,7 +4003,7 @@ S: Maintained
|
||||||
F: sound/usb/misc/ua101.c
|
F: sound/usb/misc/ua101.c
|
||||||
|
|
||||||
EXTENSIBLE FIRMWARE INTERFACE (EFI)
|
EXTENSIBLE FIRMWARE INTERFACE (EFI)
|
||||||
M: Matt Fleming <matt.fleming@intel.com>
|
M: Matt Fleming <matt@codeblueprint.co.uk>
|
||||||
L: linux-efi@vger.kernel.org
|
L: linux-efi@vger.kernel.org
|
||||||
T: git git://git.kernel.org/pub/scm/linux/kernel/git/mfleming/efi.git
|
T: git git://git.kernel.org/pub/scm/linux/kernel/git/mfleming/efi.git
|
||||||
S: Maintained
|
S: Maintained
|
||||||
|
@ -4018,7 +4018,7 @@ F: include/linux/efi*.h
|
||||||
EFI VARIABLE FILESYSTEM
|
EFI VARIABLE FILESYSTEM
|
||||||
M: Matthew Garrett <matthew.garrett@nebula.com>
|
M: Matthew Garrett <matthew.garrett@nebula.com>
|
||||||
M: Jeremy Kerr <jk@ozlabs.org>
|
M: Jeremy Kerr <jk@ozlabs.org>
|
||||||
M: Matt Fleming <matt.fleming@intel.com>
|
M: Matt Fleming <matt@codeblueprint.co.uk>
|
||||||
T: git git://git.kernel.org/pub/scm/linux/kernel/git/mfleming/efi.git
|
T: git git://git.kernel.org/pub/scm/linux/kernel/git/mfleming/efi.git
|
||||||
L: linux-efi@vger.kernel.org
|
L: linux-efi@vger.kernel.org
|
||||||
S: Maintained
|
S: Maintained
|
||||||
|
@ -5957,7 +5957,7 @@ F: virt/kvm/
|
||||||
KERNEL VIRTUAL MACHINE (KVM) FOR AMD-V
|
KERNEL VIRTUAL MACHINE (KVM) FOR AMD-V
|
||||||
M: Joerg Roedel <joro@8bytes.org>
|
M: Joerg Roedel <joro@8bytes.org>
|
||||||
L: kvm@vger.kernel.org
|
L: kvm@vger.kernel.org
|
||||||
W: http://kvm.qumranet.com
|
W: http://www.linux-kvm.org/
|
||||||
S: Maintained
|
S: Maintained
|
||||||
F: arch/x86/include/asm/svm.h
|
F: arch/x86/include/asm/svm.h
|
||||||
F: arch/x86/kvm/svm.c
|
F: arch/x86/kvm/svm.c
|
||||||
|
@ -5965,7 +5965,7 @@ F: arch/x86/kvm/svm.c
|
||||||
KERNEL VIRTUAL MACHINE (KVM) FOR POWERPC
|
KERNEL VIRTUAL MACHINE (KVM) FOR POWERPC
|
||||||
M: Alexander Graf <agraf@suse.com>
|
M: Alexander Graf <agraf@suse.com>
|
||||||
L: kvm-ppc@vger.kernel.org
|
L: kvm-ppc@vger.kernel.org
|
||||||
W: http://kvm.qumranet.com
|
W: http://www.linux-kvm.org/
|
||||||
T: git git://github.com/agraf/linux-2.6.git
|
T: git git://github.com/agraf/linux-2.6.git
|
||||||
S: Supported
|
S: Supported
|
||||||
F: arch/powerpc/include/asm/kvm*
|
F: arch/powerpc/include/asm/kvm*
|
||||||
|
@ -9914,7 +9914,6 @@ S: Maintained
|
||||||
F: drivers/staging/lustre
|
F: drivers/staging/lustre
|
||||||
|
|
||||||
STAGING - NVIDIA COMPLIANT EMBEDDED CONTROLLER INTERFACE (nvec)
|
STAGING - NVIDIA COMPLIANT EMBEDDED CONTROLLER INTERFACE (nvec)
|
||||||
M: Julian Andres Klode <jak@jak-linux.org>
|
|
||||||
M: Marc Dietrich <marvin24@gmx.de>
|
M: Marc Dietrich <marvin24@gmx.de>
|
||||||
L: ac100@lists.launchpad.net (moderated for non-subscribers)
|
L: ac100@lists.launchpad.net (moderated for non-subscribers)
|
||||||
L: linux-tegra@vger.kernel.org
|
L: linux-tegra@vger.kernel.org
|
||||||
|
@ -11378,15 +11377,6 @@ W: http://oops.ghostprotocols.net:81/blog
|
||||||
S: Maintained
|
S: Maintained
|
||||||
F: drivers/net/wireless/wl3501*
|
F: drivers/net/wireless/wl3501*
|
||||||
|
|
||||||
WM97XX TOUCHSCREEN DRIVERS
|
|
||||||
M: Mark Brown <broonie@kernel.org>
|
|
||||||
M: Liam Girdwood <lrg@slimlogic.co.uk>
|
|
||||||
L: linux-input@vger.kernel.org
|
|
||||||
W: https://github.com/CirrusLogic/linux-drivers/wiki
|
|
||||||
S: Supported
|
|
||||||
F: drivers/input/touchscreen/*wm97*
|
|
||||||
F: include/linux/wm97xx.h
|
|
||||||
|
|
||||||
WOLFSON MICROELECTRONICS DRIVERS
|
WOLFSON MICROELECTRONICS DRIVERS
|
||||||
L: patches@opensource.wolfsonmicro.com
|
L: patches@opensource.wolfsonmicro.com
|
||||||
T: git https://github.com/CirrusLogic/linux-drivers.git
|
T: git https://github.com/CirrusLogic/linux-drivers.git
|
||||||
|
|
4
Makefile
4
Makefile
|
@ -1,8 +1,8 @@
|
||||||
VERSION = 4
|
VERSION = 4
|
||||||
PATCHLEVEL = 3
|
PATCHLEVEL = 3
|
||||||
SUBLEVEL = 0
|
SUBLEVEL = 0
|
||||||
EXTRAVERSION = -rc3
|
EXTRAVERSION = -rc5
|
||||||
NAME = Hurr durr I'ma sheep
|
NAME = Blurry Fish Butt
|
||||||
|
|
||||||
# *DOCUMENTATION*
|
# *DOCUMENTATION*
|
||||||
# To see a list of typical targets execute "make help"
|
# To see a list of typical targets execute "make help"
|
||||||
|
|
|
@ -52,4 +52,6 @@ static inline unsigned long find_zero(unsigned long bits)
|
||||||
#endif
|
#endif
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#define zero_bytemask(mask) ((2ul << (find_zero(mask) * 8)) - 1)
|
||||||
|
|
||||||
#endif /* _ASM_WORD_AT_A_TIME_H */
|
#endif /* _ASM_WORD_AT_A_TIME_H */
|
||||||
|
|
|
@ -48,4 +48,5 @@ generic-y += types.h
|
||||||
generic-y += ucontext.h
|
generic-y += ucontext.h
|
||||||
generic-y += user.h
|
generic-y += user.h
|
||||||
generic-y += vga.h
|
generic-y += vga.h
|
||||||
|
generic-y += word-at-a-time.h
|
||||||
generic-y += xor.h
|
generic-y += xor.h
|
||||||
|
|
|
@ -578,7 +578,7 @@ dtb-$(CONFIG_MACH_SUN4I) += \
|
||||||
sun4i-a10-hackberry.dtb \
|
sun4i-a10-hackberry.dtb \
|
||||||
sun4i-a10-hyundai-a7hd.dtb \
|
sun4i-a10-hyundai-a7hd.dtb \
|
||||||
sun4i-a10-inet97fv2.dtb \
|
sun4i-a10-inet97fv2.dtb \
|
||||||
sun4i-a10-itead-iteaduino-plus.dts \
|
sun4i-a10-itead-iteaduino-plus.dtb \
|
||||||
sun4i-a10-jesurun-q5.dtb \
|
sun4i-a10-jesurun-q5.dtb \
|
||||||
sun4i-a10-marsboard.dtb \
|
sun4i-a10-marsboard.dtb \
|
||||||
sun4i-a10-mini-xplus.dtb \
|
sun4i-a10-mini-xplus.dtb \
|
||||||
|
|
|
@ -98,6 +98,7 @@
|
||||||
opp-hz = /bits/ 64 <800000000>;
|
opp-hz = /bits/ 64 <800000000>;
|
||||||
opp-microvolt = <1000000>;
|
opp-microvolt = <1000000>;
|
||||||
clock-latency-ns = <200000>;
|
clock-latency-ns = <200000>;
|
||||||
|
opp-suspend;
|
||||||
};
|
};
|
||||||
opp07 {
|
opp07 {
|
||||||
opp-hz = /bits/ 64 <900000000>;
|
opp-hz = /bits/ 64 <900000000>;
|
||||||
|
|
|
@ -197,6 +197,7 @@
|
||||||
regulator-name = "P1.8V_LDO_OUT10";
|
regulator-name = "P1.8V_LDO_OUT10";
|
||||||
regulator-min-microvolt = <1800000>;
|
regulator-min-microvolt = <1800000>;
|
||||||
regulator-max-microvolt = <1800000>;
|
regulator-max-microvolt = <1800000>;
|
||||||
|
regulator-always-on;
|
||||||
};
|
};
|
||||||
|
|
||||||
ldo11_reg: LDO11 {
|
ldo11_reg: LDO11 {
|
||||||
|
|
|
@ -1117,7 +1117,7 @@
|
||||||
interrupt-parent = <&combiner>;
|
interrupt-parent = <&combiner>;
|
||||||
interrupts = <3 0>;
|
interrupts = <3 0>;
|
||||||
clock-names = "sysmmu", "master";
|
clock-names = "sysmmu", "master";
|
||||||
clocks = <&clock CLK_SMMU_FIMD1M0>, <&clock CLK_FIMD1>;
|
clocks = <&clock CLK_SMMU_FIMD1M1>, <&clock CLK_FIMD1>;
|
||||||
power-domains = <&disp_pd>;
|
power-domains = <&disp_pd>;
|
||||||
#iommu-cells = <0>;
|
#iommu-cells = <0>;
|
||||||
};
|
};
|
||||||
|
|
|
@ -472,7 +472,6 @@
|
||||||
*/
|
*/
|
||||||
pinctrl-0 = <&pwm0_out &pwm1_out &pwm2_out &pwm3_out>;
|
pinctrl-0 = <&pwm0_out &pwm1_out &pwm2_out &pwm3_out>;
|
||||||
pinctrl-names = "default";
|
pinctrl-names = "default";
|
||||||
samsung,pwm-outputs = <0>;
|
|
||||||
status = "okay";
|
status = "okay";
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
|
@ -36,7 +36,7 @@
|
||||||
pinctrl-0 = <&pinctrl_pmic>;
|
pinctrl-0 = <&pinctrl_pmic>;
|
||||||
reg = <0x08>;
|
reg = <0x08>;
|
||||||
interrupt-parent = <&gpio5>;
|
interrupt-parent = <&gpio5>;
|
||||||
interrupts = <23 0x8>;
|
interrupts = <23 IRQ_TYPE_LEVEL_HIGH>;
|
||||||
regulators {
|
regulators {
|
||||||
sw1_reg: sw1a {
|
sw1_reg: sw1a {
|
||||||
regulator-name = "SW1";
|
regulator-name = "SW1";
|
||||||
|
|
|
@ -15,6 +15,7 @@
|
||||||
#include <dt-bindings/clock/imx5-clock.h>
|
#include <dt-bindings/clock/imx5-clock.h>
|
||||||
#include <dt-bindings/gpio/gpio.h>
|
#include <dt-bindings/gpio/gpio.h>
|
||||||
#include <dt-bindings/input/input.h>
|
#include <dt-bindings/input/input.h>
|
||||||
|
#include <dt-bindings/interrupt-controller/irq.h>
|
||||||
|
|
||||||
/ {
|
/ {
|
||||||
aliases {
|
aliases {
|
||||||
|
|
|
@ -35,7 +35,6 @@
|
||||||
compatible = "regulator-fixed";
|
compatible = "regulator-fixed";
|
||||||
reg = <1>;
|
reg = <1>;
|
||||||
pinctrl-names = "default";
|
pinctrl-names = "default";
|
||||||
pinctrl-0 = <&pinctrl_usbh1>;
|
|
||||||
regulator-name = "usbh1_vbus";
|
regulator-name = "usbh1_vbus";
|
||||||
regulator-min-microvolt = <5000000>;
|
regulator-min-microvolt = <5000000>;
|
||||||
regulator-max-microvolt = <5000000>;
|
regulator-max-microvolt = <5000000>;
|
||||||
|
@ -47,7 +46,6 @@
|
||||||
compatible = "regulator-fixed";
|
compatible = "regulator-fixed";
|
||||||
reg = <2>;
|
reg = <2>;
|
||||||
pinctrl-names = "default";
|
pinctrl-names = "default";
|
||||||
pinctrl-0 = <&pinctrl_usbotg>;
|
|
||||||
regulator-name = "usb_otg_vbus";
|
regulator-name = "usb_otg_vbus";
|
||||||
regulator-min-microvolt = <5000000>;
|
regulator-min-microvolt = <5000000>;
|
||||||
regulator-max-microvolt = <5000000>;
|
regulator-max-microvolt = <5000000>;
|
||||||
|
|
|
@ -1627,6 +1627,7 @@
|
||||||
"mix.0", "mix.1",
|
"mix.0", "mix.1",
|
||||||
"dvc.0", "dvc.1",
|
"dvc.0", "dvc.1",
|
||||||
"clk_a", "clk_b", "clk_c", "clk_i";
|
"clk_a", "clk_b", "clk_c", "clk_i";
|
||||||
|
power-domains = <&cpg_clocks>;
|
||||||
|
|
||||||
status = "disabled";
|
status = "disabled";
|
||||||
|
|
||||||
|
|
|
@ -1677,6 +1677,7 @@
|
||||||
"mix.0", "mix.1",
|
"mix.0", "mix.1",
|
||||||
"dvc.0", "dvc.1",
|
"dvc.0", "dvc.1",
|
||||||
"clk_a", "clk_b", "clk_c", "clk_i";
|
"clk_a", "clk_b", "clk_c", "clk_i";
|
||||||
|
power-domains = <&cpg_clocks>;
|
||||||
|
|
||||||
status = "disabled";
|
status = "disabled";
|
||||||
|
|
||||||
|
|
|
@ -107,7 +107,7 @@
|
||||||
720000 1200000
|
720000 1200000
|
||||||
528000 1100000
|
528000 1100000
|
||||||
312000 1000000
|
312000 1000000
|
||||||
144000 900000
|
144000 1000000
|
||||||
>;
|
>;
|
||||||
#cooling-cells = <2>;
|
#cooling-cells = <2>;
|
||||||
cooling-min-level = <0>;
|
cooling-min-level = <0>;
|
||||||
|
|
|
@ -20,6 +20,7 @@
|
||||||
#include <asm/cputype.h>
|
#include <asm/cputype.h>
|
||||||
#include <asm/cp15.h>
|
#include <asm/cp15.h>
|
||||||
#include <asm/mcpm.h>
|
#include <asm/mcpm.h>
|
||||||
|
#include <asm/smp_plat.h>
|
||||||
|
|
||||||
#include "regs-pmu.h"
|
#include "regs-pmu.h"
|
||||||
#include "common.h"
|
#include "common.h"
|
||||||
|
@ -70,7 +71,31 @@ static int exynos_cpu_powerup(unsigned int cpu, unsigned int cluster)
|
||||||
cluster >= EXYNOS5420_NR_CLUSTERS)
|
cluster >= EXYNOS5420_NR_CLUSTERS)
|
||||||
return -EINVAL;
|
return -EINVAL;
|
||||||
|
|
||||||
|
if (!exynos_cpu_power_state(cpunr)) {
|
||||||
exynos_cpu_power_up(cpunr);
|
exynos_cpu_power_up(cpunr);
|
||||||
|
|
||||||
|
/*
|
||||||
|
* This assumes the cluster number of the big cores(Cortex A15)
|
||||||
|
* is 0 and the Little cores(Cortex A7) is 1.
|
||||||
|
* When the system was booted from the Little core,
|
||||||
|
* they should be reset during power up cpu.
|
||||||
|
*/
|
||||||
|
if (cluster &&
|
||||||
|
cluster == MPIDR_AFFINITY_LEVEL(cpu_logical_map(0), 1)) {
|
||||||
|
/*
|
||||||
|
* Before we reset the Little cores, we should wait
|
||||||
|
* the SPARE2 register is set to 1 because the init
|
||||||
|
* codes of the iROM will set the register after
|
||||||
|
* initialization.
|
||||||
|
*/
|
||||||
|
while (!pmu_raw_readl(S5P_PMU_SPARE2))
|
||||||
|
udelay(10);
|
||||||
|
|
||||||
|
pmu_raw_writel(EXYNOS5420_KFC_CORE_RESET(cpu),
|
||||||
|
EXYNOS_SWRESET);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -513,6 +513,12 @@ static inline unsigned int exynos_pmu_cpunr(unsigned int mpidr)
|
||||||
#define SPREAD_ENABLE 0xF
|
#define SPREAD_ENABLE 0xF
|
||||||
#define SPREAD_USE_STANDWFI 0xF
|
#define SPREAD_USE_STANDWFI 0xF
|
||||||
|
|
||||||
|
#define EXYNOS5420_KFC_CORE_RESET0 BIT(8)
|
||||||
|
#define EXYNOS5420_KFC_ETM_RESET0 BIT(20)
|
||||||
|
|
||||||
|
#define EXYNOS5420_KFC_CORE_RESET(_nr) \
|
||||||
|
((EXYNOS5420_KFC_CORE_RESET0 | EXYNOS5420_KFC_ETM_RESET0) << (_nr))
|
||||||
|
|
||||||
#define EXYNOS5420_BB_CON1 0x0784
|
#define EXYNOS5420_BB_CON1 0x0784
|
||||||
#define EXYNOS5420_BB_SEL_EN BIT(31)
|
#define EXYNOS5420_BB_SEL_EN BIT(31)
|
||||||
#define EXYNOS5420_BB_PMOS_EN BIT(7)
|
#define EXYNOS5420_BB_PMOS_EN BIT(7)
|
||||||
|
|
|
@ -79,7 +79,7 @@ extern void __pgd_error(const char *file, int line, unsigned long val);
|
||||||
#define PAGE_S2 __pgprot(PROT_DEFAULT | PTE_S2_MEMATTR(MT_S2_NORMAL) | PTE_S2_RDONLY)
|
#define PAGE_S2 __pgprot(PROT_DEFAULT | PTE_S2_MEMATTR(MT_S2_NORMAL) | PTE_S2_RDONLY)
|
||||||
#define PAGE_S2_DEVICE __pgprot(PROT_DEFAULT | PTE_S2_MEMATTR(MT_S2_DEVICE_nGnRE) | PTE_S2_RDONLY | PTE_UXN)
|
#define PAGE_S2_DEVICE __pgprot(PROT_DEFAULT | PTE_S2_MEMATTR(MT_S2_DEVICE_nGnRE) | PTE_S2_RDONLY | PTE_UXN)
|
||||||
|
|
||||||
#define PAGE_NONE __pgprot(((_PAGE_DEFAULT) & ~PTE_TYPE_MASK) | PTE_PROT_NONE | PTE_PXN | PTE_UXN)
|
#define PAGE_NONE __pgprot(((_PAGE_DEFAULT) & ~PTE_VALID) | PTE_PROT_NONE | PTE_PXN | PTE_UXN)
|
||||||
#define PAGE_SHARED __pgprot(_PAGE_DEFAULT | PTE_USER | PTE_NG | PTE_PXN | PTE_UXN | PTE_WRITE)
|
#define PAGE_SHARED __pgprot(_PAGE_DEFAULT | PTE_USER | PTE_NG | PTE_PXN | PTE_UXN | PTE_WRITE)
|
||||||
#define PAGE_SHARED_EXEC __pgprot(_PAGE_DEFAULT | PTE_USER | PTE_NG | PTE_PXN | PTE_WRITE)
|
#define PAGE_SHARED_EXEC __pgprot(_PAGE_DEFAULT | PTE_USER | PTE_NG | PTE_PXN | PTE_WRITE)
|
||||||
#define PAGE_COPY __pgprot(_PAGE_DEFAULT | PTE_USER | PTE_NG | PTE_PXN | PTE_UXN)
|
#define PAGE_COPY __pgprot(_PAGE_DEFAULT | PTE_USER | PTE_NG | PTE_PXN | PTE_UXN)
|
||||||
|
@ -496,7 +496,7 @@ static inline pud_t *pud_offset(pgd_t *pgd, unsigned long addr)
|
||||||
static inline pte_t pte_modify(pte_t pte, pgprot_t newprot)
|
static inline pte_t pte_modify(pte_t pte, pgprot_t newprot)
|
||||||
{
|
{
|
||||||
const pteval_t mask = PTE_USER | PTE_PXN | PTE_UXN | PTE_RDONLY |
|
const pteval_t mask = PTE_USER | PTE_PXN | PTE_UXN | PTE_RDONLY |
|
||||||
PTE_PROT_NONE | PTE_WRITE | PTE_TYPE_MASK;
|
PTE_PROT_NONE | PTE_VALID | PTE_WRITE;
|
||||||
/* preserve the hardware dirty information */
|
/* preserve the hardware dirty information */
|
||||||
if (pte_hw_dirty(pte))
|
if (pte_hw_dirty(pte))
|
||||||
pte = pte_mkdirty(pte);
|
pte = pte_mkdirty(pte);
|
||||||
|
|
|
@ -201,7 +201,7 @@ void unregister_step_hook(struct step_hook *hook)
|
||||||
}
|
}
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Call registered single step handers
|
* Call registered single step handlers
|
||||||
* There is no Syndrome info to check for determining the handler.
|
* There is no Syndrome info to check for determining the handler.
|
||||||
* So we call all the registered handlers, until the right handler is
|
* So we call all the registered handlers, until the right handler is
|
||||||
* found which returns zero.
|
* found which returns zero.
|
||||||
|
@ -271,20 +271,21 @@ static int single_step_handler(unsigned long addr, unsigned int esr,
|
||||||
* Use reader/writer locks instead of plain spinlock.
|
* Use reader/writer locks instead of plain spinlock.
|
||||||
*/
|
*/
|
||||||
static LIST_HEAD(break_hook);
|
static LIST_HEAD(break_hook);
|
||||||
static DEFINE_RWLOCK(break_hook_lock);
|
static DEFINE_SPINLOCK(break_hook_lock);
|
||||||
|
|
||||||
void register_break_hook(struct break_hook *hook)
|
void register_break_hook(struct break_hook *hook)
|
||||||
{
|
{
|
||||||
write_lock(&break_hook_lock);
|
spin_lock(&break_hook_lock);
|
||||||
list_add(&hook->node, &break_hook);
|
list_add_rcu(&hook->node, &break_hook);
|
||||||
write_unlock(&break_hook_lock);
|
spin_unlock(&break_hook_lock);
|
||||||
}
|
}
|
||||||
|
|
||||||
void unregister_break_hook(struct break_hook *hook)
|
void unregister_break_hook(struct break_hook *hook)
|
||||||
{
|
{
|
||||||
write_lock(&break_hook_lock);
|
spin_lock(&break_hook_lock);
|
||||||
list_del(&hook->node);
|
list_del_rcu(&hook->node);
|
||||||
write_unlock(&break_hook_lock);
|
spin_unlock(&break_hook_lock);
|
||||||
|
synchronize_rcu();
|
||||||
}
|
}
|
||||||
|
|
||||||
static int call_break_hook(struct pt_regs *regs, unsigned int esr)
|
static int call_break_hook(struct pt_regs *regs, unsigned int esr)
|
||||||
|
@ -292,11 +293,11 @@ static int call_break_hook(struct pt_regs *regs, unsigned int esr)
|
||||||
struct break_hook *hook;
|
struct break_hook *hook;
|
||||||
int (*fn)(struct pt_regs *regs, unsigned int esr) = NULL;
|
int (*fn)(struct pt_regs *regs, unsigned int esr) = NULL;
|
||||||
|
|
||||||
read_lock(&break_hook_lock);
|
rcu_read_lock();
|
||||||
list_for_each_entry(hook, &break_hook, node)
|
list_for_each_entry_rcu(hook, &break_hook, node)
|
||||||
if ((esr & hook->esr_mask) == hook->esr_val)
|
if ((esr & hook->esr_mask) == hook->esr_val)
|
||||||
fn = hook->fn;
|
fn = hook->fn;
|
||||||
read_unlock(&break_hook_lock);
|
rcu_read_unlock();
|
||||||
|
|
||||||
return fn ? fn(regs, esr) : DBG_HOOK_ERROR;
|
return fn ? fn(regs, esr) : DBG_HOOK_ERROR;
|
||||||
}
|
}
|
||||||
|
|
|
@ -258,7 +258,8 @@ static bool __init efi_virtmap_init(void)
|
||||||
*/
|
*/
|
||||||
if (!is_normal_ram(md))
|
if (!is_normal_ram(md))
|
||||||
prot = __pgprot(PROT_DEVICE_nGnRE);
|
prot = __pgprot(PROT_DEVICE_nGnRE);
|
||||||
else if (md->type == EFI_RUNTIME_SERVICES_CODE)
|
else if (md->type == EFI_RUNTIME_SERVICES_CODE ||
|
||||||
|
!PAGE_ALIGNED(md->phys_addr))
|
||||||
prot = PAGE_KERNEL_EXEC;
|
prot = PAGE_KERNEL_EXEC;
|
||||||
else
|
else
|
||||||
prot = PAGE_KERNEL;
|
prot = PAGE_KERNEL;
|
||||||
|
|
|
@ -178,6 +178,24 @@ ENTRY(ftrace_stub)
|
||||||
ENDPROC(ftrace_stub)
|
ENDPROC(ftrace_stub)
|
||||||
|
|
||||||
#ifdef CONFIG_FUNCTION_GRAPH_TRACER
|
#ifdef CONFIG_FUNCTION_GRAPH_TRACER
|
||||||
|
/* save return value regs*/
|
||||||
|
.macro save_return_regs
|
||||||
|
sub sp, sp, #64
|
||||||
|
stp x0, x1, [sp]
|
||||||
|
stp x2, x3, [sp, #16]
|
||||||
|
stp x4, x5, [sp, #32]
|
||||||
|
stp x6, x7, [sp, #48]
|
||||||
|
.endm
|
||||||
|
|
||||||
|
/* restore return value regs*/
|
||||||
|
.macro restore_return_regs
|
||||||
|
ldp x0, x1, [sp]
|
||||||
|
ldp x2, x3, [sp, #16]
|
||||||
|
ldp x4, x5, [sp, #32]
|
||||||
|
ldp x6, x7, [sp, #48]
|
||||||
|
add sp, sp, #64
|
||||||
|
.endm
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* void ftrace_graph_caller(void)
|
* void ftrace_graph_caller(void)
|
||||||
*
|
*
|
||||||
|
@ -204,11 +222,11 @@ ENDPROC(ftrace_graph_caller)
|
||||||
* only when CONFIG_HAVE_FUNCTION_GRAPH_FP_TEST is enabled.
|
* only when CONFIG_HAVE_FUNCTION_GRAPH_FP_TEST is enabled.
|
||||||
*/
|
*/
|
||||||
ENTRY(return_to_handler)
|
ENTRY(return_to_handler)
|
||||||
str x0, [sp, #-16]!
|
save_return_regs
|
||||||
mov x0, x29 // parent's fp
|
mov x0, x29 // parent's fp
|
||||||
bl ftrace_return_to_handler// addr = ftrace_return_to_hander(fp);
|
bl ftrace_return_to_handler// addr = ftrace_return_to_hander(fp);
|
||||||
mov x30, x0 // restore the original return address
|
mov x30, x0 // restore the original return address
|
||||||
ldr x0, [sp], #16
|
restore_return_regs
|
||||||
ret
|
ret
|
||||||
END(return_to_handler)
|
END(return_to_handler)
|
||||||
#endif /* CONFIG_FUNCTION_GRAPH_TRACER */
|
#endif /* CONFIG_FUNCTION_GRAPH_TRACER */
|
||||||
|
|
|
@ -85,7 +85,7 @@ bool aarch64_insn_is_branch_imm(u32 insn)
|
||||||
aarch64_insn_is_bcond(insn));
|
aarch64_insn_is_bcond(insn));
|
||||||
}
|
}
|
||||||
|
|
||||||
static DEFINE_SPINLOCK(patch_lock);
|
static DEFINE_RAW_SPINLOCK(patch_lock);
|
||||||
|
|
||||||
static void __kprobes *patch_map(void *addr, int fixmap)
|
static void __kprobes *patch_map(void *addr, int fixmap)
|
||||||
{
|
{
|
||||||
|
@ -131,13 +131,13 @@ static int __kprobes __aarch64_insn_write(void *addr, u32 insn)
|
||||||
unsigned long flags = 0;
|
unsigned long flags = 0;
|
||||||
int ret;
|
int ret;
|
||||||
|
|
||||||
spin_lock_irqsave(&patch_lock, flags);
|
raw_spin_lock_irqsave(&patch_lock, flags);
|
||||||
waddr = patch_map(addr, FIX_TEXT_POKE0);
|
waddr = patch_map(addr, FIX_TEXT_POKE0);
|
||||||
|
|
||||||
ret = probe_kernel_write(waddr, &insn, AARCH64_INSN_SIZE);
|
ret = probe_kernel_write(waddr, &insn, AARCH64_INSN_SIZE);
|
||||||
|
|
||||||
patch_unmap(FIX_TEXT_POKE0);
|
patch_unmap(FIX_TEXT_POKE0);
|
||||||
spin_unlock_irqrestore(&patch_lock, flags);
|
raw_spin_unlock_irqrestore(&patch_lock, flags);
|
||||||
|
|
||||||
return ret;
|
return ret;
|
||||||
}
|
}
|
||||||
|
|
|
@ -364,6 +364,8 @@ static void __init relocate_initrd(void)
|
||||||
to_free = ram_end - orig_start;
|
to_free = ram_end - orig_start;
|
||||||
|
|
||||||
size = orig_end - orig_start;
|
size = orig_end - orig_start;
|
||||||
|
if (!size)
|
||||||
|
return;
|
||||||
|
|
||||||
/* initrd needs to be relocated completely inside linear mapping */
|
/* initrd needs to be relocated completely inside linear mapping */
|
||||||
new_start = memblock_find_in_range(0, PFN_PHYS(max_pfn),
|
new_start = memblock_find_in_range(0, PFN_PHYS(max_pfn),
|
||||||
|
|
|
@ -287,6 +287,7 @@ retry:
|
||||||
* starvation.
|
* starvation.
|
||||||
*/
|
*/
|
||||||
mm_flags &= ~FAULT_FLAG_ALLOW_RETRY;
|
mm_flags &= ~FAULT_FLAG_ALLOW_RETRY;
|
||||||
|
mm_flags |= FAULT_FLAG_TRIED;
|
||||||
goto retry;
|
goto retry;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -20,4 +20,5 @@ generic-y += sections.h
|
||||||
generic-y += topology.h
|
generic-y += topology.h
|
||||||
generic-y += trace_clock.h
|
generic-y += trace_clock.h
|
||||||
generic-y += vga.h
|
generic-y += vga.h
|
||||||
|
generic-y += word-at-a-time.h
|
||||||
generic-y += xor.h
|
generic-y += xor.h
|
||||||
|
|
|
@ -46,4 +46,5 @@ generic-y += types.h
|
||||||
generic-y += ucontext.h
|
generic-y += ucontext.h
|
||||||
generic-y += unaligned.h
|
generic-y += unaligned.h
|
||||||
generic-y += user.h
|
generic-y += user.h
|
||||||
|
generic-y += word-at-a-time.h
|
||||||
generic-y += xor.h
|
generic-y += xor.h
|
||||||
|
|
|
@ -59,4 +59,5 @@ generic-y += types.h
|
||||||
generic-y += ucontext.h
|
generic-y += ucontext.h
|
||||||
generic-y += user.h
|
generic-y += user.h
|
||||||
generic-y += vga.h
|
generic-y += vga.h
|
||||||
|
generic-y += word-at-a-time.h
|
||||||
generic-y += xor.h
|
generic-y += xor.h
|
||||||
|
|
|
@ -43,4 +43,5 @@ generic-y += topology.h
|
||||||
generic-y += trace_clock.h
|
generic-y += trace_clock.h
|
||||||
generic-y += types.h
|
generic-y += types.h
|
||||||
generic-y += vga.h
|
generic-y += vga.h
|
||||||
|
generic-y += word-at-a-time.h
|
||||||
generic-y += xor.h
|
generic-y += xor.h
|
||||||
|
|
|
@ -7,3 +7,4 @@ generic-y += mcs_spinlock.h
|
||||||
generic-y += mm-arch-hooks.h
|
generic-y += mm-arch-hooks.h
|
||||||
generic-y += preempt.h
|
generic-y += preempt.h
|
||||||
generic-y += trace_clock.h
|
generic-y += trace_clock.h
|
||||||
|
generic-y += word-at-a-time.h
|
||||||
|
|
|
@ -73,4 +73,5 @@ generic-y += uaccess.h
|
||||||
generic-y += ucontext.h
|
generic-y += ucontext.h
|
||||||
generic-y += unaligned.h
|
generic-y += unaligned.h
|
||||||
generic-y += vga.h
|
generic-y += vga.h
|
||||||
|
generic-y += word-at-a-time.h
|
||||||
generic-y += xor.h
|
generic-y += xor.h
|
||||||
|
|
|
@ -58,4 +58,5 @@ generic-y += types.h
|
||||||
generic-y += ucontext.h
|
generic-y += ucontext.h
|
||||||
generic-y += unaligned.h
|
generic-y += unaligned.h
|
||||||
generic-y += vga.h
|
generic-y += vga.h
|
||||||
|
generic-y += word-at-a-time.h
|
||||||
generic-y += xor.h
|
generic-y += xor.h
|
||||||
|
|
|
@ -8,3 +8,4 @@ generic-y += mm-arch-hooks.h
|
||||||
generic-y += preempt.h
|
generic-y += preempt.h
|
||||||
generic-y += trace_clock.h
|
generic-y += trace_clock.h
|
||||||
generic-y += vtime.h
|
generic-y += vtime.h
|
||||||
|
generic-y += word-at-a-time.h
|
||||||
|
|
|
@ -9,3 +9,4 @@ generic-y += module.h
|
||||||
generic-y += preempt.h
|
generic-y += preempt.h
|
||||||
generic-y += sections.h
|
generic-y += sections.h
|
||||||
generic-y += trace_clock.h
|
generic-y += trace_clock.h
|
||||||
|
generic-y += word-at-a-time.h
|
||||||
|
|
|
@ -10,6 +10,7 @@ CONFIG_LOG_BUF_SHIFT=16
|
||||||
# CONFIG_PID_NS is not set
|
# CONFIG_PID_NS is not set
|
||||||
# CONFIG_NET_NS is not set
|
# CONFIG_NET_NS is not set
|
||||||
CONFIG_BLK_DEV_INITRD=y
|
CONFIG_BLK_DEV_INITRD=y
|
||||||
|
CONFIG_USERFAULTFD=y
|
||||||
CONFIG_SLAB=y
|
CONFIG_SLAB=y
|
||||||
CONFIG_MODULES=y
|
CONFIG_MODULES=y
|
||||||
CONFIG_MODULE_UNLOAD=y
|
CONFIG_MODULE_UNLOAD=y
|
||||||
|
@ -57,7 +58,6 @@ CONFIG_NET_IPGRE_DEMUX=m
|
||||||
CONFIG_NET_IPGRE=m
|
CONFIG_NET_IPGRE=m
|
||||||
CONFIG_NET_IPVTI=m
|
CONFIG_NET_IPVTI=m
|
||||||
CONFIG_NET_FOU_IP_TUNNELS=y
|
CONFIG_NET_FOU_IP_TUNNELS=y
|
||||||
CONFIG_GENEVE_CORE=m
|
|
||||||
CONFIG_INET_AH=m
|
CONFIG_INET_AH=m
|
||||||
CONFIG_INET_ESP=m
|
CONFIG_INET_ESP=m
|
||||||
CONFIG_INET_IPCOMP=m
|
CONFIG_INET_IPCOMP=m
|
||||||
|
@ -67,10 +67,12 @@ CONFIG_INET_XFRM_MODE_BEET=m
|
||||||
# CONFIG_INET_LRO is not set
|
# CONFIG_INET_LRO is not set
|
||||||
CONFIG_INET_DIAG=m
|
CONFIG_INET_DIAG=m
|
||||||
CONFIG_INET_UDP_DIAG=m
|
CONFIG_INET_UDP_DIAG=m
|
||||||
|
CONFIG_IPV6=m
|
||||||
CONFIG_IPV6_ROUTER_PREF=y
|
CONFIG_IPV6_ROUTER_PREF=y
|
||||||
CONFIG_INET6_AH=m
|
CONFIG_INET6_AH=m
|
||||||
CONFIG_INET6_ESP=m
|
CONFIG_INET6_ESP=m
|
||||||
CONFIG_INET6_IPCOMP=m
|
CONFIG_INET6_IPCOMP=m
|
||||||
|
CONFIG_IPV6_ILA=m
|
||||||
CONFIG_IPV6_VTI=m
|
CONFIG_IPV6_VTI=m
|
||||||
CONFIG_IPV6_GRE=m
|
CONFIG_IPV6_GRE=m
|
||||||
CONFIG_NETFILTER=y
|
CONFIG_NETFILTER=y
|
||||||
|
@ -179,6 +181,7 @@ CONFIG_IP_SET_HASH_NETIFACE=m
|
||||||
CONFIG_IP_SET_LIST_SET=m
|
CONFIG_IP_SET_LIST_SET=m
|
||||||
CONFIG_NF_CONNTRACK_IPV4=m
|
CONFIG_NF_CONNTRACK_IPV4=m
|
||||||
CONFIG_NFT_CHAIN_ROUTE_IPV4=m
|
CONFIG_NFT_CHAIN_ROUTE_IPV4=m
|
||||||
|
CONFIG_NFT_DUP_IPV4=m
|
||||||
CONFIG_NF_TABLES_ARP=m
|
CONFIG_NF_TABLES_ARP=m
|
||||||
CONFIG_NF_LOG_ARP=m
|
CONFIG_NF_LOG_ARP=m
|
||||||
CONFIG_NFT_CHAIN_NAT_IPV4=m
|
CONFIG_NFT_CHAIN_NAT_IPV4=m
|
||||||
|
@ -206,6 +209,7 @@ CONFIG_IP_NF_ARPFILTER=m
|
||||||
CONFIG_IP_NF_ARP_MANGLE=m
|
CONFIG_IP_NF_ARP_MANGLE=m
|
||||||
CONFIG_NF_CONNTRACK_IPV6=m
|
CONFIG_NF_CONNTRACK_IPV6=m
|
||||||
CONFIG_NFT_CHAIN_ROUTE_IPV6=m
|
CONFIG_NFT_CHAIN_ROUTE_IPV6=m
|
||||||
|
CONFIG_NFT_DUP_IPV6=m
|
||||||
CONFIG_NFT_CHAIN_NAT_IPV6=m
|
CONFIG_NFT_CHAIN_NAT_IPV6=m
|
||||||
CONFIG_NFT_MASQ_IPV6=m
|
CONFIG_NFT_MASQ_IPV6=m
|
||||||
CONFIG_NFT_REDIR_IPV6=m
|
CONFIG_NFT_REDIR_IPV6=m
|
||||||
|
@ -271,6 +275,7 @@ CONFIG_NETLINK_DIAG=m
|
||||||
CONFIG_MPLS=y
|
CONFIG_MPLS=y
|
||||||
CONFIG_NET_MPLS_GSO=m
|
CONFIG_NET_MPLS_GSO=m
|
||||||
CONFIG_MPLS_ROUTING=m
|
CONFIG_MPLS_ROUTING=m
|
||||||
|
CONFIG_MPLS_IPTUNNEL=m
|
||||||
# CONFIG_WIRELESS is not set
|
# CONFIG_WIRELESS is not set
|
||||||
# CONFIG_UEVENT_HELPER is not set
|
# CONFIG_UEVENT_HELPER is not set
|
||||||
CONFIG_DEVTMPFS=y
|
CONFIG_DEVTMPFS=y
|
||||||
|
@ -370,6 +375,7 @@ CONFIG_ZORRO8390=y
|
||||||
# CONFIG_NET_VENDOR_SEEQ is not set
|
# CONFIG_NET_VENDOR_SEEQ is not set
|
||||||
# CONFIG_NET_VENDOR_SMSC is not set
|
# CONFIG_NET_VENDOR_SMSC is not set
|
||||||
# CONFIG_NET_VENDOR_STMICRO is not set
|
# CONFIG_NET_VENDOR_STMICRO is not set
|
||||||
|
# CONFIG_NET_VENDOR_SYNOPSYS is not set
|
||||||
# CONFIG_NET_VENDOR_VIA is not set
|
# CONFIG_NET_VENDOR_VIA is not set
|
||||||
# CONFIG_NET_VENDOR_WIZNET is not set
|
# CONFIG_NET_VENDOR_WIZNET is not set
|
||||||
CONFIG_PPP=m
|
CONFIG_PPP=m
|
||||||
|
@ -537,6 +543,7 @@ CONFIG_TEST_USER_COPY=m
|
||||||
CONFIG_TEST_BPF=m
|
CONFIG_TEST_BPF=m
|
||||||
CONFIG_TEST_FIRMWARE=m
|
CONFIG_TEST_FIRMWARE=m
|
||||||
CONFIG_TEST_UDELAY=m
|
CONFIG_TEST_UDELAY=m
|
||||||
|
CONFIG_TEST_STATIC_KEYS=m
|
||||||
CONFIG_EARLY_PRINTK=y
|
CONFIG_EARLY_PRINTK=y
|
||||||
CONFIG_ENCRYPTED_KEYS=m
|
CONFIG_ENCRYPTED_KEYS=m
|
||||||
CONFIG_CRYPTO_RSA=m
|
CONFIG_CRYPTO_RSA=m
|
||||||
|
|
|
@ -10,6 +10,7 @@ CONFIG_LOG_BUF_SHIFT=16
|
||||||
# CONFIG_PID_NS is not set
|
# CONFIG_PID_NS is not set
|
||||||
# CONFIG_NET_NS is not set
|
# CONFIG_NET_NS is not set
|
||||||
CONFIG_BLK_DEV_INITRD=y
|
CONFIG_BLK_DEV_INITRD=y
|
||||||
|
CONFIG_USERFAULTFD=y
|
||||||
CONFIG_SLAB=y
|
CONFIG_SLAB=y
|
||||||
CONFIG_MODULES=y
|
CONFIG_MODULES=y
|
||||||
CONFIG_MODULE_UNLOAD=y
|
CONFIG_MODULE_UNLOAD=y
|
||||||
|
@ -55,7 +56,6 @@ CONFIG_NET_IPGRE_DEMUX=m
|
||||||
CONFIG_NET_IPGRE=m
|
CONFIG_NET_IPGRE=m
|
||||||
CONFIG_NET_IPVTI=m
|
CONFIG_NET_IPVTI=m
|
||||||
CONFIG_NET_FOU_IP_TUNNELS=y
|
CONFIG_NET_FOU_IP_TUNNELS=y
|
||||||
CONFIG_GENEVE_CORE=m
|
|
||||||
CONFIG_INET_AH=m
|
CONFIG_INET_AH=m
|
||||||
CONFIG_INET_ESP=m
|
CONFIG_INET_ESP=m
|
||||||
CONFIG_INET_IPCOMP=m
|
CONFIG_INET_IPCOMP=m
|
||||||
|
@ -65,10 +65,12 @@ CONFIG_INET_XFRM_MODE_BEET=m
|
||||||
# CONFIG_INET_LRO is not set
|
# CONFIG_INET_LRO is not set
|
||||||
CONFIG_INET_DIAG=m
|
CONFIG_INET_DIAG=m
|
||||||
CONFIG_INET_UDP_DIAG=m
|
CONFIG_INET_UDP_DIAG=m
|
||||||
|
CONFIG_IPV6=m
|
||||||
CONFIG_IPV6_ROUTER_PREF=y
|
CONFIG_IPV6_ROUTER_PREF=y
|
||||||
CONFIG_INET6_AH=m
|
CONFIG_INET6_AH=m
|
||||||
CONFIG_INET6_ESP=m
|
CONFIG_INET6_ESP=m
|
||||||
CONFIG_INET6_IPCOMP=m
|
CONFIG_INET6_IPCOMP=m
|
||||||
|
CONFIG_IPV6_ILA=m
|
||||||
CONFIG_IPV6_VTI=m
|
CONFIG_IPV6_VTI=m
|
||||||
CONFIG_IPV6_GRE=m
|
CONFIG_IPV6_GRE=m
|
||||||
CONFIG_NETFILTER=y
|
CONFIG_NETFILTER=y
|
||||||
|
@ -177,6 +179,7 @@ CONFIG_IP_SET_HASH_NETIFACE=m
|
||||||
CONFIG_IP_SET_LIST_SET=m
|
CONFIG_IP_SET_LIST_SET=m
|
||||||
CONFIG_NF_CONNTRACK_IPV4=m
|
CONFIG_NF_CONNTRACK_IPV4=m
|
||||||
CONFIG_NFT_CHAIN_ROUTE_IPV4=m
|
CONFIG_NFT_CHAIN_ROUTE_IPV4=m
|
||||||
|
CONFIG_NFT_DUP_IPV4=m
|
||||||
CONFIG_NF_TABLES_ARP=m
|
CONFIG_NF_TABLES_ARP=m
|
||||||
CONFIG_NF_LOG_ARP=m
|
CONFIG_NF_LOG_ARP=m
|
||||||
CONFIG_NFT_CHAIN_NAT_IPV4=m
|
CONFIG_NFT_CHAIN_NAT_IPV4=m
|
||||||
|
@ -204,6 +207,7 @@ CONFIG_IP_NF_ARPFILTER=m
|
||||||
CONFIG_IP_NF_ARP_MANGLE=m
|
CONFIG_IP_NF_ARP_MANGLE=m
|
||||||
CONFIG_NF_CONNTRACK_IPV6=m
|
CONFIG_NF_CONNTRACK_IPV6=m
|
||||||
CONFIG_NFT_CHAIN_ROUTE_IPV6=m
|
CONFIG_NFT_CHAIN_ROUTE_IPV6=m
|
||||||
|
CONFIG_NFT_DUP_IPV6=m
|
||||||
CONFIG_NFT_CHAIN_NAT_IPV6=m
|
CONFIG_NFT_CHAIN_NAT_IPV6=m
|
||||||
CONFIG_NFT_MASQ_IPV6=m
|
CONFIG_NFT_MASQ_IPV6=m
|
||||||
CONFIG_NFT_REDIR_IPV6=m
|
CONFIG_NFT_REDIR_IPV6=m
|
||||||
|
@ -269,6 +273,7 @@ CONFIG_NETLINK_DIAG=m
|
||||||
CONFIG_MPLS=y
|
CONFIG_MPLS=y
|
||||||
CONFIG_NET_MPLS_GSO=m
|
CONFIG_NET_MPLS_GSO=m
|
||||||
CONFIG_MPLS_ROUTING=m
|
CONFIG_MPLS_ROUTING=m
|
||||||
|
CONFIG_MPLS_IPTUNNEL=m
|
||||||
# CONFIG_WIRELESS is not set
|
# CONFIG_WIRELESS is not set
|
||||||
# CONFIG_UEVENT_HELPER is not set
|
# CONFIG_UEVENT_HELPER is not set
|
||||||
CONFIG_DEVTMPFS=y
|
CONFIG_DEVTMPFS=y
|
||||||
|
@ -344,6 +349,7 @@ CONFIG_VETH=m
|
||||||
# CONFIG_NET_VENDOR_SAMSUNG is not set
|
# CONFIG_NET_VENDOR_SAMSUNG is not set
|
||||||
# CONFIG_NET_VENDOR_SEEQ is not set
|
# CONFIG_NET_VENDOR_SEEQ is not set
|
||||||
# CONFIG_NET_VENDOR_STMICRO is not set
|
# CONFIG_NET_VENDOR_STMICRO is not set
|
||||||
|
# CONFIG_NET_VENDOR_SYNOPSYS is not set
|
||||||
# CONFIG_NET_VENDOR_VIA is not set
|
# CONFIG_NET_VENDOR_VIA is not set
|
||||||
# CONFIG_NET_VENDOR_WIZNET is not set
|
# CONFIG_NET_VENDOR_WIZNET is not set
|
||||||
CONFIG_PPP=m
|
CONFIG_PPP=m
|
||||||
|
@ -495,6 +501,7 @@ CONFIG_TEST_USER_COPY=m
|
||||||
CONFIG_TEST_BPF=m
|
CONFIG_TEST_BPF=m
|
||||||
CONFIG_TEST_FIRMWARE=m
|
CONFIG_TEST_FIRMWARE=m
|
||||||
CONFIG_TEST_UDELAY=m
|
CONFIG_TEST_UDELAY=m
|
||||||
|
CONFIG_TEST_STATIC_KEYS=m
|
||||||
CONFIG_EARLY_PRINTK=y
|
CONFIG_EARLY_PRINTK=y
|
||||||
CONFIG_ENCRYPTED_KEYS=m
|
CONFIG_ENCRYPTED_KEYS=m
|
||||||
CONFIG_CRYPTO_RSA=m
|
CONFIG_CRYPTO_RSA=m
|
||||||
|
|
|
@ -10,6 +10,7 @@ CONFIG_LOG_BUF_SHIFT=16
|
||||||
# CONFIG_PID_NS is not set
|
# CONFIG_PID_NS is not set
|
||||||
# CONFIG_NET_NS is not set
|
# CONFIG_NET_NS is not set
|
||||||
CONFIG_BLK_DEV_INITRD=y
|
CONFIG_BLK_DEV_INITRD=y
|
||||||
|
CONFIG_USERFAULTFD=y
|
||||||
CONFIG_SLAB=y
|
CONFIG_SLAB=y
|
||||||
CONFIG_MODULES=y
|
CONFIG_MODULES=y
|
||||||
CONFIG_MODULE_UNLOAD=y
|
CONFIG_MODULE_UNLOAD=y
|
||||||
|
@ -55,7 +56,6 @@ CONFIG_NET_IPGRE_DEMUX=m
|
||||||
CONFIG_NET_IPGRE=m
|
CONFIG_NET_IPGRE=m
|
||||||
CONFIG_NET_IPVTI=m
|
CONFIG_NET_IPVTI=m
|
||||||
CONFIG_NET_FOU_IP_TUNNELS=y
|
CONFIG_NET_FOU_IP_TUNNELS=y
|
||||||
CONFIG_GENEVE_CORE=m
|
|
||||||
CONFIG_INET_AH=m
|
CONFIG_INET_AH=m
|
||||||
CONFIG_INET_ESP=m
|
CONFIG_INET_ESP=m
|
||||||
CONFIG_INET_IPCOMP=m
|
CONFIG_INET_IPCOMP=m
|
||||||
|
@ -65,10 +65,12 @@ CONFIG_INET_XFRM_MODE_BEET=m
|
||||||
# CONFIG_INET_LRO is not set
|
# CONFIG_INET_LRO is not set
|
||||||
CONFIG_INET_DIAG=m
|
CONFIG_INET_DIAG=m
|
||||||
CONFIG_INET_UDP_DIAG=m
|
CONFIG_INET_UDP_DIAG=m
|
||||||
|
CONFIG_IPV6=m
|
||||||
CONFIG_IPV6_ROUTER_PREF=y
|
CONFIG_IPV6_ROUTER_PREF=y
|
||||||
CONFIG_INET6_AH=m
|
CONFIG_INET6_AH=m
|
||||||
CONFIG_INET6_ESP=m
|
CONFIG_INET6_ESP=m
|
||||||
CONFIG_INET6_IPCOMP=m
|
CONFIG_INET6_IPCOMP=m
|
||||||
|
CONFIG_IPV6_ILA=m
|
||||||
CONFIG_IPV6_VTI=m
|
CONFIG_IPV6_VTI=m
|
||||||
CONFIG_IPV6_GRE=m
|
CONFIG_IPV6_GRE=m
|
||||||
CONFIG_NETFILTER=y
|
CONFIG_NETFILTER=y
|
||||||
|
@ -177,6 +179,7 @@ CONFIG_IP_SET_HASH_NETIFACE=m
|
||||||
CONFIG_IP_SET_LIST_SET=m
|
CONFIG_IP_SET_LIST_SET=m
|
||||||
CONFIG_NF_CONNTRACK_IPV4=m
|
CONFIG_NF_CONNTRACK_IPV4=m
|
||||||
CONFIG_NFT_CHAIN_ROUTE_IPV4=m
|
CONFIG_NFT_CHAIN_ROUTE_IPV4=m
|
||||||
|
CONFIG_NFT_DUP_IPV4=m
|
||||||
CONFIG_NF_TABLES_ARP=m
|
CONFIG_NF_TABLES_ARP=m
|
||||||
CONFIG_NF_LOG_ARP=m
|
CONFIG_NF_LOG_ARP=m
|
||||||
CONFIG_NFT_CHAIN_NAT_IPV4=m
|
CONFIG_NFT_CHAIN_NAT_IPV4=m
|
||||||
|
@ -204,6 +207,7 @@ CONFIG_IP_NF_ARPFILTER=m
|
||||||
CONFIG_IP_NF_ARP_MANGLE=m
|
CONFIG_IP_NF_ARP_MANGLE=m
|
||||||
CONFIG_NF_CONNTRACK_IPV6=m
|
CONFIG_NF_CONNTRACK_IPV6=m
|
||||||
CONFIG_NFT_CHAIN_ROUTE_IPV6=m
|
CONFIG_NFT_CHAIN_ROUTE_IPV6=m
|
||||||
|
CONFIG_NFT_DUP_IPV6=m
|
||||||
CONFIG_NFT_CHAIN_NAT_IPV6=m
|
CONFIG_NFT_CHAIN_NAT_IPV6=m
|
||||||
CONFIG_NFT_MASQ_IPV6=m
|
CONFIG_NFT_MASQ_IPV6=m
|
||||||
CONFIG_NFT_REDIR_IPV6=m
|
CONFIG_NFT_REDIR_IPV6=m
|
||||||
|
@ -269,6 +273,7 @@ CONFIG_NETLINK_DIAG=m
|
||||||
CONFIG_MPLS=y
|
CONFIG_MPLS=y
|
||||||
CONFIG_NET_MPLS_GSO=m
|
CONFIG_NET_MPLS_GSO=m
|
||||||
CONFIG_MPLS_ROUTING=m
|
CONFIG_MPLS_ROUTING=m
|
||||||
|
CONFIG_MPLS_IPTUNNEL=m
|
||||||
# CONFIG_WIRELESS is not set
|
# CONFIG_WIRELESS is not set
|
||||||
# CONFIG_UEVENT_HELPER is not set
|
# CONFIG_UEVENT_HELPER is not set
|
||||||
CONFIG_DEVTMPFS=y
|
CONFIG_DEVTMPFS=y
|
||||||
|
@ -355,6 +360,7 @@ CONFIG_NE2000=y
|
||||||
# CONFIG_NET_VENDOR_SEEQ is not set
|
# CONFIG_NET_VENDOR_SEEQ is not set
|
||||||
CONFIG_SMC91X=y
|
CONFIG_SMC91X=y
|
||||||
# CONFIG_NET_VENDOR_STMICRO is not set
|
# CONFIG_NET_VENDOR_STMICRO is not set
|
||||||
|
# CONFIG_NET_VENDOR_SYNOPSYS is not set
|
||||||
# CONFIG_NET_VENDOR_VIA is not set
|
# CONFIG_NET_VENDOR_VIA is not set
|
||||||
# CONFIG_NET_VENDOR_WIZNET is not set
|
# CONFIG_NET_VENDOR_WIZNET is not set
|
||||||
CONFIG_PPP=m
|
CONFIG_PPP=m
|
||||||
|
@ -517,6 +523,7 @@ CONFIG_TEST_USER_COPY=m
|
||||||
CONFIG_TEST_BPF=m
|
CONFIG_TEST_BPF=m
|
||||||
CONFIG_TEST_FIRMWARE=m
|
CONFIG_TEST_FIRMWARE=m
|
||||||
CONFIG_TEST_UDELAY=m
|
CONFIG_TEST_UDELAY=m
|
||||||
|
CONFIG_TEST_STATIC_KEYS=m
|
||||||
CONFIG_EARLY_PRINTK=y
|
CONFIG_EARLY_PRINTK=y
|
||||||
CONFIG_ENCRYPTED_KEYS=m
|
CONFIG_ENCRYPTED_KEYS=m
|
||||||
CONFIG_CRYPTO_RSA=m
|
CONFIG_CRYPTO_RSA=m
|
||||||
|
|
|
@ -10,6 +10,7 @@ CONFIG_LOG_BUF_SHIFT=16
|
||||||
# CONFIG_PID_NS is not set
|
# CONFIG_PID_NS is not set
|
||||||
# CONFIG_NET_NS is not set
|
# CONFIG_NET_NS is not set
|
||||||
CONFIG_BLK_DEV_INITRD=y
|
CONFIG_BLK_DEV_INITRD=y
|
||||||
|
CONFIG_USERFAULTFD=y
|
||||||
CONFIG_SLAB=y
|
CONFIG_SLAB=y
|
||||||
CONFIG_MODULES=y
|
CONFIG_MODULES=y
|
||||||
CONFIG_MODULE_UNLOAD=y
|
CONFIG_MODULE_UNLOAD=y
|
||||||
|
@ -53,7 +54,6 @@ CONFIG_NET_IPGRE_DEMUX=m
|
||||||
CONFIG_NET_IPGRE=m
|
CONFIG_NET_IPGRE=m
|
||||||
CONFIG_NET_IPVTI=m
|
CONFIG_NET_IPVTI=m
|
||||||
CONFIG_NET_FOU_IP_TUNNELS=y
|
CONFIG_NET_FOU_IP_TUNNELS=y
|
||||||
CONFIG_GENEVE_CORE=m
|
|
||||||
CONFIG_INET_AH=m
|
CONFIG_INET_AH=m
|
||||||
CONFIG_INET_ESP=m
|
CONFIG_INET_ESP=m
|
||||||
CONFIG_INET_IPCOMP=m
|
CONFIG_INET_IPCOMP=m
|
||||||
|
@ -63,10 +63,12 @@ CONFIG_INET_XFRM_MODE_BEET=m
|
||||||
# CONFIG_INET_LRO is not set
|
# CONFIG_INET_LRO is not set
|
||||||
CONFIG_INET_DIAG=m
|
CONFIG_INET_DIAG=m
|
||||||
CONFIG_INET_UDP_DIAG=m
|
CONFIG_INET_UDP_DIAG=m
|
||||||
|
CONFIG_IPV6=m
|
||||||
CONFIG_IPV6_ROUTER_PREF=y
|
CONFIG_IPV6_ROUTER_PREF=y
|
||||||
CONFIG_INET6_AH=m
|
CONFIG_INET6_AH=m
|
||||||
CONFIG_INET6_ESP=m
|
CONFIG_INET6_ESP=m
|
||||||
CONFIG_INET6_IPCOMP=m
|
CONFIG_INET6_IPCOMP=m
|
||||||
|
CONFIG_IPV6_ILA=m
|
||||||
CONFIG_IPV6_VTI=m
|
CONFIG_IPV6_VTI=m
|
||||||
CONFIG_IPV6_GRE=m
|
CONFIG_IPV6_GRE=m
|
||||||
CONFIG_NETFILTER=y
|
CONFIG_NETFILTER=y
|
||||||
|
@ -175,6 +177,7 @@ CONFIG_IP_SET_HASH_NETIFACE=m
|
||||||
CONFIG_IP_SET_LIST_SET=m
|
CONFIG_IP_SET_LIST_SET=m
|
||||||
CONFIG_NF_CONNTRACK_IPV4=m
|
CONFIG_NF_CONNTRACK_IPV4=m
|
||||||
CONFIG_NFT_CHAIN_ROUTE_IPV4=m
|
CONFIG_NFT_CHAIN_ROUTE_IPV4=m
|
||||||
|
CONFIG_NFT_DUP_IPV4=m
|
||||||
CONFIG_NF_TABLES_ARP=m
|
CONFIG_NF_TABLES_ARP=m
|
||||||
CONFIG_NF_LOG_ARP=m
|
CONFIG_NF_LOG_ARP=m
|
||||||
CONFIG_NFT_CHAIN_NAT_IPV4=m
|
CONFIG_NFT_CHAIN_NAT_IPV4=m
|
||||||
|
@ -202,6 +205,7 @@ CONFIG_IP_NF_ARPFILTER=m
|
||||||
CONFIG_IP_NF_ARP_MANGLE=m
|
CONFIG_IP_NF_ARP_MANGLE=m
|
||||||
CONFIG_NF_CONNTRACK_IPV6=m
|
CONFIG_NF_CONNTRACK_IPV6=m
|
||||||
CONFIG_NFT_CHAIN_ROUTE_IPV6=m
|
CONFIG_NFT_CHAIN_ROUTE_IPV6=m
|
||||||
|
CONFIG_NFT_DUP_IPV6=m
|
||||||
CONFIG_NFT_CHAIN_NAT_IPV6=m
|
CONFIG_NFT_CHAIN_NAT_IPV6=m
|
||||||
CONFIG_NFT_MASQ_IPV6=m
|
CONFIG_NFT_MASQ_IPV6=m
|
||||||
CONFIG_NFT_REDIR_IPV6=m
|
CONFIG_NFT_REDIR_IPV6=m
|
||||||
|
@ -267,6 +271,7 @@ CONFIG_NETLINK_DIAG=m
|
||||||
CONFIG_MPLS=y
|
CONFIG_MPLS=y
|
||||||
CONFIG_NET_MPLS_GSO=m
|
CONFIG_NET_MPLS_GSO=m
|
||||||
CONFIG_MPLS_ROUTING=m
|
CONFIG_MPLS_ROUTING=m
|
||||||
|
CONFIG_MPLS_IPTUNNEL=m
|
||||||
# CONFIG_WIRELESS is not set
|
# CONFIG_WIRELESS is not set
|
||||||
# CONFIG_UEVENT_HELPER is not set
|
# CONFIG_UEVENT_HELPER is not set
|
||||||
CONFIG_DEVTMPFS=y
|
CONFIG_DEVTMPFS=y
|
||||||
|
@ -343,6 +348,7 @@ CONFIG_BVME6000_NET=y
|
||||||
# CONFIG_NET_VENDOR_SAMSUNG is not set
|
# CONFIG_NET_VENDOR_SAMSUNG is not set
|
||||||
# CONFIG_NET_VENDOR_SEEQ is not set
|
# CONFIG_NET_VENDOR_SEEQ is not set
|
||||||
# CONFIG_NET_VENDOR_STMICRO is not set
|
# CONFIG_NET_VENDOR_STMICRO is not set
|
||||||
|
# CONFIG_NET_VENDOR_SYNOPSYS is not set
|
||||||
# CONFIG_NET_VENDOR_VIA is not set
|
# CONFIG_NET_VENDOR_VIA is not set
|
||||||
# CONFIG_NET_VENDOR_WIZNET is not set
|
# CONFIG_NET_VENDOR_WIZNET is not set
|
||||||
CONFIG_PPP=m
|
CONFIG_PPP=m
|
||||||
|
@ -488,6 +494,7 @@ CONFIG_TEST_USER_COPY=m
|
||||||
CONFIG_TEST_BPF=m
|
CONFIG_TEST_BPF=m
|
||||||
CONFIG_TEST_FIRMWARE=m
|
CONFIG_TEST_FIRMWARE=m
|
||||||
CONFIG_TEST_UDELAY=m
|
CONFIG_TEST_UDELAY=m
|
||||||
|
CONFIG_TEST_STATIC_KEYS=m
|
||||||
CONFIG_EARLY_PRINTK=y
|
CONFIG_EARLY_PRINTK=y
|
||||||
CONFIG_ENCRYPTED_KEYS=m
|
CONFIG_ENCRYPTED_KEYS=m
|
||||||
CONFIG_CRYPTO_RSA=m
|
CONFIG_CRYPTO_RSA=m
|
||||||
|
|
|
@ -10,6 +10,7 @@ CONFIG_LOG_BUF_SHIFT=16
|
||||||
# CONFIG_PID_NS is not set
|
# CONFIG_PID_NS is not set
|
||||||
# CONFIG_NET_NS is not set
|
# CONFIG_NET_NS is not set
|
||||||
CONFIG_BLK_DEV_INITRD=y
|
CONFIG_BLK_DEV_INITRD=y
|
||||||
|
CONFIG_USERFAULTFD=y
|
||||||
CONFIG_SLAB=y
|
CONFIG_SLAB=y
|
||||||
CONFIG_MODULES=y
|
CONFIG_MODULES=y
|
||||||
CONFIG_MODULE_UNLOAD=y
|
CONFIG_MODULE_UNLOAD=y
|
||||||
|
@ -55,7 +56,6 @@ CONFIG_NET_IPGRE_DEMUX=m
|
||||||
CONFIG_NET_IPGRE=m
|
CONFIG_NET_IPGRE=m
|
||||||
CONFIG_NET_IPVTI=m
|
CONFIG_NET_IPVTI=m
|
||||||
CONFIG_NET_FOU_IP_TUNNELS=y
|
CONFIG_NET_FOU_IP_TUNNELS=y
|
||||||
CONFIG_GENEVE_CORE=m
|
|
||||||
CONFIG_INET_AH=m
|
CONFIG_INET_AH=m
|
||||||
CONFIG_INET_ESP=m
|
CONFIG_INET_ESP=m
|
||||||
CONFIG_INET_IPCOMP=m
|
CONFIG_INET_IPCOMP=m
|
||||||
|
@ -65,10 +65,12 @@ CONFIG_INET_XFRM_MODE_BEET=m
|
||||||
# CONFIG_INET_LRO is not set
|
# CONFIG_INET_LRO is not set
|
||||||
CONFIG_INET_DIAG=m
|
CONFIG_INET_DIAG=m
|
||||||
CONFIG_INET_UDP_DIAG=m
|
CONFIG_INET_UDP_DIAG=m
|
||||||
|
CONFIG_IPV6=m
|
||||||
CONFIG_IPV6_ROUTER_PREF=y
|
CONFIG_IPV6_ROUTER_PREF=y
|
||||||
CONFIG_INET6_AH=m
|
CONFIG_INET6_AH=m
|
||||||
CONFIG_INET6_ESP=m
|
CONFIG_INET6_ESP=m
|
||||||
CONFIG_INET6_IPCOMP=m
|
CONFIG_INET6_IPCOMP=m
|
||||||
|
CONFIG_IPV6_ILA=m
|
||||||
CONFIG_IPV6_VTI=m
|
CONFIG_IPV6_VTI=m
|
||||||
CONFIG_IPV6_GRE=m
|
CONFIG_IPV6_GRE=m
|
||||||
CONFIG_NETFILTER=y
|
CONFIG_NETFILTER=y
|
||||||
|
@ -177,6 +179,7 @@ CONFIG_IP_SET_HASH_NETIFACE=m
|
||||||
CONFIG_IP_SET_LIST_SET=m
|
CONFIG_IP_SET_LIST_SET=m
|
||||||
CONFIG_NF_CONNTRACK_IPV4=m
|
CONFIG_NF_CONNTRACK_IPV4=m
|
||||||
CONFIG_NFT_CHAIN_ROUTE_IPV4=m
|
CONFIG_NFT_CHAIN_ROUTE_IPV4=m
|
||||||
|
CONFIG_NFT_DUP_IPV4=m
|
||||||
CONFIG_NF_TABLES_ARP=m
|
CONFIG_NF_TABLES_ARP=m
|
||||||
CONFIG_NF_LOG_ARP=m
|
CONFIG_NF_LOG_ARP=m
|
||||||
CONFIG_NFT_CHAIN_NAT_IPV4=m
|
CONFIG_NFT_CHAIN_NAT_IPV4=m
|
||||||
|
@ -204,6 +207,7 @@ CONFIG_IP_NF_ARPFILTER=m
|
||||||
CONFIG_IP_NF_ARP_MANGLE=m
|
CONFIG_IP_NF_ARP_MANGLE=m
|
||||||
CONFIG_NF_CONNTRACK_IPV6=m
|
CONFIG_NF_CONNTRACK_IPV6=m
|
||||||
CONFIG_NFT_CHAIN_ROUTE_IPV6=m
|
CONFIG_NFT_CHAIN_ROUTE_IPV6=m
|
||||||
|
CONFIG_NFT_DUP_IPV6=m
|
||||||
CONFIG_NFT_CHAIN_NAT_IPV6=m
|
CONFIG_NFT_CHAIN_NAT_IPV6=m
|
||||||
CONFIG_NFT_MASQ_IPV6=m
|
CONFIG_NFT_MASQ_IPV6=m
|
||||||
CONFIG_NFT_REDIR_IPV6=m
|
CONFIG_NFT_REDIR_IPV6=m
|
||||||
|
@ -269,6 +273,7 @@ CONFIG_NETLINK_DIAG=m
|
||||||
CONFIG_MPLS=y
|
CONFIG_MPLS=y
|
||||||
CONFIG_NET_MPLS_GSO=m
|
CONFIG_NET_MPLS_GSO=m
|
||||||
CONFIG_MPLS_ROUTING=m
|
CONFIG_MPLS_ROUTING=m
|
||||||
|
CONFIG_MPLS_IPTUNNEL=m
|
||||||
# CONFIG_WIRELESS is not set
|
# CONFIG_WIRELESS is not set
|
||||||
# CONFIG_UEVENT_HELPER is not set
|
# CONFIG_UEVENT_HELPER is not set
|
||||||
CONFIG_DEVTMPFS=y
|
CONFIG_DEVTMPFS=y
|
||||||
|
@ -345,6 +350,7 @@ CONFIG_HPLANCE=y
|
||||||
# CONFIG_NET_VENDOR_SAMSUNG is not set
|
# CONFIG_NET_VENDOR_SAMSUNG is not set
|
||||||
# CONFIG_NET_VENDOR_SEEQ is not set
|
# CONFIG_NET_VENDOR_SEEQ is not set
|
||||||
# CONFIG_NET_VENDOR_STMICRO is not set
|
# CONFIG_NET_VENDOR_STMICRO is not set
|
||||||
|
# CONFIG_NET_VENDOR_SYNOPSYS is not set
|
||||||
# CONFIG_NET_VENDOR_VIA is not set
|
# CONFIG_NET_VENDOR_VIA is not set
|
||||||
# CONFIG_NET_VENDOR_WIZNET is not set
|
# CONFIG_NET_VENDOR_WIZNET is not set
|
||||||
CONFIG_PPP=m
|
CONFIG_PPP=m
|
||||||
|
@ -497,6 +503,7 @@ CONFIG_TEST_USER_COPY=m
|
||||||
CONFIG_TEST_BPF=m
|
CONFIG_TEST_BPF=m
|
||||||
CONFIG_TEST_FIRMWARE=m
|
CONFIG_TEST_FIRMWARE=m
|
||||||
CONFIG_TEST_UDELAY=m
|
CONFIG_TEST_UDELAY=m
|
||||||
|
CONFIG_TEST_STATIC_KEYS=m
|
||||||
CONFIG_EARLY_PRINTK=y
|
CONFIG_EARLY_PRINTK=y
|
||||||
CONFIG_ENCRYPTED_KEYS=m
|
CONFIG_ENCRYPTED_KEYS=m
|
||||||
CONFIG_CRYPTO_RSA=m
|
CONFIG_CRYPTO_RSA=m
|
||||||
|
|
|
@ -10,6 +10,7 @@ CONFIG_LOG_BUF_SHIFT=16
|
||||||
# CONFIG_PID_NS is not set
|
# CONFIG_PID_NS is not set
|
||||||
# CONFIG_NET_NS is not set
|
# CONFIG_NET_NS is not set
|
||||||
CONFIG_BLK_DEV_INITRD=y
|
CONFIG_BLK_DEV_INITRD=y
|
||||||
|
CONFIG_USERFAULTFD=y
|
||||||
CONFIG_SLAB=y
|
CONFIG_SLAB=y
|
||||||
CONFIG_MODULES=y
|
CONFIG_MODULES=y
|
||||||
CONFIG_MODULE_UNLOAD=y
|
CONFIG_MODULE_UNLOAD=y
|
||||||
|
@ -54,7 +55,6 @@ CONFIG_NET_IPGRE_DEMUX=m
|
||||||
CONFIG_NET_IPGRE=m
|
CONFIG_NET_IPGRE=m
|
||||||
CONFIG_NET_IPVTI=m
|
CONFIG_NET_IPVTI=m
|
||||||
CONFIG_NET_FOU_IP_TUNNELS=y
|
CONFIG_NET_FOU_IP_TUNNELS=y
|
||||||
CONFIG_GENEVE_CORE=m
|
|
||||||
CONFIG_INET_AH=m
|
CONFIG_INET_AH=m
|
||||||
CONFIG_INET_ESP=m
|
CONFIG_INET_ESP=m
|
||||||
CONFIG_INET_IPCOMP=m
|
CONFIG_INET_IPCOMP=m
|
||||||
|
@ -64,10 +64,12 @@ CONFIG_INET_XFRM_MODE_BEET=m
|
||||||
# CONFIG_INET_LRO is not set
|
# CONFIG_INET_LRO is not set
|
||||||
CONFIG_INET_DIAG=m
|
CONFIG_INET_DIAG=m
|
||||||
CONFIG_INET_UDP_DIAG=m
|
CONFIG_INET_UDP_DIAG=m
|
||||||
|
CONFIG_IPV6=m
|
||||||
CONFIG_IPV6_ROUTER_PREF=y
|
CONFIG_IPV6_ROUTER_PREF=y
|
||||||
CONFIG_INET6_AH=m
|
CONFIG_INET6_AH=m
|
||||||
CONFIG_INET6_ESP=m
|
CONFIG_INET6_ESP=m
|
||||||
CONFIG_INET6_IPCOMP=m
|
CONFIG_INET6_IPCOMP=m
|
||||||
|
CONFIG_IPV6_ILA=m
|
||||||
CONFIG_IPV6_VTI=m
|
CONFIG_IPV6_VTI=m
|
||||||
CONFIG_IPV6_GRE=m
|
CONFIG_IPV6_GRE=m
|
||||||
CONFIG_NETFILTER=y
|
CONFIG_NETFILTER=y
|
||||||
|
@ -176,6 +178,7 @@ CONFIG_IP_SET_HASH_NETIFACE=m
|
||||||
CONFIG_IP_SET_LIST_SET=m
|
CONFIG_IP_SET_LIST_SET=m
|
||||||
CONFIG_NF_CONNTRACK_IPV4=m
|
CONFIG_NF_CONNTRACK_IPV4=m
|
||||||
CONFIG_NFT_CHAIN_ROUTE_IPV4=m
|
CONFIG_NFT_CHAIN_ROUTE_IPV4=m
|
||||||
|
CONFIG_NFT_DUP_IPV4=m
|
||||||
CONFIG_NF_TABLES_ARP=m
|
CONFIG_NF_TABLES_ARP=m
|
||||||
CONFIG_NF_LOG_ARP=m
|
CONFIG_NF_LOG_ARP=m
|
||||||
CONFIG_NFT_CHAIN_NAT_IPV4=m
|
CONFIG_NFT_CHAIN_NAT_IPV4=m
|
||||||
|
@ -203,6 +206,7 @@ CONFIG_IP_NF_ARPFILTER=m
|
||||||
CONFIG_IP_NF_ARP_MANGLE=m
|
CONFIG_IP_NF_ARP_MANGLE=m
|
||||||
CONFIG_NF_CONNTRACK_IPV6=m
|
CONFIG_NF_CONNTRACK_IPV6=m
|
||||||
CONFIG_NFT_CHAIN_ROUTE_IPV6=m
|
CONFIG_NFT_CHAIN_ROUTE_IPV6=m
|
||||||
|
CONFIG_NFT_DUP_IPV6=m
|
||||||
CONFIG_NFT_CHAIN_NAT_IPV6=m
|
CONFIG_NFT_CHAIN_NAT_IPV6=m
|
||||||
CONFIG_NFT_MASQ_IPV6=m
|
CONFIG_NFT_MASQ_IPV6=m
|
||||||
CONFIG_NFT_REDIR_IPV6=m
|
CONFIG_NFT_REDIR_IPV6=m
|
||||||
|
@ -271,6 +275,7 @@ CONFIG_NETLINK_DIAG=m
|
||||||
CONFIG_MPLS=y
|
CONFIG_MPLS=y
|
||||||
CONFIG_NET_MPLS_GSO=m
|
CONFIG_NET_MPLS_GSO=m
|
||||||
CONFIG_MPLS_ROUTING=m
|
CONFIG_MPLS_ROUTING=m
|
||||||
|
CONFIG_MPLS_IPTUNNEL=m
|
||||||
# CONFIG_WIRELESS is not set
|
# CONFIG_WIRELESS is not set
|
||||||
# CONFIG_UEVENT_HELPER is not set
|
# CONFIG_UEVENT_HELPER is not set
|
||||||
CONFIG_DEVTMPFS=y
|
CONFIG_DEVTMPFS=y
|
||||||
|
@ -364,6 +369,7 @@ CONFIG_MAC8390=y
|
||||||
# CONFIG_NET_VENDOR_SEEQ is not set
|
# CONFIG_NET_VENDOR_SEEQ is not set
|
||||||
# CONFIG_NET_VENDOR_SMSC is not set
|
# CONFIG_NET_VENDOR_SMSC is not set
|
||||||
# CONFIG_NET_VENDOR_STMICRO is not set
|
# CONFIG_NET_VENDOR_STMICRO is not set
|
||||||
|
# CONFIG_NET_VENDOR_SYNOPSYS is not set
|
||||||
# CONFIG_NET_VENDOR_VIA is not set
|
# CONFIG_NET_VENDOR_VIA is not set
|
||||||
# CONFIG_NET_VENDOR_WIZNET is not set
|
# CONFIG_NET_VENDOR_WIZNET is not set
|
||||||
CONFIG_PPP=m
|
CONFIG_PPP=m
|
||||||
|
@ -519,6 +525,7 @@ CONFIG_TEST_USER_COPY=m
|
||||||
CONFIG_TEST_BPF=m
|
CONFIG_TEST_BPF=m
|
||||||
CONFIG_TEST_FIRMWARE=m
|
CONFIG_TEST_FIRMWARE=m
|
||||||
CONFIG_TEST_UDELAY=m
|
CONFIG_TEST_UDELAY=m
|
||||||
|
CONFIG_TEST_STATIC_KEYS=m
|
||||||
CONFIG_EARLY_PRINTK=y
|
CONFIG_EARLY_PRINTK=y
|
||||||
CONFIG_ENCRYPTED_KEYS=m
|
CONFIG_ENCRYPTED_KEYS=m
|
||||||
CONFIG_CRYPTO_RSA=m
|
CONFIG_CRYPTO_RSA=m
|
||||||
|
|
|
@ -10,6 +10,7 @@ CONFIG_LOG_BUF_SHIFT=16
|
||||||
# CONFIG_PID_NS is not set
|
# CONFIG_PID_NS is not set
|
||||||
# CONFIG_NET_NS is not set
|
# CONFIG_NET_NS is not set
|
||||||
CONFIG_BLK_DEV_INITRD=y
|
CONFIG_BLK_DEV_INITRD=y
|
||||||
|
CONFIG_USERFAULTFD=y
|
||||||
CONFIG_SLAB=y
|
CONFIG_SLAB=y
|
||||||
CONFIG_MODULES=y
|
CONFIG_MODULES=y
|
||||||
CONFIG_MODULE_UNLOAD=y
|
CONFIG_MODULE_UNLOAD=y
|
||||||
|
@ -64,7 +65,6 @@ CONFIG_NET_IPGRE_DEMUX=m
|
||||||
CONFIG_NET_IPGRE=m
|
CONFIG_NET_IPGRE=m
|
||||||
CONFIG_NET_IPVTI=m
|
CONFIG_NET_IPVTI=m
|
||||||
CONFIG_NET_FOU_IP_TUNNELS=y
|
CONFIG_NET_FOU_IP_TUNNELS=y
|
||||||
CONFIG_GENEVE_CORE=m
|
|
||||||
CONFIG_INET_AH=m
|
CONFIG_INET_AH=m
|
||||||
CONFIG_INET_ESP=m
|
CONFIG_INET_ESP=m
|
||||||
CONFIG_INET_IPCOMP=m
|
CONFIG_INET_IPCOMP=m
|
||||||
|
@ -74,10 +74,12 @@ CONFIG_INET_XFRM_MODE_BEET=m
|
||||||
# CONFIG_INET_LRO is not set
|
# CONFIG_INET_LRO is not set
|
||||||
CONFIG_INET_DIAG=m
|
CONFIG_INET_DIAG=m
|
||||||
CONFIG_INET_UDP_DIAG=m
|
CONFIG_INET_UDP_DIAG=m
|
||||||
|
CONFIG_IPV6=m
|
||||||
CONFIG_IPV6_ROUTER_PREF=y
|
CONFIG_IPV6_ROUTER_PREF=y
|
||||||
CONFIG_INET6_AH=m
|
CONFIG_INET6_AH=m
|
||||||
CONFIG_INET6_ESP=m
|
CONFIG_INET6_ESP=m
|
||||||
CONFIG_INET6_IPCOMP=m
|
CONFIG_INET6_IPCOMP=m
|
||||||
|
CONFIG_IPV6_ILA=m
|
||||||
CONFIG_IPV6_VTI=m
|
CONFIG_IPV6_VTI=m
|
||||||
CONFIG_IPV6_GRE=m
|
CONFIG_IPV6_GRE=m
|
||||||
CONFIG_NETFILTER=y
|
CONFIG_NETFILTER=y
|
||||||
|
@ -186,6 +188,7 @@ CONFIG_IP_SET_HASH_NETIFACE=m
|
||||||
CONFIG_IP_SET_LIST_SET=m
|
CONFIG_IP_SET_LIST_SET=m
|
||||||
CONFIG_NF_CONNTRACK_IPV4=m
|
CONFIG_NF_CONNTRACK_IPV4=m
|
||||||
CONFIG_NFT_CHAIN_ROUTE_IPV4=m
|
CONFIG_NFT_CHAIN_ROUTE_IPV4=m
|
||||||
|
CONFIG_NFT_DUP_IPV4=m
|
||||||
CONFIG_NF_TABLES_ARP=m
|
CONFIG_NF_TABLES_ARP=m
|
||||||
CONFIG_NF_LOG_ARP=m
|
CONFIG_NF_LOG_ARP=m
|
||||||
CONFIG_NFT_CHAIN_NAT_IPV4=m
|
CONFIG_NFT_CHAIN_NAT_IPV4=m
|
||||||
|
@ -213,6 +216,7 @@ CONFIG_IP_NF_ARPFILTER=m
|
||||||
CONFIG_IP_NF_ARP_MANGLE=m
|
CONFIG_IP_NF_ARP_MANGLE=m
|
||||||
CONFIG_NF_CONNTRACK_IPV6=m
|
CONFIG_NF_CONNTRACK_IPV6=m
|
||||||
CONFIG_NFT_CHAIN_ROUTE_IPV6=m
|
CONFIG_NFT_CHAIN_ROUTE_IPV6=m
|
||||||
|
CONFIG_NFT_DUP_IPV6=m
|
||||||
CONFIG_NFT_CHAIN_NAT_IPV6=m
|
CONFIG_NFT_CHAIN_NAT_IPV6=m
|
||||||
CONFIG_NFT_MASQ_IPV6=m
|
CONFIG_NFT_MASQ_IPV6=m
|
||||||
CONFIG_NFT_REDIR_IPV6=m
|
CONFIG_NFT_REDIR_IPV6=m
|
||||||
|
@ -281,6 +285,7 @@ CONFIG_NETLINK_DIAG=m
|
||||||
CONFIG_MPLS=y
|
CONFIG_MPLS=y
|
||||||
CONFIG_NET_MPLS_GSO=m
|
CONFIG_NET_MPLS_GSO=m
|
||||||
CONFIG_MPLS_ROUTING=m
|
CONFIG_MPLS_ROUTING=m
|
||||||
|
CONFIG_MPLS_IPTUNNEL=m
|
||||||
# CONFIG_WIRELESS is not set
|
# CONFIG_WIRELESS is not set
|
||||||
# CONFIG_UEVENT_HELPER is not set
|
# CONFIG_UEVENT_HELPER is not set
|
||||||
CONFIG_DEVTMPFS=y
|
CONFIG_DEVTMPFS=y
|
||||||
|
@ -410,6 +415,7 @@ CONFIG_ZORRO8390=y
|
||||||
# CONFIG_NET_VENDOR_SEEQ is not set
|
# CONFIG_NET_VENDOR_SEEQ is not set
|
||||||
CONFIG_SMC91X=y
|
CONFIG_SMC91X=y
|
||||||
# CONFIG_NET_VENDOR_STMICRO is not set
|
# CONFIG_NET_VENDOR_STMICRO is not set
|
||||||
|
# CONFIG_NET_VENDOR_SYNOPSYS is not set
|
||||||
# CONFIG_NET_VENDOR_VIA is not set
|
# CONFIG_NET_VENDOR_VIA is not set
|
||||||
# CONFIG_NET_VENDOR_WIZNET is not set
|
# CONFIG_NET_VENDOR_WIZNET is not set
|
||||||
CONFIG_PLIP=m
|
CONFIG_PLIP=m
|
||||||
|
@ -599,6 +605,7 @@ CONFIG_TEST_USER_COPY=m
|
||||||
CONFIG_TEST_BPF=m
|
CONFIG_TEST_BPF=m
|
||||||
CONFIG_TEST_FIRMWARE=m
|
CONFIG_TEST_FIRMWARE=m
|
||||||
CONFIG_TEST_UDELAY=m
|
CONFIG_TEST_UDELAY=m
|
||||||
|
CONFIG_TEST_STATIC_KEYS=m
|
||||||
CONFIG_EARLY_PRINTK=y
|
CONFIG_EARLY_PRINTK=y
|
||||||
CONFIG_ENCRYPTED_KEYS=m
|
CONFIG_ENCRYPTED_KEYS=m
|
||||||
CONFIG_CRYPTO_RSA=m
|
CONFIG_CRYPTO_RSA=m
|
||||||
|
|
|
@ -10,6 +10,7 @@ CONFIG_LOG_BUF_SHIFT=16
|
||||||
# CONFIG_PID_NS is not set
|
# CONFIG_PID_NS is not set
|
||||||
# CONFIG_NET_NS is not set
|
# CONFIG_NET_NS is not set
|
||||||
CONFIG_BLK_DEV_INITRD=y
|
CONFIG_BLK_DEV_INITRD=y
|
||||||
|
CONFIG_USERFAULTFD=y
|
||||||
CONFIG_SLAB=y
|
CONFIG_SLAB=y
|
||||||
CONFIG_MODULES=y
|
CONFIG_MODULES=y
|
||||||
CONFIG_MODULE_UNLOAD=y
|
CONFIG_MODULE_UNLOAD=y
|
||||||
|
@ -52,7 +53,6 @@ CONFIG_NET_IPGRE_DEMUX=m
|
||||||
CONFIG_NET_IPGRE=m
|
CONFIG_NET_IPGRE=m
|
||||||
CONFIG_NET_IPVTI=m
|
CONFIG_NET_IPVTI=m
|
||||||
CONFIG_NET_FOU_IP_TUNNELS=y
|
CONFIG_NET_FOU_IP_TUNNELS=y
|
||||||
CONFIG_GENEVE_CORE=m
|
|
||||||
CONFIG_INET_AH=m
|
CONFIG_INET_AH=m
|
||||||
CONFIG_INET_ESP=m
|
CONFIG_INET_ESP=m
|
||||||
CONFIG_INET_IPCOMP=m
|
CONFIG_INET_IPCOMP=m
|
||||||
|
@ -62,10 +62,12 @@ CONFIG_INET_XFRM_MODE_BEET=m
|
||||||
# CONFIG_INET_LRO is not set
|
# CONFIG_INET_LRO is not set
|
||||||
CONFIG_INET_DIAG=m
|
CONFIG_INET_DIAG=m
|
||||||
CONFIG_INET_UDP_DIAG=m
|
CONFIG_INET_UDP_DIAG=m
|
||||||
|
CONFIG_IPV6=m
|
||||||
CONFIG_IPV6_ROUTER_PREF=y
|
CONFIG_IPV6_ROUTER_PREF=y
|
||||||
CONFIG_INET6_AH=m
|
CONFIG_INET6_AH=m
|
||||||
CONFIG_INET6_ESP=m
|
CONFIG_INET6_ESP=m
|
||||||
CONFIG_INET6_IPCOMP=m
|
CONFIG_INET6_IPCOMP=m
|
||||||
|
CONFIG_IPV6_ILA=m
|
||||||
CONFIG_IPV6_VTI=m
|
CONFIG_IPV6_VTI=m
|
||||||
CONFIG_IPV6_GRE=m
|
CONFIG_IPV6_GRE=m
|
||||||
CONFIG_NETFILTER=y
|
CONFIG_NETFILTER=y
|
||||||
|
@ -174,6 +176,7 @@ CONFIG_IP_SET_HASH_NETIFACE=m
|
||||||
CONFIG_IP_SET_LIST_SET=m
|
CONFIG_IP_SET_LIST_SET=m
|
||||||
CONFIG_NF_CONNTRACK_IPV4=m
|
CONFIG_NF_CONNTRACK_IPV4=m
|
||||||
CONFIG_NFT_CHAIN_ROUTE_IPV4=m
|
CONFIG_NFT_CHAIN_ROUTE_IPV4=m
|
||||||
|
CONFIG_NFT_DUP_IPV4=m
|
||||||
CONFIG_NF_TABLES_ARP=m
|
CONFIG_NF_TABLES_ARP=m
|
||||||
CONFIG_NF_LOG_ARP=m
|
CONFIG_NF_LOG_ARP=m
|
||||||
CONFIG_NFT_CHAIN_NAT_IPV4=m
|
CONFIG_NFT_CHAIN_NAT_IPV4=m
|
||||||
|
@ -201,6 +204,7 @@ CONFIG_IP_NF_ARPFILTER=m
|
||||||
CONFIG_IP_NF_ARP_MANGLE=m
|
CONFIG_IP_NF_ARP_MANGLE=m
|
||||||
CONFIG_NF_CONNTRACK_IPV6=m
|
CONFIG_NF_CONNTRACK_IPV6=m
|
||||||
CONFIG_NFT_CHAIN_ROUTE_IPV6=m
|
CONFIG_NFT_CHAIN_ROUTE_IPV6=m
|
||||||
|
CONFIG_NFT_DUP_IPV6=m
|
||||||
CONFIG_NFT_CHAIN_NAT_IPV6=m
|
CONFIG_NFT_CHAIN_NAT_IPV6=m
|
||||||
CONFIG_NFT_MASQ_IPV6=m
|
CONFIG_NFT_MASQ_IPV6=m
|
||||||
CONFIG_NFT_REDIR_IPV6=m
|
CONFIG_NFT_REDIR_IPV6=m
|
||||||
|
@ -266,6 +270,7 @@ CONFIG_NETLINK_DIAG=m
|
||||||
CONFIG_MPLS=y
|
CONFIG_MPLS=y
|
||||||
CONFIG_NET_MPLS_GSO=m
|
CONFIG_NET_MPLS_GSO=m
|
||||||
CONFIG_MPLS_ROUTING=m
|
CONFIG_MPLS_ROUTING=m
|
||||||
|
CONFIG_MPLS_IPTUNNEL=m
|
||||||
# CONFIG_WIRELESS is not set
|
# CONFIG_WIRELESS is not set
|
||||||
# CONFIG_UEVENT_HELPER is not set
|
# CONFIG_UEVENT_HELPER is not set
|
||||||
CONFIG_DEVTMPFS=y
|
CONFIG_DEVTMPFS=y
|
||||||
|
@ -343,6 +348,7 @@ CONFIG_MVME147_NET=y
|
||||||
# CONFIG_NET_VENDOR_SAMSUNG is not set
|
# CONFIG_NET_VENDOR_SAMSUNG is not set
|
||||||
# CONFIG_NET_VENDOR_SEEQ is not set
|
# CONFIG_NET_VENDOR_SEEQ is not set
|
||||||
# CONFIG_NET_VENDOR_STMICRO is not set
|
# CONFIG_NET_VENDOR_STMICRO is not set
|
||||||
|
# CONFIG_NET_VENDOR_SYNOPSYS is not set
|
||||||
# CONFIG_NET_VENDOR_VIA is not set
|
# CONFIG_NET_VENDOR_VIA is not set
|
||||||
# CONFIG_NET_VENDOR_WIZNET is not set
|
# CONFIG_NET_VENDOR_WIZNET is not set
|
||||||
CONFIG_PPP=m
|
CONFIG_PPP=m
|
||||||
|
@ -488,6 +494,7 @@ CONFIG_TEST_USER_COPY=m
|
||||||
CONFIG_TEST_BPF=m
|
CONFIG_TEST_BPF=m
|
||||||
CONFIG_TEST_FIRMWARE=m
|
CONFIG_TEST_FIRMWARE=m
|
||||||
CONFIG_TEST_UDELAY=m
|
CONFIG_TEST_UDELAY=m
|
||||||
|
CONFIG_TEST_STATIC_KEYS=m
|
||||||
CONFIG_EARLY_PRINTK=y
|
CONFIG_EARLY_PRINTK=y
|
||||||
CONFIG_ENCRYPTED_KEYS=m
|
CONFIG_ENCRYPTED_KEYS=m
|
||||||
CONFIG_CRYPTO_RSA=m
|
CONFIG_CRYPTO_RSA=m
|
||||||
|
|
|
@ -10,6 +10,7 @@ CONFIG_LOG_BUF_SHIFT=16
|
||||||
# CONFIG_PID_NS is not set
|
# CONFIG_PID_NS is not set
|
||||||
# CONFIG_NET_NS is not set
|
# CONFIG_NET_NS is not set
|
||||||
CONFIG_BLK_DEV_INITRD=y
|
CONFIG_BLK_DEV_INITRD=y
|
||||||
|
CONFIG_USERFAULTFD=y
|
||||||
CONFIG_SLAB=y
|
CONFIG_SLAB=y
|
||||||
CONFIG_MODULES=y
|
CONFIG_MODULES=y
|
||||||
CONFIG_MODULE_UNLOAD=y
|
CONFIG_MODULE_UNLOAD=y
|
||||||
|
@ -53,7 +54,6 @@ CONFIG_NET_IPGRE_DEMUX=m
|
||||||
CONFIG_NET_IPGRE=m
|
CONFIG_NET_IPGRE=m
|
||||||
CONFIG_NET_IPVTI=m
|
CONFIG_NET_IPVTI=m
|
||||||
CONFIG_NET_FOU_IP_TUNNELS=y
|
CONFIG_NET_FOU_IP_TUNNELS=y
|
||||||
CONFIG_GENEVE_CORE=m
|
|
||||||
CONFIG_INET_AH=m
|
CONFIG_INET_AH=m
|
||||||
CONFIG_INET_ESP=m
|
CONFIG_INET_ESP=m
|
||||||
CONFIG_INET_IPCOMP=m
|
CONFIG_INET_IPCOMP=m
|
||||||
|
@ -63,10 +63,12 @@ CONFIG_INET_XFRM_MODE_BEET=m
|
||||||
# CONFIG_INET_LRO is not set
|
# CONFIG_INET_LRO is not set
|
||||||
CONFIG_INET_DIAG=m
|
CONFIG_INET_DIAG=m
|
||||||
CONFIG_INET_UDP_DIAG=m
|
CONFIG_INET_UDP_DIAG=m
|
||||||
|
CONFIG_IPV6=m
|
||||||
CONFIG_IPV6_ROUTER_PREF=y
|
CONFIG_IPV6_ROUTER_PREF=y
|
||||||
CONFIG_INET6_AH=m
|
CONFIG_INET6_AH=m
|
||||||
CONFIG_INET6_ESP=m
|
CONFIG_INET6_ESP=m
|
||||||
CONFIG_INET6_IPCOMP=m
|
CONFIG_INET6_IPCOMP=m
|
||||||
|
CONFIG_IPV6_ILA=m
|
||||||
CONFIG_IPV6_VTI=m
|
CONFIG_IPV6_VTI=m
|
||||||
CONFIG_IPV6_GRE=m
|
CONFIG_IPV6_GRE=m
|
||||||
CONFIG_NETFILTER=y
|
CONFIG_NETFILTER=y
|
||||||
|
@ -175,6 +177,7 @@ CONFIG_IP_SET_HASH_NETIFACE=m
|
||||||
CONFIG_IP_SET_LIST_SET=m
|
CONFIG_IP_SET_LIST_SET=m
|
||||||
CONFIG_NF_CONNTRACK_IPV4=m
|
CONFIG_NF_CONNTRACK_IPV4=m
|
||||||
CONFIG_NFT_CHAIN_ROUTE_IPV4=m
|
CONFIG_NFT_CHAIN_ROUTE_IPV4=m
|
||||||
|
CONFIG_NFT_DUP_IPV4=m
|
||||||
CONFIG_NF_TABLES_ARP=m
|
CONFIG_NF_TABLES_ARP=m
|
||||||
CONFIG_NF_LOG_ARP=m
|
CONFIG_NF_LOG_ARP=m
|
||||||
CONFIG_NFT_CHAIN_NAT_IPV4=m
|
CONFIG_NFT_CHAIN_NAT_IPV4=m
|
||||||
|
@ -202,6 +205,7 @@ CONFIG_IP_NF_ARPFILTER=m
|
||||||
CONFIG_IP_NF_ARP_MANGLE=m
|
CONFIG_IP_NF_ARP_MANGLE=m
|
||||||
CONFIG_NF_CONNTRACK_IPV6=m
|
CONFIG_NF_CONNTRACK_IPV6=m
|
||||||
CONFIG_NFT_CHAIN_ROUTE_IPV6=m
|
CONFIG_NFT_CHAIN_ROUTE_IPV6=m
|
||||||
|
CONFIG_NFT_DUP_IPV6=m
|
||||||
CONFIG_NFT_CHAIN_NAT_IPV6=m
|
CONFIG_NFT_CHAIN_NAT_IPV6=m
|
||||||
CONFIG_NFT_MASQ_IPV6=m
|
CONFIG_NFT_MASQ_IPV6=m
|
||||||
CONFIG_NFT_REDIR_IPV6=m
|
CONFIG_NFT_REDIR_IPV6=m
|
||||||
|
@ -267,6 +271,7 @@ CONFIG_NETLINK_DIAG=m
|
||||||
CONFIG_MPLS=y
|
CONFIG_MPLS=y
|
||||||
CONFIG_NET_MPLS_GSO=m
|
CONFIG_NET_MPLS_GSO=m
|
||||||
CONFIG_MPLS_ROUTING=m
|
CONFIG_MPLS_ROUTING=m
|
||||||
|
CONFIG_MPLS_IPTUNNEL=m
|
||||||
# CONFIG_WIRELESS is not set
|
# CONFIG_WIRELESS is not set
|
||||||
# CONFIG_UEVENT_HELPER is not set
|
# CONFIG_UEVENT_HELPER is not set
|
||||||
CONFIG_DEVTMPFS=y
|
CONFIG_DEVTMPFS=y
|
||||||
|
@ -343,6 +348,7 @@ CONFIG_MVME16x_NET=y
|
||||||
# CONFIG_NET_VENDOR_SAMSUNG is not set
|
# CONFIG_NET_VENDOR_SAMSUNG is not set
|
||||||
# CONFIG_NET_VENDOR_SEEQ is not set
|
# CONFIG_NET_VENDOR_SEEQ is not set
|
||||||
# CONFIG_NET_VENDOR_STMICRO is not set
|
# CONFIG_NET_VENDOR_STMICRO is not set
|
||||||
|
# CONFIG_NET_VENDOR_SYNOPSYS is not set
|
||||||
# CONFIG_NET_VENDOR_VIA is not set
|
# CONFIG_NET_VENDOR_VIA is not set
|
||||||
# CONFIG_NET_VENDOR_WIZNET is not set
|
# CONFIG_NET_VENDOR_WIZNET is not set
|
||||||
CONFIG_PPP=m
|
CONFIG_PPP=m
|
||||||
|
@ -488,6 +494,7 @@ CONFIG_TEST_USER_COPY=m
|
||||||
CONFIG_TEST_BPF=m
|
CONFIG_TEST_BPF=m
|
||||||
CONFIG_TEST_FIRMWARE=m
|
CONFIG_TEST_FIRMWARE=m
|
||||||
CONFIG_TEST_UDELAY=m
|
CONFIG_TEST_UDELAY=m
|
||||||
|
CONFIG_TEST_STATIC_KEYS=m
|
||||||
CONFIG_EARLY_PRINTK=y
|
CONFIG_EARLY_PRINTK=y
|
||||||
CONFIG_ENCRYPTED_KEYS=m
|
CONFIG_ENCRYPTED_KEYS=m
|
||||||
CONFIG_CRYPTO_RSA=m
|
CONFIG_CRYPTO_RSA=m
|
||||||
|
|
|
@ -10,6 +10,7 @@ CONFIG_LOG_BUF_SHIFT=16
|
||||||
# CONFIG_PID_NS is not set
|
# CONFIG_PID_NS is not set
|
||||||
# CONFIG_NET_NS is not set
|
# CONFIG_NET_NS is not set
|
||||||
CONFIG_BLK_DEV_INITRD=y
|
CONFIG_BLK_DEV_INITRD=y
|
||||||
|
CONFIG_USERFAULTFD=y
|
||||||
CONFIG_SLAB=y
|
CONFIG_SLAB=y
|
||||||
CONFIG_MODULES=y
|
CONFIG_MODULES=y
|
||||||
CONFIG_MODULE_UNLOAD=y
|
CONFIG_MODULE_UNLOAD=y
|
||||||
|
@ -53,7 +54,6 @@ CONFIG_NET_IPGRE_DEMUX=m
|
||||||
CONFIG_NET_IPGRE=m
|
CONFIG_NET_IPGRE=m
|
||||||
CONFIG_NET_IPVTI=m
|
CONFIG_NET_IPVTI=m
|
||||||
CONFIG_NET_FOU_IP_TUNNELS=y
|
CONFIG_NET_FOU_IP_TUNNELS=y
|
||||||
CONFIG_GENEVE_CORE=m
|
|
||||||
CONFIG_INET_AH=m
|
CONFIG_INET_AH=m
|
||||||
CONFIG_INET_ESP=m
|
CONFIG_INET_ESP=m
|
||||||
CONFIG_INET_IPCOMP=m
|
CONFIG_INET_IPCOMP=m
|
||||||
|
@ -63,10 +63,12 @@ CONFIG_INET_XFRM_MODE_BEET=m
|
||||||
# CONFIG_INET_LRO is not set
|
# CONFIG_INET_LRO is not set
|
||||||
CONFIG_INET_DIAG=m
|
CONFIG_INET_DIAG=m
|
||||||
CONFIG_INET_UDP_DIAG=m
|
CONFIG_INET_UDP_DIAG=m
|
||||||
|
CONFIG_IPV6=m
|
||||||
CONFIG_IPV6_ROUTER_PREF=y
|
CONFIG_IPV6_ROUTER_PREF=y
|
||||||
CONFIG_INET6_AH=m
|
CONFIG_INET6_AH=m
|
||||||
CONFIG_INET6_ESP=m
|
CONFIG_INET6_ESP=m
|
||||||
CONFIG_INET6_IPCOMP=m
|
CONFIG_INET6_IPCOMP=m
|
||||||
|
CONFIG_IPV6_ILA=m
|
||||||
CONFIG_IPV6_VTI=m
|
CONFIG_IPV6_VTI=m
|
||||||
CONFIG_IPV6_GRE=m
|
CONFIG_IPV6_GRE=m
|
||||||
CONFIG_NETFILTER=y
|
CONFIG_NETFILTER=y
|
||||||
|
@ -175,6 +177,7 @@ CONFIG_IP_SET_HASH_NETIFACE=m
|
||||||
CONFIG_IP_SET_LIST_SET=m
|
CONFIG_IP_SET_LIST_SET=m
|
||||||
CONFIG_NF_CONNTRACK_IPV4=m
|
CONFIG_NF_CONNTRACK_IPV4=m
|
||||||
CONFIG_NFT_CHAIN_ROUTE_IPV4=m
|
CONFIG_NFT_CHAIN_ROUTE_IPV4=m
|
||||||
|
CONFIG_NFT_DUP_IPV4=m
|
||||||
CONFIG_NF_TABLES_ARP=m
|
CONFIG_NF_TABLES_ARP=m
|
||||||
CONFIG_NF_LOG_ARP=m
|
CONFIG_NF_LOG_ARP=m
|
||||||
CONFIG_NFT_CHAIN_NAT_IPV4=m
|
CONFIG_NFT_CHAIN_NAT_IPV4=m
|
||||||
|
@ -202,6 +205,7 @@ CONFIG_IP_NF_ARPFILTER=m
|
||||||
CONFIG_IP_NF_ARP_MANGLE=m
|
CONFIG_IP_NF_ARP_MANGLE=m
|
||||||
CONFIG_NF_CONNTRACK_IPV6=m
|
CONFIG_NF_CONNTRACK_IPV6=m
|
||||||
CONFIG_NFT_CHAIN_ROUTE_IPV6=m
|
CONFIG_NFT_CHAIN_ROUTE_IPV6=m
|
||||||
|
CONFIG_NFT_DUP_IPV6=m
|
||||||
CONFIG_NFT_CHAIN_NAT_IPV6=m
|
CONFIG_NFT_CHAIN_NAT_IPV6=m
|
||||||
CONFIG_NFT_MASQ_IPV6=m
|
CONFIG_NFT_MASQ_IPV6=m
|
||||||
CONFIG_NFT_REDIR_IPV6=m
|
CONFIG_NFT_REDIR_IPV6=m
|
||||||
|
@ -267,6 +271,7 @@ CONFIG_NETLINK_DIAG=m
|
||||||
CONFIG_MPLS=y
|
CONFIG_MPLS=y
|
||||||
CONFIG_NET_MPLS_GSO=m
|
CONFIG_NET_MPLS_GSO=m
|
||||||
CONFIG_MPLS_ROUTING=m
|
CONFIG_MPLS_ROUTING=m
|
||||||
|
CONFIG_MPLS_IPTUNNEL=m
|
||||||
# CONFIG_WIRELESS is not set
|
# CONFIG_WIRELESS is not set
|
||||||
# CONFIG_UEVENT_HELPER is not set
|
# CONFIG_UEVENT_HELPER is not set
|
||||||
CONFIG_DEVTMPFS=y
|
CONFIG_DEVTMPFS=y
|
||||||
|
@ -354,6 +359,7 @@ CONFIG_NE2000=y
|
||||||
# CONFIG_NET_VENDOR_SEEQ is not set
|
# CONFIG_NET_VENDOR_SEEQ is not set
|
||||||
# CONFIG_NET_VENDOR_SMSC is not set
|
# CONFIG_NET_VENDOR_SMSC is not set
|
||||||
# CONFIG_NET_VENDOR_STMICRO is not set
|
# CONFIG_NET_VENDOR_STMICRO is not set
|
||||||
|
# CONFIG_NET_VENDOR_SYNOPSYS is not set
|
||||||
# CONFIG_NET_VENDOR_VIA is not set
|
# CONFIG_NET_VENDOR_VIA is not set
|
||||||
# CONFIG_NET_VENDOR_WIZNET is not set
|
# CONFIG_NET_VENDOR_WIZNET is not set
|
||||||
CONFIG_PLIP=m
|
CONFIG_PLIP=m
|
||||||
|
@ -510,6 +516,7 @@ CONFIG_TEST_USER_COPY=m
|
||||||
CONFIG_TEST_BPF=m
|
CONFIG_TEST_BPF=m
|
||||||
CONFIG_TEST_FIRMWARE=m
|
CONFIG_TEST_FIRMWARE=m
|
||||||
CONFIG_TEST_UDELAY=m
|
CONFIG_TEST_UDELAY=m
|
||||||
|
CONFIG_TEST_STATIC_KEYS=m
|
||||||
CONFIG_EARLY_PRINTK=y
|
CONFIG_EARLY_PRINTK=y
|
||||||
CONFIG_ENCRYPTED_KEYS=m
|
CONFIG_ENCRYPTED_KEYS=m
|
||||||
CONFIG_CRYPTO_RSA=m
|
CONFIG_CRYPTO_RSA=m
|
||||||
|
|
|
@ -10,6 +10,7 @@ CONFIG_LOG_BUF_SHIFT=16
|
||||||
# CONFIG_PID_NS is not set
|
# CONFIG_PID_NS is not set
|
||||||
# CONFIG_NET_NS is not set
|
# CONFIG_NET_NS is not set
|
||||||
CONFIG_BLK_DEV_INITRD=y
|
CONFIG_BLK_DEV_INITRD=y
|
||||||
|
CONFIG_USERFAULTFD=y
|
||||||
CONFIG_SLAB=y
|
CONFIG_SLAB=y
|
||||||
CONFIG_MODULES=y
|
CONFIG_MODULES=y
|
||||||
CONFIG_MODULE_UNLOAD=y
|
CONFIG_MODULE_UNLOAD=y
|
||||||
|
@ -50,7 +51,6 @@ CONFIG_NET_IPGRE_DEMUX=m
|
||||||
CONFIG_NET_IPGRE=m
|
CONFIG_NET_IPGRE=m
|
||||||
CONFIG_NET_IPVTI=m
|
CONFIG_NET_IPVTI=m
|
||||||
CONFIG_NET_FOU_IP_TUNNELS=y
|
CONFIG_NET_FOU_IP_TUNNELS=y
|
||||||
CONFIG_GENEVE_CORE=m
|
|
||||||
CONFIG_INET_AH=m
|
CONFIG_INET_AH=m
|
||||||
CONFIG_INET_ESP=m
|
CONFIG_INET_ESP=m
|
||||||
CONFIG_INET_IPCOMP=m
|
CONFIG_INET_IPCOMP=m
|
||||||
|
@ -60,10 +60,12 @@ CONFIG_INET_XFRM_MODE_BEET=m
|
||||||
# CONFIG_INET_LRO is not set
|
# CONFIG_INET_LRO is not set
|
||||||
CONFIG_INET_DIAG=m
|
CONFIG_INET_DIAG=m
|
||||||
CONFIG_INET_UDP_DIAG=m
|
CONFIG_INET_UDP_DIAG=m
|
||||||
|
CONFIG_IPV6=m
|
||||||
CONFIG_IPV6_ROUTER_PREF=y
|
CONFIG_IPV6_ROUTER_PREF=y
|
||||||
CONFIG_INET6_AH=m
|
CONFIG_INET6_AH=m
|
||||||
CONFIG_INET6_ESP=m
|
CONFIG_INET6_ESP=m
|
||||||
CONFIG_INET6_IPCOMP=m
|
CONFIG_INET6_IPCOMP=m
|
||||||
|
CONFIG_IPV6_ILA=m
|
||||||
CONFIG_IPV6_VTI=m
|
CONFIG_IPV6_VTI=m
|
||||||
CONFIG_IPV6_GRE=m
|
CONFIG_IPV6_GRE=m
|
||||||
CONFIG_NETFILTER=y
|
CONFIG_NETFILTER=y
|
||||||
|
@ -172,6 +174,7 @@ CONFIG_IP_SET_HASH_NETIFACE=m
|
||||||
CONFIG_IP_SET_LIST_SET=m
|
CONFIG_IP_SET_LIST_SET=m
|
||||||
CONFIG_NF_CONNTRACK_IPV4=m
|
CONFIG_NF_CONNTRACK_IPV4=m
|
||||||
CONFIG_NFT_CHAIN_ROUTE_IPV4=m
|
CONFIG_NFT_CHAIN_ROUTE_IPV4=m
|
||||||
|
CONFIG_NFT_DUP_IPV4=m
|
||||||
CONFIG_NF_TABLES_ARP=m
|
CONFIG_NF_TABLES_ARP=m
|
||||||
CONFIG_NF_LOG_ARP=m
|
CONFIG_NF_LOG_ARP=m
|
||||||
CONFIG_NFT_CHAIN_NAT_IPV4=m
|
CONFIG_NFT_CHAIN_NAT_IPV4=m
|
||||||
|
@ -199,6 +202,7 @@ CONFIG_IP_NF_ARPFILTER=m
|
||||||
CONFIG_IP_NF_ARP_MANGLE=m
|
CONFIG_IP_NF_ARP_MANGLE=m
|
||||||
CONFIG_NF_CONNTRACK_IPV6=m
|
CONFIG_NF_CONNTRACK_IPV6=m
|
||||||
CONFIG_NFT_CHAIN_ROUTE_IPV6=m
|
CONFIG_NFT_CHAIN_ROUTE_IPV6=m
|
||||||
|
CONFIG_NFT_DUP_IPV6=m
|
||||||
CONFIG_NFT_CHAIN_NAT_IPV6=m
|
CONFIG_NFT_CHAIN_NAT_IPV6=m
|
||||||
CONFIG_NFT_MASQ_IPV6=m
|
CONFIG_NFT_MASQ_IPV6=m
|
||||||
CONFIG_NFT_REDIR_IPV6=m
|
CONFIG_NFT_REDIR_IPV6=m
|
||||||
|
@ -264,6 +268,7 @@ CONFIG_NETLINK_DIAG=m
|
||||||
CONFIG_MPLS=y
|
CONFIG_MPLS=y
|
||||||
CONFIG_NET_MPLS_GSO=m
|
CONFIG_NET_MPLS_GSO=m
|
||||||
CONFIG_MPLS_ROUTING=m
|
CONFIG_MPLS_ROUTING=m
|
||||||
|
CONFIG_MPLS_IPTUNNEL=m
|
||||||
# CONFIG_WIRELESS is not set
|
# CONFIG_WIRELESS is not set
|
||||||
# CONFIG_UEVENT_HELPER is not set
|
# CONFIG_UEVENT_HELPER is not set
|
||||||
CONFIG_DEVTMPFS=y
|
CONFIG_DEVTMPFS=y
|
||||||
|
@ -341,6 +346,7 @@ CONFIG_SUN3_82586=y
|
||||||
# CONFIG_NET_VENDOR_SEEQ is not set
|
# CONFIG_NET_VENDOR_SEEQ is not set
|
||||||
# CONFIG_NET_VENDOR_STMICRO is not set
|
# CONFIG_NET_VENDOR_STMICRO is not set
|
||||||
# CONFIG_NET_VENDOR_SUN is not set
|
# CONFIG_NET_VENDOR_SUN is not set
|
||||||
|
# CONFIG_NET_VENDOR_SYNOPSYS is not set
|
||||||
# CONFIG_NET_VENDOR_VIA is not set
|
# CONFIG_NET_VENDOR_VIA is not set
|
||||||
# CONFIG_NET_VENDOR_WIZNET is not set
|
# CONFIG_NET_VENDOR_WIZNET is not set
|
||||||
CONFIG_PPP=m
|
CONFIG_PPP=m
|
||||||
|
@ -489,6 +495,7 @@ CONFIG_TEST_USER_COPY=m
|
||||||
CONFIG_TEST_BPF=m
|
CONFIG_TEST_BPF=m
|
||||||
CONFIG_TEST_FIRMWARE=m
|
CONFIG_TEST_FIRMWARE=m
|
||||||
CONFIG_TEST_UDELAY=m
|
CONFIG_TEST_UDELAY=m
|
||||||
|
CONFIG_TEST_STATIC_KEYS=m
|
||||||
CONFIG_ENCRYPTED_KEYS=m
|
CONFIG_ENCRYPTED_KEYS=m
|
||||||
CONFIG_CRYPTO_RSA=m
|
CONFIG_CRYPTO_RSA=m
|
||||||
CONFIG_CRYPTO_MANAGER=y
|
CONFIG_CRYPTO_MANAGER=y
|
||||||
|
|
|
@ -10,6 +10,7 @@ CONFIG_LOG_BUF_SHIFT=16
|
||||||
# CONFIG_PID_NS is not set
|
# CONFIG_PID_NS is not set
|
||||||
# CONFIG_NET_NS is not set
|
# CONFIG_NET_NS is not set
|
||||||
CONFIG_BLK_DEV_INITRD=y
|
CONFIG_BLK_DEV_INITRD=y
|
||||||
|
CONFIG_USERFAULTFD=y
|
||||||
CONFIG_SLAB=y
|
CONFIG_SLAB=y
|
||||||
CONFIG_MODULES=y
|
CONFIG_MODULES=y
|
||||||
CONFIG_MODULE_UNLOAD=y
|
CONFIG_MODULE_UNLOAD=y
|
||||||
|
@ -50,7 +51,6 @@ CONFIG_NET_IPGRE_DEMUX=m
|
||||||
CONFIG_NET_IPGRE=m
|
CONFIG_NET_IPGRE=m
|
||||||
CONFIG_NET_IPVTI=m
|
CONFIG_NET_IPVTI=m
|
||||||
CONFIG_NET_FOU_IP_TUNNELS=y
|
CONFIG_NET_FOU_IP_TUNNELS=y
|
||||||
CONFIG_GENEVE_CORE=m
|
|
||||||
CONFIG_INET_AH=m
|
CONFIG_INET_AH=m
|
||||||
CONFIG_INET_ESP=m
|
CONFIG_INET_ESP=m
|
||||||
CONFIG_INET_IPCOMP=m
|
CONFIG_INET_IPCOMP=m
|
||||||
|
@ -60,10 +60,12 @@ CONFIG_INET_XFRM_MODE_BEET=m
|
||||||
# CONFIG_INET_LRO is not set
|
# CONFIG_INET_LRO is not set
|
||||||
CONFIG_INET_DIAG=m
|
CONFIG_INET_DIAG=m
|
||||||
CONFIG_INET_UDP_DIAG=m
|
CONFIG_INET_UDP_DIAG=m
|
||||||
|
CONFIG_IPV6=m
|
||||||
CONFIG_IPV6_ROUTER_PREF=y
|
CONFIG_IPV6_ROUTER_PREF=y
|
||||||
CONFIG_INET6_AH=m
|
CONFIG_INET6_AH=m
|
||||||
CONFIG_INET6_ESP=m
|
CONFIG_INET6_ESP=m
|
||||||
CONFIG_INET6_IPCOMP=m
|
CONFIG_INET6_IPCOMP=m
|
||||||
|
CONFIG_IPV6_ILA=m
|
||||||
CONFIG_IPV6_VTI=m
|
CONFIG_IPV6_VTI=m
|
||||||
CONFIG_IPV6_GRE=m
|
CONFIG_IPV6_GRE=m
|
||||||
CONFIG_NETFILTER=y
|
CONFIG_NETFILTER=y
|
||||||
|
@ -172,6 +174,7 @@ CONFIG_IP_SET_HASH_NETIFACE=m
|
||||||
CONFIG_IP_SET_LIST_SET=m
|
CONFIG_IP_SET_LIST_SET=m
|
||||||
CONFIG_NF_CONNTRACK_IPV4=m
|
CONFIG_NF_CONNTRACK_IPV4=m
|
||||||
CONFIG_NFT_CHAIN_ROUTE_IPV4=m
|
CONFIG_NFT_CHAIN_ROUTE_IPV4=m
|
||||||
|
CONFIG_NFT_DUP_IPV4=m
|
||||||
CONFIG_NF_TABLES_ARP=m
|
CONFIG_NF_TABLES_ARP=m
|
||||||
CONFIG_NF_LOG_ARP=m
|
CONFIG_NF_LOG_ARP=m
|
||||||
CONFIG_NFT_CHAIN_NAT_IPV4=m
|
CONFIG_NFT_CHAIN_NAT_IPV4=m
|
||||||
|
@ -199,6 +202,7 @@ CONFIG_IP_NF_ARPFILTER=m
|
||||||
CONFIG_IP_NF_ARP_MANGLE=m
|
CONFIG_IP_NF_ARP_MANGLE=m
|
||||||
CONFIG_NF_CONNTRACK_IPV6=m
|
CONFIG_NF_CONNTRACK_IPV6=m
|
||||||
CONFIG_NFT_CHAIN_ROUTE_IPV6=m
|
CONFIG_NFT_CHAIN_ROUTE_IPV6=m
|
||||||
|
CONFIG_NFT_DUP_IPV6=m
|
||||||
CONFIG_NFT_CHAIN_NAT_IPV6=m
|
CONFIG_NFT_CHAIN_NAT_IPV6=m
|
||||||
CONFIG_NFT_MASQ_IPV6=m
|
CONFIG_NFT_MASQ_IPV6=m
|
||||||
CONFIG_NFT_REDIR_IPV6=m
|
CONFIG_NFT_REDIR_IPV6=m
|
||||||
|
@ -264,6 +268,7 @@ CONFIG_NETLINK_DIAG=m
|
||||||
CONFIG_MPLS=y
|
CONFIG_MPLS=y
|
||||||
CONFIG_NET_MPLS_GSO=m
|
CONFIG_NET_MPLS_GSO=m
|
||||||
CONFIG_MPLS_ROUTING=m
|
CONFIG_MPLS_ROUTING=m
|
||||||
|
CONFIG_MPLS_IPTUNNEL=m
|
||||||
# CONFIG_WIRELESS is not set
|
# CONFIG_WIRELESS is not set
|
||||||
# CONFIG_UEVENT_HELPER is not set
|
# CONFIG_UEVENT_HELPER is not set
|
||||||
CONFIG_DEVTMPFS=y
|
CONFIG_DEVTMPFS=y
|
||||||
|
@ -341,6 +346,7 @@ CONFIG_SUN3LANCE=y
|
||||||
# CONFIG_NET_VENDOR_SAMSUNG is not set
|
# CONFIG_NET_VENDOR_SAMSUNG is not set
|
||||||
# CONFIG_NET_VENDOR_SEEQ is not set
|
# CONFIG_NET_VENDOR_SEEQ is not set
|
||||||
# CONFIG_NET_VENDOR_STMICRO is not set
|
# CONFIG_NET_VENDOR_STMICRO is not set
|
||||||
|
# CONFIG_NET_VENDOR_SYNOPSYS is not set
|
||||||
# CONFIG_NET_VENDOR_VIA is not set
|
# CONFIG_NET_VENDOR_VIA is not set
|
||||||
# CONFIG_NET_VENDOR_WIZNET is not set
|
# CONFIG_NET_VENDOR_WIZNET is not set
|
||||||
CONFIG_PPP=m
|
CONFIG_PPP=m
|
||||||
|
@ -489,6 +495,7 @@ CONFIG_TEST_USER_COPY=m
|
||||||
CONFIG_TEST_BPF=m
|
CONFIG_TEST_BPF=m
|
||||||
CONFIG_TEST_FIRMWARE=m
|
CONFIG_TEST_FIRMWARE=m
|
||||||
CONFIG_TEST_UDELAY=m
|
CONFIG_TEST_UDELAY=m
|
||||||
|
CONFIG_TEST_STATIC_KEYS=m
|
||||||
CONFIG_EARLY_PRINTK=y
|
CONFIG_EARLY_PRINTK=y
|
||||||
CONFIG_ENCRYPTED_KEYS=m
|
CONFIG_ENCRYPTED_KEYS=m
|
||||||
CONFIG_CRYPTO_RSA=m
|
CONFIG_CRYPTO_RSA=m
|
||||||
|
|
|
@ -4,4 +4,34 @@
|
||||||
#define __ALIGN .align 4
|
#define __ALIGN .align 4
|
||||||
#define __ALIGN_STR ".align 4"
|
#define __ALIGN_STR ".align 4"
|
||||||
|
|
||||||
|
/*
|
||||||
|
* Make sure the compiler doesn't do anything stupid with the
|
||||||
|
* arguments on the stack - they are owned by the *caller*, not
|
||||||
|
* the callee. This just fools gcc into not spilling into them,
|
||||||
|
* and keeps it from doing tailcall recursion and/or using the
|
||||||
|
* stack slots for temporaries, since they are live and "used"
|
||||||
|
* all the way to the end of the function.
|
||||||
|
*/
|
||||||
|
#define asmlinkage_protect(n, ret, args...) \
|
||||||
|
__asmlinkage_protect##n(ret, ##args)
|
||||||
|
#define __asmlinkage_protect_n(ret, args...) \
|
||||||
|
__asm__ __volatile__ ("" : "=r" (ret) : "0" (ret), ##args)
|
||||||
|
#define __asmlinkage_protect0(ret) \
|
||||||
|
__asmlinkage_protect_n(ret)
|
||||||
|
#define __asmlinkage_protect1(ret, arg1) \
|
||||||
|
__asmlinkage_protect_n(ret, "m" (arg1))
|
||||||
|
#define __asmlinkage_protect2(ret, arg1, arg2) \
|
||||||
|
__asmlinkage_protect_n(ret, "m" (arg1), "m" (arg2))
|
||||||
|
#define __asmlinkage_protect3(ret, arg1, arg2, arg3) \
|
||||||
|
__asmlinkage_protect_n(ret, "m" (arg1), "m" (arg2), "m" (arg3))
|
||||||
|
#define __asmlinkage_protect4(ret, arg1, arg2, arg3, arg4) \
|
||||||
|
__asmlinkage_protect_n(ret, "m" (arg1), "m" (arg2), "m" (arg3), \
|
||||||
|
"m" (arg4))
|
||||||
|
#define __asmlinkage_protect5(ret, arg1, arg2, arg3, arg4, arg5) \
|
||||||
|
__asmlinkage_protect_n(ret, "m" (arg1), "m" (arg2), "m" (arg3), \
|
||||||
|
"m" (arg4), "m" (arg5))
|
||||||
|
#define __asmlinkage_protect6(ret, arg1, arg2, arg3, arg4, arg5, arg6) \
|
||||||
|
__asmlinkage_protect_n(ret, "m" (arg1), "m" (arg2), "m" (arg3), \
|
||||||
|
"m" (arg4), "m" (arg5), "m" (arg6))
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
|
|
@ -4,7 +4,7 @@
|
||||||
#include <uapi/asm/unistd.h>
|
#include <uapi/asm/unistd.h>
|
||||||
|
|
||||||
|
|
||||||
#define NR_syscalls 356
|
#define NR_syscalls 375
|
||||||
|
|
||||||
#define __ARCH_WANT_OLD_READDIR
|
#define __ARCH_WANT_OLD_READDIR
|
||||||
#define __ARCH_WANT_OLD_STAT
|
#define __ARCH_WANT_OLD_STAT
|
||||||
|
|
|
@ -361,5 +361,24 @@
|
||||||
#define __NR_memfd_create 353
|
#define __NR_memfd_create 353
|
||||||
#define __NR_bpf 354
|
#define __NR_bpf 354
|
||||||
#define __NR_execveat 355
|
#define __NR_execveat 355
|
||||||
|
#define __NR_socket 356
|
||||||
|
#define __NR_socketpair 357
|
||||||
|
#define __NR_bind 358
|
||||||
|
#define __NR_connect 359
|
||||||
|
#define __NR_listen 360
|
||||||
|
#define __NR_accept4 361
|
||||||
|
#define __NR_getsockopt 362
|
||||||
|
#define __NR_setsockopt 363
|
||||||
|
#define __NR_getsockname 364
|
||||||
|
#define __NR_getpeername 365
|
||||||
|
#define __NR_sendto 366
|
||||||
|
#define __NR_sendmsg 367
|
||||||
|
#define __NR_recvfrom 368
|
||||||
|
#define __NR_recvmsg 369
|
||||||
|
#define __NR_shutdown 370
|
||||||
|
#define __NR_recvmmsg 371
|
||||||
|
#define __NR_sendmmsg 372
|
||||||
|
#define __NR_userfaultfd 373
|
||||||
|
#define __NR_membarrier 374
|
||||||
|
|
||||||
#endif /* _UAPI_ASM_M68K_UNISTD_H_ */
|
#endif /* _UAPI_ASM_M68K_UNISTD_H_ */
|
||||||
|
|
|
@ -376,4 +376,22 @@ ENTRY(sys_call_table)
|
||||||
.long sys_memfd_create
|
.long sys_memfd_create
|
||||||
.long sys_bpf
|
.long sys_bpf
|
||||||
.long sys_execveat /* 355 */
|
.long sys_execveat /* 355 */
|
||||||
|
.long sys_socket
|
||||||
|
.long sys_socketpair
|
||||||
|
.long sys_bind
|
||||||
|
.long sys_connect
|
||||||
|
.long sys_listen /* 360 */
|
||||||
|
.long sys_accept4
|
||||||
|
.long sys_getsockopt
|
||||||
|
.long sys_setsockopt
|
||||||
|
.long sys_getsockname
|
||||||
|
.long sys_getpeername /* 365 */
|
||||||
|
.long sys_sendto
|
||||||
|
.long sys_sendmsg
|
||||||
|
.long sys_recvfrom
|
||||||
|
.long sys_recvmsg
|
||||||
|
.long sys_shutdown /* 370 */
|
||||||
|
.long sys_recvmmsg
|
||||||
|
.long sys_sendmmsg
|
||||||
|
.long sys_userfaultfd
|
||||||
|
.long sys_membarrier
|
||||||
|
|
|
@ -54,4 +54,5 @@ generic-y += ucontext.h
|
||||||
generic-y += unaligned.h
|
generic-y += unaligned.h
|
||||||
generic-y += user.h
|
generic-y += user.h
|
||||||
generic-y += vga.h
|
generic-y += vga.h
|
||||||
|
generic-y += word-at-a-time.h
|
||||||
generic-y += xor.h
|
generic-y += xor.h
|
||||||
|
|
|
@ -10,3 +10,4 @@ generic-y += mm-arch-hooks.h
|
||||||
generic-y += preempt.h
|
generic-y += preempt.h
|
||||||
generic-y += syscalls.h
|
generic-y += syscalls.h
|
||||||
generic-y += trace_clock.h
|
generic-y += trace_clock.h
|
||||||
|
generic-y += word-at-a-time.h
|
||||||
|
|
|
@ -293,8 +293,26 @@ static int __init ath79_misc_intc_of_init(
|
||||||
|
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
IRQCHIP_DECLARE(ath79_misc_intc, "qca,ar7100-misc-intc",
|
|
||||||
ath79_misc_intc_of_init);
|
static int __init ar7100_misc_intc_of_init(
|
||||||
|
struct device_node *node, struct device_node *parent)
|
||||||
|
{
|
||||||
|
ath79_misc_irq_chip.irq_mask_ack = ar71xx_misc_irq_mask;
|
||||||
|
return ath79_misc_intc_of_init(node, parent);
|
||||||
|
}
|
||||||
|
|
||||||
|
IRQCHIP_DECLARE(ar7100_misc_intc, "qca,ar7100-misc-intc",
|
||||||
|
ar7100_misc_intc_of_init);
|
||||||
|
|
||||||
|
static int __init ar7240_misc_intc_of_init(
|
||||||
|
struct device_node *node, struct device_node *parent)
|
||||||
|
{
|
||||||
|
ath79_misc_irq_chip.irq_ack = ar724x_misc_irq_ack;
|
||||||
|
return ath79_misc_intc_of_init(node, parent);
|
||||||
|
}
|
||||||
|
|
||||||
|
IRQCHIP_DECLARE(ar7240_misc_intc, "qca,ar7240-misc-intc",
|
||||||
|
ar7240_misc_intc_of_init);
|
||||||
|
|
||||||
static int __init ar79_cpu_intc_of_init(
|
static int __init ar79_cpu_intc_of_init(
|
||||||
struct device_node *node, struct device_node *parent)
|
struct device_node *node, struct device_node *parent)
|
||||||
|
|
|
@ -933,7 +933,7 @@ void __init plat_mem_setup(void)
|
||||||
while ((boot_mem_map.nr_map < BOOT_MEM_MAP_MAX)
|
while ((boot_mem_map.nr_map < BOOT_MEM_MAP_MAX)
|
||||||
&& (total < MAX_MEMORY)) {
|
&& (total < MAX_MEMORY)) {
|
||||||
memory = cvmx_bootmem_phy_alloc(mem_alloc_size,
|
memory = cvmx_bootmem_phy_alloc(mem_alloc_size,
|
||||||
__pa_symbol(&__init_end), -1,
|
__pa_symbol(&_end), -1,
|
||||||
0x100000,
|
0x100000,
|
||||||
CVMX_BOOTMEM_FLAG_NO_LOCKING);
|
CVMX_BOOTMEM_FLAG_NO_LOCKING);
|
||||||
if (memory >= 0) {
|
if (memory >= 0) {
|
||||||
|
|
|
@ -17,4 +17,5 @@ generic-y += segment.h
|
||||||
generic-y += serial.h
|
generic-y += serial.h
|
||||||
generic-y += trace_clock.h
|
generic-y += trace_clock.h
|
||||||
generic-y += user.h
|
generic-y += user.h
|
||||||
|
generic-y += word-at-a-time.h
|
||||||
generic-y += xor.h
|
generic-y += xor.h
|
||||||
|
|
|
@ -20,6 +20,9 @@
|
||||||
#ifndef cpu_has_tlb
|
#ifndef cpu_has_tlb
|
||||||
#define cpu_has_tlb (cpu_data[0].options & MIPS_CPU_TLB)
|
#define cpu_has_tlb (cpu_data[0].options & MIPS_CPU_TLB)
|
||||||
#endif
|
#endif
|
||||||
|
#ifndef cpu_has_ftlb
|
||||||
|
#define cpu_has_ftlb (cpu_data[0].options & MIPS_CPU_FTLB)
|
||||||
|
#endif
|
||||||
#ifndef cpu_has_tlbinv
|
#ifndef cpu_has_tlbinv
|
||||||
#define cpu_has_tlbinv (cpu_data[0].options & MIPS_CPU_TLBINV)
|
#define cpu_has_tlbinv (cpu_data[0].options & MIPS_CPU_TLBINV)
|
||||||
#endif
|
#endif
|
||||||
|
|
|
@ -385,6 +385,7 @@ enum cpu_type_enum {
|
||||||
#define MIPS_CPU_CDMM 0x4000000000ull /* CPU has Common Device Memory Map */
|
#define MIPS_CPU_CDMM 0x4000000000ull /* CPU has Common Device Memory Map */
|
||||||
#define MIPS_CPU_BP_GHIST 0x8000000000ull /* R12K+ Branch Prediction Global History */
|
#define MIPS_CPU_BP_GHIST 0x8000000000ull /* R12K+ Branch Prediction Global History */
|
||||||
#define MIPS_CPU_SP 0x10000000000ull /* Small (1KB) page support */
|
#define MIPS_CPU_SP 0x10000000000ull /* Small (1KB) page support */
|
||||||
|
#define MIPS_CPU_FTLB 0x20000000000ull /* CPU has Fixed-page-size TLB */
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* CPU ASE encodings
|
* CPU ASE encodings
|
||||||
|
|
|
@ -256,6 +256,7 @@ static inline void __iomem * __ioremap_mode(phys_addr_t offset, unsigned long si
|
||||||
*/
|
*/
|
||||||
#define ioremap_nocache(offset, size) \
|
#define ioremap_nocache(offset, size) \
|
||||||
__ioremap_mode((offset), (size), _CACHE_UNCACHED)
|
__ioremap_mode((offset), (size), _CACHE_UNCACHED)
|
||||||
|
#define ioremap_uc ioremap_nocache
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* ioremap_cachable - map bus memory into CPU space
|
* ioremap_cachable - map bus memory into CPU space
|
||||||
|
|
|
@ -65,6 +65,15 @@ static inline void write_maar_pair(unsigned idx, phys_addr_t lower,
|
||||||
back_to_back_c0_hazard();
|
back_to_back_c0_hazard();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* maar_init() - initialise MAARs
|
||||||
|
*
|
||||||
|
* Performs initialisation of MAARs for the current CPU, making use of the
|
||||||
|
* platforms implementation of platform_maar_init where necessary and
|
||||||
|
* duplicating the setup it provides on secondary CPUs.
|
||||||
|
*/
|
||||||
|
extern void maar_init(void);
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* struct maar_config - MAAR configuration data
|
* struct maar_config - MAAR configuration data
|
||||||
* @lower: The lowest address that the MAAR pair will affect. Must be
|
* @lower: The lowest address that the MAAR pair will affect. Must be
|
||||||
|
|
|
@ -194,6 +194,7 @@ BUILD_CM_RW(reg3_mask, MIPS_CM_GCB_OFS + 0xc8)
|
||||||
BUILD_CM_R_(gic_status, MIPS_CM_GCB_OFS + 0xd0)
|
BUILD_CM_R_(gic_status, MIPS_CM_GCB_OFS + 0xd0)
|
||||||
BUILD_CM_R_(cpc_status, MIPS_CM_GCB_OFS + 0xf0)
|
BUILD_CM_R_(cpc_status, MIPS_CM_GCB_OFS + 0xf0)
|
||||||
BUILD_CM_RW(l2_config, MIPS_CM_GCB_OFS + 0x130)
|
BUILD_CM_RW(l2_config, MIPS_CM_GCB_OFS + 0x130)
|
||||||
|
BUILD_CM_RW(sys_config2, MIPS_CM_GCB_OFS + 0x150)
|
||||||
|
|
||||||
/* Core Local & Core Other register accessor functions */
|
/* Core Local & Core Other register accessor functions */
|
||||||
BUILD_CM_Cx_RW(reset_release, 0x00)
|
BUILD_CM_Cx_RW(reset_release, 0x00)
|
||||||
|
@ -316,6 +317,10 @@ BUILD_CM_Cx_R_(tcid_8_priority, 0x80)
|
||||||
#define CM_GCR_L2_CONFIG_ASSOC_SHF 0
|
#define CM_GCR_L2_CONFIG_ASSOC_SHF 0
|
||||||
#define CM_GCR_L2_CONFIG_ASSOC_MSK (_ULCAST_(0xff) << 0)
|
#define CM_GCR_L2_CONFIG_ASSOC_MSK (_ULCAST_(0xff) << 0)
|
||||||
|
|
||||||
|
/* GCR_SYS_CONFIG2 register fields */
|
||||||
|
#define CM_GCR_SYS_CONFIG2_MAXVPW_SHF 0
|
||||||
|
#define CM_GCR_SYS_CONFIG2_MAXVPW_MSK (_ULCAST_(0xf) << 0)
|
||||||
|
|
||||||
/* GCR_Cx_COHERENCE register fields */
|
/* GCR_Cx_COHERENCE register fields */
|
||||||
#define CM_GCR_Cx_COHERENCE_COHDOMAINEN_SHF 0
|
#define CM_GCR_Cx_COHERENCE_COHDOMAINEN_SHF 0
|
||||||
#define CM_GCR_Cx_COHERENCE_COHDOMAINEN_MSK (_ULCAST_(0xff) << 0)
|
#define CM_GCR_Cx_COHERENCE_COHDOMAINEN_MSK (_ULCAST_(0xff) << 0)
|
||||||
|
@ -405,4 +410,38 @@ static inline int mips_cm_revision(void)
|
||||||
return read_gcr_rev();
|
return read_gcr_rev();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* mips_cm_max_vp_width() - return the width in bits of VP indices
|
||||||
|
*
|
||||||
|
* Return: the width, in bits, of VP indices in fields that combine core & VP
|
||||||
|
* indices.
|
||||||
|
*/
|
||||||
|
static inline unsigned int mips_cm_max_vp_width(void)
|
||||||
|
{
|
||||||
|
extern int smp_num_siblings;
|
||||||
|
|
||||||
|
if (mips_cm_revision() >= CM_REV_CM3)
|
||||||
|
return read_gcr_sys_config2() & CM_GCR_SYS_CONFIG2_MAXVPW_MSK;
|
||||||
|
|
||||||
|
return smp_num_siblings;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* mips_cm_vp_id() - calculate the hardware VP ID for a CPU
|
||||||
|
* @cpu: the CPU whose VP ID to calculate
|
||||||
|
*
|
||||||
|
* Hardware such as the GIC uses identifiers for VPs which may not match the
|
||||||
|
* CPU numbers used by Linux. This function calculates the hardware VP
|
||||||
|
* identifier corresponding to a given CPU.
|
||||||
|
*
|
||||||
|
* Return: the VP ID for the CPU.
|
||||||
|
*/
|
||||||
|
static inline unsigned int mips_cm_vp_id(unsigned int cpu)
|
||||||
|
{
|
||||||
|
unsigned int core = cpu_data[cpu].core;
|
||||||
|
unsigned int vp = cpu_vpe_id(&cpu_data[cpu]);
|
||||||
|
|
||||||
|
return (core * mips_cm_max_vp_width()) + vp;
|
||||||
|
}
|
||||||
|
|
||||||
#endif /* __MIPS_ASM_MIPS_CM_H__ */
|
#endif /* __MIPS_ASM_MIPS_CM_H__ */
|
||||||
|
|
|
@ -487,6 +487,8 @@
|
||||||
|
|
||||||
/* Bits specific to the MIPS32/64 PRA. */
|
/* Bits specific to the MIPS32/64 PRA. */
|
||||||
#define MIPS_CONF_MT (_ULCAST_(7) << 7)
|
#define MIPS_CONF_MT (_ULCAST_(7) << 7)
|
||||||
|
#define MIPS_CONF_MT_TLB (_ULCAST_(1) << 7)
|
||||||
|
#define MIPS_CONF_MT_FTLB (_ULCAST_(4) << 7)
|
||||||
#define MIPS_CONF_AR (_ULCAST_(7) << 10)
|
#define MIPS_CONF_AR (_ULCAST_(7) << 10)
|
||||||
#define MIPS_CONF_AT (_ULCAST_(3) << 13)
|
#define MIPS_CONF_AT (_ULCAST_(3) << 13)
|
||||||
#define MIPS_CONF_M (_ULCAST_(1) << 31)
|
#define MIPS_CONF_M (_ULCAST_(1) << 31)
|
||||||
|
|
|
@ -13,16 +13,15 @@
|
||||||
|
|
||||||
#define __SWAB_64_THRU_32__
|
#define __SWAB_64_THRU_32__
|
||||||
|
|
||||||
#if (defined(__mips_isa_rev) && (__mips_isa_rev >= 2)) || \
|
#if !defined(__mips16) && \
|
||||||
defined(_MIPS_ARCH_LOONGSON3A)
|
((defined(__mips_isa_rev) && (__mips_isa_rev >= 2)) || \
|
||||||
|
defined(_MIPS_ARCH_LOONGSON3A))
|
||||||
|
|
||||||
static inline __attribute__((nomips16)) __attribute_const__
|
static inline __attribute_const__ __u16 __arch_swab16(__u16 x)
|
||||||
__u16 __arch_swab16(__u16 x)
|
|
||||||
{
|
{
|
||||||
__asm__(
|
__asm__(
|
||||||
" .set push \n"
|
" .set push \n"
|
||||||
" .set arch=mips32r2 \n"
|
" .set arch=mips32r2 \n"
|
||||||
" .set nomips16 \n"
|
|
||||||
" wsbh %0, %1 \n"
|
" wsbh %0, %1 \n"
|
||||||
" .set pop \n"
|
" .set pop \n"
|
||||||
: "=r" (x)
|
: "=r" (x)
|
||||||
|
@ -32,13 +31,11 @@ static inline __attribute__((nomips16)) __attribute_const__
|
||||||
}
|
}
|
||||||
#define __arch_swab16 __arch_swab16
|
#define __arch_swab16 __arch_swab16
|
||||||
|
|
||||||
static inline __attribute__((nomips16)) __attribute_const__
|
static inline __attribute_const__ __u32 __arch_swab32(__u32 x)
|
||||||
__u32 __arch_swab32(__u32 x)
|
|
||||||
{
|
{
|
||||||
__asm__(
|
__asm__(
|
||||||
" .set push \n"
|
" .set push \n"
|
||||||
" .set arch=mips32r2 \n"
|
" .set arch=mips32r2 \n"
|
||||||
" .set nomips16 \n"
|
|
||||||
" wsbh %0, %1 \n"
|
" wsbh %0, %1 \n"
|
||||||
" rotr %0, %0, 16 \n"
|
" rotr %0, %0, 16 \n"
|
||||||
" .set pop \n"
|
" .set pop \n"
|
||||||
|
@ -54,13 +51,11 @@ static inline __attribute__((nomips16)) __attribute_const__
|
||||||
* 64-bit kernel on r2 CPUs.
|
* 64-bit kernel on r2 CPUs.
|
||||||
*/
|
*/
|
||||||
#ifdef __mips64
|
#ifdef __mips64
|
||||||
static inline __attribute__((nomips16)) __attribute_const__
|
static inline __attribute_const__ __u64 __arch_swab64(__u64 x)
|
||||||
__u64 __arch_swab64(__u64 x)
|
|
||||||
{
|
{
|
||||||
__asm__(
|
__asm__(
|
||||||
" .set push \n"
|
" .set push \n"
|
||||||
" .set arch=mips64r2 \n"
|
" .set arch=mips64r2 \n"
|
||||||
" .set nomips16 \n"
|
|
||||||
" dsbh %0, %1 \n"
|
" dsbh %0, %1 \n"
|
||||||
" dshd %0, %0 \n"
|
" dshd %0, %0 \n"
|
||||||
" .set pop \n"
|
" .set pop \n"
|
||||||
|
@ -71,5 +66,5 @@ static inline __attribute__((nomips16)) __attribute_const__
|
||||||
}
|
}
|
||||||
#define __arch_swab64 __arch_swab64
|
#define __arch_swab64 __arch_swab64
|
||||||
#endif /* __mips64 */
|
#endif /* __mips64 */
|
||||||
#endif /* MIPS R2 or newer or Loongson 3A */
|
#endif /* (not __mips16) and (MIPS R2 or newer or Loongson 3A) */
|
||||||
#endif /* _ASM_SWAB_H */
|
#endif /* _ASM_SWAB_H */
|
||||||
|
|
|
@ -377,16 +377,18 @@
|
||||||
#define __NR_memfd_create (__NR_Linux + 354)
|
#define __NR_memfd_create (__NR_Linux + 354)
|
||||||
#define __NR_bpf (__NR_Linux + 355)
|
#define __NR_bpf (__NR_Linux + 355)
|
||||||
#define __NR_execveat (__NR_Linux + 356)
|
#define __NR_execveat (__NR_Linux + 356)
|
||||||
|
#define __NR_userfaultfd (__NR_Linux + 357)
|
||||||
|
#define __NR_membarrier (__NR_Linux + 358)
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Offset of the last Linux o32 flavoured syscall
|
* Offset of the last Linux o32 flavoured syscall
|
||||||
*/
|
*/
|
||||||
#define __NR_Linux_syscalls 356
|
#define __NR_Linux_syscalls 358
|
||||||
|
|
||||||
#endif /* _MIPS_SIM == _MIPS_SIM_ABI32 */
|
#endif /* _MIPS_SIM == _MIPS_SIM_ABI32 */
|
||||||
|
|
||||||
#define __NR_O32_Linux 4000
|
#define __NR_O32_Linux 4000
|
||||||
#define __NR_O32_Linux_syscalls 356
|
#define __NR_O32_Linux_syscalls 358
|
||||||
|
|
||||||
#if _MIPS_SIM == _MIPS_SIM_ABI64
|
#if _MIPS_SIM == _MIPS_SIM_ABI64
|
||||||
|
|
||||||
|
@ -711,16 +713,18 @@
|
||||||
#define __NR_memfd_create (__NR_Linux + 314)
|
#define __NR_memfd_create (__NR_Linux + 314)
|
||||||
#define __NR_bpf (__NR_Linux + 315)
|
#define __NR_bpf (__NR_Linux + 315)
|
||||||
#define __NR_execveat (__NR_Linux + 316)
|
#define __NR_execveat (__NR_Linux + 316)
|
||||||
|
#define __NR_userfaultfd (__NR_Linux + 317)
|
||||||
|
#define __NR_membarrier (__NR_Linux + 318)
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Offset of the last Linux 64-bit flavoured syscall
|
* Offset of the last Linux 64-bit flavoured syscall
|
||||||
*/
|
*/
|
||||||
#define __NR_Linux_syscalls 316
|
#define __NR_Linux_syscalls 318
|
||||||
|
|
||||||
#endif /* _MIPS_SIM == _MIPS_SIM_ABI64 */
|
#endif /* _MIPS_SIM == _MIPS_SIM_ABI64 */
|
||||||
|
|
||||||
#define __NR_64_Linux 5000
|
#define __NR_64_Linux 5000
|
||||||
#define __NR_64_Linux_syscalls 316
|
#define __NR_64_Linux_syscalls 318
|
||||||
|
|
||||||
#if _MIPS_SIM == _MIPS_SIM_NABI32
|
#if _MIPS_SIM == _MIPS_SIM_NABI32
|
||||||
|
|
||||||
|
@ -1049,15 +1053,17 @@
|
||||||
#define __NR_memfd_create (__NR_Linux + 318)
|
#define __NR_memfd_create (__NR_Linux + 318)
|
||||||
#define __NR_bpf (__NR_Linux + 319)
|
#define __NR_bpf (__NR_Linux + 319)
|
||||||
#define __NR_execveat (__NR_Linux + 320)
|
#define __NR_execveat (__NR_Linux + 320)
|
||||||
|
#define __NR_userfaultfd (__NR_Linux + 321)
|
||||||
|
#define __NR_membarrier (__NR_Linux + 322)
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Offset of the last N32 flavoured syscall
|
* Offset of the last N32 flavoured syscall
|
||||||
*/
|
*/
|
||||||
#define __NR_Linux_syscalls 320
|
#define __NR_Linux_syscalls 322
|
||||||
|
|
||||||
#endif /* _MIPS_SIM == _MIPS_SIM_NABI32 */
|
#endif /* _MIPS_SIM == _MIPS_SIM_NABI32 */
|
||||||
|
|
||||||
#define __NR_N32_Linux 6000
|
#define __NR_N32_Linux 6000
|
||||||
#define __NR_N32_Linux_syscalls 320
|
#define __NR_N32_Linux_syscalls 322
|
||||||
|
|
||||||
#endif /* _UAPI_ASM_UNISTD_H */
|
#endif /* _UAPI_ASM_UNISTD_H */
|
||||||
|
|
|
@ -26,6 +26,7 @@
|
||||||
#include <linux/power/jz4740-battery.h>
|
#include <linux/power/jz4740-battery.h>
|
||||||
#include <linux/power/gpio-charger.h>
|
#include <linux/power/gpio-charger.h>
|
||||||
|
|
||||||
|
#include <asm/mach-jz4740/gpio.h>
|
||||||
#include <asm/mach-jz4740/jz4740_fb.h>
|
#include <asm/mach-jz4740/jz4740_fb.h>
|
||||||
#include <asm/mach-jz4740/jz4740_mmc.h>
|
#include <asm/mach-jz4740/jz4740_mmc.h>
|
||||||
#include <asm/mach-jz4740/jz4740_nand.h>
|
#include <asm/mach-jz4740/jz4740_nand.h>
|
||||||
|
|
|
@ -28,6 +28,7 @@
|
||||||
#include <linux/seq_file.h>
|
#include <linux/seq_file.h>
|
||||||
|
|
||||||
#include <asm/mach-jz4740/base.h>
|
#include <asm/mach-jz4740/base.h>
|
||||||
|
#include <asm/mach-jz4740/gpio.h>
|
||||||
|
|
||||||
#define JZ4740_GPIO_BASE_A (32*0)
|
#define JZ4740_GPIO_BASE_A (32*0)
|
||||||
#define JZ4740_GPIO_BASE_B (32*1)
|
#define JZ4740_GPIO_BASE_B (32*1)
|
||||||
|
|
|
@ -39,6 +39,7 @@
|
||||||
mfc0 \dest, CP0_CONFIG, 3
|
mfc0 \dest, CP0_CONFIG, 3
|
||||||
andi \dest, \dest, MIPS_CONF3_MT
|
andi \dest, \dest, MIPS_CONF3_MT
|
||||||
beqz \dest, \nomt
|
beqz \dest, \nomt
|
||||||
|
nop
|
||||||
.endm
|
.endm
|
||||||
|
|
||||||
.section .text.cps-vec
|
.section .text.cps-vec
|
||||||
|
@ -223,10 +224,9 @@ LEAF(excep_ejtag)
|
||||||
END(excep_ejtag)
|
END(excep_ejtag)
|
||||||
|
|
||||||
LEAF(mips_cps_core_init)
|
LEAF(mips_cps_core_init)
|
||||||
#ifdef CONFIG_MIPS_MT
|
#ifdef CONFIG_MIPS_MT_SMP
|
||||||
/* Check that the core implements the MT ASE */
|
/* Check that the core implements the MT ASE */
|
||||||
has_mt t0, 3f
|
has_mt t0, 3f
|
||||||
nop
|
|
||||||
|
|
||||||
.set push
|
.set push
|
||||||
.set mips64r2
|
.set mips64r2
|
||||||
|
@ -310,8 +310,9 @@ LEAF(mips_cps_boot_vpes)
|
||||||
PTR_ADDU t0, t0, t1
|
PTR_ADDU t0, t0, t1
|
||||||
|
|
||||||
/* Calculate this VPEs ID. If the core doesn't support MT use 0 */
|
/* Calculate this VPEs ID. If the core doesn't support MT use 0 */
|
||||||
has_mt ta2, 1f
|
|
||||||
li t9, 0
|
li t9, 0
|
||||||
|
#ifdef CONFIG_MIPS_MT_SMP
|
||||||
|
has_mt ta2, 1f
|
||||||
|
|
||||||
/* Find the number of VPEs present in the core */
|
/* Find the number of VPEs present in the core */
|
||||||
mfc0 t1, CP0_MVPCONF0
|
mfc0 t1, CP0_MVPCONF0
|
||||||
|
@ -330,6 +331,7 @@ LEAF(mips_cps_boot_vpes)
|
||||||
/* Retrieve the VPE ID from EBase.CPUNum */
|
/* Retrieve the VPE ID from EBase.CPUNum */
|
||||||
mfc0 t9, $15, 1
|
mfc0 t9, $15, 1
|
||||||
and t9, t9, t1
|
and t9, t9, t1
|
||||||
|
#endif
|
||||||
|
|
||||||
1: /* Calculate a pointer to this VPEs struct vpe_boot_config */
|
1: /* Calculate a pointer to this VPEs struct vpe_boot_config */
|
||||||
li t1, VPEBOOTCFG_SIZE
|
li t1, VPEBOOTCFG_SIZE
|
||||||
|
@ -337,7 +339,7 @@ LEAF(mips_cps_boot_vpes)
|
||||||
PTR_L ta3, COREBOOTCFG_VPECONFIG(t0)
|
PTR_L ta3, COREBOOTCFG_VPECONFIG(t0)
|
||||||
PTR_ADDU v0, v0, ta3
|
PTR_ADDU v0, v0, ta3
|
||||||
|
|
||||||
#ifdef CONFIG_MIPS_MT
|
#ifdef CONFIG_MIPS_MT_SMP
|
||||||
|
|
||||||
/* If the core doesn't support MT then return */
|
/* If the core doesn't support MT then return */
|
||||||
bnez ta2, 1f
|
bnez ta2, 1f
|
||||||
|
@ -451,7 +453,7 @@ LEAF(mips_cps_boot_vpes)
|
||||||
|
|
||||||
2: .set pop
|
2: .set pop
|
||||||
|
|
||||||
#endif /* CONFIG_MIPS_MT */
|
#endif /* CONFIG_MIPS_MT_SMP */
|
||||||
|
|
||||||
/* Return */
|
/* Return */
|
||||||
jr ra
|
jr ra
|
||||||
|
|
|
@ -410,16 +410,18 @@ static int set_ftlb_enable(struct cpuinfo_mips *c, int enable)
|
||||||
static inline unsigned int decode_config0(struct cpuinfo_mips *c)
|
static inline unsigned int decode_config0(struct cpuinfo_mips *c)
|
||||||
{
|
{
|
||||||
unsigned int config0;
|
unsigned int config0;
|
||||||
int isa;
|
int isa, mt;
|
||||||
|
|
||||||
config0 = read_c0_config();
|
config0 = read_c0_config();
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Look for Standard TLB or Dual VTLB and FTLB
|
* Look for Standard TLB or Dual VTLB and FTLB
|
||||||
*/
|
*/
|
||||||
if ((((config0 & MIPS_CONF_MT) >> 7) == 1) ||
|
mt = config0 & MIPS_CONF_MT;
|
||||||
(((config0 & MIPS_CONF_MT) >> 7) == 4))
|
if (mt == MIPS_CONF_MT_TLB)
|
||||||
c->options |= MIPS_CPU_TLB;
|
c->options |= MIPS_CPU_TLB;
|
||||||
|
else if (mt == MIPS_CONF_MT_FTLB)
|
||||||
|
c->options |= MIPS_CPU_TLB | MIPS_CPU_FTLB;
|
||||||
|
|
||||||
isa = (config0 & MIPS_CONF_AT) >> 13;
|
isa = (config0 & MIPS_CONF_AT) >> 13;
|
||||||
switch (isa) {
|
switch (isa) {
|
||||||
|
@ -559,15 +561,18 @@ static inline unsigned int decode_config4(struct cpuinfo_mips *c)
|
||||||
if (cpu_has_tlb) {
|
if (cpu_has_tlb) {
|
||||||
if (((config4 & MIPS_CONF4_IE) >> 29) == 2)
|
if (((config4 & MIPS_CONF4_IE) >> 29) == 2)
|
||||||
c->options |= MIPS_CPU_TLBINV;
|
c->options |= MIPS_CPU_TLBINV;
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* This is a bit ugly. R6 has dropped that field from
|
* R6 has dropped the MMUExtDef field from config4.
|
||||||
* config4 and the only valid configuration is VTLB+FTLB so
|
* On R6 the fields always describe the FTLB, and only if it is
|
||||||
* set a good value for mmuextdef for that case.
|
* present according to Config.MT.
|
||||||
*/
|
*/
|
||||||
if (cpu_has_mips_r6)
|
if (!cpu_has_mips_r6)
|
||||||
|
mmuextdef = config4 & MIPS_CONF4_MMUEXTDEF;
|
||||||
|
else if (cpu_has_ftlb)
|
||||||
mmuextdef = MIPS_CONF4_MMUEXTDEF_VTLBSIZEEXT;
|
mmuextdef = MIPS_CONF4_MMUEXTDEF_VTLBSIZEEXT;
|
||||||
else
|
else
|
||||||
mmuextdef = config4 & MIPS_CONF4_MMUEXTDEF;
|
mmuextdef = 0;
|
||||||
|
|
||||||
switch (mmuextdef) {
|
switch (mmuextdef) {
|
||||||
case MIPS_CONF4_MMUEXTDEF_MMUSIZEEXT:
|
case MIPS_CONF4_MMUEXTDEF_MMUSIZEEXT:
|
||||||
|
|
|
@ -18,7 +18,7 @@
|
||||||
.set pop
|
.set pop
|
||||||
/*
|
/*
|
||||||
* task_struct *resume(task_struct *prev, task_struct *next,
|
* task_struct *resume(task_struct *prev, task_struct *next,
|
||||||
* struct thread_info *next_ti, int usedfpu)
|
* struct thread_info *next_ti)
|
||||||
*/
|
*/
|
||||||
.align 7
|
.align 7
|
||||||
LEAF(resume)
|
LEAF(resume)
|
||||||
|
@ -28,30 +28,6 @@
|
||||||
cpu_save_nonscratch a0
|
cpu_save_nonscratch a0
|
||||||
LONG_S ra, THREAD_REG31(a0)
|
LONG_S ra, THREAD_REG31(a0)
|
||||||
|
|
||||||
/*
|
|
||||||
* check if we need to save FPU registers
|
|
||||||
*/
|
|
||||||
.set push
|
|
||||||
.set noreorder
|
|
||||||
beqz a3, 1f
|
|
||||||
PTR_L t3, TASK_THREAD_INFO(a0)
|
|
||||||
.set pop
|
|
||||||
|
|
||||||
/*
|
|
||||||
* clear saved user stack CU1 bit
|
|
||||||
*/
|
|
||||||
LONG_L t0, ST_OFF(t3)
|
|
||||||
li t1, ~ST0_CU1
|
|
||||||
and t0, t0, t1
|
|
||||||
LONG_S t0, ST_OFF(t3)
|
|
||||||
|
|
||||||
.set push
|
|
||||||
.set arch=mips64r2
|
|
||||||
fpu_save_double a0 t0 t1 # c0_status passed in t0
|
|
||||||
# clobbers t1
|
|
||||||
.set pop
|
|
||||||
1:
|
|
||||||
|
|
||||||
#if CONFIG_CAVIUM_OCTEON_CVMSEG_SIZE > 0
|
#if CONFIG_CAVIUM_OCTEON_CVMSEG_SIZE > 0
|
||||||
/* Check if we need to store CVMSEG state */
|
/* Check if we need to store CVMSEG state */
|
||||||
dmfc0 t0, $11,7 /* CvmMemCtl */
|
dmfc0 t0, $11,7 /* CvmMemCtl */
|
||||||
|
|
|
@ -30,19 +30,9 @@
|
||||||
*/
|
*/
|
||||||
#define ST_OFF (_THREAD_SIZE - 32 - PT_SIZE + PT_STATUS)
|
#define ST_OFF (_THREAD_SIZE - 32 - PT_SIZE + PT_STATUS)
|
||||||
|
|
||||||
/*
|
|
||||||
* FPU context is saved iff the process has used it's FPU in the current
|
|
||||||
* time slice as indicated by TIF_USEDFPU. In any case, the CU1 bit for user
|
|
||||||
* space STATUS register should be 0, so that a process *always* starts its
|
|
||||||
* userland with FPU disabled after each context switch.
|
|
||||||
*
|
|
||||||
* FPU will be enabled as soon as the process accesses FPU again, through
|
|
||||||
* do_cpu() trap.
|
|
||||||
*/
|
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* task_struct *resume(task_struct *prev, task_struct *next,
|
* task_struct *resume(task_struct *prev, task_struct *next,
|
||||||
* struct thread_info *next_ti, int usedfpu)
|
* struct thread_info *next_ti)
|
||||||
*/
|
*/
|
||||||
LEAF(resume)
|
LEAF(resume)
|
||||||
mfc0 t1, CP0_STATUS
|
mfc0 t1, CP0_STATUS
|
||||||
|
@ -50,22 +40,6 @@ LEAF(resume)
|
||||||
cpu_save_nonscratch a0
|
cpu_save_nonscratch a0
|
||||||
sw ra, THREAD_REG31(a0)
|
sw ra, THREAD_REG31(a0)
|
||||||
|
|
||||||
beqz a3, 1f
|
|
||||||
|
|
||||||
PTR_L t3, TASK_THREAD_INFO(a0)
|
|
||||||
|
|
||||||
/*
|
|
||||||
* clear saved user stack CU1 bit
|
|
||||||
*/
|
|
||||||
lw t0, ST_OFF(t3)
|
|
||||||
li t1, ~ST0_CU1
|
|
||||||
and t0, t0, t1
|
|
||||||
sw t0, ST_OFF(t3)
|
|
||||||
|
|
||||||
fpu_save_single a0, t0 # clobbers t0
|
|
||||||
|
|
||||||
1:
|
|
||||||
|
|
||||||
#if defined(CONFIG_CC_STACKPROTECTOR) && !defined(CONFIG_SMP)
|
#if defined(CONFIG_CC_STACKPROTECTOR) && !defined(CONFIG_SMP)
|
||||||
PTR_LA t8, __stack_chk_guard
|
PTR_LA t8, __stack_chk_guard
|
||||||
LONG_L t9, TASK_STACK_CANARY(a1)
|
LONG_L t9, TASK_STACK_CANARY(a1)
|
||||||
|
|
|
@ -36,16 +36,8 @@ NESTED(handle_sys, PT_SIZE, sp)
|
||||||
lw t1, PT_EPC(sp) # skip syscall on return
|
lw t1, PT_EPC(sp) # skip syscall on return
|
||||||
|
|
||||||
subu v0, v0, __NR_O32_Linux # check syscall number
|
subu v0, v0, __NR_O32_Linux # check syscall number
|
||||||
sltiu t0, v0, __NR_O32_Linux_syscalls + 1
|
|
||||||
addiu t1, 4 # skip to next instruction
|
addiu t1, 4 # skip to next instruction
|
||||||
sw t1, PT_EPC(sp)
|
sw t1, PT_EPC(sp)
|
||||||
beqz t0, illegal_syscall
|
|
||||||
|
|
||||||
sll t0, v0, 2
|
|
||||||
la t1, sys_call_table
|
|
||||||
addu t1, t0
|
|
||||||
lw t2, (t1) # syscall routine
|
|
||||||
beqz t2, illegal_syscall
|
|
||||||
|
|
||||||
sw a3, PT_R26(sp) # save a3 for syscall restarting
|
sw a3, PT_R26(sp) # save a3 for syscall restarting
|
||||||
|
|
||||||
|
@ -96,6 +88,16 @@ loads_done:
|
||||||
li t1, _TIF_WORK_SYSCALL_ENTRY
|
li t1, _TIF_WORK_SYSCALL_ENTRY
|
||||||
and t0, t1
|
and t0, t1
|
||||||
bnez t0, syscall_trace_entry # -> yes
|
bnez t0, syscall_trace_entry # -> yes
|
||||||
|
syscall_common:
|
||||||
|
sltiu t0, v0, __NR_O32_Linux_syscalls + 1
|
||||||
|
beqz t0, illegal_syscall
|
||||||
|
|
||||||
|
sll t0, v0, 2
|
||||||
|
la t1, sys_call_table
|
||||||
|
addu t1, t0
|
||||||
|
lw t2, (t1) # syscall routine
|
||||||
|
|
||||||
|
beqz t2, illegal_syscall
|
||||||
|
|
||||||
jalr t2 # Do The Real Thing (TM)
|
jalr t2 # Do The Real Thing (TM)
|
||||||
|
|
||||||
|
@ -116,7 +118,7 @@ o32_syscall_exit:
|
||||||
|
|
||||||
syscall_trace_entry:
|
syscall_trace_entry:
|
||||||
SAVE_STATIC
|
SAVE_STATIC
|
||||||
move s0, t2
|
move s0, v0
|
||||||
move a0, sp
|
move a0, sp
|
||||||
|
|
||||||
/*
|
/*
|
||||||
|
@ -129,27 +131,18 @@ syscall_trace_entry:
|
||||||
|
|
||||||
1: jal syscall_trace_enter
|
1: jal syscall_trace_enter
|
||||||
|
|
||||||
bltz v0, 2f # seccomp failed? Skip syscall
|
bltz v0, 1f # seccomp failed? Skip syscall
|
||||||
|
|
||||||
|
move v0, s0 # restore syscall
|
||||||
|
|
||||||
move t0, s0
|
|
||||||
RESTORE_STATIC
|
RESTORE_STATIC
|
||||||
lw a0, PT_R4(sp) # Restore argument registers
|
lw a0, PT_R4(sp) # Restore argument registers
|
||||||
lw a1, PT_R5(sp)
|
lw a1, PT_R5(sp)
|
||||||
lw a2, PT_R6(sp)
|
lw a2, PT_R6(sp)
|
||||||
lw a3, PT_R7(sp)
|
lw a3, PT_R7(sp)
|
||||||
jalr t0
|
j syscall_common
|
||||||
|
|
||||||
li t0, -EMAXERRNO - 1 # error?
|
1: j syscall_exit
|
||||||
sltu t0, t0, v0
|
|
||||||
sw t0, PT_R7(sp) # set error flag
|
|
||||||
beqz t0, 1f
|
|
||||||
|
|
||||||
lw t1, PT_R2(sp) # syscall number
|
|
||||||
negu v0 # error
|
|
||||||
sw t1, PT_R0(sp) # save it for syscall restarting
|
|
||||||
1: sw v0, PT_R2(sp) # result
|
|
||||||
|
|
||||||
2: j syscall_exit
|
|
||||||
|
|
||||||
/* ------------------------------------------------------------------------ */
|
/* ------------------------------------------------------------------------ */
|
||||||
|
|
||||||
|
@ -599,3 +592,5 @@ EXPORT(sys_call_table)
|
||||||
PTR sys_memfd_create
|
PTR sys_memfd_create
|
||||||
PTR sys_bpf /* 4355 */
|
PTR sys_bpf /* 4355 */
|
||||||
PTR sys_execveat
|
PTR sys_execveat
|
||||||
|
PTR sys_userfaultfd
|
||||||
|
PTR sys_membarrier
|
||||||
|
|
|
@ -39,18 +39,11 @@ NESTED(handle_sys64, PT_SIZE, sp)
|
||||||
.set at
|
.set at
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
dsubu t0, v0, __NR_64_Linux # check syscall number
|
|
||||||
sltiu t0, t0, __NR_64_Linux_syscalls + 1
|
|
||||||
#if !defined(CONFIG_MIPS32_O32) && !defined(CONFIG_MIPS32_N32)
|
#if !defined(CONFIG_MIPS32_O32) && !defined(CONFIG_MIPS32_N32)
|
||||||
ld t1, PT_EPC(sp) # skip syscall on return
|
ld t1, PT_EPC(sp) # skip syscall on return
|
||||||
daddiu t1, 4 # skip to next instruction
|
daddiu t1, 4 # skip to next instruction
|
||||||
sd t1, PT_EPC(sp)
|
sd t1, PT_EPC(sp)
|
||||||
#endif
|
#endif
|
||||||
beqz t0, illegal_syscall
|
|
||||||
|
|
||||||
dsll t0, v0, 3 # offset into table
|
|
||||||
ld t2, (sys_call_table - (__NR_64_Linux * 8))(t0)
|
|
||||||
# syscall routine
|
|
||||||
|
|
||||||
sd a3, PT_R26(sp) # save a3 for syscall restarting
|
sd a3, PT_R26(sp) # save a3 for syscall restarting
|
||||||
|
|
||||||
|
@ -59,6 +52,17 @@ NESTED(handle_sys64, PT_SIZE, sp)
|
||||||
and t0, t1, t0
|
and t0, t1, t0
|
||||||
bnez t0, syscall_trace_entry
|
bnez t0, syscall_trace_entry
|
||||||
|
|
||||||
|
syscall_common:
|
||||||
|
dsubu t2, v0, __NR_64_Linux
|
||||||
|
sltiu t0, t2, __NR_64_Linux_syscalls + 1
|
||||||
|
beqz t0, illegal_syscall
|
||||||
|
|
||||||
|
dsll t0, t2, 3 # offset into table
|
||||||
|
dla t2, sys_call_table
|
||||||
|
daddu t0, t2, t0
|
||||||
|
ld t2, (t0) # syscall routine
|
||||||
|
beqz t2, illegal_syscall
|
||||||
|
|
||||||
jalr t2 # Do The Real Thing (TM)
|
jalr t2 # Do The Real Thing (TM)
|
||||||
|
|
||||||
li t0, -EMAXERRNO - 1 # error?
|
li t0, -EMAXERRNO - 1 # error?
|
||||||
|
@ -78,14 +82,14 @@ n64_syscall_exit:
|
||||||
|
|
||||||
syscall_trace_entry:
|
syscall_trace_entry:
|
||||||
SAVE_STATIC
|
SAVE_STATIC
|
||||||
move s0, t2
|
move s0, v0
|
||||||
move a0, sp
|
move a0, sp
|
||||||
move a1, v0
|
move a1, v0
|
||||||
jal syscall_trace_enter
|
jal syscall_trace_enter
|
||||||
|
|
||||||
bltz v0, 2f # seccomp failed? Skip syscall
|
bltz v0, 1f # seccomp failed? Skip syscall
|
||||||
|
|
||||||
move t0, s0
|
move v0, s0
|
||||||
RESTORE_STATIC
|
RESTORE_STATIC
|
||||||
ld a0, PT_R4(sp) # Restore argument registers
|
ld a0, PT_R4(sp) # Restore argument registers
|
||||||
ld a1, PT_R5(sp)
|
ld a1, PT_R5(sp)
|
||||||
|
@ -93,19 +97,9 @@ syscall_trace_entry:
|
||||||
ld a3, PT_R7(sp)
|
ld a3, PT_R7(sp)
|
||||||
ld a4, PT_R8(sp)
|
ld a4, PT_R8(sp)
|
||||||
ld a5, PT_R9(sp)
|
ld a5, PT_R9(sp)
|
||||||
jalr t0
|
j syscall_common
|
||||||
|
|
||||||
li t0, -EMAXERRNO - 1 # error?
|
1: j syscall_exit
|
||||||
sltu t0, t0, v0
|
|
||||||
sd t0, PT_R7(sp) # set error flag
|
|
||||||
beqz t0, 1f
|
|
||||||
|
|
||||||
ld t1, PT_R2(sp) # syscall number
|
|
||||||
dnegu v0 # error
|
|
||||||
sd t1, PT_R0(sp) # save it for syscall restarting
|
|
||||||
1: sd v0, PT_R2(sp) # result
|
|
||||||
|
|
||||||
2: j syscall_exit
|
|
||||||
|
|
||||||
illegal_syscall:
|
illegal_syscall:
|
||||||
/* This also isn't a 64-bit syscall, throw an error. */
|
/* This also isn't a 64-bit syscall, throw an error. */
|
||||||
|
@ -436,4 +430,6 @@ EXPORT(sys_call_table)
|
||||||
PTR sys_memfd_create
|
PTR sys_memfd_create
|
||||||
PTR sys_bpf /* 5315 */
|
PTR sys_bpf /* 5315 */
|
||||||
PTR sys_execveat
|
PTR sys_execveat
|
||||||
|
PTR sys_userfaultfd
|
||||||
|
PTR sys_membarrier
|
||||||
.size sys_call_table,.-sys_call_table
|
.size sys_call_table,.-sys_call_table
|
||||||
|
|
|
@ -52,6 +52,7 @@ NESTED(handle_sysn32, PT_SIZE, sp)
|
||||||
and t0, t1, t0
|
and t0, t1, t0
|
||||||
bnez t0, n32_syscall_trace_entry
|
bnez t0, n32_syscall_trace_entry
|
||||||
|
|
||||||
|
syscall_common:
|
||||||
jalr t2 # Do The Real Thing (TM)
|
jalr t2 # Do The Real Thing (TM)
|
||||||
|
|
||||||
li t0, -EMAXERRNO - 1 # error?
|
li t0, -EMAXERRNO - 1 # error?
|
||||||
|
@ -75,9 +76,9 @@ n32_syscall_trace_entry:
|
||||||
move a1, v0
|
move a1, v0
|
||||||
jal syscall_trace_enter
|
jal syscall_trace_enter
|
||||||
|
|
||||||
bltz v0, 2f # seccomp failed? Skip syscall
|
bltz v0, 1f # seccomp failed? Skip syscall
|
||||||
|
|
||||||
move t0, s0
|
move t2, s0
|
||||||
RESTORE_STATIC
|
RESTORE_STATIC
|
||||||
ld a0, PT_R4(sp) # Restore argument registers
|
ld a0, PT_R4(sp) # Restore argument registers
|
||||||
ld a1, PT_R5(sp)
|
ld a1, PT_R5(sp)
|
||||||
|
@ -85,19 +86,9 @@ n32_syscall_trace_entry:
|
||||||
ld a3, PT_R7(sp)
|
ld a3, PT_R7(sp)
|
||||||
ld a4, PT_R8(sp)
|
ld a4, PT_R8(sp)
|
||||||
ld a5, PT_R9(sp)
|
ld a5, PT_R9(sp)
|
||||||
jalr t0
|
j syscall_common
|
||||||
|
|
||||||
li t0, -EMAXERRNO - 1 # error?
|
1: j syscall_exit
|
||||||
sltu t0, t0, v0
|
|
||||||
sd t0, PT_R7(sp) # set error flag
|
|
||||||
beqz t0, 1f
|
|
||||||
|
|
||||||
ld t1, PT_R2(sp) # syscall number
|
|
||||||
dnegu v0 # error
|
|
||||||
sd t1, PT_R0(sp) # save it for syscall restarting
|
|
||||||
1: sd v0, PT_R2(sp) # result
|
|
||||||
|
|
||||||
2: j syscall_exit
|
|
||||||
|
|
||||||
not_n32_scall:
|
not_n32_scall:
|
||||||
/* This is not an n32 compatibility syscall, pass it on to
|
/* This is not an n32 compatibility syscall, pass it on to
|
||||||
|
@ -429,4 +420,6 @@ EXPORT(sysn32_call_table)
|
||||||
PTR sys_memfd_create
|
PTR sys_memfd_create
|
||||||
PTR sys_bpf
|
PTR sys_bpf
|
||||||
PTR compat_sys_execveat /* 6320 */
|
PTR compat_sys_execveat /* 6320 */
|
||||||
|
PTR sys_userfaultfd
|
||||||
|
PTR sys_membarrier
|
||||||
.size sysn32_call_table,.-sysn32_call_table
|
.size sysn32_call_table,.-sysn32_call_table
|
||||||
|
|
|
@ -87,6 +87,7 @@ loads_done:
|
||||||
and t0, t1, t0
|
and t0, t1, t0
|
||||||
bnez t0, trace_a_syscall
|
bnez t0, trace_a_syscall
|
||||||
|
|
||||||
|
syscall_common:
|
||||||
jalr t2 # Do The Real Thing (TM)
|
jalr t2 # Do The Real Thing (TM)
|
||||||
|
|
||||||
li t0, -EMAXERRNO - 1 # error?
|
li t0, -EMAXERRNO - 1 # error?
|
||||||
|
@ -130,9 +131,9 @@ trace_a_syscall:
|
||||||
|
|
||||||
1: jal syscall_trace_enter
|
1: jal syscall_trace_enter
|
||||||
|
|
||||||
bltz v0, 2f # seccomp failed? Skip syscall
|
bltz v0, 1f # seccomp failed? Skip syscall
|
||||||
|
|
||||||
move t0, s0
|
move t2, s0
|
||||||
RESTORE_STATIC
|
RESTORE_STATIC
|
||||||
ld a0, PT_R4(sp) # Restore argument registers
|
ld a0, PT_R4(sp) # Restore argument registers
|
||||||
ld a1, PT_R5(sp)
|
ld a1, PT_R5(sp)
|
||||||
|
@ -142,19 +143,9 @@ trace_a_syscall:
|
||||||
ld a5, PT_R9(sp)
|
ld a5, PT_R9(sp)
|
||||||
ld a6, PT_R10(sp)
|
ld a6, PT_R10(sp)
|
||||||
ld a7, PT_R11(sp) # For indirect syscalls
|
ld a7, PT_R11(sp) # For indirect syscalls
|
||||||
jalr t0
|
j syscall_common
|
||||||
|
|
||||||
li t0, -EMAXERRNO - 1 # error?
|
1: j syscall_exit
|
||||||
sltu t0, t0, v0
|
|
||||||
sd t0, PT_R7(sp) # set error flag
|
|
||||||
beqz t0, 1f
|
|
||||||
|
|
||||||
ld t1, PT_R2(sp) # syscall number
|
|
||||||
dnegu v0 # error
|
|
||||||
sd t1, PT_R0(sp) # save it for syscall restarting
|
|
||||||
1: sd v0, PT_R2(sp) # result
|
|
||||||
|
|
||||||
2: j syscall_exit
|
|
||||||
|
|
||||||
/* ------------------------------------------------------------------------ */
|
/* ------------------------------------------------------------------------ */
|
||||||
|
|
||||||
|
@ -584,4 +575,6 @@ EXPORT(sys32_call_table)
|
||||||
PTR sys_memfd_create
|
PTR sys_memfd_create
|
||||||
PTR sys_bpf /* 4355 */
|
PTR sys_bpf /* 4355 */
|
||||||
PTR compat_sys_execveat
|
PTR compat_sys_execveat
|
||||||
|
PTR sys_userfaultfd
|
||||||
|
PTR sys_membarrier
|
||||||
.size sys32_call_table,.-sys32_call_table
|
.size sys32_call_table,.-sys32_call_table
|
||||||
|
|
|
@ -338,7 +338,7 @@ static void __init bootmem_init(void)
|
||||||
if (end <= reserved_end)
|
if (end <= reserved_end)
|
||||||
continue;
|
continue;
|
||||||
#ifdef CONFIG_BLK_DEV_INITRD
|
#ifdef CONFIG_BLK_DEV_INITRD
|
||||||
/* mapstart should be after initrd_end */
|
/* Skip zones before initrd and initrd itself */
|
||||||
if (initrd_end && end <= (unsigned long)PFN_UP(__pa(initrd_end)))
|
if (initrd_end && end <= (unsigned long)PFN_UP(__pa(initrd_end)))
|
||||||
continue;
|
continue;
|
||||||
#endif
|
#endif
|
||||||
|
@ -371,6 +371,14 @@ static void __init bootmem_init(void)
|
||||||
max_low_pfn = PFN_DOWN(HIGHMEM_START);
|
max_low_pfn = PFN_DOWN(HIGHMEM_START);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#ifdef CONFIG_BLK_DEV_INITRD
|
||||||
|
/*
|
||||||
|
* mapstart should be after initrd_end
|
||||||
|
*/
|
||||||
|
if (initrd_end)
|
||||||
|
mapstart = max(mapstart, (unsigned long)PFN_UP(__pa(initrd_end)));
|
||||||
|
#endif
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Initialize the boot-time allocator with low memory only.
|
* Initialize the boot-time allocator with low memory only.
|
||||||
*/
|
*/
|
||||||
|
|
|
@ -42,6 +42,7 @@
|
||||||
#include <asm/mmu_context.h>
|
#include <asm/mmu_context.h>
|
||||||
#include <asm/time.h>
|
#include <asm/time.h>
|
||||||
#include <asm/setup.h>
|
#include <asm/setup.h>
|
||||||
|
#include <asm/maar.h>
|
||||||
|
|
||||||
cpumask_t cpu_callin_map; /* Bitmask of started secondaries */
|
cpumask_t cpu_callin_map; /* Bitmask of started secondaries */
|
||||||
|
|
||||||
|
@ -157,6 +158,7 @@ asmlinkage void start_secondary(void)
|
||||||
mips_clockevent_init();
|
mips_clockevent_init();
|
||||||
mp_ops->init_secondary();
|
mp_ops->init_secondary();
|
||||||
cpu_report();
|
cpu_report();
|
||||||
|
maar_init();
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* XXX parity protection should be folded in here when it's converted
|
* XXX parity protection should be folded in here when it's converted
|
||||||
|
|
|
@ -64,6 +64,9 @@ void __init prom_init_env(void)
|
||||||
}
|
}
|
||||||
if (memsize == 0)
|
if (memsize == 0)
|
||||||
memsize = 256;
|
memsize = 256;
|
||||||
|
|
||||||
|
loongson_sysconf.nr_uarts = 1;
|
||||||
|
|
||||||
pr_info("memsize=%u, highmemsize=%u\n", memsize, highmemsize);
|
pr_info("memsize=%u, highmemsize=%u\n", memsize, highmemsize);
|
||||||
#else
|
#else
|
||||||
struct boot_params *boot_p;
|
struct boot_params *boot_p;
|
||||||
|
|
|
@ -100,7 +100,7 @@ static gfp_t massage_gfp_flags(const struct device *dev, gfp_t gfp)
|
||||||
else
|
else
|
||||||
#endif
|
#endif
|
||||||
#if defined(CONFIG_ZONE_DMA) && !defined(CONFIG_ZONE_DMA32)
|
#if defined(CONFIG_ZONE_DMA) && !defined(CONFIG_ZONE_DMA32)
|
||||||
if (dev->coherent_dma_mask < DMA_BIT_MASK(64))
|
if (dev->coherent_dma_mask < DMA_BIT_MASK(sizeof(phys_addr_t) * 8))
|
||||||
dma_flag = __GFP_DMA;
|
dma_flag = __GFP_DMA;
|
||||||
else
|
else
|
||||||
#endif
|
#endif
|
||||||
|
|
|
@ -44,6 +44,7 @@
|
||||||
#include <asm/pgalloc.h>
|
#include <asm/pgalloc.h>
|
||||||
#include <asm/tlb.h>
|
#include <asm/tlb.h>
|
||||||
#include <asm/fixmap.h>
|
#include <asm/fixmap.h>
|
||||||
|
#include <asm/maar.h>
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* We have up to 8 empty zeroed pages so we can map one of the right colour
|
* We have up to 8 empty zeroed pages so we can map one of the right colour
|
||||||
|
@ -252,6 +253,119 @@ void __init fixrange_init(unsigned long start, unsigned long end,
|
||||||
#endif
|
#endif
|
||||||
}
|
}
|
||||||
|
|
||||||
|
unsigned __weak platform_maar_init(unsigned num_pairs)
|
||||||
|
{
|
||||||
|
struct maar_config cfg[BOOT_MEM_MAP_MAX];
|
||||||
|
unsigned i, num_configured, num_cfg = 0;
|
||||||
|
phys_addr_t skip;
|
||||||
|
|
||||||
|
for (i = 0; i < boot_mem_map.nr_map; i++) {
|
||||||
|
switch (boot_mem_map.map[i].type) {
|
||||||
|
case BOOT_MEM_RAM:
|
||||||
|
case BOOT_MEM_INIT_RAM:
|
||||||
|
break;
|
||||||
|
default:
|
||||||
|
continue;
|
||||||
|
}
|
||||||
|
|
||||||
|
skip = 0x10000 - (boot_mem_map.map[i].addr & 0xffff);
|
||||||
|
|
||||||
|
cfg[num_cfg].lower = boot_mem_map.map[i].addr;
|
||||||
|
cfg[num_cfg].lower += skip;
|
||||||
|
|
||||||
|
cfg[num_cfg].upper = cfg[num_cfg].lower;
|
||||||
|
cfg[num_cfg].upper += boot_mem_map.map[i].size - 1;
|
||||||
|
cfg[num_cfg].upper -= skip;
|
||||||
|
|
||||||
|
cfg[num_cfg].attrs = MIPS_MAAR_S;
|
||||||
|
num_cfg++;
|
||||||
|
}
|
||||||
|
|
||||||
|
num_configured = maar_config(cfg, num_cfg, num_pairs);
|
||||||
|
if (num_configured < num_cfg)
|
||||||
|
pr_warn("Not enough MAAR pairs (%u) for all bootmem regions (%u)\n",
|
||||||
|
num_pairs, num_cfg);
|
||||||
|
|
||||||
|
return num_configured;
|
||||||
|
}
|
||||||
|
|
||||||
|
void maar_init(void)
|
||||||
|
{
|
||||||
|
unsigned num_maars, used, i;
|
||||||
|
phys_addr_t lower, upper, attr;
|
||||||
|
static struct {
|
||||||
|
struct maar_config cfgs[3];
|
||||||
|
unsigned used;
|
||||||
|
} recorded = { { { 0 } }, 0 };
|
||||||
|
|
||||||
|
if (!cpu_has_maar)
|
||||||
|
return;
|
||||||
|
|
||||||
|
/* Detect the number of MAARs */
|
||||||
|
write_c0_maari(~0);
|
||||||
|
back_to_back_c0_hazard();
|
||||||
|
num_maars = read_c0_maari() + 1;
|
||||||
|
|
||||||
|
/* MAARs should be in pairs */
|
||||||
|
WARN_ON(num_maars % 2);
|
||||||
|
|
||||||
|
/* Set MAARs using values we recorded already */
|
||||||
|
if (recorded.used) {
|
||||||
|
used = maar_config(recorded.cfgs, recorded.used, num_maars / 2);
|
||||||
|
BUG_ON(used != recorded.used);
|
||||||
|
} else {
|
||||||
|
/* Configure the required MAARs */
|
||||||
|
used = platform_maar_init(num_maars / 2);
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Disable any further MAARs */
|
||||||
|
for (i = (used * 2); i < num_maars; i++) {
|
||||||
|
write_c0_maari(i);
|
||||||
|
back_to_back_c0_hazard();
|
||||||
|
write_c0_maar(0);
|
||||||
|
back_to_back_c0_hazard();
|
||||||
|
}
|
||||||
|
|
||||||
|
if (recorded.used)
|
||||||
|
return;
|
||||||
|
|
||||||
|
pr_info("MAAR configuration:\n");
|
||||||
|
for (i = 0; i < num_maars; i += 2) {
|
||||||
|
write_c0_maari(i);
|
||||||
|
back_to_back_c0_hazard();
|
||||||
|
upper = read_c0_maar();
|
||||||
|
|
||||||
|
write_c0_maari(i + 1);
|
||||||
|
back_to_back_c0_hazard();
|
||||||
|
lower = read_c0_maar();
|
||||||
|
|
||||||
|
attr = lower & upper;
|
||||||
|
lower = (lower & MIPS_MAAR_ADDR) << 4;
|
||||||
|
upper = ((upper & MIPS_MAAR_ADDR) << 4) | 0xffff;
|
||||||
|
|
||||||
|
pr_info(" [%d]: ", i / 2);
|
||||||
|
if (!(attr & MIPS_MAAR_V)) {
|
||||||
|
pr_cont("disabled\n");
|
||||||
|
continue;
|
||||||
|
}
|
||||||
|
|
||||||
|
pr_cont("%pa-%pa", &lower, &upper);
|
||||||
|
|
||||||
|
if (attr & MIPS_MAAR_S)
|
||||||
|
pr_cont(" speculate");
|
||||||
|
|
||||||
|
pr_cont("\n");
|
||||||
|
|
||||||
|
/* Record the setup for use on secondary CPUs */
|
||||||
|
if (used <= ARRAY_SIZE(recorded.cfgs)) {
|
||||||
|
recorded.cfgs[recorded.used].lower = lower;
|
||||||
|
recorded.cfgs[recorded.used].upper = upper;
|
||||||
|
recorded.cfgs[recorded.used].attrs = attr;
|
||||||
|
recorded.used++;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
#ifndef CONFIG_NEED_MULTIPLE_NODES
|
#ifndef CONFIG_NEED_MULTIPLE_NODES
|
||||||
int page_is_ram(unsigned long pagenr)
|
int page_is_ram(unsigned long pagenr)
|
||||||
{
|
{
|
||||||
|
@ -334,69 +448,6 @@ static inline void mem_init_free_highmem(void)
|
||||||
#endif
|
#endif
|
||||||
}
|
}
|
||||||
|
|
||||||
unsigned __weak platform_maar_init(unsigned num_pairs)
|
|
||||||
{
|
|
||||||
struct maar_config cfg[BOOT_MEM_MAP_MAX];
|
|
||||||
unsigned i, num_configured, num_cfg = 0;
|
|
||||||
phys_addr_t skip;
|
|
||||||
|
|
||||||
for (i = 0; i < boot_mem_map.nr_map; i++) {
|
|
||||||
switch (boot_mem_map.map[i].type) {
|
|
||||||
case BOOT_MEM_RAM:
|
|
||||||
case BOOT_MEM_INIT_RAM:
|
|
||||||
break;
|
|
||||||
default:
|
|
||||||
continue;
|
|
||||||
}
|
|
||||||
|
|
||||||
skip = 0x10000 - (boot_mem_map.map[i].addr & 0xffff);
|
|
||||||
|
|
||||||
cfg[num_cfg].lower = boot_mem_map.map[i].addr;
|
|
||||||
cfg[num_cfg].lower += skip;
|
|
||||||
|
|
||||||
cfg[num_cfg].upper = cfg[num_cfg].lower;
|
|
||||||
cfg[num_cfg].upper += boot_mem_map.map[i].size - 1;
|
|
||||||
cfg[num_cfg].upper -= skip;
|
|
||||||
|
|
||||||
cfg[num_cfg].attrs = MIPS_MAAR_S;
|
|
||||||
num_cfg++;
|
|
||||||
}
|
|
||||||
|
|
||||||
num_configured = maar_config(cfg, num_cfg, num_pairs);
|
|
||||||
if (num_configured < num_cfg)
|
|
||||||
pr_warn("Not enough MAAR pairs (%u) for all bootmem regions (%u)\n",
|
|
||||||
num_pairs, num_cfg);
|
|
||||||
|
|
||||||
return num_configured;
|
|
||||||
}
|
|
||||||
|
|
||||||
static void maar_init(void)
|
|
||||||
{
|
|
||||||
unsigned num_maars, used, i;
|
|
||||||
|
|
||||||
if (!cpu_has_maar)
|
|
||||||
return;
|
|
||||||
|
|
||||||
/* Detect the number of MAARs */
|
|
||||||
write_c0_maari(~0);
|
|
||||||
back_to_back_c0_hazard();
|
|
||||||
num_maars = read_c0_maari() + 1;
|
|
||||||
|
|
||||||
/* MAARs should be in pairs */
|
|
||||||
WARN_ON(num_maars % 2);
|
|
||||||
|
|
||||||
/* Configure the required MAARs */
|
|
||||||
used = platform_maar_init(num_maars / 2);
|
|
||||||
|
|
||||||
/* Disable any further MAARs */
|
|
||||||
for (i = (used * 2); i < num_maars; i++) {
|
|
||||||
write_c0_maari(i);
|
|
||||||
back_to_back_c0_hazard();
|
|
||||||
write_c0_maar(0);
|
|
||||||
back_to_back_c0_hazard();
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
void __init mem_init(void)
|
void __init mem_init(void)
|
||||||
{
|
{
|
||||||
#ifdef CONFIG_HIGHMEM
|
#ifdef CONFIG_HIGHMEM
|
||||||
|
|
|
@ -57,15 +57,28 @@
|
||||||
|
|
||||||
LEAF(sk_load_word)
|
LEAF(sk_load_word)
|
||||||
is_offset_negative(word)
|
is_offset_negative(word)
|
||||||
.globl sk_load_word_positive
|
FEXPORT(sk_load_word_positive)
|
||||||
sk_load_word_positive:
|
|
||||||
is_offset_in_header(4, word)
|
is_offset_in_header(4, word)
|
||||||
/* Offset within header boundaries */
|
/* Offset within header boundaries */
|
||||||
PTR_ADDU t1, $r_skb_data, offset
|
PTR_ADDU t1, $r_skb_data, offset
|
||||||
|
.set reorder
|
||||||
lw $r_A, 0(t1)
|
lw $r_A, 0(t1)
|
||||||
|
.set noreorder
|
||||||
#ifdef CONFIG_CPU_LITTLE_ENDIAN
|
#ifdef CONFIG_CPU_LITTLE_ENDIAN
|
||||||
|
# if defined(__mips_isa_rev) && (__mips_isa_rev >= 2)
|
||||||
wsbh t0, $r_A
|
wsbh t0, $r_A
|
||||||
rotr $r_A, t0, 16
|
rotr $r_A, t0, 16
|
||||||
|
# else
|
||||||
|
sll t0, $r_A, 24
|
||||||
|
srl t1, $r_A, 24
|
||||||
|
srl t2, $r_A, 8
|
||||||
|
or t0, t0, t1
|
||||||
|
andi t2, t2, 0xff00
|
||||||
|
andi t1, $r_A, 0xff00
|
||||||
|
or t0, t0, t2
|
||||||
|
sll t1, t1, 8
|
||||||
|
or $r_A, t0, t1
|
||||||
|
# endif
|
||||||
#endif
|
#endif
|
||||||
jr $r_ra
|
jr $r_ra
|
||||||
move $r_ret, zero
|
move $r_ret, zero
|
||||||
|
@ -73,15 +86,24 @@ sk_load_word_positive:
|
||||||
|
|
||||||
LEAF(sk_load_half)
|
LEAF(sk_load_half)
|
||||||
is_offset_negative(half)
|
is_offset_negative(half)
|
||||||
.globl sk_load_half_positive
|
FEXPORT(sk_load_half_positive)
|
||||||
sk_load_half_positive:
|
|
||||||
is_offset_in_header(2, half)
|
is_offset_in_header(2, half)
|
||||||
/* Offset within header boundaries */
|
/* Offset within header boundaries */
|
||||||
PTR_ADDU t1, $r_skb_data, offset
|
PTR_ADDU t1, $r_skb_data, offset
|
||||||
|
.set reorder
|
||||||
lh $r_A, 0(t1)
|
lh $r_A, 0(t1)
|
||||||
|
.set noreorder
|
||||||
#ifdef CONFIG_CPU_LITTLE_ENDIAN
|
#ifdef CONFIG_CPU_LITTLE_ENDIAN
|
||||||
|
# if defined(__mips_isa_rev) && (__mips_isa_rev >= 2)
|
||||||
wsbh t0, $r_A
|
wsbh t0, $r_A
|
||||||
seh $r_A, t0
|
seh $r_A, t0
|
||||||
|
# else
|
||||||
|
sll t0, $r_A, 24
|
||||||
|
andi t1, $r_A, 0xff00
|
||||||
|
sra t0, t0, 16
|
||||||
|
srl t1, t1, 8
|
||||||
|
or $r_A, t0, t1
|
||||||
|
# endif
|
||||||
#endif
|
#endif
|
||||||
jr $r_ra
|
jr $r_ra
|
||||||
move $r_ret, zero
|
move $r_ret, zero
|
||||||
|
@ -89,8 +111,7 @@ sk_load_half_positive:
|
||||||
|
|
||||||
LEAF(sk_load_byte)
|
LEAF(sk_load_byte)
|
||||||
is_offset_negative(byte)
|
is_offset_negative(byte)
|
||||||
.globl sk_load_byte_positive
|
FEXPORT(sk_load_byte_positive)
|
||||||
sk_load_byte_positive:
|
|
||||||
is_offset_in_header(1, byte)
|
is_offset_in_header(1, byte)
|
||||||
/* Offset within header boundaries */
|
/* Offset within header boundaries */
|
||||||
PTR_ADDU t1, $r_skb_data, offset
|
PTR_ADDU t1, $r_skb_data, offset
|
||||||
|
@ -148,23 +169,47 @@ sk_load_byte_positive:
|
||||||
NESTED(bpf_slow_path_word, (6 * SZREG), $r_sp)
|
NESTED(bpf_slow_path_word, (6 * SZREG), $r_sp)
|
||||||
bpf_slow_path_common(4)
|
bpf_slow_path_common(4)
|
||||||
#ifdef CONFIG_CPU_LITTLE_ENDIAN
|
#ifdef CONFIG_CPU_LITTLE_ENDIAN
|
||||||
|
# if defined(__mips_isa_rev) && (__mips_isa_rev >= 2)
|
||||||
wsbh t0, $r_s0
|
wsbh t0, $r_s0
|
||||||
jr $r_ra
|
jr $r_ra
|
||||||
rotr $r_A, t0, 16
|
rotr $r_A, t0, 16
|
||||||
#endif
|
# else
|
||||||
|
sll t0, $r_s0, 24
|
||||||
|
srl t1, $r_s0, 24
|
||||||
|
srl t2, $r_s0, 8
|
||||||
|
or t0, t0, t1
|
||||||
|
andi t2, t2, 0xff00
|
||||||
|
andi t1, $r_s0, 0xff00
|
||||||
|
or t0, t0, t2
|
||||||
|
sll t1, t1, 8
|
||||||
|
jr $r_ra
|
||||||
|
or $r_A, t0, t1
|
||||||
|
# endif
|
||||||
|
#else
|
||||||
jr $r_ra
|
jr $r_ra
|
||||||
move $r_A, $r_s0
|
move $r_A, $r_s0
|
||||||
|
#endif
|
||||||
|
|
||||||
END(bpf_slow_path_word)
|
END(bpf_slow_path_word)
|
||||||
|
|
||||||
NESTED(bpf_slow_path_half, (6 * SZREG), $r_sp)
|
NESTED(bpf_slow_path_half, (6 * SZREG), $r_sp)
|
||||||
bpf_slow_path_common(2)
|
bpf_slow_path_common(2)
|
||||||
#ifdef CONFIG_CPU_LITTLE_ENDIAN
|
#ifdef CONFIG_CPU_LITTLE_ENDIAN
|
||||||
|
# if defined(__mips_isa_rev) && (__mips_isa_rev >= 2)
|
||||||
jr $r_ra
|
jr $r_ra
|
||||||
wsbh $r_A, $r_s0
|
wsbh $r_A, $r_s0
|
||||||
#endif
|
# else
|
||||||
|
sll t0, $r_s0, 8
|
||||||
|
andi t1, $r_s0, 0xff00
|
||||||
|
andi t0, t0, 0xff00
|
||||||
|
srl t1, t1, 8
|
||||||
|
jr $r_ra
|
||||||
|
or $r_A, t0, t1
|
||||||
|
# endif
|
||||||
|
#else
|
||||||
jr $r_ra
|
jr $r_ra
|
||||||
move $r_A, $r_s0
|
move $r_A, $r_s0
|
||||||
|
#endif
|
||||||
|
|
||||||
END(bpf_slow_path_half)
|
END(bpf_slow_path_half)
|
||||||
|
|
||||||
|
|
|
@ -9,3 +9,4 @@ generic-y += mm-arch-hooks.h
|
||||||
generic-y += preempt.h
|
generic-y += preempt.h
|
||||||
generic-y += sections.h
|
generic-y += sections.h
|
||||||
generic-y += trace_clock.h
|
generic-y += trace_clock.h
|
||||||
|
generic-y += word-at-a-time.h
|
||||||
|
|
|
@ -61,4 +61,5 @@ generic-y += types.h
|
||||||
generic-y += unaligned.h
|
generic-y += unaligned.h
|
||||||
generic-y += user.h
|
generic-y += user.h
|
||||||
generic-y += vga.h
|
generic-y += vga.h
|
||||||
|
generic-y += word-at-a-time.h
|
||||||
generic-y += xor.h
|
generic-y += xor.h
|
||||||
|
|
|
@ -40,6 +40,11 @@ static inline bool has_zero(unsigned long val, unsigned long *data, const struct
|
||||||
return (val + c->high_bits) & ~rhs;
|
return (val + c->high_bits) & ~rhs;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
static inline unsigned long zero_bytemask(unsigned long mask)
|
||||||
|
{
|
||||||
|
return ~1ul << __fls(mask);
|
||||||
|
}
|
||||||
|
|
||||||
#else
|
#else
|
||||||
|
|
||||||
#ifdef CONFIG_64BIT
|
#ifdef CONFIG_64BIT
|
||||||
|
|
|
@ -10,7 +10,7 @@ targets += misc.o piggy.o sizes.h head.o
|
||||||
|
|
||||||
KBUILD_CFLAGS := -m64 -D__KERNEL__ $(LINUX_INCLUDE) -O2
|
KBUILD_CFLAGS := -m64 -D__KERNEL__ $(LINUX_INCLUDE) -O2
|
||||||
KBUILD_CFLAGS += -DDISABLE_BRANCH_PROFILING
|
KBUILD_CFLAGS += -DDISABLE_BRANCH_PROFILING
|
||||||
KBUILD_CFLAGS += $(cflags-y) -fno-delete-null-pointer-checks
|
KBUILD_CFLAGS += $(cflags-y) -fno-delete-null-pointer-checks -msoft-float
|
||||||
KBUILD_CFLAGS += $(call cc-option,-mpacked-stack)
|
KBUILD_CFLAGS += $(call cc-option,-mpacked-stack)
|
||||||
KBUILD_CFLAGS += $(call cc-option,-ffreestanding)
|
KBUILD_CFLAGS += $(call cc-option,-ffreestanding)
|
||||||
|
|
||||||
|
|
|
@ -381,7 +381,7 @@ CONFIG_ISCSI_TCP=m
|
||||||
CONFIG_SCSI_DEBUG=m
|
CONFIG_SCSI_DEBUG=m
|
||||||
CONFIG_ZFCP=y
|
CONFIG_ZFCP=y
|
||||||
CONFIG_SCSI_VIRTIO=m
|
CONFIG_SCSI_VIRTIO=m
|
||||||
CONFIG_SCSI_DH=m
|
CONFIG_SCSI_DH=y
|
||||||
CONFIG_SCSI_DH_RDAC=m
|
CONFIG_SCSI_DH_RDAC=m
|
||||||
CONFIG_SCSI_DH_HP_SW=m
|
CONFIG_SCSI_DH_HP_SW=m
|
||||||
CONFIG_SCSI_DH_EMC=m
|
CONFIG_SCSI_DH_EMC=m
|
||||||
|
|
|
@ -377,7 +377,7 @@ CONFIG_ISCSI_TCP=m
|
||||||
CONFIG_SCSI_DEBUG=m
|
CONFIG_SCSI_DEBUG=m
|
||||||
CONFIG_ZFCP=y
|
CONFIG_ZFCP=y
|
||||||
CONFIG_SCSI_VIRTIO=m
|
CONFIG_SCSI_VIRTIO=m
|
||||||
CONFIG_SCSI_DH=m
|
CONFIG_SCSI_DH=y
|
||||||
CONFIG_SCSI_DH_RDAC=m
|
CONFIG_SCSI_DH_RDAC=m
|
||||||
CONFIG_SCSI_DH_HP_SW=m
|
CONFIG_SCSI_DH_HP_SW=m
|
||||||
CONFIG_SCSI_DH_EMC=m
|
CONFIG_SCSI_DH_EMC=m
|
||||||
|
|
|
@ -377,7 +377,7 @@ CONFIG_ISCSI_TCP=m
|
||||||
CONFIG_SCSI_DEBUG=m
|
CONFIG_SCSI_DEBUG=m
|
||||||
CONFIG_ZFCP=y
|
CONFIG_ZFCP=y
|
||||||
CONFIG_SCSI_VIRTIO=m
|
CONFIG_SCSI_VIRTIO=m
|
||||||
CONFIG_SCSI_DH=m
|
CONFIG_SCSI_DH=y
|
||||||
CONFIG_SCSI_DH_RDAC=m
|
CONFIG_SCSI_DH_RDAC=m
|
||||||
CONFIG_SCSI_DH_HP_SW=m
|
CONFIG_SCSI_DH_HP_SW=m
|
||||||
CONFIG_SCSI_DH_EMC=m
|
CONFIG_SCSI_DH_EMC=m
|
||||||
|
|
|
@ -6,3 +6,4 @@ generic-y += mcs_spinlock.h
|
||||||
generic-y += mm-arch-hooks.h
|
generic-y += mm-arch-hooks.h
|
||||||
generic-y += preempt.h
|
generic-y += preempt.h
|
||||||
generic-y += trace_clock.h
|
generic-y += trace_clock.h
|
||||||
|
generic-y += word-at-a-time.h
|
||||||
|
|
|
@ -19,7 +19,7 @@ int numa_pfn_to_nid(unsigned long pfn);
|
||||||
int __node_distance(int a, int b);
|
int __node_distance(int a, int b);
|
||||||
void numa_update_cpu_topology(void);
|
void numa_update_cpu_topology(void);
|
||||||
|
|
||||||
extern cpumask_var_t node_to_cpumask_map[MAX_NUMNODES];
|
extern cpumask_t node_to_cpumask_map[MAX_NUMNODES];
|
||||||
extern int numa_debug_enabled;
|
extern int numa_debug_enabled;
|
||||||
|
|
||||||
#else
|
#else
|
||||||
|
|
|
@ -68,7 +68,7 @@ static inline int cpu_to_node(int cpu)
|
||||||
#define cpumask_of_node cpumask_of_node
|
#define cpumask_of_node cpumask_of_node
|
||||||
static inline const struct cpumask *cpumask_of_node(int node)
|
static inline const struct cpumask *cpumask_of_node(int node)
|
||||||
{
|
{
|
||||||
return node_to_cpumask_map[node];
|
return &node_to_cpumask_map[node];
|
||||||
}
|
}
|
||||||
|
|
||||||
/*
|
/*
|
||||||
|
|
|
@ -176,6 +176,7 @@ int main(void)
|
||||||
DEFINE(__LC_PASTE, offsetof(struct _lowcore, paste));
|
DEFINE(__LC_PASTE, offsetof(struct _lowcore, paste));
|
||||||
DEFINE(__LC_FP_CREG_SAVE_AREA, offsetof(struct _lowcore, fpt_creg_save_area));
|
DEFINE(__LC_FP_CREG_SAVE_AREA, offsetof(struct _lowcore, fpt_creg_save_area));
|
||||||
DEFINE(__LC_LAST_BREAK, offsetof(struct _lowcore, breaking_event_addr));
|
DEFINE(__LC_LAST_BREAK, offsetof(struct _lowcore, breaking_event_addr));
|
||||||
|
DEFINE(__LC_PERCPU_OFFSET, offsetof(struct _lowcore, percpu_offset));
|
||||||
DEFINE(__LC_VDSO_PER_CPU, offsetof(struct _lowcore, vdso_per_cpu_data));
|
DEFINE(__LC_VDSO_PER_CPU, offsetof(struct _lowcore, vdso_per_cpu_data));
|
||||||
DEFINE(__LC_GMAP, offsetof(struct _lowcore, gmap));
|
DEFINE(__LC_GMAP, offsetof(struct _lowcore, gmap));
|
||||||
DEFINE(__LC_PGM_TDB, offsetof(struct _lowcore, pgm_tdb));
|
DEFINE(__LC_PGM_TDB, offsetof(struct _lowcore, pgm_tdb));
|
||||||
|
|
|
@ -733,6 +733,14 @@ ENTRY(psw_idle)
|
||||||
stg %r3,__SF_EMPTY(%r15)
|
stg %r3,__SF_EMPTY(%r15)
|
||||||
larl %r1,.Lpsw_idle_lpsw+4
|
larl %r1,.Lpsw_idle_lpsw+4
|
||||||
stg %r1,__SF_EMPTY+8(%r15)
|
stg %r1,__SF_EMPTY+8(%r15)
|
||||||
|
#ifdef CONFIG_SMP
|
||||||
|
larl %r1,smp_cpu_mtid
|
||||||
|
llgf %r1,0(%r1)
|
||||||
|
ltgr %r1,%r1
|
||||||
|
jz .Lpsw_idle_stcctm
|
||||||
|
.insn rsy,0xeb0000000017,%r1,5,__SF_EMPTY+16(%r15)
|
||||||
|
.Lpsw_idle_stcctm:
|
||||||
|
#endif
|
||||||
STCK __CLOCK_IDLE_ENTER(%r2)
|
STCK __CLOCK_IDLE_ENTER(%r2)
|
||||||
stpt __TIMER_IDLE_ENTER(%r2)
|
stpt __TIMER_IDLE_ENTER(%r2)
|
||||||
.Lpsw_idle_lpsw:
|
.Lpsw_idle_lpsw:
|
||||||
|
@ -1159,7 +1167,27 @@ cleanup_critical:
|
||||||
jhe 1f
|
jhe 1f
|
||||||
mvc __CLOCK_IDLE_ENTER(8,%r2),__CLOCK_IDLE_EXIT(%r2)
|
mvc __CLOCK_IDLE_ENTER(8,%r2),__CLOCK_IDLE_EXIT(%r2)
|
||||||
mvc __TIMER_IDLE_ENTER(8,%r2),__TIMER_IDLE_EXIT(%r2)
|
mvc __TIMER_IDLE_ENTER(8,%r2),__TIMER_IDLE_EXIT(%r2)
|
||||||
1: # account system time going idle
|
1: # calculate idle cycles
|
||||||
|
#ifdef CONFIG_SMP
|
||||||
|
clg %r9,BASED(.Lcleanup_idle_insn)
|
||||||
|
jl 3f
|
||||||
|
larl %r1,smp_cpu_mtid
|
||||||
|
llgf %r1,0(%r1)
|
||||||
|
ltgr %r1,%r1
|
||||||
|
jz 3f
|
||||||
|
.insn rsy,0xeb0000000017,%r1,5,__SF_EMPTY+80(%r15)
|
||||||
|
larl %r3,mt_cycles
|
||||||
|
ag %r3,__LC_PERCPU_OFFSET
|
||||||
|
la %r4,__SF_EMPTY+16(%r15)
|
||||||
|
2: lg %r0,0(%r3)
|
||||||
|
slg %r0,0(%r4)
|
||||||
|
alg %r0,64(%r4)
|
||||||
|
stg %r0,0(%r3)
|
||||||
|
la %r3,8(%r3)
|
||||||
|
la %r4,8(%r4)
|
||||||
|
brct %r1,2b
|
||||||
|
#endif
|
||||||
|
3: # account system time going idle
|
||||||
lg %r9,__LC_STEAL_TIMER
|
lg %r9,__LC_STEAL_TIMER
|
||||||
alg %r9,__CLOCK_IDLE_ENTER(%r2)
|
alg %r9,__CLOCK_IDLE_ENTER(%r2)
|
||||||
slg %r9,__LC_LAST_UPDATE_CLOCK
|
slg %r9,__LC_LAST_UPDATE_CLOCK
|
||||||
|
|
|
@ -25,7 +25,7 @@ static DEFINE_SPINLOCK(virt_timer_lock);
|
||||||
static atomic64_t virt_timer_current;
|
static atomic64_t virt_timer_current;
|
||||||
static atomic64_t virt_timer_elapsed;
|
static atomic64_t virt_timer_elapsed;
|
||||||
|
|
||||||
static DEFINE_PER_CPU(u64, mt_cycles[32]);
|
DEFINE_PER_CPU(u64, mt_cycles[8]);
|
||||||
static DEFINE_PER_CPU(u64, mt_scaling_mult) = { 1 };
|
static DEFINE_PER_CPU(u64, mt_scaling_mult) = { 1 };
|
||||||
static DEFINE_PER_CPU(u64, mt_scaling_div) = { 1 };
|
static DEFINE_PER_CPU(u64, mt_scaling_div) = { 1 };
|
||||||
static DEFINE_PER_CPU(u64, mt_scaling_jiffies);
|
static DEFINE_PER_CPU(u64, mt_scaling_jiffies);
|
||||||
|
@ -60,39 +60,14 @@ static inline int virt_timer_forward(u64 elapsed)
|
||||||
return elapsed >= atomic64_read(&virt_timer_current);
|
return elapsed >= atomic64_read(&virt_timer_current);
|
||||||
}
|
}
|
||||||
|
|
||||||
/*
|
static void update_mt_scaling(void)
|
||||||
* Update process times based on virtual cpu times stored by entry.S
|
|
||||||
* to the lowcore fields user_timer, system_timer & steal_clock.
|
|
||||||
*/
|
|
||||||
static int do_account_vtime(struct task_struct *tsk, int hardirq_offset)
|
|
||||||
{
|
{
|
||||||
struct thread_info *ti = task_thread_info(tsk);
|
u64 cycles_new[8], *cycles_old;
|
||||||
u64 timer, clock, user, system, steal;
|
u64 delta, fac, mult, div;
|
||||||
u64 user_scaled, system_scaled;
|
|
||||||
int i;
|
int i;
|
||||||
|
|
||||||
timer = S390_lowcore.last_update_timer;
|
stcctm5(smp_cpu_mtid + 1, cycles_new);
|
||||||
clock = S390_lowcore.last_update_clock;
|
|
||||||
asm volatile(
|
|
||||||
" stpt %0\n" /* Store current cpu timer value */
|
|
||||||
#ifdef CONFIG_HAVE_MARCH_Z9_109_FEATURES
|
|
||||||
" stckf %1" /* Store current tod clock value */
|
|
||||||
#else
|
|
||||||
" stck %1" /* Store current tod clock value */
|
|
||||||
#endif
|
|
||||||
: "=m" (S390_lowcore.last_update_timer),
|
|
||||||
"=m" (S390_lowcore.last_update_clock));
|
|
||||||
S390_lowcore.system_timer += timer - S390_lowcore.last_update_timer;
|
|
||||||
S390_lowcore.steal_timer += S390_lowcore.last_update_clock - clock;
|
|
||||||
|
|
||||||
/* Do MT utilization calculation */
|
|
||||||
if (smp_cpu_mtid &&
|
|
||||||
time_after64(jiffies_64, __this_cpu_read(mt_scaling_jiffies))) {
|
|
||||||
u64 cycles_new[32], *cycles_old;
|
|
||||||
u64 delta, fac, mult, div;
|
|
||||||
|
|
||||||
cycles_old = this_cpu_ptr(mt_cycles);
|
cycles_old = this_cpu_ptr(mt_cycles);
|
||||||
if (stcctm5(smp_cpu_mtid + 1, cycles_new) < 2) {
|
|
||||||
fac = 1;
|
fac = 1;
|
||||||
mult = div = 0;
|
mult = div = 0;
|
||||||
for (i = 0; i <= smp_cpu_mtid; i++) {
|
for (i = 0; i <= smp_cpu_mtid; i++) {
|
||||||
|
@ -110,9 +85,37 @@ static int do_account_vtime(struct task_struct *tsk, int hardirq_offset)
|
||||||
memcpy(cycles_old, cycles_new,
|
memcpy(cycles_old, cycles_new,
|
||||||
sizeof(u64) * (smp_cpu_mtid + 1));
|
sizeof(u64) * (smp_cpu_mtid + 1));
|
||||||
}
|
}
|
||||||
}
|
|
||||||
__this_cpu_write(mt_scaling_jiffies, jiffies_64);
|
__this_cpu_write(mt_scaling_jiffies, jiffies_64);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/*
|
||||||
|
* Update process times based on virtual cpu times stored by entry.S
|
||||||
|
* to the lowcore fields user_timer, system_timer & steal_clock.
|
||||||
|
*/
|
||||||
|
static int do_account_vtime(struct task_struct *tsk, int hardirq_offset)
|
||||||
|
{
|
||||||
|
struct thread_info *ti = task_thread_info(tsk);
|
||||||
|
u64 timer, clock, user, system, steal;
|
||||||
|
u64 user_scaled, system_scaled;
|
||||||
|
|
||||||
|
timer = S390_lowcore.last_update_timer;
|
||||||
|
clock = S390_lowcore.last_update_clock;
|
||||||
|
asm volatile(
|
||||||
|
" stpt %0\n" /* Store current cpu timer value */
|
||||||
|
#ifdef CONFIG_HAVE_MARCH_Z9_109_FEATURES
|
||||||
|
" stckf %1" /* Store current tod clock value */
|
||||||
|
#else
|
||||||
|
" stck %1" /* Store current tod clock value */
|
||||||
|
#endif
|
||||||
|
: "=m" (S390_lowcore.last_update_timer),
|
||||||
|
"=m" (S390_lowcore.last_update_clock));
|
||||||
|
S390_lowcore.system_timer += timer - S390_lowcore.last_update_timer;
|
||||||
|
S390_lowcore.steal_timer += S390_lowcore.last_update_clock - clock;
|
||||||
|
|
||||||
|
/* Update MT utilization calculation */
|
||||||
|
if (smp_cpu_mtid &&
|
||||||
|
time_after64(jiffies_64, this_cpu_read(mt_scaling_jiffies)))
|
||||||
|
update_mt_scaling();
|
||||||
|
|
||||||
user = S390_lowcore.user_timer - ti->user_timer;
|
user = S390_lowcore.user_timer - ti->user_timer;
|
||||||
S390_lowcore.steal_timer -= user;
|
S390_lowcore.steal_timer -= user;
|
||||||
|
@ -181,6 +184,11 @@ void vtime_account_irq_enter(struct task_struct *tsk)
|
||||||
S390_lowcore.last_update_timer = get_vtimer();
|
S390_lowcore.last_update_timer = get_vtimer();
|
||||||
S390_lowcore.system_timer += timer - S390_lowcore.last_update_timer;
|
S390_lowcore.system_timer += timer - S390_lowcore.last_update_timer;
|
||||||
|
|
||||||
|
/* Update MT utilization calculation */
|
||||||
|
if (smp_cpu_mtid &&
|
||||||
|
time_after64(jiffies_64, this_cpu_read(mt_scaling_jiffies)))
|
||||||
|
update_mt_scaling();
|
||||||
|
|
||||||
system = S390_lowcore.system_timer - ti->system_timer;
|
system = S390_lowcore.system_timer - ti->system_timer;
|
||||||
S390_lowcore.steal_timer -= system;
|
S390_lowcore.steal_timer -= system;
|
||||||
ti->system_timer = S390_lowcore.system_timer;
|
ti->system_timer = S390_lowcore.system_timer;
|
||||||
|
|
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in New Issue