linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH v2] dt-bindings: leds: Document commonly used LED triggers
@ 2020-12-10  8:24 Manivannan Sadhasivam
  2020-12-13  2:39 ` Leizhen (ThunderTown)
  2020-12-14 22:36 ` Rob Herring
  0 siblings, 2 replies; 6+ messages in thread
From: Manivannan Sadhasivam @ 2020-12-10  8:24 UTC (permalink / raw)
  To: jacek.anaszewski, pavel, dmurphy, robh+dt
  Cc: devicetree, linux-kernel, linux-leds, thunder.leizhen,
	Manivannan Sadhasivam

This commit documents the LED triggers used commonly in the SoCs. Not
all triggers are documented as some of them are very application specific.
Most of the triggers documented here are currently used in devicetrees
of many SoCs.

While at it, let's also sort the triggers in ascending order.

Signed-off-by: Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
---

Changes in v2:

* Added more triggers, fixed the regex
* Sorted triggers in ascending order

 .../devicetree/bindings/leds/common.yaml      | 78 ++++++++++++++-----
 1 file changed, 60 insertions(+), 18 deletions(-)

diff --git a/Documentation/devicetree/bindings/leds/common.yaml b/Documentation/devicetree/bindings/leds/common.yaml
index f1211e7045f1..3c2e2208c1da 100644
--- a/Documentation/devicetree/bindings/leds/common.yaml
+++ b/Documentation/devicetree/bindings/leds/common.yaml
@@ -79,24 +79,66 @@ properties:
       the LED.
     $ref: /schemas/types.yaml#definitions/string
 
-    enum:
-        # LED will act as a back-light, controlled by the framebuffer system
-      - backlight
-        # LED will turn on (but for leds-gpio see "default-state" property in
-        # Documentation/devicetree/bindings/leds/leds-gpio.yaml)
-      - default-on
-        # LED "double" flashes at a load average based rate
-      - heartbeat
-        # LED indicates disk activity
-      - disk-activity
-        # LED indicates IDE disk activity (deprecated), in new implementations
-        # use "disk-activity"
-      - ide-disk
-        # LED flashes at a fixed, configurable rate
-      - timer
-        # LED alters the brightness for the specified duration with one software
-        # timer (requires "led-pattern" property)
-      - pattern
+    oneOf:
+      - items:
+          - enum:
+                # LED indicates mic mute state
+              - audio-micmute
+                # LED indicates audio mute state
+              - audio-mute
+                # LED will act as a back-light, controlled by the framebuffer system
+              - backlight
+                # LED indicates bluetooth power state
+              - bluetooth-power
+                # LED indicates activity of all CPUs
+              - cpu
+                # LED will turn on (but for leds-gpio see "default-state" property in
+                # Documentation/devicetree/bindings/leds/leds-gpio.yaml)
+              - default-on
+                # LED indicates disk activity
+              - disk-activity
+                # LED indicates disk read activity
+              - disk-read
+                # LED indicates disk write activity
+              - disk-write
+                # LED indicates camera flash state
+              - flash
+                # LED "double" flashes at a load average based rate
+              - heartbeat
+                # LED indicates IDE disk activity (deprecated), in new implementations
+                # use "disk-activity"
+              - ide-disk
+                # LED indicates MTD memory activity
+              - mtd
+                # LED indicates NAND memory activity (deprecated),
+                # in new implementations use "mtd"
+              - nand-disk
+                # No trigger assigned to the LED. This is the default mode
+                # if trigger is absent
+              - none
+                # LED alters the brightness for the specified duration with one software
+                # timer (requires "led-pattern" property)
+              - pattern
+                # LED flashes at a fixed, configurable rate
+              - timer
+                # LED indicates camera torch state
+              - torch
+                # LED indicates USB gadget activity
+              - usb-gadget
+                # LED indicates USB host activity
+              - usb-host
+      - items:
+            # LED indicates activity of [N]th CPU
+          - pattern: "^cpu[0-9]{1,2}$"
+      - items:
+            # LED indicates power status of [N]th Bluetooth HCI device
+          - pattern: "^hci[0-9]{1,2}-power$"
+      - items:
+            # LED indicates [N]th MMC storage activity
+          - pattern: "^mmc[0-9]{1,2}$"
+      - items:
+            # LED indicates [N]th WLAN Tx activity
+          - pattern: "^phy[0-9]{1,2}tx$"
 
   led-pattern:
     description: |
