qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] bswap: Add st24_be_p() to store 24 bits in big-endian order
@ 2024-06-21  7:56 Philippe Mathieu-Daudé
  2024-06-21  8:11 ` Cédric Le Goater
                   ` (2 more replies)
  0 siblings, 3 replies; 4+ messages in thread
From: Philippe Mathieu-Daudé @ 2024-06-21  7:56 UTC (permalink / raw)
  To: qemu-devel
  Cc: Sai Pavan Boddu, Joel Stanley, Fan Ni, Cédric Le Goater,
	Jonathan Cameron, Ira Weiny, Philippe Mathieu-Daudé

Commit 14180d6221 ("bswap: Add the ability to store to an
unaligned 24 bit field") added st24_le_p() for little
endianness, add st24_be_p() equivalent for bit one.

Signed-off-by: Philippe Mathieu-Daudé <philmd@linaro.org>
---
Some SD card registers are 3 bytes wide stored MSB first.
---
 include/qemu/bswap.h | 7 +++++++
 1 file changed, 7 insertions(+)

diff --git a/include/qemu/bswap.h b/include/qemu/bswap.h
index bd67468e5e..ad22910a5d 100644
--- a/include/qemu/bswap.h
+++ b/include/qemu/bswap.h
@@ -38,12 +38,14 @@ static inline void bswap64s(uint64_t *s)
 #if HOST_BIG_ENDIAN
 #define be_bswap(v, size) (v)
 #define le_bswap(v, size) glue(__builtin_bswap, size)(v)
+#define be_bswap24(v) (v)
 #define le_bswap24(v) bswap24(v)
 #define be_bswaps(v, size)
 #define le_bswaps(p, size) \
             do { *p = glue(__builtin_bswap, size)(*p); } while (0)
 #else
 #define le_bswap(v, size) (v)
+#define be_bswap24(v) bswap24(v)
 #define le_bswap24(v) (v)
 #define be_bswap(v, size) glue(__builtin_bswap, size)(v)
 #define le_bswaps(v, size)
@@ -357,6 +359,11 @@ static inline void stw_be_p(void *ptr, uint16_t v)
     stw_he_p(ptr, be_bswap(v, 16));
 }
 
