Pulse-width modulation (PWM) is a technique that modifies the duty cycle of a pulsing signal to encode information or to control the amount of energy provided to a charge.

On the ConnectCore 8X system-on-module there are:

  • On the {cpu-family} system-on-chip:

    • Four PWM channels from the FlexTimer module.

    • One PWM channel from the parallel display interface.

    • Two PWM channels from the MIPI-DSI interface.

  • On the MCA

    • Three PWM controllers (each one with several channels).

The current v5.4 BSP does not support the four PWM channels from the FlexTimer module in the CPU.

This chapter describes the PWM channels from the CPU. See MCA Pulse Width Modulation (PWM) for information about the MCA PWM controllers.

On the ConnectCore 8X SBC Pro:

  • Parallel LCD PWM is available at SPI0_CS1 pad on the expansion connector.

  • MIPI-DSI0 PWM0 is routed to LVDS0 connector for backlight management.

  • MIPI-DSI1 PWM0 is routed to LVDS1 connector for backlight management.

Kernel configuration

You can manage the {cpu-family} PWM driver support through the following kernel configuration option:

  • i.MX27 PWM support (CONFIG_PWM_IMX27)

This option is enabled as built-in on the default ConnectCore 8X kernel configuration file.

Kernel driver

The driver for the {cpu-family} PWM is located at:

File Description

drivers/pwm/pwm-imx27.c

PWM driver

Device tree bindings and customization

The {cpu-family} PWM interface is documented at Documentation/devicetree/bindings/pwm/imx-pwm.txt.

{cpu-family} PWM interfaces

The common {cpu-family} CPU device tree file contains entries for the MIPI-DSI PWM channels and the LCD PWM channel:

{cpu-family} device tree
	adma_pwm: pwm@5a190000 {
		compatible = "fsl,imx8qxp-pwm", "fsl,imx27-pwm";
		reg = <0x5a190000 0x1000>;
		clocks = <&adma_pwm_lpcg 0>, <&adma_pwm_lpcg 1>;
		clock-names = "per", "ipg";
		assigned-clocks = <&clk IMX_SC_R_LCD_0_PWM_0 IMX_SC_PM_CLK_PER>;
		assigned-clock-rates = <24000000>;
		#pwm-cells = <2>;
		power-domains = <&pd IMX_SC_R_LCD_0_PWM_0>;
		status = "disabled";
	};

	...

	pwm_mipi_lvds0: pwm@56224000 {
		compatible = "fsl,imx8qxp-pwm", "fsl,imx27-pwm";
		reg = <0x56224000 0x1000>;
		clocks = <&mipi0_pwm_lpcg 0>,
			 <&mipi0_pwm_lpcg 1>,
			 <&mipi0_pwm_lpcg 2>;
		clock-names = "per", "ipg", "32k";
		assigned-clocks = <&clk IMX_SC_R_MIPI_0_I2C_0 IMX_SC_PM_CLK_PER>;
		assigned-clock-rates = <24000000>;
		#pwm-cells = <2>;
		power-domains = <&pd IMX_SC_R_MIPI_0_PWM_0>;
		status = "disabled";
	};

	...

	pwm_mipi_lvds1: pwm@56244000 {
		compatible = "fsl,imx8qxp-pwm", "fsl,imx27-pwm";
		reg = <0x56244000 0x1000>;
		clocks = <&mipi1_pwm_lpcg 0>,
			 <&mipi1_pwm_lpcg 1>,
			 <&mipi1_pwm_lpcg 2>;
		clock-names = "per", "ipg", "32k";
		assigned-clocks = <&clk IMX_SC_R_MIPI_1_I2C_0 IMX_SC_PM_CLK_PER>;
		assigned-clock-rates = <24000000>;
		#pwm-cells = <2>;
		power-domains = <&pd IMX_SC_R_MIPI_1_PWM_0>;
		status = "disabled";
	};

IOMUX configuration

