Changes in / [467bf40:6eb794a] in mainline
- Files:
-
- 96 deleted
- 24 edited
Legend:
- Unmodified
- Added
- Removed
-
HelenOS.config
r467bf40 r6eb794a 547 547 548 548 % Launch (devman) test drivers 549 ! [CONFIG_DEBUG=y] CONFIG_TEST_DRIVERS ( n/y)550 549 ! [CONFIG_DEBUG=y] CONFIG_TEST_DRIVERS (y/n) 550 -
Makefile
r467bf40 r6eb794a 92 92 $(MAKE) -C uspace clean 93 93 $(MAKE) -C boot clean 94 95 -include Makefile.local -
boot/Makefile.common
r467bf40 r6eb794a 99 99 $(USPACE_PATH)/srv/taskmon/taskmon \ 100 100 $(USPACE_PATH)/srv/hw/netif/dp8390/dp8390 \ 101 $(USPACE_PATH)/srv/hw/bus/usb/hcd/virtual/vhcd \102 101 $(USPACE_PATH)/srv/net/netif/lo/lo \ 103 102 $(USPACE_PATH)/srv/net/il/arp/arp \ … … 144 143 $(USPACE_PATH)/app/ping/ping \ 145 144 $(USPACE_PATH)/app/stats/stats \ 146 $(USPACE_PATH)/app/sysinfo/sysinfo \147 145 $(USPACE_PATH)/app/tasks/tasks \ 148 146 $(USPACE_PATH)/app/top/top \ 149 $(USPACE_PATH)/app/usbinfo/usbinfo \ 150 $(USPACE_PATH)/app/virtusbkbd/vuk 147 $(USPACE_PATH)/app/sysinfo/sysinfo 151 148 152 149 ifneq ($(CONFIG_BAREBONE),y) -
boot/arch/amd64/Makefile.inc
r467bf40 r6eb794a 40 40 pciintel \ 41 41 isa \ 42 ns8250 \ 43 uhci \ 44 usbhub \ 45 usbkbd \ 46 vhc 42 ns8250 47 43 48 44 RD_DRV_CFG += \ -
uspace/Makefile
r467bf40 r6eb794a 49 49 app/trace \ 50 50 app/top \ 51 app/usbinfo \52 app/virtusbkbd \53 51 app/netecho \ 54 52 app/nettest1 \ … … 118 116 DIRS += drv/isa 119 117 DIRS += drv/ns8250 120 DIRS += drv/uhci121 DIRS += drv/usbhub122 DIRS += drv/usbkbd123 DIRS += drv/vhc124 118 endif 125 119 … … 129 123 DIRS += drv/isa 130 124 DIRS += drv/ns8250 131 DIRS += drv/uhci132 DIRS += drv/usbhub133 DIRS += drv/usbkbd134 DIRS += drv/vhc135 125 endif 136 126 … … 158 148 lib/packet \ 159 149 lib/net 160 161 ifeq ($(UARCH),amd64)162 LIBS += lib/usb163 LIBS += lib/usbvirt164 endif165 166 ifeq ($(UARCH),ia32)167 LIBS += lib/usb168 LIBS += lib/usbvirt169 endif170 150 171 151 LIBC_BUILD = $(addsuffix .build,$(LIBC)) -
uspace/Makefile.common
r467bf40 r6eb794a 86 86 LIBCLUI_PREFIX = $(LIB_PREFIX)/clui 87 87 88 89 LIBUSB_PREFIX = $(LIB_PREFIX)/usb90 LIBUSBVIRT_PREFIX = $(LIB_PREFIX)/usbvirt91 88 LIBDRV_PREFIX = $(LIB_PREFIX)/drv 92 89 LIBPACKET_PREFIX = $(LIB_PREFIX)/packet -
uspace/app/init/init.c
r467bf40 r6eb794a 312 312 getterm("term/vc5", "/app/bdsh", false); 313 313 getterm("term/vc6", "/app/klog", false); 314 getterm("term/vc7", "/srv/devman", false);315 314 316 315 return 0; -
uspace/app/tester/Makefile
r467bf40 r6eb794a 31 31 BINARY = tester 32 32 33 LIBS += $(LIBUSB_PREFIX)/libusb.a34 EXTRA_CFLAGS += -I$(LIBUSB_PREFIX)/include35 36 33 SOURCES = \ 37 34 tester.c \ 38 adt/usbaddrkeep.c \39 35 thread/thread1.c \ 40 36 print/print1.c \ -
uspace/app/tester/tester.c
r467bf40 r6eb794a 63 63 #include "mm/malloc1.def" 64 64 #include "hw/serial/serial1.def" 65 #include "adt/usbaddrkeep.def"66 65 #include "hw/misc/virtchar1.def" 67 66 {NULL, NULL, NULL, false} -
uspace/app/tester/tester.h
r467bf40 r6eb794a 80 80 extern const char *test_malloc1(void); 81 81 extern const char *test_serial1(void); 82 extern const char *test_usbaddrkeep(void);83 82 extern const char *test_virtchar1(void); 84 83 -
uspace/doc/doxygroups.h
r467bf40 r6eb794a 155 155 * @endcond 156 156 */ 157 157 158 158 /** 159 159 * @defgroup emul Emulation Libraries … … 170 170 * @ingroup emul 171 171 */ 172 173 /**174 * @defgroup usb USB175 * @ingroup uspace176 * @brief USB support for HelenOS.177 */178 /**179 * @defgroup libusb USB library180 * @ingroup usb181 * @brief Library for creating USB devices drivers.182 */ -
uspace/drv/root/root.c
r467bf40 r6eb794a 88 88 89 89 int res = child_device_register_wrapper(parent, VIRTUAL_DEVICE_NAME, 90 VIRTUAL_DEVICE_MATCH_ID, VIRTUAL_DEVICE_MATCH_SCORE, 91 NULL); 90 VIRTUAL_DEVICE_MATCH_ID, VIRTUAL_DEVICE_MATCH_SCORE); 92 91 93 92 return res; … … 137 136 138 137 res = child_device_register_wrapper(parent, PLATFORM_DEVICE_NAME, 139 match_id, PLATFORM_DEVICE_MATCH_SCORE , NULL);138 match_id, PLATFORM_DEVICE_MATCH_SCORE); 140 139 141 140 return res; -
uspace/drv/rootvirt/devices.def
r467bf40 r6eb794a 22 22 }, 23 23 #endif 24 /* Virtual USB host controller. */25 {26 .name = "usbhc",27 .match_id = "usb&hc=vhc"28 }, -
uspace/drv/rootvirt/rootvirt.c
r467bf40 r6eb794a 84 84 85 85 int rc = child_device_register_wrapper(parent, virt_dev->name, 86 virt_dev->match_id, 10 , NULL);86 virt_dev->match_id, 10); 87 87 88 88 if (rc == EOK) { -
uspace/drv/test1/test1.c
r467bf40 r6eb794a 62 62 63 63 int rc = child_device_register_wrapper(parent, name, 64 match_id, match_score , NULL);64 match_id, match_score); 65 65 66 66 if (rc == EOK) { -
uspace/drv/test2/test2.c
r467bf40 r6eb794a 64 64 65 65 int rc = child_device_register_wrapper(parent, name, 66 match_id, match_score , NULL);66 match_id, match_score); 67 67 68 68 if (rc == EOK) { -
uspace/lib/c/generic/devman.c
r467bf40 r6eb794a 230 230 231 231 if (flags & IPC_FLAG_BLOCKING) { 232 phone = async_connect_me_to_blocking(PHONE_NS, SERVICE_DEVMAN,232 phone = ipc_connect_me_to_blocking(PHONE_NS, SERVICE_DEVMAN, 233 233 DEVMAN_CONNECT_TO_DEVICE, handle); 234 234 } else { 235 phone = async_connect_me_to(PHONE_NS, SERVICE_DEVMAN,235 phone = ipc_connect_me_to(PHONE_NS, SERVICE_DEVMAN, 236 236 DEVMAN_CONNECT_TO_DEVICE, handle); 237 237 } -
uspace/lib/c/include/ipc/dev_iface.h
r467bf40 r6eb794a 38 38 HW_RES_DEV_IFACE = 0, 39 39 CHAR_DEV_IFACE, 40 41 /** Interface provided by USB host controller. */42 USBHC_DEV_IFACE,43 44 40 // TODO add more interfaces 45 41 DEV_IFACE_MAX … … 54 50 DEV_IFACE_ID(DEV_FIRST_CUSTOM_METHOD_IDX) 55 51 56 /*57 * The first argument is actually method (as the "real" method is used58 * for indexing into interfaces.59 */60 61 #define DEV_IPC_GET_ARG1(call) IPC_GET_ARG2((call))62 #define DEV_IPC_GET_ARG2(call) IPC_GET_ARG3((call))63 #define DEV_IPC_GET_ARG3(call) IPC_GET_ARG4((call))64 #define DEV_IPC_GET_ARG4(call) IPC_GET_ARG5((call))65 66 52 67 53 #endif -
uspace/lib/drv/Makefile
r467bf40 r6eb794a 29 29 30 30 USPACE_PREFIX = ../.. 31 EXTRA_CFLAGS = -Iinclude -I$(LIBUSB_PREFIX)/include31 EXTRA_CFLAGS = -Iinclude 32 32 LIBRARY = libdrv 33 33 … … 36 36 generic/dev_iface.c \ 37 37 generic/remote_res.c \ 38 generic/remote_usbhc.c \39 38 generic/remote_char.c 40 39 -
uspace/lib/drv/generic/dev_iface.c
r467bf40 r6eb794a 39 39 #include "remote_res.h" 40 40 #include "remote_char.h" 41 #include "remote_usbhc.h"42 41 43 42 static iface_dipatch_table_t remote_ifaces = { 44 43 .ifaces = { 45 44 &remote_res_iface, 46 &remote_char_iface, 47 &remote_usbhc_iface 45 &remote_char_iface 48 46 } 49 47 }; -
uspace/lib/drv/generic/driver.c
r467bf40 r6eb794a 390 390 */ 391 391 int child_device_register_wrapper(device_t *parent, const char *child_name, 392 const char *child_match_id, int child_match_score, 393 devman_handle_t *child_handle) 392 const char *child_match_id, int child_match_score) 394 393 { 395 394 device_t *child = NULL; … … 419 418 goto failure; 420 419 421 if (child_handle != NULL) {422 *child_handle = child->handle;423 }424 420 return EOK; 425 421 -
uspace/lib/drv/include/driver.h
r467bf40 r6eb794a 199 199 200 200 int child_device_register(device_t *, device_t *); 201 int child_device_register_wrapper(device_t *, const char *, const char *, int, 202 devman_handle_t *); 201 int child_device_register_wrapper(device_t *, const char *, const char *, int); 203 202 204 203 -
uspace/srv/devman/devman.c
r467bf40 r6eb794a 133 133 printf(NAME": the '%s' driver was added to the list of available " 134 134 "drivers.\n", drv->name); 135 136 printf(NAME ": match ids:");137 link_t *cur;138 for (cur = drv->match_ids.ids.next; cur != &drv->match_ids.ids; cur = cur->next) {139 match_id_t *match_id = list_get_instance(cur, match_id_t, link);140 printf(" %d:%s", match_id->score, match_id->id);141 }142 printf("\n");143 135 } 144 136 -
uspace/srv/net/tl/udp/udp.c
r467bf40 r6eb794a 711 711 int socket_id; 712 712 size_t addrlen; 713 size_t size = 0;713 size_t size; 714 714 ipc_call_t answer; 715 715 int answer_count;
Note:
See TracChangeset
for help on using the changeset viewer.