12345678910111213141516171819202122232425262728293031323334353637383940 |
- From 670f77f76f650b1b341d31d009cc2fb03a4d1fcf Mon Sep 17 00:00:00 2001
- From: Shiji Yang <[email protected]>
- Date: Fri, 23 Jun 2023 08:17:48 +0800
- Subject: mips: ralink: match all supported system controller compatible
- strings
- Recently, A new clock and reset controller driver has been introduced to
- the ralink mips target[1]. It provides proper system control and adds more
- SoC specific compatible strings. In order to better initialize CPUs, this
- patch removes the outdated "ralink,mt7620a-sysc" and add all dt-binding
- documented compatible strings to the system controller match table.
- [1] https://lore.kernel.org/all/[email protected]/
- Signed-off-by: Shiji Yang <[email protected]>
- Reviewed-by: Sergio Paracuellos <[email protected]>
- Signed-off-by: Thomas Bogendoerfer <[email protected]>
- ---
- arch/mips/ralink/of.c | 7 ++++++-
- 1 file changed, 6 insertions(+), 1 deletion(-)
- --- a/arch/mips/ralink/of.c
- +++ b/arch/mips/ralink/of.c
- @@ -40,10 +40,15 @@ static const struct of_device_id mtmips_
-
- static const struct of_device_id mtmips_sysc_match[] = {
- { .compatible = "mediatek,mt7621-sysc" },
- - { .compatible = "ralink,mt7620a-sysc" },
- + { .compatible = "ralink,mt7620-sysc" },
- + { .compatible = "ralink,mt7628-sysc" },
- + { .compatible = "ralink,mt7688-sysc" },
- { .compatible = "ralink,rt2880-sysc" },
- { .compatible = "ralink,rt3050-sysc" },
- + { .compatible = "ralink,rt3052-sysc" },
- + { .compatible = "ralink,rt3352-sysc" },
- { .compatible = "ralink,rt3883-sysc" },
- + { .compatible = "ralink,rt5350-sysc" },
- {}
- };
-
|