- Timestamp:
- 2011-07-02T21:16:24Z (14 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- e944e4c
- Parents:
- d2fac08c
- Location:
- uspace
- Files:
-
- 6 deleted
- 10 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/Makefile
rd2fac08c r336d2f52 153 153 ifeq ($(UARCH),sparc64) 154 154 DIRS += \ 155 srv/hw/irc/fhc \156 155 srv/hw/irc/obio 157 156 endif -
uspace/app/init/init.c
rd2fac08c r336d2f52 270 270 spawn("/srv/apic"); 271 271 spawn("/srv/i8259"); 272 spawn("/srv/fhc");273 272 spawn("/srv/obio"); 274 273 srv_start("/srv/cuda_adb"); -
uspace/srv/hid/fb/Makefile
rd2fac08c r336d2f52 84 84 EXTRA_CFLAGS += -DNIAGARA_ENABLED 85 85 endif 86 87 ifeq ($(MACHINE),serengeti)88 SOURCES += \89 sgcn.c \90 serial_console.c91 EXTRA_CFLAGS += -DSGCN_ENABLED92 endif93 86 endif 94 87 -
uspace/srv/hid/fb/main.c
rd2fac08c r336d2f52 40 40 #include "msim.h" 41 41 #include "ski.h" 42 #include "sgcn.h"43 42 #include "niagara.h" 44 43 #include "main.h" … … 92 91 } 93 92 #endif 94 #ifdef SGCN_ENABLED95 if ((!initialized) && (fb_kind == 4)) {96 if (sgcn_init() == 0)97 initialized = true;98 }99 #endif100 93 #ifdef NIAGARA_ENABLED 101 94 if ((!initialized) && (fb_kind == 5)) { -
uspace/srv/hid/fb/niagara.c
rd2fac08c r336d2f52 29 29 */ 30 30 31 /** @defgroup niagarafb SGCN31 /** @defgroup niagarafb 32 32 * @brief userland driver of the Niagara console output 33 33 * @{ -
uspace/srv/hid/fb/niagara.h
rd2fac08c r336d2f52 27 27 */ 28 28 29 /** @defgroup sgcnfb SGCN30 * @brief userland driver of the Serengeticonsole output29 /** @defgroup niagarafb 30 * @brief userland driver of the Niagara console output 31 31 * @{ 32 32 */ -
uspace/srv/hid/input/Makefile
rd2fac08c r336d2f52 49 49 port/ns16550.c \ 50 50 port/pl050.c \ 51 port/sgcn.c \52 51 port/ski.c \ 53 port/z8530.c \54 52 proto/adb.c \ 55 53 proto/mousedev.c \ -
uspace/srv/hid/input/generic/input.c
rd2fac08c r336d2f52 424 424 kbd_add_dev(&niagara_port, &stty_ctl); 425 425 #endif 426 #if defined(UARCH_sparc64) && defined(MACHINE_serengeti)427 kbd_add_dev(&sgcn_port, &stty_ctl);428 #endif429 426 #if defined(UARCH_sparc64) && defined(MACHINE_generic) 430 kbd_add_dev(&z8530_port, &sun_ctl);431 427 kbd_add_dev(&ns16550_port, &sun_ctl); 432 428 #endif … … 556 552 printf("%s: HelenOS input service\n", NAME); 557 553 558 sysarg_t fhc;559 554 sysarg_t obio; 560 555 … … 562 557 list_initialize(&mouse_devs); 563 558 564 if (((sysinfo_get_value("kbd.cir.fhc", &fhc) == EOK) && (fhc)) 565 || ((sysinfo_get_value("kbd.cir.obio", &obio) == EOK) && (obio))) 559 if ((sysinfo_get_value("kbd.cir.obio", &obio) == EOK) && (obio)) 566 560 irc_service = true; 567 561 -
uspace/srv/hid/input/include/kbd_port.h
rd2fac08c r336d2f52 56 56 extern kbd_port_ops_t ns16550_port; 57 57 extern kbd_port_ops_t pl050_port; 58 extern kbd_port_ops_t sgcn_port;59 58 extern kbd_port_ops_t ski_port; 60 extern kbd_port_ops_t z8530_port;61 59 62 60 #endif -
uspace/srv/hid/input/port/niagara.c
rd2fac08c r336d2f52 154 154 155 155 /** 156 * Thread to poll SGCNfor keypresses.156 * Thread to poll Niagara console for keypresses. 157 157 */ 158 158 static void niagara_thread_impl(void *arg)
Note:
See TracChangeset
for help on using the changeset viewer.