-- 
2.25.1


^ permalink raw reply related	[flat|nested] 6+ messages in thread

* Re: [PATCH v2] dt-bindings: leds: Document commonly used LED triggers
  2020-12-10  8:24 [PATCH v2] dt-bindings: leds: Document commonly used LED triggers Manivannan Sadhasivam
@ 2020-12-13  2:39 ` Leizhen (ThunderTown)
  2020-12-13  3:03   ` Leizhen (ThunderTown)
  2020-12-14 22:36 ` Rob Herring
  1 sibling, 1 reply; 6+ messages in thread
From: Leizhen (ThunderTown) @ 2020-12-13  2:39 UTC (permalink / raw)
  To: Manivannan Sadhasivam, jacek.anaszewski, pavel, dmurphy, robh+dt
  Cc: devicetree, linux-kernel, linux-leds



On 2020/12/10 16:24, Manivannan Sadhasivam wrote:
> This commit documents the LED triggers used commonly in the SoCs. Not
> all triggers are documented as some of them are very application specific.
> Most of the triggers documented here are currently used in devicetrees
> of many SoCs.
> 
> While at it, let's also sort the triggers in ascending order.
> 
> Signed-off-by: Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
> ---
> 
> Changes in v2:
> 
> * Added more triggers, fixed the regex
> * Sorted triggers in ascending order
> 
>  .../devicetree/bindings/leds/common.yaml      | 78 ++++++++++++++-----
>  1 file changed, 60 insertions(+), 18 deletions(-)
> 
> diff --git a/Documentation/devicetree/bindings/leds/common.yaml b/Documentation/devicetree/bindings/leds/common.yaml
> index f1211e7045f1..3c2e2208c1da 100644
> --- a/Documentation/devicetree/bindings/leds/common.yaml
> +++ b/Documentation/devicetree/bindings/leds/common.yaml
> @@ -79,24 +79,66 @@ properties:
>        the LED.
>      $ref: /schemas/types.yaml#definitions/string
>  
> -    enum:
> -        # LED will act as a back-light, controlled by the framebuffer system
> -      - backlight
> -        # LED will turn on (but for leds-gpio see "default-state" property in
> -        # Documentation/devicetree/bindings/leds/leds-gpio.yaml)
> -      - default-on
> -        # LED "double" flashes at a load average based rate
> -      - heartbeat
> -        # LED indicates disk activity
> -      - disk-activity
> -        # LED indicates IDE disk activity (deprecated), in new implementations
> -        # use "disk-activity"
> -      - ide-disk
> -        # LED flashes at a fixed, configurable rate
> -      - timer
> -        # LED alters the brightness for the specified duration with one software
> -        # timer (requires "led-pattern" property)
> -      - pattern
> +    oneOf:
> +      - items:
> +          - enum:
> +                # LED indicates mic mute state
> +              - audio-micmute
> +                # LED indicates audio mute state
> +              - audio-mute
> +                # LED will act as a back-light, controlled by the framebuffer system
> +              - backlight
> +                # LED indicates bluetooth power state
> +              - bluetooth-power
> +                # LED indicates activity of all CPUs
> +              - cpu
> +                # LED will turn on (but for leds-gpio see "default-state" property in
> +                # Documentation/devicetree/bindings/leds/leds-gpio.yaml)
> +              - default-on
> +                # LED indicates disk activity
> +              - disk-activity
> +                # LED indicates disk read activity
> +              - disk-read
> +                # LED indicates disk write activity
> +              - disk-write
> +                # LED indicates camera flash state
> +              - flash
> +                # LED "double" flashes at a load average based rate
> +              - heartbeat
> +                # LED indicates IDE disk activity (deprecated), in new implementations
> +                # use "disk-activity"
> +              - ide-disk
> +                # LED indicates MTD memory activity
> +              - mtd
> +                # LED indicates NAND memory activity (deprecated),
> +                # in new implementations use "mtd"
> +              - nand-disk
> +                # No trigger assigned to the LED. This is the default mode
> +                # if trigger is absent
> +              - none
> +                # LED alters the brightness for the specified duration with one software
> +                # timer (requires "led-pattern" property)
> +              - pattern
> +                # LED flashes at a fixed, configurable rate
> +              - timer
> +                # LED indicates camera torch state
> +              - torch
> +                # LED indicates USB gadget activity
> +              - usb-gadget
> +                # LED indicates USB host activity
> +              - usb-host
> +      - items:
> +            # LED indicates activity of [N]th CPU
> +          - pattern: "^cpu[0-9]{1,2}$"
> +      - items:
> +            # LED indicates power status of [N]th Bluetooth HCI device
> +          - pattern: "^hci[0-9]{1,2}-power$"
> +      - items:
> +            # LED indicates [N]th MMC storage activity
> +          - pattern: "^mmc[0-9]{1,2}$"
> +      - items:
> +            # LED indicates [N]th WLAN Tx activity
> +          - pattern: "^phy[0-9]{1,2}tx$"

Only the last three are not listed:
phy0rx
ir-power-click
ir-user-click

And the first one is easily supported by:
-            # LED indicates [N]th WLAN Tx activity
-          - pattern: "^phy[0-9]{1,2}tx$"
+            # LED indicates [N]th WLAN Tx/Rx activity
+          - pattern: "^phy[0-9]{1,2}(tx|rx)$"

Tested-by: Zhen Lei <thunder.leizhen@huawei.com>

>  
>    led-pattern:
>      description: |
> 


^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: [PATCH v2] dt-bindings: leds: Document commonly used LED triggers
  2020-12-13  2:39 ` Leizhen (ThunderTown)
