Merge remote-tracking branch 'remotes/vivier/tags/m68k-for-6.0-pull-request' into...
[qemu/ar7.git] / pc-bios / optionrom / optrom.h
blob357819259aa7500d99a301de6b3d0f70592e611d
1 /*
2 * Common Option ROM Functions for C code
4 * This program is free software; you can redistribute it and/or modify
5 * it under the terms of the GNU General Public License as published by
6 * the Free Software Foundation; either version 2 of the License, or
7 * (at your option) any later version.
9 * This program is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 * GNU General Public License for more details.
14 * You should have received a copy of the GNU General Public License
15 * along with this program; if not, see <http://www.gnu.org/licenses/>.
17 * Copyright (c) 2015-2019 Red Hat Inc.
18 * Authors:
19 * Marc MarĂ­ <marc.mari.barcelo@gmail.com>
20 * Richard W.M. Jones <rjones@redhat.com>
21 * Stefano Garzarella <sgarzare@redhat.com>
24 #ifndef OPTROM_H
25 #define OPTROM_H
27 #include <stdint.h>
28 #include "../../include/standard-headers/linux/qemu_fw_cfg.h"
30 #define barrier() asm("" : : : "memory")
32 #ifdef __clang__
33 #define ADDR32
34 #else
35 #define ADDR32 "addr32 "
36 #endif
38 static inline void outb(uint8_t value, uint16_t port)
40 asm volatile("outb %0, %w1" : : "a"(value), "Nd"(port));
43 static inline void outw(uint16_t value, uint16_t port)
45 asm volatile("outw %0, %w1" : : "a"(value), "Nd"(port));
48 static inline void outl(uint32_t value, uint16_t port)
50 asm volatile("outl %0, %w1" : : "a"(value), "Nd"(port));
53 static inline uint8_t inb(uint16_t port)
55 uint8_t value;
57 asm volatile("inb %w1, %0" : "=a"(value) : "Nd"(port));
58 return value;
61 static inline uint16_t inw(uint16_t port)
63 uint16_t value;
65 asm volatile("inw %w1, %0" : "=a"(value) : "Nd"(port));
66 return value;
69 static inline uint32_t inl(uint16_t port)
71 uint32_t value;
73 asm volatile("inl %w1, %0" : "=a"(value) : "Nd"(port));
74 return value;
77 static inline void insb(uint16_t port, uint8_t *buf, uint32_t len)
79 asm volatile("rep insb %%dx, %%es:(%%edi)"
80 : "+c"(len), "+D"(buf) : "d"(port) : "memory");
83 static inline uint32_t bswap32(uint32_t x)
85 asm("bswapl %0" : "=r" (x) : "0" (x));
86 return x;
89 static inline uint64_t bswap64(uint64_t x)
91 asm("bswapl %%eax; bswapl %%edx; xchg %%eax, %%edx" : "=A" (x) : "0" (x));
92 return x;
95 static inline uint64_t cpu_to_be64(uint64_t x)
97 return bswap64(x);
100 static inline uint32_t cpu_to_be32(uint32_t x)
102 return bswap32(x);
105 static inline uint32_t be32_to_cpu(uint32_t x)
107 return bswap32(x);
110 #endif /* OPTROM_H */