public inbox for u-boot@lists.denx.de
 help / color / mirror / Atom feed
* [U-Boot] [PATCH 01/14] mips: Add in_le32(), out_le32() etc IO accessor functions
@ 2018-10-09  6:59 Stefan Roese
  2018-10-09  6:59 ` [U-Boot] [PATCH 02/14] mips: mt76xx: lowlevel_init.S: Add missing memory controller reset in DDR init Stefan Roese
                   ` (13 more replies)
  0 siblings, 14 replies; 19+ messages in thread
From: Stefan Roese @ 2018-10-09  6:59 UTC (permalink / raw)
  To: u-boot

in_le32() and out_le32() are needed for the bootcounter support.
So lets implement these accessor functions for MIPS as well.

Signed-off-by: Stefan Roese <sr@denx.de>
Cc: Daniel Schwierzeck <daniel.schwierzeck@gmail.com>
---
 arch/mips/include/asm/io.h | 21 +++++++++++++++++++++
 1 file changed, 21 insertions(+)

diff --git a/arch/mips/include/asm/io.h b/arch/mips/include/asm/io.h
index 957442effd..a750f6c0e4 100644
--- a/arch/mips/include/asm/io.h
+++ b/arch/mips/include/asm/io.h
@@ -391,6 +391,27 @@ __BUILDIO(q, u64)
 #define readq				readq
 #define writeq				writeq
 
+/* in_le32(), out_le32() and friends */
+#define out_arch(type,endian,a,v)	__raw_write##type(cpu_to_##endian(v),a)
+#define in_arch(type,endian,a)		endian##_to_cpu(__raw_read##type(a))
+
+#define out_le64(a,v)	out_arch(q,le64,a,v)
+#define out_le32(a,v)	out_arch(l,le32,a,v)
+#define out_le16(a,v)	out_arch(w,le16,a,v)
+
+#define in_le64(a)	in_arch(q,le64,a)
+#define in_le32(a)	in_arch(l,le32,a)
+#define in_le16(a)	in_arch(w,le16,a)
+
+#define out_be32(a,v)	out_arch(l,be32,a,v)
+#define out_be16(a,v)	out_arch(w,be16,a,v)
+
+#define in_be32(a)	in_arch(l,be32,a)
+#define in_be16(a)	in_arch(w,be16,a)
+
+#define out_8(a,v)	__raw_writeb(v,a)
+#define in_8(a)		__raw_readb(a)
+
 #define __BUILD_MEMORY_STRING(bwlq, type)				\
 									\
 static inline void writes##bwlq(volatile void __iomem *mem,		\
-- 
2.19.1

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

end of thread, other threads:[~2018-10-28 19:43 UTC | newest]

Thread overview: 19+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2018-10-09  6:59 [U-Boot] [PATCH 01/14] mips: Add in_le32(), out_le32() etc IO accessor functions Stefan Roese
2018-10-09  6:59 ` [U-Boot] [PATCH 02/14] mips: mt76xx: lowlevel_init.S: Add missing memory controller reset in DDR init Stefan Roese
2018-10-28 19:42   ` Daniel Schwierzeck
2018-10-09  6:59 ` [U-Boot] [PATCH 03/14] mips: mt76xx: Enable SYS_MIPS_CACHE_INIT_RAM_LOAD for cache init Stefan Roese
2018-10-28 19:02   ` Daniel Schwierzeck
2018-10-09  6:59 ` [U-Boot] [PATCH 04/14] mips: mt76xx: Add ethernet DT node to mt7628a.dtsi Stefan Roese
2018-10-28 19:43   ` Daniel Schwierzeck
2018-10-09  6:59 ` [U-Boot] [PATCH 05/14] mips: mt76xx: Add GPIO DT nodes " Stefan Roese
2018-10-09  6:59 ` [U-Boot] [PATCH 06/14] mips: mt76xx: Add watchdog DT node " Stefan Roese
2018-10-09  6:59 ` [U-Boot] [PATCH 07/14] mips: mt76xx: Kconfig: Add ethernet and GPIO support Stefan Roese
2018-10-09  6:59 ` [U-Boot] [PATCH 08/14] mips: mt76xx: Enable watchdog support Stefan Roese
2018-10-09  6:59 ` [U-Boot] [PATCH 09/14] mips: mt76xx: gardena-smart-gateway: Configure GPIOs (digital vs analog) Stefan Roese
2018-10-09  6:59 ` [U-Boot] [PATCH 10/14] mips: mt76xx: gardena-smart-gateway: Add LEDs to dts Stefan Roese
2018-10-09  6:59 ` [U-Boot] [PATCH 11/14] mips: mt76xx: gardena-smart-gateway: Add board_late_init() to set LED def state Stefan Roese
2018-10-09  6:59 ` [U-Boot] [PATCH 12/14] mips: mt76xx: gardena-smart-gateway: Misc updates to dts/config/defconfig Stefan Roese
2018-10-09  6:59 ` [U-Boot] [PATCH 13/14] mips: mt76xx: linkit-smart-7688: Use ioremap_nocache to get address Stefan Roese
2018-10-09  6:59 ` [U-Boot] [PATCH 14/14] mips: mt76xx: linkit-smart-7688: Misc updates to dts/config/defconfig Stefan Roese
2018-10-09 17:38 ` [U-Boot] [PATCH 01/14] mips: Add in_le32(), out_le32() etc IO accessor functions Anatolij Gustschin
2018-10-10  5:57   ` Stefan Roese

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox