Skip to content

Commit

Permalink
MIPS: ath79: add support for QCN550x
Browse files Browse the repository at this point in the history
Adds support for QCN550x, which appears to be very similar to QCA956x.

Signed-off-by: Wenli Looi <wlooi@ucalgary.ca>
Signed-off-by: Thomas Bogendoerfer <tsbogend@alpha.franken.de>
  • Loading branch information
looi authored and tsbogend committed Feb 7, 2022
1 parent dfd42fa commit a0b8cd5
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 0 deletions.
1 change: 1 addition & 0 deletions arch/mips/ath79/early_printk.c
Expand Up @@ -121,6 +121,7 @@ static void prom_putchar_init(void)
case REV_ID_MAJOR_QCA9558:
case REV_ID_MAJOR_TP9343:
case REV_ID_MAJOR_QCA956X:
case REV_ID_MAJOR_QCN550X:
_prom_putchar = prom_putchar_ar71xx;
break;

Expand Down
6 changes: 6 additions & 0 deletions arch/mips/ath79/setup.c
Expand Up @@ -168,6 +168,12 @@ static void __init ath79_detect_sys_type(void)
rev = id & QCA956X_REV_ID_REVISION_MASK;
break;

case REV_ID_MAJOR_QCN550X:
ath79_soc = ATH79_SOC_QCA956X;
chip = "550X";
rev = id & QCA956X_REV_ID_REVISION_MASK;
break;

case REV_ID_MAJOR_TP9343:
ath79_soc = ATH79_SOC_TP9343;
chip = "9343";
Expand Down
1 change: 1 addition & 0 deletions arch/mips/include/asm/mach-ath79/ar71xx_regs.h
Expand Up @@ -862,6 +862,7 @@
#define REV_ID_MAJOR_QCA9558 0x1130
#define REV_ID_MAJOR_TP9343 0x0150
#define REV_ID_MAJOR_QCA956X 0x1150
#define REV_ID_MAJOR_QCN550X 0x2170

#define AR71XX_REV_ID_MINOR_MASK 0x3
#define AR71XX_REV_ID_MINOR_AR7130 0x0
Expand Down

0 comments on commit a0b8cd5

Please sign in to comment.