This series integrates already accepted (or already posted and got acked) patches that: + Provide bug fixes for cppcc_cpufreq driver, i2c-designware driver, mailbox driver, X-Gene SlimPRO I2C driver, GIC PCI legacy interrupt polarity. + Add support for X-Gene HWMon + Add support for X-Gene SoC PMU + Update X-Gene Enet driver The series also enables cppc_cpufreq, i2c-designware, X-Gene HWMon, X-Gene SoC PMU drivers by default. v2 changes: - Move all config options changes to config-centos-sig Duc Dang (11): Add cpufreq CPPC fixes Enable CONFIG_ACPI_CPPC_CPUFREQ by default Integrate upstream fix for return value of pcc_mbox_request_channel Add X-Gene HWMon support Add X-Gene SoC PMU support Integrate fix to avoid DMA buffer overrun on X-Gene SlimPRO I2C driver Integrate upstream patches for X-Gene Enet driver Integrate upstream fix for GIC default PCI IRQ polarity Add SMBus block read/write support for Designware I2C Enable I2C Designware support by default Integrate upstream fix to make X-Gene HWmon access mailbox as RAM ...C-Avoid-overflow-when-calculating-desired.patch | 31 + ...req-CPPC-Correct-desired_perf-calculation.patch | 46 + ...-Fix-return-value-of-pcc_mbox_request_cha.patch | 33 + ...on-dtb-xgene-Add-hwmon-dts-binding-docume.patch | 39 + SOURCES/1005-hwmon-Add-xgene-hwmon-driver.patch | 850 +++++++++++ ...-Fix-crash-when-alarm-occurs-before-drive.patch | 158 ++ ...Add-APM-X-Gene-SoC-Performance-Monitoring.patch | 1508 ++++++++++++++++++++ ...1008-perf-xgene-Remove-bogus-IS_ERR-check.patch | 39 + ...S-Add-entry-for-APM-X-Gene-SoC-PMU-driver.patch | 34 + .../1010-i2c-xgene-Avoid-dma_buffer-overrun.patch | 32 + ...net-xgene-fix-error-handling-during-reset.patch | 72 + ...-net-xgene-fix-backward-compatibility-fix.patch | 47 + ...t-apm-xgene-use-phydev-from-struct-net_de.patch | 150 ++ ...014-drivers-net-xgene-Fix-MSS-programming.patch | 297 ++++ ...net-xgene-fix-Use-GPIO-to-get-link-status.patch | 91 ++ ...-xgene-fix-Disable-coalescing-on-v1-hardw.patch | 61 + ...-xgene-fix-Coalescing-values-for-v2-hardw.patch | 67 + ...ix-GIC-irq-model-default-PCI-IRQ-polarity.patch | 83 ++ ...are-Implement-support-for-SMBus-block-rea.patch | 135 ++ .../1020-hwmon-xgene-access-mailbox-as-RAM.patch | 124 ++ SOURCES/config-centos-sig | 7 + SPECS/kernel-aarch64.spec | 57 +- 22 files changed, 3960 insertions(+), 1 deletion(-) create mode 100644 SOURCES/1001-cpufreq-CPPC-Avoid-overflow-when-calculating-desired.patch create mode 100644 SOURCES/1002-cpufreq-CPPC-Correct-desired_perf-calculation.patch create mode 100644 SOURCES/1003-mailbox-PCC-Fix-return-value-of-pcc_mbox_request_cha.patch create mode 100644 SOURCES/1004-Documentation-dtb-xgene-Add-hwmon-dts-binding-docume.patch create mode 100644 SOURCES/1005-hwmon-Add-xgene-hwmon-driver.patch create mode 100644 SOURCES/1006-hwmon-xgene-Fix-crash-when-alarm-occurs-before-drive.patch create mode 100644 SOURCES/1007-perf-xgene-Add-APM-X-Gene-SoC-Performance-Monitoring.patch create mode 100644 SOURCES/1008-perf-xgene-Remove-bogus-IS_ERR-check.patch create mode 100644 SOURCES/1009-MAINTAINERS-Add-entry-for-APM-X-Gene-SoC-PMU-driver.patch create mode 100644 SOURCES/1010-i2c-xgene-Avoid-dma_buffer-overrun.patch create mode 100644 SOURCES/1011-net-xgene-fix-error-handling-during-reset.patch create mode 100644 SOURCES/1012-net-xgene-fix-backward-compatibility-fix.patch create mode 100644 SOURCES/1013-net-ethernet-apm-xgene-use-phydev-from-struct-net_de.patch create mode 100644 SOURCES/1014-drivers-net-xgene-Fix-MSS-programming.patch create mode 100644 SOURCES/1015-drivers-net-xgene-fix-Use-GPIO-to-get-link-status.patch create mode 100644 SOURCES/1016-drivers-net-xgene-fix-Disable-coalescing-on-v1-hardw.patch create mode 100644 SOURCES/1017-drivers-net-xgene-fix-Coalescing-values-for-v2-hardw.patch create mode 100644 SOURCES/1018-ACPI-PCI-fix-GIC-irq-model-default-PCI-IRQ-polarity.patch create mode 100644 SOURCES/1019-i2c-designware-Implement-support-for-SMBus-block-rea.patch create mode 100644 SOURCES/1020-hwmon-xgene-access-mailbox-as-RAM.patch -- 1.8.3.1