You must configure the pads that are to be used as {cpu-family} PWMs. See Pin multiplexing (IOMUX).

{cpu-family} pads should only have one IOMUX configuration. Remove other configurations for those pads, like GPIO, when configuring them as PWMs.

The following external pads are configured as PWMs on the default device tree:

  • On the ConnectCore 8X SBC Pro LVDS0 connector:

    Pad Signal PWM

    16

    MIPI_DSI0_PWM0_OUT

    MIPI-DSI0 PWM0

Example: MIPI-DSI0 PWM0 on ConnectCore 8X SBC Pro

For example, MIPI-DSI0 PWM0 is available on pin 16 of the LVDS0 connector of the ConnectCore 8X SBC Pro.

The device tree must:

  • Configure the IOMUX of pad MIPI_DSI0_GPIO0_00 to work as PWM

  • Enable the PWM node

  • Since it’s connected to the display, enable the backlight node as consumer of the PWM

ConnectCore 8X SBC Pro device tree
	lvds_backlight0: lvds_backlight@0 {
		compatible = "pwm-backlight";
		pwms = <&pwm_mipi_lvds0 0 100000 0>;

		brightness-levels = < 0  1  2  3  4  5  6  7  8  9
				     10 11 12 13 14 15 16 17 18 19
				     20 21 22 23 24 25 26 27 28 29
				     30 31 32 33 34 35 36 37 38 39
				     40 41 42 43 44 45 46 47 48 49
				     50 51 52 53 54 55 56 57 58 59
				     60 61 62 63 64 65 66 67 68 69
				     70 71 72 73 74 75 76 77 78 79
				     80 81 82 83 84 85 86 87 88 89
				     90 91 92 93 94 95 96 97 98 99
				    100>;
		default-brightness-level = <80>;
		power-supply = <&reg_5v_display>;
	};

	...

&pwm_mipi_lvds0 {
	status = "okay";
};

...

&iomuxc {

	...

	pinctrl_lvds0: lvds0grp {
		fsl,pins = <
			/* LVDS0 touch interrupt */
			SC_P_QSPI0B_DATA2_LSIO_GPIO3_IO20	0x06000020
			/* LVDS0 PWM backlight */
			SC_P_MIPI_DSI0_GPIO0_00_MIPI_DSI0_PWM0_OUT	0x00000020
		>;
	};

	...
};

Depending on the frequency of the PWM signal and the hardware around it, you must enable the pad settings carefully (the numerical value following the IOMUX definition on the device tree). See Documentation/devicetree/bindings/pinctrl/fsl,imx8qxp-pinctrl.txt for information about the different values. Also see the NXP application note AN5078 Influence of pin setting on system function and performance for additional information.

Using the PWM channels

Control PWM signal from sysfs

If you are not using a backlight driver to manage the PWM signal, you can to control it manually from user space. Each PWM interface is registered in the system as a standalone PWM controller.

On the ConnectCore 8X SBC Pro, the parallel LCD PWM is available at SPI0_CS1 pad on the expansion connector. This PWM channel is disabled by default. To enable it, you must enable the adma_pwm node and change the SPI0 pinctrl to remove the CS1 pad from it.

Patch to enable PWM functionality on SPIO0_CS1 pad
diff --git a/arch/arm64/boot/dts/digi/ccimx8x-sbc-pro.dtsi b/arch/arm64/boot/dts/digi/ccimx8x-sbc-pro.dtsi
index 054725b7a393..0a63d3c43d2a 100644
--- a/arch/arm64/boot/dts/digi/ccimx8x-sbc-pro.dtsi
+++ b/arch/arm64/boot/dts/digi/ccimx8x-sbc-pro.dtsi
@@ -281,6 +281,12 @@
        };
 };

+&adma_pwm {
+       pinctrl-names = "default";
+       pinctrl-0 = <&pinctrl_lcdifpwm>;
+       status = "okay";
+};
+
 &asrc0 {
        fsl,asrc-rate  = <48000>;
 };