+static inline void st24_be_p(void *ptr, uint32_t v)
+{
+    st24_he_p(ptr, be_bswap24(v));
+}
+
 static inline void stl_be_p(void *ptr, uint32_t v)
 {
     stl_he_p(ptr, be_bswap(v, 32));
-- 
2.41.0



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

* Re: [PATCH] bswap: Add st24_be_p() to store 24 bits in big-endian order
  2024-06-21  7:56 [PATCH] bswap: Add st24_be_p() to store 24 bits in big-endian order Philippe Mathieu-Daudé
@ 2024-06-21  8:11 ` Cédric Le Goater
  2024-06-21 16:47 ` Richard Henderson
  2024-06-24 13:12 ` Philippe Mathieu-Daudé
  2 siblings, 0 replies; 4+ messages in thread
From: Cédric Le Goater @ 2024-06-21  8:11 UTC (permalink / raw)
  To: Philippe Mathieu-Daudé, qemu-devel
  Cc: Sai Pavan Boddu, Joel Stanley, Fan Ni, Jonathan Cameron,
	Ira Weiny

On 6/21/24 9:56 AM, Philippe Mathieu-Daudé wrote:
> Commit 14180d6221 ("bswap: Add the ability to store to an
> unaligned 24 bit field") added st24_le_p() for little
> endianness, add st24_be_p() equivalent for bit one.
> 
> Signed-off-by: Philippe Mathieu-Daudé <philmd@linaro.org>
> ---
> Some SD card registers are 3 bytes wide stored MSB first.
> ---


Reviewed-by: Cédric Le Goater <clg@redhat.com>

Thanks,

C.


>   include/qemu/bswap.h | 7 +++++++
>   1 file changed, 7 insertions(+)
> 
> diff --git a/include/qemu/bswap.h b/include/qemu/bswap.h
> index bd67468e5e..ad22910a5d 100644
> --- a/include/qemu/bswap.h
> +++ b/include/qemu/bswap.h
> @@ -38,12 +38,14 @@ static inline void bswap64s(uint64_t *s)
>   #if HOST_BIG_ENDIAN
>   #define be_bswap(v, size) (v)
>   #define le_bswap(v, size) glue(__builtin_bswap, size)(v)
> +#define be_bswap24(v) (v)
>   #define le_bswap24(v) bswap24(v)
>   #define be_bswaps(v, size)
>   #define le_bswaps(p, size) \
>               do { *p = glue(__builtin_bswap, size)(*p); } while (0)
>   #else
>   #define le_bswap(v, size) (v)
> +#define be_bswap24(v) bswap24(v)
>   #define le_bswap24(v) (v)
>   #define be_bswap(v, size) glue(__builtin_bswap, size)(v)
>   #define le_bswaps(v, size)
> @@ -357,6 +359,11 @@ static inline void stw_be_p(void *ptr, uint16_t v)
>       stw_he_p(ptr, be_bswap(v, 16));
>   }
>   
> +static inline void st24_be_p(void *ptr, uint32_t v)
> +{
> +    st24_he_p(ptr, be_bswap24(v));
> +}
> +
>   static inline void stl_be_p(void *ptr, uint32_t v)
>   {
>       stl_he_p(ptr, be_bswap(v, 32));



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

* Re: [PATCH] bswap: Add st24_be_p() to store 24 bits in big-endian order
  2024-06-21  7:56 [PATCH] bswap: Add st24_be_p() to store 24 bits in big-endian order Philippe Mathieu-Daudé
  2024-06-21  8:11 ` Cédric Le Goater
@ 2024-06-21 16:47 ` Richard Henderson
  2024-06-24 13:12 ` Philippe Mathieu-Daudé
  2 siblings, 0 replies; 4+ messages in thread
From: Richard Henderson @ 2024-06-21 16:47 UTC (permalink / raw)
  To: Philippe Mathieu-Daudé, qemu-devel
  Cc: Sai Pavan Boddu, Joel Stanley, Fan Ni, Cédric Le Goater,
	Jonathan Cameron, Ira Weiny

On 6/21/24 00:56, Philippe Mathieu-Daudé wrote:
> Commit 14180d6221 ("bswap: Add the ability to store to an
> unaligned 24 bit field") added st24_le_p() for little
> endianness, add st24_be_p() equivalent for bit one.
> 
> Signed-off-by: Philippe Mathieu-Daudé <philmd@linaro.org>
> ---
> Some SD card registers are 3 bytes wide stored MSB first.
> ---
>   include/qemu/bswap.h | 7 +++++++
>   1 file changed, 7 insertions(+)

Reviewed-by: Richard Henderson <richard.henderson@linaro.org>


r~


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

* Re: [PATCH] bswap: Add st24_be_p() to store 24 bits in big-endian order
  2024-06-21  7:56 [PATCH] bswap: Add st24_be_p() to store 24 bits in big-endian order Philippe Mathieu-Daudé
  2024-06-21  8:11 ` Cédric Le Goater
  2024-06-21 16:47 ` Richard Henderson
@ 2024-06-24 13:12 ` Philippe Mathieu-Daudé
  2 siblings, 0 replies; 4+ messages in thread
From: Philippe Mathieu-Daudé @ 2024-06-24 13:12 UTC (permalink / raw)
  To: qemu-devel
  Cc: Sai Pavan Boddu, Joel Stanley, Fan Ni, Cédric Le Goater,
	Jonathan Cameron, Ira Weiny

On 21/6/24 09:56, Philippe Mathieu-Daudé wrote:
> Commit 14180d6221 ("bswap: Add the ability to store to an
> unaligned 24 bit field") added st24_le_p() for little
> endianness, add st24_be_p() equivalent for bit one.
> 
> Signed-off-by: Philippe Mathieu-Daudé <philmd@linaro.org>
> ---
> Some SD card registers are 3 bytes wide stored MSB first.
> ---
>   include/qemu/bswap.h | 7 +++++++
>   1 file changed, 7 insertions(+)

Patch queued.


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

end of thread, other threads:[~2024-06-24 13:12 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-06-21  7:56 [PATCH] bswap: Add st24_be_p() to store 24 bits in big-endian order Philippe Mathieu-Daudé
2024-06-21  8:11 ` Cédric Le Goater
2024-06-21 16:47 ` Richard Henderson
2024-06-24 13:12 ` Philippe Mathieu-Daudé

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).