From: Marek Vasut <marex@denx.de>
To: netdev@vger.kernel.org
Cc: f.fainelli@gmail.com, andrew@lunn.ch, Marek Vasut <marex@denx.de>,
Tristram Ha <Tristram.Ha@microchip.com>,
Woojung Huh <Woojung.Huh@microchip.com>
Subject: [RFT][PATCH V2 09/10] net: dsa: microchip: Factor out regmap config generation into common header
Date: Fri, 21 Dec 2018 02:58:40 +0100 [thread overview]
Message-ID: <20181221015841.6992-10-marex@denx.de> (raw)
In-Reply-To: <20181221015841.6992-1-marex@denx.de>
The regmap config tables are rather similar for various generations of
the KSZ8xxx/KSZ9xxx switches. Introduce a macro which allows generating
those tables without duplication. Note that $regalign parameter is not
used right now, but will be used in KSZ87xx series switches.
Signed-off-by: Marek Vasut <marex@denx.de>
Cc: Andrew Lunn <andrew@lunn.ch>
Cc: Florian Fainelli <f.fainelli@gmail.com>
Cc: Tristram Ha <Tristram.Ha@microchip.com>
Cc: Woojung Huh <Woojung.Huh@microchip.com>
---
V2: New patch
---
drivers/net/dsa/microchip/ksz9477_spi.c | 28 ++---------------------
drivers/net/dsa/microchip/ksz_common.h | 30 +++++++++++++++++++++++++
2 files changed, 32 insertions(+), 26 deletions(-)
diff --git a/drivers/net/dsa/microchip/ksz9477_spi.c b/drivers/net/dsa/microchip/ksz9477_spi.c
index b440641f4898..29b51524cae9 100644
--- a/drivers/net/dsa/microchip/ksz9477_spi.c
+++ b/drivers/net/dsa/microchip/ksz9477_spi.c
@@ -14,36 +14,12 @@
#include <linux/spi/spi.h>
#include "ksz_priv.h"
+#include "ksz_common.h"
#define SPI_ADDR_SHIFT 24
#define SPI_TURNAROUND_SHIFT 5
-/* SPI frame opcodes */
-#define KS_SPIOP_RD 3
-#define KS_SPIOP_WR 2
-
-#define KS_SPIOP_FLAG_MASK(opcode) \
- cpu_to_be16((opcode) << (SPI_ADDR_SHIFT + SPI_TURNAROUND_SHIFT))
-
-#define KSZ_REGMAP_COMMON(width) \
- { \
- .val_bits = (width), \
- .reg_stride = (width) / 8, \
- .reg_bits = SPI_ADDR_SHIFT, \
- .pad_bits = SPI_TURNAROUND_SHIFT, \
- .max_register = 0xF00, \
- .cache_type = REGCACHE_NONE, \
- .read_flag_mask = KS_SPIOP_FLAG_MASK(KS_SPIOP_RD), \
- .write_flag_mask = KS_SPIOP_FLAG_MASK(KS_SPIOP_WR), \
- .reg_format_endian = REGMAP_ENDIAN_BIG, \
- .val_format_endian = REGMAP_ENDIAN_BIG \
- }
-
-static const struct regmap_config ksz9477_regmap_config[] = {
- KSZ_REGMAP_COMMON(8),
- KSZ_REGMAP_COMMON(16),
- KSZ_REGMAP_COMMON(32),
-};
+KSZ_REGMAP_TABLE(ksz9477, SPI_ADDR_SHIFT, SPI_TURNAROUND_SHIFT, 0);
static int ksz9477_spi_probe(struct spi_device *spi)
{
diff --git a/drivers/net/dsa/microchip/ksz_common.h b/drivers/net/dsa/microchip/ksz_common.h
index 903e3e39bfd4..4d30a67c14a3 100644
--- a/drivers/net/dsa/microchip/ksz_common.h
+++ b/drivers/net/dsa/microchip/ksz_common.h
@@ -114,4 +114,34 @@ static inline void ksz_pwrite32(struct ksz_device *dev, int port, int offset,
ksz_write32(dev, dev->dev_ops->get_port_addr(port, offset), data);
}
+/* Regmap tables generation */
+#define KSZ_SPI_OP_RD 3
+#define KSZ_SPI_OP_WR 2
+
+#define KSZ_SPI_OP_FLAG_MASK(opcode, regbits, regpad) \
+ cpu_to_be16((opcode) << ((regbits) + (regpad)))
+
+#define KSZ_REGMAP_ENTRY(width, regbits, regpad, regalign) \
+ { \
+ .val_bits = (width), \
+ .reg_stride = (width) / 8, \
+ .reg_bits = (regbits) + (regalign), \
+ .pad_bits = (regpad), \
+ .max_register = 0xF00, \
+ .cache_type = REGCACHE_NONE, \
+ .read_flag_mask = \
+ KSZ_SPI_OP_FLAG_MASK(KSZ_SPI_OP_RD, regbits, regpad), \
+ .write_flag_mask = \
+ KSZ_SPI_OP_FLAG_MASK(KSZ_SPI_OP_WR, regbits, regpad), \
+ .reg_format_endian = REGMAP_ENDIAN_BIG, \
+ .val_format_endian = REGMAP_ENDIAN_BIG \
+ }
+
+#define KSZ_REGMAP_TABLE(ksz, regbits, regpad, regalign) \
+ static const struct regmap_config ksz##_regmap_config[] = { \
+ KSZ_REGMAP_ENTRY(8, (regbits), (regpad), (regalign)), \
+ KSZ_REGMAP_ENTRY(16, (regbits), (regpad), (regalign)), \
+ KSZ_REGMAP_ENTRY(32, (regbits), (regpad), (regalign)), \
+ }
+
#endif
--
2.19.2
next prev parent reply other threads:[~2018-12-21 1:59 UTC|newest]
Thread overview: 24+ messages / expand[flat|nested] mbox.gz Atom feed top
2018-12-21 1:58 [RFT][PATCH V2 00/10] net: dsa: microchip: Convert to regmap Marek Vasut
2018-12-21 1:58 ` [RFT][PATCH V2 01/10] net: dsa: microchip: Remove ksz_{read,write}24() Marek Vasut
2018-12-21 1:58 ` [RFT][PATCH V2 02/10] net: dsa: microchip: Remove ksz_{get,set}() Marek Vasut
2018-12-21 1:58 ` [RFT][PATCH V2 03/10] net: dsa: microchip: Inline ksz_spi.h Marek Vasut
2018-12-21 1:58 ` [RFT][PATCH V2 04/10] net: dsa: microchip: Move ksz_cfg and ksz_port_cfg to ksz9477.c Marek Vasut
2018-12-21 1:58 ` [RFT][PATCH V2 05/10] net: dsa: microchip: Use PORT_CTRL_ADDR() instead of indirect function call Marek Vasut
2018-12-21 1:58 ` [RFT][PATCH V2 06/10] net: dsa: microchip: Factor out register access opcode generation Marek Vasut
2018-12-21 1:58 ` [RFT][PATCH V2 07/10] net: dsa: microchip: Initial SPI regmap support Marek Vasut
2018-12-21 1:58 ` [RFT][PATCH V2 08/10] net: dsa: microchip: Dispose of ksz_io_ops Marek Vasut
2018-12-21 1:58 ` Marek Vasut [this message]
2018-12-21 4:16 ` [RFT][PATCH V2 09/10] net: dsa: microchip: Factor out regmap config generation into common header Tristram.Ha
2018-12-21 5:23 ` Marek Vasut
2019-01-05 21:50 ` Marek Vasut
2019-01-09 19:08 ` Tristram.Ha
2019-01-09 19:58 ` Tristram.Ha
2019-01-09 21:59 ` Marek Vasut
2019-01-10 2:10 ` Tristram.Ha
2019-01-10 14:37 ` Marek Vasut
2019-01-11 4:04 ` Tristram.Ha
2019-01-11 4:49 ` Marek Vasut
2019-01-11 18:56 ` Tristram.Ha
2019-01-12 0:11 ` Marek Vasut
2019-01-09 21:56 ` Marek Vasut
2018-12-21 1:58 ` [RFT][PATCH V2 10/10] net: dsa: microchip: Replace ad-hoc bit manipulation with regmap Marek Vasut
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20181221015841.6992-10-marex@denx.de \
--to=marex@denx.de \
--cc=Tristram.Ha@microchip.com \
--cc=Woojung.Huh@microchip.com \
--cc=andrew@lunn.ch \
--cc=f.fainelli@gmail.com \
--cc=netdev@vger.kernel.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
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).