lists.openwall.net | lists / announce owl-users owl-dev john-users john-dev passwdqc-users yescrypt popa3d-users / oss-security kernel-hardening musl sabotage tlsify passwords / crypt-dev xvendor / Bugtraq Full-Disclosure linux-kernel linux-netdev linux-ext4 linux-hardening linux-cve-announce PHC | |
Open Source and information security mailing list archives
| ||
|
Message-ID: <20190503093117.54830-1-hsin-hsiung.wang@mediatek.com> Date: Fri, 3 May 2019 17:31:07 +0800 From: Hsin-Hsiung Wang <hsin-hsiung.wang@...iatek.com> To: Lee Jones <lee.jones@...aro.org>, Rob Herring <robh+dt@...nel.org>, Mark Brown <broonie@...nel.org>, Matthias Brugger <matthias.bgg@...il.com> CC: Liam Girdwood <lgirdwood@...il.com>, Mark Rutland <mark.rutland@....com>, Eddie Huang <eddie.huang@...iatek.com>, Sean Wang <sean.wang@...iatek.com>, Alessandro Zummo <a.zummo@...ertech.it>, Alexandre Belloni <alexandre.belloni@...tlin.com>, Hsin-Hsiung Wang <hsin-hsiung.wang@...iatek.com>, <devicetree@...r.kernel.org>, <linux-arm-kernel@...ts.infradead.org>, <linux-mediatek@...ts.infradead.org>, <linux-kernel@...r.kernel.org>, <linux-rtc@...r.kernel.org>, <srv_heupstream@...iatek.com> Subject: [PATCH v3 00/10] Add Support for MediaTek PMIC MT6358 This patchset including refactoring interrupt add support to MT6358 PMIC. MT6358 is the primary PMIC for MT8183 platform. changes since v2: - rewrite the description of MT6358 regulators. - refine some coding style in the dts for better code quality. - refine the suspend behavior of mfd driver. - some minor bug fix of mfd driver, like adding IRQCHIP_SKIP_SET_WAKE flag. - remove unused MT6358 register. - merge the same voltage table and remove unused chip id in the MT6358 regulator driver. Hsin-Hsiung Wang (8): mfd: mt6397: clean up code mfd: mt6397: extract irq related code from core driver mfd: mt6397: modify suspend/resume behavior dt-bindings: mfd: Add compatible for the MediaTek MT6358 PMIC regulator: Add document for MT6358 regulator mfd: Add support for the MediaTek MT6358 PMIC regulator: mt6358: Add support for MT6358 regulator arm64: dts: mt6358: add PMIC MT6358 related nodes Ran Bi (2): rtc: mt6397: fix alarm register overwrite rtc: Add support for the MediaTek MT6358 RTC .../devicetree/bindings/mfd/mt6397.txt | 11 +- .../bindings/regulator/mt6358-regulator.txt | 358 +++++++++++ arch/arm64/boot/dts/mediatek/mt6358.dtsi | 358 +++++++++++ drivers/mfd/Makefile | 4 +- drivers/mfd/mt6358-irq.c | 229 +++++++ drivers/mfd/mt6397-core.c | 293 +++------ drivers/mfd/mt6397-irq.c | 214 +++++++ drivers/regulator/Kconfig | 9 + drivers/regulator/Makefile | 1 + drivers/regulator/mt6358-regulator.c | 586 ++++++++++++++++++ drivers/rtc/rtc-mt6397.c | 90 ++- include/linux/mfd/mt6358/core.h | 158 +++++ include/linux/mfd/mt6358/registers.h | 282 +++++++++ include/linux/mfd/mt6397/core.h | 15 + include/linux/regulator/mt6358-regulator.h | 56 ++ 15 files changed, 2442 insertions(+), 222 deletions(-) create mode 100644 Documentation/devicetree/bindings/regulator/mt6358-regulator.txt create mode 100644 arch/arm64/boot/dts/mediatek/mt6358.dtsi create mode 100644 drivers/mfd/mt6358-irq.c create mode 100644 drivers/mfd/mt6397-irq.c create mode 100644 drivers/regulator/mt6358-regulator.c create mode 100644 include/linux/mfd/mt6358/core.h create mode 100644 include/linux/mfd/mt6358/registers.h create mode 100644 include/linux/regulator/mt6358-regulator.h -- 2.18.0
Powered by blists - more mailing lists