/* * \brief USB driver main program * \author Norman Feske * \author Sebastian Sumpf * \date 2012-01-29 */ /* * Copyright (C) 2012-2013 Genode Labs GmbH * * This file is part of the Genode OS framework, which is distributed * under the terms of the GNU General Public License version 2. */ /* Genode */ #include #include #include #include #include #include #include /* Local */ #include "storage/component.h" #include "routine.h" #include "signal.h" extern "C" { #include } using namespace Genode; extern "C" int subsys_usb_init(); extern "C" void subsys_input_init(); extern "C" void module_evdev_init(); extern "C" void module_hid_init(); extern "C" void module_hid_init_core(); extern "C" void module_usb_stor_init(); extern "C" void start_input_service(void *ep); Routine *Routine::_current = 0; Routine *Routine::_dead = 0; bool Routine::_all = false; void breakpoint() { PDBG("BREAK"); } static void init(Services *services) { /* start jiffies */ dde_kit_timer_init(0, 0); /* USB */ subsys_usb_init(); /* input + HID */ if (services->hid) { subsys_input_init(); module_evdev_init(); /* HID */ module_hid_init(); } /* host controller */ platform_hcd_init(services); /* storage */ if (services->stor) module_usb_stor_init(); } void start_usb_driver() { /* * Initialize server entry point */ enum { STACK_SIZE = 4096 }; static Cap_connection cap; static Rpc_entrypoint ep_hid(&cap, STACK_SIZE, "usb_hid_ep"); static Signal_receiver recv; Services services; try { config()->xml_node().sub_node("hid"); start_input_service(&ep_hid); services.hid = true; } catch (Config::Invalid) { PDBG("No node found - not starting any USB services"); return; } catch (Xml_node::Nonexistent_sub_node) { PDBG("No config node found - not starting the USB HID (Input) service"); } try { config()->xml_node().sub_node("storage"); services.stor = true; } catch (Xml_node::Nonexistent_sub_node) { PDBG("No config node found - not starting the USB Storage (Block) service"); } try { config()->xml_node().sub_node("nic"); services.nic = true; } catch (Xml_node::Nonexistent_sub_node) { PDBG("No config node found - not starting the USB Nic (Network) service"); } Timer::init(&recv); Irq::init(&recv); Event::init(&recv); Service_handler::s()->receiver(&recv); Storage::init(&recv); Nic::init(&recv); Routine::add(0, 0, "Main", true); Routine::current_use_first(); init(&services); Routine::remove(); /* will never be reached */ sleep_forever(); }