Changeset 1ae8f2b in mainline
- Timestamp:
- 2009-03-03T22:56:33Z (16 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 9cd98796
- Parents:
- 06f96234
- Location:
- uspace/lib/libc
- Files:
-
- 4 added
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/libc/arch/ia32/include/ddi.h
r06f96234 r1ae8f2b 34 34 #define LIBC_ia32_DDI_H_ 35 35 36 #include <sys/types.h> 37 #include <libarch/types.h> 38 36 39 #define IO_SPACE_BOUNDARY ((void *) (64 * 1024)) 37 40 38 static inline void outb(int16_t port, uint8_t b) 39 { 40 asm volatile ("outb %0, %1\n" :: "a" (b), "d" (port)); 41 } 42 43 static inline void outw(int16_t port, int16_t w) 44 { 45 asm volatile ("outw %0, %1\n" :: "a" (w), "d" (port)); 46 } 47 48 static inline void outl(int16_t port, uint32_t l) 49 { 50 asm volatile ("outl %0, %1\n" :: "a" (l), "d" (port)); 51 } 52 53 static inline uint8_t inb(int16_t port) 41 static inline uint8_t pio_read_8(ioport8_t *port) 54 42 { 55 43 uint8_t val; 56 57 asm volatile ("inb %1, %0 \n" : "=a" (val) : "d"(port)); 44 45 asm volatile ( 46 "inb %w[port], %b[val]\n" 47 : [val] "=a" (val) 48 : [port] "d" (port) 49 ); 50 58 51 return val; 59 52 } 60 53 61 static inline int16_t inw(int16_tport)54 static inline uint16_t pio_read_16(ioport16_t *port) 62 55 { 63 int16_t val; 64 65 asm volatile ("inw %1, %0 \n" : "=a" (val) : "d"(port)); 56 uint16_t val; 57 58 asm volatile ( 59 "inw %w[port], %w[val]\n" 60 : [val] "=a" (val) 61 : [port] "d" (port) 62 ); 63 66 64 return val; 67 65 } 68 66 69 static inline uint32_t inl(int16_tport)67 static inline uint32_t pio_read_32(ioport32_t *port) 70 68 { 71 69 uint32_t val; 72 73 asm volatile ("inl %1, %0 \n" : "=a" (val) : "d"(port)); 70 71 asm volatile ( 72 "inl %w[port], %[val]\n" 73 : [val] "=a" (val) 74 : [port] "d" (port) 75 ); 76 74 77 return val; 75 78 } 76 79 80 static inline void pio_write_8(ioport8_t *port, uint8_t val) 81 { 82 asm volatile ( 83 "outb %b[val], %w[port]\n" 84 :: [val] "a" (val), [port] "d" (port) 85 ); 86 } 87 88 static inline void pio_write_16(ioport16_t *port, uint16_t val) 89 { 90 asm volatile ( 91 "outw %w[val], %w[port]\n" 92 :: [val] "a" (val), [port] "d" (port) 93 ); 94 } 95 96 static inline void pio_write_32(ioport32_t *port, uint32_t val) 97 { 98 asm volatile ( 99 "outl %[val], %w[port]\n" 100 :: [val] "a" (val), [port] "d" (port) 101 ); 102 } 103 77 104 #endif -
uspace/lib/libc/arch/ia64/include/ddi.h
r06f96234 r1ae8f2b 1 1 /* 2 * Copyright (c) 2005 Jakub Jermar, JakubVana2 * Copyright (c) 2005 Jakub Vana 3 3 * All rights reserved. 4 4 * … … 27 27 */ 28 28 29 /** @addtogroup ia6429 /** @addtogroup libcia64 30 30 * @{ 31 31 */ … … 36 36 #define LIBC_ia64_DDI_H_ 37 37 38 #include <sys/types.h> 38 39 #include <libarch/types.h> 39 40 40 typedef uint64_t ioport_t; 41 #define IO_SPACE_BOUNDARY (64 * 1024) 41 42 42 43 uint64_t get_ia64_iospace_address(void); … … 44 45 extern uint64_t ia64_iospace_address; 45 46 46 #define IA64_IOSPACE_ADDRESS (ia64_iospace_address?ia64_iospace_address:(ia64_iospace_address=get_ia64_iospace_address())) 47 #define IA64_IOSPACE_ADDRESS \ 48 (ia64_iospace_address ? \ 49 ia64_iospace_address : \ 50 (ia64_iospace_address = get_ia64_iospace_address())) 47 51 48 static inline void outb(ioport_t port,uint8_t v)52 static inline void pio_write_8(ioport8_t *port, uint8_t v) 49 53 { 50 *((uint8_t *)(IA64_IOSPACE_ADDRESS + ( (port & 0xfff) | ( (port >> 2) << 12 )))) = v; 54 uintptr_t prt = (uintptr_t) port; 55 56 *((uint8_t *)(IA64_IOSPACE_ADDRESS + 57 ((prt & 0xfff) | ((prt >> 2) << 12)))) = v; 51 58 52 59 asm volatile ("mf\n" ::: "memory"); 53 60 } 54 61 55 static inline void outw(ioport_t port,uint16_t v)62 static inline void pio_write_16(ioport16_t *port, uint16_t v) 56 63 { 57 *((uint16_t *)(IA64_IOSPACE_ADDRESS + ( (port & 0xfff) | ( (port >> 2) << 12 )))) = v; 64 uintptr_t prt = (uintptr_t) port; 65 66 *((uint16_t *)(IA64_IOSPACE_ADDRESS + 67 ((prt & 0xfff) | ((prt >> 2) << 12)))) = v; 58 68 59 69 asm volatile ("mf\n" ::: "memory"); 60 70 } 61 71 62 static inline void outl(ioport_t port,uint32_t v)72 static inline void pio_write_32(ioport32_t *port, uint32_t v) 63 73 { 64 *((uint32_t *)(IA64_IOSPACE_ADDRESS + ( (port & 0xfff) | ( (port >> 2) << 12 )))) = v; 74 uintptr_t prt = (uintptr_t) port; 75 76 *((uint32_t *)(IA64_IOSPACE_ADDRESS + 77 ((prt & 0xfff) | ((prt >> 2) << 12)))) = v; 65 78 66 79 asm volatile ("mf\n" ::: "memory"); 67 80 } 68 81 82 static inline uint8_t pio_read_8(ioport8_t *port) 83 { 84 uintptr_t prt = (uintptr_t) port; 69 85 70 71 static inline uint8_t inb(ioport_t port)72 {73 86 asm volatile ("mf\n" ::: "memory"); 74 87 75 return *((uint8_t *)(IA64_IOSPACE_ADDRESS + ( (port & 0xfff) | ( (port >> 2) << 12 )))); 88 return *((uint8_t *)(IA64_IOSPACE_ADDRESS + 89 ((prt & 0xfff) | ((prt >> 2) << 12)))); 76 90 } 77 91 78 static inline uint16_t inw(ioport_tport)92 static inline uint16_t pio_read_16(ioport16_t *port) 79 93 { 94 uintptr_t prt = (uintptr_t) port; 95 80 96 asm volatile ("mf\n" ::: "memory"); 81 97 82 return *((uint16_t *)(IA64_IOSPACE_ADDRESS + ( (port & 0xffE) | ( (port >> 2) << 12 )))); 98 return *((uint16_t *)(IA64_IOSPACE_ADDRESS + 99 ((prt & 0xffE) | ((prt >> 2) << 12)))); 83 100 } 84 101 85 static inline uint32_t inl(ioport_tport)102 static inline uint32_t pio_read_32(ioport32_t *port) 86 103 { 104 uintptr_t prt = (uintptr_t) port; 105 87 106 asm volatile ("mf\n" ::: "memory"); 88 107 89 return *((uint32_t *)(IA64_IOSPACE_ADDRESS + ( (port & 0xfff) | ( (port >> 2) << 12 )))); 108 return *((uint32_t *)(IA64_IOSPACE_ADDRESS + 109 ((prt & 0xfff) | ((prt >> 2) << 12)))); 90 110 } 91 92 93 94 111 95 112 #endif -
uspace/lib/libc/generic/ddi.c
r06f96234 r1ae8f2b 34 34 35 35 #include <ddi.h> 36 #include <libarch/ddi.h> 36 37 #include <libc.h> 37 38 #include <task.h> -
uspace/lib/libc/include/sys/types.h
r06f96234 r1ae8f2b 43 43 typedef int mode_t; 44 44 45 typedef volatile uint8_t ioport8_t; 46 typedef volatile uint16_t ioport16_t; 47 typedef volatile uint32_t ioport32_t; 48 45 49 #endif 46 50
Note:
See TracChangeset
for help on using the changeset viewer.