Commit d56154c7 authored by Linus Torvalds's avatar Linus Torvalds

Merge tag 'pwm/for-5.11-rc1' of...

Merge tag 'pwm/for-5.11-rc1' of git://git.kernel.org/pub/scm/linux/kernel/git/thierry.reding/linux-pwm

Pull pwm updates from Thierry Reding:
 "This is a fairly big release cycle from the PWM framework's point of
  view.

  There's a large patcheset here which converts drivers to use the new
  devm_platform_ioremap_resource() helper and a bunch of minor fixes to
  existing drivers. Some of the existing drivers also add support for
  more hardware, such as Atmel SAMA 5D2 and Mediatek MT8183.

  Finally there's a couple of new drivers for Intel Keem Bay and LGM
  SoCs as well as the DesignWare PWM controller"

* tag 'pwm/for-5.11-rc1' of git://git.kernel.org/pub/scm/linux/kernel/git/thierry.reding/linux-pwm: (66 commits)
  pwm: sun4i: Remove erroneous else branch
  pwm: sl28cpld: Set driver data before registering the PWM chip
  pwm: Remove unused function pwmchip_add_inversed()
  pwm: imx27: Fix overflow for bigger periods
  pwm: bcm2835: Support apply function for atomic configuration
  pwm: keembay: Fix build failure with -Os
  pwm: core: Use octal permission
  pwm: lpss: Make compilable with COMPILE_TEST
  pwm: Fix dependencies on HAS_IOMEM
  pwm: Use -EINVAL for unsupported polarity
  pwm: sti: Remove unnecessary blank line
  pwm: sti: Avoid conditional gotos
  pwm: Add PWM fan controller driver for LGM SoC
  Add DT bindings YAML schema for PWM fan controller of LGM SoC
  pwm: Add DesignWare PWM Controller Driver
  dt-bindings: pwm: mtk-disp: add MT8167 SoC binding
  pwm: mediatek: Add MT8183 SoC support
  pwm: mediatek: Always use bus clock
  dt-bindings: pwm: pwm-mediatek: Add documentation for MT8183 SoC
  pwm: Add PWM driver for Intel Keem Bay
  ...