@ 2020-12-13  3:03   ` Leizhen (ThunderTown)
  0 siblings, 0 replies; 6+ messages in thread
From: Leizhen (ThunderTown) @ 2020-12-13  3:03 UTC (permalink / raw)
  To: Manivannan Sadhasivam, jacek.anaszewski, pavel, dmurphy, robh+dt
  Cc: devicetree, linux-kernel, linux-leds



On 2020/12/13 10:39, Leizhen (ThunderTown) wrote:
> 
> 
> On 2020/12/10 16:24, Manivannan Sadhasivam wrote:
>> This commit documents the LED triggers used commonly in the SoCs. Not
>> all triggers are documented as some of them are very application specific.
>> Most of the triggers documented here are currently used in devicetrees
>> of many SoCs.
>>
>> While at it, let's also sort the triggers in ascending order.
>>
>> Signed-off-by: Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
>> ---
>>
>> Changes in v2:
>>
>> * Added more triggers, fixed the regex
>> * Sorted triggers in ascending order
>>
>>  .../devicetree/bindings/leds/common.yaml      | 78 ++++++++++++++-----
>>  1 file changed, 60 insertions(+), 18 deletions(-)
>>
>> diff --git a/Documentation/devicetree/bindings/leds/common.yaml b/Documentation/devicetree/bindings/leds/common.yaml
>> index f1211e7045f1..3c2e2208c1da 100644
>> --- a/Documentation/devicetree/bindings/leds/common.yaml
>> +++ b/Documentation/devicetree/bindings/leds/common.yaml
>> @@ -79,24 +79,66 @@ properties:
>>        the LED.
>>      $ref: /schemas/types.yaml#definitions/string
>>  
>> -    enum:
>> -        # LED will act as a back-light, controlled by the framebuffer system
>> -      - backlight
>> -        # LED will turn on (but for leds-gpio see "default-state" property in
>> -        # Documentation/devicetree/bindings/leds/leds-gpio.yaml)
>> -      - default-on
>> -        # LED "double" flashes at a load average based rate
>> -      - heartbeat
>> -        # LED indicates disk activity
>> -      - disk-activity
>> -        # LED indicates IDE disk activity (deprecated), in new implementations
>> -        # use "disk-activity"
>> -      - ide-disk
>> -        # LED flashes at a fixed, configurable rate
>> -      - timer
>> -        # LED alters the brightness for the specified duration with one software
>> -        # timer (requires "led-pattern" property)
>> -      - pattern
>> +    oneOf:
>> +      - items:
>> +          - enum:
>> +                # LED indicates mic mute state
>> +              - audio-micmute
>> +                # LED indicates audio mute state
>> +              - audio-mute
>> +                # LED will act as a back-light, controlled by the framebuffer system
>> +              - backlight
>> +                # LED indicates bluetooth power state
>> +              - bluetooth-power
>> +                # LED indicates activity of all CPUs
>> +              - cpu
>> +                # LED will turn on (but for leds-gpio see "default-state" property in
>> +                # Documentation/devicetree/bindings/leds/leds-gpio.yaml)
>> +              - default-on
>> +                # LED indicates disk activity
>> +              - disk-activity
>> +                # LED indicates disk read activity
>> +              - disk-read
>> +                # LED indicates disk write activity
>> +              - disk-write
>> +                # LED indicates camera flash state
>> +              - flash
>> +                # LED "double" flashes at a load average based rate
>> +              - heartbeat
>> +                # LED indicates IDE disk activity (deprecated), in new implementations
>> +                # use "disk-activity"
>> +              - ide-disk
>> +                # LED indicates MTD memory activity
>> +              - mtd
>> +                # LED indicates NAND memory activity (deprecated),
>> +                # in new implementations use "mtd"
>> +              - nand-disk
>> +                # No trigger assigned to the LED. This is the default mode
>> +                # if trigger is absent
>> +              - none
>> +                # LED alters the brightness for the specified duration with one software
>> +                # timer (requires "led-pattern" property)
>> +              - pattern
>> +                # LED flashes at a fixed, configurable rate
>> +              - timer
>> +                # LED indicates camera torch state
>> +              - torch
>> +                # LED indicates USB gadget activity
>> +              - usb-gadget
>> +                # LED indicates USB host activity
>> +              - usb-host
>> +      - items:
>> +            # LED indicates activity of [N]th CPU
>> +          - pattern: "^cpu[0-9]{1,2}$"
>> +      - items:
>> +            # LED indicates power status of [N]th Bluetooth HCI device
>> +          - pattern: "^hci[0-9]{1,2}-power$"
>> +      - items:
>> +            # LED indicates [N]th MMC storage activity
>> +          - pattern: "^mmc[0-9]{1,2}$"
>> +      - items:
>> +            # LED indicates [N]th WLAN Tx activity
>> +          - pattern: "^phy[0-9]{1,2}tx$"
> 
> Only the last three are not listed:
> phy0rx
> ir-power-click
> ir-user-click

I don't know if you're familiar with these two triggers. You can also
consider leaving it to the owner of the corresponding module to update.
Because I just found out there are a lot of unlisted triggers on arm32.

> 
> And the first one is easily supported by:
> -            # LED indicates [N]th WLAN Tx activity
> -          - pattern: "^phy[0-9]{1,2}tx$"
> +            # LED indicates [N]th WLAN Tx/Rx activity
> +          - pattern: "^phy[0-9]{1,2}(tx|rx)$"
> 
> Tested-by: Zhen Lei <thunder.leizhen@huawei.com>
> 
>>  
>>    led-pattern:
>>      description: |
>>


^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: [PATCH v2] dt-bindings: leds: Document commonly used LED triggers
  2020-12-10  8:24 [PATCH v2] dt-bindings: leds: Document commonly used LED triggers Manivannan Sadhasivam
  2020-12-13  2:39 ` Leizhen (ThunderTown)
