mirror of
https://github.com/openwrt/openwrt.git
synced 2024-12-22 06:57:57 +00:00
e58cd453d5
Add kernel support for SAMA7G5 by back-porting mainline kernel patches. Among SAMA7G5 features could be remembered: - ARM Cortex-A7 - double data rate multi-port dynamic RAM controller supporting DDR2, DDR3, DDR3L, LPDDR2, LPDDR3 up to 533MHz - peripherals for audio, video processing - 1 gigabit + 1 megabit Ethernet controllers - 6 CAN controllers - trust zone support - DVFS for CPU - criptography IPs Signed-off-by: Claudiu Beznea <claudiu.beznea@microchip.com>
31 lines
1.0 KiB
Diff
31 lines
1.0 KiB
Diff
From 8d858d9c57a0210ca1ce9e5ba76fab8bdb4d7b39 Mon Sep 17 00:00:00 2001
|
|
From: Claudiu Beznea <claudiu.beznea@microchip.com>
|
|
Date: Fri, 22 Jan 2021 14:21:32 +0200
|
|
Subject: [PATCH 137/247] drivers: soc: atmel: use GENMASK
|
|
|
|
Use GENMASK() to define CIDR match mask.
|
|
|
|
Signed-off-by: Claudiu Beznea <claudiu.beznea@microchip.com>
|
|
Signed-off-by: Nicolas Ferre <nicolas.ferre@microchip.com>
|
|
Link: https://lore.kernel.org/r/1611318097-8970-3-git-send-email-claudiu.beznea@microchip.com
|
|
---
|
|
drivers/soc/atmel/soc.c | 2 +-
|
|
1 file changed, 1 insertion(+), 1 deletion(-)
|
|
|
|
diff --git a/drivers/soc/atmel/soc.c b/drivers/soc/atmel/soc.c
|
|
index 698d21f50516..c3f920ee5c6f 100644
|
|
--- a/drivers/soc/atmel/soc.c
|
|
+++ b/drivers/soc/atmel/soc.c
|
|
@@ -27,7 +27,7 @@
|
|
#define AT91_CHIPID_EXID 0x04
|
|
#define AT91_CIDR_VERSION(x) ((x) & 0x1f)
|
|
#define AT91_CIDR_EXT BIT(31)
|
|
-#define AT91_CIDR_MATCH_MASK 0x7fffffe0
|
|
+#define AT91_CIDR_MATCH_MASK GENMASK(30, 5)
|
|
|
|
static const struct at91_soc __initconst socs[] = {
|
|
#ifdef CONFIG_SOC_AT91RM9200
|
|
--
|
|
2.32.0
|
|
|