@@ -942,7 +948,7 @@
                        IMX8QXP_SPI0_SDO_ADMA_SPI0_SDO  0x0600004c
                        IMX8QXP_SPI0_SDI_ADMA_SPI0_SDI  0x0600004c
                        IMX8QXP_SPI0_CS0_ADMA_SPI0_CS0  0x0600004c
-                       IMX8QXP_SPI0_CS1_ADMA_SPI0_CS1  0x0600004c
+                       //IMX8QXP_SPI0_CS1_ADMA_SPI0_CS1        0x0600004c
                >;
        };

@@ -1168,6 +1174,12 @@
                >;
        };

+       pinctrl_lcdifpwm: lcdifpwmgrp {
+               fsl,pins = <
+                       IMX8QXP_SPI0_CS1_ADMA_LCD_PWM0_OUT      0x00000060
+               >;
+       };
+
        pinctrl_lpi2c3: lpi2c3grp {
                fsl,pins = <
                        IMX8QXP_SPI3_CS1_ADMA_I2C3_SCL  0x06000020

The PWM interfaces appear under /sys/class/pwm:

# ls -l /sys/class/pwm/
lrwxrwxrwx    1 root     root             0 Oct  8 15:14 pwmchip0 -> ../../devices/platform/bus@5a000000/5a800000.i2c/i2c-0/0-0063/mca-pwm/pwm/pwmchip0
lrwxrwxrwx    1 root     root             0 Oct  8 15:14 pwmchip10 -> ../../devices/platform/bus@56220000/56224000.pwm/pwm/pwmchip10
lrwxrwxrwx    1 root     root             0 Oct  8 15:14 pwmchip6 -> ../../devices/platform/bus@5a000000/5a800000.i2c/i2c-0/0-0063/mca-pwm/pwm/pwmchip6
lrwxrwxrwx    1 root     root             0 Oct  8 15:14 pwmchip8 -> ../../devices/platform/bus@5a000000/5a800000.i2c/i2c-0/0-0063/mca-pwm/pwm/pwmchip8

The PWM interfaces begin numbering with an index of 0. The indexes are calculated using the number of channels of the previous interface. On the example above:

  • MCA PWM0 (6 channels) is pwmchip0

  • MCA PWM1 (2 channels) is pwmchip6

  • MCA PWM2 (2 channels) is pwmchip8

  • {cpu-family} MIPI-DSI0 PWM (1 channel) is pwmchip10

Check the number of channels of an interface by printing the value of npwm:

# cat /sys/class/pwm/pwmchip0/npwm
1

To access one channel of a PWM interface, export the channel index. For example, to access channel 0 of MIPI-DSI0 PWM:

# echo 0 > /sys/class/pwm/pwmchip10/export
You won’t be able to request PWM channels that are in use by other drivers, like those used by the backlight.

Now you can access the PWM channel and configure its settings:

# ls /sys/class/pwm/pwmchip10/pwm0/
capture     duty_cycle  enable      period      polarity    power       uevent

Period and duty cycle must be given in nanoseconds. For example, to configure a 100kHz signal with 20% duty cycle:

# echo 10000 > /sys/class/pwm/pwmchip10/pwm0/period
# echo 2000 > /sys/class/pwm/pwmchip10/pwm0/duty_cycle

To enable the PWM signal:

# echo 1 > /sys/class/pwm/pwmchip10/pwm0/enable

The default polarity is normal (active high for the duty cycle). To invert the polarity:

# echo inversed > /sys/class/pwm/pwmchip10/pwm0/polarity

Using Digi APIx library from a C application

An example application called apix-pwm-example is included in the dey-examples-digiapix recipe (part of dey-examples package) of meta-digi layer. This application shows how to generate a PWM signal using Digi APIx library on the ConnectCore 8X platform.

Go to GitHub to see the application instructions and source code.

See PWM API for more information about the PWM APIx.