Changeset abf04a54 in mainline for kernel/arch/amd64/include/asm.h
- Timestamp:
- 2011-08-20T13:39:25Z (13 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 4e6577c
- Parents:
- a0fc4be (diff), 667a4f8 (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the(diff)
links above to see all the changes relative to each parent. - File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
kernel/arch/amd64/include/asm.h
ra0fc4be rabf04a54 77 77 } 78 78 79 #define IO_SPACE_BOUNDARY ((void *) (64 * 1024)) 80 79 81 /** Byte from port 80 82 * … … 87 89 NO_TRACE static inline uint8_t pio_read_8(ioport8_t *port) 88 90 { 89 uint8_t val; 90 91 asm volatile ( 92 "inb %w[port], %b[val]\n" 93 : [val] "=a" (val) 94 : [port] "d" (port) 95 ); 96 97 return val; 91 if (port < (ioport8_t *) IO_SPACE_BOUNDARY) { 92 uint8_t val; 93 asm volatile ( 94 "inb %w[port], %b[val]\n" 95 : [val] "=a" (val) 96 : [port] "d" (port) 97 ); 98 return val; 99 } else { 100 return (uint8_t) *port; 101 } 98 102 } 99 103 … … 108 112 NO_TRACE static inline uint16_t pio_read_16(ioport16_t *port) 109 113 { 110 uint16_t val; 111 112 asm volatile ( 113 "inw %w[port], %w[val]\n" 114 : [val] "=a" (val) 115 : [port] "d" (port) 116 ); 117 118 return val; 114 if (port < (ioport16_t *) IO_SPACE_BOUNDARY) { 115 uint16_t val; 116 asm volatile ( 117 "inw %w[port], %w[val]\n" 118 : [val] "=a" (val) 119 : [port] "d" (port) 120 ); 121 return val; 122 } else { 123 return (uint16_t) *port; 124 } 119 125 } 120 126 … … 129 135 NO_TRACE static inline uint32_t pio_read_32(ioport32_t *port) 130 136 { 131 uint32_t val; 132 133 asm volatile ( 134 "inl %w[port], %[val]\n" 135 : [val] "=a" (val) 136 : [port] "d" (port) 137 ); 138 139 return val; 137 if (port < (ioport32_t *) IO_SPACE_BOUNDARY) { 138 uint32_t val; 139 asm volatile ( 140 "inl %w[port], %[val]\n" 141 : [val] "=a" (val) 142 : [port] "d" (port) 143 ); 144 return val; 145 } else { 146 return (uint32_t) *port; 147 } 140 148 } 141 149 … … 150 158 NO_TRACE static inline void pio_write_8(ioport8_t *port, uint8_t val) 151 159 { 152 asm volatile ( 153 "outb %b[val], %w[port]\n" 154 :: [val] "a" (val), 155 [port] "d" (port) 156 ); 160 if (port < (ioport8_t *) IO_SPACE_BOUNDARY) { 161 asm volatile ( 162 "outb %b[val], %w[port]\n" 163 :: [val] "a" (val), [port] "d" (port) 164 ); 165 } else { 166 *port = val; 167 } 157 168 } 158 169 … … 167 178 NO_TRACE static inline void pio_write_16(ioport16_t *port, uint16_t val) 168 179 { 169 asm volatile ( 170 "outw %w[val], %w[port]\n" 171 :: [val] "a" (val), 172 [port] "d" (port) 173 ); 180 if (port < (ioport16_t *) IO_SPACE_BOUNDARY) { 181 asm volatile ( 182 "outw %w[val], %w[port]\n" 183 :: [val] "a" (val), [port] "d" (port) 184 ); 185 } else { 186 *port = val; 187 } 174 188 } 175 189 … … 184 198 NO_TRACE static inline void pio_write_32(ioport32_t *port, uint32_t val) 185 199 { 186 asm volatile ( 187 "outl %[val], %w[port]\n" 188 :: [val] "a" (val), 189 [port] "d" (port) 190 ); 200 if (port < (ioport32_t *) IO_SPACE_BOUNDARY) { 201 asm volatile ( 202 "outl %[val], %w[port]\n" 203 :: [val] "a" (val), [port] "d" (port) 204 ); 205 } else { 206 *port = val; 207 } 191 208 } 192 209
Note:
See TracChangeset
for help on using the changeset viewer.