This shows you the differences between two versions of the page.
Both sides previous revision Previous revision Next revision | Previous revision | ||
products:sbc:common:applications:gpio:pwm [2022/07/04 05:00] hyphop [VIM1/3/3L/4] |
products:sbc:common:applications:gpio:pwm [2024/08/22 02:40] (current) nick |
||
---|---|---|---|
Line 3: | Line 3: | ||
===== Introduction ===== | ===== Introduction ===== | ||
- | This document mainly describes | + | This page introduces the usage of hardware PWM, and leads you to control the hardware PWM on the [[products: |
+ | |||
+ | ===== PWM Reference Table ===== | ||
+ | |||
+ | | | ||
+ | ^ VIM1 | ||
+ | ^ VIM2 | ||
+ | ^ VIM3 | ||
+ | ^ VIM3L | '' | ||
+ | ^ VIM4 | ||
+ | ^ VIM1S | '' | ||
===== Enable PWM ===== | ===== Enable PWM ===== | ||
- | <tabbox VIM1/3/3L/4> | + | ==== Linux ==== |
- | %%PWM_F:%% | + | |
- | ```sh | + | |
- | $ echo 1 | sudo tee > /sys/class/pwm/ | + | In order to use the PWM, you need to enable the PWM function via [[products: |
- | $ echo 1000000 | sudo tee > / | + | |
- | $ echo 500000 | sudo tee > / | + | <tabbox VIM1/2/3/Edge1> |
- | $ echo 1 | sudo tee > / | + | |
+ | Edit '' | ||
+ | |||
+ | Take VIM3 as an example to enable '' | ||
+ | |||
+ | ```shell | ||
+ | overlays=uart3 pwm_f i2c3 i2s os08a10 watchdog | ||
``` | ``` | ||
+ | |||
+ | After reboot, you will see the pwm device node. | ||
+ | |||
+ | ```shell | ||
+ | $ ls / | ||
+ | device | ||
+ | ``` | ||
+ | |||
+ | <tabbox VIM3L> | ||
+ | |||
+ | Edit ''/ | ||
+ | |||
+ | Take VIM3L as an example to enable '' | ||
+ | |||
+ | ```shell | ||
+ | overlays=uart3 pwm_f i2c3 i2s watchdog | ||
+ | ``` | ||
+ | |||
+ | After reboot, you will see the pwm device node. | ||
+ | |||
+ | ```shell | ||
+ | $ ls / | ||
+ | device | ||
+ | ``` | ||
+ | |||
+ | |||
+ | <tabbox VIM3 with 5.15 kernel> | ||
+ | |||
+ | Edit ''/ | ||
+ | |||
+ | |||
+ | You need to add '' | ||
+ | |||
+ | ```shell | ||
+ | fdt_overlays=pwm_f | ||
+ | |||
+ | ``` | ||
+ | |||
+ | After reboot, you will see the pwm device node. | ||
+ | |||
+ | <tabbox VIM3L with 5.15 kernel> | ||
+ | |||
+ | Edit ''/ | ||
+ | |||
+ | |||
+ | You need to add '' | ||
+ | |||
+ | ```shell | ||
+ | fdt_overlays=pwm_f | ||
+ | |||
+ | ``` | ||
+ | |||
+ | After reboot, you will see the pwm device node. | ||
+ | |||
+ | <tabbox VIM4> | ||
+ | |||
+ | Edit ''/ | ||
+ | |||
+ | |||
+ | You need to add '' | ||
+ | |||
+ | ```shell | ||
+ | fdt_overlays=pwm_f | ||
+ | |||
+ | ``` | ||
+ | |||
+ | After reboot, you will see the pwm device node. | ||
+ | |||
+ | ```shell | ||
+ | $ ls / | ||
+ | device | ||
+ | ``` | ||
+ | |||
+ | <tabbox VIM1S> | ||
+ | |||
+ | Edit ''/ | ||
+ | |||
+ | |||
+ | You need to add '' | ||
+ | |||
+ | ```shell | ||
+ | fdt_overlays=pwm_f | ||
+ | |||
+ | ``` | ||
+ | |||
+ | After reboot, you will see the pwm device node. | ||
+ | |||
+ | ```shell | ||
+ | $ ls / | ||
+ | device | ||
+ | ``` | ||
+ | </ | ||
+ | |||
+ | |||
+ | ==== Android ==== | ||
+ | |||
+ | <tabbox VIM4> | ||
+ | |||
+ | The '' | ||
+ | |||
+ | ```diff | ||
+ | diff --git a/ | ||
+ | --- a/ | ||
+ | +++ b/ | ||
+ | & | ||
+ | + pinctrl-names = " | ||
+ | + pinctrl-0 = <& | ||
+ | status = " | ||
+ | }; | ||
+ | |||
+ | diff --git a/ | ||
+ | --- a/ | ||
+ | +++ b/ | ||
+ | & | ||
+ | + pinctrl-names = " | ||
+ | + pinctrl-0 = <& | ||
+ | status = " | ||
+ | }; | ||
+ | |||
+ | diff --git a/ | ||
+ | --- a/ | ||
+ | +++ b/ | ||
+ | @@ -1442,13 +1442,13 @@ | ||
+ | |||
+ | backlight1{ | ||
+ | compatible = " | ||
+ | - | ||
+ | + | ||
+ | index = <1>; | ||
+ | key_valid = <0>; | ||
+ | pinctrl-names = " | ||
+ | " | ||
+ | - | ||
+ | - | ||
+ | pinctrl_version = <2>; /* for uboot */ | ||
+ | interrupts = <0 197 1 | ||
+ | |||
+ | ``` | ||
+ | |||
+ | <tabbox VIM1S> | ||
+ | |||
+ | The '' | ||
+ | |||
+ | ```diff | ||
+ | --- a/ | ||
+ | +++ b/ | ||
+ | @@ -1411,8 +1411,8 @@ | ||
+ | }; | ||
+ | |||
+ | & | ||
+ | - / | ||
+ | - / | ||
+ | + | ||
+ | + | ||
+ | status = " | ||
+ | }; | ||
+ | |||
+ | ``` | ||
+ | </ | ||
+ | |||
+ | ===== Control PWM ===== | ||
+ | |||
+ | **Enable PWM:** | ||
+ | |||
+ | <tabbox VIM1/ | ||
+ | |||
+ | ```shell | ||
+ | echo 1 | sudo tee / | ||
+ | echo 1000000 | sudo tee / | ||
+ | echo 500000 | sudo tee / | ||
+ | echo 1 | sudo tee / | ||
+ | ``` | ||
+ | |||
<tabbox VIM2> | <tabbox VIM2> | ||
- | PWM_D: | + | |
- | ```sh | + | ```shell |
- | $ echo 1 | sudo tee > / | + | echo 1 | sudo tee / |
- | $ echo 1000000 | sudo tee > / | + | echo 1000000 | sudo tee / |
- | $ echo 500000 | sudo tee > / | + | echo 500000 | sudo tee / |
- | $ echo 1 | sudo tee > / | + | echo 1 | sudo tee / |
``` | ``` | ||
+ | |||
+ | <tabbox VIM3L/ | ||
+ | |||
+ | ```shell | ||
+ | echo 1 | sudo tee / | ||
+ | echo 1000000 | sudo tee / | ||
+ | echo 500000 | sudo tee / | ||
+ | echo 1 | sudo tee / | ||
+ | ``` | ||
+ | |||
</ | </ | ||
Line 33: | Line 233: | ||
</ | </ | ||
- | ===== Disable PWM ===== | + | **Disable PWM:** |
- | <tabbox VIM1/3/3L/4> | + | <tabbox VIM1/ |
- | ```sh | + | ```shell |
- | $ echo 0 | sudo tee > / | + | echo 0 | sudo tee / |
``` | ``` | ||
<tabbox VIM2> | <tabbox VIM2> | ||
- | ```sh | + | ```shell |
- | $ echo 0 | sudo tee > / | + | echo 0 | sudo tee / |
``` | ``` | ||
+ | <tabbox VIM3L/ | ||
+ | ```shell | ||
+ | echo 0 | sudo tee / | ||
+ | ``` | ||
+ | |||
</ | </ | ||
+ | |||
+ | ===== Disable PWM to Use GPIO ===== | ||
+ | |||
+ | If you want to use normal GPIO instead of PWM, you can remove the PWM node in [[products: | ||
+ | |||