Changes in / [306061a:b64eac6] in mainline
- Files:
-
- 177 added
- 36 edited
Legend:
- Unmodified
- Added
- Removed
-
HelenOS.config
r306061a rb64eac6 547 547 548 548 % Launch (devman) test drivers 549 ! [CONFIG_DEBUG=y] CONFIG_TEST_DRIVERS (y/n) 550 549 ! [CONFIG_DEBUG=y] CONFIG_TEST_DRIVERS (n/y) 550 551 % Start virtual USB host controller 552 ! CONFIG_RUN_VIRTUAL_USB_HC (n/y) 553 -
Makefile
r306061a rb64eac6 106 106 $(MAKE) -C uspace clean 107 107 $(MAKE) -C boot clean 108 109 -include Makefile.local -
boot/Makefile.common
r306061a rb64eac6 139 139 $(USPACE_PATH)/app/ping/ping \ 140 140 $(USPACE_PATH)/app/stats/stats \ 141 $(USPACE_PATH)/app/sysinfo/sysinfo \ 142 $(USPACE_PATH)/app/tasks/tasks \ 141 143 $(USPACE_PATH)/app/top/top \ 142 $(USPACE_PATH)/app/sysinfo/sysinfo \ 144 $(USPACE_PATH)/app/usbinfo/usbinfo \ 145 $(USPACE_PATH)/app/virtusbkbd/vuk \ 146 $(USPACE_PATH)/app/virtusbhub/vuh \ 143 147 $(USPACE_PATH)/app/websrv/websrv 144 148 -
boot/arch/amd64/Makefile.inc
r306061a rb64eac6 42 42 pciintel \ 43 43 isa \ 44 ns8250 44 ns8250 \ 45 ehci-hcd \ 46 uhci-hcd \ 47 uhci-rhd \ 48 usbhub \ 49 usbhid \ 50 usbmid \ 51 usbmouse \ 52 vhc 45 53 46 54 RD_DRV_CFG += \ -
kernel/generic/include/mm/page.h
r306061a rb64eac6 37 37 38 38 #include <typedefs.h> 39 #include <proc/task.h> 39 40 #include <mm/as.h> 40 41 #include <memstr.h> … … 62 63 extern uintptr_t hw_map(uintptr_t, size_t); 63 64 65 extern sysarg_t sys_page_find_mapping(uintptr_t, uintptr_t *); 66 64 67 #endif 65 68 -
kernel/generic/include/syscall/syscall.h
r306061a rb64eac6 61 61 SYS_AS_GET_UNMAPPED_AREA, 62 62 63 SYS_PAGE_FIND_MAPPING, 64 63 65 SYS_IPC_CALL_SYNC_FAST, 64 66 SYS_IPC_CALL_SYNC_SLOW, -
kernel/generic/src/mm/page.c
r306061a rb64eac6 60 60 61 61 #include <mm/page.h> 62 #include <genarch/mm/page_ht.h> 63 #include <genarch/mm/page_pt.h> 62 64 #include <arch/mm/page.h> 63 65 #include <arch/mm/asid.h> … … 70 72 #include <debug.h> 71 73 #include <arch.h> 74 #include <syscall/copy.h> 75 #include <errno.h> 72 76 73 77 /** Virtual operations for page subsystem. */ … … 173 177 } 174 178 179 /** Syscall wrapper for getting mapping of a virtual page. 180 * 181 * @retval EOK Everything went find, @p uspace_frame and @p uspace_node 182 * contains correct values. 183 * @retval ENOENT Virtual address has no mapping. 184 */ 185 sysarg_t sys_page_find_mapping(uintptr_t virt_address, 186 uintptr_t *uspace_frame) 187 { 188 mutex_lock(&AS->lock); 189 190 pte_t *pte = page_mapping_find(AS, virt_address); 191 if (!PTE_VALID(pte) || !PTE_PRESENT(pte)) { 192 mutex_unlock(&AS->lock); 193 194 return (sysarg_t) ENOENT; 195 } 196 197 uintptr_t phys_address = PTE_GET_FRAME(pte); 198 199 mutex_unlock(&AS->lock); 200 201 int rc = copy_to_uspace(uspace_frame, 202 &phys_address, sizeof(phys_address)); 203 if (rc != EOK) { 204 return (sysarg_t) rc; 205 } 206 207 return EOK; 208 } 209 175 210 /** @} 176 211 */ -
kernel/generic/src/syscall/syscall.c
r306061a rb64eac6 41 41 #include <proc/program.h> 42 42 #include <mm/as.h> 43 #include <mm/page.h> 43 44 #include <print.h> 44 45 #include <arch.h> … … 145 146 (syshandler_t) sys_as_get_unmapped_area, 146 147 148 /* Page mapping related syscalls. */ 149 (syshandler_t) sys_page_find_mapping, 150 147 151 /* IPC related syscalls. */ 148 152 (syshandler_t) sys_ipc_call_sync_fast, -
uspace/Makefile
r306061a rb64eac6 50 50 app/trace \ 51 51 app/top \ 52 app/usbinfo \ 53 app/virtusbkbd \ 54 app/virtusbhub \ 52 55 app/netecho \ 53 56 app/nettest1 \ … … 113 116 drv/ns8250 \ 114 117 srv/hw/irc/apic \ 115 srv/hw/irc/i8259 118 srv/hw/irc/i8259 \ 119 drv/ehci-hcd \ 120 drv/uhci-hcd \ 121 drv/uhci-rhd \ 122 drv/usbhid \ 123 drv/usbhub \ 124 drv/usbmid \ 125 drv/usbmouse \ 126 drv/vhc 116 127 endif 117 128 … … 123 134 drv/ns8250 \ 124 135 srv/hw/irc/apic \ 125 srv/hw/irc/i8259 136 srv/hw/irc/i8259 \ 137 drv/ehci-hcd \ 138 drv/uhci-hcd \ 139 drv/uhci-rhd \ 140 drv/usbhid \ 141 drv/usbhub \ 142 drv/usbmid \ 143 drv/usbmouse \ 144 drv/vhc 126 145 endif 127 146 … … 150 169 lib/net 151 170 171 ifeq ($(UARCH),amd64) 172 LIBS += lib/usb 173 LIBS += lib/usbvirt 174 endif 175 176 ifeq ($(UARCH),ia32) 177 LIBS += lib/usb 178 LIBS += lib/usbvirt 179 endif 180 152 181 LIBC_BUILD = $(addsuffix .build,$(LIBC)) 153 182 LIBS_BUILD = $(addsuffix .build,$(LIBS)) -
uspace/Makefile.common
r306061a rb64eac6 86 86 LIBCLUI_PREFIX = $(LIB_PREFIX)/clui 87 87 88 89 LIBUSB_PREFIX = $(LIB_PREFIX)/usb 90 LIBUSBVIRT_PREFIX = $(LIB_PREFIX)/usbvirt 88 91 LIBDRV_PREFIX = $(LIB_PREFIX)/drv 89 92 LIBPACKET_PREFIX = $(LIB_PREFIX)/packet -
uspace/app/bdsh/cmds/modules/cat/cat.c
r306061a rb64eac6 144 144 return CMD_SUCCESS; 145 145 case 'H': 146 printf( cat_oops);146 printf("%s", cat_oops); 147 147 return CMD_FAILURE; 148 148 case 't': 149 printf( cat_oops);149 printf("%s", cat_oops); 150 150 return CMD_FAILURE; 151 151 case 'b': 152 printf( cat_oops);152 printf("%s", cat_oops); 153 153 break; 154 154 case 'm': 155 printf( cat_oops);155 printf("%s", cat_oops); 156 156 return CMD_FAILURE; 157 157 } -
uspace/app/bdsh/cmds/modules/rm/rm.c
r306061a rb64eac6 227 227 } 228 228 memset(buff, 0, sizeof(buff)); 229 snprintf(buff, len, argv[i]);229 snprintf(buff, len, "%s", argv[i]); 230 230 231 231 scope = rm_scope(buff); -
uspace/app/init/init.c
r306061a rb64eac6 313 313 getterm("term/vc5", "/app/bdsh", false); 314 314 getterm("term/vc6", "/app/klog", false); 315 getterm("term/vc7", "/srv/devman", false); 315 316 316 317 return 0; -
uspace/app/tester/Makefile
r306061a rb64eac6 31 31 BINARY = tester 32 32 33 LIBS += $(LIBUSB_PREFIX)/libusb.a 34 EXTRA_CFLAGS += -I$(LIBUSB_PREFIX)/include 35 33 36 SOURCES = \ 34 37 tester.c \ 38 adt/usbaddrkeep.c \ 35 39 thread/thread1.c \ 36 40 print/print1.c \ … … 49 53 loop/loop1.c \ 50 54 mm/malloc1.c \ 55 mm/mapping1.c \ 51 56 hw/misc/virtchar1.c \ 52 57 hw/serial/serial1.c -
uspace/app/tester/tester.c
r306061a rb64eac6 62 62 #include "loop/loop1.def" 63 63 #include "mm/malloc1.def" 64 #include "mm/mapping1.def" 64 65 #include "hw/serial/serial1.def" 66 #include "adt/usbaddrkeep.def" 65 67 #include "hw/misc/virtchar1.def" 66 68 {NULL, NULL, NULL, false} -
uspace/app/tester/tester.h
r306061a rb64eac6 78 78 extern const char *test_loop1(void); 79 79 extern const char *test_malloc1(void); 80 extern const char *test_mapping1(void); 80 81 extern const char *test_serial1(void); 82 extern const char *test_usbaddrkeep(void); 81 83 extern const char *test_virtchar1(void); 82 84 -
uspace/doc/doxygroups.h
r306061a rb64eac6 150 150 * @endcond 151 151 */ 152 152 153 153 /** 154 154 * @defgroup emul Emulation Libraries … … 165 165 * @ingroup emul 166 166 */ 167 168 /** 169 * @defgroup usb USB 170 * @ingroup uspace 171 * @brief USB support for HelenOS. 172 */ 173 /** 174 * @defgroup libusb USB library 175 * @ingroup usb 176 * @brief Library for creating USB devices drivers. 177 */ 178 179 /** 180 * @defgroup usbvirt USB virtualization 181 * @ingroup usb 182 * @brief Support for virtual USB devices. 183 */ 184 185 /** 186 * @defgroup libusbvirt USB virtualization library 187 * @ingroup usbvirt 188 * @brief Library for creating virtual USB devices. 189 */ 190 191 /** 192 * @defgroup drvusbvhc Virtual USB host controller 193 * @ingroup usbvirt 194 * @brief Driver simulating work of USB host controller. 195 */ 196 197 /** 198 * @defgroup usbvirthub Virtual USB hub 199 * @ingroup usbvirt 200 * @brief Extra virtual USB hub for virtual host controller. 201 * @details 202 * Some of the sources are shared with virtual host controller, 203 * see @ref drvusbvhc for the rest of the files. 204 */ 205 206 /** 207 * @defgroup usbvirtkbd Virtual USB keybaord 208 * @ingroup usbvirt 209 * @brief Virtual USB keyboard for virtual host controller. 210 */ 211 212 /** 213 * @defgroup usbinfo USB info application 214 * @ingroup usb 215 * @brief Application for querying USB devices. 216 * @details 217 * The intended usage of this application is to query new USB devices 218 * for their descriptors etc. to simplify driver writing. 219 */ 220 221 /** 222 * @defgroup drvusbmid USB multi interface device driver 223 * @ingroup usb 224 * @brief USB multi interface device driver 225 * @details 226 * This driver serves as a mini hub (or bus) driver for devices 227 * that have the class defined at interface level (those devices 228 * usually have several interfaces). 229 * 230 * The term multi interface device driver (MID) was borrowed 231 * Solaris operating system. 232 */ 233 234 /** 235 * @defgroup drvusbhub USB hub driver 236 * @ingroup usb 237 * @brief USB hub driver. 238 */ 239 240 /** 241 * @defgroup drvusbhid USB HID driver 242 * @ingroup usb 243 * @brief USB driver for HID devices. 244 */ 245 246 /** 247 * @defgroup drvusbmouse USB mouse driver 248 * @ingroup usb 249 * @brief USB driver for mouse with boot protocol. 250 */ 251 252 /** 253 * @defgroup drvusbuhci UHCI driver 254 * @ingroup usb 255 * @brief Drivers for USB UHCI host controller and root hub. 256 */ 257 258 /** 259 * @defgroup drvusbuhcirh UHCI root hub driver 260 * @ingroup drvusbuhci 261 * @brief Driver for UHCI complaint root hub. 262 */ 263 264 /** 265 * @defgroup drvusbuhcihc UHCI host controller driver 266 * @ingroup drvusbuhci 267 * @brief Driver for UHCI complaint USB host controller. 268 */ 269 270 /** 271 * @defgroup drvusbehci EHCI driver 272 * @ingroup usb 273 * @brief Driver for EHCI host controller. 274 */ 275 276 -
uspace/drv/pciintel/pci.c
r306061a rb64eac6 51 51 #include <ipc/devman.h> 52 52 #include <ipc/dev_iface.h> 53 #include <ipc/irc.h> 54 #include <ipc/ns.h> 55 #include <ipc/services.h> 56 #include <sysinfo.h> 53 57 #include <ops/hw_res.h> 54 58 #include <device/hw_res.h> 55 59 #include <ddi.h> 56 60 #include <libarch/ddi.h> 61 #include <pci_dev_iface.h> 57 62 58 63 #include "pci.h" … … 83 88 static bool pciintel_enable_interrupt(ddf_fun_t *fnode) 84 89 { 85 /* TODO */ 86 87 return false; 90 /* This is an old ugly way, copied from ne2000 driver */ 91 assert(fnode); 92 pci_fun_t *dev_data = (pci_fun_t *) fnode->driver_data; 93 94 sysarg_t apic; 95 sysarg_t i8259; 96 97 int irc_phone = -1; 98 int irc_service = -1; 99 100 if ((sysinfo_get_value("apic", &apic) == EOK) && (apic)) { 101 irc_service = SERVICE_APIC; 102 } else if ((sysinfo_get_value("i8259", &i8259) == EOK) && (i8259)) { 103 irc_service = SERVICE_I8259; 104 } 105 106 if (irc_service == -1) { 107 return false; 108 } 109 110 irc_phone = service_connect_blocking(irc_service, 0, 0); 111 if (irc_phone < 0) { 112 return false; 113 } 114 115 size_t i; 116 for (i = 0; i < dev_data->hw_resources.count; i++) { 117 if (dev_data->hw_resources.resources[i].type == INTERRUPT) { 118 int irq = dev_data->hw_resources.resources[i].res.interrupt.irq; 119 int rc = async_req_1_0(irc_phone, IRC_ENABLE_INTERRUPT, irq); 120 if (rc != EOK) { 121 async_hangup(irc_phone); 122 return false; 123 } 124 } 125 } 126 127 async_hangup(irc_phone); 128 return true; 129 } 130 131 static int pci_config_space_write_32( 132 ddf_fun_t *fun, uint32_t address, uint32_t data) 133 { 134 if (address > 252) 135 return EINVAL; 136 pci_conf_write_32(PCI_FUN(fun), address, data); 137 return EOK; 138 } 139 140 static int pci_config_space_write_16( 141 ddf_fun_t *fun, uint32_t address, uint16_t data) 142 { 143 if (address > 254) 144 return EINVAL; 145 pci_conf_write_16(PCI_FUN(fun), address, data); 146 return EOK; 147 } 148 149 static int pci_config_space_write_8( 150 ddf_fun_t *fun, uint32_t address, uint8_t data) 151 { 152 if (address > 255) 153 return EINVAL; 154 pci_conf_write_8(PCI_FUN(fun), address, data); 155 return EOK; 156 } 157 158 static int pci_config_space_read_32( 159 ddf_fun_t *fun, uint32_t address, uint32_t *data) 160 { 161 if (address > 252) 162 return EINVAL; 163 *data = pci_conf_read_32(PCI_FUN(fun), address); 164 return EOK; 165 } 166 167 static int pci_config_space_read_16( 168 ddf_fun_t *fun, uint32_t address, uint16_t *data) 169 { 170 if (address > 254) 171 return EINVAL; 172 *data = pci_conf_read_16(PCI_FUN(fun), address); 173 return EOK; 174 } 175 176 static int pci_config_space_read_8( 177 ddf_fun_t *fun, uint32_t address, uint8_t *data) 178 { 179 if (address > 255) 180 return EINVAL; 181 *data = pci_conf_read_8(PCI_FUN(fun), address); 182 return EOK; 88 183 } 89 184 … … 93 188 }; 94 189 95 static ddf_dev_ops_t pci_fun_ops; 190 static pci_dev_iface_t pci_dev_ops = { 191 .config_space_read_8 = &pci_config_space_read_8, 192 .config_space_read_16 = &pci_config_space_read_16, 193 .config_space_read_32 = &pci_config_space_read_32, 194 .config_space_write_8 = &pci_config_space_write_8, 195 .config_space_write_16 = &pci_config_space_write_16, 196 .config_space_write_32 = &pci_config_space_write_32 197 }; 198 199 static ddf_dev_ops_t pci_fun_ops = { 200 .interfaces[HW_RES_DEV_IFACE] = &pciintel_hw_res_ops, 201 .interfaces[PCI_DEV_IFACE] = &pci_dev_ops 202 }; 96 203 97 204 static int pci_add_device(ddf_dev_t *); … … 287 394 /* Get the value of the BAR. */ 288 395 val = pci_conf_read_32(fun, addr); 396 397 #define IO_MASK (~0x3) 398 #define MEM_MASK (~0xf) 289 399 290 400 io = (bool) (val & 1); 291 401 if (io) { 292 402 addrw64 = false; 403 mask = IO_MASK; 293 404 } else { 405 mask = MEM_MASK; 294 406 switch ((val >> 1) & 3) { 295 407 case 0: … … 307 419 /* Get the address mask. */ 308 420 pci_conf_write_32(fun, addr, 0xffffffff); 309 mask = pci_conf_read_32(fun, addr);421 mask &= pci_conf_read_32(fun, addr); 310 422 311 423 /* Restore the original value. */ … … 555 667 { 556 668 pci_fun_ops.interfaces[HW_RES_DEV_IFACE] = &pciintel_hw_res_ops; 669 pci_fun_ops.interfaces[PCI_DEV_IFACE] = &pci_dev_ops; 557 670 } 558 671 … … 626 739 size_t pci_bar_mask_to_size(uint32_t mask) 627 740 { 628 return ((mask & 0xfffffff0) ^ 0xffffffff) + 1; 741 size_t size = mask & ~(mask - 1); 742 return size; 629 743 } 630 744 -
uspace/drv/rootvirt/devices.def
r306061a rb64eac6 22 22 }, 23 23 #endif 24 #ifdef CONFIG_RUN_VIRTUAL_USB_HC 25 /* Virtual USB host controller. */ 26 { 27 .name = "usbhc", 28 .match_id = "usb&hc=vhc" 29 }, 30 #endif -
uspace/lib/c/Makefile
r306061a rb64eac6 65 65 generic/str.c \ 66 66 generic/str_error.c \ 67 generic/l18n/langs.c \ 67 68 generic/fibril.c \ 68 69 generic/fibril_synch.c \ -
uspace/lib/c/generic/as.c
r306061a rb64eac6 35 35 #include <as.h> 36 36 #include <libc.h> 37 #include <errno.h> 37 38 #include <unistd.h> 38 39 #include <align.h> … … 114 115 } 115 116 117 /** Find mapping to physical address. 118 * 119 * @param address Virtual address in question (virtual). 120 * @param[out] frame Frame address (physical). 121 * @return Error code. 122 * @retval EOK No error, @p frame holds the translation. 123 * @retval ENOENT Mapping not found. 124 */ 125 int as_get_physical_mapping(void *address, uintptr_t *frame) 126 { 127 uintptr_t tmp_frame; 128 uintptr_t virt = (uintptr_t) address; 129 130 int rc = (int) __SYSCALL2(SYS_PAGE_FIND_MAPPING, 131 (sysarg_t) virt, (sysarg_t) &tmp_frame); 132 if (rc != EOK) { 133 return rc; 134 } 135 136 if (frame != NULL) { 137 *frame = tmp_frame; 138 } 139 140 return EOK; 141 } 142 116 143 /** @} 117 144 */ -
uspace/lib/c/generic/async.c
r306061a rb64eac6 1567 1567 } 1568 1568 1569 /** Start IPC_M_DATA_READ using the async framework. 1570 * 1571 * @param phoneid Phone that will be used to contact the receiving side. 1572 * @param dst Address of the beginning of the destination buffer. 1573 * @param size Size of the destination buffer (in bytes). 1574 * @param dataptr Storage of call data (arg 2 holds actual data size). 1575 * @return Hash of the sent message or 0 on error. 1576 */ 1577 aid_t async_data_read(int phoneid, void *dst, size_t size, ipc_call_t *dataptr) 1578 { 1579 return async_send_2(phoneid, IPC_M_DATA_READ, (sysarg_t) dst, 1580 (sysarg_t) size, dataptr); 1581 } 1582 1569 1583 /** Wrapper for IPC_M_DATA_READ calls using the async framework. 1570 1584 * -
uspace/lib/c/generic/str_error.c
r306061a rb64eac6 33 33 */ 34 34 35 #include <errno.h> 35 36 #include <str_error.h> 36 37 #include <stdio.h> … … 63 64 static fibril_local char noerr[NOERR_LEN]; 64 65 65 const char *str_error(const int e rrno)66 const char *str_error(const int e) 66 67 { 67 if ((e rrno <= 0) && (errno>= MIN_ERRNO))68 return err_desc[-e rrno];68 if ((e <= 0) && (e >= MIN_ERRNO)) 69 return err_desc[-e]; 69 70 70 snprintf(noerr, NOERR_LEN, "Unkown error code %d", errno); 71 /* Ad hoc descriptions of error codes interesting for USB. */ 72 switch (e) { 73 case EBADCHECKSUM: 74 return "Bad checksum"; 75 case ESTALL: 76 return "Operation stalled"; 77 case EAGAIN: 78 return "Resource temporarily unavailable"; 79 case EEMPTY: 80 return "Resource is empty"; 81 default: 82 break; 83 } 84 85 snprintf(noerr, NOERR_LEN, "Unkown error code %d", e); 71 86 return noerr; 72 87 } -
uspace/lib/c/include/as.h
r306061a rb64eac6 60 60 extern void *set_maxheapsize(size_t mhs); 61 61 extern void * as_get_mappable_page(size_t sz); 62 extern int as_get_physical_mapping(void *address, uintptr_t *frame); 62 63 63 64 #endif -
uspace/lib/c/include/async.h
r306061a rb64eac6 340 340 (arg4), (answer)) 341 341 342 extern aid_t async_data_read(int, void *, size_t, ipc_call_t *); 342 343 extern int async_data_read_start(int, void *, size_t); 343 344 extern bool async_data_read_receive(ipc_callid_t *, size_t *); -
uspace/lib/c/include/errno.h
r306061a rb64eac6 56 56 #define EMLINK (-266) 57 57 58 /** Bad checksum. */ 59 #define EBADCHECKSUM (-300) 60 61 /** USB: stalled operation. */ 62 #define ESTALL (-301) 63 64 /** Empty resource (no data). */ 65 #define EEMPTY (-302) 66 58 67 /** An API function is called while another blocking function is in progress. */ 59 68 #define EINPROGRESS (-10036) -
uspace/lib/c/include/ipc/dev_iface.h
r306061a rb64eac6 37 37 HW_RES_DEV_IFACE = 0, 38 38 CHAR_DEV_IFACE, 39 40 /** Interface provided by any PCI device. */ 41 PCI_DEV_IFACE, 42 43 /** Interface provided by any USB device. */ 44 USB_DEV_IFACE, 45 /** Interface provided by USB host controller. */ 46 USBHC_DEV_IFACE, 47 39 48 DEV_IFACE_MAX 40 49 } dev_inferface_idx_t; … … 48 57 DEV_IFACE_ID(DEV_FIRST_CUSTOM_METHOD_IDX) 49 58 59 /* 60 * The first argument is actually method (as the "real" method is used 61 * for indexing into interfaces. 62 */ 63 64 #define DEV_IPC_GET_ARG1(call) IPC_GET_ARG2((call)) 65 #define DEV_IPC_GET_ARG2(call) IPC_GET_ARG3((call)) 66 #define DEV_IPC_GET_ARG3(call) IPC_GET_ARG4((call)) 67 #define DEV_IPC_GET_ARG4(call) IPC_GET_ARG5((call)) 68 50 69 51 70 #endif -
uspace/lib/c/include/ipc/kbd.h
r306061a rb64eac6 39 39 40 40 #include <ipc/common.h> 41 #include <ipc/dev_iface.h> 41 42 42 43 typedef enum { 43 KBD_YIELD = IPC_FIRST_USER_METHOD,44 KBD_YIELD = DEV_FIRST_CUSTOM_METHOD, 44 45 KBD_RECLAIM 45 46 } kbd_request_t; -
uspace/lib/drv/Makefile
r306061a rb64eac6 29 29 30 30 USPACE_PREFIX = ../.. 31 EXTRA_CFLAGS = -Iinclude 31 EXTRA_CFLAGS = -Iinclude -I$(LIBUSB_PREFIX)/include 32 32 LIBRARY = libdrv 33 33 … … 35 35 generic/driver.c \ 36 36 generic/dev_iface.c \ 37 generic/remote_char_dev.c \ 37 38 generic/remote_hw_res.c \ 38 generic/remote_char_dev.c 39 generic/remote_usb.c \ 40 generic/remote_pci.c \ 41 generic/remote_usbhc.c 39 42 40 43 include $(USPACE_PREFIX)/Makefile.common -
uspace/lib/drv/generic/dev_iface.c
r306061a rb64eac6 41 41 #include "remote_hw_res.h" 42 42 #include "remote_char_dev.h" 43 #include "remote_usb.h" 44 #include "remote_usbhc.h" 45 #include "remote_pci.h" 43 46 44 47 static iface_dipatch_table_t remote_ifaces = { 45 48 .ifaces = { 46 49 &remote_hw_res_iface, 47 &remote_char_dev_iface 50 &remote_char_dev_iface, 51 &remote_pci_iface, 52 &remote_usb_iface, 53 &remote_usbhc_iface 48 54 } 49 55 }; -
uspace/srv/devman/devman.c
r306061a rb64eac6 148 148 printf(NAME": the '%s' driver was added to the list of available " 149 149 "drivers.\n", drv->name); 150 151 printf(NAME ": match ids:"); 152 link_t *cur; 153 for (cur = drv->match_ids.ids.next; cur != &drv->match_ids.ids; cur = cur->next) { 154 match_id_t *match_id = list_get_instance(cur, match_id_t, link); 155 printf(" %d:%s", match_id->score, match_id->id); 156 } 157 printf("\n"); 150 158 } 151 159 -
uspace/srv/devman/main.c
r306061a rb64eac6 507 507 508 508 if (driver == NULL) { 509 printf(NAME ": devman_forward error - the device is not in %" PRIun 510 " usable state.\n", handle); 509 printf(NAME ": devman_forward error - the device %" PRIun \ 510 " (%s) is not in usable state.\n", 511 handle, dev->pfun->pathname); 511 512 async_answer_0(iid, ENOENT); 512 513 return; -
uspace/srv/fs/fat/fat_dentry.c
r306061a rb64eac6 42 42 static bool is_d_char(const char ch) 43 43 { 44 if (isalnum(ch) || ch == '_' )44 if (isalnum(ch) || ch == '_' || ch == '-') 45 45 return true; 46 46 else -
uspace/srv/hid/console/console.c
r306061a rb64eac6 41 41 #include <ipc/ns.h> 42 42 #include <errno.h> 43 #include <str_error.h> 43 44 #include <ipc/console.h> 44 45 #include <unistd.h> … … 64 65 #define NAME "console" 65 66 #define NAMESPACE "term" 67 /** Interval for checking for new keyboard (1/4s). */ 68 #define HOTPLUG_WATCH_INTERVAL (1000 * 250) 66 69 67 70 /** Phone to the keyboard driver. */ … … 317 320 static void change_console(console_t *cons) 318 321 { 319 if (cons == active_console) 322 if (cons == active_console) { 320 323 return; 324 } 321 325 322 326 fb_pending_flush(); … … 458 462 if (IPC_GET_ARG1(call) == 1) { 459 463 int newcon = gcons_mouse_btn((bool) IPC_GET_ARG2(call)); 460 if (newcon != -1) 464 if (newcon != -1) { 461 465 change_console(&consoles[newcon]); 466 } 462 467 } 463 468 retval = 0; … … 710 715 } 711 716 717 static int connect_keyboard_or_mouse(const char *devname, 718 async_client_conn_t handler, const char *path) 719 { 720 int fd = open(path, O_RDONLY); 721 if (fd < 0) { 722 return fd; 723 } 724 725 int phone = fd_phone(fd); 726 if (phone < 0) { 727 printf(NAME ": Failed to connect to input device\n"); 728 return phone; 729 } 730 731 int rc = async_connect_to_me(phone, SERVICE_CONSOLE, 0, 0, handler); 732 if (rc != EOK) { 733 printf(NAME ": " \ 734 "Failed to create callback from input device: %s.\n", 735 str_error(rc)); 736 return rc; 737 } 738 739 printf(NAME ": found %s \"%s\".\n", devname, path); 740 741 return phone; 742 } 743 744 static int connect_keyboard(const char *path) 745 { 746 return connect_keyboard_or_mouse("keyboard", keyboard_events, path); 747 } 748 749 static int connect_mouse(const char *path) 750 { 751 return connect_keyboard_or_mouse("mouse", mouse_events, path); 752 } 753 754 struct hid_class_info { 755 char *classname; 756 int (*connection_func)(const char *); 757 }; 758 759 /** Periodically check for new keyboards in /dev/class/. 760 * 761 * @param arg Class name. 762 * @return This function should never exit. 763 */ 764 static int check_new_device_fibril(void *arg) 765 { 766 struct hid_class_info *dev_info = arg; 767 768 size_t index = 1; 769 770 while (true) { 771 async_usleep(HOTPLUG_WATCH_INTERVAL); 772 char *path; 773 int rc = asprintf(&path, "/dev/class/%s\\%zu", 774 dev_info->classname, index); 775 if (rc < 0) { 776 continue; 777 } 778 rc = 0; 779 rc = dev_info->connection_func(path); 780 if (rc > 0) { 781 /* We do not allow unplug. */ 782 index++; 783 } 784 785 free(path); 786 } 787 788 return EOK; 789 } 790 791 792 /** Start a fibril monitoring hot-plugged keyboards. 793 */ 794 static void check_new_devices_in_background(int (*connection_func)(const char *), 795 const char *classname) 796 { 797 struct hid_class_info *dev_info = malloc(sizeof(struct hid_class_info)); 798 if (dev_info == NULL) { 799 printf(NAME ": " \ 800 "out of memory, will not start hot-plug-watch fibril.\n"); 801 return; 802 } 803 int rc; 804 805 rc = asprintf(&dev_info->classname, "%s", classname); 806 if (rc < 0) { 807 printf(NAME ": failed to format classname: %s.\n", 808 str_error(rc)); 809 return; 810 } 811 dev_info->connection_func = connection_func; 812 813 fid_t fid = fibril_create(check_new_device_fibril, (void *)dev_info); 814 if (!fid) { 815 printf(NAME 816 ": failed to create hot-plug-watch fibril for %s.\n", 817 classname); 818 return; 819 } 820 fibril_add_ready(fid); 821 } 822 712 823 static bool console_init(char *input) 713 824 { 714 825 /* Connect to input device */ 715 int input_fd = open(input, O_RDONLY); 716 if (input_fd < 0) { 717 printf(NAME ": Failed opening %s\n", input); 826 kbd_phone = connect_keyboard(input); 827 if (kbd_phone < 0) { 718 828 return false; 719 829 } 720 721 kbd_phone = fd_phone(input_fd); 722 if (kbd_phone < 0) { 723 printf(NAME ": Failed to connect to input device\n"); 724 return false; 725 } 726 727 /* NB: The callback connection is slotted for removal */ 728 if (async_connect_to_me(kbd_phone, SERVICE_CONSOLE, 0, 0, keyboard_events) 729 != 0) { 730 printf(NAME ": Failed to create callback from input device\n"); 731 return false; 732 } 733 734 /* Connect to mouse device */ 735 mouse_phone = -1; 736 int mouse_fd = open("/dev/hid_in/mouse", O_RDONLY); 737 738 if (mouse_fd < 0) { 739 printf(NAME ": Notice - failed opening %s\n", "/dev/hid_in/mouse"); 740 goto skip_mouse; 741 } 742 743 mouse_phone = fd_phone(mouse_fd); 830 831 mouse_phone = connect_mouse("/dev/hid_in/mouse"); 744 832 if (mouse_phone < 0) { 745 printf(NAME ": Failed to connect to mouse device\n"); 746 goto skip_mouse; 747 } 748 749 if (async_connect_to_me(mouse_phone, SERVICE_CONSOLE, 0, 0, mouse_events) 750 != 0) { 751 printf(NAME ": Failed to create callback from mouse device\n"); 752 mouse_phone = -1; 753 goto skip_mouse; 754 } 755 756 skip_mouse: 833 printf(NAME ": Failed to connect to mouse device: %s.\n", 834 str_error(mouse_phone)); 835 } 757 836 758 837 /* Connect to framebuffer driver */ … … 837 916 printf(NAME ": Error registering kconsole notifications\n"); 838 917 918 /* Start fibril for checking on hot-plugged keyboards. */ 919 check_new_devices_in_background(connect_keyboard, "keyboard"); 920 check_new_devices_in_background(connect_mouse, "mouse"); 921 839 922 return true; 840 923 } … … 856 939 if (!console_init(argv[1])) 857 940 return -1; 858 941 859 942 printf(NAME ": Accepting connections\n"); 860 943 async_manager(); -
uspace/srv/hw/irc/apic/apic.c
r306061a rb64eac6 54 54 #define NAME "apic" 55 55 56 static bool apic_found = false; 57 56 58 static int apic_enable_irq(sysarg_t irq) 57 59 { … … 79 81 callid = async_get_call(&call); 80 82 81 switch (IPC_GET_IMETHOD(call)) { 83 sysarg_t method = IPC_GET_IMETHOD(call); 84 if (method == IPC_M_PHONE_HUNGUP) { 85 return; 86 } 87 88 if (!apic_found) { 89 async_answer_0(callid, ENOTSUP); 90 break; 91 } 92 93 switch (method) { 82 94 case IRC_ENABLE_INTERRUPT: 83 95 async_answer_0(callid, apic_enable_irq(IPC_GET_ARG1(call))); … … 97 109 * 98 110 */ 99 static boolapic_init(void)111 static void apic_init(void) 100 112 { 101 113 sysarg_t apic; 102 114 103 if ((sysinfo_get_value("apic", &apic) != EOK) || (!apic)) {104 printf(NAME ": No APIC found\n");105 return false;115 apic_found = sysinfo_get_value("apic", &apic) && apic; 116 if (!apic_found) { 117 printf(NAME ": Warning: no APIC found\n"); 106 118 } 107 119 108 120 async_set_client_connection(apic_connection); 109 121 service_register(SERVICE_APIC); 110 111 return true;112 122 } 113 123 … … 116 126 printf(NAME ": HelenOS APIC driver\n"); 117 127 118 if (!apic_init()) 119 return -1; 120 128 apic_init(); 129 121 130 printf(NAME ": Accepting connections\n"); 122 131 async_manager(); -
uspace/srv/net/tl/udp/udp.c
r306061a rb64eac6 740 740 int socket_id; 741 741 size_t addrlen; 742 size_t size ;742 size_t size = 0; 743 743 ipc_call_t answer; 744 744 size_t answer_count;
Note:
See TracChangeset
for help on using the changeset viewer.