Changes in / [f2d2c604:0a3fbc7] in mainline
- Files:
-
- 2 deleted
- 22 edited
Legend:
- Unmodified
- Added
- Removed
-
tools/pack.py
rf2d2c604 r0a3fbc7 113 113 114 114 comp_in = file(component, "rb") 115 comp_data = comp_in.read() 115 comp_data = comp_in.read(); 116 116 comp_in.close() 117 117 -
uspace/drv/ns8250/ns8250.c
rf2d2c604 r0a3fbc7 123 123 static void delete_ns8250_dev_data(ns8250_dev_data_t *data) 124 124 { 125 if ( data != NULL)125 if (NULL != data) 126 126 free(data); 127 127 } … … 251 251 static void ns8250_dev_cleanup(device_t *dev) 252 252 { 253 if ( dev->driver_data != NULL) {253 if (NULL != dev->driver_data) { 254 254 delete_ns8250_dev_data((ns8250_dev_data_t*) dev->driver_data); 255 255 dev->driver_data = NULL; … … 332 332 /* Allocate driver data for the device. */ 333 333 ns8250_dev_data_t *data = create_ns8250_dev_data(); 334 if ( data == NULL)334 if (NULL == data) 335 335 return ENOMEM; 336 336 dev->driver_data = data; … … 436 436 /* Enable interrupt globally. */ 437 437 res = interrupt_enable(data->irq); 438 if ( res != EOK)438 if (EOK != res) 439 439 return res; 440 440 … … 480 480 uint8_t div_low, div_high; 481 481 482 if ( baud_rate < 50 || MAX_BAUD_RATE % baud_rate != 0) {482 if (50 > baud_rate || 0 != MAX_BAUD_RATE % baud_rate) { 483 483 printf(NAME ": error - somebody tried to set invalid baud rate " 484 484 "%d\n", baud_rate); … … 534 534 * @param stop_bits The number of stop bits used (one or two). 535 535 */ 536 static void ns8250_port_get_com_props(ioport8_t *port, unsigned int *parity, 536 static void 537 ns8250_port_get_com_props(ioport8_t *port, unsigned int *parity, 537 538 unsigned int *word_length, unsigned int *stop_bits) 538 539 { … … 571 572 * is invalid. 572 573 */ 573 static int ns8250_port_set_com_props(ioport8_t *port, unsigned int parity, 574 static int 575 ns8250_port_set_com_props(ioport8_t *port, unsigned int parity, 574 576 unsigned int word_length, unsigned int stop_bits) 575 577 { … … 689 691 * @param dev The serial port device. 690 692 */ 691 static inline void ns8250_interrupt_handler(device_t *dev, ipc_callid_t iid,692 693 static inline void 694 ns8250_interrupt_handler(device_t *dev, ipc_callid_t iid, ipc_call_t *icall) 693 695 { 694 696 ns8250_read_from_device(dev); … … 724 726 * @param dev The serial port device. 725 727 */ 726 static int ns8250_add_device(device_t *dev) 728 static int ns8250_add_device(device_t *dev) 727 729 { 728 730 printf(NAME ": ns8250_add_device %s (handle = %d)\n", … … 730 732 731 733 int res = ns8250_dev_initialize(dev); 732 if ( res != EOK)734 if (EOK != res) 733 735 return res; 734 736 … … 748 750 749 751 /* Register interrupt handler. */ 750 if ( ns8250_register_interrupt_handler(dev) != EOK) {752 if (EOK != ns8250_register_interrupt_handler(dev)) { 751 753 printf(NAME ": failed to register interrupt handler.\n"); 752 754 ns8250_dev_cleanup(dev); … … 756 758 /* Enable interrupt. */ 757 759 res = ns8250_interrupt_enable(dev); 758 if ( res != EOK) {760 if (EOK != res) { 759 761 printf(NAME ": failed to enable the interrupt. Error code = " 760 762 "%d.\n", res); … … 857 859 * @param stop_bits The number of stop bits to be used. 858 860 */ 859 static int ns8250_set_props(device_t *dev, unsigned int baud_rate, 860 unsigned int parity, unsigned int word_length, unsigned int stop_bits) 861 static int 862 ns8250_set_props(device_t *dev, unsigned int baud_rate, unsigned int parity, 863 unsigned int word_length, unsigned int stop_bits) 861 864 { 862 865 printf(NAME ": ns8250_set_props: baud rate %d, parity 0x%x, word " … … 871 874 ns8250_port_interrupts_disable(port); 872 875 ret = ns8250_port_set_baud_rate(port, baud_rate); 873 if ( ret == EOK)876 if (EOK == ret) 874 877 ret = ns8250_port_set_com_props(port, parity, word_length, stop_bits); 875 878 ns8250_port_interrupts_enable(port); … … 884 887 * Configure the parameters of the serial communication. 885 888 */ 886 static void ns8250_default_handler(device_t *dev, ipc_callid_t callid,887 889 static void 890 ns8250_default_handler(device_t *dev, ipc_callid_t callid, ipc_call_t *call) 888 891 { 889 892 ipcarg_t method = IPC_GET_METHOD(*call); -
uspace/drv/pciintel/pci.c
rf2d2c604 r0a3fbc7 65 65 pci_dev_data_t *dev_data = (pci_dev_data_t *) dev->driver_data; 66 66 67 if ( dev_data == NULL)67 if (NULL == dev_data) 68 68 return NULL; 69 69 return &dev_data->hw_resources; … … 109 109 110 110 bus_data = (pci_bus_data_t *) malloc(sizeof(pci_bus_data_t)); 111 if ( bus_data != NULL) {111 if (NULL != bus_data) { 112 112 memset(bus_data, 0, sizeof(pci_bus_data_t)); 113 113 fibril_mutex_initialize(&bus_data->conf_mutex); 114 114 } 115 116 115 return bus_data; 117 116 } … … 124 123 static void pci_conf_read(device_t *dev, int reg, uint8_t *buf, size_t len) 125 124 { 126 assert( dev->parent != NULL);125 assert(NULL != dev->parent); 127 126 128 127 pci_dev_data_t *dev_data = (pci_dev_data_t *) dev->driver_data; … … 154 153 static void pci_conf_write(device_t *dev, int reg, uint8_t *buf, size_t len) 155 154 { 156 assert( dev->parent != NULL);155 assert(NULL != dev->parent); 157 156 158 157 pci_dev_data_t *dev_data = (pci_dev_data_t *) dev->driver_data; … … 225 224 226 225 match_id = create_match_id(); 227 if ( match_id != NULL) {226 if (NULL != match_id) { 228 227 asprintf(&match_id_str, "pci/ven=%04x&dev=%04x", 229 228 dev_data->vendor_id, dev_data->device_id); … … 231 230 match_id->score = 90; 232 231 add_match_id(&dev->match_ids, match_id); 233 } 234 232 } 235 233 /* TODO add more ids (with subsys ids, using class id etc.) */ 236 234 } … … 244 242 size_t count = hw_res_list->count; 245 243 246 assert( hw_resources != NULL);244 assert(NULL != hw_resources); 247 245 assert(count < PCI_MAX_HW_RES); 248 246 … … 277 275 bool io; 278 276 /* 64-bit wide address */ 279 bool addrw64;277 bool w64; 280 278 281 279 /* Size of the io or memory range specified by the BAR */ … … 289 287 io = (bool) (val & 1); 290 288 if (io) { 291 addrw64 = false;289 w64 = false; 292 290 } else { 293 291 switch ((val >> 1) & 3) { 294 292 case 0: 295 addrw64 = false;293 w64 = false; 296 294 break; 297 295 case 2: 298 addrw64 = true;296 w64 = true; 299 297 break; 300 298 default: … … 314 312 range_size = pci_bar_mask_to_size(mask); 315 313 316 if ( addrw64) {314 if (w64) { 317 315 range_addr = ((uint64_t)pci_conf_read_32(dev, addr + 4) << 32) | 318 316 (val & 0xfffffff0); … … 321 319 } 322 320 323 if ( range_addr != 0) {321 if (0 != range_addr) { 324 322 printf(NAME ": device %s : ", dev->name); 325 323 printf("address = %x", range_addr); … … 329 327 pci_add_range(dev, range_addr, range_size, io); 330 328 331 if ( addrw64)329 if (w64) 332 330 return addr + 8; 333 331 … … 356 354 { 357 355 uint8_t irq = pci_conf_read_8(dev, PCI_BRIDGE_INT_LINE); 358 if ( irq != 0xff)356 if (0xff != irq) 359 357 pci_add_interrupt(dev, irq); 360 358 } … … 417 415 create_pci_match_ids(dev); 418 416 419 if ( child_device_register(dev, parent) != EOK) {417 if (EOK != child_device_register(dev, parent)) { 420 418 pci_clean_resource_list(dev); 421 419 clean_match_ids(&dev->match_ids); … … 426 424 427 425 if (header_type == PCI_HEADER_TYPE_BRIDGE || 428 header_type == PCI_HEADER_TYPE_CARDBUS ) {426 header_type == PCI_HEADER_TYPE_CARDBUS ) { 429 427 child_bus = pci_conf_read_8(dev, 430 428 PCI_BRIDGE_SEC_BUS_NUM); 431 429 printf(NAME ": device is pci-to-pci bridge, " 432 430 "secondary bus number = %d.\n", bus_num); 433 if 431 if(child_bus > bus_num) 434 432 pci_bus_scan(parent, child_bus); 435 433 } … … 455 453 456 454 pci_bus_data_t *bus_data = create_pci_bus_data(); 457 if ( bus_data == NULL) {455 if (NULL == bus_data) { 458 456 printf(NAME ": pci_add_device allocation failed.\n"); 459 457 return ENOMEM; … … 515 513 } 516 514 517 pci_dev_data_t *create_pci_dev_data(void)518 {519 pci_dev_data_t *res = (pci_dev_data_t *) malloc(sizeof(pci_dev_data_t));520 521 if (res != NULL)522 memset(res, 0, sizeof(pci_dev_data_t));523 return res;524 }525 526 void init_pci_dev_data(pci_dev_data_t *dev_data, int bus, int dev, int fn)527 {528 dev_data->bus = bus;529 dev_data->dev = dev;530 dev_data->fn = fn;531 }532 533 void delete_pci_dev_data(pci_dev_data_t *dev_data)534 {535 if (dev_data != NULL) {536 clean_hw_resource_list(&dev_data->hw_resources);537 free(dev_data);538 }539 }540 541 void create_pci_dev_name(device_t *dev)542 {543 pci_dev_data_t *dev_data = (pci_dev_data_t *) dev->driver_data;544 char *name = NULL;545 546 asprintf(&name, "%02x:%02x.%01x", dev_data->bus, dev_data->dev,547 dev_data->fn);548 dev->name = name;549 }550 551 bool pci_alloc_resource_list(device_t *dev)552 {553 pci_dev_data_t *dev_data = (pci_dev_data_t *)dev->driver_data;554 555 dev_data->hw_resources.resources =556 (hw_resource_t *) malloc(PCI_MAX_HW_RES * sizeof(hw_resource_t));557 return dev_data->hw_resources.resources != NULL;558 }559 560 void pci_clean_resource_list(device_t *dev)561 {562 pci_dev_data_t *dev_data = (pci_dev_data_t *) dev->driver_data;563 564 if (dev_data->hw_resources.resources != NULL) {565 free(dev_data->hw_resources.resources);566 dev_data->hw_resources.resources = NULL;567 }568 }569 570 /** Read the base address registers (BARs) of the device and adds the addresses571 * to its hw resource list.572 *573 * @param dev the pci device.574 */575 void pci_read_bars(device_t *dev)576 {577 /*578 * Position of the BAR in the PCI configuration address space of the579 * device.580 */581 int addr = PCI_BASE_ADDR_0;582 583 while (addr <= PCI_BASE_ADDR_5)584 addr = pci_read_bar(dev, addr);585 }586 587 size_t pci_bar_mask_to_size(uint32_t mask)588 {589 return ((mask & 0xfffffff0) ^ 0xffffffff) + 1;590 }591 592 515 int main(int argc, char *argv[]) 593 516 { -
uspace/drv/pciintel/pci.h
rf2d2c604 r0a3fbc7 69 69 extern void pci_bus_scan(device_t *, int); 70 70 71 extern pci_dev_data_t *create_pci_dev_data(void); 72 extern void init_pci_dev_data(pci_dev_data_t *, int, int, int); 73 extern void delete_pci_dev_data(pci_dev_data_t *); 74 extern void create_pci_dev_name(device_t *); 71 static inline pci_dev_data_t *create_pci_dev_data(void) 72 { 73 pci_dev_data_t *res = (pci_dev_data_t *) malloc(sizeof(pci_dev_data_t)); 74 75 if (NULL != res) 76 memset(res, 0, sizeof(pci_dev_data_t)); 77 return res; 78 } 75 79 76 extern bool pci_alloc_resource_list(device_t *); 77 extern void pci_clean_resource_list(device_t *); 80 static inline void 81 init_pci_dev_data(pci_dev_data_t *d, int bus, int dev, int fn) 82 { 83 d->bus = bus; 84 d->dev = dev; 85 d->fn = fn; 86 } 78 87 79 extern void pci_read_bars(device_t *); 80 extern size_t pci_bar_mask_to_size(uint32_t); 88 static inline void delete_pci_dev_data(pci_dev_data_t *d) 89 { 90 if (NULL != d) { 91 clean_hw_resource_list(&d->hw_resources); 92 free(d); 93 } 94 } 95 96 static inline void create_pci_dev_name(device_t *dev) 97 { 98 pci_dev_data_t *dev_data = (pci_dev_data_t *) dev->driver_data; 99 char *name = NULL; 100 101 asprintf(&name, "%02x:%02x.%01x", dev_data->bus, dev_data->dev, 102 dev_data->fn); 103 dev->name = name; 104 } 105 106 static inline bool pci_alloc_resource_list(device_t *dev) 107 { 108 pci_dev_data_t *dev_data = (pci_dev_data_t *)dev->driver_data; 109 110 dev_data->hw_resources.resources = 111 (hw_resource_t *) malloc(PCI_MAX_HW_RES * sizeof(hw_resource_t)); 112 return dev_data->hw_resources.resources != NULL; 113 } 114 115 static inline void pci_clean_resource_list(device_t *dev) 116 { 117 pci_dev_data_t *dev_data = (pci_dev_data_t *) dev->driver_data; 118 119 if (NULL != dev_data->hw_resources.resources) { 120 free(dev_data->hw_resources.resources); 121 dev_data->hw_resources.resources = NULL; 122 } 123 } 124 125 /** Read the base address registers (BARs) of the device and adds the addresses 126 * to its hw resource list. 127 * 128 * @param dev the pci device. 129 */ 130 static inline void pci_read_bars(device_t *dev) 131 { 132 /* 133 * Position of the BAR in the PCI configuration address space of the 134 * device. 135 */ 136 int addr = PCI_BASE_ADDR_0; 137 138 while (addr <= PCI_BASE_ADDR_5) 139 addr = pci_read_bar(dev, addr); 140 } 141 142 static inline size_t pci_bar_mask_to_size(uint32_t mask) 143 { 144 return ((mask & 0xfffffff0) ^ 0xffffffff) + 1; 145 } 81 146 82 147 #endif -
uspace/lib/c/arch/abs32le/include/fibril.h
rf2d2c604 r0a3fbc7 44 44 (ctx)->pc = (uintptr_t) (_pc); \ 45 45 (ctx)->sp = ((uintptr_t) (stack)) + (size) - SP_DELTA; \ 46 (ctx)->fp = 0; \47 46 (ctx)->tls = ((uintptr_t) (ptls)) + sizeof(tcb_t); \ 48 47 } while (0) … … 54 53 typedef struct { 55 54 uintptr_t sp; 56 uintptr_t fp;57 55 uintptr_t pc; 58 56 uintptr_t tls; 59 57 } context_t; 60 61 static inline uintptr_t context_get_fp(context_t *ctx)62 {63 /* On real hardware, this function returns the frame pointer. */64 return ctx->fp;65 }66 58 67 59 #endif -
uspace/lib/c/arch/amd64/include/fibril.h
rf2d2c604 r0a3fbc7 56 56 */ 57 57 typedef struct { 58 uint64_t sp; 59 uint64_t pc; 58 uint64_t sp; 59 uint64_t pc; 60 61 uint64_t rbx; 62 uint64_t rbp; 60 63 61 uint64_t rbx; 62 uint64_t rbp; 64 uint64_t r12; 65 uint64_t r13; 66 uint64_t r14; 67 uint64_t r15; 63 68 64 uint64_t r12; 65 uint64_t r13; 66 uint64_t r14; 67 uint64_t r15; 68 69 uint64_t tls; 69 uint64_t tls; 70 70 } context_t; 71 72 static inline uintptr_t context_get_fp(context_t *ctx)73 {74 return ctx->rbp;75 }76 71 77 72 #endif -
uspace/lib/c/arch/arm32/include/fibril.h
rf2d2c604 r0a3fbc7 86 86 } context_t; 87 87 88 static inline uintptr_t context_get_fp(context_t *ctx)89 {90 return ctx->fp;91 }92 93 88 94 89 #endif -
uspace/lib/c/arch/ia32/include/fibril.h
rf2d2c604 r0a3fbc7 67 67 } context_t; 68 68 69 static inline uintptr_t context_get_fp(context_t *ctx)70 {71 return ctx->ebp;72 }73 74 69 #endif 75 70 -
uspace/lib/c/arch/ia64/include/fibril.h
rf2d2c604 r0a3fbc7 130 130 } context_t; 131 131 132 static inline uintptr_t context_get_fp(context_t *ctx)133 {134 return 0; /* FIXME */135 }136 137 132 #endif 138 133 -
uspace/lib/c/arch/mips32/include/fibril.h
rf2d2c604 r0a3fbc7 85 85 } context_t; 86 86 87 static inline uintptr_t context_get_fp(context_t *ctx)88 {89 return ctx->sp;90 }91 92 87 #endif 93 88 -
uspace/lib/c/arch/ppc32/include/fibril.h
rf2d2c604 r0a3fbc7 78 78 } __attribute__ ((packed)) context_t; 79 79 80 static inline uintptr_t context_get_fp(context_t *ctx)81 {82 return ctx->sp;83 }84 85 80 #endif 86 81 -
uspace/lib/c/arch/sparc64/include/fibril.h
rf2d2c604 r0a3fbc7 77 77 } context_t; 78 78 79 static inline uintptr_t context_get_fp(context_t *ctx)80 {81 return ctx->sp + STACK_BIAS;82 }83 84 79 #endif 85 80 -
uspace/lib/c/generic/fibril.c
rf2d2c604 r0a3fbc7 275 275 fibril->func = func; 276 276 fibril->arg = arg; 277 278 fibril->waits_for = NULL;279 277 280 278 context_save(&fibril->ctx); -
uspace/lib/c/generic/fibril_synch.c
rf2d2c604 r0a3fbc7 42 42 #include <errno.h> 43 43 #include <assert.h> 44 #include <stacktrace.h>45 #include <stdlib.h>46 44 47 45 static void optimize_execution_power(void) … … 58 56 } 59 57 60 static bool check_for_deadlock(fibril_owner_info_t *oi)61 {62 while (oi && oi->owned_by) {63 if (oi->owned_by == (fibril_t *) fibril_get_id())64 return true;65 oi = oi->owned_by->waits_for;66 }67 68 return false;69 }70 71 static void print_deadlock(fibril_owner_info_t *oi)72 {73 fibril_t *f = (fibril_t *) fibril_get_id();74 75 printf("Deadlock detected.\n");76 stacktrace_print();77 78 printf("Fibril %p waits for primitive %p.\n", f, oi);79 80 while (oi && oi->owned_by) {81 printf("Primitive %p is owned by fibril %p.\n",82 oi, oi->owned_by);83 if (oi->owned_by == f)84 break;85 stacktrace_print_fp_pc(context_get_fp(&oi->owned_by->ctx),86 oi->owned_by->ctx.pc);87 printf("Fibril %p waits for primitive %p.\n",88 oi->owned_by, oi->owned_by->waits_for);89 oi = oi->owned_by->waits_for;90 }91 92 abort();93 }94 95 58 void fibril_mutex_initialize(fibril_mutex_t *fm) 96 59 { 97 fm->oi.owned_by = NULL;98 60 fm->counter = 1; 99 61 list_initialize(&fm->waiters); … … 102 64 void fibril_mutex_lock(fibril_mutex_t *fm) 103 65 { 104 fibril_t *f = (fibril_t *) fibril_get_id();105 106 66 futex_down(&async_futex); 107 67 if (fm->counter-- <= 0) { … … 113 73 link_initialize(&wdata.wu_event.link); 114 74 list_append(&wdata.wu_event.link, &fm->waiters); 115 116 if (check_for_deadlock(&fm->oi))117 print_deadlock(&fm->oi);118 f->waits_for = &fm->oi;119 120 75 fibril_switch(FIBRIL_TO_MANAGER); 121 76 } else { 122 fm->oi.owned_by = f;123 77 futex_up(&async_futex); 124 78 } … … 132 86 if (fm->counter > 0) { 133 87 fm->counter--; 134 fm->oi.owned_by = (fibril_t *) fibril_get_id();135 88 locked = true; 136 89 } … … 146 99 link_t *tmp; 147 100 awaiter_t *wdp; 148 fibril_t *f;149 101 150 102 assert(!list_empty(&fm->waiters)); … … 153 105 wdp->active = true; 154 106 wdp->wu_event.inlist = false; 155 156 f = (fibril_t *) wdp->fid;157 fm->oi.owned_by = f;158 f->waits_for = NULL;159 160 107 list_remove(&wdp->wu_event.link); 161 108 fibril_add_ready(wdp->fid); 162 109 optimize_execution_power(); 163 } else {164 fm->oi.owned_by = NULL;165 110 } 166 111 } … … 175 120 void fibril_rwlock_initialize(fibril_rwlock_t *frw) 176 121 { 177 frw->oi.owned_by = NULL;178 122 frw->writers = 0; 179 123 frw->readers = 0; -
uspace/lib/c/include/fibril.h
rf2d2c604 r0a3fbc7 48 48 #define FIBRIL_WRITER 2 49 49 50 struct fibril;51 52 typedef struct {53 struct fibril *owned_by;54 } fibril_owner_info_t;55 56 50 typedef enum { 57 51 FIBRIL_PREEMPT, … … 74 68 int retval; 75 69 int flags; 76 77 fibril_owner_info_t *waits_for;78 70 } fibril_t; 79 71 -
uspace/lib/c/include/fibril_synch.h
rf2d2c604 r0a3fbc7 43 43 44 44 typedef struct { 45 fibril_owner_info_t oi; /* Keep this the first thing. */46 45 int counter; 47 46 link_t waiters; … … 50 49 #define FIBRIL_MUTEX_INITIALIZER(name) \ 51 50 { \ 52 .oi = { \53 .owned_by = NULL \54 }, \55 51 .counter = 1, \ 56 52 .waiters = { \ … … 64 60 65 61 typedef struct { 66 fibril_owner_info_t oi; /* Keep this the first thing. */67 62 unsigned writers; 68 63 unsigned readers; … … 72 67 #define FIBRIL_RWLOCK_INITIALIZER(name) \ 73 68 { \ 74 .oi = { \75 .owned_by = NULL \76 }, \77 69 .readers = 0, \ 78 70 .writers = 0, \ -
uspace/srv/devman/devman.c
rf2d2c604 r0a3fbc7 76 76 .remove_callback = devices_remove_callback 77 77 }; 78 79 /**80 * Initialize the list of device driver's.81 *82 * @param drv_list the list of device driver's.83 *84 */85 void init_driver_list(driver_list_t *drv_list)86 {87 assert(drv_list != NULL);88 89 list_initialize(&drv_list->drivers);90 fibril_mutex_initialize(&drv_list->drivers_mutex);91 }92 78 93 79 /** Allocate and initialize a new driver structure. … … 562 548 } 563 549 564 /** Initialize device driver structure.565 *566 * @param drv The device driver structure.567 */568 void init_driver(driver_t *drv)569 {570 assert(drv != NULL);571 572 memset(drv, 0, sizeof(driver_t));573 list_initialize(&drv->match_ids.ids);574 list_initialize(&drv->devices);575 fibril_mutex_initialize(&drv->driver_mutex);576 }577 578 /** Device driver structure clean-up.579 *580 * @param drv The device driver structure.581 */582 void clean_driver(driver_t *drv)583 {584 assert(drv != NULL);585 586 free_not_null(drv->name);587 free_not_null(drv->binary_path);588 589 clean_match_ids(&drv->match_ids);590 591 init_driver(drv);592 }593 594 /** Delete device driver structure.595 *596 * @param drv The device driver structure.597 */598 void delete_driver(driver_t *drv)599 {600 assert(drv != NULL);601 602 clean_driver(drv);603 free(drv);604 }605 550 606 551 /** Create devmap path and name for the device. */ … … 740 685 } 741 686 742 /* Device nodes */743 744 /** Create a new device node.745 *746 * @return A device node structure.747 */748 node_t *create_dev_node(void)749 {750 node_t *res = malloc(sizeof(node_t));751 752 if (res != NULL) {753 memset(res, 0, sizeof(node_t));754 list_initialize(&res->children);755 list_initialize(&res->match_ids.ids);756 list_initialize(&res->classes);757 }758 759 return res;760 }761 762 /** Delete a device node.763 *764 * @param node The device node structure.765 */766 void delete_dev_node(node_t *node)767 {768 assert(list_empty(&node->children));769 assert(node->parent == NULL);770 assert(node->drv == NULL);771 772 clean_match_ids(&node->match_ids);773 free_not_null(node->name);774 free_not_null(node->pathname);775 free(node);776 }777 778 /** Find the device node structure of the device witch has the specified handle.779 *780 * Device tree's rwlock should be held at least for reading.781 *782 * @param tree The device tree where we look for the device node.783 * @param handle The handle of the device.784 * @return The device node.785 */786 node_t *find_dev_node_no_lock(dev_tree_t *tree, device_handle_t handle)787 {788 unsigned long key = handle;789 link_t *link = hash_table_find(&tree->devman_devices, &key);790 return hash_table_get_instance(link, node_t, devman_link);791 }792 793 /** Find the device node structure of the device witch has the specified handle.794 *795 * @param tree The device tree where we look for the device node.796 * @param handle The handle of the device.797 * @return The device node.798 */799 node_t *find_dev_node(dev_tree_t *tree, device_handle_t handle)800 {801 node_t *node = NULL;802 803 fibril_rwlock_read_lock(&tree->rwlock);804 node = find_dev_node_no_lock(tree, handle);805 fibril_rwlock_read_unlock(&tree->rwlock);806 807 return node;808 }809 810 811 687 /** Create and set device's full path in device tree. 812 688 * … … 949 825 return NULL; 950 826 } 951 952 /* Device classes */953 954 /** Create device class.955 *956 * @return Device class.957 */958 dev_class_t *create_dev_class(void)959 {960 dev_class_t *cl;961 962 cl = (dev_class_t *) malloc(sizeof(dev_class_t));963 if (cl != NULL) {964 memset(cl, 0, sizeof(dev_class_t));965 list_initialize(&cl->devices);966 fibril_mutex_initialize(&cl->mutex);967 }968 969 return cl;970 }971 972 /** Create device class info.973 *974 * @return Device class info.975 */976 dev_class_info_t *create_dev_class_info(void)977 {978 dev_class_info_t *info;979 980 info = (dev_class_info_t *) malloc(sizeof(dev_class_info_t));981 if (info != NULL)982 memset(info, 0, sizeof(dev_class_info_t));983 984 return info;985 }986 987 size_t get_new_class_dev_idx(dev_class_t *cl)988 {989 size_t dev_idx;990 991 fibril_mutex_lock(&cl->mutex);992 dev_idx = ++cl->curr_dev_idx;993 fibril_mutex_unlock(&cl->mutex);994 995 return dev_idx;996 }997 998 827 999 828 /** Create unique device name within the class. … … 1092 921 } 1093 922 1094 void add_dev_class_no_lock(class_list_t *class_list, dev_class_t *cl)1095 {1096 list_append(&cl->link, &class_list->classes);1097 }1098 1099 923 void init_class_list(class_list_t *class_list) 1100 924 { … … 1106 930 1107 931 1108 /* Devmap devices */932 /* devmap devices */ 1109 933 1110 934 node_t *find_devmap_tree_device(dev_tree_t *tree, dev_handle_t devmap_handle) … … 1143 967 } 1144 968 1145 void class_add_devmap_device(class_list_t *class_list, dev_class_info_t *cli)1146 {1147 unsigned long key = (unsigned long) cli->devmap_handle;1148 1149 fibril_rwlock_write_lock(&class_list->rwlock);1150 hash_table_insert(&class_list->devmap_devices, &key, &cli->devmap_link);1151 fibril_rwlock_write_unlock(&class_list->rwlock);1152 }1153 1154 void tree_add_devmap_device(dev_tree_t *tree, node_t *node)1155 {1156 unsigned long key = (unsigned long) node->devmap_handle;1157 fibril_rwlock_write_lock(&tree->rwlock);1158 hash_table_insert(&tree->devmap_devices, &key, &node->devmap_link);1159 fibril_rwlock_write_unlock(&tree->rwlock);1160 }1161 1162 969 /** @} 1163 970 */ -
uspace/srv/devman/devman.h
rf2d2c604 r0a3fbc7 283 283 /* Drivers */ 284 284 285 extern void init_driver_list(driver_list_t *); 285 /** 286 * Initialize the list of device driver's. 287 * 288 * @param drv_list the list of device driver's. 289 * 290 */ 291 static inline void init_driver_list(driver_list_t *drv_list) 292 { 293 assert(drv_list != NULL); 294 295 list_initialize(&drv_list->drivers); 296 fibril_mutex_initialize(&drv_list->drivers_mutex); 297 } 298 286 299 extern driver_t *create_driver(void); 287 300 extern bool get_driver_info(const char *, const char *, driver_t *); … … 298 311 extern driver_t *find_driver(driver_list_t *, const char *); 299 312 extern void set_driver_phone(driver_t *, ipcarg_t); 300 extern void initialize_running_driver(driver_t *, dev_tree_t *); 301 302 extern void init_driver(driver_t *); 303 extern void clean_driver(driver_t *); 304 extern void delete_driver(driver_t *); 313 void initialize_running_driver(driver_t *, dev_tree_t *); 314 315 /** Initialize device driver structure. 316 * 317 * @param drv The device driver structure. 318 */ 319 static inline void init_driver(driver_t *drv) 320 { 321 assert(drv != NULL); 322 323 memset(drv, 0, sizeof(driver_t)); 324 list_initialize(&drv->match_ids.ids); 325 list_initialize(&drv->devices); 326 fibril_mutex_initialize(&drv->driver_mutex); 327 } 328 329 /** Device driver structure clean-up. 330 * 331 * @param drv The device driver structure. 332 */ 333 static inline void clean_driver(driver_t *drv) 334 { 335 assert(drv != NULL); 336 337 free_not_null(drv->name); 338 free_not_null(drv->binary_path); 339 340 clean_match_ids(&drv->match_ids); 341 342 init_driver(drv); 343 } 344 345 /** Delete device driver structure. 346 * 347 * @param drv The device driver structure. 348 */ 349 static inline void delete_driver(driver_t *drv) 350 { 351 assert(drv != NULL); 352 353 clean_driver(drv); 354 free(drv); 355 } 356 305 357 306 358 /* Device nodes */ 307 359 308 extern node_t *create_dev_node(void); 309 extern void delete_dev_node(node_t *node); 310 extern node_t *find_dev_node_no_lock(dev_tree_t *tree, 311 device_handle_t handle); 312 extern node_t *find_dev_node(dev_tree_t *tree, device_handle_t handle); 360 /** Create a new device node. 361 * 362 * @return A device node structure. 363 */ 364 static inline node_t *create_dev_node(void) 365 { 366 node_t *res = malloc(sizeof(node_t)); 367 368 if (res != NULL) { 369 memset(res, 0, sizeof(node_t)); 370 list_initialize(&res->children); 371 list_initialize(&res->match_ids.ids); 372 list_initialize(&res->classes); 373 } 374 375 return res; 376 } 377 378 /** Delete a device node. 379 * 380 * @param node The device node structure. 381 */ 382 static inline void delete_dev_node(node_t *node) 383 { 384 assert(list_empty(&node->children)); 385 assert(node->parent == NULL); 386 assert(node->drv == NULL); 387 388 clean_match_ids(&node->match_ids); 389 free_not_null(node->name); 390 free_not_null(node->pathname); 391 free(node); 392 } 393 394 /** Find the device node structure of the device witch has the specified handle. 395 * 396 * Device tree's rwlock should be held at least for reading. 397 * 398 * @param tree The device tree where we look for the device node. 399 * @param handle The handle of the device. 400 * @return The device node. 401 */ 402 static inline node_t *find_dev_node_no_lock(dev_tree_t *tree, 403 device_handle_t handle) 404 { 405 unsigned long key = handle; 406 link_t *link = hash_table_find(&tree->devman_devices, &key); 407 return hash_table_get_instance(link, node_t, devman_link); 408 } 409 410 /** Find the device node structure of the device witch has the specified handle. 411 * 412 * @param tree The device tree where we look for the device node. 413 * @param handle The handle of the device. 414 * @return The device node. 415 */ 416 static inline node_t *find_dev_node(dev_tree_t *tree, device_handle_t handle) 417 { 418 node_t *node = NULL; 419 420 fibril_rwlock_read_lock(&tree->rwlock); 421 node = find_dev_node_no_lock(tree, handle); 422 fibril_rwlock_read_unlock(&tree->rwlock); 423 424 return node; 425 } 426 313 427 extern node_t *find_dev_node_by_path(dev_tree_t *, char *); 314 428 extern node_t *find_node_child(node_t *, const char *); 429 315 430 316 431 /* Device tree */ … … 320 435 extern bool insert_dev_node(dev_tree_t *, node_t *, char *, node_t *); 321 436 437 322 438 /* Device classes */ 323 439 324 extern dev_class_t *create_dev_class(void); 325 extern dev_class_info_t *create_dev_class_info(void); 326 extern size_t get_new_class_dev_idx(dev_class_t *); 440 /** Create device class. 441 * 442 * @return Device class. 443 */ 444 static inline dev_class_t *create_dev_class(void) 445 { 446 dev_class_t *cl; 447 448 cl = (dev_class_t *) malloc(sizeof(dev_class_t)); 449 if (cl != NULL) { 450 memset(cl, 0, sizeof(dev_class_t)); 451 list_initialize(&cl->devices); 452 fibril_mutex_initialize(&cl->mutex); 453 } 454 455 return cl; 456 } 457 458 /** Create device class info. 459 * 460 * @return Device class info. 461 */ 462 static inline dev_class_info_t *create_dev_class_info(void) 463 { 464 dev_class_info_t *info; 465 466 info = (dev_class_info_t *) malloc(sizeof(dev_class_info_t)); 467 if (info != NULL) 468 memset(info, 0, sizeof(dev_class_info_t)); 469 470 return info; 471 } 472 473 static inline size_t get_new_class_dev_idx(dev_class_t *cl) 474 { 475 size_t dev_idx; 476 477 fibril_mutex_lock(&cl->mutex); 478 dev_idx = ++cl->curr_dev_idx; 479 fibril_mutex_unlock(&cl->mutex); 480 481 return dev_idx; 482 } 483 327 484 extern char *create_dev_name_for_class(dev_class_t *, const char *); 328 485 extern dev_class_info_t *add_device_to_class(node_t *, dev_class_t *, … … 333 490 extern dev_class_t *get_dev_class(class_list_t *, char *); 334 491 extern dev_class_t *find_dev_class_no_lock(class_list_t *, const char *); 335 extern void add_dev_class_no_lock(class_list_t *, dev_class_t *); 492 493 static inline void add_dev_class_no_lock(class_list_t *class_list, 494 dev_class_t *cl) 495 { 496 list_append(&cl->link, &class_list->classes); 497 } 498 336 499 337 500 /* Devmap devices */ … … 340 503 extern node_t *find_devmap_class_device(class_list_t *, dev_handle_t); 341 504 342 extern void class_add_devmap_device(class_list_t *, dev_class_info_t *); 343 extern void tree_add_devmap_device(dev_tree_t *, node_t *); 505 static inline void class_add_devmap_device(class_list_t *class_list, 506 dev_class_info_t *cli) 507 { 508 unsigned long key = (unsigned long) cli->devmap_handle; 509 510 fibril_rwlock_write_lock(&class_list->rwlock); 511 hash_table_insert(&class_list->devmap_devices, &key, &cli->devmap_link); 512 fibril_rwlock_write_unlock(&class_list->rwlock); 513 } 514 515 static inline void tree_add_devmap_device(dev_tree_t *tree, node_t *node) 516 { 517 unsigned long key = (unsigned long) node->devmap_handle; 518 fibril_rwlock_write_lock(&tree->rwlock); 519 hash_table_insert(&tree->devmap_devices, &key, &node->devmap_link); 520 fibril_rwlock_write_unlock(&tree->rwlock); 521 } 344 522 345 523 #endif -
uspace/srv/devman/main.c
rf2d2c604 r0a3fbc7 66 66 static driver_t *devman_driver_register(void) 67 67 { 68 printf(NAME ": devman_driver_register \n"); 69 68 70 ipc_call_t icall; 69 ipc_callid_t iid ;71 ipc_callid_t iid = async_get_call(&icall); 70 72 driver_t *driver = NULL; 71 72 printf(NAME ": devman_driver_register \n"); 73 74 iid = async_get_call(&icall); 73 75 74 if (IPC_GET_METHOD(icall) != DEVMAN_DRIVER_REGISTER) { 76 75 ipc_answer_0(iid, EREFUSED); … … 86 85 return NULL; 87 86 } 88 89 87 printf(NAME ": the %s driver is trying to register by the service.\n", 90 88 drv_name); … … 93 91 driver = find_driver(&drivers_list, drv_name); 94 92 95 if ( driver == NULL) {93 if (NULL == driver) { 96 94 printf(NAME ": no driver named %s was found.\n", drv_name); 97 95 free(drv_name); … … 148 146 } 149 147 150 if ( match_id == NULL) {148 if (NULL == match_id) { 151 149 printf(NAME ": ERROR: devman_receive_match_id - failed to " 152 150 "allocate match id.\n"); … … 162 160 rc = async_data_write_accept((void **) &match_id_str, true, 0, 0, 0, 0); 163 161 match_id->id = match_id_str; 164 if ( rc != EOK) {162 if (EOK != rc) { 165 163 delete_match_id(match_id); 166 164 printf(NAME ": devman_receive_match_id - failed to receive " … … 183 181 * @return Zero on success, negative error code otherwise. 184 182 */ 185 static int devman_receive_match_ids(ipcarg_t match_count,186 183 static int 184 devman_receive_match_ids(ipcarg_t match_count, match_id_list_t *match_ids) 187 185 { 188 186 int ret = EOK; … … 207 205 208 206 fibril_rwlock_write_lock(&tree->rwlock); 209 node_t *parent = find_dev_node_no_lock(&device_tree, parent_handle);210 211 if ( parent == NULL) {207 node_t *parent = find_dev_node_no_lock(&device_tree, parent_handle); 208 209 if (NULL == parent) { 212 210 fibril_rwlock_write_unlock(&tree->rwlock); 213 211 ipc_answer_0(callid, ENOENT); 214 212 return; 215 } 213 } 216 214 217 215 char *dev_name = NULL; 218 216 int rc = async_data_write_accept((void **)&dev_name, true, 0, 0, 0, 0); 219 if ( rc != EOK) {217 if (EOK != rc) { 220 218 fibril_rwlock_write_unlock(&tree->rwlock); 221 219 ipc_answer_0(callid, rc); … … 229 227 ipc_answer_0(callid, ENOMEM); 230 228 return; 231 } 232 229 } 233 230 fibril_rwlock_write_unlock(&tree->rwlock); 234 231 … … 248 245 /* Create devmap path and name for the device. */ 249 246 char *devmap_pathname = NULL; 250 251 247 asprintf(&devmap_pathname, "%s/%s%c%s", DEVMAP_CLASS_NAMESPACE, 252 248 cli->dev_class->name, DEVMAP_SEPARATOR, cli->dev_name); 253 if ( devmap_pathname == NULL)249 if (NULL == devmap_pathname) 254 250 return; 255 251 … … 283 279 284 280 node_t *dev = find_dev_node(&device_tree, handle); 285 if ( dev == NULL) {281 if (NULL == dev) { 286 282 ipc_answer_0(callid, ENOENT); 287 283 return; … … 322 318 323 319 driver_t *driver = devman_driver_register(); 324 if ( driver == NULL)320 if (NULL == driver) 325 321 return; 326 322 … … 377 373 free(pathname); 378 374 379 if ( dev == NULL) {375 if (NULL == dev) { 380 376 ipc_answer_0(iid, ENOENT); 381 377 return; … … 408 404 ipc_answer_0(callid, ENOENT); 409 405 } 410 } 411 } 412 413 static void devman_forward(ipc_callid_t iid, ipc_call_t *icall,414 406 } 407 } 408 409 static void 410 devman_forward(ipc_callid_t iid, ipc_call_t *icall, bool drv_to_parent) 415 411 { 416 412 device_handle_t handle = IPC_GET_ARG2(*icall); 417 413 418 414 node_t *dev = find_dev_node(&device_tree, handle); 419 if ( dev == NULL) {415 if (NULL == dev) { 420 416 printf(NAME ": devman_forward error - no device with handle %x " 421 417 "was found.\n", handle); … … 427 423 428 424 if (drv_to_parent) { 429 if ( dev->parent != NULL)425 if (NULL != dev->parent) 430 426 driver = dev->parent->drv; 431 } else if ( dev->state == DEVICE_USABLE) {427 } else if (DEVICE_USABLE == dev->state) { 432 428 driver = dev->drv; 433 assert( driver != NULL);434 } 435 436 if ( driver == NULL) {429 assert(NULL != driver); 430 } 431 432 if (NULL == driver) { 437 433 printf(NAME ": devman_forward error - the device is not in " 438 434 "usable state.\n", handle); … … 454 450 return; 455 451 } 456 457 452 printf(NAME ": devman_forward: forward connection to device %s to " 458 453 "driver %s.\n", dev->pathname, driver->name); … … 465 460 { 466 461 dev_handle_t devmap_handle = IPC_GET_METHOD(*icall); 467 node_t *dev; 468 469 dev = find_devmap_tree_device(&device_tree, devmap_handle); 470 if (dev == NULL) 462 463 node_t *dev = find_devmap_tree_device(&device_tree, devmap_handle); 464 if (NULL == dev) 471 465 dev = find_devmap_class_device(&class_list, devmap_handle); 472 466 473 if ( dev == NULL || dev->drv == NULL) {467 if (NULL == dev || NULL == dev->drv) { 474 468 ipc_answer_0(iid, ENOENT); 475 469 return; 476 470 } 477 471 478 if ( dev->state != DEVICE_USABLE|| dev->drv->phone <= 0) {472 if (DEVICE_USABLE != dev->state || dev->drv->phone <= 0) { 479 473 ipc_answer_0(iid, EINVAL); 480 474 return; … … 499 493 * passes device handle to the driver as an ipc method.) 500 494 */ 501 if (IPC_ GET_METHOD(*icall) != IPC_M_CONNECT_ME_TO)495 if (IPC_M_CONNECT_ME_TO != IPC_GET_METHOD(*icall)) 502 496 devman_connection_devmapper(iid, icall); 503 497 … … 537 531 /* Initialize list of available drivers. */ 538 532 init_driver_list(&drivers_list); 539 if ( lookup_available_drivers(&drivers_list,540 DRIVER_DEFAULT_STORE) == 0) {533 if (0 == lookup_available_drivers(&drivers_list, 534 DRIVER_DEFAULT_STORE)) { 541 535 printf(NAME " no drivers found."); 542 536 return false; 543 537 } 544 545 538 printf(NAME ": devman_init - list of drivers has been initialized.\n"); 546 539 -
uspace/srv/devman/match.c
rf2d2c604 r0a3fbc7 55 55 match_id_t *tmp_ma_id; 56 56 57 if ( str_cmp(drv_id->id, dev_id->id) == 0) {57 if (0 == str_cmp(drv_id->id, dev_id->id)) { 58 58 /* 59 59 * We found a match. … … 67 67 * list of match ids. 68 68 */ 69 if (drv_ link->next != drv_head) {69 if (drv_head != drv_link->next) { 70 70 tmp_ma_id = list_get_instance(drv_link->next, 71 71 match_id_t, link); … … 79 79 * list of match ids. 80 80 */ 81 if (dev_ link->next != dev_head) {81 if (dev_head != dev_link->next) { 82 82 tmp_ma_id = list_get_instance(dev_link->next, 83 83 match_id_t, link); … … 99 99 } 100 100 101 } while (drv_ link->next != drv_head && dev_link->next != dev_head);101 } while (drv_head != drv_link->next && dev_head != dev_link->next); 102 102 103 103 return 0; -
uspace/srv/devman/util.c
rf2d2c604 r0a3fbc7 61 61 char *get_path_elem_end(char *path) 62 62 { 63 while ( *path != '\0' && *path != '/')63 while (0 != *path && '/' != *path) 64 64 path++; 65 65 return path; 66 66 } 67 67 68 bool skip_spaces(char **buf)69 {70 while (isspace(**buf))71 (*buf)++;72 return *buf != 0;73 }74 75 size_t get_nonspace_len(const char *str)76 {77 size_t len = 0;78 79 while(*str != '\0' && !isspace(*str)) {80 len++;81 str++;82 }83 84 return len;85 }86 87 void free_not_null(const void *ptr)88 {89 if (ptr != NULL)90 free(ptr);91 }92 93 char *clone_string(const char *s)94 {95 size_t size = str_size(s) + 1;96 char *str;97 98 str = (char *) malloc(size);99 if (str != NULL)100 str_cpy(str, size, s);101 return str;102 }103 104 void replace_char(char *str, char orig, char repl)105 {106 while (*str) {107 if (*str == orig)108 *str = repl;109 str++;110 }111 }112 113 68 /** @} 114 69 */ -
uspace/srv/devman/util.h
rf2d2c604 r0a3fbc7 41 41 extern char *get_path_elem_end(char *); 42 42 43 extern bool skip_spaces(char **); 44 extern size_t get_nonspace_len(const char *); 45 extern void free_not_null(const void *); 46 extern char *clone_string(const char *); 47 extern void replace_char(char *, char, char); 43 static inline bool skip_spaces(char **buf) 44 { 45 while (isspace(**buf)) 46 (*buf)++; 47 return *buf != 0; 48 } 49 50 static inline size_t get_nonspace_len(const char *str) 51 { 52 size_t len = 0; 53 54 while(*str != 0 && !isspace(*str)) { 55 len++; 56 str++; 57 } 58 return len; 59 } 60 61 static inline void free_not_null(const void *ptr) 62 { 63 if (NULL != ptr) 64 free(ptr); 65 } 66 67 static inline char *clone_string(const char *s) 68 { 69 size_t size = str_size(s) + 1; 70 char *str; 71 72 str = (char *) malloc(size); 73 if (NULL != str) 74 str_cpy(str, size, s); 75 return str; 76 } 77 78 static inline void replace_char(char *str, char orig, char repl) 79 { 80 while (*str) { 81 if (orig == *str) 82 *str = repl; 83 str++; 84 } 85 } 48 86 49 87 #endif
Note:
See TracChangeset
for help on using the changeset viewer.