Carl-Daniel Hailfinger | 5d5c072 | 2009-12-14 03:32:24 +0000 | [diff] [blame] | 1 | /* |
| 2 | * This file is part of the flashrom project. |
| 3 | * |
| 4 | * Copyright (C) 2009 Carl-Daniel Hailfinger |
| 5 | * |
| 6 | * This program is free software; you can redistribute it and/or modify |
| 7 | * it under the terms of the GNU General Public License as published by |
| 8 | * the Free Software Foundation; version 2 of the License. |
| 9 | * |
| 10 | * This program is distributed in the hope that it will be useful, |
| 11 | * but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 12 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| 13 | * GNU General Public License for more details. |
| 14 | * |
| 15 | * You should have received a copy of the GNU General Public License |
| 16 | * along with this program; if not, write to the Free Software |
| 17 | * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA |
Uwe Hermann | 4395970 | 2010-03-13 17:28:29 +0000 | [diff] [blame] | 18 | */ |
| 19 | |
| 20 | /* |
Carl-Daniel Hailfinger | 5d5c072 | 2009-12-14 03:32:24 +0000 | [diff] [blame] | 21 | * Header file for hardware access and OS abstraction. Included from flash.h. |
| 22 | */ |
| 23 | |
| 24 | #ifndef __HWACCESS_H__ |
| 25 | #define __HWACCESS_H__ 1 |
| 26 | |
Carl-Daniel Hailfinger | cceafa2 | 2010-05-26 01:45:41 +0000 | [diff] [blame] | 27 | #if defined (__i386__) || defined (__x86_64__) |
Carl-Daniel Hailfinger | 5d5c072 | 2009-12-14 03:32:24 +0000 | [diff] [blame] | 28 | #if defined(__GLIBC__) |
| 29 | #include <sys/io.h> |
| 30 | #endif |
Carl-Daniel Hailfinger | cceafa2 | 2010-05-26 01:45:41 +0000 | [diff] [blame] | 31 | #endif |
| 32 | |
Carl-Daniel Hailfinger | 5d5c072 | 2009-12-14 03:32:24 +0000 | [diff] [blame] | 33 | #if NEED_PCI == 1 |
Carl-Daniel Hailfinger | 7237683 | 2010-06-25 13:18:48 +0000 | [diff] [blame] | 34 | /* |
| 35 | * libpci headers use the variable name "index" which triggers shadowing |
| 36 | * warnings on systems which have the index() function in a default #include |
| 37 | * or as builtin. |
| 38 | */ |
| 39 | #define index shadow_workaround_index |
Carl-Daniel Hailfinger | 5d5c072 | 2009-12-14 03:32:24 +0000 | [diff] [blame] | 40 | #include <pci/pci.h> |
Carl-Daniel Hailfinger | 7237683 | 2010-06-25 13:18:48 +0000 | [diff] [blame] | 41 | #undef index |
Carl-Daniel Hailfinger | 5d5c072 | 2009-12-14 03:32:24 +0000 | [diff] [blame] | 42 | #endif |
| 43 | |
Carl-Daniel Hailfinger | cceafa2 | 2010-05-26 01:45:41 +0000 | [diff] [blame] | 44 | #if defined (__i386__) || defined (__x86_64__) |
| 45 | |
| 46 | /* All x86 is little-endian. */ |
| 47 | #define __FLASHROM_LITTLE_ENDIAN__ 1 |
| 48 | |
| 49 | #elif defined (__mips) || defined (__mips__) || defined (_mips) || defined (mips) |
| 50 | |
| 51 | /* MIPS can be either endian. */ |
| 52 | #if defined (__MIPSEL) || defined (__MIPSEL__) || defined (_MIPSEL) || defined (MIPSEL) |
| 53 | #define __FLASHROM_LITTLE_ENDIAN__ 1 |
| 54 | #elif defined (__MIPSEB) || defined (__MIPSEB__) || defined (_MIPSEB) || defined (MIPSEB) |
| 55 | #define __FLASHROM_BIG_ENDIAN__ 1 |
| 56 | #endif |
| 57 | |
| 58 | #elif defined(__powerpc__) || defined(__powerpc64__) || defined(__ppc__) || defined(__ppc64__) |
| 59 | |
| 60 | /* PowerPC can be either endian. */ |
| 61 | #if defined (_BIG_ENDIAN) || defined (__BIG_ENDIAN__) |
| 62 | #define __FLASHROM_BIG_ENDIAN__ 1 |
| 63 | /* Error checking in case some weird header has #defines for LE as well. */ |
| 64 | #if defined (_LITTLE_ENDIAN) || defined (__LITTLE_ENDIAN__) |
| 65 | #error Conflicting endianness #define |
| 66 | #endif |
| 67 | #else |
| 68 | #error Little-endian PowerPC #defines are unknown |
| 69 | #endif |
| 70 | |
David Hendricks | b286da7 | 2012-02-13 00:35:35 +0000 | [diff] [blame] | 71 | #elif defined (__arm__) |
| 72 | #if defined (__ARMEL__) |
| 73 | #define __FLASHROM_LITTLE_ENDIAN__ 1 |
| 74 | #else |
| 75 | #error Big-endian ARM #defines are unknown |
| 76 | #endif |
| 77 | |
Carl-Daniel Hailfinger | cceafa2 | 2010-05-26 01:45:41 +0000 | [diff] [blame] | 78 | #endif |
| 79 | |
| 80 | #if !defined (__FLASHROM_BIG_ENDIAN__) && !defined (__FLASHROM_LITTLE_ENDIAN__) |
| 81 | /* Nonstandard libc-specific macros for determining endianness. */ |
| 82 | #if defined(__GLIBC__) |
| 83 | #include <endian.h> |
| 84 | #if BYTE_ORDER == LITTLE_ENDIAN |
| 85 | #define __FLASHROM_LITTLE_ENDIAN__ 1 |
| 86 | #elif BYTE_ORDER == BIG_ENDIAN |
| 87 | #define __FLASHROM_BIG_ENDIAN__ 1 |
| 88 | #endif |
| 89 | #endif |
| 90 | #endif |
| 91 | |
| 92 | #if !defined (__FLASHROM_BIG_ENDIAN__) && !defined (__FLASHROM_LITTLE_ENDIAN__) |
| 93 | #error Unable to determine endianness. Please add support for your arch or libc. |
| 94 | #endif |
| 95 | |
| 96 | #define ___constant_swab8(x) ((uint8_t) ( \ |
| 97 | (((uint8_t)(x) & (uint8_t)0xffU)))) |
| 98 | |
| 99 | #define ___constant_swab16(x) ((uint16_t) ( \ |
| 100 | (((uint16_t)(x) & (uint16_t)0x00ffU) << 8) | \ |
| 101 | (((uint16_t)(x) & (uint16_t)0xff00U) >> 8))) |
| 102 | |
| 103 | #define ___constant_swab32(x) ((uint32_t) ( \ |
| 104 | (((uint32_t)(x) & (uint32_t)0x000000ffUL) << 24) | \ |
| 105 | (((uint32_t)(x) & (uint32_t)0x0000ff00UL) << 8) | \ |
| 106 | (((uint32_t)(x) & (uint32_t)0x00ff0000UL) >> 8) | \ |
| 107 | (((uint32_t)(x) & (uint32_t)0xff000000UL) >> 24))) |
| 108 | |
| 109 | #define ___constant_swab64(x) ((uint64_t) ( \ |
| 110 | (((uint64_t)(x) & (uint64_t)0x00000000000000ffULL) << 56) | \ |
| 111 | (((uint64_t)(x) & (uint64_t)0x000000000000ff00ULL) << 40) | \ |
| 112 | (((uint64_t)(x) & (uint64_t)0x0000000000ff0000ULL) << 24) | \ |
| 113 | (((uint64_t)(x) & (uint64_t)0x00000000ff000000ULL) << 8) | \ |
| 114 | (((uint64_t)(x) & (uint64_t)0x000000ff00000000ULL) >> 8) | \ |
| 115 | (((uint64_t)(x) & (uint64_t)0x0000ff0000000000ULL) >> 24) | \ |
| 116 | (((uint64_t)(x) & (uint64_t)0x00ff000000000000ULL) >> 40) | \ |
| 117 | (((uint64_t)(x) & (uint64_t)0xff00000000000000ULL) >> 56))) |
| 118 | |
| 119 | #if defined (__FLASHROM_BIG_ENDIAN__) |
| 120 | |
| 121 | #define cpu_to_le(bits) \ |
| 122 | static inline uint##bits##_t cpu_to_le##bits(uint##bits##_t val) \ |
| 123 | { \ |
| 124 | return ___constant_swab##bits(val); \ |
| 125 | } |
| 126 | |
| 127 | cpu_to_le(8) |
| 128 | cpu_to_le(16) |
| 129 | cpu_to_le(32) |
| 130 | cpu_to_le(64) |
| 131 | |
| 132 | #define cpu_to_be8 |
| 133 | #define cpu_to_be16 |
| 134 | #define cpu_to_be32 |
| 135 | #define cpu_to_be64 |
| 136 | |
| 137 | #elif defined (__FLASHROM_LITTLE_ENDIAN__) |
| 138 | |
| 139 | #define cpu_to_be(bits) \ |
| 140 | static inline uint##bits##_t cpu_to_be##bits(uint##bits##_t val) \ |
| 141 | { \ |
| 142 | return ___constant_swab##bits(val); \ |
| 143 | } |
| 144 | |
| 145 | cpu_to_be(8) |
| 146 | cpu_to_be(16) |
| 147 | cpu_to_be(32) |
| 148 | cpu_to_be(64) |
| 149 | |
| 150 | #define cpu_to_le8 |
| 151 | #define cpu_to_le16 |
| 152 | #define cpu_to_le32 |
| 153 | #define cpu_to_le64 |
| 154 | |
| 155 | #else |
| 156 | |
| 157 | #error Could not determine endianness. |
| 158 | |
| 159 | #endif |
| 160 | |
| 161 | #define be_to_cpu8 cpu_to_be8 |
| 162 | #define be_to_cpu16 cpu_to_be16 |
| 163 | #define be_to_cpu32 cpu_to_be32 |
| 164 | #define be_to_cpu64 cpu_to_be64 |
| 165 | #define le_to_cpu8 cpu_to_le8 |
| 166 | #define le_to_cpu16 cpu_to_le16 |
| 167 | #define le_to_cpu32 cpu_to_le32 |
| 168 | #define le_to_cpu64 cpu_to_le64 |
| 169 | |
Carl-Daniel Hailfinger | 41bea03 | 2010-07-29 13:17:37 +0000 | [diff] [blame] | 170 | #if NEED_PCI == 1 |
Carl-Daniel Hailfinger | cceafa2 | 2010-05-26 01:45:41 +0000 | [diff] [blame] | 171 | #if defined (__i386__) || defined (__x86_64__) |
| 172 | |
| 173 | #define __FLASHROM_HAVE_OUTB__ 1 |
| 174 | |
Carl-Daniel Hailfinger | 5d5c072 | 2009-12-14 03:32:24 +0000 | [diff] [blame] | 175 | /* for iopl and outb under Solaris */ |
| 176 | #if defined (__sun) && (defined(__i386) || defined(__amd64)) |
Carl-Daniel Hailfinger | 5d5c072 | 2009-12-14 03:32:24 +0000 | [diff] [blame] | 177 | #include <sys/sysi86.h> |
| 178 | #include <sys/psw.h> |
| 179 | #include <asm/sunddi.h> |
| 180 | #endif |
| 181 | |
Carl-Daniel Hailfinger | 0d974e7 | 2010-07-17 12:54:09 +0000 | [diff] [blame] | 182 | /* Clarification about OUTB/OUTW/OUTL argument order: |
| 183 | * OUT[BWL](val, port) |
| 184 | */ |
| 185 | |
Carl-Daniel Hailfinger | 5d5c072 | 2009-12-14 03:32:24 +0000 | [diff] [blame] | 186 | #if defined(__FreeBSD__) || defined(__DragonFly__) |
Carl-Daniel Hailfinger | a5eecda | 2012-02-25 22:50:21 +0000 | [diff] [blame] | 187 | /* Note that Debian/kFreeBSD (FreeBSD kernel with glibc) has conflicting |
| 188 | * out[bwl] definitions in machine/cpufunc.h and sys/io.h at least in some |
| 189 | * versions. Use machine/cpufunc.h only for plain FreeBSD/DragonFlyBSD. |
| 190 | */ |
Carl-Daniel Hailfinger | 5d5c072 | 2009-12-14 03:32:24 +0000 | [diff] [blame] | 191 | #include <machine/cpufunc.h> |
| 192 | #define off64_t off_t |
| 193 | #define lseek64 lseek |
Michael Karcher | e7f3209 | 2010-01-12 15:36:24 +0000 | [diff] [blame] | 194 | #define OUTB(x, y) do { u_int outb_tmp = (y); outb(outb_tmp, (x)); } while (0) |
| 195 | #define OUTW(x, y) do { u_int outw_tmp = (y); outw(outw_tmp, (x)); } while (0) |
| 196 | #define OUTL(x, y) do { u_int outl_tmp = (y); outl(outl_tmp, (x)); } while (0) |
| 197 | #define INB(x) __extension__ ({ u_int inb_tmp = (x); inb(inb_tmp); }) |
| 198 | #define INW(x) __extension__ ({ u_int inw_tmp = (x); inw(inw_tmp); }) |
| 199 | #define INL(x) __extension__ ({ u_int inl_tmp = (x); inl(inl_tmp); }) |
Carl-Daniel Hailfinger | 5d5c072 | 2009-12-14 03:32:24 +0000 | [diff] [blame] | 200 | #else |
Carl-Daniel Hailfinger | 60d9bd2 | 2012-08-09 23:34:41 +0000 | [diff] [blame] | 201 | #if defined(__MACH__) && defined(__APPLE__) |
Carl-Daniel Hailfinger | f992c19 | 2010-10-06 23:16:10 +0000 | [diff] [blame] | 202 | /* Header is part of the DirectHW library. */ |
Stefan Reinauer | 83704c5 | 2011-03-18 22:00:15 +0000 | [diff] [blame] | 203 | #include <DirectHW/DirectHW.h> |
Carl-Daniel Hailfinger | 5d5c072 | 2009-12-14 03:32:24 +0000 | [diff] [blame] | 204 | #define off64_t off_t |
| 205 | #define lseek64 lseek |
| 206 | #endif |
| 207 | #if defined (__sun) && (defined(__i386) || defined(__amd64)) |
| 208 | /* Note different order for outb */ |
| 209 | #define OUTB(x,y) outb(y, x) |
| 210 | #define OUTW(x,y) outw(y, x) |
| 211 | #define OUTL(x,y) outl(y, x) |
| 212 | #define INB inb |
| 213 | #define INW inw |
| 214 | #define INL inl |
| 215 | #else |
Rudolf Marek | 03ae5c1 | 2010-03-16 23:59:19 +0000 | [diff] [blame] | 216 | |
| 217 | #ifdef __DJGPP__ |
| 218 | |
| 219 | #include <pc.h> |
| 220 | |
| 221 | #define OUTB(x,y) outportb(y, x) |
| 222 | #define OUTW(x,y) outportw(y, x) |
| 223 | #define OUTL(x,y) outportl(y, x) |
| 224 | |
| 225 | #define INB inportb |
| 226 | #define INW inportw |
| 227 | #define INL inportl |
| 228 | |
Uwe Hermann | 91f4afa | 2011-07-28 08:13:25 +0000 | [diff] [blame] | 229 | #else |
Carl-Daniel Hailfinger | a5eecda | 2012-02-25 22:50:21 +0000 | [diff] [blame] | 230 | /* This is the usual glibc interface. */ |
Carl-Daniel Hailfinger | 5d5c072 | 2009-12-14 03:32:24 +0000 | [diff] [blame] | 231 | #define OUTB outb |
| 232 | #define OUTW outw |
| 233 | #define OUTL outl |
| 234 | #define INB inb |
| 235 | #define INW inw |
| 236 | #define INL inl |
Rudolf Marek | 03ae5c1 | 2010-03-16 23:59:19 +0000 | [diff] [blame] | 237 | |
| 238 | #endif |
| 239 | |
Carl-Daniel Hailfinger | 5d5c072 | 2009-12-14 03:32:24 +0000 | [diff] [blame] | 240 | #endif |
| 241 | #endif |
| 242 | |
Carl-Daniel Hailfinger | b63b067 | 2010-07-02 17:12:50 +0000 | [diff] [blame] | 243 | #if defined(__NetBSD__) || defined (__OpenBSD__) |
Jonathan A. Kollasch | 3646c8f | 2010-01-08 21:18:08 +0000 | [diff] [blame] | 244 | #define off64_t off_t |
| 245 | #define lseek64 lseek |
| 246 | #if defined(__i386__) || defined(__x86_64__) |
| 247 | #include <sys/types.h> |
| 248 | #include <machine/sysarch.h> |
Carl-Daniel Hailfinger | b63b067 | 2010-07-02 17:12:50 +0000 | [diff] [blame] | 249 | #if defined(__NetBSD__) |
Jonathan A. Kollasch | 3646c8f | 2010-01-08 21:18:08 +0000 | [diff] [blame] | 250 | #if defined(__i386__) |
| 251 | #define iopl i386_iopl |
| 252 | #elif defined(__x86_64__) |
| 253 | #define iopl x86_64_iopl |
| 254 | #endif |
Carl-Daniel Hailfinger | b63b067 | 2010-07-02 17:12:50 +0000 | [diff] [blame] | 255 | #elif defined (__OpenBSD__) |
| 256 | #if defined(__i386__) |
| 257 | #define iopl i386_iopl |
| 258 | #elif defined(__amd64__) |
| 259 | #define iopl amd64_iopl |
| 260 | #endif |
| 261 | #endif |
Jonathan A. Kollasch | 3646c8f | 2010-01-08 21:18:08 +0000 | [diff] [blame] | 262 | |
Uwe Hermann | 4395970 | 2010-03-13 17:28:29 +0000 | [diff] [blame] | 263 | static inline void outb(uint8_t value, uint16_t port) |
Jonathan A. Kollasch | 3646c8f | 2010-01-08 21:18:08 +0000 | [diff] [blame] | 264 | { |
Carl-Daniel Hailfinger | 1c6d2ff | 2012-08-27 00:44:42 +0000 | [diff] [blame^] | 265 | __asm__ volatile ("outb %b0,%w1": :"a" (value), "Nd" (port)); |
Jonathan A. Kollasch | 3646c8f | 2010-01-08 21:18:08 +0000 | [diff] [blame] | 266 | } |
| 267 | |
Uwe Hermann | 4395970 | 2010-03-13 17:28:29 +0000 | [diff] [blame] | 268 | static inline uint8_t inb(uint16_t port) |
Jonathan A. Kollasch | 3646c8f | 2010-01-08 21:18:08 +0000 | [diff] [blame] | 269 | { |
| 270 | uint8_t value; |
Carl-Daniel Hailfinger | 1c6d2ff | 2012-08-27 00:44:42 +0000 | [diff] [blame^] | 271 | __asm__ volatile ("inb %w1,%0":"=a" (value):"Nd" (port)); |
Jonathan A. Kollasch | 3646c8f | 2010-01-08 21:18:08 +0000 | [diff] [blame] | 272 | return value; |
| 273 | } |
| 274 | |
Uwe Hermann | 4395970 | 2010-03-13 17:28:29 +0000 | [diff] [blame] | 275 | static inline void outw(uint16_t value, uint16_t port) |
Jonathan A. Kollasch | 3646c8f | 2010-01-08 21:18:08 +0000 | [diff] [blame] | 276 | { |
Carl-Daniel Hailfinger | 1c6d2ff | 2012-08-27 00:44:42 +0000 | [diff] [blame^] | 277 | __asm__ volatile ("outw %w0,%w1": :"a" (value), "Nd" (port)); |
Jonathan A. Kollasch | 3646c8f | 2010-01-08 21:18:08 +0000 | [diff] [blame] | 278 | } |
| 279 | |
Uwe Hermann | 4395970 | 2010-03-13 17:28:29 +0000 | [diff] [blame] | 280 | static inline uint16_t inw(uint16_t port) |
Jonathan A. Kollasch | 3646c8f | 2010-01-08 21:18:08 +0000 | [diff] [blame] | 281 | { |
| 282 | uint16_t value; |
Carl-Daniel Hailfinger | 1c6d2ff | 2012-08-27 00:44:42 +0000 | [diff] [blame^] | 283 | __asm__ volatile ("inw %w1,%0":"=a" (value):"Nd" (port)); |
Jonathan A. Kollasch | 3646c8f | 2010-01-08 21:18:08 +0000 | [diff] [blame] | 284 | return value; |
| 285 | } |
| 286 | |
Uwe Hermann | 4395970 | 2010-03-13 17:28:29 +0000 | [diff] [blame] | 287 | static inline void outl(uint32_t value, uint16_t port) |
Jonathan A. Kollasch | 3646c8f | 2010-01-08 21:18:08 +0000 | [diff] [blame] | 288 | { |
Carl-Daniel Hailfinger | 1c6d2ff | 2012-08-27 00:44:42 +0000 | [diff] [blame^] | 289 | __asm__ volatile ("outl %0,%w1": :"a" (value), "Nd" (port)); |
Jonathan A. Kollasch | 3646c8f | 2010-01-08 21:18:08 +0000 | [diff] [blame] | 290 | } |
| 291 | |
Uwe Hermann | 4395970 | 2010-03-13 17:28:29 +0000 | [diff] [blame] | 292 | static inline uint32_t inl(uint16_t port) |
Jonathan A. Kollasch | 3646c8f | 2010-01-08 21:18:08 +0000 | [diff] [blame] | 293 | { |
| 294 | uint32_t value; |
Carl-Daniel Hailfinger | 1c6d2ff | 2012-08-27 00:44:42 +0000 | [diff] [blame^] | 295 | __asm__ volatile ("inl %1,%0":"=a" (value):"Nd" (port)); |
Jonathan A. Kollasch | 3646c8f | 2010-01-08 21:18:08 +0000 | [diff] [blame] | 296 | return value; |
| 297 | } |
| 298 | #endif |
| 299 | #endif |
| 300 | |
Carl-Daniel Hailfinger | 60d9bd2 | 2012-08-09 23:34:41 +0000 | [diff] [blame] | 301 | #if !(defined(__MACH__) && defined(__APPLE__)) && !defined(__FreeBSD__) && !defined(__FreeBSD_kernel__) && !defined(__DragonFly__) && !defined(__LIBPAYLOAD__) |
Carl-Daniel Hailfinger | 5d5c072 | 2009-12-14 03:32:24 +0000 | [diff] [blame] | 302 | typedef struct { uint32_t hi, lo; } msr_t; |
| 303 | msr_t rdmsr(int addr); |
| 304 | int wrmsr(int addr, msr_t msr); |
| 305 | #endif |
Carl-Daniel Hailfinger | a5eecda | 2012-02-25 22:50:21 +0000 | [diff] [blame] | 306 | #if defined(__FreeBSD__) || defined(__FreeBSD_kernel__) || defined(__DragonFly__) |
Carl-Daniel Hailfinger | 5d5c072 | 2009-12-14 03:32:24 +0000 | [diff] [blame] | 307 | /* FreeBSD already has conflicting definitions for wrmsr/rdmsr. */ |
| 308 | #undef rdmsr |
| 309 | #undef wrmsr |
| 310 | #define rdmsr freebsd_rdmsr |
| 311 | #define wrmsr freebsd_wrmsr |
| 312 | typedef struct { uint32_t hi, lo; } msr_t; |
| 313 | msr_t freebsd_rdmsr(int addr); |
| 314 | int freebsd_wrmsr(int addr, msr_t msr); |
| 315 | #endif |
Patrick Georgi | a9095a9 | 2010-09-30 17:03:32 +0000 | [diff] [blame] | 316 | #if defined(__LIBPAYLOAD__) |
| 317 | #include <arch/io.h> |
| 318 | #include <arch/msr.h> |
| 319 | typedef struct { uint32_t hi, lo; } msr_t; |
| 320 | msr_t libpayload_rdmsr(int addr); |
| 321 | int libpayload_wrmsr(int addr, msr_t msr); |
| 322 | #undef rdmsr |
| 323 | #define rdmsr libpayload_rdmsr |
| 324 | #define wrmsr libpayload_wrmsr |
| 325 | #endif |
Carl-Daniel Hailfinger | 5d5c072 | 2009-12-14 03:32:24 +0000 | [diff] [blame] | 326 | |
Carl-Daniel Hailfinger | cceafa2 | 2010-05-26 01:45:41 +0000 | [diff] [blame] | 327 | #elif defined(__powerpc__) || defined(__powerpc64__) || defined(__ppc__) || defined(__ppc64__) |
| 328 | |
| 329 | /* PCI port I/O is not yet implemented on PowerPC. */ |
| 330 | |
| 331 | #elif defined (__mips) || defined (__mips__) || defined (_mips) || defined (mips) |
| 332 | |
| 333 | /* PCI port I/O is not yet implemented on MIPS. */ |
| 334 | |
David Hendricks | b286da7 | 2012-02-13 00:35:35 +0000 | [diff] [blame] | 335 | #elif defined(__arm__) |
| 336 | |
| 337 | /* Non memory mapped I/O is not supported on ARM. */ |
| 338 | |
Carl-Daniel Hailfinger | cceafa2 | 2010-05-26 01:45:41 +0000 | [diff] [blame] | 339 | #else |
| 340 | |
| 341 | #error Unknown architecture, please check if it supports PCI port IO. |
| 342 | |
| 343 | #endif |
Carl-Daniel Hailfinger | 41bea03 | 2010-07-29 13:17:37 +0000 | [diff] [blame] | 344 | #endif |
Carl-Daniel Hailfinger | cceafa2 | 2010-05-26 01:45:41 +0000 | [diff] [blame] | 345 | |
Carl-Daniel Hailfinger | 5d5c072 | 2009-12-14 03:32:24 +0000 | [diff] [blame] | 346 | #endif /* !__HWACCESS_H__ */ |