]> git.proxmox.com Git - qemu.git/blame - pc-bios/s390-ccw/s390-ccw.h
Merge remote-tracking branch 'quintela/migration.next' into staging
[qemu.git] / pc-bios / s390-ccw / s390-ccw.h
CommitLineData
c9c39d3b
AG
1/*
2 * S390 CCW boot loader
3 *
4 * Copyright (c) 2013 Alexander Graf <agraf@suse.de>
5 *
6 * This work is licensed under the terms of the GNU GPL, version 2 or (at
7 * your option) any later version. See the COPYING file in the top-level
8 * directory.
9 */
10
11#ifndef S390_CCW_H
12#define S390_CCW_H
13
14/* #define DEBUG */
15
16typedef unsigned char u8;
17typedef unsigned short u16;
18typedef unsigned int u32;
19typedef unsigned long long u64;
20typedef unsigned long ulong;
21typedef long size_t;
22typedef int bool;
23typedef unsigned char uint8_t;
24typedef unsigned short uint16_t;
25typedef unsigned int uint32_t;
26typedef unsigned long long uint64_t;
27typedef unsigned char __u8;
28typedef unsigned short __u16;
29typedef unsigned int __u32;
30typedef unsigned long long __u64;
31
32#define true 1
33#define false 0
34#define PAGE_SIZE 4096
35
36#ifndef EIO
37#define EIO 1
38#endif
39#ifndef EBUSY
40#define EBUSY 2
41#endif
42#ifndef NULL
43#define NULL 0
44#endif
45
46#include "cio.h"
47
7f61cbc1
CB
48/* start.s */
49void disabled_wait(void);
50
c9c39d3b
AG
51/* main.c */
52void virtio_panic(const char *string);
53
54/* sclp-ascii.c */
55void sclp_print(const char *string);
56void sclp_setup(void);
57
58/* virtio.c */
59unsigned long virtio_load_direct(ulong rec_list1, ulong rec_list2,
60 ulong subchan_id, void *load_addr);
61bool virtio_is_blk(struct subchannel_id schid);
62void virtio_setup_block(struct subchannel_id schid);
63int virtio_read(ulong sector, void *load_addr);
c8cda874 64int enable_mss_facility(void);
c9c39d3b
AG
65
66/* bootmap.c */
67int zipl_load(void);
68
69static inline void *memset(void *s, int c, size_t n)
70{
71 int i;
72 unsigned char *p = s;
73
74 for (i = 0; i < n; i++) {
75 p[i] = c;
76 }
77
78 return s;
79}
80
81static inline void fill_hex(char *out, unsigned char val)
82{
83 const char hex[] = "0123456789abcdef";
84
85 out[0] = hex[(val >> 4) & 0xf];
86 out[1] = hex[val & 0xf];
87}
88
89static inline void print_int(const char *desc, u64 addr)
90{
91 unsigned char *addr_c = (unsigned char*)&addr;
92 char out[] = ": 0xffffffffffffffff\n";
93 unsigned int i;
94
95 for (i = 0; i < sizeof(addr); i++) {
96 fill_hex(&out[4 + (i*2)], addr_c[i]);
97 }
98
99 sclp_print(desc);
100 sclp_print(out);
101}
102
103static inline void debug_print_int(const char *desc, u64 addr)
104{
105#ifdef DEBUG
106 print_int(desc, addr);
107#endif
108}
109
110static inline void debug_print_addr(const char *desc, void *p)
111{
112#ifdef DEBUG
113 debug_print_int(desc, (unsigned int)(unsigned long)p);
114#endif
115}
116
117/***********************************************
118 * Hypercall functions *
119 ***********************************************/
120
121#define KVM_S390_VIRTIO_NOTIFY 0
122#define KVM_S390_VIRTIO_RESET 1
123#define KVM_S390_VIRTIO_SET_STATUS 2
124#define KVM_S390_VIRTIO_CCW_NOTIFY 3
125
126static inline void yield(void)
127{
128 asm volatile ("diag 0,0,0x44"
129 : :
130 : "memory", "cc");
131}
132
133#define SECTOR_SIZE 512
134
135#endif /* S390_CCW_H */