@ 2020-12-14 22:36 ` Rob Herring
  2020-12-30 19:20   ` Pavel Machek
  2021-01-27  1:38   ` Leizhen (ThunderTown)
  1 sibling, 2 replies; 6+ messages in thread
From: Rob Herring @ 2020-12-14 22:36 UTC (permalink / raw)
  To: Manivannan Sadhasivam
  Cc: jacek.anaszewski, pavel, dmurphy, devicetree, linux-kernel,
	linux-leds, thunder.leizhen

On Thu, Dec 10, 2020 at 01:54:49PM +0530, Manivannan Sadhasivam wrote:
> This commit documents the LED triggers used commonly in the SoCs. Not
> all triggers are documented as some of them are very application specific.
> Most of the triggers documented here are currently used in devicetrees
> of many SoCs.

The idea with recent LED binding changes is to move away from 
'linux,default-trigger' to 'function' and 'trigger-sources' and to have 
some sort of standardized names.

> 
> While at it, let's also sort the triggers in ascending order.

I'm not sure we want that. Probably better to keep related functions 
together.

> 
> Signed-off-by: Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
> ---
> 
> Changes in v2:
> 
> * Added more triggers, fixed the regex
> * Sorted triggers in ascending order
> 
>  .../devicetree/bindings/leds/common.yaml      | 78 ++++++++++++++-----
>  1 file changed, 60 insertions(+), 18 deletions(-)
> 
> diff --git a/Documentation/devicetree/bindings/leds/common.yaml b/Documentation/devicetree/bindings/leds/common.yaml
> index f1211e7045f1..3c2e2208c1da 100644
> --- a/Documentation/devicetree/bindings/leds/common.yaml
> +++ b/Documentation/devicetree/bindings/leds/common.yaml
> @@ -79,24 +79,66 @@ properties:
>        the LED.
>      $ref: /schemas/types.yaml#definitions/string
>  
> -    enum:
> -        # LED will act as a back-light, controlled by the framebuffer system
> -      - backlight
> -        # LED will turn on (but for leds-gpio see "default-state" property in
> -        # Documentation/devicetree/bindings/leds/leds-gpio.yaml)
> -      - default-on
> -        # LED "double" flashes at a load average based rate
> -      - heartbeat
> -        # LED indicates disk activity
> -      - disk-activity
> -        # LED indicates IDE disk activity (deprecated), in new implementations
> -        # use "disk-activity"
> -      - ide-disk
> -        # LED flashes at a fixed, configurable rate
> -      - timer
> -        # LED alters the brightness for the specified duration with one software
> -        # timer (requires "led-pattern" property)
> -      - pattern
> +    oneOf:
> +      - items:
> +          - enum:
> +                # LED indicates mic mute state
> +              - audio-micmute
> +                # LED indicates audio mute state
> +              - audio-mute
> +                # LED will act as a back-light, controlled by the framebuffer system
> +              - backlight
> +                # LED indicates bluetooth power state
> +              - bluetooth-power
> +                # LED indicates activity of all CPUs
> +              - cpu
> +                # LED will turn on (but for leds-gpio see "default-state" property in
> +                # Documentation/devicetree/bindings/leds/leds-gpio.yaml)
> +              - default-on
> +                # LED indicates disk activity
> +              - disk-activity
> +                # LED indicates disk read activity
> +              - disk-read
> +                # LED indicates disk write activity
> +              - disk-write
> +                # LED indicates camera flash state
> +              - flash
> +                # LED "double" flashes at a load average based rate
> +              - heartbeat
> +                # LED indicates IDE disk activity (deprecated), in new implementations
> +                # use "disk-activity"
> +              - ide-disk
> +                # LED indicates MTD memory activity
> +              - mtd
> +                # LED indicates NAND memory activity (deprecated),
> +                # in new implementations use "mtd"
> +              - nand-disk
> +                # No trigger assigned to the LED. This is the default mode
> +                # if trigger is absent
> +              - none
> +                # LED alters the brightness for the specified duration with one software
> +                # timer (requires "led-pattern" property)
> +              - pattern
> +                # LED flashes at a fixed, configurable rate
> +              - timer
> +                # LED indicates camera torch state
> +              - torch
> +                # LED indicates USB gadget activity
> +              - usb-gadget
> +                # LED indicates USB host activity
> +              - usb-host
> +      - items:
> +            # LED indicates activity of [N]th CPU
> +          - pattern: "^cpu[0-9]{1,2}$"
> +      - items:
> +            # LED indicates power status of [N]th Bluetooth HCI device
> +          - pattern: "^hci[0-9]{1,2}-power$"
> +      - items:
> +            # LED indicates [N]th MMC storage activity
> +          - pattern: "^mmc[0-9]{1,2}$"
> +      - items:
> +            # LED indicates [N]th WLAN Tx activity
> +          - pattern: "^phy[0-9]{1,2}tx$"
>  
>    led-pattern:
>      description: |
> -- 
> 2.25.1
> 

^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: [PATCH v2] dt-bindings: leds: Document commonly used LED triggers
  2020-12-14 22:36 ` Rob Herring
