Changeset 7d60cf5 in mainline for kernel/arch/ia32/include/asm.h
- Timestamp:
- 2009-02-19T21:58:37Z (16 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 5cb223f
- Parents:
- 4b44099d
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
kernel/arch/ia32/include/asm.h
r4b44099d r7d60cf5 106 106 * @param val Value to write 107 107 */ 108 static inline void pio_write_8( uint16_tport, uint8_t val)109 { 110 asm volatile ("outb %b0, %w1\n" : : "a" (val), "d" (port) 108 static inline void pio_write_8(ioport8_t *port, uint8_t val) 109 { 110 asm volatile ("outb %b0, %w1\n" : : "a" (val), "d" (port)); 111 111 } 112 112 … … 118 118 * @param val Value to write 119 119 */ 120 static inline void pio_write_16( uint16_tport, uint16_t val)121 { 122 asm volatile ("outw %w0, %w1\n" : : "a" (val), "d" (port) 120 static inline void pio_write_16(ioport16_t *port, uint16_t val) 121 { 122 asm volatile ("outw %w0, %w1\n" : : "a" (val), "d" (port)); 123 123 } 124 124 … … 130 130 * @param val Value to write 131 131 */ 132 static inline void pio_write_32( uint16_tport, uint32_t val)133 { 134 asm volatile ("outl %l0, %w1\n" : : "a" (val), "d" (port) 132 static inline void pio_write_32(ioport32_t *port, uint32_t val) 133 { 134 asm volatile ("outl %l0, %w1\n" : : "a" (val), "d" (port)); 135 135 } 136 136 … … 142 142 * @return Value read 143 143 */ 144 static inline uint8_t pio_read_8( uint16_tport)144 static inline uint8_t pio_read_8(ioport8_t *port) 145 145 { 146 146 uint8_t val; 147 147 148 asm volatile ("inb %w1, %b0 \n" : "=a" (val) : "d" (port) 148 asm volatile ("inb %w1, %b0 \n" : "=a" (val) : "d" (port)); 149 149 return val; 150 150 } … … 157 157 * @return Value read 158 158 */ 159 static inline uint16_t pio_read_16( uint16_tport)159 static inline uint16_t pio_read_16(ioport16_t *port) 160 160 { 161 161 uint16_t val; 162 162 163 asm volatile ("inw %w1, %w0 \n" : "=a" (val) : "d" (port) 163 asm volatile ("inw %w1, %w0 \n" : "=a" (val) : "d" (port)); 164 164 return val; 165 165 } … … 172 172 * @return Value read 173 173 */ 174 static inline uint32_t pio_read_32( uint16_tport)174 static inline uint32_t pio_read_32(ioport32_t *port) 175 175 { 176 176 uint32_t val; 177 177 178 asm volatile ("inl %w1, %l0 \n" : "=a" (val) : "d" (port) 178 asm volatile ("inl %w1, %l0 \n" : "=a" (val) : "d" (port)); 179 179 return val; 180 180 }
Note:
See TracChangeset
for help on using the changeset viewer.