Changeset fc51296 in mainline
- Timestamp:
- 2011-03-31T17:37:25Z (14 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 3acb285
- Parents:
- 9b415c9
- Location:
- uspace
- Files:
-
- 2 added
- 12 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/drv/isa/isa.c
r9b415c9 rfc51296 53 53 54 54 #include <ddf/driver.h> 55 #include <ddf/log.h> 55 56 #include <ops/hw_res.h> 56 57 … … 134 135 fd = open(conf_path, O_RDONLY); 135 136 if (fd < 0) { 136 printf(NAME ": unable to open %s\n", conf_path);137 ddf_msg(LVL_ERROR, "Unable to open %s\n", conf_path); 137 138 goto cleanup; 138 139 } … … 141 142 142 143 len = lseek(fd, 0, SEEK_END); 143 lseek(fd, 0, SEEK_SET); 144 lseek(fd, 0, SEEK_SET); 144 145 if (len == 0) { 145 printf(NAME ": fun_conf_read error: configuration file '%s' "146 "is empty.\n",conf_path);146 ddf_msg(LVL_ERROR, "Configuration file '%s' is empty.\n", 147 conf_path); 147 148 goto cleanup; 148 149 } … … 150 151 buf = malloc(len + 1); 151 152 if (buf == NULL) { 152 printf(NAME ": fun_conf_read error: memory allocation failed.\n");153 ddf_msg(LVL_ERROR, "Memory allocation failed.\n"); 153 154 goto cleanup; 154 155 } 155 156 156 157 if (0 >= read(fd, buf, len)) { 157 printf(NAME ": fun_conf_read error: unable to read file '%s'.\n", 158 conf_path); 158 ddf_msg(LVL_ERROR, "Unable to read file '%s'.\n", conf_path); 159 159 goto cleanup; 160 160 } … … 252 252 fun->hw_resources.count++; 253 253 254 printf(NAME ": added irq 0x%x to function %s\n", irq,254 ddf_msg(LVL_NOTE, "Added irq 0x%x to function %s\n", irq, 255 255 fun->fnode->name); 256 256 } … … 270 270 fun->hw_resources.count++; 271 271 272 printf(NAME ": added io range (addr=0x%x, size=0x%x) to "272 ddf_msg(LVL_NOTE, "Added io range (addr=0x%x, size=0x%x) to " 273 273 "function %s\n", (unsigned int) addr, (unsigned int) len, 274 274 fun->fnode->name); … … 331 331 score = (int)strtol(val, &end, 10); 332 332 if (val == end) { 333 printf(NAME " : error - could not read match score for"334 " function%s.\n", fun->fnode->name);333 ddf_msg(LVL_ERROR, "Cannot read match score for function " 334 "%s.\n", fun->fnode->name); 335 335 return; 336 336 } … … 339 339 get_match_id(&id, val); 340 340 if (id == NULL) { 341 printf(NAME " : error - could not read match id for "342 "function %s.\n",fun->fnode->name);341 ddf_msg(LVL_ERROR, "Cannot read match ID for function %s.\n", 342 fun->fnode->name); 343 343 return; 344 344 } 345 345 346 printf(NAME ": adding match id '%s' with score %d to function %s\n", id,347 score, fun->fnode->name);346 ddf_msg(LVL_DEBUG, "Adding match id '%s' with score %d to " 347 "function %s\n", id, score, fun->fnode->name); 348 348 349 349 rc = ddf_fun_add_match_id(fun->fnode, id, score); 350 if (rc != EOK) 351 printf(NAME ": error adding match ID: %s\n", str_error(rc)); 350 if (rc != EOK) { 351 ddf_msg(LVL_ERROR, "Failed adding match ID: %s\n", 352 str_error(rc)); 353 } 352 354 } 353 355 … … 375 377 if (!prop_parse(fun, line, "io_range", &fun_parse_io_range) && 376 378 !prop_parse(fun, line, "irq", &fun_parse_irq) && 377 !prop_parse(fun, line, "match", &fun_parse_match_id)) 378 { 379 printf(NAME " error undefined device property at line '%s'\n",380 line);379 !prop_parse(fun, line, "match", &fun_parse_match_id)) { 380 381 ddf_msg(LVL_ERROR, "Undefined device property at line '%s'\n", 382 line); 381 383 } 382 384 } … … 439 441 fun->fnode->ops = &isa_fun_ops; 440 442 441 printf(NAME ":Binding function %s.\n", fun->fnode->name);443 ddf_msg(LVL_DEBUG, "Binding function %s.\n", fun->fnode->name); 442 444 443 445 /* XXX Handle error */ … … 467 469 static int isa_add_device(ddf_dev_t *dev) 468 470 { 469 printf(NAME ":isa_add_device, device handle = %d\n",471 ddf_msg(LVL_DEBUG, "isa_add_device, device handle = %d\n", 470 472 (int) dev->handle); 471 473 472 474 /* Make the bus device more visible. Does not do anything. */ 473 printf(NAME ": adding a 'ctl' function\n");475 ddf_msg(LVL_DEBUG, "Adding a 'ctl' function\n"); 474 476 475 477 ddf_fun_t *ctl = ddf_fun_create(dev, fun_exposed, "ctl"); 476 478 if (ctl == NULL) { 477 printf(NAME ": Errorcreating control function.\n");479 ddf_msg(LVL_ERROR, "Failed creating control function.\n"); 478 480 return EXDEV; 479 481 } 480 482 481 483 if (ddf_fun_bind(ctl) != EOK) { 482 printf(NAME ": Errorbinding control function.\n");484 ddf_msg(LVL_ERROR, "Failed binding control function.\n"); 483 485 return EXDEV; 484 486 } … … 486 488 /* Add functions as specified in the configuration file. */ 487 489 isa_functions_add(dev); 488 printf(NAME ": finished the enumeration oflegacy functions\n");490 ddf_msg(LVL_NOTE, "Finished enumerating legacy functions\n"); 489 491 490 492 return EOK; … … 493 495 static void isa_init() 494 496 { 497 ddf_log_init(NAME, LVL_ERROR); 495 498 isa_fun_ops.interfaces[HW_RES_DEV_IFACE] = &isa_fun_hw_res_ops; 496 499 } -
uspace/drv/ns8250/ns8250.c
r9b415c9 rfc51296 55 55 #include <ddf/driver.h> 56 56 #include <ddf/interrupt.h> 57 #include <ddf/log.h> 57 58 #include <ops/char_dev.h> 58 59 … … 275 276 static bool ns8250_pio_enable(ns8250_t *ns) 276 277 { 277 printf(NAME ":ns8250_pio_enable %s\n", ns->dev->name);278 ddf_msg(LVL_DEBUG, "ns8250_pio_enable %s\n", ns->dev->name); 278 279 279 280 /* Gain control over port's registers. */ 280 281 if (pio_enable((void *)(uintptr_t) ns->io_addr, REG_COUNT, 281 282 (void **) &ns->port)) { 282 printf(NAME ": error - cannot gain the port %#" PRIx32 " for device "283 " %s.\n", ns->io_addr, ns->dev->name);283 ddf_msg(LVL_ERROR, "Cannot map the port %#" PRIx32 284 " for device %s.\n", ns->io_addr, ns->dev->name); 284 285 return false; 285 286 } … … 295 296 static bool ns8250_dev_probe(ns8250_t *ns) 296 297 { 297 printf(NAME ":ns8250_dev_probe %s\n", ns->dev->name);298 ddf_msg(LVL_DEBUG, "ns8250_dev_probe %s\n", ns->dev->name); 298 299 299 300 ioport8_t *port_addr = ns->port; … … 313 314 pio_write_8(port_addr + 4, olddata); 314 315 315 if (!res) 316 printf(NAME ": device %s is not present.\n", ns->dev->name); 316 if (!res) { 317 ddf_msg(LVL_DEBUG, "Device %s is not present.\n", 318 ns->dev->name); 319 } 317 320 318 321 return res; … … 326 329 static int ns8250_dev_initialize(ns8250_t *ns) 327 330 { 328 printf(NAME ":ns8250_dev_initialize %s\n", ns->dev->name);331 ddf_msg(LVL_DEBUG, "ns8250_dev_initialize %s\n", ns->dev->name); 329 332 330 333 int ret = EOK; … … 337 340 IPC_FLAG_BLOCKING); 338 341 if (ns->dev->parent_phone < 0) { 339 printf(NAME ": failed to connect to the parent driver of the"342 ddf_msg(LVL_ERROR, "Failed to connect to parent driver of " 340 343 "device %s.\n", ns->dev->name); 341 344 ret = ns->dev->parent_phone; … … 346 349 ret = hw_res_get_resource_list(ns->dev->parent_phone, &hw_resources); 347 350 if (ret != EOK) { 348 printf(NAME ": failed to get hw resources for thedevice "351 ddf_msg(LVL_ERROR, "Failed to get HW resources for device " 349 352 "%s.\n", ns->dev->name); 350 353 goto failed; … … 362 365 ns->irq = res->res.interrupt.irq; 363 366 irq = true; 364 printf(NAME ": the %s devicewas asigned irq = 0x%x.\n",367 ddf_msg(LVL_NOTE, "Device %s was asigned irq = 0x%x.\n", 365 368 ns->dev->name, ns->irq); 366 369 break; … … 369 372 ns->io_addr = res->res.io_range.address; 370 373 if (res->res.io_range.size < REG_COUNT) { 371 printf(NAME ": i/o range assigned to the device"372 " %s is too small.\n", ns->dev->name);374 ddf_msg(LVL_ERROR, "I/O range assigned to " 375 "device %s is too small.\n", ns->dev->name); 373 376 ret = ELIMIT; 374 377 goto failed; 375 378 } 376 379 ioport = true; 377 printf(NAME ": the %s device was asigned i/oaddress = "380 ddf_msg(LVL_NOTE, "Device %s was asigned I/O address = " 378 381 "0x%x.\n", ns->dev->name, ns->io_addr); 379 382 break; … … 385 388 386 389 if (!irq || !ioport) { 387 printf(NAME ": missing hw resource(s) for thedevice %s.\n",390 ddf_msg(LVL_ERROR, "Missing HW resource(s) for device %s.\n", 388 391 ns->dev->name); 389 392 ret = ENOENT; … … 470 473 471 474 if (baud_rate < 50 || MAX_BAUD_RATE % baud_rate != 0) { 472 printf(NAME ": error - somebody tried to set invalid baud rate "473 "%d\n",baud_rate);475 ddf_msg(LVL_ERROR, "Invalid baud rate %d requested.\n", 476 baud_rate); 474 477 return EINVAL; 475 478 } … … 654 657 if (ns->client_connected) { 655 658 if (!buf_push_back(&ns->input_buffer, val)) { 656 printf(NAME ": buffer overflow on "659 ddf_msg(LVL_WARN, "Buffer overflow on " 657 660 "%s.\n", ns->dev->name); 658 661 } else { 659 printf(NAME ": the character %c saved "662 ddf_msg(LVL_DEBUG2, "Character %c saved " 660 663 "to the buffer of %s.\n", 661 664 val, ns->dev->name); … … 714 717 int rc; 715 718 716 printf(NAME ":ns8250_add_device %s (handle = %d)\n",719 ddf_msg(LVL_DEBUG, "ns8250_add_device %s (handle = %d)\n", 717 720 dev->name, (int) dev->handle); 718 721 … … 749 752 /* Register interrupt handler. */ 750 753 if (ns8250_register_interrupt_handler(ns) != EOK) { 751 printf(NAME ": failed to register interrupt handler.\n");754 ddf_msg(LVL_ERROR, "Failed to register interrupt handler.\n"); 752 755 rc = EADDRNOTAVAIL; 753 756 goto fail; … … 757 760 rc = ns8250_interrupt_enable(ns); 758 761 if (rc != EOK) { 759 printf(NAME ": failed to enable the interrupt. Error code = "762 ddf_msg(LVL_ERROR, "Failed to enable the interrupt. Error code = " 760 763 "%d.\n", rc); 761 764 goto fail; … … 764 767 fun = ddf_fun_create(dev, fun_exposed, "a"); 765 768 if (fun == NULL) { 766 printf(NAME ": errorcreating function.\n");769 ddf_msg(LVL_ERROR, "Failed creating function.\n"); 767 770 goto fail; 768 771 } … … 772 775 rc = ddf_fun_bind(fun); 773 776 if (rc != EOK) { 774 printf(NAME ": errorbinding function.\n");777 ddf_msg(LVL_ERROR, "Failed binding function.\n"); 775 778 goto fail; 776 779 } … … 780 783 ddf_fun_add_to_class(fun, "serial"); 781 784 782 printf(NAME ": the %s device has beensuccessfully initialized.\n",785 ddf_msg(LVL_NOTE, "Device %s successfully initialized.\n", 783 786 dev->name); 784 787 … … 862 865 fibril_mutex_unlock(&data->mutex); 863 866 864 printf(NAME ":ns8250_get_props: baud rate %d, parity 0x%x, word "867 ddf_msg(LVL_DEBUG, "ns8250_get_props: baud rate %d, parity 0x%x, word " 865 868 "length %d, stop bits %d\n", *baud_rate, *parity, *word_length, 866 869 *stop_bits); … … 879 882 unsigned int parity, unsigned int word_length, unsigned int stop_bits) 880 883 { 881 printf(NAME ":ns8250_set_props: baud rate %d, parity 0x%x, word "884 ddf_msg(LVL_DEBUG, "ns8250_set_props: baud rate %d, parity 0x%x, word " 882 885 "length %d, stop bits %d\n", baud_rate, parity, word_length, 883 886 stop_bits); … … 940 943 static void ns8250_init(void) 941 944 { 945 ddf_log_init(NAME, LVL_ERROR); 946 942 947 ns8250_dev_ops.open = &ns8250_open; 943 948 ns8250_dev_ops.close = &ns8250_close; -
uspace/drv/pciintel/pci.c
r9b415c9 rfc51296 48 48 49 49 #include <ddf/driver.h> 50 #include <ddf/log.h> 50 51 #include <devman.h> 51 52 #include <ipc/devman.h> … … 225 226 226 227 if (match_id_str == NULL) { 227 printf(NAME ": out of memory creating match ID.\n");228 ddf_msg(LVL_ERROR, "Out of memory creating match ID.\n"); 228 229 return; 229 230 } … … 231 232 rc = ddf_fun_add_match_id(fun->fnode, match_id_str, 90); 232 233 if (rc != EOK) { 233 printf(NAME ": erroradding match ID: %s\n",234 ddf_msg(LVL_ERROR, "Failed adding match ID: %s\n", 234 235 str_error(rc)); 235 236 } … … 323 324 324 325 if (range_addr != 0) { 325 printf(NAME ": function %s : ", fun->fnode->name);326 printf("address = %" PRIx64, range_addr);327 printf(", size = %x\n",(unsigned int) range_size);326 ddf_msg(LVL_DEBUG, "Function %s : address = %" PRIx64 327 ", size = %x\n", fun->fnode->name, range_addr, 328 (unsigned int) range_size); 328 329 } 329 330 … … 350 351 hw_res_list->count++; 351 352 352 printf(NAME ": function %s uses irq %x.\n", fun->fnode->name, irq);353 ddf_msg(LVL_NOTE, "Function %s uses irq %x.\n", fun->fnode->name, irq); 353 354 } 354 355 … … 406 407 char *fun_name = pci_fun_create_name(fun); 407 408 if (fun_name == NULL) { 408 printf(NAME ": out of memory.\n");409 ddf_msg(LVL_ERROR, "Out of memory.\n"); 409 410 return; 410 411 } … … 412 413 fnode = ddf_fun_create(bus->dnode, fun_inner, fun_name); 413 414 if (fnode == NULL) { 414 printf(NAME ": errorcreating function.\n");415 ddf_msg(LVL_ERROR, "Failed creating function.\n"); 415 416 return; 416 417 } … … 426 427 fnode->driver_data = fun; 427 428 428 printf(NAME ": adding new function %s.\n",429 ddf_msg(LVL_DEBUG, "Adding new function %s.\n", 429 430 fnode->name); 430 431 … … 443 444 child_bus = pci_conf_read_8(fun, 444 445 PCI_BRIDGE_SEC_BUS_NUM); 445 printf(NAME ": device is pci-to-pci bridge, " 446 "secondary bus number = %d.\n", bus_num); 446 ddf_msg(LVL_DEBUG, "Device is pci-to-pci " 447 "bridge, secondary bus number = %d.\n", 448 bus_num); 447 449 if (child_bus > bus_num) 448 450 pci_bus_scan(bus, child_bus); … … 466 468 int rc; 467 469 468 printf(NAME ":pci_add_device\n");470 ddf_msg(LVL_DEBUG, "pci_add_device\n"); 469 471 dnode->parent_phone = -1; 470 472 471 473 bus = pci_bus_new(); 472 474 if (bus == NULL) { 473 printf(NAME ":pci_add_device allocation failed.\n");475 ddf_msg(LVL_ERROR, "pci_add_device allocation failed.\n"); 474 476 rc = ENOMEM; 475 477 goto fail; … … 481 483 IPC_FLAG_BLOCKING); 482 484 if (dnode->parent_phone < 0) { 483 printf(NAME ":pci_add_device failed to connect to the "485 ddf_msg(LVL_ERROR, "pci_add_device failed to connect to the " 484 486 "parent's driver.\n"); 485 487 rc = dnode->parent_phone; … … 491 493 rc = hw_res_get_resource_list(dnode->parent_phone, &hw_resources); 492 494 if (rc != EOK) { 493 printf(NAME ": pci_add_device failed to get hw resources for"494 " the device.\n");495 ddf_msg(LVL_ERROR, "pci_add_device failed to get hw resources " 496 "for the device.\n"); 495 497 goto fail; 496 498 } 497 499 got_res = true; 498 500 499 printf(NAME ":conf_addr = %" PRIx64 ".\n",501 ddf_msg(LVL_DEBUG, "conf_addr = %" PRIx64 ".\n", 500 502 hw_resources.resources[0].res.io_range.address); 501 503 … … 509 511 if (pio_enable((void *)(uintptr_t)bus->conf_io_addr, 8, 510 512 &bus->conf_addr_port)) { 511 printf(NAME ": failed to enable configuration ports.\n");513 ddf_msg(LVL_ERROR, "Failed to enable configuration ports.\n"); 512 514 rc = EADDRNOTAVAIL; 513 515 goto fail; … … 516 518 517 519 /* Make the bus device more visible. It has no use yet. */ 518 printf(NAME ": adding a 'ctl' function\n");520 ddf_msg(LVL_DEBUG, "Adding a 'ctl' function\n"); 519 521 520 522 ctl = ddf_fun_create(bus->dnode, fun_exposed, "ctl"); … … 532 534 533 535 /* Enumerate functions. */ 534 printf(NAME ": scanning the bus\n");536 ddf_msg(LVL_DEBUG, "Scanning the bus\n"); 535 537 pci_bus_scan(bus, 0); 536 538 … … 554 556 static void pciintel_init(void) 555 557 { 558 ddf_log_init(NAME, LVL_ERROR); 556 559 pci_fun_ops.interfaces[HW_RES_DEV_IFACE] = &pciintel_hw_res_ops; 557 560 } -
uspace/drv/root/root.c
r9b415c9 rfc51296 52 52 53 53 #include <ddf/driver.h> 54 #include <ddf/log.h> 54 55 #include <devman.h> 55 56 #include <ipc/devman.h> … … 89 90 int rc; 90 91 91 printf(NAME ": adding new function for virtual devices.\n");92 printf(NAME ": function node is `%s' (%d %s)\n", name,92 ddf_msg(LVL_DEBUG, "Adding new function for virtual devices. " 93 "Function node is `%s' (%d %s)\n", name, 93 94 VIRTUAL_FUN_MATCH_SCORE, VIRTUAL_FUN_MATCH_ID); 94 95 95 96 fun = ddf_fun_create(dev, fun_inner, name); 96 97 if (fun == NULL) { 97 printf(NAME ": errorcreating function %s\n", name);98 ddf_msg(LVL_ERROR, "Failed creating function %s\n", name); 98 99 return ENOMEM; 99 100 } … … 102 103 VIRTUAL_FUN_MATCH_SCORE); 103 104 if (rc != EOK) { 104 printf(NAME ": erroradding match IDs to function %s\n", name);105 ddf_msg(LVL_ERROR, "Failed adding match IDs to function %s\n", name); 105 106 ddf_fun_destroy(fun); 106 107 return rc; … … 109 110 rc = ddf_fun_bind(fun); 110 111 if (rc != EOK) { 111 printf(NAME ": errorbinding function %s: %s\n", name,112 ddf_msg(LVL_ERROR, "Failed binding function %s: %s\n", name, 112 113 str_error(rc)); 113 114 ddf_fun_destroy(fun); … … 136 137 platform = sysinfo_get_data("platform", &platform_size); 137 138 if (platform == NULL) { 138 printf(NAME ":Failed to obtain platform name.\n");139 ddf_msg(LVL_ERROR, "Failed to obtain platform name.\n"); 139 140 return ENOENT; 140 141 } … … 143 144 platform = realloc(platform, platform_size + 1); 144 145 if (platform == NULL) { 145 printf(NAME ":Memory allocation failed.\n");146 ddf_msg(LVL_ERROR, "Memory allocation failed.\n"); 146 147 return ENOMEM; 147 148 } … … 151 152 /* Construct match ID. */ 152 153 if (asprintf(&match_id, PLATFORM_FUN_MATCH_ID_FMT, platform) == -1) { 153 printf(NAME ":Memory allocation failed.\n");154 ddf_msg(LVL_ERROR, "Memory allocation failed.\n"); 154 155 return ENOMEM; 155 156 } 156 157 157 158 /* Add function. */ 158 printf(NAME ": adding platform function\n");159 printf(NAME ": function node is `%s' (%d %s)\n", PLATFORM_FUN_NAME,160 PLATFORM_FUN_MATCH_SCORE,match_id);159 ddf_msg(LVL_DEBUG, "Adding platform function. Function node is `%s' " 160 " (%d %s)\n", PLATFORM_FUN_NAME, PLATFORM_FUN_MATCH_SCORE, 161 match_id); 161 162 162 163 fun = ddf_fun_create(dev, fun_inner, name); 163 164 if (fun == NULL) { 164 printf(NAME ": error creating function %s\n", name);165 ddf_msg(LVL_ERROR, "Error creating function %s\n", name); 165 166 return ENOMEM; 166 167 } … … 168 169 rc = ddf_fun_add_match_id(fun, match_id, PLATFORM_FUN_MATCH_SCORE); 169 170 if (rc != EOK) { 170 printf(NAME ": error adding match IDs to function %s\n", name); 171 ddf_msg(LVL_ERROR, "Failed adding match IDs to function %s\n", 172 name); 171 173 ddf_fun_destroy(fun); 172 174 return rc; … … 175 177 rc = ddf_fun_bind(fun); 176 178 if (rc != EOK) { 177 printf(NAME ": errorbinding function %s: %s\n", name,179 ddf_msg(LVL_ERROR, "Failed binding function %s: %s\n", name, 178 180 str_error(rc)); 179 181 ddf_fun_destroy(fun); … … 191 193 static int root_add_device(ddf_dev_t *dev) 192 194 { 193 printf(NAME ":root_add_device, device handle=%" PRIun "\n",195 ddf_msg(LVL_DEBUG, "root_add_device, device handle=%" PRIun "\n", 194 196 dev->handle); 195 197 … … 204 206 int res = add_platform_fun(dev); 205 207 if (EOK != res) 206 printf(NAME ": failed to addchild device for platform.\n");208 ddf_msg(LVL_ERROR, "Failed adding child device for platform.\n"); 207 209 208 210 return res; … … 212 214 { 213 215 printf(NAME ": HelenOS root device driver\n"); 216 217 ddf_log_init(NAME, LVL_ERROR); 214 218 return ddf_driver_main(&root_driver); 215 219 } -
uspace/drv/rootpc/rootpc.c
r9b415c9 rfc51296 47 47 48 48 #include <ddf/driver.h> 49 #include <ddf/log.h> 49 50 #include <devman.h> 50 51 #include <ipc/devman.h> … … 119 120 rootpc_fun_t *fun) 120 121 { 121 printf(NAME ": adding new function '%s'.\n", name);122 ddf_msg(LVL_DEBUG, "Adding new function '%s'.\n", name); 122 123 123 124 ddf_fun_t *fnode = NULL; … … 145 146 /* Register function. */ 146 147 if (ddf_fun_bind(fnode) != EOK) { 147 printf(NAME ": errorbinding function %s.\n", name);148 ddf_msg(LVL_ERROR, "Failed binding function %s.\n", name); 148 149 goto failure; 149 150 } … … 158 159 ddf_fun_destroy(fnode); 159 160 160 printf(NAME ": failed to addfunction '%s'.\n", name);161 ddf_msg(LVL_ERROR, "Failed adding function '%s'.\n", name); 161 162 162 163 return false; … … 176 177 static int rootpc_add_device(ddf_dev_t *dev) 177 178 { 178 printf(NAME ":rootpc_add_device, device handle = %d\n",179 ddf_msg(LVL_DEBUG, "rootpc_add_device, device handle = %d\n", 179 180 (int)dev->handle); 180 181 181 182 /* Register functions. */ 182 183 if (!rootpc_add_functions(dev)) { 183 printf(NAME ": failed to add functions for PC platform.\n");184 ddf_msg(LVL_ERROR, "Failed to add functions for PC platform.\n"); 184 185 } 185 186 … … 189 190 static void root_pc_init(void) 190 191 { 192 ddf_log_init(NAME, LVL_ERROR); 191 193 rootpc_fun_ops.interfaces[HW_RES_DEV_IFACE] = &fun_hw_res_ops; 192 194 } -
uspace/drv/rootvirt/rootvirt.c
r9b415c9 rfc51296 40 40 #include <str_error.h> 41 41 #include <ddf/driver.h> 42 #include <ddf/log.h> 42 43 43 44 #define NAME "rootvirt" … … 83 84 int rc; 84 85 85 printf(NAME ": registering function `%s' (match \"%s\")\n",86 ddf_msg(LVL_DEBUG, "Registering function `%s' (match \"%s\")\n", 86 87 vfun->name, vfun->match_id); 87 88 88 89 fun = ddf_fun_create(vdev, fun_inner, vfun->name); 89 90 if (fun == NULL) { 90 printf(NAME ": errorcreating function %s\n", vfun->name);91 ddf_msg(LVL_ERROR, "Failed creating function %s\n", vfun->name); 91 92 return ENOMEM; 92 93 } … … 94 95 rc = ddf_fun_add_match_id(fun, vfun->match_id, 10); 95 96 if (rc != EOK) { 96 printf(NAME ": erroradding match IDs to function %s\n",97 ddf_msg(LVL_ERROR, "Failed adding match IDs to function %s\n", 97 98 vfun->name); 98 99 ddf_fun_destroy(fun); … … 102 103 rc = ddf_fun_bind(fun); 103 104 if (rc != EOK) { 104 printf(NAME ": errorbinding function %s: %s\n", vfun->name,105 ddf_msg(LVL_ERROR, "Failed binding function %s: %s\n", vfun->name, 105 106 str_error(rc)); 106 107 ddf_fun_destroy(fun); … … 108 109 } 109 110 110 printf(NAME ": registered child device `%s'\n", vfun->name);111 ddf_msg(LVL_NOTE, "Registered child device `%s'\n", vfun->name); 111 112 return EOK; 112 113 } … … 124 125 } 125 126 126 printf(NAME ":add_device(handle=%d)\n", (int)dev->handle);127 ddf_msg(LVL_DEBUG, "add_device(handle=%d)\n", (int)dev->handle); 127 128 128 129 /* … … 142 143 { 143 144 printf(NAME ": HelenOS virtual devices root driver\n"); 145 146 ddf_log_init(NAME, LVL_ERROR); 144 147 return ddf_driver_main(&rootvirt_driver); 145 148 } -
uspace/drv/test1/test1.c
r9b415c9 rfc51296 35 35 #include <str_error.h> 36 36 #include <ddf/driver.h> 37 #include <ddf/log.h> 37 38 38 39 #include "test1.h" … … 63 64 int rc; 64 65 65 printf(NAME ": registering function `%s': %s.\n", name, message);66 ddf_msg(LVL_DEBUG, "Registering function `%s': %s.\n", name, message); 66 67 67 68 fun = ddf_fun_create(parent, fun_inner, name); 68 69 if (fun == NULL) { 69 printf(NAME ": errorcreating function %s\n", name);70 ddf_msg(LVL_ERROR, "Failed creating function %s\n", name); 70 71 return ENOMEM; 71 72 } … … 73 74 rc = ddf_fun_add_match_id(fun, match_id, match_score); 74 75 if (rc != EOK) { 75 printf(NAME ": error adding match IDs to function %s\n", name); 76 ddf_msg(LVL_ERROR, "Failed adding match IDs to function %s\n", 77 name); 76 78 ddf_fun_destroy(fun); 77 79 return rc; … … 80 82 rc = ddf_fun_bind(fun); 81 83 if (rc != EOK) { 82 printf(NAME ": errorbinding function %s: %s\n", name,84 ddf_msg(LVL_ERROR, "Failed binding function %s: %s\n", name, 83 85 str_error(rc)); 84 86 ddf_fun_destroy(fun); … … 86 88 } 87 89 88 printf(NAME ": registered child device `%s'\n", name);90 ddf_msg(LVL_NOTE, "Registered child device `%s'\n", name); 89 91 return EOK; 90 92 } … … 112 114 int rc; 113 115 114 printf(NAME ":add_device(name=\"%s\", handle=%d)\n",116 ddf_msg(LVL_DEBUG, "add_device(name=\"%s\", handle=%d)\n", 115 117 dev->name, (int) dev->handle); 116 118 117 119 fun_a = ddf_fun_create(dev, fun_exposed, "a"); 118 120 if (fun_a == NULL) { 119 printf(NAME ": errorcreating function 'a'.\n");121 ddf_msg(LVL_ERROR, "Failed creating function 'a'.\n"); 120 122 return ENOMEM; 121 123 } … … 123 125 rc = ddf_fun_bind(fun_a); 124 126 if (rc != EOK) { 125 printf(NAME ": errorbinding function 'a'.\n");127 ddf_msg(LVL_ERROR, "Failed binding function 'a'.\n"); 126 128 return rc; 127 129 } … … 140 142 } 141 143 142 printf(NAME ": device `%s' accepted.\n", dev->name);144 ddf_msg(LVL_DEBUG, "Device `%s' accepted.\n", dev->name); 143 145 144 146 return EOK; … … 148 150 { 149 151 printf(NAME ": HelenOS test1 virtual device driver\n"); 152 ddf_log_init(NAME, LVL_ERROR); 150 153 return ddf_driver_main(&test1_driver); 151 154 } -
uspace/drv/test2/test2.c
r9b415c9 rfc51296 36 36 #include <str_error.h> 37 37 #include <ddf/driver.h> 38 #include <ddf/log.h> 38 39 39 40 #define NAME "test2" … … 64 65 int rc; 65 66 66 printf(NAME ": registering function `%s': %s.\n", name, message);67 ddf_msg(LVL_DEBUG, "Registering function `%s': %s.\n", name, message); 67 68 68 69 fun = ddf_fun_create(parent, fun_inner, name); 69 70 if (fun == NULL) { 70 printf(NAME ": errorcreating function %s\n", name);71 ddf_msg(LVL_ERROR, "Failed creating function %s\n", name); 71 72 return ENOMEM; 72 73 } … … 74 75 rc = ddf_fun_add_match_id(fun, match_id, match_score); 75 76 if (rc != EOK) { 76 printf(NAME ": error adding match IDs to function %s\n", name); 77 ddf_msg(LVL_ERROR, "Failed adding match IDs to function %s\n", 78 name); 77 79 ddf_fun_destroy(fun); 78 80 return rc; … … 81 83 rc = ddf_fun_bind(fun); 82 84 if (rc != EOK) { 83 printf(NAME ": errorbinding function %s: %s\n", name,85 ddf_msg(LVL_ERROR, "Failed binding function %s: %s\n", name, 84 86 str_error(rc)); 85 87 ddf_fun_destroy(fun); … … 87 89 } 88 90 89 printf(NAME ": registered child device `%s'\n", name);91 ddf_msg(LVL_NOTE, "Registered child device `%s'\n", name); 90 92 return EOK; 91 93 } … … 111 113 fun_a = ddf_fun_create(dev, fun_exposed, "a"); 112 114 if (fun_a == NULL) { 113 printf(NAME ": errorcreating function 'a'.\n");115 ddf_msg(LVL_ERROR, "Failed creating function 'a'.\n"); 114 116 return ENOMEM; 115 117 } … … 117 119 rc = ddf_fun_bind(fun_a); 118 120 if (rc != EOK) { 119 printf(NAME ": errorbinding function 'a'.\n");121 ddf_msg(LVL_ERROR, "Failed binding function 'a'.\n"); 120 122 return rc; 121 123 } … … 128 130 static int test2_add_device(ddf_dev_t *dev) 129 131 { 130 printf(NAME ":test2_add_device(name=\"%s\", handle=%d)\n",132 ddf_msg(LVL_DEBUG, "test2_add_device(name=\"%s\", handle=%d)\n", 131 133 dev->name, (int) dev->handle); 132 134 … … 134 136 fid_t postpone = fibril_create(postponed_birth, dev); 135 137 if (postpone == 0) { 136 printf(NAME ": fibril_create() error\n");138 ddf_msg(LVL_ERROR, "fibril_create() failed.\n"); 137 139 return ENOMEM; 138 140 } … … 149 151 { 150 152 printf(NAME ": HelenOS test2 virtual device driver\n"); 153 ddf_log_init(NAME, LVL_ERROR); 151 154 return ddf_driver_main(&test2_driver); 152 155 } -
uspace/lib/c/generic/io/log.c
r9b415c9 rfc51296 35 35 #include <errno.h> 36 36 #include <fibril_synch.h> 37 #include <stdarg.h> 37 38 #include <stdlib.h> 38 39 #include <stdio.h> … … 89 90 va_list args; 90 91 92 va_start(args, fmt); 93 log_msgv(level, fmt, args); 94 va_end(args); 95 } 96 97 /** Write an entry to the log (va_list variant). 98 * 99 * @param level Message verbosity level. Message is only printed 100 * if verbosity is less than or equal to current 101 * reporting level. 102 * @param fmt Format string 103 */ 104 void log_msgv(log_level_t level, const char *fmt, va_list args) 105 { 91 106 assert(level < LVL_LIMIT); 92 107 93 108 /* Higher number means higher verbosity. */ 94 109 if (level <= log_level) { 95 va_start(args, fmt);96 110 fibril_mutex_lock(&log_serializer); 97 111 98 fprintf(log_stream, "%s: %s ", log_prog_name,112 fprintf(log_stream, "%s: %s: ", log_prog_name, 99 113 log_level_names[level]); 100 114 vfprintf(log_stream, fmt, args); … … 102 116 103 117 fibril_mutex_unlock(&log_serializer); 104 va_end(args);105 118 } 106 119 } -
uspace/lib/c/include/io/log.h
r9b415c9 rfc51296 35 35 #define LIBC_IO_LOG_H_ 36 36 37 #include <stdarg.h> 38 37 39 typedef enum { 38 40 LVL_FATAL, … … 49 51 extern int log_init(const char *, log_level_t); 50 52 extern void log_msg(log_level_t, const char *, ...); 53 extern void log_msgv(log_level_t, const char *, va_list); 51 54 52 55 #endif -
uspace/lib/drv/Makefile
r9b415c9 rfc51296 35 35 generic/driver.c \ 36 36 generic/dev_iface.c \ 37 generic/log.c \ 37 38 generic/remote_hw_res.c \ 38 39 generic/remote_char_dev.c -
uspace/lib/drv/generic/driver.c
r9b415c9 rfc51296 273 273 274 274 res = driver->driver_ops->add_device(dev); 275 if (res == EOK) { 276 printf("%s: new device with handle=%" PRIun " was added.\n", 277 driver->name, dev_handle); 278 } else { 279 printf("%s: failed to add a new device with handle = %" PRIun ".\n", 280 driver->name, dev_handle); 275 if (res != EOK) 281 276 delete_device(dev); 282 }283 277 284 278 async_answer_0(iid, res);
Note:
See TracChangeset
for help on using the changeset viewer.