parents 1db98bcf 6eefb79d
Atmel TCB PWM controller
Required properties:
- compatible: should be "atmel,tcb-pwm"
- #pwm-cells: should be 3. See pwm.yaml in this directory for a description of
the cells format. The only third cell flag supported by this binding is
PWM_POLARITY_INVERTED.
- tc-block: The Timer Counter block to use as a PWM chip.
Example:
pwm {
compatible = "atmel,tcb-pwm";
#pwm-cells = <3>;
tc-block = <1>;
};
# SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause)
# Copyright (C) 2020 Intel Corporation
%YAML 1.2
---
$id: http://devicetree.org/schemas/pwm/intel,keembay-pwm.yaml#
$schema: http://devicetree.org/meta-schemas/core.yaml#
title: Intel Keem Bay PWM Device Tree Bindings
maintainers:
- Vijayakannan Ayyathurai <vijayakannan.ayyathurai@intel.com>
allOf:
- $ref: pwm.yaml#
properties:
compatible:
enum:
- intel,keembay-pwm
reg:
maxItems: 1
clocks:
maxItems: 1
"#pwm-cells":
const: 2
required:
- compatible
- reg
- clocks
- '#pwm-cells'
additionalProperties: false
examples:
- |
#define KEEM_BAY_A53_GPIO
pwm@203200a0 {
compatible = "intel,keembay-pwm";
reg = <0x203200a0 0xe8>;
clocks = <&scmi_clk KEEM_BAY_A53_GPIO>;
#pwm-cells = <2>;
};
# SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause)
%YAML 1.2
---
$id: http://devicetree.org/schemas/pwm/intel,lgm-pwm.yaml#
$schema: http://devicetree.org/meta-schemas/core.yaml#
title: LGM SoC PWM fan controller
maintainers:
- Rahul Tanwar <rtanwar@maxlinear.com>
properties:
compatible:
const: intel,lgm-pwm
reg:
maxItems: 1
"#pwm-cells":
const: 2
clocks:
maxItems: 1
resets:
maxItems: 1
required:
- compatible
- reg
- clocks
- resets
additionalProperties: false
examples:
- |
pwm: pwm@e0d00000 {
compatible = "intel,lgm-pwm";
reg = <0xe0d00000 0x30>;
#pwm-cells = <2>;
clocks = <&cgu0 126>;
resets = <&rcu0 0x30 21>;
};
...@@ -7,6 +7,7 @@ Required properties: ...@@ -7,6 +7,7 @@ Required properties:
- "mediatek,mt7623-pwm": found on mt7623 SoC. - "mediatek,mt7623-pwm": found on mt7623 SoC.
- "mediatek,mt7628-pwm": found on mt7628 SoC. - "mediatek,mt7628-pwm": found on mt7628 SoC.
- "mediatek,mt7629-pwm": found on mt7629 SoC. - "mediatek,mt7629-pwm": found on mt7629 SoC.
- "mediatek,mt8183-pwm": found on mt8183 SoC.
- "mediatek,mt8516-pwm": found on mt8516 SoC. - "mediatek,mt8516-pwm": found on mt8516 SoC.
- reg: physical base address and length of the controller's registers. - reg: physical base address and length of the controller's registers.
- #pwm-cells: must be 2. See pwm.yaml in this directory for a description of - #pwm-cells: must be 2. See pwm.yaml in this directory for a description of
......
...@@ -4,6 +4,7 @@ Required properties: ...@@ -4,6 +4,7 @@ Required properties:
- compatible: should be "mediatek,<name>-disp-pwm": - compatible: should be "mediatek,<name>-disp-pwm":
- "mediatek,mt2701-disp-pwm": found on mt2701 SoC. - "mediatek,mt2701-disp-pwm": found on mt2701 SoC.
- "mediatek,mt6595-disp-pwm": found on mt6595 SoC. - "mediatek,mt6595-disp-pwm": found on mt6595 SoC.
- "mediatek,mt8167-disp-pwm", "mediatek,mt8173-disp-pwm": found on mt8167 SoC.
- "mediatek,mt8173-disp-pwm": found on mt8173 SoC. - "mediatek,mt8173-disp-pwm": found on mt8173 SoC.
- reg: physical base address and length of the controller's registers. - reg: physical base address and length of the controller's registers.
- #pwm-cells: must be 2. See pwm.yaml in this directory for a description of - #pwm-cells: must be 2. See pwm.yaml in this directory for a description of
......
...@@ -59,6 +59,7 @@ patternProperties: ...@@ -59,6 +59,7 @@ patternProperties:
items: items:
- enum: - enum:
- atmel,tcb-timer - atmel,tcb-timer
- atmel,tcb-pwm
- microchip,tcb-capture - microchip,tcb-capture
reg: reg:
description: description:
...@@ -68,10 +69,35 @@ patternProperties: ...@@ -68,10 +69,35 @@ patternProperties:
minItems: 1 minItems: 1
maxItems: 3 maxItems: 3
required:
- compatible
- reg
"^pwm@[0-2]$":
description: The timer block channels that are used as PWMs.
$ref: ../../pwm/pwm.yaml#
type: object
properties:
compatible:
const: atmel,tcb-pwm
reg:
description:
TCB channel to use for this PWM.
enum: [ 0, 1, 2 ]
"#pwm-cells":
description:
The only third cell flag supported by this binding is
PWM_POLARITY_INVERTED.
const: 3
required: required:
- compatible - compatible
- reg - reg
- "#pwm-cells"
additionalProperties: false
allOf: allOf:
- if: - if:
...@@ -158,6 +184,12 @@ examples: ...@@ -158,6 +184,12 @@ examples:
compatible = "atmel,tcb-timer"; compatible = "atmel,tcb-timer";
reg = <1>; reg = <1>;
}; };
pwm@2 {
compatible = "atmel,tcb-pwm";
reg = <2>;
#pwm-cells = <3>;
};
}; };
/* TCB0 Capture with QDEC: */ /* TCB0 Capture with QDEC: */
timer@f800c000 { timer@f800c000 {
......
...@@ -53,8 +53,8 @@ config PWM_AB8500 ...@@ -53,8 +53,8 @@ config PWM_AB8500
config PWM_ATMEL config PWM_ATMEL
tristate "Atmel PWM support" tristate "Atmel PWM support"
depends on OF
depends on ARCH_AT91 || COMPILE_TEST depends on ARCH_AT91 || COMPILE_TEST
depends on HAS_IOMEM && OF
help help
Generic PWM framework driver for Atmel SoC. Generic PWM framework driver for Atmel SoC.
...@@ -75,7 +75,8 @@ config PWM_ATMEL_HLCDC_PWM ...@@ -75,7 +75,8 @@ config PWM_ATMEL_HLCDC_PWM
config PWM_ATMEL_TCB config PWM_ATMEL_TCB
tristate "Atmel TC Block PWM support" tristate "Atmel TC Block PWM support"
depends on ATMEL_TCLIB && OF depends on OF
select REGMAP_MMIO
help help
Generic PWM framework driver for Atmel Timer Counter Block. Generic PWM framework driver for Atmel Timer Counter Block.
...@@ -88,7 +89,7 @@ config PWM_ATMEL_TCB ...@@ -88,7 +89,7 @@ config PWM_ATMEL_TCB
config PWM_BCM_IPROC config PWM_BCM_IPROC
tristate "iProc PWM support" tristate "iProc PWM support"
depends on ARCH_BCM_IPROC || COMPILE_TEST depends on ARCH_BCM_IPROC || COMPILE_TEST
depends on COMMON_CLK depends on COMMON_CLK && HAS_IOMEM
default ARCH_BCM_IPROC default ARCH_BCM_IPROC
help help
Generic PWM framework driver for Broadcom iProc PWM block. This Generic PWM framework driver for Broadcom iProc PWM block. This
...@@ -111,6 +112,7 @@ config PWM_BCM_KONA ...@@ -111,6 +112,7 @@ config PWM_BCM_KONA
config PWM_BCM2835 config PWM_BCM2835
tristate "BCM2835 PWM support" tristate "BCM2835 PWM support"
depends on ARCH_BCM2835 || ARCH_BRCMSTB || COMPILE_TEST depends on ARCH_BCM2835 || ARCH_BRCMSTB || COMPILE_TEST
depends on HAS_IOMEM
help help
PWM framework driver for BCM2835 controller (Raspberry Pi) PWM framework driver for BCM2835 controller (Raspberry Pi)
...@@ -120,6 +122,7 @@ config PWM_BCM2835 ...@@ -120,6 +122,7 @@ config PWM_BCM2835
config PWM_BERLIN config PWM_BERLIN
tristate "Marvell Berlin PWM support" tristate "Marvell Berlin PWM support"
depends on ARCH_BERLIN || COMPILE_TEST depends on ARCH_BERLIN || COMPILE_TEST
depends on HAS_IOMEM
help help
PWM framework driver for Marvell Berlin SoCs. PWM framework driver for Marvell Berlin SoCs.
...@@ -129,6 +132,7 @@ config PWM_BERLIN ...@@ -129,6 +132,7 @@ config PWM_BERLIN
config PWM_BRCMSTB config PWM_BRCMSTB
tristate "Broadcom STB PWM support" tristate "Broadcom STB PWM support"
depends on ARCH_BRCMSTB || BMIPS_GENERIC || COMPILE_TEST depends on ARCH_BRCMSTB || BMIPS_GENERIC || COMPILE_TEST
depends on HAS_IOMEM
help help
Generic PWM framework driver for the Broadcom Set-top-Box Generic PWM framework driver for the Broadcom Set-top-Box
SoCs (BCM7xxx). SoCs (BCM7xxx).
...@@ -160,9 +164,19 @@ config PWM_CROS_EC ...@@ -160,9 +164,19 @@ config PWM_CROS_EC
PWM driver for exposing a PWM attached to the ChromeOS Embedded PWM driver for exposing a PWM attached to the ChromeOS Embedded
Controller. Controller.
config PWM_DWC
tristate "DesignWare PWM Controller"
depends on PCI
help
PWM driver for Synopsys DWC PWM Controller attached to a PCI bus.
To compile this driver as a module, choose M here: the module
will be called pwm-dwc.
config PWM_EP93XX config PWM_EP93XX
tristate "Cirrus Logic EP93xx PWM support" tristate "Cirrus Logic EP93xx PWM support"
depends on ARCH_EP93XX || COMPILE_TEST depends on ARCH_EP93XX || COMPILE_TEST
depends on HAS_IOMEM
help help
Generic PWM framework driver for Cirrus Logic EP93xx. Generic PWM framework driver for Cirrus Logic EP93xx.
...@@ -184,6 +198,7 @@ config PWM_FSL_FTM ...@@ -184,6 +198,7 @@ config PWM_FSL_FTM
config PWM_HIBVT config PWM_HIBVT
tristate "HiSilicon BVT PWM support" tristate "HiSilicon BVT PWM support"
depends on ARCH_HISI || COMPILE_TEST depends on ARCH_HISI || COMPILE_TEST
depends on HAS_IOMEM
help help
Generic PWM framework driver for HiSilicon BVT SoCs. Generic PWM framework driver for HiSilicon BVT SoCs.
...@@ -206,6 +221,7 @@ config PWM_IMG ...@@ -206,6 +221,7 @@ config PWM_IMG
config PWM_IMX1 config PWM_IMX1
tristate "i.MX1 PWM support" tristate "i.MX1 PWM support"
depends on ARCH_MXC || COMPILE_TEST depends on ARCH_MXC || COMPILE_TEST
depends on HAS_IOMEM
help help
Generic PWM framework driver for i.MX1 and i.MX21 Generic PWM framework driver for i.MX1 and i.MX21
...@@ -215,6 +231,7 @@ config PWM_IMX1 ...@@ -215,6 +231,7 @@ config PWM_IMX1
config PWM_IMX27 config PWM_IMX27
tristate "i.MX27 PWM support" tristate "i.MX27 PWM support"
depends on ARCH_MXC || COMPILE_TEST depends on ARCH_MXC || COMPILE_TEST
depends on HAS_IOMEM
help help
Generic PWM framework driver for i.MX27 and later i.MX SoCs. Generic PWM framework driver for i.MX27 and later i.MX SoCs.
...@@ -232,6 +249,17 @@ config PWM_IMX_TPM ...@@ -232,6 +249,17 @@ config PWM_IMX_TPM
To compile this driver as a module, choose M here: the module To compile this driver as a module, choose M here: the module
will be called pwm-imx-tpm. will be called pwm-imx-tpm.
config PWM_INTEL_LGM
tristate "Intel LGM PWM support"
depends on HAS_IOMEM
depends on (OF && X86) || COMPILE_TEST
select REGMAP_MMIO
help
Generic PWM fan controller driver for LGM SoC.
To compile this driver as a module, choose M here: the module
will be called pwm-intel-lgm.
config PWM_IQS620A config PWM_IQS620A
tristate "Azoteq IQS620A PWM support" tristate "Azoteq IQS620A PWM support"
depends on MFD_IQS62X || COMPILE_TEST depends on MFD_IQS62X || COMPILE_TEST
...@@ -254,6 +282,15 @@ config PWM_JZ4740 ...@@ -254,6 +282,15 @@ config PWM_JZ4740
To compile this driver as a module, choose M here: the module To compile this driver as a module, choose M here: the module
will be called pwm-jz4740. will be called pwm-jz4740.
config PWM_KEEMBAY
tristate "Intel Keem Bay PWM driver"
depends on ARCH_KEEMBAY || (ARM64 && COMPILE_TEST)
help
The platform driver for Intel Keem Bay PWM controller.
To compile this driver as a module, choose M here: the module
will be called pwm-keembay.
config PWM_LP3943 config PWM_LP3943
tristate "TI/National Semiconductor LP3943 PWM support" tristate "TI/National Semiconductor LP3943 PWM support"
depends on MFD_LP3943 depends on MFD_LP3943
...@@ -267,6 +304,7 @@ config PWM_LP3943 ...@@ -267,6 +304,7 @@ config PWM_LP3943
config PWM_LPC18XX_SCT config PWM_LPC18XX_SCT
tristate "LPC18xx/43xx PWM/SCT support" tristate "LPC18xx/43xx PWM/SCT support"
depends on ARCH_LPC18XX || COMPILE_TEST depends on ARCH_LPC18XX || COMPILE_TEST
depends on HAS_IOMEM
help help
Generic PWM framework driver for NXP LPC18xx PWM/SCT which Generic PWM framework driver for NXP LPC18xx PWM/SCT which
supports 16 channels. supports 16 channels.
...@@ -279,6 +317,7 @@ config PWM_LPC18XX_SCT ...@@ -279,6 +317,7 @@ config PWM_LPC18XX_SCT
config PWM_LPC32XX config PWM_LPC32XX
tristate "LPC32XX PWM support" tristate "LPC32XX PWM support"
depends on ARCH_LPC32XX || COMPILE_TEST depends on ARCH_LPC32XX || COMPILE_TEST
depends on HAS_IOMEM
help help
Generic PWM framework driver for LPC32XX. The LPC32XX SOC has two Generic PWM framework driver for LPC32XX. The LPC32XX SOC has two
PWM controllers. PWM controllers.
...@@ -287,11 +326,13 @@ config PWM_LPC32XX ...@@ -287,11 +326,13 @@ config PWM_LPC32XX
will be called pwm-lpc32xx. will be called pwm-lpc32xx.
config PWM_LPSS config PWM_LPSS
depends on HAS_IOMEM
tristate tristate
config PWM_LPSS_PCI config PWM_LPSS_PCI
tristate "Intel LPSS PWM PCI driver" tristate "Intel LPSS PWM PCI driver"
depends on X86 && PCI depends on X86 || COMPILE_TEST
depends on HAS_IOMEM && PCI
select PWM_LPSS select PWM_LPSS
help help
The PCI driver for Intel Low Power Subsystem PWM controller. The PCI driver for Intel Low Power Subsystem PWM controller.
...@@ -301,7 +342,8 @@ config PWM_LPSS_PCI ...@@ -301,7 +342,8 @@ config PWM_LPSS_PCI
config PWM_LPSS_PLATFORM config PWM_LPSS_PLATFORM
tristate "Intel LPSS PWM platform driver" tristate "Intel LPSS PWM platform driver"
depends on X86 && ACPI depends on (X86 && ACPI) || COMPILE_TEST
depends on HAS_IOMEM
select PWM_LPSS select PWM_LPSS
help help
The platform driver for Intel Low Power Subsystem PWM controller. The platform driver for Intel Low Power Subsystem PWM controller.
...@@ -312,7 +354,7 @@ config PWM_LPSS_PLATFORM ...@@ -312,7 +354,7 @@ config PWM_LPSS_PLATFORM
config PWM_MESON config PWM_MESON
tristate "Amlogic Meson PWM driver" tristate "Amlogic Meson PWM driver"
depends on ARCH_MESON || COMPILE_TEST depends on ARCH_MESON || COMPILE_TEST
depends on COMMON_CLK depends on COMMON_CLK && HAS_IOMEM
help help
The platform driver for Amlogic Meson PWM controller. The platform driver for Amlogic Meson PWM controller.
...@@ -333,6 +375,7 @@ config PWM_MTK_DISP ...@@ -333,6 +375,7 @@ config PWM_MTK_DISP
config PWM_MEDIATEK config PWM_MEDIATEK
tristate "MediaTek PWM support" tristate "MediaTek PWM support"
depends on ARCH_MEDIATEK || RALINK || COMPILE_TEST depends on ARCH_MEDIATEK || RALINK || COMPILE_TEST
depends on HAS_IOMEM
help help
Generic PWM framework driver for Mediatek ARM SoC. Generic PWM framework driver for Mediatek ARM SoC.
...@@ -341,8 +384,8 @@ config PWM_MEDIATEK ...@@ -341,8 +384,8 @@ config PWM_MEDIATEK
config PWM_MXS config PWM_MXS
tristate "Freescale MXS PWM support" tristate "Freescale MXS PWM support"
depends on OF
depends on ARCH_MXS || COMPILE_TEST depends on ARCH_MXS || COMPILE_TEST
depends on HAS_IOMEM && OF
select STMP_DEVICE select STMP_DEVICE
help help
Generic PWM framework driver for Freescale MXS. Generic PWM framework driver for Freescale MXS.
...@@ -373,6 +416,7 @@ config PWM_PCA9685 ...@@ -373,6 +416,7 @@ config PWM_PCA9685
config PWM_PXA config PWM_PXA
tristate "PXA PWM support" tristate "PXA PWM support"
depends on ARCH_PXA || COMPILE_TEST depends on ARCH_PXA || COMPILE_TEST
depends on HAS_IOMEM
help help
Generic PWM framework driver for PXA. Generic PWM framework driver for PXA.
...@@ -404,6 +448,7 @@ config PWM_RENESAS_TPU ...@@ -404,6 +448,7 @@ config PWM_RENESAS_TPU
config PWM_ROCKCHIP config PWM_ROCKCHIP
tristate "Rockchip PWM support" tristate "Rockchip PWM support"
depends on ARCH_ROCKCHIP || COMPILE_TEST depends on ARCH_ROCKCHIP || COMPILE_TEST
depends on HAS_IOMEM
help help
Generic PWM framework driver for the PWM controller found on Generic PWM framework driver for the PWM controller found on
Rockchip SoCs. Rockchip SoCs.
...@@ -411,6 +456,7 @@ config PWM_ROCKCHIP ...@@ -411,6 +456,7 @@ config PWM_ROCKCHIP
config PWM_SAMSUNG config PWM_SAMSUNG
tristate "Samsung PWM support" tristate "Samsung PWM support"
depends on PLAT_SAMSUNG || ARCH_S5PV210 || ARCH_EXYNOS || COMPILE_TEST depends on PLAT_SAMSUNG || ARCH_S5PV210 || ARCH_EXYNOS || COMPILE_TEST
depends on HAS_IOMEM
help help
Generic PWM framework driver for Samsung. Generic PWM framework driver for Samsung.
...@@ -420,7 +466,7 @@ config PWM_SAMSUNG ...@@ -420,7 +466,7 @@ config PWM_SAMSUNG
config PWM_SIFIVE config PWM_SIFIVE
tristate "SiFive PWM support" tristate "SiFive PWM support"
depends on OF depends on OF
depends on COMMON_CLK depends on COMMON_CLK && HAS_IOMEM
depends on RISCV || COMPILE_TEST depends on RISCV || COMPILE_TEST
help help
Generic PWM framework driver for SiFive SoCs. Generic PWM framework driver for SiFive SoCs.
...@@ -441,7 +487,7 @@ config PWM_SL28CPLD ...@@ -441,7 +487,7 @@ config PWM_SL28CPLD
config PWM_SPEAR config PWM_SPEAR
tristate "STMicroelectronics SPEAr PWM support" tristate "STMicroelectronics SPEAr PWM support"
depends on PLAT_SPEAR || COMPILE_TEST depends on PLAT_SPEAR || COMPILE_TEST
depends on OF depends on HAS_IOMEM && OF
help help
Generic PWM framework driver for the PWM controller on ST Generic PWM framework driver for the PWM controller on ST
SPEAr SoCs. SPEAr SoCs.
...@@ -463,7 +509,7 @@ config PWM_SPRD ...@@ -463,7 +509,7 @@ config PWM_SPRD
config PWM_STI config PWM_STI
tristate "STiH4xx PWM support" tristate "STiH4xx PWM support"
depends on ARCH_STI || COMPILE_TEST depends on ARCH_STI || COMPILE_TEST
depends on OF depends on HAS_IOMEM && OF
help help
Generic PWM framework driver for STiH4xx SoCs. Generic PWM framework driver for STiH4xx SoCs.
...@@ -509,6 +555,7 @@ config PWM_SUN4I ...@@ -509,6 +555,7 @@ config PWM_SUN4I
config PWM_TEGRA config PWM_TEGRA
tristate "NVIDIA Tegra PWM support" tristate "NVIDIA Tegra PWM support"
depends on ARCH_TEGRA || COMPILE_TEST depends on ARCH_TEGRA || COMPILE_TEST
depends on HAS_IOMEM
help help
Generic PWM framework driver for the PWFM controller found on NVIDIA Generic PWM framework driver for the PWFM controller found on NVIDIA
Tegra SoCs. Tegra SoCs.
...@@ -519,6 +566,7 @@ config PWM_TEGRA ...@@ -519,6 +566,7 @@ config PWM_TEGRA
config PWM_TIECAP config PWM_TIECAP
tristate "ECAP PWM support" tristate "ECAP PWM support"
depends on ARCH_OMAP2PLUS || ARCH_DAVINCI_DA8XX || ARCH_KEYSTONE || ARCH_K3 || COMPILE_TEST depends on ARCH_OMAP2PLUS || ARCH_DAVINCI_DA8XX || ARCH_KEYSTONE || ARCH_K3 || COMPILE_TEST
depends on HAS_IOMEM
help help
PWM driver support for the ECAP APWM controller found on TI SOCs PWM driver support for the ECAP APWM controller found on TI SOCs
...@@ -528,6 +576,7 @@ config PWM_TIECAP ...@@ -528,6 +576,7 @@ config PWM_TIECAP
config PWM_TIEHRPWM config PWM_TIEHRPWM
tristate "EHRPWM PWM support" tristate "EHRPWM PWM support"
depends on ARCH_OMAP2PLUS || ARCH_DAVINCI_DA8XX || ARCH_K3 || COMPILE_TEST depends on ARCH_OMAP2PLUS || ARCH_DAVINCI_DA8XX || ARCH_K3 || COMPILE_TEST
depends on HAS_IOMEM
help help
PWM driver support for the EHRPWM controller found on TI SOCs PWM driver support for the EHRPWM controller found on TI SOCs
...@@ -555,6 +604,7 @@ config PWM_TWL_LED ...@@ -555,6 +604,7 @@ config PWM_TWL_LED
config PWM_VT8500 config PWM_VT8500
tristate "vt8500 PWM support" tristate "vt8500 PWM support"
depends on ARCH_VT8500 || COMPILE_TEST depends on ARCH_VT8500 || COMPILE_TEST
depends on HAS_IOMEM
help help
Generic PWM framework driver for vt8500. Generic PWM framework driver for vt8500.
...@@ -564,6 +614,7 @@ config PWM_VT8500 ...@@ -564,6 +614,7 @@ config PWM_VT8500
config PWM_ZX config PWM_ZX
tristate "ZTE ZX PWM support" tristate "ZTE ZX PWM support"
depends on ARCH_ZX || COMPILE_TEST depends on ARCH_ZX || COMPILE_TEST
depends on HAS_IOMEM
help help
Generic PWM framework driver for ZTE ZX family SoCs. Generic PWM framework driver for ZTE ZX family SoCs.
......
...@@ -13,6 +13,7 @@ obj-$(CONFIG_PWM_BRCMSTB) += pwm-brcmstb.o ...@@ -13,6 +13,7 @@ obj-$(CONFIG_PWM_BRCMSTB) += pwm-brcmstb.o
obj-$(CONFIG_PWM_CLPS711X) += pwm-clps711x.o obj-$(CONFIG_PWM_CLPS711X) += pwm-clps711x.o
obj-$(CONFIG_PWM_CRC) += pwm-crc.o obj-$(CONFIG_PWM_CRC) += pwm-crc.o
obj-$(CONFIG_PWM_CROS_EC) += pwm-cros-ec.o obj-$(CONFIG_PWM_CROS_EC) += pwm-cros-ec.o
obj-$(CONFIG_PWM_DWC) += pwm-dwc.o
obj-$(CONFIG_PWM_EP93XX) += pwm-ep93xx.o obj-$(CONFIG_PWM_EP93XX) += pwm-ep93xx.o
obj-$(CONFIG_PWM_FSL_FTM) += pwm-fsl-ftm.o obj-$(CONFIG_PWM_FSL_FTM) += pwm-fsl-ftm.o
obj-$(CONFIG_PWM_HIBVT) += pwm-hibvt.o obj-$(CONFIG_PWM_HIBVT) += pwm-hibvt.o
...@@ -20,8 +21,10 @@ obj-$(CONFIG_PWM_IMG) += pwm-img.o ...@@ -20,8 +21,10 @@ obj-$(CONFIG_PWM_IMG) += pwm-img.o
obj-$(CONFIG_PWM_IMX1) += pwm-imx1.o obj-$(CONFIG_PWM_IMX1) += pwm-imx1.o
obj-$(CONFIG_PWM_IMX27) += pwm-imx27.o obj-$(CONFIG_PWM_IMX27) += pwm-imx27.o
obj-$(CONFIG_PWM_IMX_TPM) += pwm-imx-tpm.o obj-$(CONFIG_PWM_IMX_TPM) += pwm-imx-tpm.o
obj-$(CONFIG_PWM_INTEL_LGM) += pwm-intel-lgm.o
obj-$(CONFIG_PWM_IQS620A) += pwm-iqs620a.o obj-$(CONFIG_PWM_IQS620A) += pwm-iqs620a.o
obj-$(CONFIG_PWM_JZ4740) += pwm-jz4740.o obj-$(CONFIG_PWM_JZ4740) += pwm-jz4740.o
obj-$(CONFIG_PWM_KEEMBAY) += pwm-keembay.o
obj-$(CONFIG_PWM_LP3943) += pwm-lp3943.o obj-$(CONFIG_PWM_LP3943) += pwm-lp3943.o
obj-$(CONFIG_PWM_LPC18XX_SCT) += pwm-lpc18xx-sct.o obj-$(CONFIG_PWM_LPC18XX_SCT) += pwm-lpc18xx-sct.o
obj-$(CONFIG_PWM_LPC32XX) += pwm-lpc32xx.o obj-$(CONFIG_PWM_LPC32XX) += pwm-lpc32xx.o
......
...@@ -1338,7 +1338,7 @@ DEFINE_SEQ_ATTRIBUTE(pwm_debugfs); ...@@ -1338,7 +1338,7 @@ DEFINE_SEQ_ATTRIBUTE(pwm_debugfs);
static int __init pwm_debugfs_init(void) static int __init pwm_debugfs_init(void)
{ {
debugfs_create_file("pwm", S_IFREG | S_IRUGO, NULL, NULL, debugfs_create_file("pwm", S_IFREG | 0444, NULL, NULL,
&pwm_debugfs_fops); &pwm_debugfs_fops);
return 0; return 0;
......
...@@ -101,12 +101,12 @@ static int ab8500_pwm_probe(struct platform_device *pdev) ...@@ -101,12 +101,12 @@ static int ab8500_pwm_probe(struct platform_device *pdev)
ab8500->chip.dev = &pdev->dev; ab8500->chip.dev = &pdev->dev;
ab8500->chip.ops = &ab8500_pwm_ops; ab8500->chip.ops = &ab8500_pwm_ops;
ab8500->chip.base = pdev->id; ab8500->chip.base = -1;
ab8500->chip.npwm = 1; ab8500->chip.npwm = 1;
err = pwmchip_add(&ab8500->chip); err = pwmchip_add(&ab8500->chip);
if (err < 0) if (err < 0)
return err; return dev_err_probe(&pdev->dev, err, "Failed to add pwm chip\n");
dev_dbg(&pdev->dev, "pwm probe successful\n"); dev_dbg(&pdev->dev, "pwm probe successful\n");
platform_set_drvdata(pdev, ab8500); platform_set_drvdata(pdev, ab8500);
......
...@@ -16,13 +16,16 @@ ...@@ -16,13 +16,16 @@
#include <linux/err.h> #include <linux/err.h>
#include <linux/ioport.h> #include <linux/ioport.h>
#include <linux/io.h> #include <linux/io.h>
#include <linux/mfd/syscon.h>
#include <linux/platform_device.h> #include <linux/platform_device.h>
#include <linux/pwm.h> #include <linux/pwm.h>
#include <linux/of_device.h> #include <linux/of_device.h>
#include <linux/of_irq.h>
#include <linux/regmap.h>
#include <linux/slab.h> #include <linux/slab.h>
#include <soc/at91/atmel_tcb.h> #include <soc/at91/atmel_tcb.h>
#define NPWM 6 #define NPWM 2
#define ATMEL_TC_ACMR_MASK (ATMEL_TC_ACPA | ATMEL_TC_ACPC | \ #define ATMEL_TC_ACMR_MASK (ATMEL_TC_ACPA | ATMEL_TC_ACPC | \
ATMEL_TC_AEEVT | ATMEL_TC_ASWTRG) ATMEL_TC_AEEVT | ATMEL_TC_ASWTRG)
...@@ -48,11 +51,18 @@ struct atmel_tcb_channel { ...@@ -48,11 +51,18 @@ struct atmel_tcb_channel {
struct atmel_tcb_pwm_chip { struct atmel_tcb_pwm_chip {
struct pwm_chip chip; struct pwm_chip chip;
spinlock_t lock; spinlock_t lock;
struct atmel_tc *tc; u8 channel;
u8 width;
struct regmap *regmap;
struct clk *clk;
struct clk *gclk;
struct clk *slow_clk;
struct atmel_tcb_pwm_device *pwms[NPWM]; struct atmel_tcb_pwm_device *pwms[NPWM];
struct atmel_tcb_channel bkup[NPWM / 2]; struct atmel_tcb_channel bkup;
}; };
const u8 atmel_tcb_divisors[] = { 2, 8, 32, 128, 0, };
static inline struct atmel_tcb_pwm_chip *to_tcb_chip(struct pwm_chip *chip) static inline struct atmel_tcb_pwm_chip *to_tcb_chip(struct pwm_chip *chip)
{ {
return container_of(chip, struct atmel_tcb_pwm_chip, chip); return container_of(chip, struct atmel_tcb_pwm_chip, chip);
...@@ -74,10 +84,6 @@ static int atmel_tcb_pwm_request(struct pwm_chip *chip, ...@@ -74,10 +84,6 @@ static int atmel_tcb_pwm_request(struct pwm_chip *chip,
{ {
struct atmel_tcb_pwm_chip *tcbpwmc = to_tcb_chip(chip); struct atmel_tcb_pwm_chip *tcbpwmc = to_tcb_chip(chip);
struct atmel_tcb_pwm_device *tcbpwm; struct atmel_tcb_pwm_device *tcbpwm;
struct atmel_tc *tc = tcbpwmc->tc;
void __iomem *regs = tc->regs;
unsigned group = pwm->hwpwm / 2;
unsigned index = pwm->hwpwm % 2;
unsigned cmr; unsigned cmr;
int ret; int ret;
...@@ -85,7 +91,7 @@ static int atmel_tcb_pwm_request(struct pwm_chip *chip, ...@@ -85,7 +91,7 @@ static int atmel_tcb_pwm_request(struct pwm_chip *chip,
if (!tcbpwm) if (!tcbpwm)
return -ENOMEM; return -ENOMEM;
ret = clk_prepare_enable(tc->clk[group]); ret = clk_prepare_enable(tcbpwmc->clk);
if (ret) { if (ret) {
devm_kfree(chip->dev, tcbpwm); devm_kfree(chip->dev, tcbpwm);
return ret; return ret;
...@@ -98,28 +104,31 @@ static int atmel_tcb_pwm_request(struct pwm_chip *chip, ...@@ -98,28 +104,31 @@ static int atmel_tcb_pwm_request(struct pwm_chip *chip,
tcbpwm->div = 0; tcbpwm->div = 0;
spin_lock(&tcbpwmc->lock); spin_lock(&tcbpwmc->lock);
cmr = __raw_readl(regs + ATMEL_TC_REG(group, CMR)); regmap_read(tcbpwmc->regmap, ATMEL_TC_REG(tcbpwmc->channel, CMR), &cmr);
/* /*
* Get init config from Timer Counter registers if * Get init config from Timer Counter registers if
* Timer Counter is already configured as a PWM generator. * Timer Counter is already configured as a PWM generator.
*/ */
if (cmr & ATMEL_TC_WAVE) { if (cmr & ATMEL_TC_WAVE) {
if (index == 0) if (pwm->hwpwm == 0)
tcbpwm->duty = regmap_read(tcbpwmc->regmap,
__raw_readl(regs + ATMEL_TC_REG(group, RA)); ATMEL_TC_REG(tcbpwmc->channel, RA),
&tcbpwm->duty);
else else
tcbpwm->duty = regmap_read(tcbpwmc->regmap,
__raw_readl(regs + ATMEL_TC_REG(group, RB)); ATMEL_TC_REG(tcbpwmc->channel, RB),
&tcbpwm->duty);
tcbpwm->div = cmr & ATMEL_TC_TCCLKS; tcbpwm->div = cmr & ATMEL_TC_TCCLKS;
tcbpwm->period = __raw_readl(regs + ATMEL_TC_REG(group, RC)); regmap_read(tcbpwmc->regmap, ATMEL_TC_REG(tcbpwmc->channel, RC),
&tcbpwm->period);
cmr &= (ATMEL_TC_TCCLKS | ATMEL_TC_ACMR_MASK | cmr &= (ATMEL_TC_TCCLKS | ATMEL_TC_ACMR_MASK |
ATMEL_TC_BCMR_MASK); ATMEL_TC_BCMR_MASK);
} else } else
cmr = 0; cmr = 0;
cmr |= ATMEL_TC_WAVE | ATMEL_TC_WAVESEL_UP_AUTO | ATMEL_TC_EEVT_XC0; cmr |= ATMEL_TC_WAVE | ATMEL_TC_WAVESEL_UP_AUTO | ATMEL_TC_EEVT_XC0;
__raw_writel(cmr, regs + ATMEL_TC_REG(group, CMR)); regmap_write(tcbpwmc->regmap, ATMEL_TC_REG(tcbpwmc->channel, CMR), cmr);
spin_unlock(&tcbpwmc->lock); spin_unlock(&tcbpwmc->lock);
tcbpwmc->pwms[pwm->hwpwm] = tcbpwm; tcbpwmc->pwms[pwm->hwpwm] = tcbpwm;
...@@ -131,9 +140,8 @@ static void atmel_tcb_pwm_free(struct pwm_chip *chip, struct pwm_device *pwm) ...@@ -131,9 +140,8 @@ static void atmel_tcb_pwm_free(struct pwm_chip *chip, struct pwm_device *pwm)
{ {
struct atmel_tcb_pwm_chip *tcbpwmc = to_tcb_chip(chip); struct atmel_tcb_pwm_chip *tcbpwmc = to_tcb_chip(chip);
struct atmel_tcb_pwm_device *tcbpwm = pwm_get_chip_data(pwm); struct atmel_tcb_pwm_device *tcbpwm = pwm_get_chip_data(pwm);
struct atmel_tc *tc = tcbpwmc->tc;
clk_disable_unprepare(tc->clk[pwm->hwpwm / 2]); clk_disable_unprepare(tcbpwmc->clk);
tcbpwmc->pwms[pwm->hwpwm] = NULL; tcbpwmc->pwms[pwm->hwpwm] = NULL;
devm_kfree(chip->dev, tcbpwm); devm_kfree(chip->dev, tcbpwm);
} }
...@@ -142,10 +150,6 @@ static void atmel_tcb_pwm_disable(struct pwm_chip *chip, struct pwm_device *pwm) ...@@ -142,10 +150,6 @@ static void atmel_tcb_pwm_disable(struct pwm_chip *chip, struct pwm_device *pwm)
{ {
struct atmel_tcb_pwm_chip *tcbpwmc = to_tcb_chip(chip); struct atmel_tcb_pwm_chip *tcbpwmc = to_tcb_chip(chip);
struct atmel_tcb_pwm_device *tcbpwm = pwm_get_chip_data(pwm); struct atmel_tcb_pwm_device *tcbpwm = pwm_get_chip_data(pwm);
struct atmel_tc *tc = tcbpwmc->tc;
void __iomem *regs = tc->regs;
unsigned group = pwm->hwpwm / 2;
unsigned index = pwm->hwpwm % 2;
unsigned cmr; unsigned cmr;
enum pwm_polarity polarity = tcbpwm->polarity; enum pwm_polarity polarity = tcbpwm->polarity;
...@@ -161,10 +165,10 @@ static void atmel_tcb_pwm_disable(struct pwm_chip *chip, struct pwm_device *pwm) ...@@ -161,10 +165,10 @@ static void atmel_tcb_pwm_disable(struct pwm_chip *chip, struct pwm_device *pwm)
polarity = !polarity; polarity = !polarity;
spin_lock(&tcbpwmc->lock); spin_lock(&tcbpwmc->lock);
cmr = __raw_readl(regs + ATMEL_TC_REG(group, CMR)); regmap_read(tcbpwmc->regmap, ATMEL_TC_REG(tcbpwmc->channel, CMR), &cmr);
/* flush old setting and set the new one */ /* flush old setting and set the new one */
if (index == 0) { if (pwm->hwpwm == 0) {
cmr &= ~ATMEL_TC_ACMR_MASK; cmr &= ~ATMEL_TC_ACMR_MASK;
if (polarity == PWM_POLARITY_INVERSED) if (polarity == PWM_POLARITY_INVERSED)
cmr |= ATMEL_TC_ASWTRG_CLEAR; cmr |= ATMEL_TC_ASWTRG_CLEAR;
...@@ -178,20 +182,22 @@ static void atmel_tcb_pwm_disable(struct pwm_chip *chip, struct pwm_device *pwm) ...@@ -178,20 +182,22 @@ static void atmel_tcb_pwm_disable(struct pwm_chip *chip, struct pwm_device *pwm)
cmr |= ATMEL_TC_BSWTRG_SET; cmr |= ATMEL_TC_BSWTRG_SET;
} }
__raw_writel(cmr, regs + ATMEL_TC_REG(group, CMR)); regmap_write(tcbpwmc->regmap, ATMEL_TC_REG(tcbpwmc->channel, CMR), cmr);
/* /*
* Use software trigger to apply the new setting. * Use software trigger to apply the new setting.
* If both PWM devices in this group are disabled we stop the clock. * If both PWM devices in this group are disabled we stop the clock.
*/ */
if (!(cmr & (ATMEL_TC_ACPC | ATMEL_TC_BCPC))) { if (!(cmr & (ATMEL_TC_ACPC | ATMEL_TC_BCPC))) {
__raw_writel(ATMEL_TC_SWTRG | ATMEL_TC_CLKDIS, regmap_write(tcbpwmc->regmap,
regs + ATMEL_TC_REG(group, CCR)); ATMEL_TC_REG(tcbpwmc->channel, CCR),
tcbpwmc->bkup[group].enabled = 1; ATMEL_TC_SWTRG | ATMEL_TC_CLKDIS);
tcbpwmc->bkup.enabled = 1;
} else { } else {
__raw_writel(ATMEL_TC_SWTRG, regs + regmap_write(tcbpwmc->regmap,
ATMEL_TC_REG(group, CCR)); ATMEL_TC_REG(tcbpwmc->channel, CCR),
tcbpwmc->bkup[group].enabled = 0; ATMEL_TC_SWTRG);
tcbpwmc->bkup.enabled = 0;
} }
spin_unlock(&tcbpwmc->lock); spin_unlock(&tcbpwmc->lock);
...@@ -201,10 +207,6 @@ static int atmel_tcb_pwm_enable(struct pwm_chip *chip, struct pwm_device *pwm) ...@@ -201,10 +207,6 @@ static int atmel_tcb_pwm_enable(struct pwm_chip *chip, struct pwm_device *pwm)
{ {
struct atmel_tcb_pwm_chip *tcbpwmc = to_tcb_chip(chip); struct atmel_tcb_pwm_chip *tcbpwmc = to_tcb_chip(chip);
struct atmel_tcb_pwm_device *tcbpwm = pwm_get_chip_data(pwm); struct atmel_tcb_pwm_device *tcbpwm = pwm_get_chip_data(pwm);
struct atmel_tc *tc = tcbpwmc->tc;
void __iomem *regs = tc->regs;
unsigned group = pwm->hwpwm / 2;
unsigned index = pwm->hwpwm % 2;
u32 cmr; u32 cmr;
enum pwm_polarity polarity = tcbpwm->polarity; enum pwm_polarity polarity = tcbpwm->polarity;
...@@ -220,12 +222,12 @@ static int atmel_tcb_pwm_enable(struct pwm_chip *chip, struct pwm_device *pwm) ...@@ -220,12 +222,12 @@ static int atmel_tcb_pwm_enable(struct pwm_chip *chip, struct pwm_device *pwm)
polarity = !polarity; polarity = !polarity;
spin_lock(&tcbpwmc->lock); spin_lock(&tcbpwmc->lock);
cmr = __raw_readl(regs + ATMEL_TC_REG(group, CMR)); regmap_read(tcbpwmc->regmap, ATMEL_TC_REG(tcbpwmc->channel, CMR), &cmr);
/* flush old setting and set the new one */ /* flush old setting and set the new one */
cmr &= ~ATMEL_TC_TCCLKS; cmr &= ~ATMEL_TC_TCCLKS;
if (index == 0) { if (pwm->hwpwm == 0) {
cmr &= ~ATMEL_TC_ACMR_MASK; cmr &= ~ATMEL_TC_ACMR_MASK;
/* Set CMR flags according to given polarity */ /* Set CMR flags according to given polarity */
...@@ -248,7 +250,7 @@ static int atmel_tcb_pwm_enable(struct pwm_chip *chip, struct pwm_device *pwm) ...@@ -248,7 +250,7 @@ static int atmel_tcb_pwm_enable(struct pwm_chip *chip, struct pwm_device *pwm)
* this config till next config call. * this config till next config call.
*/ */
if (tcbpwm->duty != tcbpwm->period && tcbpwm->duty > 0) { if (tcbpwm->duty != tcbpwm->period && tcbpwm->duty > 0) {
if (index == 0) { if (pwm->hwpwm == 0) {
if (polarity == PWM_POLARITY_INVERSED) if (polarity == PWM_POLARITY_INVERSED)
cmr |= ATMEL_TC_ACPA_SET | ATMEL_TC_ACPC_CLEAR; cmr |= ATMEL_TC_ACPA_SET | ATMEL_TC_ACPC_CLEAR;
else else
...@@ -263,19 +265,24 @@ static int atmel_tcb_pwm_enable(struct pwm_chip *chip, struct pwm_device *pwm) ...@@ -263,19 +265,24 @@ static int atmel_tcb_pwm_enable(struct pwm_chip *chip, struct pwm_device *pwm)
cmr |= (tcbpwm->div & ATMEL_TC_TCCLKS); cmr |= (tcbpwm->div & ATMEL_TC_TCCLKS);
__raw_writel(cmr, regs + ATMEL_TC_REG(group, CMR)); regmap_write(tcbpwmc->regmap, ATMEL_TC_REG(tcbpwmc->channel, CMR), cmr);
if (index == 0) if (pwm->hwpwm == 0)
__raw_writel(tcbpwm->duty, regs + ATMEL_TC_REG(group, RA)); regmap_write(tcbpwmc->regmap,
ATMEL_TC_REG(tcbpwmc->channel, RA),
tcbpwm->duty);
else else
__raw_writel(tcbpwm->duty, regs + ATMEL_TC_REG(group, RB)); regmap_write(tcbpwmc->regmap,
ATMEL_TC_REG(tcbpwmc->channel, RB),
tcbpwm->duty);
__raw_writel(tcbpwm->period, regs + ATMEL_TC_REG(group, RC)); regmap_write(tcbpwmc->regmap, ATMEL_TC_REG(tcbpwmc->channel, RC),
tcbpwm->period);
/* Use software trigger to apply the new setting */ /* Use software trigger to apply the new setting */
__raw_writel(ATMEL_TC_CLKEN | ATMEL_TC_SWTRG, regmap_write(tcbpwmc->regmap, ATMEL_TC_REG(tcbpwmc->channel, CCR),
regs + ATMEL_TC_REG(group, CCR)); ATMEL_TC_SWTRG | ATMEL_TC_CLKEN);
tcbpwmc->bkup[group].enabled = 1; tcbpwmc->bkup.enabled = 1;
spin_unlock(&tcbpwmc->lock); spin_unlock(&tcbpwmc->lock);
return 0; return 0;
} }
...@@ -285,29 +292,29 @@ static int atmel_tcb_pwm_config(struct pwm_chip *chip, struct pwm_device *pwm, ...@@ -285,29 +292,29 @@ static int atmel_tcb_pwm_config(struct pwm_chip *chip, struct pwm_device *pwm,
{ {
struct atmel_tcb_pwm_chip *tcbpwmc = to_tcb_chip(chip); struct atmel_tcb_pwm_chip *tcbpwmc = to_tcb_chip(chip);
struct atmel_tcb_pwm_device *tcbpwm = pwm_get_chip_data(pwm); struct atmel_tcb_pwm_device *tcbpwm = pwm_get_chip_data(pwm);
unsigned group = pwm->hwpwm / 2;
unsigned index = pwm->hwpwm % 2;
struct atmel_tcb_pwm_device *atcbpwm = NULL; struct atmel_tcb_pwm_device *atcbpwm = NULL;
struct atmel_tc *tc = tcbpwmc->tc; int i = 0;
int i;
int slowclk = 0; int slowclk = 0;
unsigned period; unsigned period;
unsigned duty; unsigned duty;
unsigned rate = clk_get_rate(tc->clk[group]); unsigned rate = clk_get_rate(tcbpwmc->clk);
unsigned long long min; unsigned long long min;
unsigned long long max; unsigned long long max;
/* /*
* Find best clk divisor: * Find best clk divisor:
* the smallest divisor which can fulfill the period_ns requirements. * the smallest divisor which can fulfill the period_ns requirements.
* If there is a gclk, the first divisor is actuallly the gclk selector
*/ */
for (i = 0; i < 5; ++i) { if (tcbpwmc->gclk)
if (atmel_tc_divisors[i] == 0) { i = 1;
for (; i < ARRAY_SIZE(atmel_tcb_divisors); ++i) {
if (atmel_tcb_divisors[i] == 0) {
slowclk = i; slowclk = i;
continue; continue;
} }
min = div_u64((u64)NSEC_PER_SEC * atmel_tc_divisors[i], rate); min = div_u64((u64)NSEC_PER_SEC * atmel_tcb_divisors[i], rate);
max = min << tc->tcb_config->counter_width; max = min << tcbpwmc->width;
if (max >= period_ns) if (max >= period_ns)
break; break;
} }
...@@ -316,11 +323,11 @@ static int atmel_tcb_pwm_config(struct pwm_chip *chip, struct pwm_device *pwm, ...@@ -316,11 +323,11 @@ static int atmel_tcb_pwm_config(struct pwm_chip *chip, struct pwm_device *pwm,
* If none of the divisor are small enough to represent period_ns * If none of the divisor are small enough to represent period_ns
* take slow clock (32KHz). * take slow clock (32KHz).
*/ */
if (i == 5) { if (i == ARRAY_SIZE(atmel_tcb_divisors)) {
i = slowclk; i = slowclk;
rate = clk_get_rate(tc->slow_clk); rate = clk_get_rate(tcbpwmc->slow_clk);
min = div_u64(NSEC_PER_SEC, rate); min = div_u64(NSEC_PER_SEC, rate);
max = min << tc->tcb_config->counter_width; max = min << tcbpwmc->width;
/* If period is too big return ERANGE error */ /* If period is too big return ERANGE error */
if (max < period_ns) if (max < period_ns)
...@@ -330,17 +337,13 @@ static int atmel_tcb_pwm_config(struct pwm_chip *chip, struct pwm_device *pwm, ...@@ -330,17 +337,13 @@ static int atmel_tcb_pwm_config(struct pwm_chip *chip, struct pwm_device *pwm,
duty = div_u64(duty_ns, min); duty = div_u64(duty_ns, min);
period = div_u64(period_ns, min); period = div_u64(period_ns, min);
if (index == 0) if (pwm->hwpwm == 0)
atcbpwm = tcbpwmc->pwms[pwm->hwpwm + 1]; atcbpwm = tcbpwmc->pwms[1];
else else
atcbpwm = tcbpwmc->pwms[pwm->hwpwm - 1]; atcbpwm = tcbpwmc->pwms[0];
/* /*
* PWM devices provided by TCB driver are grouped by 2: * PWM devices provided by the TCB driver are grouped by 2.
* - group 0: PWM 0 & 1
* - group 1: PWM 2 & 3
* - group 2: PWM 4 & 5
*
* PWM devices in a given group must be configured with the * PWM devices in a given group must be configured with the
* same period_ns. * same period_ns.
* *
...@@ -376,32 +379,75 @@ static const struct pwm_ops atmel_tcb_pwm_ops = { ...@@ -376,32 +379,75 @@ static const struct pwm_ops atmel_tcb_pwm_ops = {
.owner = THIS_MODULE, .owner = THIS_MODULE,
}; };
static struct atmel_tcb_config tcb_rm9200_config = {
.counter_width = 16,
};
static struct atmel_tcb_config tcb_sam9x5_config = {
.counter_width = 32,
};
static struct atmel_tcb_config tcb_sama5d2_config = {
.counter_width = 32,
.has_gclk = 1,
};
static const struct of_device_id atmel_tcb_of_match[] = {
{ .compatible = "atmel,at91rm9200-tcb", .data = &tcb_rm9200_config, },
{ .compatible = "atmel,at91sam9x5-tcb", .data = &tcb_sam9x5_config, },
{ .compatible = "atmel,sama5d2-tcb", .data = &tcb_sama5d2_config, },
{ /* sentinel */ }
};
static int atmel_tcb_pwm_probe(struct platform_device *pdev) static int atmel_tcb_pwm_probe(struct platform_device *pdev)
{ {
const struct of_device_id *match;
struct atmel_tcb_pwm_chip *tcbpwm; struct atmel_tcb_pwm_chip *tcbpwm;
const struct atmel_tcb_config *config;
struct device_node *np = pdev->dev.of_node; struct device_node *np = pdev->dev.of_node;
struct atmel_tc *tc; struct regmap *regmap;
struct clk *clk, *gclk = NULL;
struct clk *slow_clk;
char clk_name[] = "t0_clk";
int err; int err;
int tcblock; int channel;
err = of_property_read_u32(np, "tc-block", &tcblock); err = of_property_read_u32(np, "reg", &channel);
if (err < 0) { if (err < 0) {
dev_err(&pdev->dev, dev_err(&pdev->dev,
"failed to get Timer Counter Block number from device tree (error: %d)\n", "failed to get Timer Counter Block channel from device tree (error: %d)\n",
err); err);
return err; return err;
} }
tc = atmel_tc_alloc(tcblock); regmap = syscon_node_to_regmap(np->parent);
if (tc == NULL) { if (IS_ERR(regmap))
dev_err(&pdev->dev, "failed to allocate Timer Counter Block\n"); return PTR_ERR(regmap);
return -ENOMEM;
slow_clk = of_clk_get_by_name(np->parent, "slow_clk");
if (IS_ERR(slow_clk))
return PTR_ERR(slow_clk);
clk_name[1] += channel;
clk = of_clk_get_by_name(np->parent, clk_name);
if (IS_ERR(clk))
clk = of_clk_get_by_name(np->parent, "t0_clk");
if (IS_ERR(clk))
return PTR_ERR(clk);
match = of_match_node(atmel_tcb_of_match, np->parent);
config = match->data;
if (config->has_gclk) {
gclk = of_clk_get_by_name(np->parent, "gclk");
if (IS_ERR(gclk))
return PTR_ERR(gclk);
} }
tcbpwm = devm_kzalloc(&pdev->dev, sizeof(*tcbpwm), GFP_KERNEL); tcbpwm = devm_kzalloc(&pdev->dev, sizeof(*tcbpwm), GFP_KERNEL);
if (tcbpwm == NULL) { if (tcbpwm == NULL) {
err = -ENOMEM; err = -ENOMEM;
goto err_free_tc; goto err_slow_clk;
} }
tcbpwm->chip.dev = &pdev->dev; tcbpwm->chip.dev = &pdev->dev;
...@@ -410,11 +456,16 @@ static int atmel_tcb_pwm_probe(struct platform_device *pdev) ...@@ -410,11 +456,16 @@ static int atmel_tcb_pwm_probe(struct platform_device *pdev)
tcbpwm->chip.of_pwm_n_cells = 3; tcbpwm->chip.of_pwm_n_cells = 3;
tcbpwm->chip.base = -1; tcbpwm->chip.base = -1;
tcbpwm->chip.npwm = NPWM; tcbpwm->chip.npwm = NPWM;
tcbpwm->tc = tc; tcbpwm->channel = channel;
tcbpwm->regmap = regmap;
err = clk_prepare_enable(tc->slow_clk); tcbpwm->clk = clk;
tcbpwm->gclk = gclk;
tcbpwm->slow_clk = slow_clk;
tcbpwm->width = config->counter_width;
err = clk_prepare_enable(slow_clk);
if (err) if (err)
goto err_free_tc; goto err_slow_clk;
spin_lock_init(&tcbpwm->lock); spin_lock_init(&tcbpwm->lock);
...@@ -427,10 +478,10 @@ static int atmel_tcb_pwm_probe(struct platform_device *pdev) ...@@ -427,10 +478,10 @@ static int atmel_tcb_pwm_probe(struct platform_device *pdev)
return 0; return 0;
err_disable_clk: err_disable_clk:
clk_disable_unprepare(tcbpwm->tc->slow_clk); clk_disable_unprepare(tcbpwm->slow_clk);
err_free_tc: err_slow_clk:
atmel_tc_free(tc); clk_put(slow_clk);
return err; return err;
} }
...@@ -440,14 +491,14 @@ static int atmel_tcb_pwm_remove(struct platform_device *pdev) ...@@ -440,14 +491,14 @@ static int atmel_tcb_pwm_remove(struct platform_device *pdev)
struct atmel_tcb_pwm_chip *tcbpwm = platform_get_drvdata(pdev); struct atmel_tcb_pwm_chip *tcbpwm = platform_get_drvdata(pdev);
int err; int err;
clk_disable_unprepare(tcbpwm->tc->slow_clk); clk_disable_unprepare(tcbpwm->slow_clk);
clk_put(tcbpwm->slow_clk);
clk_put(tcbpwm->clk);
err = pwmchip_remove(&tcbpwm->chip); err = pwmchip_remove(&tcbpwm->chip);
if (err < 0) if (err < 0)
return err; return err;
atmel_tc_free(tcbpwm->tc);
return 0; return 0;
} }
...@@ -461,38 +512,33 @@ MODULE_DEVICE_TABLE(of, atmel_tcb_pwm_dt_ids); ...@@ -461,38 +512,33 @@ MODULE_DEVICE_TABLE(of, atmel_tcb_pwm_dt_ids);
static int atmel_tcb_pwm_suspend(struct device *dev) static int atmel_tcb_pwm_suspend(struct device *dev)
{ {
struct atmel_tcb_pwm_chip *tcbpwm = dev_get_drvdata(dev); struct atmel_tcb_pwm_chip *tcbpwm = dev_get_drvdata(dev);
void __iomem *base = tcbpwm->tc->regs; struct atmel_tcb_channel *chan = &tcbpwm->bkup;
int i; unsigned int channel = tcbpwm->channel;
for (i = 0; i < (NPWM / 2); i++) { regmap_read(tcbpwm->regmap, ATMEL_TC_REG(channel, CMR), &chan->cmr);
struct atmel_tcb_channel *chan = &tcbpwm->bkup[i]; regmap_read(tcbpwm->regmap, ATMEL_TC_REG(channel, RA), &chan->ra);
regmap_read(tcbpwm->regmap, ATMEL_TC_REG(channel, RB), &chan->rb);
regmap_read(tcbpwm->regmap, ATMEL_TC_REG(channel, RC), &chan->rc);
chan->cmr = readl(base + ATMEL_TC_REG(i, CMR));
chan->ra = readl(base + ATMEL_TC_REG(i, RA));
chan->rb = readl(base + ATMEL_TC_REG(i, RB));
chan->rc = readl(base + ATMEL_TC_REG(i, RC));
}
return 0; return 0;
} }
static int atmel_tcb_pwm_resume(struct device *dev) static int atmel_tcb_pwm_resume(struct device *dev)
{ {
struct atmel_tcb_pwm_chip *tcbpwm = dev_get_drvdata(dev); struct atmel_tcb_pwm_chip *tcbpwm = dev_get_drvdata(dev);
void __iomem *base = tcbpwm->tc->regs; struct atmel_tcb_channel *chan = &tcbpwm->bkup;
int i; unsigned int channel = tcbpwm->channel;
for (i = 0; i < (NPWM / 2); i++) { regmap_write(tcbpwm->regmap, ATMEL_TC_REG(channel, CMR), chan->cmr);
struct atmel_tcb_channel *chan = &tcbpwm->bkup[i]; regmap_write(tcbpwm->regmap, ATMEL_TC_REG(channel, RA), chan->ra);
regmap_write(tcbpwm->regmap, ATMEL_TC_REG(channel, RB), chan->rb);
writel(chan->cmr, base + ATMEL_TC_REG(i, CMR)); regmap_write(tcbpwm->regmap, ATMEL_TC_REG(channel, RC), chan->rc);
writel(chan->ra, base + ATMEL_TC_REG(i, RA));
writel(chan->rb, base + ATMEL_TC_REG(i, RB)); if (chan->enabled)
writel(chan->rc, base + ATMEL_TC_REG(i, RC)); regmap_write(tcbpwm->regmap,
if (chan->enabled) { ATMEL_TC_CLKEN | ATMEL_TC_SWTRG,
writel(ATMEL_TC_CLKEN | ATMEL_TC_SWTRG, ATMEL_TC_REG(channel, CCR));
base + ATMEL_TC_REG(i, CCR));
}
}
return 0; return 0;
} }
#endif #endif
......
...@@ -401,7 +401,6 @@ MODULE_DEVICE_TABLE(of, atmel_pwm_dt_ids); ...@@ -401,7 +401,6 @@ MODULE_DEVICE_TABLE(of, atmel_pwm_dt_ids);
static int atmel_pwm_probe(struct platform_device *pdev) static int atmel_pwm_probe(struct platform_device *pdev)
{ {
struct atmel_pwm_chip *atmel_pwm; struct atmel_pwm_chip *atmel_pwm;
struct resource *res;
int ret; int ret;
atmel_pwm = devm_kzalloc(&pdev->dev, sizeof(*atmel_pwm), GFP_KERNEL); atmel_pwm = devm_kzalloc(&pdev->dev, sizeof(*atmel_pwm), GFP_KERNEL);
...@@ -412,8 +411,7 @@ static int atmel_pwm_probe(struct platform_device *pdev) ...@@ -412,8 +411,7 @@ static int atmel_pwm_probe(struct platform_device *pdev)
atmel_pwm->data = of_device_get_match_data(&pdev->dev); atmel_pwm->data = of_device_get_match_data(&pdev->dev);
atmel_pwm->updated_pwms = 0; atmel_pwm->updated_pwms = 0;
res = platform_get_resource(pdev, IORESOURCE_MEM, 0); atmel_pwm->base = devm_platform_ioremap_resource(pdev, 0);
atmel_pwm->base = devm_ioremap_resource(&pdev->dev, res);
if (IS_ERR(atmel_pwm->base)) if (IS_ERR(atmel_pwm->base))
return PTR_ERR(atmel_pwm->base); return PTR_ERR(atmel_pwm->base);
......
...@@ -197,7 +197,6 @@ static const struct pwm_ops iproc_pwm_ops = { ...@@ -197,7 +197,6 @@ static const struct pwm_ops iproc_pwm_ops = {
static int iproc_pwmc_probe(struct platform_device *pdev) static int iproc_pwmc_probe(struct platform_device *pdev)
{ {
struct iproc_pwmc *ip; struct iproc_pwmc *ip;
struct resource *res;
unsigned int i; unsigned int i;
u32 value; u32 value;
int ret; int ret;
...@@ -215,8 +214,7 @@ static int iproc_pwmc_probe(struct platform_device *pdev) ...@@ -215,8 +214,7 @@ static int iproc_pwmc_probe(struct platform_device *pdev)
ip->chip.of_xlate = of_pwm_xlate_with_flags; ip->chip.of_xlate = of_pwm_xlate_with_flags;
ip->chip.of_pwm_n_cells = 3; ip->chip.of_pwm_n_cells = 3;
res = platform_get_resource(pdev, IORESOURCE_MEM, 0); ip->base = devm_platform_ioremap_resource(pdev, 0);
ip->base = devm_ioremap_resource(&pdev->dev, res);
if (IS_ERR(ip->base)) if (IS_ERR(ip->base))
return PTR_ERR(ip->base); return PTR_ERR(ip->base);
......
...@@ -259,7 +259,6 @@ static const struct pwm_ops kona_pwm_ops = { ...@@ -259,7 +259,6 @@ static const struct pwm_ops kona_pwm_ops = {
static int kona_pwmc_probe(struct platform_device *pdev) static int kona_pwmc_probe(struct platform_device *pdev)
{ {
struct kona_pwmc *kp; struct kona_pwmc *kp;
struct resource *res;
unsigned int chan; unsigned int chan;
unsigned int value = 0; unsigned int value = 0;
int ret = 0; int ret = 0;
...@@ -277,8 +276,7 @@ static int kona_pwmc_probe(struct platform_device *pdev) ...@@ -277,8 +276,7 @@ static int kona_pwmc_probe(struct platform_device *pdev)
kp->chip.of_xlate = of_pwm_xlate_with_flags; kp->chip.of_xlate = of_pwm_xlate_with_flags;
kp->chip.of_pwm_n_cells = 3; kp->chip.of_pwm_n_cells = 3;
res = platform_get_resource(pdev, IORESOURCE_MEM, 0); kp->base = devm_platform_ioremap_resource(pdev, 0);
kp->base = devm_ioremap_resource(&pdev->dev, res);
if (IS_ERR(kp->base)) if (IS_ERR(kp->base))
return PTR_ERR(kp->base); return PTR_ERR(kp->base);
......
...@@ -58,13 +58,15 @@ static void bcm2835_pwm_free(struct pwm_chip *chip, struct pwm_device *pwm) ...@@ -58,13 +58,15 @@ static void bcm2835_pwm_free(struct pwm_chip *chip, struct pwm_device *pwm)
writel(value, pc->base + PWM_CONTROL); writel(value, pc->base + PWM_CONTROL);
} }
static int bcm2835_pwm_config(struct pwm_chip *chip, struct pwm_device *pwm, static int bcm2835_pwm_apply(struct pwm_chip *chip, struct pwm_device *pwm,
int duty_ns, int period_ns) const struct pwm_state *state)
{ {
struct bcm2835_pwm *pc = to_bcm2835_pwm(chip); struct bcm2835_pwm *pc = to_bcm2835_pwm(chip);
unsigned long rate = clk_get_rate(pc->clk); unsigned long rate = clk_get_rate(pc->clk);
unsigned long long period;
unsigned long scaler; unsigned long scaler;
u32 period; u32 val;
if (!rate) { if (!rate) {
dev_err(pc->dev, "failed to get clock rate\n"); dev_err(pc->dev, "failed to get clock rate\n");
...@@ -72,54 +74,34 @@ static int bcm2835_pwm_config(struct pwm_chip *chip, struct pwm_device *pwm, ...@@ -72,54 +74,34 @@ static int bcm2835_pwm_config(struct pwm_chip *chip, struct pwm_device *pwm,
} }
scaler = DIV_ROUND_CLOSEST(NSEC_PER_SEC, rate); scaler = DIV_ROUND_CLOSEST(NSEC_PER_SEC, rate);
period = DIV_ROUND_CLOSEST(period_ns, scaler); /* set period */
period = DIV_ROUND_CLOSEST_ULL(state->period, scaler);
if (period < PERIOD_MIN) /* dont accept a period that is too small or has been truncated */
if ((period < PERIOD_MIN) || (period > U32_MAX))
return -EINVAL; return -EINVAL;
writel(DIV_ROUND_CLOSEST(duty_ns, scaler),
pc->base + DUTY(pwm->hwpwm));
writel(period, pc->base + PERIOD(pwm->hwpwm)); writel(period, pc->base + PERIOD(pwm->hwpwm));
return 0; /* set duty cycle */
} val = DIV_ROUND_CLOSEST_ULL(state->duty_cycle, scaler);
writel(val, pc->base + DUTY(pwm->hwpwm));
static int bcm2835_pwm_enable(struct pwm_chip *chip, struct pwm_device *pwm)
{
struct bcm2835_pwm *pc = to_bcm2835_pwm(chip);
u32 value;
value = readl(pc->base + PWM_CONTROL);
value |= PWM_ENABLE << PWM_CONTROL_SHIFT(pwm->hwpwm);
writel(value, pc->base + PWM_CONTROL);
return 0; /* set polarity */
} val = readl(pc->base + PWM_CONTROL);
static void bcm2835_pwm_disable(struct pwm_chip *chip, struct pwm_device *pwm) if (state->polarity == PWM_POLARITY_NORMAL)
{ val &= ~(PWM_POLARITY << PWM_CONTROL_SHIFT(pwm->hwpwm));
struct bcm2835_pwm *pc = to_bcm2835_pwm(chip); else
u32 value; val |= PWM_POLARITY << PWM_CONTROL_SHIFT(pwm->hwpwm);
value = readl(pc->base + PWM_CONTROL);
value &= ~(PWM_ENABLE << PWM_CONTROL_SHIFT(pwm->hwpwm));
writel(value, pc->base + PWM_CONTROL);
}
static int bcm2835_set_polarity(struct pwm_chip *chip, struct pwm_device *pwm,
enum pwm_polarity polarity)
{
struct bcm2835_pwm *pc = to_bcm2835_pwm(chip);
u32 value;
value = readl(pc->base + PWM_CONTROL);
if (polarity == PWM_POLARITY_NORMAL) /* enable/disable */
value &= ~(PWM_POLARITY << PWM_CONTROL_SHIFT(pwm->hwpwm)); if (state->enabled)
val |= PWM_ENABLE << PWM_CONTROL_SHIFT(pwm->hwpwm);
else else
value |= PWM_POLARITY << PWM_CONTROL_SHIFT(pwm->hwpwm); val &= ~(PWM_ENABLE << PWM_CONTROL_SHIFT(pwm->hwpwm));
writel(value, pc->base + PWM_CONTROL); writel(val, pc->base + PWM_CONTROL);
return 0; return 0;
} }
...@@ -127,17 +109,13 @@ static int bcm2835_set_polarity(struct pwm_chip *chip, struct pwm_device *pwm, ...@@ -127,17 +109,13 @@ static int bcm2835_set_polarity(struct pwm_chip *chip, struct pwm_device *pwm,
static const struct pwm_ops bcm2835_pwm_ops = { static const struct pwm_ops bcm2835_pwm_ops = {
.request = bcm2835_pwm_request, .request = bcm2835_pwm_request,
.free = bcm2835_pwm_free, .free = bcm2835_pwm_free,
.config = bcm2835_pwm_config, .apply = bcm2835_pwm_apply,
.enable = bcm2835_pwm_enable,
.disable = bcm2835_pwm_disable,
.set_polarity = bcm2835_set_polarity,
.owner = THIS_MODULE, .owner = THIS_MODULE,
}; };
static int bcm2835_pwm_probe(struct platform_device *pdev) static int bcm2835_pwm_probe(struct platform_device *pdev)
{ {
struct bcm2835_pwm *pc; struct bcm2835_pwm *pc;
struct resource *res;
int ret; int ret;
pc = devm_kzalloc(&pdev->dev, sizeof(*pc), GFP_KERNEL); pc = devm_kzalloc(&pdev->dev, sizeof(*pc), GFP_KERNEL);
...@@ -146,8 +124,7 @@ static int bcm2835_pwm_probe(struct platform_device *pdev) ...@@ -146,8 +124,7 @@ static int bcm2835_pwm_probe(struct platform_device *pdev)
pc->dev = &pdev->dev; pc->dev = &pdev->dev;
res = platform_get_resource(pdev, IORESOURCE_MEM, 0); pc->base = devm_platform_ioremap_resource(pdev, 0);
pc->base = devm_ioremap_resource(&pdev->dev, res);
if (IS_ERR(pc->base)) if (IS_ERR(pc->base))
return PTR_ERR(pc->base); return PTR_ERR(pc->base);
......
...@@ -186,15 +186,13 @@ MODULE_DEVICE_TABLE(of, berlin_pwm_match); ...@@ -186,15 +186,13 @@ MODULE_DEVICE_TABLE(of, berlin_pwm_match);
static int berlin_pwm_probe(struct platform_device *pdev) static int berlin_pwm_probe(struct platform_device *pdev)
{ {
struct berlin_pwm_chip *pwm; struct berlin_pwm_chip *pwm;
struct resource *res;
int ret; int ret;
pwm = devm_kzalloc(&pdev->dev, sizeof(*pwm), GFP_KERNEL); pwm = devm_kzalloc(&pdev->dev, sizeof(*pwm), GFP_KERNEL);
if (!pwm) if (!pwm)
return -ENOMEM; return -ENOMEM;
res = platform_get_resource(pdev, IORESOURCE_MEM, 0); pwm->base = devm_platform_ioremap_resource(pdev, 0);
pwm->base = devm_ioremap_resource(&pdev->dev, res);
if (IS_ERR(pwm->base)) if (IS_ERR(pwm->base))
return PTR_ERR(pwm->base); return PTR_ERR(pwm->base);
......
...@@ -234,7 +234,6 @@ MODULE_DEVICE_TABLE(of, brcmstb_pwm_of_match); ...@@ -234,7 +234,6 @@ MODULE_DEVICE_TABLE(of, brcmstb_pwm_of_match);
static int brcmstb_pwm_probe(struct platform_device *pdev) static int brcmstb_pwm_probe(struct platform_device *pdev)
{ {
struct brcmstb_pwm *p; struct brcmstb_pwm *p;
struct resource *res;
int ret; int ret;
p = devm_kzalloc(&pdev->dev, sizeof(*p), GFP_KERNEL); p = devm_kzalloc(&pdev->dev, sizeof(*p), GFP_KERNEL);
...@@ -262,8 +261,7 @@ static int brcmstb_pwm_probe(struct platform_device *pdev) ...@@ -262,8 +261,7 @@ static int brcmstb_pwm_probe(struct platform_device *pdev)
p->chip.base = -1; p->chip.base = -1;
p->chip.npwm = 2; p->chip.npwm = 2;
res = platform_get_resource(pdev, IORESOURCE_MEM, 0); p->base = devm_platform_ioremap_resource(pdev, 0);
p->base = devm_ioremap_resource(&pdev->dev, res);
if (IS_ERR(p->base)) { if (IS_ERR(p->base)) {
ret = PTR_ERR(p->base); ret = PTR_ERR(p->base);
goto out_clk; goto out_clk;
......
...@@ -113,14 +113,12 @@ static struct pwm_device *clps711x_pwm_xlate(struct pwm_chip *chip, ...@@ -113,14 +113,12 @@ static struct pwm_device *clps711x_pwm_xlate(struct pwm_chip *chip,
static int clps711x_pwm_probe(struct platform_device *pdev) static int clps711x_pwm_probe(struct platform_device *pdev)
{ {
struct clps711x_chip *priv; struct clps711x_chip *priv;
struct resource *res;
priv = devm_kzalloc(&pdev->dev, sizeof(*priv), GFP_KERNEL); priv = devm_kzalloc(&pdev->dev, sizeof(*priv), GFP_KERNEL);
if (!priv) if (!priv)
return -ENOMEM; return -ENOMEM;
res = platform_get_resource(pdev, IORESOURCE_MEM, 0); priv->pmpcon = devm_platform_ioremap_resource(pdev, 0);
priv->pmpcon = devm_ioremap_resource(&pdev->dev, res);
if (IS_ERR(priv->pmpcon)) if (IS_ERR(priv->pmpcon))
return PTR_ERR(priv->pmpcon); return PTR_ERR(priv->pmpcon);
......
...@@ -64,7 +64,7 @@ static int crc_pwm_apply(struct pwm_chip *chip, struct pwm_device *pwm, ...@@ -64,7 +64,7 @@ static int crc_pwm_apply(struct pwm_chip *chip, struct pwm_device *pwm,
} }
if (state->polarity != PWM_POLARITY_NORMAL) if (state->polarity != PWM_POLARITY_NORMAL)
return -EOPNOTSUPP; return -EINVAL;
if (pwm_is_enabled(pwm) && !state->enabled) { if (pwm_is_enabled(pwm) && !state->enabled) {
err = regmap_write(crc_pwm->regmap, BACKLIGHT_EN, 0); err = regmap_write(crc_pwm->regmap, BACKLIGHT_EN, 0);
......
// SPDX-License-Identifier: GPL-2.0
/*
* DesignWare PWM Controller driver
*
* Copyright (C) 2018-2020 Intel Corporation
*
* Author: Felipe Balbi (Intel)
* Author: Jarkko Nikula <jarkko.nikula@linux.intel.com>
* Author: Raymond Tan <raymond.tan@intel.com>
*
* Limitations:
* - The hardware cannot generate a 0 % or 100 % duty cycle. Both high and low
* periods are one or more input clock periods long.
*/
#include <linux/bitops.h>
#include <linux/export.h>
#include <linux/kernel.h>
#include <linux/module.h>
#include <linux/pci.h>
#include <linux/pm_runtime.h>
#include <linux/pwm.h>
#define DWC_TIM_LD_CNT(n) ((n) * 0x14)
#define DWC_TIM_LD_CNT2(n) (((n) * 4) + 0xb0)
#define DWC_TIM_CUR_VAL(n) (((n) * 0x14) + 0x04)
#define DWC_TIM_CTRL(n) (((n) * 0x14) + 0x08)
#define DWC_TIM_EOI(n) (((n) * 0x14) + 0x0c)
#define DWC_TIM_INT_STS(n) (((n) * 0x14) + 0x10)
#define DWC_TIMERS_INT_STS 0xa0
#define DWC_TIMERS_EOI 0xa4
#define DWC_TIMERS_RAW_INT_STS 0xa8
#define DWC_TIMERS_COMP_VERSION 0xac
#define DWC_TIMERS_TOTAL 8
#define DWC_CLK_PERIOD_NS 10
/* Timer Control Register */
#define DWC_TIM_CTRL_EN BIT(0)
#define DWC_TIM_CTRL_MODE BIT(1)
#define DWC_TIM_CTRL_MODE_FREE (0 << 1)
#define DWC_TIM_CTRL_MODE_USER (1 << 1)
#define DWC_TIM_CTRL_INT_MASK BIT(2)
#define DWC_TIM_CTRL_PWM BIT(3)
struct dwc_pwm_ctx {
u32 cnt;
u32 cnt2;
u32 ctrl;
};
struct dwc_pwm {
struct pwm_chip chip;
void __iomem *base;
struct dwc_pwm_ctx ctx[DWC_TIMERS_TOTAL];
};
#define to_dwc_pwm(p) (container_of((p), struct dwc_pwm, chip))
static inline u32 dwc_pwm_readl(struct dwc_pwm *dwc, u32 offset)
{
return readl(dwc->base + offset);
}
static inline void dwc_pwm_writel(struct dwc_pwm *dwc, u32 value, u32 offset)
{
writel(value, dwc->base + offset);
}
static void __dwc_pwm_set_enable(struct dwc_pwm *dwc, int pwm, int enabled)
{
u32 reg;
reg = dwc_pwm_readl(dwc, DWC_TIM_CTRL(pwm));
if (enabled)
reg |= DWC_TIM_CTRL_EN;
else
reg &= ~DWC_TIM_CTRL_EN;
dwc_pwm_writel(dwc, reg, DWC_TIM_CTRL(pwm));
}
static int __dwc_pwm_configure_timer(struct dwc_pwm *dwc,
struct pwm_device *pwm,
const struct pwm_state *state)
{
u64 tmp;
u32 ctrl;
u32 high;
u32 low;
/*
* Calculate width of low and high period in terms of input clock
* periods and check are the result within HW limits between 1 and
* 2^32 periods.
*/
tmp = DIV_ROUND_CLOSEST_ULL(state->duty_cycle, DWC_CLK_PERIOD_NS);
if (tmp < 1 || tmp > (1ULL << 32))
return -ERANGE;
low = tmp - 1;
tmp = DIV_ROUND_CLOSEST_ULL(state->period - state->duty_cycle,
DWC_CLK_PERIOD_NS);
if (tmp < 1 || tmp > (1ULL << 32))
return -ERANGE;
high = tmp - 1;
/*
* Specification says timer usage flow is to disable timer, then
* program it followed by enable. It also says Load Count is loaded
* into timer after it is enabled - either after a disable or
* a reset. Based on measurements it happens also without disable
* whenever Load Count is updated. But follow the specification.
*/
__dwc_pwm_set_enable(dwc, pwm->hwpwm, false);
/*
* Write Load Count and Load Count 2 registers. Former defines the
* width of low period and latter the width of high period in terms
* multiple of input clock periods:
* Width = ((Count + 1) * input clock period).
*/
dwc_pwm_writel(dwc, low, DWC_TIM_LD_CNT(pwm->hwpwm));
dwc_pwm_writel(dwc, high, DWC_TIM_LD_CNT2(pwm->hwpwm));
/*
* Set user-defined mode, timer reloads from Load Count registers
* when it counts down to 0.
* Set PWM mode, it makes output to toggle and width of low and high
* periods are set by Load Count registers.
*/
ctrl = DWC_TIM_CTRL_MODE_USER | DWC_TIM_CTRL_PWM;
dwc_pwm_writel(dwc, ctrl, DWC_TIM_CTRL(pwm->hwpwm));
/*
* Enable timer. Output starts from low period.
*/
__dwc_pwm_set_enable(dwc, pwm->hwpwm, state->enabled);
return 0;
}
static int dwc_pwm_apply(struct pwm_chip *chip, struct pwm_device *pwm,
const struct pwm_state *state)
{
struct dwc_pwm *dwc = to_dwc_pwm(chip);
if (state->polarity != PWM_POLARITY_INVERSED)
return -EINVAL;
if (state->enabled) {
if (!pwm->state.enabled)
pm_runtime_get_sync(chip->dev);
return __dwc_pwm_configure_timer(dwc, pwm, state);
} else {
if (pwm->state.enabled) {
__dwc_pwm_set_enable(dwc, pwm->hwpwm, false);
pm_runtime_put_sync(chip->dev);
}
}
return 0;
}
static void dwc_pwm_get_state(struct pwm_chip *chip, struct pwm_device *pwm,
struct pwm_state *state)
{
struct dwc_pwm *dwc = to_dwc_pwm(chip);
u64 duty, period;
pm_runtime_get_sync(chip->dev);
state->enabled = !!(dwc_pwm_readl(dwc,
DWC_TIM_CTRL(pwm->hwpwm)) & DWC_TIM_CTRL_EN);
duty = dwc_pwm_readl(dwc, DWC_TIM_LD_CNT(pwm->hwpwm));
duty += 1;
duty *= DWC_CLK_PERIOD_NS;
state->duty_cycle = duty;
period = dwc_pwm_readl(dwc, DWC_TIM_LD_CNT2(pwm->hwpwm));
period += 1;
period *= DWC_CLK_PERIOD_NS;
period += duty;
state->period = period;
state->polarity = PWM_POLARITY_INVERSED;
pm_runtime_put_sync(chip->dev);
}
static const struct pwm_ops dwc_pwm_ops = {
.apply = dwc_pwm_apply,
.get_state = dwc_pwm_get_state,
.owner = THIS_MODULE,
};
static int dwc_pwm_probe(struct pci_dev *pci, const struct pci_device_id *id)
{
struct device *dev = &pci->dev;
struct dwc_pwm *dwc;
int ret;
dwc = devm_kzalloc(&pci->dev, sizeof(*dwc), GFP_KERNEL);
if (!dwc)
return -ENOMEM;
ret = pcim_enable_device(pci);
if (ret) {
dev_err(&pci->dev,
"Failed to enable device (%pe)\n", ERR_PTR(ret));
return ret;
}
pci_set_master(pci);
ret = pcim_iomap_regions(pci, BIT(0), pci_name(pci));
if (ret) {
dev_err(&pci->dev,
"Failed to iomap PCI BAR (%pe)\n", ERR_PTR(ret));
return ret;
}
dwc->base = pcim_iomap_table(pci)[0];
if (!dwc->base) {
dev_err(&pci->dev, "Base address missing\n");
return -ENOMEM;
}
pci_set_drvdata(pci, dwc);
dwc->chip.dev = dev;
dwc->chip.ops = &dwc_pwm_ops;
dwc->chip.npwm = DWC_TIMERS_TOTAL;
dwc->chip.base = -1;
ret = pwmchip_add(&dwc->chip);
if (ret)
return ret;
pm_runtime_put(dev);
pm_runtime_allow(dev);
return 0;
}
static void dwc_pwm_remove(struct pci_dev *pci)
{
struct dwc_pwm *dwc = pci_get_drvdata(pci);
pm_runtime_forbid(&pci->dev);
pm_runtime_get_noresume(&pci->dev);
pwmchip_remove(&dwc->chip);
}
#ifdef CONFIG_PM_SLEEP
static int dwc_pwm_suspend(struct device *dev)
{
struct pci_dev *pdev = container_of(dev, struct pci_dev, dev);
struct dwc_pwm *dwc = pci_get_drvdata(pdev);
int i;
for (i = 0; i < DWC_TIMERS_TOTAL; i++) {
if (dwc->chip.pwms[i].state.enabled) {
dev_err(dev, "PWM %u in use by consumer (%s)\n",
i, dwc->chip.pwms[i].label);
return -EBUSY;
}
dwc->ctx[i].cnt = dwc_pwm_readl(dwc, DWC_TIM_LD_CNT(i));
dwc->ctx[i].cnt2 = dwc_pwm_readl(dwc, DWC_TIM_LD_CNT2(i));
dwc->ctx[i].ctrl = dwc_pwm_readl(dwc, DWC_TIM_CTRL(i));
}
return 0;
}
static int dwc_pwm_resume(struct device *dev)
{
struct pci_dev *pdev = container_of(dev, struct pci_dev, dev);
struct dwc_pwm *dwc = pci_get_drvdata(pdev);
int i;
for (i = 0; i < DWC_TIMERS_TOTAL; i++) {
dwc_pwm_writel(dwc, dwc->ctx[i].cnt, DWC_TIM_LD_CNT(i));
dwc_pwm_writel(dwc, dwc->ctx[i].cnt2, DWC_TIM_LD_CNT2(i));
dwc_pwm_writel(dwc, dwc->ctx[i].ctrl, DWC_TIM_CTRL(i));
}
return 0;
}
#endif
static SIMPLE_DEV_PM_OPS(dwc_pwm_pm_ops, dwc_pwm_suspend, dwc_pwm_resume);
static const struct pci_device_id dwc_pwm_id_table[] = {
{ PCI_VDEVICE(INTEL, 0x4bb7) }, /* Elkhart Lake */
{ } /* Terminating Entry */
};
MODULE_DEVICE_TABLE(pci, dwc_pwm_id_table);
static struct pci_driver dwc_pwm_driver = {
.name = "pwm-dwc",
.probe = dwc_pwm_probe,
.remove = dwc_pwm_remove,
.id_table = dwc_pwm_id_table,
.driver = {
.pm = &dwc_pwm_pm_ops,
},
};
module_pci_driver(dwc_pwm_driver);
MODULE_AUTHOR("Felipe Balbi (Intel)");
MODULE_AUTHOR("Jarkko Nikula <jarkko.nikula@linux.intel.com>");
MODULE_AUTHOR("Raymond Tan <raymond.tan@intel.com>");
MODULE_DESCRIPTION("DesignWare PWM Controller");
MODULE_LICENSE("GPL");
...@@ -169,15 +169,13 @@ static const struct pwm_ops ep93xx_pwm_ops = { ...@@ -169,15 +169,13 @@ static const struct pwm_ops ep93xx_pwm_ops = {
static int ep93xx_pwm_probe(struct platform_device *pdev) static int ep93xx_pwm_probe(struct platform_device *pdev)
{ {
struct ep93xx_pwm *ep93xx_pwm; struct ep93xx_pwm *ep93xx_pwm;
struct resource *res;
int ret; int ret;
ep93xx_pwm = devm_kzalloc(&pdev->dev, sizeof(*ep93xx_pwm), GFP_KERNEL); ep93xx_pwm = devm_kzalloc(&pdev->dev, sizeof(*ep93xx_pwm), GFP_KERNEL);
if (!ep93xx_pwm) if (!ep93xx_pwm)
return -ENOMEM; return -ENOMEM;
res = platform_get_resource(pdev, IORESOURCE_MEM, 0); ep93xx_pwm->base = devm_platform_ioremap_resource(pdev, 0);
ep93xx_pwm->base = devm_ioremap_resource(&pdev->dev, res);
if (IS_ERR(ep93xx_pwm->base)) if (IS_ERR(ep93xx_pwm->base))
return PTR_ERR(ep93xx_pwm->base); return PTR_ERR(ep93xx_pwm->base);
......
...@@ -399,7 +399,6 @@ static const struct regmap_config fsl_pwm_regmap_config = { ...@@ -399,7 +399,6 @@ static const struct regmap_config fsl_pwm_regmap_config = {
static int fsl_pwm_probe(struct platform_device *pdev) static int fsl_pwm_probe(struct platform_device *pdev)
{ {
struct fsl_pwm_chip *fpc; struct fsl_pwm_chip *fpc;
struct resource *res;
void __iomem *base; void __iomem *base;
int ret; int ret;
...@@ -412,8 +411,7 @@ static int fsl_pwm_probe(struct platform_device *pdev) ...@@ -412,8 +411,7 @@ static int fsl_pwm_probe(struct platform_device *pdev)
fpc->soc = of_device_get_match_data(&pdev->dev); fpc->soc = of_device_get_match_data(&pdev->dev);
fpc->chip.dev = &pdev->dev; fpc->chip.dev = &pdev->dev;
res = platform_get_resource(pdev, IORESOURCE_MEM, 0); base = devm_platform_ioremap_resource(pdev, 0);
base = devm_ioremap_resource(&pdev->dev, res);
if (IS_ERR(base)) if (IS_ERR(base))
return PTR_ERR(base); return PTR_ERR(base);
......
...@@ -190,9 +190,7 @@ static int hibvt_pwm_probe(struct platform_device *pdev) ...@@ -190,9 +190,7 @@ static int hibvt_pwm_probe(struct platform_device *pdev)
const struct hibvt_pwm_soc *soc = const struct hibvt_pwm_soc *soc =
of_device_get_match_data(&pdev->dev); of_device_get_match_data(&pdev->dev);
struct hibvt_pwm_chip *pwm_chip; struct hibvt_pwm_chip *pwm_chip;
struct resource *res; int ret, i;
int ret;
int i;
pwm_chip = devm_kzalloc(&pdev->dev, sizeof(*pwm_chip), GFP_KERNEL); pwm_chip = devm_kzalloc(&pdev->dev, sizeof(*pwm_chip), GFP_KERNEL);
if (pwm_chip == NULL) if (pwm_chip == NULL)
...@@ -213,8 +211,7 @@ static int hibvt_pwm_probe(struct platform_device *pdev) ...@@ -213,8 +211,7 @@ static int hibvt_pwm_probe(struct platform_device *pdev)
pwm_chip->chip.of_pwm_n_cells = 3; pwm_chip->chip.of_pwm_n_cells = 3;
pwm_chip->soc = soc; pwm_chip->soc = soc;
res = platform_get_resource(pdev, IORESOURCE_MEM, 0); pwm_chip->base = devm_platform_ioremap_resource(pdev, 0);
pwm_chip->base = devm_ioremap_resource(&pdev->dev, res);
if (IS_ERR(pwm_chip->base)) if (IS_ERR(pwm_chip->base))
return PTR_ERR(pwm_chip->base); return PTR_ERR(pwm_chip->base);
......
...@@ -240,7 +240,6 @@ static int img_pwm_probe(struct platform_device *pdev) ...@@ -240,7 +240,6 @@ static int img_pwm_probe(struct platform_device *pdev)
int ret; int ret;
u64 val; u64 val;
unsigned long clk_rate; unsigned long clk_rate;
struct resource *res;
struct img_pwm_chip *pwm; struct img_pwm_chip *pwm;
const struct of_device_id *of_dev_id; const struct of_device_id *of_dev_id;
...@@ -250,8 +249,7 @@ static int img_pwm_probe(struct platform_device *pdev) ...@@ -250,8 +249,7 @@ static int img_pwm_probe(struct platform_device *pdev)
pwm->dev = &pdev->dev; pwm->dev = &pdev->dev;
res = platform_get_resource(pdev, IORESOURCE_MEM, 0); pwm->base = devm_platform_ioremap_resource(pdev, 0);
pwm->base = devm_ioremap_resource(&pdev->dev, res);
if (IS_ERR(pwm->base)) if (IS_ERR(pwm->base))
return PTR_ERR(pwm->base); return PTR_ERR(pwm->base);
......
...@@ -350,13 +350,9 @@ static int pwm_imx_tpm_probe(struct platform_device *pdev) ...@@ -350,13 +350,9 @@ static int pwm_imx_tpm_probe(struct platform_device *pdev)
return PTR_ERR(tpm->base); return PTR_ERR(tpm->base);
tpm->clk = devm_clk_get(&pdev->dev, NULL); tpm->clk = devm_clk_get(&pdev->dev, NULL);
if (IS_ERR(tpm->clk)) { if (IS_ERR(tpm->clk))
ret = PTR_ERR(tpm->clk); return dev_err_probe(&pdev->dev, PTR_ERR(tpm->clk),
if (ret != -EPROBE_DEFER) "failed to get PWM clock\n");
dev_err(&pdev->dev,
"failed to get PWM clock: %d\n", ret);
return ret;
}
ret = clk_prepare_enable(tpm->clk); ret = clk_prepare_enable(tpm->clk);
if (ret) { if (ret) {
......
...@@ -136,7 +136,6 @@ MODULE_DEVICE_TABLE(of, pwm_imx1_dt_ids); ...@@ -136,7 +136,6 @@ MODULE_DEVICE_TABLE(of, pwm_imx1_dt_ids);
static int pwm_imx1_probe(struct platform_device *pdev) static int pwm_imx1_probe(struct platform_device *pdev)
{ {
struct pwm_imx1_chip *imx; struct pwm_imx1_chip *imx;
struct resource *r;
imx = devm_kzalloc(&pdev->dev, sizeof(*imx), GFP_KERNEL); imx = devm_kzalloc(&pdev->dev, sizeof(*imx), GFP_KERNEL);
if (!imx) if (!imx)
...@@ -145,31 +144,21 @@ static int pwm_imx1_probe(struct platform_device *pdev) ...@@ -145,31 +144,21 @@ static int pwm_imx1_probe(struct platform_device *pdev)
platform_set_drvdata(pdev, imx); platform_set_drvdata(pdev, imx);
imx->clk_ipg = devm_clk_get(&pdev->dev, "ipg"); imx->clk_ipg = devm_clk_get(&pdev->dev, "ipg");
if (IS_ERR(imx->clk_ipg)) { if (IS_ERR(imx->clk_ipg))
dev_err(&pdev->dev, "getting ipg clock failed with %ld\n", return dev_err_probe(&pdev->dev, PTR_ERR(imx->clk_ipg),
PTR_ERR(imx->clk_ipg)); "getting ipg clock failed\n");
return PTR_ERR(imx->clk_ipg);
}
imx->clk_per = devm_clk_get(&pdev->dev, "per"); imx->clk_per = devm_clk_get(&pdev->dev, "per");
if (IS_ERR(imx->clk_per)) { if (IS_ERR(imx->clk_per))
int ret = PTR_ERR(imx->clk_per); return dev_err_probe(&pdev->dev, PTR_ERR(imx->clk_per),
"failed to get peripheral clock\n");
if (ret != -EPROBE_DEFER)
dev_err(&pdev->dev,
"failed to get peripheral clock: %d\n",
ret);
return ret;
}
imx->chip.ops = &pwm_imx1_ops; imx->chip.ops = &pwm_imx1_ops;
imx->chip.dev = &pdev->dev; imx->chip.dev = &pdev->dev;
imx->chip.base = -1; imx->chip.base = -1;
imx->chip.npwm = 1; imx->chip.npwm = 1;
r = platform_get_resource(pdev, IORESOURCE_MEM, 0); imx->mmio_base = devm_platform_ioremap_resource(pdev, 0);
imx->mmio_base = devm_ioremap_resource(&pdev->dev, r);
if (IS_ERR(imx->mmio_base)) if (IS_ERR(imx->mmio_base))
return PTR_ERR(imx->mmio_base); return PTR_ERR(imx->mmio_base);
......
...@@ -235,8 +235,9 @@ static int pwm_imx27_apply(struct pwm_chip *chip, struct pwm_device *pwm, ...@@ -235,8 +235,9 @@ static int pwm_imx27_apply(struct pwm_chip *chip, struct pwm_device *pwm,
period_cycles /= prescale; period_cycles /= prescale;
c = clkrate * state->duty_cycle; c = clkrate * state->duty_cycle;
do_div(c, NSEC_PER_SEC * prescale); do_div(c, NSEC_PER_SEC);
duty_cycles = c; duty_cycles = c;
duty_cycles /= prescale;
/* /*
* according to imx pwm RM, the real period value should be PERIOD * according to imx pwm RM, the real period value should be PERIOD
...@@ -315,27 +316,14 @@ static int pwm_imx27_probe(struct platform_device *pdev) ...@@ -315,27 +316,14 @@ static int pwm_imx27_probe(struct platform_device *pdev)
platform_set_drvdata(pdev, imx); platform_set_drvdata(pdev, imx);
imx->clk_ipg = devm_clk_get(&pdev->dev, "ipg"); imx->clk_ipg = devm_clk_get(&pdev->dev, "ipg");
if (IS_ERR(imx->clk_ipg)) { if (IS_ERR(imx->clk_ipg))
int ret = PTR_ERR(imx->clk_ipg); return dev_err_probe(&pdev->dev, PTR_ERR(imx->clk_ipg),
"getting ipg clock failed\n");
if (ret != -EPROBE_DEFER)
dev_err(&pdev->dev,
"getting ipg clock failed with %d\n",
ret);
return ret;
}
imx->clk_per = devm_clk_get(&pdev->dev, "per"); imx->clk_per = devm_clk_get(&pdev->dev, "per");
if (IS_ERR(imx->clk_per)) { if (IS_ERR(imx->clk_per))
int ret = PTR_ERR(imx->clk_per); return dev_err_probe(&pdev->dev, PTR_ERR(imx->clk_per),
"failed to get peripheral clock\n");
if (ret != -EPROBE_DEFER)
dev_err(&pdev->dev,
"failed to get peripheral clock: %d\n",
ret);
return ret;
}
imx->chip.ops = &pwm_imx27_ops; imx->chip.ops = &pwm_imx27_ops;
imx->chip.dev = &pdev->dev; imx->chip.dev = &pdev->dev;
......
// SPDX-License-Identifier: GPL-2.0
/*
* Copyright (C) 2020 Intel Corporation.
*
* Limitations:
* - The hardware supports fixed period & configures only 2-wire mode.
* - Supports normal polarity. Does not support changing polarity.
* - When PWM is disabled, output of PWM will become 0(inactive). It doesn't
* keep track of running period.
* - When duty cycle is changed, PWM output may be a mix of previous setting
* and new setting for the first period. From second period, the output is
* based on new setting.
* - It is a dedicated PWM fan controller. There are no other consumers for
* this PWM controller.
*/
#include <linux/bitfield.h>
#include <linux/clk.h>
#include <linux/module.h>
#include <linux/platform_device.h>
#include <linux/mod_devicetable.h>
#include <linux/pwm.h>
#include <linux/regmap.h>
#include <linux/reset.h>
#define LGM_PWM_FAN_CON0 0x0
#define LGM_PWM_FAN_EN_EN BIT(0)
#define LGM_PWM_FAN_EN_DIS 0x0
#define LGM_PWM_FAN_EN_MSK BIT(0)
#define LGM_PWM_FAN_MODE_2WIRE 0x0
#define LGM_PWM_FAN_MODE_MSK BIT(1)
#define LGM_PWM_FAN_DC_MSK GENMASK(23, 16)
#define LGM_PWM_FAN_CON1 0x4
#define LGM_PWM_FAN_MAX_RPM_MSK GENMASK(15, 0)
#define LGM_PWM_MAX_RPM (BIT(16) - 1)
#define LGM_PWM_DEFAULT_RPM 4000
#define LGM_PWM_MAX_DUTY_CYCLE (BIT(8) - 1)
#define LGM_PWM_DC_BITS 8
#define LGM_PWM_PERIOD_2WIRE_NS (40 * NSEC_PER_MSEC)
struct lgm_pwm_chip {
struct pwm_chip chip;
struct regmap *regmap;
u32 period;
};
static inline struct lgm_pwm_chip *to_lgm_pwm_chip(struct pwm_chip *chip)
{
return container_of(chip, struct lgm_pwm_chip, chip);
}
static int lgm_pwm_enable(struct pwm_chip *chip, bool enable)
{
struct lgm_pwm_chip *pc = to_lgm_pwm_chip(chip);
struct regmap *regmap = pc->regmap;
return regmap_update_bits(regmap, LGM_PWM_FAN_CON0, LGM_PWM_FAN_EN_MSK,
enable ? LGM_PWM_FAN_EN_EN : LGM_PWM_FAN_EN_DIS);
}
static int lgm_pwm_apply(struct pwm_chip *chip, struct pwm_device *pwm,
const struct pwm_state *state)
{
struct lgm_pwm_chip *pc = to_lgm_pwm_chip(chip);
u32 duty_cycle, val;
int ret;
/* The hardware only supports normal polarity and fixed period. */
if (state->polarity != PWM_POLARITY_NORMAL || state->period < pc->period)
return -EINVAL;
if (!state->enabled)
return lgm_pwm_enable(chip, 0);
duty_cycle = min_t(u64, state->duty_cycle, pc->period);
val = duty_cycle * LGM_PWM_MAX_DUTY_CYCLE / pc->period;
ret = regmap_update_bits(pc->regmap, LGM_PWM_FAN_CON0, LGM_PWM_FAN_DC_MSK,
FIELD_PREP(LGM_PWM_FAN_DC_MSK, val));
if (ret)
return ret;
return lgm_pwm_enable(chip, 1);
}
static void lgm_pwm_get_state(struct pwm_chip *chip, struct pwm_device *pwm,
struct pwm_state *state)
{
struct lgm_pwm_chip *pc = to_lgm_pwm_chip(chip);
u32 duty, val;
state->enabled = regmap_test_bits(pc->regmap, LGM_PWM_FAN_CON0,
LGM_PWM_FAN_EN_EN);
state->polarity = PWM_POLARITY_NORMAL;
state->period = pc->period; /* fixed period */
regmap_read(pc->regmap, LGM_PWM_FAN_CON0, &val);
duty = FIELD_GET(LGM_PWM_FAN_DC_MSK, val);
state->duty_cycle = DIV_ROUND_UP(duty * pc->period, LGM_PWM_MAX_DUTY_CYCLE);
}
static const struct pwm_ops lgm_pwm_ops = {
.get_state = lgm_pwm_get_state,
.apply = lgm_pwm_apply,
.owner = THIS_MODULE,
};
static void lgm_pwm_init(struct lgm_pwm_chip *pc)
{
struct regmap *regmap = pc->regmap;
u32 con0_val;
con0_val = FIELD_PREP(LGM_PWM_FAN_MODE_MSK, LGM_PWM_FAN_MODE_2WIRE);
pc->period = LGM_PWM_PERIOD_2WIRE_NS;
regmap_update_bits(regmap, LGM_PWM_FAN_CON1, LGM_PWM_FAN_MAX_RPM_MSK,
LGM_PWM_DEFAULT_RPM);
regmap_update_bits(regmap, LGM_PWM_FAN_CON0, LGM_PWM_FAN_MODE_MSK,
con0_val);
}
static const struct regmap_config lgm_pwm_regmap_config = {
.reg_bits = 32,
.reg_stride = 4,
.val_bits = 32,
};
static void lgm_clk_release(void *data)
{
struct clk *clk = data;
clk_disable_unprepare(clk);
}
static int lgm_clk_enable(struct device *dev, struct clk *clk)
{
int ret;
ret = clk_prepare_enable(clk);
if (ret)
return ret;
return devm_add_action_or_reset(dev, lgm_clk_release, clk);
}
static void lgm_reset_control_release(void *data)
{
struct reset_control *rst = data;
reset_control_assert(rst);
}
static int lgm_reset_control_deassert(struct device *dev, struct reset_control *rst)
{
int ret;
ret = reset_control_deassert(rst);
if (ret)
return ret;
return devm_add_action_or_reset(dev, lgm_reset_control_release, rst);
}
static int lgm_pwm_probe(struct platform_device *pdev)
{
struct device *dev = &pdev->dev;
struct reset_control *rst;
struct lgm_pwm_chip *pc;
void __iomem *io_base;
struct clk *clk;
int ret;
pc = devm_kzalloc(dev, sizeof(*pc), GFP_KERNEL);
if (!pc)
return -ENOMEM;
platform_set_drvdata(pdev, pc);
io_base = devm_platform_ioremap_resource(pdev, 0);
if (IS_ERR(io_base))
return PTR_ERR(io_base);
pc->regmap = devm_regmap_init_mmio(dev, io_base, &lgm_pwm_regmap_config);
if (IS_ERR(pc->regmap))
return dev_err_probe(dev, PTR_ERR(pc->regmap),
"failed to init register map\n");
clk = devm_clk_get(dev, NULL);
if (IS_ERR(clk))
return dev_err_probe(dev, PTR_ERR(clk), "failed to get clock\n");
ret = lgm_clk_enable(dev, clk);
if (ret)
return dev_err_probe(dev, ret, "failed to enable clock\n");
rst = devm_reset_control_get_exclusive(dev, NULL);
if (IS_ERR(rst))
return dev_err_probe(dev, PTR_ERR(rst),
"failed to get reset control\n");
ret = lgm_reset_control_deassert(dev, rst);
if (ret)
return dev_err_probe(dev, ret, "cannot deassert reset control\n");
pc->chip.dev = dev;
pc->chip.ops = &lgm_pwm_ops;
pc->chip.npwm = 1;
pc->chip.base = -1;
lgm_pwm_init(pc);
ret = pwmchip_add(&pc->chip);
if (ret < 0)
return dev_err_probe(dev, ret, "failed to add PWM chip\n");
return 0;
}
static int lgm_pwm_remove(struct platform_device *pdev)
{
struct lgm_pwm_chip *pc = platform_get_drvdata(pdev);
return pwmchip_remove(&pc->chip);
}
static const struct of_device_id lgm_pwm_of_match[] = {
{ .compatible = "intel,lgm-pwm" },
{ }
};
MODULE_DEVICE_TABLE(of, lgm_pwm_of_match);
static struct platform_driver lgm_pwm_driver = {
.driver = {
.name = "intel-pwm",
.of_match_table = lgm_pwm_of_match,
},
.probe = lgm_pwm_probe,
.remove = lgm_pwm_remove,
};
module_platform_driver(lgm_pwm_driver);
MODULE_LICENSE("GPL v2");
...@@ -50,7 +50,7 @@ static int iqs620_pwm_apply(struct pwm_chip *chip, struct pwm_device *pwm, ...@@ -50,7 +50,7 @@ static int iqs620_pwm_apply(struct pwm_chip *chip, struct pwm_device *pwm,
int ret; int ret;
if (state->polarity != PWM_POLARITY_NORMAL) if (state->polarity != PWM_POLARITY_NORMAL)
return -ENOTSUPP; return -EINVAL;
if (state->period < IQS620_PWM_PERIOD_NS) if (state->period < IQS620_PWM_PERIOD_NS)
return -EINVAL; return -EINVAL;
......
// SPDX-License-Identifier: GPL-2.0
/*
* Intel Keem Bay PWM driver
*
* Copyright (C) 2020 Intel Corporation
* Authors: Lai Poey Seng <poey.seng.lai@intel.com>
* Vineetha G. Jaya Kumaran <vineetha.g.jaya.kumaran@intel.com>
*
* Limitations:
* - Upon disabling a channel, the currently running
* period will not be completed. However, upon
* reconfiguration of the duty cycle/period, the
* currently running period will be completed first.
*/
#include <linux/bitfield.h>
#include <linux/clk.h>
#include <linux/io.h>
#include <linux/mod_devicetable.h>
#include <linux/module.h>
#include <linux/platform_device.h>
#include <linux/pwm.h>
#include <linux/regmap.h>
#define KMB_TOTAL_PWM_CHANNELS 6
#define KMB_PWM_COUNT_MAX U16_MAX
#define KMB_PWM_EN_BIT BIT(31)
/* Mask */
#define KMB_PWM_HIGH_MASK GENMASK(31, 16)
#define KMB_PWM_LOW_MASK GENMASK(15, 0)
#define KMB_PWM_LEADIN_MASK GENMASK(30, 0)
/* PWM Register offset */
#define KMB_PWM_LEADIN_OFFSET(ch) (0x00 + 4 * (ch))
#define KMB_PWM_HIGHLOW_OFFSET(ch) (0x20 + 4 * (ch))
struct keembay_pwm {
struct pwm_chip chip;
struct device *dev;
struct clk *clk;
void __iomem *base;
};
static inline struct keembay_pwm *to_keembay_pwm_dev(struct pwm_chip *chip)
{
return container_of(chip, struct keembay_pwm, chip);
}
static void keembay_clk_unprepare(void *data)
{
clk_disable_unprepare(data);
}
static int keembay_clk_enable(struct device *dev, struct clk *clk)
{
int ret;
ret = clk_prepare_enable(clk);
if (ret)
return ret;
return devm_add_action_or_reset(dev, keembay_clk_unprepare, clk);
}
/*
* With gcc 10, CONFIG_CC_OPTIMIZE_FOR_SIZE and only "inline" instead of
* "__always_inline" this fails to compile because the compiler doesn't notice
* for all valid masks (e.g. KMB_PWM_LEADIN_MASK) that they are ok.
*/
static __always_inline void keembay_pwm_update_bits(struct keembay_pwm *priv, u32 mask,
u32 val, u32 offset)
{
u32 buff = readl(priv->base + offset);
buff = u32_replace_bits(buff, val, mask);
writel(buff, priv->base + offset);
}
static void keembay_pwm_enable(struct keembay_pwm *priv, int ch)
{
keembay_pwm_update_bits(priv, KMB_PWM_EN_BIT, 1,
KMB_PWM_LEADIN_OFFSET(ch));
}
static void keembay_pwm_disable(struct keembay_pwm *priv, int ch)
{
keembay_pwm_update_bits(priv, KMB_PWM_EN_BIT, 0,
KMB_PWM_LEADIN_OFFSET(ch));
}
static void keembay_pwm_get_state(struct pwm_chip *chip, struct pwm_device *pwm,
struct pwm_state *state)
{
struct keembay_pwm *priv = to_keembay_pwm_dev(chip);
unsigned long long high, low;
unsigned long clk_rate;
u32 highlow;
clk_rate = clk_get_rate(priv->clk);
/* Read channel enabled status */
highlow = readl(priv->base + KMB_PWM_LEADIN_OFFSET(pwm->hwpwm));
if (highlow & KMB_PWM_EN_BIT)
state->enabled = true;
else
state->enabled = false;
/* Read period and duty cycle */
highlow = readl(priv->base + KMB_PWM_HIGHLOW_OFFSET(pwm->hwpwm));
low = FIELD_GET(KMB_PWM_LOW_MASK, highlow) * NSEC_PER_SEC;
high = FIELD_GET(KMB_PWM_HIGH_MASK, highlow) * NSEC_PER_SEC;
state->duty_cycle = DIV_ROUND_UP_ULL(high, clk_rate);
state->period = DIV_ROUND_UP_ULL(high + low, clk_rate);
state->polarity = PWM_POLARITY_NORMAL;
}
static int keembay_pwm_apply(struct pwm_chip *chip, struct pwm_device *pwm,
const struct pwm_state *state)
{
struct keembay_pwm *priv = to_keembay_pwm_dev(chip);
struct pwm_state current_state;
unsigned long long div;
unsigned long clk_rate;
u32 pwm_count = 0;
u16 high, low;
if (state->polarity != PWM_POLARITY_NORMAL)
return -EINVAL;
/*
* Configure the pwm repeat count as infinite at (15:0) and leadin
* low time as 0 at (30:16), which is in terms of clock cycles.
*/
keembay_pwm_update_bits(priv, KMB_PWM_LEADIN_MASK, 0,
KMB_PWM_LEADIN_OFFSET(pwm->hwpwm));
keembay_pwm_get_state(chip, pwm, &current_state);
if (!state->enabled) {
if (current_state.enabled)
keembay_pwm_disable(priv, pwm->hwpwm);
return 0;
}
/*
* The upper 16 bits and lower 16 bits of the KMB_PWM_HIGHLOW_OFFSET
* register contain the high time and low time of waveform accordingly.
* All the values are in terms of clock cycles.
*/
clk_rate = clk_get_rate(priv->clk);
div = clk_rate * state->duty_cycle;
div = DIV_ROUND_DOWN_ULL(div, NSEC_PER_SEC);
if (div > KMB_PWM_COUNT_MAX)
return -ERANGE;
high = div;
div = clk_rate * state->period;
div = DIV_ROUND_DOWN_ULL(div, NSEC_PER_SEC);
div = div - high;
if (div > KMB_PWM_COUNT_MAX)
return -ERANGE;
low = div;
pwm_count = FIELD_PREP(KMB_PWM_HIGH_MASK, high) |
FIELD_PREP(KMB_PWM_LOW_MASK, low);
writel(pwm_count, priv->base + KMB_PWM_HIGHLOW_OFFSET(pwm->hwpwm));
if (state->enabled && !current_state.enabled)
keembay_pwm_enable(priv, pwm->hwpwm);
return 0;
}
static const struct pwm_ops keembay_pwm_ops = {
.owner = THIS_MODULE,
.apply = keembay_pwm_apply,
.get_state = keembay_pwm_get_state,
};
static int keembay_pwm_probe(struct platform_device *pdev)
{
struct device *dev = &pdev->dev;
struct keembay_pwm *priv;
int ret;
priv = devm_kzalloc(dev, sizeof(*priv), GFP_KERNEL);
if (!priv)
return -ENOMEM;
priv->clk = devm_clk_get(dev, NULL);
if (IS_ERR(priv->clk))
return dev_err_probe(dev, PTR_ERR(priv->clk), "Failed to get clock\n");
priv->base = devm_platform_ioremap_resource(pdev, 0);
if (IS_ERR(priv->base))
return PTR_ERR(priv->base);
ret = keembay_clk_enable(dev, priv->clk);
if (ret)
return ret;
priv->chip.base = -1;
priv->chip.dev = dev;
priv->chip.ops = &keembay_pwm_ops;
priv->chip.npwm = KMB_TOTAL_PWM_CHANNELS;
ret = pwmchip_add(&priv->chip);
if (ret)
return dev_err_probe(dev, ret, "Failed to add PWM chip\n");
platform_set_drvdata(pdev, priv);
return 0;
}
static int keembay_pwm_remove(struct platform_device *pdev)
{
struct keembay_pwm *priv = platform_get_drvdata(pdev);
return pwmchip_remove(&priv->chip);
}
static const struct of_device_id keembay_pwm_of_match[] = {
{ .compatible = "intel,keembay-pwm" },
{ }
};
MODULE_DEVICE_TABLE(of, keembay_pwm_of_match);
static struct platform_driver keembay_pwm_driver = {
.probe = keembay_pwm_probe,
.remove = keembay_pwm_remove,
.driver = {
.name = "pwm-keembay",
.of_match_table = keembay_pwm_of_match,
},
};
module_platform_driver(keembay_pwm_driver);
MODULE_ALIAS("platform:pwm-keembay");
MODULE_DESCRIPTION("Intel Keem Bay PWM driver");
MODULE_LICENSE("GPL v2");
...@@ -275,6 +275,7 @@ static int lp3943_pwm_probe(struct platform_device *pdev) ...@@ -275,6 +275,7 @@ static int lp3943_pwm_probe(struct platform_device *pdev)
lp3943_pwm->chip.dev = &pdev->dev; lp3943_pwm->chip.dev = &pdev->dev;
lp3943_pwm->chip.ops = &lp3943_pwm_ops; lp3943_pwm->chip.ops = &lp3943_pwm_ops;
lp3943_pwm->chip.npwm = LP3943_NUM_PWMS; lp3943_pwm->chip.npwm = LP3943_NUM_PWMS;
lp3943_pwm->chip.base = -1;
platform_set_drvdata(pdev, lp3943_pwm); platform_set_drvdata(pdev, lp3943_pwm);
......
...@@ -325,7 +325,6 @@ static int lpc18xx_pwm_probe(struct platform_device *pdev) ...@@ -325,7 +325,6 @@ static int lpc18xx_pwm_probe(struct platform_device *pdev)
{ {
struct lpc18xx_pwm_chip *lpc18xx_pwm; struct lpc18xx_pwm_chip *lpc18xx_pwm;
struct pwm_device *pwm; struct pwm_device *pwm;
struct resource *res;
int ret, i; int ret, i;
u64 val; u64 val;
...@@ -336,8 +335,7 @@ static int lpc18xx_pwm_probe(struct platform_device *pdev) ...@@ -336,8 +335,7 @@ static int lpc18xx_pwm_probe(struct platform_device *pdev)
lpc18xx_pwm->dev = &pdev->dev; lpc18xx_pwm->dev = &pdev->dev;
res = platform_get_resource(pdev, IORESOURCE_MEM, 0); lpc18xx_pwm->base = devm_platform_ioremap_resource(pdev, 0);
lpc18xx_pwm->base = devm_ioremap_resource(&pdev->dev, res);
if (IS_ERR(lpc18xx_pwm->base)) if (IS_ERR(lpc18xx_pwm->base))
return PTR_ERR(lpc18xx_pwm->base); return PTR_ERR(lpc18xx_pwm->base);
......
...@@ -98,7 +98,6 @@ static const struct pwm_ops lpc32xx_pwm_ops = { ...@@ -98,7 +98,6 @@ static const struct pwm_ops lpc32xx_pwm_ops = {
static int lpc32xx_pwm_probe(struct platform_device *pdev) static int lpc32xx_pwm_probe(struct platform_device *pdev)
{ {
struct lpc32xx_pwm_chip *lpc32xx; struct lpc32xx_pwm_chip *lpc32xx;
struct resource *res;
int ret; int ret;
u32 val; u32 val;
...@@ -106,8 +105,7 @@ static int lpc32xx_pwm_probe(struct platform_device *pdev) ...@@ -106,8 +105,7 @@ static int lpc32xx_pwm_probe(struct platform_device *pdev)
if (!lpc32xx) if (!lpc32xx)
return -ENOMEM; return -ENOMEM;
res = platform_get_resource(pdev, IORESOURCE_MEM, 0); lpc32xx->base = devm_platform_ioremap_resource(pdev, 0);
lpc32xx->base = devm_ioremap_resource(&pdev->dev, res);
if (IS_ERR(lpc32xx->base)) if (IS_ERR(lpc32xx->base))
return PTR_ERR(lpc32xx->base); return PTR_ERR(lpc32xx->base);
......
...@@ -58,7 +58,25 @@ static int pwm_lpss_probe_platform(struct platform_device *pdev) ...@@ -58,7 +58,25 @@ static int pwm_lpss_probe_platform(struct platform_device *pdev)
platform_set_drvdata(pdev, lpwm); platform_set_drvdata(pdev, lpwm);
dev_pm_set_driver_flags(&pdev->dev, DPM_FLAG_SMART_PREPARE); /*
* On Cherry Trail devices the GFX0._PS0 AML checks if the controller
* is on and if it is not on it turns it on and restores what it
* believes is the correct state to the PWM controller.
* Because of this we must disallow direct-complete, which keeps the
* controller (runtime)suspended on resume, to avoid 2 issues:
* 1. The controller getting turned on without the linux-pm code
* knowing about this. On devices where the controller is unused
* this causes it to stay on during the next suspend causing high
* battery drain (because S0i3 is not reached)
* 2. The state restoring code unexpectedly messing with the controller
*
* Leaving the controller runtime-suspended (skipping runtime-resume +
* normal-suspend) during suspend is fine.
*/
if (info->other_devices_aml_touches_pwm_regs)
dev_pm_set_driver_flags(&pdev->dev, DPM_FLAG_NO_DIRECT_COMPLETE|
DPM_FLAG_SMART_SUSPEND);
pm_runtime_set_active(&pdev->dev); pm_runtime_set_active(&pdev->dev);
pm_runtime_enable(&pdev->dev); pm_runtime_enable(&pdev->dev);
...@@ -73,24 +91,6 @@ static int pwm_lpss_remove_platform(struct platform_device *pdev) ...@@ -73,24 +91,6 @@ static int pwm_lpss_remove_platform(struct platform_device *pdev)
return pwm_lpss_remove(lpwm); return pwm_lpss_remove(lpwm);
} }
static int pwm_lpss_prepare(struct device *dev)
{
struct pwm_lpss_chip *lpwm = dev_get_drvdata(dev);
/*
* If other device's AML code touches the PWM regs on suspend/resume
* force runtime-resume the PWM controller to allow this.
*/
if (lpwm->info->other_devices_aml_touches_pwm_regs)
return 0; /* Force runtime-resume */
return 1; /* If runtime-suspended leave as is */
}
static const struct dev_pm_ops pwm_lpss_platform_pm_ops = {
.prepare = pwm_lpss_prepare,
};
static const struct acpi_device_id pwm_lpss_acpi_match[] = { static const struct acpi_device_id pwm_lpss_acpi_match[] = {
{ "80860F09", (unsigned long)&pwm_lpss_byt_info }, { "80860F09", (unsigned long)&pwm_lpss_byt_info },
{ "80862288", (unsigned long)&pwm_lpss_bsw_info }, { "80862288", (unsigned long)&pwm_lpss_bsw_info },
...@@ -104,7 +104,6 @@ static struct platform_driver pwm_lpss_driver_platform = { ...@@ -104,7 +104,6 @@ static struct platform_driver pwm_lpss_driver_platform = {
.driver = { .driver = {
.name = "pwm-lpss", .name = "pwm-lpss",
.acpi_match_table = pwm_lpss_acpi_match, .acpi_match_table = pwm_lpss_acpi_match,
.pm = &pwm_lpss_platform_pm_ops,
}, },
.probe = pwm_lpss_probe_platform, .probe = pwm_lpss_probe_platform,
.remove = pwm_lpss_remove_platform, .remove = pwm_lpss_remove_platform,
......
...@@ -76,7 +76,12 @@ static int pwm_lpss_wait_for_update(struct pwm_device *pwm) ...@@ -76,7 +76,12 @@ static int pwm_lpss_wait_for_update(struct pwm_device *pwm)
static inline int pwm_lpss_is_updating(struct pwm_device *pwm) static inline int pwm_lpss_is_updating(struct pwm_device *pwm)
{ {
return (pwm_lpss_read(pwm) & PWM_SW_UPDATE) ? -EBUSY : 0; if (pwm_lpss_read(pwm) & PWM_SW_UPDATE) {
dev_err(pwm->chip->dev, "PWM_SW_UPDATE is still set, skipping update\n");
return -EBUSY;
}
return 0;
} }
static void pwm_lpss_prepare(struct pwm_lpss_chip *lpwm, struct pwm_device *pwm, static void pwm_lpss_prepare(struct pwm_lpss_chip *lpwm, struct pwm_device *pwm,
......
...@@ -30,12 +30,14 @@ ...@@ -30,12 +30,14 @@
#define PWM45DWIDTH_FIXUP 0x30 #define PWM45DWIDTH_FIXUP 0x30
#define PWMTHRES 0x30 #define PWMTHRES 0x30
#define PWM45THRES_FIXUP 0x34 #define PWM45THRES_FIXUP 0x34
#define PWM_CK_26M_SEL 0x210
#define PWM_CLK_DIV_MAX 7 #define PWM_CLK_DIV_MAX 7
struct pwm_mediatek_of_data { struct pwm_mediatek_of_data {
unsigned int num_pwms; unsigned int num_pwms;
bool pwm45_fixup; bool pwm45_fixup;
bool has_ck_26m_sel;
}; };
/** /**
...@@ -132,6 +134,10 @@ static int pwm_mediatek_config(struct pwm_chip *chip, struct pwm_device *pwm, ...@@ -132,6 +134,10 @@ static int pwm_mediatek_config(struct pwm_chip *chip, struct pwm_device *pwm,
if (ret < 0) if (ret < 0)
return ret; return ret;
/* Make sure we use the bus clock and not the 26MHz clock */
if (pc->soc->has_ck_26m_sel)
writel(0, pc->regs + PWM_CK_26M_SEL);
/* Using resolution in picosecond gets accuracy higher */ /* Using resolution in picosecond gets accuracy higher */
resolution = (u64)NSEC_PER_SEC * 1000; resolution = (u64)NSEC_PER_SEC * 1000;
do_div(resolution, clk_get_rate(pc->clk_pwms[pwm->hwpwm])); do_div(resolution, clk_get_rate(pc->clk_pwms[pwm->hwpwm]));
...@@ -208,7 +214,6 @@ static const struct pwm_ops pwm_mediatek_ops = { ...@@ -208,7 +214,6 @@ static const struct pwm_ops pwm_mediatek_ops = {
static int pwm_mediatek_probe(struct platform_device *pdev) static int pwm_mediatek_probe(struct platform_device *pdev)
{ {
struct pwm_mediatek_chip *pc; struct pwm_mediatek_chip *pc;
struct resource *res;
unsigned int i; unsigned int i;
int ret; int ret;
...@@ -218,8 +223,7 @@ static int pwm_mediatek_probe(struct platform_device *pdev) ...@@ -218,8 +223,7 @@ static int pwm_mediatek_probe(struct platform_device *pdev)
pc->soc = of_device_get_match_data(&pdev->dev); pc->soc = of_device_get_match_data(&pdev->dev);
res = platform_get_resource(pdev, IORESOURCE_MEM, 0); pc->regs = devm_platform_ioremap_resource(pdev, 0);
pc->regs = devm_ioremap_resource(&pdev->dev, res);
if (IS_ERR(pc->regs)) if (IS_ERR(pc->regs))
return PTR_ERR(pc->regs); return PTR_ERR(pc->regs);
...@@ -281,31 +285,43 @@ static int pwm_mediatek_remove(struct platform_device *pdev) ...@@ -281,31 +285,43 @@ static int pwm_mediatek_remove(struct platform_device *pdev)
static const struct pwm_mediatek_of_data mt2712_pwm_data = { static const struct pwm_mediatek_of_data mt2712_pwm_data = {
.num_pwms = 8, .num_pwms = 8,
.pwm45_fixup = false, .pwm45_fixup = false,
.has_ck_26m_sel = false,
}; };
static const struct pwm_mediatek_of_data mt7622_pwm_data = { static const struct pwm_mediatek_of_data mt7622_pwm_data = {
.num_pwms = 6, .num_pwms = 6,
.pwm45_fixup = false, .pwm45_fixup = false,
.has_ck_26m_sel = false,
}; };
static const struct pwm_mediatek_of_data mt7623_pwm_data = { static const struct pwm_mediatek_of_data mt7623_pwm_data = {
.num_pwms = 5, .num_pwms = 5,
.pwm45_fixup = true, .pwm45_fixup = true,
.has_ck_26m_sel = false,
}; };
static const struct pwm_mediatek_of_data mt7628_pwm_data = { static const struct pwm_mediatek_of_data mt7628_pwm_data = {
.num_pwms = 4, .num_pwms = 4,
.pwm45_fixup = true, .pwm45_fixup = true,
.has_ck_26m_sel = false,
}; };
static const struct pwm_mediatek_of_data mt7629_pwm_data = { static const struct pwm_mediatek_of_data mt7629_pwm_data = {
.num_pwms = 1, .num_pwms = 1,
.pwm45_fixup = false, .pwm45_fixup = false,
.has_ck_26m_sel = false,
};
static const struct pwm_mediatek_of_data mt8183_pwm_data = {
.num_pwms = 4,
.pwm45_fixup = false,
.has_ck_26m_sel = true,
}; };
static const struct pwm_mediatek_of_data mt8516_pwm_data = { static const struct pwm_mediatek_of_data mt8516_pwm_data = {
.num_pwms = 5, .num_pwms = 5,
.pwm45_fixup = false, .pwm45_fixup = false,
.has_ck_26m_sel = true,
}; };
static const struct of_device_id pwm_mediatek_of_match[] = { static const struct of_device_id pwm_mediatek_of_match[] = {
...@@ -314,6 +330,7 @@ static const struct of_device_id pwm_mediatek_of_match[] = { ...@@ -314,6 +330,7 @@ static const struct of_device_id pwm_mediatek_of_match[] = {
{ .compatible = "mediatek,mt7623-pwm", .data = &mt7623_pwm_data }, { .compatible = "mediatek,mt7623-pwm", .data = &mt7623_pwm_data },
{ .compatible = "mediatek,mt7628-pwm", .data = &mt7628_pwm_data }, { .compatible = "mediatek,mt7628-pwm", .data = &mt7628_pwm_data },
{ .compatible = "mediatek,mt7629-pwm", .data = &mt7629_pwm_data }, { .compatible = "mediatek,mt7629-pwm", .data = &mt7629_pwm_data },
{ .compatible = "mediatek,mt8183-pwm", .data = &mt8183_pwm_data },
{ .compatible = "mediatek,mt8516-pwm", .data = &mt8516_pwm_data }, { .compatible = "mediatek,mt8516-pwm", .data = &mt8516_pwm_data },
{ }, { },
}; };
......
...@@ -537,15 +537,13 @@ static int meson_pwm_init_channels(struct meson_pwm *meson) ...@@ -537,15 +537,13 @@ static int meson_pwm_init_channels(struct meson_pwm *meson)
static int meson_pwm_probe(struct platform_device *pdev) static int meson_pwm_probe(struct platform_device *pdev)
{ {
struct meson_pwm *meson; struct meson_pwm *meson;
struct resource *regs;
int err; int err;
meson = devm_kzalloc(&pdev->dev, sizeof(*meson), GFP_KERNEL); meson = devm_kzalloc(&pdev->dev, sizeof(*meson), GFP_KERNEL);
if (!meson) if (!meson)
return -ENOMEM; return -ENOMEM;
regs = platform_get_resource(pdev, IORESOURCE_MEM, 0); meson->base = devm_platform_ioremap_resource(pdev, 0);
meson->base = devm_ioremap_resource(&pdev->dev, regs);
if (IS_ERR(meson->base)) if (IS_ERR(meson->base))
return PTR_ERR(meson->base); return PTR_ERR(meson->base);
......
...@@ -172,7 +172,6 @@ static const struct pwm_ops mtk_disp_pwm_ops = { ...@@ -172,7 +172,6 @@ static const struct pwm_ops mtk_disp_pwm_ops = {
static int mtk_disp_pwm_probe(struct platform_device *pdev) static int mtk_disp_pwm_probe(struct platform_device *pdev)
{ {
struct mtk_disp_pwm *mdp; struct mtk_disp_pwm *mdp;
struct resource *r;
int ret; int ret;
mdp = devm_kzalloc(&pdev->dev, sizeof(*mdp), GFP_KERNEL); mdp = devm_kzalloc(&pdev->dev, sizeof(*mdp), GFP_KERNEL);
...@@ -181,8 +180,7 @@ static int mtk_disp_pwm_probe(struct platform_device *pdev) ...@@ -181,8 +180,7 @@ static int mtk_disp_pwm_probe(struct platform_device *pdev)
mdp->data = of_device_get_match_data(&pdev->dev); mdp->data = of_device_get_match_data(&pdev->dev);
r = platform_get_resource(pdev, IORESOURCE_MEM, 0); mdp->base = devm_platform_ioremap_resource(pdev, 0);
mdp->base = devm_ioremap_resource(&pdev->dev, r);
if (IS_ERR(mdp->base)) if (IS_ERR(mdp->base))
return PTR_ERR(mdp->base); return PTR_ERR(mdp->base);
......
...@@ -166,7 +166,6 @@ static int pwm_probe(struct platform_device *pdev) ...@@ -166,7 +166,6 @@ static int pwm_probe(struct platform_device *pdev)
{ {
const struct platform_device_id *id = platform_get_device_id(pdev); const struct platform_device_id *id = platform_get_device_id(pdev);
struct pxa_pwm_chip *pwm; struct pxa_pwm_chip *pwm;
struct resource *r;
int ret = 0; int ret = 0;
if (IS_ENABLED(CONFIG_OF) && id == NULL) if (IS_ENABLED(CONFIG_OF) && id == NULL)
...@@ -193,8 +192,7 @@ static int pwm_probe(struct platform_device *pdev) ...@@ -193,8 +192,7 @@ static int pwm_probe(struct platform_device *pdev)
pwm->chip.of_pwm_n_cells = 1; pwm->chip.of_pwm_n_cells = 1;
} }
r = platform_get_resource(pdev, IORESOURCE_MEM, 0); pwm->mmio_base = devm_platform_ioremap_resource(pdev, 0);
pwm->mmio_base = devm_ioremap_resource(&pdev->dev, r);
if (IS_ERR(pwm->mmio_base)) if (IS_ERR(pwm->mmio_base))
return PTR_ERR(pwm->mmio_base); return PTR_ERR(pwm->mmio_base);
......
...@@ -168,7 +168,7 @@ static int rcar_pwm_apply(struct pwm_chip *chip, struct pwm_device *pwm, ...@@ -168,7 +168,7 @@ static int rcar_pwm_apply(struct pwm_chip *chip, struct pwm_device *pwm,
/* This HW/driver only supports normal polarity */ /* This HW/driver only supports normal polarity */
if (state->polarity != PWM_POLARITY_NORMAL) if (state->polarity != PWM_POLARITY_NORMAL)
return -ENOTSUPP; return -EINVAL;
if (!state->enabled) { if (!state->enabled) {
rcar_pwm_disable(rp); rcar_pwm_disable(rp);
...@@ -204,15 +204,13 @@ static const struct pwm_ops rcar_pwm_ops = { ...@@ -204,15 +204,13 @@ static const struct pwm_ops rcar_pwm_ops = {
static int rcar_pwm_probe(struct platform_device *pdev) static int rcar_pwm_probe(struct platform_device *pdev)
{ {
struct rcar_pwm_chip *rcar_pwm; struct rcar_pwm_chip *rcar_pwm;
struct resource *res;
int ret; int ret;
rcar_pwm = devm_kzalloc(&pdev->dev, sizeof(*rcar_pwm), GFP_KERNEL); rcar_pwm = devm_kzalloc(&pdev->dev, sizeof(*rcar_pwm), GFP_KERNEL);
if (rcar_pwm == NULL) if (rcar_pwm == NULL)
return -ENOMEM; return -ENOMEM;
res = platform_get_resource(pdev, IORESOURCE_MEM, 0); rcar_pwm->base = devm_platform_ioremap_resource(pdev, 0);
rcar_pwm->base = devm_ioremap_resource(&pdev->dev, res);
if (IS_ERR(rcar_pwm->base)) if (IS_ERR(rcar_pwm->base))
return PTR_ERR(rcar_pwm->base); return PTR_ERR(rcar_pwm->base);
......
...@@ -383,7 +383,6 @@ static const struct pwm_ops tpu_pwm_ops = { ...@@ -383,7 +383,6 @@ static const struct pwm_ops tpu_pwm_ops = {
static int tpu_probe(struct platform_device *pdev) static int tpu_probe(struct platform_device *pdev)
{ {
struct tpu_device *tpu; struct tpu_device *tpu;
struct resource *res;
int ret; int ret;
tpu = devm_kzalloc(&pdev->dev, sizeof(*tpu), GFP_KERNEL); tpu = devm_kzalloc(&pdev->dev, sizeof(*tpu), GFP_KERNEL);
...@@ -394,8 +393,7 @@ static int tpu_probe(struct platform_device *pdev) ...@@ -394,8 +393,7 @@ static int tpu_probe(struct platform_device *pdev)
tpu->pdev = pdev; tpu->pdev = pdev;
/* Map memory, get clock and pin control. */ /* Map memory, get clock and pin control. */
res = platform_get_resource(pdev, IORESOURCE_MEM, 0); tpu->base = devm_platform_ioremap_resource(pdev, 0);
tpu->base = devm_ioremap_resource(&pdev->dev, res);
if (IS_ERR(tpu->base)) if (IS_ERR(tpu->base))
return PTR_ERR(tpu->base); return PTR_ERR(tpu->base);
......
...@@ -287,7 +287,6 @@ static int rockchip_pwm_probe(struct platform_device *pdev) ...@@ -287,7 +287,6 @@ static int rockchip_pwm_probe(struct platform_device *pdev)
{ {
const struct of_device_id *id; const struct of_device_id *id;
struct rockchip_pwm_chip *pc; struct rockchip_pwm_chip *pc;
struct resource *r;
u32 enable_conf, ctrl; u32 enable_conf, ctrl;
int ret, count; int ret, count;
...@@ -299,8 +298,7 @@ static int rockchip_pwm_probe(struct platform_device *pdev) ...@@ -299,8 +298,7 @@ static int rockchip_pwm_probe(struct platform_device *pdev)
if (!pc) if (!pc)
return -ENOMEM; return -ENOMEM;
r = platform_get_resource(pdev, IORESOURCE_MEM, 0); pc->base = devm_platform_ioremap_resource(pdev, 0);
pc->base = devm_ioremap_resource(&pdev->dev, r);
if (IS_ERR(pc->base)) if (IS_ERR(pc->base))
return PTR_ERR(pc->base); return PTR_ERR(pc->base);
......
...@@ -510,7 +510,6 @@ static int pwm_samsung_probe(struct platform_device *pdev) ...@@ -510,7 +510,6 @@ static int pwm_samsung_probe(struct platform_device *pdev)
{ {
struct device *dev = &pdev->dev; struct device *dev = &pdev->dev;
struct samsung_pwm_chip *chip; struct samsung_pwm_chip *chip;
struct resource *res;
unsigned int chan; unsigned int chan;
int ret; int ret;
...@@ -541,8 +540,7 @@ static int pwm_samsung_probe(struct platform_device *pdev) ...@@ -541,8 +540,7 @@ static int pwm_samsung_probe(struct platform_device *pdev)
sizeof(chip->variant)); sizeof(chip->variant));
} }
res = platform_get_resource(pdev, IORESOURCE_MEM, 0); chip->base = devm_platform_ioremap_resource(pdev, 0);
chip->base = devm_ioremap_resource(&pdev->dev, res);
if (IS_ERR(chip->base)) if (IS_ERR(chip->base))
return PTR_ERR(chip->base); return PTR_ERR(chip->base);
......
...@@ -232,7 +232,6 @@ static int pwm_sifive_probe(struct platform_device *pdev) ...@@ -232,7 +232,6 @@ static int pwm_sifive_probe(struct platform_device *pdev)
struct device *dev = &pdev->dev; struct device *dev = &pdev->dev;
struct pwm_sifive_ddata *ddata; struct pwm_sifive_ddata *ddata;
struct pwm_chip *chip; struct pwm_chip *chip;
struct resource *res;
int ret; int ret;
ddata = devm_kzalloc(dev, sizeof(*ddata), GFP_KERNEL); ddata = devm_kzalloc(dev, sizeof(*ddata), GFP_KERNEL);
...@@ -248,8 +247,7 @@ static int pwm_sifive_probe(struct platform_device *pdev) ...@@ -248,8 +247,7 @@ static int pwm_sifive_probe(struct platform_device *pdev)
chip->base = -1; chip->base = -1;
chip->npwm = 4; chip->npwm = 4;
res = platform_get_resource(pdev, IORESOURCE_MEM, 0); ddata->regs = devm_platform_ioremap_resource(pdev, 0);
ddata->regs = devm_ioremap_resource(dev, res);
if (IS_ERR(ddata->regs)) if (IS_ERR(ddata->regs))
return PTR_ERR(ddata->regs); return PTR_ERR(ddata->regs);
......
...@@ -232,6 +232,8 @@ static int sl28cpld_pwm_probe(struct platform_device *pdev) ...@@ -232,6 +232,8 @@ static int sl28cpld_pwm_probe(struct platform_device *pdev)
chip->base = -1; chip->base = -1;
chip->npwm = 1; chip->npwm = 1;
platform_set_drvdata(pdev, priv);
ret = pwmchip_add(&priv->pwm_chip); ret = pwmchip_add(&priv->pwm_chip);
if (ret) { if (ret) {
dev_err(&pdev->dev, "failed to add PWM chip (%pe)", dev_err(&pdev->dev, "failed to add PWM chip (%pe)",
...@@ -239,8 +241,6 @@ static int sl28cpld_pwm_probe(struct platform_device *pdev) ...@@ -239,8 +241,6 @@ static int sl28cpld_pwm_probe(struct platform_device *pdev)
return ret; return ret;
} }
platform_set_drvdata(pdev, priv);
return 0; return 0;
} }
......
...@@ -174,7 +174,6 @@ static int spear_pwm_probe(struct platform_device *pdev) ...@@ -174,7 +174,6 @@ static int spear_pwm_probe(struct platform_device *pdev)
{ {
struct device_node *np = pdev->dev.of_node; struct device_node *np = pdev->dev.of_node;
struct spear_pwm_chip *pc; struct spear_pwm_chip *pc;
struct resource *r;
int ret; int ret;
u32 val; u32 val;
...@@ -182,8 +181,7 @@ static int spear_pwm_probe(struct platform_device *pdev) ...@@ -182,8 +181,7 @@ static int spear_pwm_probe(struct platform_device *pdev)
if (!pc) if (!pc)
return -ENOMEM; return -ENOMEM;
r = platform_get_resource(pdev, IORESOURCE_MEM, 0); pc->mmio_base = devm_platform_ioremap_resource(pdev, 0);
pc->mmio_base = devm_ioremap_resource(&pdev->dev, r);
if (IS_ERR(pc->mmio_base)) if (IS_ERR(pc->mmio_base))
return PTR_ERR(pc->mmio_base); return PTR_ERR(pc->mmio_base);
......
...@@ -505,7 +505,6 @@ static int sti_pwm_probe_dt(struct sti_pwm_chip *pc) ...@@ -505,7 +505,6 @@ static int sti_pwm_probe_dt(struct sti_pwm_chip *pc)
if (IS_ERR(pc->prescale_high)) if (IS_ERR(pc->prescale_high))
return PTR_ERR(pc->prescale_high); return PTR_ERR(pc->prescale_high);
pc->pwm_out_en = devm_regmap_field_alloc(dev, pc->regmap, pc->pwm_out_en = devm_regmap_field_alloc(dev, pc->regmap,
reg_fields[PWM_OUT_EN]); reg_fields[PWM_OUT_EN]);
if (IS_ERR(pc->pwm_out_en)) if (IS_ERR(pc->pwm_out_en))
...@@ -540,7 +539,6 @@ static int sti_pwm_probe(struct platform_device *pdev) ...@@ -540,7 +539,6 @@ static int sti_pwm_probe(struct platform_device *pdev)
struct device *dev = &pdev->dev; struct device *dev = &pdev->dev;
struct sti_pwm_compat_data *cdata; struct sti_pwm_compat_data *cdata;
struct sti_pwm_chip *pc; struct sti_pwm_chip *pc;
struct resource *res;
unsigned int i; unsigned int i;
int irq, ret; int irq, ret;
...@@ -552,9 +550,7 @@ static int sti_pwm_probe(struct platform_device *pdev) ...@@ -552,9 +550,7 @@ static int sti_pwm_probe(struct platform_device *pdev)
if (!cdata) if (!cdata)
return -ENOMEM; return -ENOMEM;
res = platform_get_resource(pdev, IORESOURCE_MEM, 0); pc->mmio = devm_platform_ioremap_resource(pdev, 0);
pc->mmio = devm_ioremap_resource(dev, res);
if (IS_ERR(pc->mmio)) if (IS_ERR(pc->mmio))
return PTR_ERR(pc->mmio); return PTR_ERR(pc->mmio);
...@@ -593,9 +589,7 @@ static int sti_pwm_probe(struct platform_device *pdev) ...@@ -593,9 +589,7 @@ static int sti_pwm_probe(struct platform_device *pdev)
if (ret) if (ret)
return ret; return ret;
if (!cdata->pwm_num_devs) if (cdata->pwm_num_devs) {
goto skip_pwm;
pc->pwm_clk = of_clk_get_by_name(dev->of_node, "pwm"); pc->pwm_clk = of_clk_get_by_name(dev->of_node, "pwm");
if (IS_ERR(pc->pwm_clk)) { if (IS_ERR(pc->pwm_clk)) {
dev_err(dev, "failed to get PWM clock\n"); dev_err(dev, "failed to get PWM clock\n");
...@@ -607,11 +601,9 @@ static int sti_pwm_probe(struct platform_device *pdev) ...@@ -607,11 +601,9 @@ static int sti_pwm_probe(struct platform_device *pdev)
dev_err(dev, "failed to prepare clock\n"); dev_err(dev, "failed to prepare clock\n");
return ret; return ret;
} }
}
skip_pwm: if (cdata->cpt_num_devs) {
if (!cdata->cpt_num_devs)
goto skip_cpt;
pc->cpt_clk = of_clk_get_by_name(dev->of_node, "capture"); pc->cpt_clk = of_clk_get_by_name(dev->of_node, "capture");
if (IS_ERR(pc->cpt_clk)) { if (IS_ERR(pc->cpt_clk)) {
dev_err(dev, "failed to get PWM capture clock\n"); dev_err(dev, "failed to get PWM capture clock\n");
...@@ -623,8 +615,8 @@ static int sti_pwm_probe(struct platform_device *pdev) ...@@ -623,8 +615,8 @@ static int sti_pwm_probe(struct platform_device *pdev)
dev_err(dev, "failed to prepare clock\n"); dev_err(dev, "failed to prepare clock\n");
return ret; return ret;
} }
}
skip_cpt:
pc->chip.dev = dev; pc->chip.dev = dev;
pc->chip.ops = &sti_pwm_ops; pc->chip.ops = &sti_pwm_ops;
pc->chip.base = -1; pc->chip.base = -1;
......
...@@ -294,12 +294,8 @@ static int sun4i_pwm_apply(struct pwm_chip *chip, struct pwm_device *pwm, ...@@ -294,12 +294,8 @@ static int sun4i_pwm_apply(struct pwm_chip *chip, struct pwm_device *pwm,
ctrl |= BIT_CH(PWM_CLK_GATING, pwm->hwpwm); ctrl |= BIT_CH(PWM_CLK_GATING, pwm->hwpwm);
if (state->enabled) { if (state->enabled)
ctrl |= BIT_CH(PWM_EN, pwm->hwpwm); ctrl |= BIT_CH(PWM_EN, pwm->hwpwm);
} else {
ctrl &= ~BIT_CH(PWM_EN, pwm->hwpwm);
ctrl &= ~BIT_CH(PWM_CLK_GATING, pwm->hwpwm);
}
sun4i_pwm_writel(sun4i_pwm, ctrl, PWM_CTRL_REG); sun4i_pwm_writel(sun4i_pwm, ctrl, PWM_CTRL_REG);
...@@ -395,7 +391,6 @@ MODULE_DEVICE_TABLE(of, sun4i_pwm_dt_ids); ...@@ -395,7 +391,6 @@ MODULE_DEVICE_TABLE(of, sun4i_pwm_dt_ids);
static int sun4i_pwm_probe(struct platform_device *pdev) static int sun4i_pwm_probe(struct platform_device *pdev)
{ {
struct sun4i_pwm_chip *pwm; struct sun4i_pwm_chip *pwm;
struct resource *res;
int ret; int ret;
pwm = devm_kzalloc(&pdev->dev, sizeof(*pwm), GFP_KERNEL); pwm = devm_kzalloc(&pdev->dev, sizeof(*pwm), GFP_KERNEL);
...@@ -406,8 +401,7 @@ static int sun4i_pwm_probe(struct platform_device *pdev) ...@@ -406,8 +401,7 @@ static int sun4i_pwm_probe(struct platform_device *pdev)
if (!pwm->data) if (!pwm->data)
return -ENODEV; return -ENODEV;
res = platform_get_resource(pdev, IORESOURCE_MEM, 0); pwm->base = devm_platform_ioremap_resource(pdev, 0);
pwm->base = devm_ioremap_resource(&pdev->dev, res);
if (IS_ERR(pwm->base)) if (IS_ERR(pwm->base))
return PTR_ERR(pwm->base); return PTR_ERR(pwm->base);
......
...@@ -237,7 +237,6 @@ static const struct pwm_ops tegra_pwm_ops = { ...@@ -237,7 +237,6 @@ static const struct pwm_ops tegra_pwm_ops = {
static int tegra_pwm_probe(struct platform_device *pdev) static int tegra_pwm_probe(struct platform_device *pdev)
{ {
struct tegra_pwm_chip *pwm; struct tegra_pwm_chip *pwm;
struct resource *r;
int ret; int ret;
pwm = devm_kzalloc(&pdev->dev, sizeof(*pwm), GFP_KERNEL); pwm = devm_kzalloc(&pdev->dev, sizeof(*pwm), GFP_KERNEL);
...@@ -247,8 +246,7 @@ static int tegra_pwm_probe(struct platform_device *pdev) ...@@ -247,8 +246,7 @@ static int tegra_pwm_probe(struct platform_device *pdev)
pwm->soc = of_device_get_match_data(&pdev->dev); pwm->soc = of_device_get_match_data(&pdev->dev);
pwm->dev = &pdev->dev; pwm->dev = &pdev->dev;
r = platform_get_resource(pdev, IORESOURCE_MEM, 0); pwm->regs = devm_platform_ioremap_resource(pdev, 0);
pwm->regs = devm_ioremap_resource(&pdev->dev, r);
if (IS_ERR(pwm->regs)) if (IS_ERR(pwm->regs))
return PTR_ERR(pwm->regs); return PTR_ERR(pwm->regs);
......
...@@ -196,7 +196,6 @@ static int ecap_pwm_probe(struct platform_device *pdev) ...@@ -196,7 +196,6 @@ static int ecap_pwm_probe(struct platform_device *pdev)
{ {
struct device_node *np = pdev->dev.of_node; struct device_node *np = pdev->dev.of_node;
struct ecap_pwm_chip *pc; struct ecap_pwm_chip *pc;
struct resource *r;
struct clk *clk; struct clk *clk;
int ret; int ret;
...@@ -230,8 +229,7 @@ static int ecap_pwm_probe(struct platform_device *pdev) ...@@ -230,8 +229,7 @@ static int ecap_pwm_probe(struct platform_device *pdev)
pc->chip.base = -1; pc->chip.base = -1;
pc->chip.npwm = 1; pc->chip.npwm = 1;
r = platform_get_resource(pdev, IORESOURCE_MEM, 0); pc->mmio_base = devm_platform_ioremap_resource(pdev, 0);
pc->mmio_base = devm_ioremap_resource(&pdev->dev, r);
if (IS_ERR(pc->mmio_base)) if (IS_ERR(pc->mmio_base))
return PTR_ERR(pc->mmio_base); return PTR_ERR(pc->mmio_base);
......
...@@ -421,7 +421,6 @@ static int ehrpwm_pwm_probe(struct platform_device *pdev) ...@@ -421,7 +421,6 @@ static int ehrpwm_pwm_probe(struct platform_device *pdev)
{ {
struct device_node *np = pdev->dev.of_node; struct device_node *np = pdev->dev.of_node;
struct ehrpwm_pwm_chip *pc; struct ehrpwm_pwm_chip *pc;
struct resource *r;
struct clk *clk; struct clk *clk;
int ret; int ret;
...@@ -437,10 +436,8 @@ static int ehrpwm_pwm_probe(struct platform_device *pdev) ...@@ -437,10 +436,8 @@ static int ehrpwm_pwm_probe(struct platform_device *pdev)
} }
} }
if (IS_ERR(clk)) { if (IS_ERR(clk))
dev_err(&pdev->dev, "failed to get clock\n"); return dev_err_probe(&pdev->dev, PTR_ERR(clk), "Failed to get fck\n");
return PTR_ERR(clk);
}
pc->clk_rate = clk_get_rate(clk); pc->clk_rate = clk_get_rate(clk);
if (!pc->clk_rate) { if (!pc->clk_rate) {
...@@ -455,17 +452,14 @@ static int ehrpwm_pwm_probe(struct platform_device *pdev) ...@@ -455,17 +452,14 @@ static int ehrpwm_pwm_probe(struct platform_device *pdev)
pc->chip.base = -1; pc->chip.base = -1;
pc->chip.npwm = NUM_PWM_CHANNEL; pc->chip.npwm = NUM_PWM_CHANNEL;
r = platform_get_resource(pdev, IORESOURCE_MEM, 0); pc->mmio_base = devm_platform_ioremap_resource(pdev, 0);
pc->mmio_base = devm_ioremap_resource(&pdev->dev, r);
if (IS_ERR(pc->mmio_base)) if (IS_ERR(pc->mmio_base))
return PTR_ERR(pc->mmio_base); return PTR_ERR(pc->mmio_base);
/* Acquire tbclk for Time Base EHRPWM submodule */ /* Acquire tbclk for Time Base EHRPWM submodule */
pc->tbclk = devm_clk_get(&pdev->dev, "tbclk"); pc->tbclk = devm_clk_get(&pdev->dev, "tbclk");
if (IS_ERR(pc->tbclk)) { if (IS_ERR(pc->tbclk))
dev_err(&pdev->dev, "Failed to get tbclk\n"); return dev_err_probe(&pdev->dev, PTR_ERR(pc->tbclk), "Failed to get tbclk\n");
return PTR_ERR(pc->tbclk);
}
ret = clk_prepare(pc->tbclk); ret = clk_prepare(pc->tbclk);
if (ret < 0) { if (ret < 0) {
......
...@@ -193,7 +193,6 @@ MODULE_DEVICE_TABLE(of, vt8500_pwm_dt_ids); ...@@ -193,7 +193,6 @@ MODULE_DEVICE_TABLE(of, vt8500_pwm_dt_ids);
static int vt8500_pwm_probe(struct platform_device *pdev) static int vt8500_pwm_probe(struct platform_device *pdev)
{ {
struct vt8500_chip *chip; struct vt8500_chip *chip;
struct resource *r;
struct device_node *np = pdev->dev.of_node; struct device_node *np = pdev->dev.of_node;
int ret; int ret;
...@@ -219,8 +218,7 @@ static int vt8500_pwm_probe(struct platform_device *pdev) ...@@ -219,8 +218,7 @@ static int vt8500_pwm_probe(struct platform_device *pdev)
return PTR_ERR(chip->clk); return PTR_ERR(chip->clk);
} }
r = platform_get_resource(pdev, IORESOURCE_MEM, 0); chip->base = devm_platform_ioremap_resource(pdev, 0);
chip->base = devm_ioremap_resource(&pdev->dev, r);
if (IS_ERR(chip->base)) if (IS_ERR(chip->base))
return PTR_ERR(chip->base); return PTR_ERR(chip->base);
......
...@@ -196,7 +196,6 @@ static const struct pwm_ops zx_pwm_ops = { ...@@ -196,7 +196,6 @@ static const struct pwm_ops zx_pwm_ops = {
static int zx_pwm_probe(struct platform_device *pdev) static int zx_pwm_probe(struct platform_device *pdev)
{ {
struct zx_pwm_chip *zpc; struct zx_pwm_chip *zpc;
struct resource *res;
unsigned int i; unsigned int i;
int ret; int ret;
...@@ -204,8 +203,7 @@ static int zx_pwm_probe(struct platform_device *pdev) ...@@ -204,8 +203,7 @@ static int zx_pwm_probe(struct platform_device *pdev)
if (!zpc) if (!zpc)
return -ENOMEM; return -ENOMEM;
res = platform_get_resource(pdev, IORESOURCE_MEM, 0); zpc->base = devm_platform_ioremap_resource(pdev, 0);
zpc->base = devm_ioremap_resource(&pdev->dev, res);
if (IS_ERR(zpc->base)) if (IS_ERR(zpc->base))
return PTR_ERR(zpc->base); return PTR_ERR(zpc->base);
...@@ -238,6 +236,7 @@ static int zx_pwm_probe(struct platform_device *pdev) ...@@ -238,6 +236,7 @@ static int zx_pwm_probe(struct platform_device *pdev)
ret = pwmchip_add(&zpc->chip); ret = pwmchip_add(&zpc->chip);
if (ret < 0) { if (ret < 0) {
dev_err(&pdev->dev, "failed to add PWM chip: %d\n", ret); dev_err(&pdev->dev, "failed to add PWM chip: %d\n", ret);
clk_disable_unprepare(zpc->pclk);
return ret; return ret;
} }
......
...@@ -473,11 +473,6 @@ static inline int pwmchip_add(struct pwm_chip *chip) ...@@ -473,11 +473,6 @@ static inline int pwmchip_add(struct pwm_chip *chip)
return -EINVAL; return -EINVAL;
} }
static inline int pwmchip_add_inversed(struct pwm_chip *chip)
{
return -EINVAL;
}
static inline int pwmchip_remove(struct pwm_chip *chip) static inline int pwmchip_remove(struct pwm_chip *chip)
{ {
return -EINVAL; return -EINVAL;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment