[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[qemu-s390x] [PULL SUBSYSTEM s390-ccw-bios 07/17] s390-bios: ptr2u32 and
From: |
Thomas Huth |
Subject: |
[qemu-s390x] [PULL SUBSYSTEM s390-ccw-bios 07/17] s390-bios: ptr2u32 and u32toptr |
Date: |
Fri, 12 Apr 2019 14:25:13 +0200 |
From: "Jason J. Herne" <address@hidden>
Introduce inline functions to convert between pointers and unsigned 32-bit
ints. These are used to hide the ugliness required to avoid compiler
warnings.
Signed-off-by: Jason J. Herne <address@hidden>
Acked-by: Cornelia Huck <address@hidden>
Reviewed-by: Thomas Huth <address@hidden>
Message-Id: <address@hidden>
Signed-off-by: Thomas Huth <address@hidden>
---
pc-bios/s390-ccw/helper.h | 31 +++++++++++++++++++++++++++++++
1 file changed, 31 insertions(+)
create mode 100644 pc-bios/s390-ccw/helper.h
diff --git a/pc-bios/s390-ccw/helper.h b/pc-bios/s390-ccw/helper.h
new file mode 100644
index 0000000000..78d5bc7442
--- /dev/null
+++ b/pc-bios/s390-ccw/helper.h
@@ -0,0 +1,31 @@
+/*
+ * Helper Functions
+ *
+ * Copyright (c) 2019 IBM Corp.
+ *
+ * Author(s): Jason J. Herne <address@hidden>
+ *
+ * This work is licensed under the terms of the GNU GPL, version 2 or (at
+ * your option) any later version. See the COPYING file in the top-level
+ * directory.
+ */
+
+#ifndef S390_CCW_HELPER_H
+#define S390_CCW_HELPER_H
+
+#include "s390-ccw.h"
+
+/* Avoids compiler warnings when casting a pointer to a u32 */
+static inline uint32_t ptr2u32(void *ptr)
+{
+ IPL_assert((uint64_t)ptr <= 0xffffffff, "ptr2u32: ptr too large");
+ return (uint32_t)(uint64_t)ptr;
+}
+
+/* Avoids compiler warnings when casting a u32 to a pointer */
+static inline void *u32toptr(uint32_t n)
+{
+ return (void *)(uint64_t)n;
+}
+
+#endif
--
2.21.0
- [qemu-s390x] [PULL SUBSYSTEM s390-ccw-bios 00/17] vfio-ccw dasd ipl support, Thomas Huth, 2019/04/12
- [qemu-s390x] [PULL SUBSYSTEM s390-ccw-bios 02/17] s390-bios: decouple cio setup from virtio, Thomas Huth, 2019/04/12
- [qemu-s390x] [PULL SUBSYSTEM s390-ccw-bios 03/17] s390-bios: decouple common boot logic from virtio, Thomas Huth, 2019/04/12
- [qemu-s390x] [PULL SUBSYSTEM s390-ccw-bios 01/17] s390 vfio-ccw: Add bootindex property and IPLB data, Thomas Huth, 2019/04/12
- [qemu-s390x] [PULL SUBSYSTEM s390-ccw-bios 04/17] s390-bios: Clean up cio.h, Thomas Huth, 2019/04/12
- [qemu-s390x] [PULL SUBSYSTEM s390-ccw-bios 05/17] s390-bios: Decouple channel i/o logic from virtio, Thomas Huth, 2019/04/12
- [qemu-s390x] [PULL SUBSYSTEM s390-ccw-bios 06/17] s390-bios: Map low core memory, Thomas Huth, 2019/04/12
- [qemu-s390x] [PULL SUBSYSTEM s390-ccw-bios 07/17] s390-bios: ptr2u32 and u32toptr,
Thomas Huth <=
- [qemu-s390x] [PULL SUBSYSTEM s390-ccw-bios 10/17] s390-bios: Extend find_dev() for non-virtio devices, Thomas Huth, 2019/04/12
- [qemu-s390x] [PULL SUBSYSTEM s390-ccw-bios 08/17] s390-bios: Support for running format-0/1 channel programs, Thomas Huth, 2019/04/12
- [qemu-s390x] [PULL SUBSYSTEM s390-ccw-bios 09/17] s390-bios: cio error handling, Thomas Huth, 2019/04/12
- [qemu-s390x] [PULL SUBSYSTEM s390-ccw-bios 11/17] s390-bios: Factor finding boot device out of virtio code path, Thomas Huth, 2019/04/12
- [qemu-s390x] [PULL SUBSYSTEM s390-ccw-bios 12/17] s390-bios: Refactor virtio to run channel programs via cio, Thomas Huth, 2019/04/12
- [qemu-s390x] [PULL SUBSYSTEM s390-ccw-bios 13/17] s390-bios: Use control unit type to determine boot method, Thomas Huth, 2019/04/12
- [qemu-s390x] [PULL SUBSYSTEM s390-ccw-bios 14/17] s390-bios: Add channel command codes/structs needed for dasd-ipl, Thomas Huth, 2019/04/12
- [qemu-s390x] [PULL SUBSYSTEM s390-ccw-bios 16/17] s390-bios: Use control unit type to find bootable devices, Thomas Huth, 2019/04/12
- [qemu-s390x] [PULL SUBSYSTEM s390-ccw-bios 15/17] s390-bios: Support booting from real dasd device, Thomas Huth, 2019/04/12
- [qemu-s390x] [PULL SUBSYSTEM s390-ccw-bios 17/17] pc-bios/s390: Update firmware images, Thomas Huth, 2019/04/12