2019-04-04 16:34:26 +02:00
|
|
|
/*
|
|
|
|
* Helper Functions
|
|
|
|
*
|
|
|
|
* Copyright (c) 2019 IBM Corp.
|
|
|
|
*
|
|
|
|
* Author(s): Jason J. Herne <jjherne@us.ibm.com>
|
|
|
|
*
|
|
|
|
* 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"
|
2020-06-24 09:52:17 +02:00
|
|
|
#include "s390-time.h"
|
2019-04-04 16:34:26 +02:00
|
|
|
|
|
|
|
/* Avoids compiler warnings when casting a pointer to a u32 */
|
|
|
|
static inline uint32_t ptr2u32(void *ptr)
|
|
|
|
{
|
2020-06-24 09:52:24 +02:00
|
|
|
IPL_assert((uint64_t)ptr <= 0xffffffffull, "ptr2u32: ptr too large");
|
2019-04-04 16:34:26 +02:00
|
|
|
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;
|
|
|
|
}
|
|
|
|
|
2020-06-24 09:52:17 +02:00
|
|
|
static inline void yield(void)
|
|
|
|
{
|
2021-05-12 19:15:48 +02:00
|
|
|
asm volatile ("diag %%r0,%%r0,0x44"
|
2020-06-24 09:52:17 +02:00
|
|
|
: :
|
|
|
|
: "memory", "cc");
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline void sleep(unsigned int seconds)
|
|
|
|
{
|
|
|
|
ulong target = get_time_seconds() + seconds;
|
|
|
|
|
|
|
|
while (get_time_seconds() < target) {
|
|
|
|
yield();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-04-04 16:34:26 +02:00
|
|
|
#endif
|