mirror of
git://git.openwrt.org/openwrt/openwrt.git
synced 2024-12-28 17:42:28 +00:00
kernel: bump 4.19 to 4.19.91
Refreshed all patches. Compile-tested on: ipq40xx, apm821xx Runtime-tested on: ipq40xx Signed-off-by: Hauke Mehrtens <hauke@hauke-m.de>
This commit is contained in:
parent
e115fa478f
commit
f0df0d6a14
@ -8,11 +8,11 @@ endif
|
|||||||
|
|
||||||
LINUX_VERSION-4.9 = .206
|
LINUX_VERSION-4.9 = .206
|
||||||
LINUX_VERSION-4.14 = .159
|
LINUX_VERSION-4.14 = .159
|
||||||
LINUX_VERSION-4.19 = .90
|
LINUX_VERSION-4.19 = .91
|
||||||
|
|
||||||
LINUX_KERNEL_HASH-4.9.206 = 1df27899a9bc4dd874f3830ab9e7b638f0026dffd67a2e230444e5d2805ccad6
|
LINUX_KERNEL_HASH-4.9.206 = 1df27899a9bc4dd874f3830ab9e7b638f0026dffd67a2e230444e5d2805ccad6
|
||||||
LINUX_KERNEL_HASH-4.14.159 = e8d42d3a1b85d180141e9bc11c4a0e87f8a413c0e989b0f24c1b7c40f8a826f2
|
LINUX_KERNEL_HASH-4.14.159 = e8d42d3a1b85d180141e9bc11c4a0e87f8a413c0e989b0f24c1b7c40f8a826f2
|
||||||
LINUX_KERNEL_HASH-4.19.90 = 29d86c0a6daf169ec0b4b42a12f8d55dc894c52bd901f876f52a05906a5cf7fd
|
LINUX_KERNEL_HASH-4.19.91 = f403c3dee12ded0af1889c78871abf7a531a978ba423f1ca772de702a92c3447
|
||||||
|
|
||||||
remove_uri_prefix=$(subst git://,,$(subst http://,,$(subst https://,,$(1))))
|
remove_uri_prefix=$(subst git://,,$(subst http://,,$(subst https://,,$(1))))
|
||||||
sanitize_uri=$(call qstrip,$(subst @,_,$(subst :,_,$(subst .,_,$(subst -,_,$(subst /,_,$(1)))))))
|
sanitize_uri=$(call qstrip,$(subst @,_,$(subst :,_,$(subst .,_,$(subst -,_,$(subst /,_,$(1)))))))
|
||||||
|
@ -125,7 +125,7 @@ Signed-off-by: Phil Elwell <phil@raspberrypi.org>
|
|||||||
static inline int mmc_blk_part_switch(struct mmc_card *card,
|
static inline int mmc_blk_part_switch(struct mmc_card *card,
|
||||||
unsigned int part_type);
|
unsigned int part_type);
|
||||||
|
|
||||||
@@ -2913,6 +2920,7 @@ static int mmc_blk_probe(struct mmc_card
|
@@ -2876,6 +2883,7 @@ static int mmc_blk_probe(struct mmc_card
|
||||||
{
|
{
|
||||||
struct mmc_blk_data *md, *part_md;
|
struct mmc_blk_data *md, *part_md;
|
||||||
char cap_str[10];
|
char cap_str[10];
|
||||||
@ -133,7 +133,7 @@ Signed-off-by: Phil Elwell <phil@raspberrypi.org>
|
|||||||
|
|
||||||
/*
|
/*
|
||||||
* Check that the card supports the command class(es) we need.
|
* Check that the card supports the command class(es) we need.
|
||||||
@@ -2920,7 +2928,16 @@ static int mmc_blk_probe(struct mmc_card
|
@@ -2883,7 +2891,16 @@ static int mmc_blk_probe(struct mmc_card
|
||||||
if (!(card->csd.cmdclass & CCC_BLOCK_READ))
|
if (!(card->csd.cmdclass & CCC_BLOCK_READ))
|
||||||
return -ENODEV;
|
return -ENODEV;
|
||||||
|
|
||||||
@ -151,7 +151,7 @@ Signed-off-by: Phil Elwell <phil@raspberrypi.org>
|
|||||||
|
|
||||||
card->complete_wq = alloc_workqueue("mmc_complete",
|
card->complete_wq = alloc_workqueue("mmc_complete",
|
||||||
WQ_MEM_RECLAIM | WQ_HIGHPRI, 0);
|
WQ_MEM_RECLAIM | WQ_HIGHPRI, 0);
|
||||||
@@ -2935,9 +2952,14 @@ static int mmc_blk_probe(struct mmc_card
|
@@ -2898,9 +2915,14 @@ static int mmc_blk_probe(struct mmc_card
|
||||||
|
|
||||||
string_get_size((u64)get_capacity(md->disk), 512, STRING_UNITS_2,
|
string_get_size((u64)get_capacity(md->disk), 512, STRING_UNITS_2,
|
||||||
cap_str, sizeof(cap_str));
|
cap_str, sizeof(cap_str));
|
||||||
|
@ -13,10 +13,10 @@ Signed-off-by: Phil Elwell <phil@raspberrypi.org>
|
|||||||
|
|
||||||
--- a/drivers/firmware/raspberrypi.c
|
--- a/drivers/firmware/raspberrypi.c
|
||||||
+++ b/drivers/firmware/raspberrypi.c
|
+++ b/drivers/firmware/raspberrypi.c
|
||||||
@@ -14,6 +14,7 @@
|
@@ -15,6 +15,7 @@
|
||||||
#include <linux/module.h>
|
|
||||||
#include <linux/of_platform.h>
|
#include <linux/of_platform.h>
|
||||||
#include <linux/platform_device.h>
|
#include <linux/platform_device.h>
|
||||||
|
#include <linux/slab.h>
|
||||||
+#include <linux/reboot.h>
|
+#include <linux/reboot.h>
|
||||||
#include <linux/slab.h>
|
#include <linux/slab.h>
|
||||||
#include <soc/bcm2835/raspberrypi-firmware.h>
|
#include <soc/bcm2835/raspberrypi-firmware.h>
|
||||||
|
@ -43,7 +43,7 @@ Signed-off-by: Felix Fietkau <nbd@nbd.name>
|
|||||||
const struct header_ops *header_ops;
|
const struct header_ops *header_ops;
|
||||||
|
|
||||||
unsigned int flags;
|
unsigned int flags;
|
||||||
@@ -1919,6 +1926,10 @@ struct net_device {
|
@@ -1924,6 +1931,10 @@ struct net_device {
|
||||||
struct mpls_dev __rcu *mpls_ptr;
|
struct mpls_dev __rcu *mpls_ptr;
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
@ -20,7 +20,7 @@ Signed-off-by: Felix Fietkau <nbd@nbd.name>
|
|||||||
|
|
||||||
#include <linux/uaccess.h>
|
#include <linux/uaccess.h>
|
||||||
#include "br_private.h"
|
#include "br_private.h"
|
||||||
@@ -370,6 +374,28 @@ static const struct ethtool_ops br_ethto
|
@@ -376,6 +380,28 @@ static const struct ethtool_ops br_ethto
|
||||||
.get_link = ethtool_op_get_link,
|
.get_link = ethtool_op_get_link,
|
||||||
};
|
};
|
||||||
|
|
||||||
@ -49,7 +49,7 @@ Signed-off-by: Felix Fietkau <nbd@nbd.name>
|
|||||||
static const struct net_device_ops br_netdev_ops = {
|
static const struct net_device_ops br_netdev_ops = {
|
||||||
.ndo_open = br_dev_open,
|
.ndo_open = br_dev_open,
|
||||||
.ndo_stop = br_dev_stop,
|
.ndo_stop = br_dev_stop,
|
||||||
@@ -397,6 +423,9 @@ static const struct net_device_ops br_ne
|
@@ -403,6 +429,9 @@ static const struct net_device_ops br_ne
|
||||||
.ndo_bridge_setlink = br_setlink,
|
.ndo_bridge_setlink = br_setlink,
|
||||||
.ndo_bridge_dellink = br_dellink,
|
.ndo_bridge_dellink = br_dellink,
|
||||||
.ndo_features_check = passthru_features_check,
|
.ndo_features_check = passthru_features_check,
|
||||||
|
@ -11,7 +11,7 @@ Signed-off-by: Felix Fietkau <nbd@nbd.name>
|
|||||||
|
|
||||||
--- a/include/linux/netdevice.h
|
--- a/include/linux/netdevice.h
|
||||||
+++ b/include/linux/netdevice.h
|
+++ b/include/linux/netdevice.h
|
||||||
@@ -1882,6 +1882,8 @@ struct net_device {
|
@@ -1887,6 +1887,8 @@ struct net_device {
|
||||||
struct netdev_hw_addr_list mc;
|
struct netdev_hw_addr_list mc;
|
||||||
struct netdev_hw_addr_list dev_addrs;
|
struct netdev_hw_addr_list dev_addrs;
|
||||||
|
|
||||||
@ -107,7 +107,7 @@ Signed-off-by: Felix Fietkau <nbd@nbd.name>
|
|||||||
call_netdevice_notifiers_info(NETDEV_CHANGEUPPER,
|
call_netdevice_notifiers_info(NETDEV_CHANGEUPPER,
|
||||||
&changeupper_info.info);
|
&changeupper_info.info);
|
||||||
}
|
}
|
||||||
@@ -7732,6 +7779,7 @@ int dev_set_mac_address(struct net_devic
|
@@ -7733,6 +7780,7 @@ int dev_set_mac_address(struct net_devic
|
||||||
if (err)
|
if (err)
|
||||||
return err;
|
return err;
|
||||||
dev->addr_assign_type = NET_ADDR_SET;
|
dev->addr_assign_type = NET_ADDR_SET;
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
--- a/drivers/thermal/qcom/tsens-common.c
|
--- a/drivers/thermal/qcom/tsens-common.c
|
||||||
+++ b/drivers/thermal/qcom/tsens-common.c
|
+++ b/drivers/thermal/qcom/tsens-common.c
|
||||||
@@ -128,6 +128,7 @@
|
@@ -128,6 +128,7 @@ int __init init_common(struct tsens_devi
|
||||||
{
|
{
|
||||||
void __iomem *base;
|
void __iomem *base;
|
||||||
struct resource *res;
|
struct resource *res;
|
||||||
|
@ -22,7 +22,7 @@ Signed-off-by: Adrian Panella <ianchi74@outlook.com>
|
|||||||
|
|
||||||
--- a/arch/arm/Kconfig
|
--- a/arch/arm/Kconfig
|
||||||
+++ b/arch/arm/Kconfig
|
+++ b/arch/arm/Kconfig
|
||||||
@@ -1925,6 +1925,17 @@ config ARM_ATAG_DTB_COMPAT_CMDLINE_EXTEN
|
@@ -1926,6 +1926,17 @@ config ARM_ATAG_DTB_COMPAT_CMDLINE_EXTEN
|
||||||
The command-line arguments provided by the boot loader will be
|
The command-line arguments provided by the boot loader will be
|
||||||
appended to the the device tree bootargs property.
|
appended to the the device tree bootargs property.
|
||||||
|
|
||||||
@ -168,7 +168,7 @@ Signed-off-by: Adrian Panella <ianchi74@outlook.com>
|
|||||||
static int kernel_init(void *);
|
static int kernel_init(void *);
|
||||||
|
|
||||||
extern void init_IRQ(void);
|
extern void init_IRQ(void);
|
||||||
@@ -594,6 +598,18 @@ asmlinkage __visible void __init start_k
|
@@ -593,6 +597,18 @@ asmlinkage __visible void __init start_k
|
||||||
pr_notice("Kernel command line: %s\n", boot_command_line);
|
pr_notice("Kernel command line: %s\n", boot_command_line);
|
||||||
/* parameters may set static keys */
|
/* parameters may set static keys */
|
||||||
jump_label_init();
|
jump_label_init();
|
||||||
|
@ -38,7 +38,7 @@ Signed-off-by: Sham Muthayyan <smuthayy@codeaurora.org>
|
|||||||
|
|
||||||
|
|
||||||
/* Set the Max TLP size to 2K, instead of using default of 4K */
|
/* Set the Max TLP size to 2K, instead of using default of 4K */
|
||||||
@@ -1369,6 +1377,8 @@ static int qcom_pcie_probe(struct platfo
|
@@ -1367,6 +1375,8 @@ static int qcom_pcie_probe(struct platfo
|
||||||
struct dw_pcie *pci;
|
struct dw_pcie *pci;
|
||||||
struct qcom_pcie *pcie;
|
struct qcom_pcie *pcie;
|
||||||
int ret;
|
int ret;
|
||||||
@ -47,13 +47,13 @@ Signed-off-by: Sham Muthayyan <smuthayy@codeaurora.org>
|
|||||||
|
|
||||||
pcie = devm_kzalloc(dev, sizeof(*pcie), GFP_KERNEL);
|
pcie = devm_kzalloc(dev, sizeof(*pcie), GFP_KERNEL);
|
||||||
if (!pcie)
|
if (!pcie)
|
||||||
@@ -1391,6 +1401,9 @@ static int qcom_pcie_probe(struct platfo
|
@@ -1397,6 +1407,9 @@ static int qcom_pcie_probe(struct platfo
|
||||||
if (IS_ERR(pcie->reset))
|
goto err_pm_runtime_put;
|
||||||
return PTR_ERR(pcie->reset);
|
}
|
||||||
|
|
||||||
+ of_property_read_u32(np, "force_gen1", &force_gen1);
|
+ of_property_read_u32(np, "force_gen1", &force_gen1);
|
||||||
+ pcie->force_gen1 = force_gen1;
|
+ pcie->force_gen1 = force_gen1;
|
||||||
+
|
+
|
||||||
res = platform_get_resource_byname(pdev, IORESOURCE_MEM, "parf");
|
res = platform_get_resource_byname(pdev, IORESOURCE_MEM, "parf");
|
||||||
pcie->parf = devm_ioremap_resource(dev, res);
|
pcie->parf = devm_ioremap_resource(dev, res);
|
||||||
if (IS_ERR(pcie->parf))
|
if (IS_ERR(pcie->parf)) {
|
||||||
|
@ -31,8 +31,8 @@ Signed-off-by: Gokul Sriram Palanisamy <gpalan@codeaurora.org>
|
|||||||
#define QCOM_PCIE_2_1_0_MAX_SUPPLY 3
|
#define QCOM_PCIE_2_1_0_MAX_SUPPLY 3
|
||||||
struct qcom_pcie_resources_2_1_0 {
|
struct qcom_pcie_resources_2_1_0 {
|
||||||
struct clk *iface_clk;
|
struct clk *iface_clk;
|
||||||
@@ -1453,6 +1461,35 @@ static int qcom_pcie_probe(struct platfo
|
@@ -1475,6 +1483,35 @@ err_pm_runtime_put:
|
||||||
return 0;
|
return ret;
|
||||||
}
|
}
|
||||||
|
|
||||||
+static void qcom_pcie_fixup_final(struct pci_dev *dev)
|
+static void qcom_pcie_fixup_final(struct pci_dev *dev)
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
--- a/drivers/firmware/qcom_scm.c
|
--- a/drivers/firmware/qcom_scm.c
|
||||||
+++ b/drivers/firmware/qcom_scm.c
|
+++ b/drivers/firmware/qcom_scm.c
|
||||||
@@ -606,6 +606,9 @@ static const struct of_device_id qcom_sc
|
@@ -609,6 +609,9 @@ static const struct of_device_id qcom_sc
|
||||||
{ .compatible = "qcom,scm-ipq4019",
|
{ .compatible = "qcom,scm-ipq4019",
|
||||||
.data = NULL, /* no clocks */
|
.data = NULL, /* no clocks */
|
||||||
},
|
},
|
||||||
|
@ -60,7 +60,7 @@ will be executed twice with the same parameters for the same pinctrl.
|
|||||||
|
|
||||||
--- a/arch/arm/boot/dts/qcom-ipq8064.dtsi
|
--- a/arch/arm/boot/dts/qcom-ipq8064.dtsi
|
||||||
+++ b/arch/arm/boot/dts/qcom-ipq8064.dtsi
|
+++ b/arch/arm/boot/dts/qcom-ipq8064.dtsi
|
||||||
@@ -653,6 +653,7 @@
|
@@ -625,6 +625,7 @@
|
||||||
reg = <0x800000 0x4000>;
|
reg = <0x800000 0x4000>;
|
||||||
|
|
||||||
gpio-controller;
|
gpio-controller;
|
||||||
|
Loading…
Reference in New Issue
Block a user