@ 2020-12-30 19:20   ` Pavel Machek
  2021-01-27  1:38   ` Leizhen (ThunderTown)
  1 sibling, 0 replies; 6+ messages in thread
From: Pavel Machek @ 2020-12-30 19:20 UTC (permalink / raw)
  To: Rob Herring
  Cc: Manivannan Sadhasivam, jacek.anaszewski, dmurphy, devicetree,
	linux-kernel, linux-leds, thunder.leizhen

[-- Attachment #1: Type: text/plain, Size: 782 bytes --]

On Mon 2020-12-14 16:36:21, Rob Herring wrote:
> On Thu, Dec 10, 2020 at 01:54:49PM +0530, Manivannan Sadhasivam wrote:
> > This commit documents the LED triggers used commonly in the SoCs. Not
> > all triggers are documented as some of them are very application specific.
> > Most of the triggers documented here are currently used in devicetrees
> > of many SoCs.
> 
> The idea with recent LED binding changes is to move away from 
> 'linux,default-trigger' to 'function' and 'trigger-sources' and to have 
> some sort of standardized names.

Yes, but I guess we still want to document this... and perhaps use it
during transition and when trigger-sources (etc) are too hard to set
up.

Best regards,
								Pavel

-- 
http://www.livejournal.com/~pavelmachek

[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 195 bytes --]

^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: [PATCH v2] dt-bindings: leds: Document commonly used LED triggers
  2020-12-14 22:36 ` Rob Herring
  2020-12-30 19:20   ` Pavel Machek
@ 2021-01-27  1:38   ` Leizhen (ThunderTown)
  1 sibling, 0 replies; 6+ messages in thread
From: Leizhen (ThunderTown) @ 2021-01-27  1:38 UTC (permalink / raw)
  To: Rob Herring, Manivannan Sadhasivam
  Cc: jacek.anaszewski, pavel, dmurphy, devicetree, linux-kernel, linux-leds

Hi Manivannan:
  Do you have time to prepare v3? Hope it can be applied into v5.12


On 2020/12/15 6:36, Rob Herring wrote:
> On Thu, Dec 10, 2020 at 01:54:49PM +0530, Manivannan Sadhasivam wrote:
>> This commit documents the LED triggers used commonly in the SoCs. Not
>> all triggers are documented as some of them are very application specific.
>> Most of the triggers documented here are currently used in devicetrees
>> of many SoCs.
> 
> The idea with recent LED binding changes is to move away from 
> 'linux,default-trigger' to 'function' and 'trigger-sources' and to have 
> some sort of standardized names.
> 
>>
>> While at it, let's also sort the triggers in ascending order.
> 
> I'm not sure we want that. Probably better to keep related functions 
> together.
> 
>>
>> Signed-off-by: Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
>> ---
>>
>> Changes in v2:
>>
>> * Added more triggers, fixed the regex
>> * Sorted triggers in ascending order
>>
>>  .../devicetree/bindings/leds/common.yaml      | 78 ++++++++++++++-----
>>  1 file changed, 60 insertions(+), 18 deletions(-)
>>
>> diff --git a/Documentation/devicetree/bindings/leds/common.yaml b/Documentation/devicetree/bindings/leds/common.yaml
>> index f1211e7045f1..3c2e2208c1da 100644
>> --- a/Documentation/devicetree/bindings/leds/common.yaml
>> +++ b/Documentation/devicetree/bindings/leds/common.yaml


^ permalink raw reply	[flat|nested] 6+ messages in thread

end of thread, other threads:[~2021-01-27  3:55 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-12-10  8:24 [PATCH v2] dt-bindings: leds: Document commonly used LED triggers Manivannan Sadhasivam
2020-12-13  2:39 ` Leizhen (ThunderTown)
2020-12-13  3:03   ` Leizhen (ThunderTown)
2020-12-14 22:36 ` Rob Herring
2020-12-30 19:20   ` Pavel Machek
2021-01-27  1:38   ` Leizhen (ThunderTown)

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).