Changeset 05641a9e in mainline
- Timestamp:
- 2009-03-23T21:46:40Z (16 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- c3ebc47
- Parents:
- a5e5030
- Files:
-
- 5 added
- 12 edited
Legend:
- Unmodified
- Added
- Removed
-
kernel/Makefile
ra5e5030 r05641a9e 162 162 generic/src/ddi/device.c \ 163 163 generic/src/debug/symtab.c \ 164 generic/src/event/event.c \ 164 165 generic/src/interrupt/interrupt.c \ 165 166 generic/src/main/main.c \ -
kernel/generic/include/syscall/syscall.h
ra5e5030 r05641a9e 69 69 SYS_IPC_REGISTER_IRQ, 70 70 SYS_IPC_UNREGISTER_IRQ, 71 72 SYS_EVENT_SUBSCRIBE, 71 73 72 74 SYS_CAP_GRANT, -
kernel/generic/src/console/cmd.c
ra5e5030 r05641a9e 65 65 #include <ipc/ipc.h> 66 66 #include <ipc/irq.h> 67 #include <event/event.h> 67 68 #include <symtab.h> 68 69 #include <errno.h> … … 955 956 release_console(); 956 957 957 if ((kconsole_notify) && (kconsole_irq.notif_cfg.notify)) 958 ipc_irq_send_msg_0(&kconsole_irq); 958 event_notify_0(EVENT_KCONSOLE); 959 959 960 960 return 1; -
kernel/generic/src/console/console.c
ra5e5030 r05641a9e 42 42 #include <ddi/irq.h> 43 43 #include <ddi/ddi.h> 44 #include <event/event.h> 44 45 #include <ipc/irq.h> 45 46 #include <arch.h> … … 100 101 sysinfo_set_item_val("klog.faddr", NULL, (unative_t) faddr); 101 102 sysinfo_set_item_val("klog.pages", NULL, SIZE2FRAMES(KLOG_SIZE)); 102 103 //irq_initialize(&klog_irq);104 //klog_irq.devno = devno;105 //klog_irq.inr = KLOG_VIRT_INR;106 //klog_irq.claim = klog_claim;107 //irq_register(&klog_irq);108 103 109 104 spinlock_lock(&klog_lock); … … 243 238 spinlock_lock(&klog_lock); 244 239 245 // if ((klog_inited) && (klog_irq.notif_cfg.notify) && (klog_uspace > 0)) {246 // ipc_irq_send_msg_3(&klog_irq, klog_start, klog_len, klog_uspace);247 //klog_uspace = 0;248 //}240 if (klog_inited && event_is_subscribed(EVENT_KLOG) && klog_uspace > 0) { 241 event_notify_3(EVENT_KLOG, klog_start, klog_len, klog_uspace); 242 klog_uspace = 0; 243 } 249 244 250 245 spinlock_unlock(&klog_lock); -
kernel/generic/src/console/kconsole.c
ra5e5030 r05641a9e 88 88 static char history[KCONSOLE_HISTORY][MAX_CMDLINE] = {}; 89 89 90 /*91 * For now, we use 0 as INR.92 * However, it is therefore desirable to have architecture specific93 * definition of KCONSOLE_VIRT_INR in the future.94 */95 #define KCONSOLE_VIRT_INR 096 97 bool kconsole_notify = false;98 irq_t kconsole_irq;99 100 101 /** Allways refuse IRQ ownership.102 *103 * This is not a real IRQ, so we always decline.104 *105 * @return Always returns IRQ_DECLINE.106 *107 */108 static irq_ownership_t kconsole_claim(irq_t *irq)109 {110 return IRQ_DECLINE;111 }112 113 114 90 /** Initialize kconsole data structures 115 91 * … … 126 102 history[i][0] = '\0'; 127 103 } 128 129 130 /** Initialize kconsole notification mechanism131 *132 * Initialize the virtual IRQ notification mechanism.133 *134 */135 void kconsole_notify_init(void)136 {137 sysinfo_set_item_val("kconsole.present", NULL, true);138 sysinfo_set_item_val("kconsole.inr", NULL, KCONSOLE_VIRT_INR);139 140 irq_initialize(&kconsole_irq);141 kconsole_irq.devno = device_assign_devno();142 kconsole_irq.inr = KCONSOLE_VIRT_INR;143 kconsole_irq.claim = kconsole_claim;144 irq_register(&kconsole_irq);145 146 kconsole_notify = true;147 }148 149 104 150 105 /** Register kconsole command. -
kernel/generic/src/ipc/ipc.c
ra5e5030 r05641a9e 45 45 #include <ipc/ipc.h> 46 46 #include <ipc/kbox.h> 47 #include <event/event.h> 47 48 #include <errno.h> 48 49 #include <mm/slab.h> … … 51 52 #include <memstr.h> 52 53 #include <debug.h> 54 53 55 54 56 #include <print.h> … … 526 528 for (i = 0; i < IPC_MAX_PHONES; i++) 527 529 ipc_phone_hangup(&TASK->phones[i]); 530 531 /* Unsubscribe from any event notifications. */ 532 event_cleanup_answerbox(&TASK->answerbox); 528 533 529 534 /* Disconnect all connected irqs */ -
kernel/generic/src/main/main.c
ra5e5030 r05641a9e 83 83 #include <ddi/ddi.h> 84 84 #include <main/main.h> 85 #include <event/event.h> 85 86 86 87 /** Global configuration structure. */ … … 256 257 257 258 LOG_EXEC(ipc_init()); 259 LOG_EXEC(event_init()); 258 260 LOG_EXEC(klog_init()); 259 260 #ifdef CONFIG_KCONSOLE261 LOG_EXEC(kconsole_notify_init());262 #endif263 261 264 262 /* -
kernel/generic/src/syscall/syscall.c
ra5e5030 r05641a9e 50 50 #include <synch/smc.h> 51 51 #include <ddi/ddi.h> 52 #include <event/event.h> 52 53 #include <security/cap.h> 53 54 #include <sysinfo/sysinfo.h> … … 127 128 (syshandler_t) sys_ipc_register_irq, 128 129 (syshandler_t) sys_ipc_unregister_irq, 130 131 /* Event notification syscalls. */ 132 (syshandler_t) sys_event_subscribe, 129 133 130 134 /* Capabilities related syscalls. */ -
uspace/app/klog/klog.c
ra5e5030 r05641a9e 43 43 #include <io/stream.h> 44 44 #include <console.h> 45 #include <event.h> 45 46 #include <errno.h> 46 47 … … 83 84 } 84 85 85 // int inr = sysinfo_value("klog.inr"); 86 // if (ipc_register_irq(inr, devno, 0, NULL) != EOK) { 87 // printf(NAME ": Error registering klog notifications\n"); 88 // return -1; 89 // } 86 if (event_subscribe(EVENT_KLOG, 0) != EOK) { 87 printf(NAME ": Error registering klog notifications\n"); 88 return -1; 89 } 90 90 91 91 async_set_interrupt_received(interrupt_received); -
uspace/app/trace/syscalls.c
ra5e5030 r05641a9e 66 66 [SYS_IPC_UNREGISTER_IRQ] = { "ipc_unregister_irq", 2, V_ERRNO }, 67 67 68 [SYS_EVENT_SUBSCRIBE] = { "event_subscribe", 2, V_ERRNO }, 69 68 70 [SYS_CAP_GRANT] = { "cap_grant", 2, V_ERRNO }, 69 71 [SYS_CAP_REVOKE] = { "cap_revoke", 2, V_ERRNO }, -
uspace/lib/libc/Makefile
ra5e5030 r05641a9e 48 48 generic/cap.c \ 49 49 generic/console.c \ 50 generic/event.c \ 50 51 generic/mem.c \ 51 52 generic/string.c \ -
uspace/srv/console/console.c
ra5e5030 r05641a9e 50 50 #include <stdio.h> 51 51 #include <sysinfo.h> 52 #include <event.h> 52 53 53 54 #include "console.h" … … 730 731 731 732 /* Receive kernel notifications */ 732 // if (sysinfo_value("kconsole.present")) { 733 // int inr = sysinfo_value("kconsole.inr"); 734 // if (ipc_register_irq(inr, device_assign_devno(), 0, NULL) != EOK) 735 // printf(NAME ": Error registering kconsole notifications\n"); 736 // 737 // async_set_interrupt_received(interrupt_received); 738 // } 733 if (event_subscribe(EVENT_KCONSOLE, 0) != EOK) 734 printf(NAME ": Error registering kconsole notifications\n"); 735 736 async_set_interrupt_received(interrupt_received); 739 737 740 738 // FIXME: avoid connectiong to itself, keep using klog
Note:
See TracChangeset
for help on using the changeset viewer.